less copy protection, more size visualization
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

58680 řádky
1.5 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["mammal"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. }
  2198. //species
  2199. function getSpeciesInfo(speciesList) {
  2200. let result = new Set();
  2201. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2202. result.add(entry)
  2203. });
  2204. return Array.from(result);
  2205. };
  2206. function getSpeciesInfoHelper(species) {
  2207. if (!speciesData[species]) {
  2208. console.warn(species + " doesn't exist");
  2209. return [];
  2210. }
  2211. if (speciesData[species].parents) {
  2212. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2213. } else {
  2214. return [species];
  2215. }
  2216. }
  2217. characterMakers.push(() => makeCharacter(
  2218. {
  2219. name: "Fen",
  2220. species: ["crux"],
  2221. description: {
  2222. title: "Bio",
  2223. text: "Very furry. Sheds on everything."
  2224. },
  2225. tags: [
  2226. "anthro",
  2227. "goo"
  2228. ]
  2229. },
  2230. {
  2231. front: {
  2232. height: math.unit(12, "feet"),
  2233. weight: math.unit(2400, "lb"),
  2234. preyCapacity: math.unit(1, "people"),
  2235. name: "Front",
  2236. image: {
  2237. source: "./media/characters/fen/front.svg",
  2238. extra: 1804/1562,
  2239. bottom: 205/2009
  2240. },
  2241. extraAttributes: {
  2242. pawSize: {
  2243. name: "Paw Size",
  2244. power: 2,
  2245. type: "area",
  2246. base: math.unit(0.35, "m^2")
  2247. }
  2248. }
  2249. },
  2250. diving: {
  2251. height: math.unit(4.9, "meters"),
  2252. weight: math.unit(2400, "lb"),
  2253. name: "Diving",
  2254. image: {
  2255. source: "./media/characters/fen/diving.svg"
  2256. }
  2257. },
  2258. sleeby: {
  2259. height: math.unit(3.45, "meters"),
  2260. weight: math.unit(2400, "lb"),
  2261. name: "Sleeby",
  2262. image: {
  2263. source: "./media/characters/fen/sleeby.svg"
  2264. }
  2265. },
  2266. goo: {
  2267. height: math.unit(12, "feet"),
  2268. weight: math.unit(3600, "lb"),
  2269. volume: math.unit(1000, "liters"),
  2270. preyCapacity: math.unit(6, "people"),
  2271. name: "Goo",
  2272. image: {
  2273. source: "./media/characters/fen/goo.svg",
  2274. extra: 1307/1071,
  2275. bottom: 134/1441
  2276. }
  2277. },
  2278. horror: {
  2279. height: math.unit(13.6, "feet"),
  2280. weight: math.unit(2400, "lb"),
  2281. preyCapacity: math.unit(1, "people"),
  2282. name: "Horror",
  2283. image: {
  2284. source: "./media/characters/fen/horror.svg",
  2285. extra: 893/797,
  2286. bottom: 0/893
  2287. }
  2288. },
  2289. gooNsfw: {
  2290. height: math.unit(12, "feet"),
  2291. weight: math.unit(3750, "lb"),
  2292. volume: math.unit(1000, "liters"),
  2293. preyCapacity: math.unit(6, "people"),
  2294. name: "Goo (NSFW)",
  2295. image: {
  2296. source: "./media/characters/fen/goo-nsfw.svg",
  2297. extra: 1875/1734,
  2298. bottom: 122/1997
  2299. }
  2300. },
  2301. maw: {
  2302. height: math.unit(5.03, "feet"),
  2303. name: "Maw",
  2304. image: {
  2305. source: "./media/characters/fen/maw.svg"
  2306. }
  2307. },
  2308. gooCeiling: {
  2309. height: math.unit(6.6, "feet"),
  2310. weight: math.unit(3000, "lb"),
  2311. volume: math.unit(1000, "liters"),
  2312. preyCapacity: math.unit(6, "people"),
  2313. name: "Maw (Goo)",
  2314. image: {
  2315. source: "./media/characters/fen/goo-maw.svg"
  2316. }
  2317. },
  2318. paw: {
  2319. height: math.unit(3.77, "feet"),
  2320. name: "Paw",
  2321. image: {
  2322. source: "./media/characters/fen/paw.svg"
  2323. },
  2324. extraAttributes: {
  2325. "toeSize": {
  2326. name: "Toe Size",
  2327. power: 2,
  2328. type: "area",
  2329. base: math.unit(0.02875, "m^2")
  2330. },
  2331. "pawSize": {
  2332. name: "Paw Size",
  2333. power: 2,
  2334. type: "area",
  2335. base: math.unit(0.378, "m^2")
  2336. },
  2337. }
  2338. },
  2339. tail: {
  2340. height: math.unit(12.1, "feet"),
  2341. name: "Tail",
  2342. image: {
  2343. source: "./media/characters/fen/tail.svg"
  2344. }
  2345. },
  2346. tailFull: {
  2347. height: math.unit(12.1, "feet"),
  2348. name: "Full Tail",
  2349. image: {
  2350. source: "./media/characters/fen/tail-full.svg"
  2351. }
  2352. },
  2353. back: {
  2354. height: math.unit(12, "feet"),
  2355. weight: math.unit(2400, "lb"),
  2356. name: "Back",
  2357. image: {
  2358. source: "./media/characters/fen/back.svg",
  2359. },
  2360. info: {
  2361. description: {
  2362. mode: "append",
  2363. text: "\n\nHe is not currently looking at you."
  2364. }
  2365. }
  2366. },
  2367. full: {
  2368. height: math.unit(1.85, "meter"),
  2369. weight: math.unit(3200, "lb"),
  2370. name: "Full",
  2371. image: {
  2372. source: "./media/characters/fen/full.svg",
  2373. extra: 1133/859,
  2374. bottom: 145/1278
  2375. },
  2376. info: {
  2377. description: {
  2378. mode: "append",
  2379. text: "\n\nMunch."
  2380. }
  2381. }
  2382. },
  2383. gooLounging: {
  2384. height: math.unit(4.53, "feet"),
  2385. weight: math.unit(3000, "lb"),
  2386. preyCapacity: math.unit(6, "people"),
  2387. name: "Goo (Lounging)",
  2388. image: {
  2389. source: "./media/characters/fen/goo-lounging.svg",
  2390. bottom: 116 / 613
  2391. }
  2392. },
  2393. lounging: {
  2394. height: math.unit(10.52, "feet"),
  2395. weight: math.unit(2400, "lb"),
  2396. name: "Lounging",
  2397. image: {
  2398. source: "./media/characters/fen/lounging.svg"
  2399. }
  2400. },
  2401. },
  2402. [
  2403. {
  2404. name: "Small",
  2405. height: math.unit(2.2428, "meter")
  2406. },
  2407. {
  2408. name: "Normal",
  2409. height: math.unit(12, "feet"),
  2410. default: true,
  2411. },
  2412. {
  2413. name: "Big",
  2414. height: math.unit(20, "feet")
  2415. },
  2416. {
  2417. name: "Minimacro",
  2418. height: math.unit(40, "feet"),
  2419. info: {
  2420. description: {
  2421. mode: "append",
  2422. text: "\n\nTOO DAMN BIG"
  2423. }
  2424. }
  2425. },
  2426. {
  2427. name: "Macro",
  2428. height: math.unit(100, "feet"),
  2429. info: {
  2430. description: {
  2431. mode: "append",
  2432. text: "\n\nTOO DAMN BIG"
  2433. }
  2434. }
  2435. },
  2436. {
  2437. name: "Megamacro",
  2438. height: math.unit(2, "miles")
  2439. },
  2440. {
  2441. name: "Gigamacro",
  2442. height: math.unit(10, "earths")
  2443. },
  2444. ]
  2445. ))
  2446. characterMakers.push(() => makeCharacter(
  2447. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2448. {
  2449. front: {
  2450. height: math.unit(183, "cm"),
  2451. weight: math.unit(80, "kg"),
  2452. name: "Front",
  2453. image: {
  2454. source: "./media/characters/sofia-fluttertail/front.svg",
  2455. bottom: 0.01,
  2456. extra: 2154 / 2081
  2457. }
  2458. },
  2459. frontAlt: {
  2460. height: math.unit(183, "cm"),
  2461. weight: math.unit(80, "kg"),
  2462. name: "Front (alt)",
  2463. image: {
  2464. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2465. }
  2466. },
  2467. back: {
  2468. height: math.unit(183, "cm"),
  2469. weight: math.unit(80, "kg"),
  2470. name: "Back",
  2471. image: {
  2472. source: "./media/characters/sofia-fluttertail/back.svg"
  2473. }
  2474. },
  2475. kneeling: {
  2476. height: math.unit(125, "cm"),
  2477. weight: math.unit(80, "kg"),
  2478. name: "Kneeling",
  2479. image: {
  2480. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2481. extra: 1033 / 977,
  2482. bottom: 23.7 / 1057
  2483. }
  2484. },
  2485. maw: {
  2486. height: math.unit(183 / 5, "cm"),
  2487. name: "Maw",
  2488. image: {
  2489. source: "./media/characters/sofia-fluttertail/maw.svg"
  2490. }
  2491. },
  2492. mawcloseup: {
  2493. height: math.unit(183 / 5 * 0.41, "cm"),
  2494. name: "Maw (Closeup)",
  2495. image: {
  2496. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2497. }
  2498. },
  2499. paws: {
  2500. height: math.unit(1.17, "feet"),
  2501. name: "Paws",
  2502. image: {
  2503. source: "./media/characters/sofia-fluttertail/paws.svg",
  2504. extra: 851 / 851,
  2505. bottom: 17 / 868
  2506. }
  2507. },
  2508. },
  2509. [
  2510. {
  2511. name: "Normal",
  2512. height: math.unit(1.83, "meter")
  2513. },
  2514. {
  2515. name: "Size Thief",
  2516. height: math.unit(18, "feet")
  2517. },
  2518. {
  2519. name: "50 Foot Collie",
  2520. height: math.unit(50, "feet")
  2521. },
  2522. {
  2523. name: "Macro",
  2524. height: math.unit(96, "feet"),
  2525. default: true
  2526. },
  2527. {
  2528. name: "Megamerger",
  2529. height: math.unit(650, "feet")
  2530. },
  2531. ]
  2532. ))
  2533. characterMakers.push(() => makeCharacter(
  2534. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2535. {
  2536. front: {
  2537. height: math.unit(7, "feet"),
  2538. weight: math.unit(100, "kg"),
  2539. name: "Front",
  2540. image: {
  2541. source: "./media/characters/march/front.svg",
  2542. extra: 1992/1851,
  2543. bottom: 39/2031
  2544. }
  2545. },
  2546. foot: {
  2547. height: math.unit(0.9, "feet"),
  2548. name: "Foot",
  2549. image: {
  2550. source: "./media/characters/march/foot.svg"
  2551. }
  2552. },
  2553. },
  2554. [
  2555. {
  2556. name: "Normal",
  2557. height: math.unit(7.9, "feet")
  2558. },
  2559. {
  2560. name: "Macro",
  2561. height: math.unit(220, "meters")
  2562. },
  2563. {
  2564. name: "Megamacro",
  2565. height: math.unit(2.98, "km"),
  2566. default: true
  2567. },
  2568. {
  2569. name: "Gigamacro",
  2570. height: math.unit(15963, "km")
  2571. },
  2572. {
  2573. name: "Teramacro",
  2574. height: math.unit(2980000000, "km")
  2575. },
  2576. {
  2577. name: "Examacro",
  2578. height: math.unit(250, "parsecs")
  2579. },
  2580. ]
  2581. ))
  2582. characterMakers.push(() => makeCharacter(
  2583. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2584. {
  2585. front: {
  2586. height: math.unit(6, "feet"),
  2587. weight: math.unit(60, "kg"),
  2588. name: "Front",
  2589. image: {
  2590. source: "./media/characters/noir/front.svg",
  2591. extra: 1,
  2592. bottom: 0.032
  2593. }
  2594. },
  2595. },
  2596. [
  2597. {
  2598. name: "Normal",
  2599. height: math.unit(6.6, "feet")
  2600. },
  2601. {
  2602. name: "Macro",
  2603. height: math.unit(500, "feet")
  2604. },
  2605. {
  2606. name: "Megamacro",
  2607. height: math.unit(2.5, "km"),
  2608. default: true
  2609. },
  2610. {
  2611. name: "Gigamacro",
  2612. height: math.unit(22500, "km")
  2613. },
  2614. {
  2615. name: "Teramacro",
  2616. height: math.unit(2500000000, "km")
  2617. },
  2618. {
  2619. name: "Examacro",
  2620. height: math.unit(200, "parsecs")
  2621. },
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2626. {
  2627. front: {
  2628. height: math.unit(7, "feet"),
  2629. weight: math.unit(100, "kg"),
  2630. name: "Front",
  2631. image: {
  2632. source: "./media/characters/okuri/front.svg",
  2633. extra: 739/665,
  2634. bottom: 39/778
  2635. }
  2636. },
  2637. back: {
  2638. height: math.unit(7, "feet"),
  2639. weight: math.unit(100, "kg"),
  2640. name: "Back",
  2641. image: {
  2642. source: "./media/characters/okuri/back.svg",
  2643. extra: 734/653,
  2644. bottom: 13/747
  2645. }
  2646. },
  2647. sitting: {
  2648. height: math.unit(2.95, "feet"),
  2649. weight: math.unit(100, "kg"),
  2650. name: "Sitting",
  2651. image: {
  2652. source: "./media/characters/okuri/sitting.svg",
  2653. extra: 370/318,
  2654. bottom: 99/469
  2655. }
  2656. },
  2657. },
  2658. [
  2659. {
  2660. name: "Smallest",
  2661. height: math.unit(5 + 2/12, "feet")
  2662. },
  2663. {
  2664. name: "Smaller",
  2665. height: math.unit(300, "feet")
  2666. },
  2667. {
  2668. name: "Small",
  2669. height: math.unit(1000, "feet")
  2670. },
  2671. {
  2672. name: "Macro",
  2673. height: math.unit(1, "mile")
  2674. },
  2675. {
  2676. name: "Mega Macro (Small)",
  2677. height: math.unit(20, "km")
  2678. },
  2679. {
  2680. name: "Mega Macro (Large)",
  2681. height: math.unit(600, "km")
  2682. },
  2683. {
  2684. name: "Giga Macro",
  2685. height: math.unit(10000, "km")
  2686. },
  2687. {
  2688. name: "Normal",
  2689. height: math.unit(577560, "km"),
  2690. default: true
  2691. },
  2692. {
  2693. name: "Large",
  2694. height: math.unit(4, "galaxies")
  2695. },
  2696. {
  2697. name: "Largest",
  2698. height: math.unit(15, "multiverses")
  2699. },
  2700. ]
  2701. ))
  2702. characterMakers.push(() => makeCharacter(
  2703. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2704. {
  2705. front: {
  2706. height: math.unit(7, "feet"),
  2707. weight: math.unit(100, "kg"),
  2708. name: "Front",
  2709. image: {
  2710. source: "./media/characters/manny/front.svg",
  2711. extra: 1,
  2712. bottom: 0.06
  2713. }
  2714. },
  2715. back: {
  2716. height: math.unit(7, "feet"),
  2717. weight: math.unit(100, "kg"),
  2718. name: "Back",
  2719. image: {
  2720. source: "./media/characters/manny/back.svg",
  2721. extra: 1,
  2722. bottom: 0.014
  2723. }
  2724. },
  2725. },
  2726. [
  2727. {
  2728. name: "Normal",
  2729. height: math.unit(7, "feet"),
  2730. },
  2731. {
  2732. name: "Macro",
  2733. height: math.unit(78, "feet"),
  2734. default: true
  2735. },
  2736. {
  2737. name: "Macro+",
  2738. height: math.unit(300, "meters")
  2739. },
  2740. {
  2741. name: "Macro++",
  2742. height: math.unit(2400, "meters")
  2743. },
  2744. {
  2745. name: "Megamacro",
  2746. height: math.unit(5167, "meters")
  2747. },
  2748. {
  2749. name: "Gigamacro",
  2750. height: math.unit(41769, "miles")
  2751. },
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "Adake", species: ["tiger"], 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/adake/front-1.svg"
  2763. }
  2764. },
  2765. frontAlt: {
  2766. height: math.unit(7, "feet"),
  2767. weight: math.unit(100, "kg"),
  2768. name: "Front (Alt)",
  2769. image: {
  2770. source: "./media/characters/adake/front-2.svg",
  2771. extra: 1,
  2772. bottom: 0.01
  2773. }
  2774. },
  2775. back: {
  2776. height: math.unit(7, "feet"),
  2777. weight: math.unit(100, "kg"),
  2778. name: "Back",
  2779. image: {
  2780. source: "./media/characters/adake/back.svg",
  2781. }
  2782. },
  2783. kneel: {
  2784. height: math.unit(5.385, "feet"),
  2785. weight: math.unit(100, "kg"),
  2786. name: "Kneeling",
  2787. image: {
  2788. source: "./media/characters/adake/kneel.svg",
  2789. bottom: 0.052
  2790. }
  2791. },
  2792. },
  2793. [
  2794. {
  2795. name: "Normal",
  2796. height: math.unit(7, "feet"),
  2797. },
  2798. {
  2799. name: "Macro",
  2800. height: math.unit(78, "feet"),
  2801. default: true
  2802. },
  2803. {
  2804. name: "Macro+",
  2805. height: math.unit(300, "meters")
  2806. },
  2807. {
  2808. name: "Macro++",
  2809. height: math.unit(2400, "meters")
  2810. },
  2811. {
  2812. name: "Megamacro",
  2813. height: math.unit(5167, "meters")
  2814. },
  2815. {
  2816. name: "Gigamacro",
  2817. height: math.unit(41769, "miles")
  2818. },
  2819. ]
  2820. ))
  2821. characterMakers.push(() => makeCharacter(
  2822. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2823. {
  2824. front: {
  2825. height: math.unit(1.65, "meters"),
  2826. weight: math.unit(50, "kg"),
  2827. name: "Front",
  2828. image: {
  2829. source: "./media/characters/elijah/front.svg",
  2830. extra: 858 / 830,
  2831. bottom: 95.5 / 953.8559
  2832. }
  2833. },
  2834. back: {
  2835. height: math.unit(1.65, "meters"),
  2836. weight: math.unit(50, "kg"),
  2837. name: "Back",
  2838. image: {
  2839. source: "./media/characters/elijah/back.svg",
  2840. extra: 895 / 850,
  2841. bottom: 5.3 / 897.956
  2842. }
  2843. },
  2844. frontNsfw: {
  2845. height: math.unit(1.65, "meters"),
  2846. weight: math.unit(50, "kg"),
  2847. name: "Front (NSFW)",
  2848. image: {
  2849. source: "./media/characters/elijah/front-nsfw.svg",
  2850. extra: 858 / 830,
  2851. bottom: 95.5 / 953.8559
  2852. }
  2853. },
  2854. backNsfw: {
  2855. height: math.unit(1.65, "meters"),
  2856. weight: math.unit(50, "kg"),
  2857. name: "Back (NSFW)",
  2858. image: {
  2859. source: "./media/characters/elijah/back-nsfw.svg",
  2860. extra: 895 / 850,
  2861. bottom: 5.3 / 897.956
  2862. }
  2863. },
  2864. dick: {
  2865. height: math.unit(1, "feet"),
  2866. name: "Dick",
  2867. image: {
  2868. source: "./media/characters/elijah/dick.svg"
  2869. }
  2870. },
  2871. beakOpen: {
  2872. height: math.unit(1.25, "feet"),
  2873. name: "Beak (Open)",
  2874. image: {
  2875. source: "./media/characters/elijah/beak-open.svg"
  2876. }
  2877. },
  2878. beakShut: {
  2879. height: math.unit(1.25, "feet"),
  2880. name: "Beak (Shut)",
  2881. image: {
  2882. source: "./media/characters/elijah/beak-shut.svg"
  2883. }
  2884. },
  2885. footFlexing: {
  2886. height: math.unit(1.61, "feet"),
  2887. name: "Foot (Flexing)",
  2888. image: {
  2889. source: "./media/characters/elijah/foot-flexing.svg"
  2890. }
  2891. },
  2892. footStepping: {
  2893. height: math.unit(1.44, "feet"),
  2894. name: "Foot (Stepping)",
  2895. image: {
  2896. source: "./media/characters/elijah/foot-stepping.svg"
  2897. }
  2898. },
  2899. plantigradeLeg: {
  2900. height: math.unit(2.34, "feet"),
  2901. name: "Plantigrade Leg",
  2902. image: {
  2903. source: "./media/characters/elijah/plantigrade-leg.svg"
  2904. }
  2905. },
  2906. plantigradeFootLeft: {
  2907. height: math.unit(0.9, "feet"),
  2908. name: "Plantigrade Foot (Left)",
  2909. image: {
  2910. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2911. }
  2912. },
  2913. plantigradeFootRight: {
  2914. height: math.unit(0.9, "feet"),
  2915. name: "Plantigrade Foot (Right)",
  2916. image: {
  2917. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2918. }
  2919. },
  2920. },
  2921. [
  2922. {
  2923. name: "Normal",
  2924. height: math.unit(1.65, "meters")
  2925. },
  2926. {
  2927. name: "Macro",
  2928. height: math.unit(55, "meters"),
  2929. default: true
  2930. },
  2931. {
  2932. name: "Macro+",
  2933. height: math.unit(105, "meters")
  2934. },
  2935. ]
  2936. ))
  2937. characterMakers.push(() => makeCharacter(
  2938. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2939. {
  2940. front: {
  2941. height: math.unit(7 + 2/12, "feet"),
  2942. weight: math.unit(320, "kg"),
  2943. preyCapacity: math.unit(0.276549935, "people"),
  2944. name: "Front",
  2945. image: {
  2946. source: "./media/characters/rai/front.svg",
  2947. extra: 1802/1696,
  2948. bottom: 68/1870
  2949. },
  2950. form: "anthro",
  2951. default: true
  2952. },
  2953. frontDressed: {
  2954. height: math.unit(7 + 2/12, "feet"),
  2955. weight: math.unit(320, "kg"),
  2956. preyCapacity: math.unit(0.276549935, "people"),
  2957. name: "Front (Dressed)",
  2958. image: {
  2959. source: "./media/characters/rai/front-dressed.svg",
  2960. extra: 1802/1696,
  2961. bottom: 68/1870
  2962. },
  2963. form: "anthro"
  2964. },
  2965. side: {
  2966. height: math.unit(7 + 2/12, "feet"),
  2967. weight: math.unit(320, "kg"),
  2968. preyCapacity: math.unit(0.276549935, "people"),
  2969. name: "Side",
  2970. image: {
  2971. source: "./media/characters/rai/side.svg",
  2972. extra: 1789/1710,
  2973. bottom: 115/1904
  2974. },
  2975. form: "anthro"
  2976. },
  2977. back: {
  2978. height: math.unit(7 + 2/12, "feet"),
  2979. weight: math.unit(320, "kg"),
  2980. preyCapacity: math.unit(0.276549935, "people"),
  2981. name: "Back",
  2982. image: {
  2983. source: "./media/characters/rai/back.svg",
  2984. extra: 1770/1707,
  2985. bottom: 28/1798
  2986. },
  2987. form: "anthro"
  2988. },
  2989. feral: {
  2990. height: math.unit(9.5, "feet"),
  2991. weight: math.unit(640, "kg"),
  2992. preyCapacity: math.unit(4, "people"),
  2993. name: "Feral",
  2994. image: {
  2995. source: "./media/characters/rai/feral.svg",
  2996. extra: 945/553,
  2997. bottom: 176/1121
  2998. },
  2999. form: "feral",
  3000. default: true
  3001. },
  3002. dragon: {
  3003. height: math.unit(23, "feet"),
  3004. weight: math.unit(50000, "lb"),
  3005. name: "Dragon",
  3006. image: {
  3007. source: "./media/characters/rai/dragon.svg",
  3008. extra: 2498 / 2030,
  3009. bottom: 85.2 / 2584
  3010. },
  3011. form: "dragon",
  3012. default: true
  3013. },
  3014. maw: {
  3015. height: math.unit(1.69, "feet"),
  3016. name: "Maw",
  3017. image: {
  3018. source: "./media/characters/rai/maw.svg"
  3019. },
  3020. form: "anthro"
  3021. },
  3022. },
  3023. [
  3024. {
  3025. name: "Normal",
  3026. height: math.unit(7 + 2/12, "feet"),
  3027. form: "anthro"
  3028. },
  3029. {
  3030. name: "Big",
  3031. height: math.unit(11, "feet"),
  3032. form: "anthro"
  3033. },
  3034. {
  3035. name: "Minimacro",
  3036. height: math.unit(77, "feet"),
  3037. form: "anthro"
  3038. },
  3039. {
  3040. name: "Macro",
  3041. height: math.unit(302, "feet"),
  3042. default: true,
  3043. form: "anthro"
  3044. },
  3045. {
  3046. name: "Normal",
  3047. height: math.unit(9.5, "feet"),
  3048. form: "feral",
  3049. default: true
  3050. },
  3051. {
  3052. name: "Normal",
  3053. height: math.unit(23, "feet"),
  3054. form: "dragon",
  3055. default: true
  3056. }
  3057. ],
  3058. {
  3059. "anthro": {
  3060. name: "Anthro",
  3061. default: true
  3062. },
  3063. "feral": {
  3064. name: "Feral",
  3065. },
  3066. "dragon": {
  3067. name: "Dragon",
  3068. },
  3069. }
  3070. ))
  3071. characterMakers.push(() => makeCharacter(
  3072. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3073. {
  3074. frontDressed: {
  3075. height: math.unit(216, "feet"),
  3076. weight: math.unit(7000000, "lb"),
  3077. preyCapacity: math.unit(1321, "people"),
  3078. name: "Front (Dressed)",
  3079. image: {
  3080. source: "./media/characters/jazzy/front-dressed.svg",
  3081. extra: 2738 / 2651,
  3082. bottom: 41.8 / 2786
  3083. }
  3084. },
  3085. backDressed: {
  3086. height: math.unit(216, "feet"),
  3087. weight: math.unit(7000000, "lb"),
  3088. preyCapacity: math.unit(1321, "people"),
  3089. name: "Back (Dressed)",
  3090. image: {
  3091. source: "./media/characters/jazzy/back-dressed.svg",
  3092. extra: 2775 / 2673,
  3093. bottom: 36.8 / 2817
  3094. }
  3095. },
  3096. front: {
  3097. height: math.unit(216, "feet"),
  3098. weight: math.unit(7000000, "lb"),
  3099. preyCapacity: math.unit(1321, "people"),
  3100. name: "Front",
  3101. image: {
  3102. source: "./media/characters/jazzy/front.svg",
  3103. extra: 2738 / 2651,
  3104. bottom: 41.8 / 2786
  3105. }
  3106. },
  3107. back: {
  3108. height: math.unit(216, "feet"),
  3109. weight: math.unit(7000000, "lb"),
  3110. preyCapacity: math.unit(1321, "people"),
  3111. name: "Back",
  3112. image: {
  3113. source: "./media/characters/jazzy/back.svg",
  3114. extra: 2775 / 2673,
  3115. bottom: 36.8 / 2817
  3116. }
  3117. },
  3118. maw: {
  3119. height: math.unit(20, "feet"),
  3120. name: "Maw",
  3121. image: {
  3122. source: "./media/characters/jazzy/maw.svg"
  3123. }
  3124. },
  3125. paws: {
  3126. height: math.unit(27.5, "feet"),
  3127. name: "Paws",
  3128. image: {
  3129. source: "./media/characters/jazzy/paws.svg"
  3130. }
  3131. },
  3132. eye: {
  3133. height: math.unit(4.4, "feet"),
  3134. name: "Eye",
  3135. image: {
  3136. source: "./media/characters/jazzy/eye.svg"
  3137. }
  3138. },
  3139. droneOffense: {
  3140. height: math.unit(9.5, "inches"),
  3141. name: "Drone (Offense)",
  3142. image: {
  3143. source: "./media/characters/jazzy/drone-offense.svg"
  3144. }
  3145. },
  3146. droneRecon: {
  3147. height: math.unit(9.5, "inches"),
  3148. name: "Drone (Recon)",
  3149. image: {
  3150. source: "./media/characters/jazzy/drone-recon.svg"
  3151. }
  3152. },
  3153. droneDefense: {
  3154. height: math.unit(9.5, "inches"),
  3155. name: "Drone (Defense)",
  3156. image: {
  3157. source: "./media/characters/jazzy/drone-defense.svg"
  3158. }
  3159. },
  3160. },
  3161. [
  3162. {
  3163. name: "Macro",
  3164. height: math.unit(216, "feet"),
  3165. default: true
  3166. },
  3167. ]
  3168. ))
  3169. characterMakers.push(() => makeCharacter(
  3170. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3171. {
  3172. front: {
  3173. height: math.unit(9 + 6/12, "feet"),
  3174. weight: math.unit(700, "lb"),
  3175. name: "Front",
  3176. image: {
  3177. source: "./media/characters/flamm/front.svg",
  3178. extra: 1736/1596,
  3179. bottom: 93/1829
  3180. }
  3181. },
  3182. buff: {
  3183. height: math.unit(9 + 6/12, "feet"),
  3184. weight: math.unit(950, "lb"),
  3185. name: "Buff",
  3186. image: {
  3187. source: "./media/characters/flamm/buff.svg",
  3188. extra: 3018/2874,
  3189. bottom: 221/3239
  3190. }
  3191. },
  3192. },
  3193. [
  3194. {
  3195. name: "Normal",
  3196. height: math.unit(9.5, "feet")
  3197. },
  3198. {
  3199. name: "Macro",
  3200. height: math.unit(200, "feet"),
  3201. default: true
  3202. },
  3203. ]
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3207. {
  3208. front: {
  3209. height: math.unit(5 + 3/12, "feet"),
  3210. weight: math.unit(60, "kg"),
  3211. name: "Front",
  3212. image: {
  3213. source: "./media/characters/zephiro/front.svg",
  3214. extra: 1873/1761,
  3215. bottom: 147/2020
  3216. }
  3217. },
  3218. side: {
  3219. height: math.unit(5 + 3/12, "feet"),
  3220. weight: math.unit(60, "kg"),
  3221. name: "Side",
  3222. image: {
  3223. source: "./media/characters/zephiro/side.svg",
  3224. extra: 1929/1827,
  3225. bottom: 65/1994
  3226. }
  3227. },
  3228. back: {
  3229. height: math.unit(5 + 3/12, "feet"),
  3230. weight: math.unit(60, "kg"),
  3231. name: "Back",
  3232. image: {
  3233. source: "./media/characters/zephiro/back.svg",
  3234. extra: 1926/1816,
  3235. bottom: 41/1967
  3236. }
  3237. },
  3238. hand: {
  3239. height: math.unit(0.68, "feet"),
  3240. name: "Hand",
  3241. image: {
  3242. source: "./media/characters/zephiro/hand.svg"
  3243. }
  3244. },
  3245. paw: {
  3246. height: math.unit(1, "feet"),
  3247. name: "Paw",
  3248. image: {
  3249. source: "./media/characters/zephiro/paw.svg"
  3250. }
  3251. },
  3252. beans: {
  3253. height: math.unit(0.93, "feet"),
  3254. name: "Beans",
  3255. image: {
  3256. source: "./media/characters/zephiro/beans.svg"
  3257. }
  3258. },
  3259. },
  3260. [
  3261. {
  3262. name: "Micro",
  3263. height: math.unit(3, "inches")
  3264. },
  3265. {
  3266. name: "Normal",
  3267. height: math.unit(5 + 3 / 12, "feet"),
  3268. default: true
  3269. },
  3270. {
  3271. name: "Macro",
  3272. height: math.unit(118, "feet")
  3273. },
  3274. ]
  3275. ))
  3276. characterMakers.push(() => makeCharacter(
  3277. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3278. {
  3279. front: {
  3280. height: math.unit(5, "feet"),
  3281. weight: math.unit(90, "kg"),
  3282. preyCapacity: math.unit(14, "people"),
  3283. name: "Front",
  3284. image: {
  3285. source: "./media/characters/fory/front.svg",
  3286. extra: 2862 / 2674,
  3287. bottom: 180 / 3043.8
  3288. },
  3289. form: "weaselbun",
  3290. default: true,
  3291. extraAttributes: {
  3292. "pawSize": {
  3293. name: "Paw Size",
  3294. power: 2,
  3295. type: "area",
  3296. base: math.unit(0.1596, "m^2")
  3297. },
  3298. "pawLength": {
  3299. name: "Paw Length",
  3300. power: 1,
  3301. type: "length",
  3302. base: math.unit(0.7, "m")
  3303. }
  3304. }
  3305. },
  3306. back: {
  3307. height: math.unit(5, "feet"),
  3308. weight: math.unit(90, "kg"),
  3309. preyCapacity: math.unit(14, "people"),
  3310. name: "Back",
  3311. image: {
  3312. source: "./media/characters/fory/back.svg",
  3313. extra: 1790/1672,
  3314. bottom: 84/1874
  3315. },
  3316. form: "weaselbun",
  3317. extraAttributes: {
  3318. "pawSize": {
  3319. name: "Paw Size",
  3320. power: 2,
  3321. type: "area",
  3322. base: math.unit(0.1596, "m^2")
  3323. },
  3324. "pawLength": {
  3325. name: "Paw Length",
  3326. power: 1,
  3327. type: "length",
  3328. base: math.unit(0.7, "m")
  3329. }
  3330. }
  3331. },
  3332. paw: {
  3333. height: math.unit(2.14, "feet"),
  3334. name: "Paw",
  3335. image: {
  3336. source: "./media/characters/fory/paw.svg"
  3337. },
  3338. form: "weaselbun",
  3339. extraAttributes: {
  3340. "pawSize": {
  3341. name: "Paw Size",
  3342. power: 2,
  3343. type: "area",
  3344. base: math.unit(0.1596, "m^2")
  3345. },
  3346. "pawLength": {
  3347. name: "Paw Length",
  3348. power: 1,
  3349. type: "length",
  3350. base: math.unit(0.48, "m")
  3351. }
  3352. }
  3353. },
  3354. bunBack: {
  3355. height: math.unit(3, "feet"),
  3356. weight: math.unit(20, "kg"),
  3357. preyCapacity: math.unit(3, "people"),
  3358. name: "Back",
  3359. image: {
  3360. source: "./media/characters/fory/bun-back.svg",
  3361. extra: 1749/1564,
  3362. bottom: 246/1995
  3363. },
  3364. form: "bun",
  3365. default: true,
  3366. extraAttributes: {
  3367. "pawSize": {
  3368. name: "Paw Size",
  3369. power: 2,
  3370. type: "area",
  3371. base: math.unit(0.072, "m^2")
  3372. },
  3373. "pawLength": {
  3374. name: "Paw Length",
  3375. power: 1,
  3376. type: "length",
  3377. base: math.unit(0.45, "m")
  3378. }
  3379. }
  3380. },
  3381. },
  3382. [
  3383. {
  3384. name: "Normal",
  3385. height: math.unit(5, "feet"),
  3386. form: "weaselbun"
  3387. },
  3388. {
  3389. name: "Macro",
  3390. height: math.unit(50, "feet"),
  3391. default: true,
  3392. form: "weaselbun"
  3393. },
  3394. {
  3395. name: "Megamacro",
  3396. height: math.unit(10, "miles"),
  3397. form: "weaselbun"
  3398. },
  3399. {
  3400. name: "Gigamacro",
  3401. height: math.unit(5, "earths"),
  3402. form: "weaselbun"
  3403. },
  3404. {
  3405. name: "Normal",
  3406. height: math.unit(3, "feet"),
  3407. default: true,
  3408. form: "bun"
  3409. },
  3410. {
  3411. name: "Fun-Size",
  3412. height: math.unit(12, "feet"),
  3413. form: "bun"
  3414. },
  3415. {
  3416. name: "Macro",
  3417. height: math.unit(100, "feet"),
  3418. form: "bun"
  3419. },
  3420. {
  3421. name: "Planetary",
  3422. height: math.unit(3, "earths"),
  3423. form: "bun"
  3424. },
  3425. ],
  3426. {
  3427. "weaselbun": {
  3428. name: "Weaselbun",
  3429. default: true
  3430. },
  3431. "bun": {
  3432. name: "Bun",
  3433. },
  3434. }
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3438. {
  3439. front: {
  3440. height: math.unit(7, "feet"),
  3441. weight: math.unit(90, "kg"),
  3442. name: "Front",
  3443. image: {
  3444. source: "./media/characters/kurrikage/front.svg",
  3445. extra: 1845/1733,
  3446. bottom: 119/1964
  3447. }
  3448. },
  3449. back: {
  3450. height: math.unit(7, "feet"),
  3451. weight: math.unit(90, "kg"),
  3452. name: "Back",
  3453. image: {
  3454. source: "./media/characters/kurrikage/back.svg",
  3455. extra: 1790/1677,
  3456. bottom: 61/1851
  3457. }
  3458. },
  3459. dressed: {
  3460. height: math.unit(7, "feet"),
  3461. weight: math.unit(90, "kg"),
  3462. name: "Dressed",
  3463. image: {
  3464. source: "./media/characters/kurrikage/dressed.svg",
  3465. extra: 1845/1733,
  3466. bottom: 119/1964
  3467. }
  3468. },
  3469. foot: {
  3470. height: math.unit(1.5, "feet"),
  3471. name: "Foot",
  3472. image: {
  3473. source: "./media/characters/kurrikage/foot.svg"
  3474. }
  3475. },
  3476. staff: {
  3477. height: math.unit(6.7, "feet"),
  3478. name: "Staff",
  3479. image: {
  3480. source: "./media/characters/kurrikage/staff.svg"
  3481. }
  3482. },
  3483. peek: {
  3484. height: math.unit(1.05, "feet"),
  3485. name: "Peeking",
  3486. image: {
  3487. source: "./media/characters/kurrikage/peek.svg",
  3488. bottom: 0.08
  3489. }
  3490. },
  3491. },
  3492. [
  3493. {
  3494. name: "Normal",
  3495. height: math.unit(12, "feet"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Big",
  3500. height: math.unit(20, "feet")
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(500, "feet")
  3505. },
  3506. {
  3507. name: "Megamacro",
  3508. height: math.unit(20, "miles")
  3509. },
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3514. {
  3515. front: {
  3516. height: math.unit(6, "feet"),
  3517. weight: math.unit(75, "kg"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/shingo/front.svg",
  3521. extra: 1900/1825,
  3522. bottom: 82/1982
  3523. }
  3524. },
  3525. side: {
  3526. height: math.unit(6, "feet"),
  3527. weight: math.unit(75, "kg"),
  3528. name: "Side",
  3529. image: {
  3530. source: "./media/characters/shingo/side.svg",
  3531. extra: 1930/1865,
  3532. bottom: 16/1946
  3533. }
  3534. },
  3535. back: {
  3536. height: math.unit(6, "feet"),
  3537. weight: math.unit(75, "kg"),
  3538. name: "Back",
  3539. image: {
  3540. source: "./media/characters/shingo/back.svg",
  3541. extra: 1922/1852,
  3542. bottom: 16/1938
  3543. }
  3544. },
  3545. frontDressed: {
  3546. height: math.unit(6, "feet"),
  3547. weight: math.unit(150, "lb"),
  3548. name: "Front-dressed",
  3549. image: {
  3550. source: "./media/characters/shingo/front-dressed.svg",
  3551. extra: 1900/1825,
  3552. bottom: 82/1982
  3553. }
  3554. },
  3555. paw: {
  3556. height: math.unit(1.29, "feet"),
  3557. name: "Paw",
  3558. image: {
  3559. source: "./media/characters/shingo/paw.svg"
  3560. }
  3561. },
  3562. hand: {
  3563. height: math.unit(1.07, "feet"),
  3564. name: "Hand",
  3565. image: {
  3566. source: "./media/characters/shingo/hand.svg"
  3567. }
  3568. },
  3569. frontAlt: {
  3570. height: math.unit(6, "feet"),
  3571. weight: math.unit(75, "kg"),
  3572. name: "Front (Alt)",
  3573. image: {
  3574. source: "./media/characters/shingo/front-alt.svg",
  3575. extra: 3511 / 3338,
  3576. bottom: 0.005
  3577. }
  3578. },
  3579. frontAlt2: {
  3580. height: math.unit(6, "feet"),
  3581. weight: math.unit(75, "kg"),
  3582. name: "Front (Alt 2)",
  3583. image: {
  3584. source: "./media/characters/shingo/front-alt-2.svg",
  3585. extra: 706/681,
  3586. bottom: 11/717
  3587. }
  3588. },
  3589. pawAlt: {
  3590. height: math.unit(1, "feet"),
  3591. name: "Paw (Alt)",
  3592. image: {
  3593. source: "./media/characters/shingo/paw-alt.svg"
  3594. }
  3595. },
  3596. },
  3597. [
  3598. {
  3599. name: "Micro",
  3600. height: math.unit(4, "inches")
  3601. },
  3602. {
  3603. name: "Normal",
  3604. height: math.unit(6, "feet"),
  3605. default: true
  3606. },
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(108, "feet")
  3610. },
  3611. {
  3612. name: "Macro+",
  3613. height: math.unit(1500, "feet")
  3614. },
  3615. ]
  3616. ))
  3617. characterMakers.push(() => makeCharacter(
  3618. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3619. {
  3620. side: {
  3621. height: math.unit(6, "feet"),
  3622. weight: math.unit(75, "kg"),
  3623. name: "Side",
  3624. image: {
  3625. source: "./media/characters/aigey/side.svg"
  3626. }
  3627. },
  3628. },
  3629. [
  3630. {
  3631. name: "Macro",
  3632. height: math.unit(200, "feet"),
  3633. default: true
  3634. },
  3635. {
  3636. name: "Megamacro",
  3637. height: math.unit(100, "miles")
  3638. },
  3639. ]
  3640. )
  3641. )
  3642. characterMakers.push(() => makeCharacter(
  3643. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3644. {
  3645. front: {
  3646. height: math.unit(5 + 5 / 12, "feet"),
  3647. weight: math.unit(75, "kg"),
  3648. name: "Front",
  3649. image: {
  3650. source: "./media/characters/natasha/front.svg",
  3651. extra: 859 / 824,
  3652. bottom: 23 / 879.6
  3653. }
  3654. },
  3655. frontNsfw: {
  3656. height: math.unit(5 + 5 / 12, "feet"),
  3657. weight: math.unit(75, "kg"),
  3658. name: "Front (NSFW)",
  3659. image: {
  3660. source: "./media/characters/natasha/front-nsfw.svg",
  3661. extra: 859 / 824,
  3662. bottom: 23 / 879.6
  3663. }
  3664. },
  3665. frontErect: {
  3666. height: math.unit(5 + 5 / 12, "feet"),
  3667. weight: math.unit(75, "kg"),
  3668. name: "Front (Erect)",
  3669. image: {
  3670. source: "./media/characters/natasha/front-erect.svg",
  3671. extra: 859 / 824,
  3672. bottom: 23 / 879.6
  3673. }
  3674. },
  3675. back: {
  3676. height: math.unit(5 + 5 / 12, "feet"),
  3677. weight: math.unit(75, "kg"),
  3678. name: "Back",
  3679. image: {
  3680. source: "./media/characters/natasha/back.svg",
  3681. extra: 887.9 / 852.6,
  3682. bottom: 9.7 / 896.4
  3683. }
  3684. },
  3685. backAlt: {
  3686. height: math.unit(5 + 5 / 12, "feet"),
  3687. weight: math.unit(75, "kg"),
  3688. name: "Back (Alt)",
  3689. image: {
  3690. source: "./media/characters/natasha/back-alt.svg",
  3691. extra: 1236.7 / 1192,
  3692. bottom: 22.3 / 1258.2
  3693. }
  3694. },
  3695. dick: {
  3696. height: math.unit(1.772, "feet"),
  3697. name: "Dick",
  3698. image: {
  3699. source: "./media/characters/natasha/dick.svg"
  3700. }
  3701. },
  3702. paw: {
  3703. height: math.unit(0.250, "meters"),
  3704. name: "Paw",
  3705. image: {
  3706. source: "./media/characters/natasha/paw.svg"
  3707. },
  3708. extraAttributes: {
  3709. "toeSize": {
  3710. name: "Toe Size",
  3711. power: 2,
  3712. type: "area",
  3713. base: math.unit(0.0024, "m^2")
  3714. },
  3715. "padSize": {
  3716. name: "Pad Size",
  3717. power: 2,
  3718. type: "area",
  3719. base: math.unit(0.00889, "m^2")
  3720. },
  3721. "pawSize": {
  3722. name: "Paw Size",
  3723. power: 2,
  3724. type: "area",
  3725. base: math.unit(0.023667, "m^2")
  3726. },
  3727. }
  3728. },
  3729. },
  3730. [
  3731. {
  3732. name: "Shortstack",
  3733. height: math.unit(3, "feet"),
  3734. default: true
  3735. },
  3736. {
  3737. name: "Normal",
  3738. height: math.unit(5 + 5 / 12, "feet")
  3739. },
  3740. {
  3741. name: "Large",
  3742. height: math.unit(12, "feet")
  3743. },
  3744. {
  3745. name: "Macro",
  3746. height: math.unit(100, "feet")
  3747. },
  3748. {
  3749. name: "Macro+",
  3750. height: math.unit(260, "feet")
  3751. },
  3752. {
  3753. name: "Macro++",
  3754. height: math.unit(1, "mile")
  3755. },
  3756. ]
  3757. ))
  3758. characterMakers.push(() => makeCharacter(
  3759. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3760. {
  3761. front: {
  3762. height: math.unit(6, "feet"),
  3763. weight: math.unit(75, "kg"),
  3764. name: "Front",
  3765. image: {
  3766. source: "./media/characters/malik/front.svg",
  3767. extra: 1750/1561,
  3768. bottom: 80/1830
  3769. },
  3770. extraAttributes: {
  3771. "toeSize": {
  3772. name: "Toe Size",
  3773. power: 2,
  3774. type: "area",
  3775. base: math.unit(0.0159, "m^2")
  3776. },
  3777. "pawSize": {
  3778. name: "Paw Size",
  3779. power: 2,
  3780. type: "area",
  3781. base: math.unit(0.09834, "m^2")
  3782. },
  3783. }
  3784. },
  3785. side: {
  3786. height: math.unit(6, "feet"),
  3787. weight: math.unit(75, "kg"),
  3788. name: "Side",
  3789. image: {
  3790. source: "./media/characters/malik/side.svg",
  3791. extra: 1802/1685,
  3792. bottom: 42/1844
  3793. },
  3794. extraAttributes: {
  3795. "toeSize": {
  3796. name: "Toe Size",
  3797. power: 2,
  3798. type: "area",
  3799. base: math.unit(0.0159, "m^2")
  3800. },
  3801. "pawSize": {
  3802. name: "Paw Size",
  3803. power: 2,
  3804. type: "area",
  3805. base: math.unit(0.09834, "m^2")
  3806. },
  3807. }
  3808. },
  3809. back: {
  3810. height: math.unit(6, "feet"),
  3811. weight: math.unit(75, "kg"),
  3812. name: "Back",
  3813. image: {
  3814. source: "./media/characters/malik/back.svg",
  3815. extra: 1803/1607,
  3816. bottom: 33/1836
  3817. },
  3818. extraAttributes: {
  3819. "toeSize": {
  3820. name: "Toe Size",
  3821. power: 2,
  3822. type: "area",
  3823. base: math.unit(0.0159, "m^2")
  3824. },
  3825. "pawSize": {
  3826. name: "Paw Size",
  3827. power: 2,
  3828. type: "area",
  3829. base: math.unit(0.09834, "m^2")
  3830. },
  3831. }
  3832. },
  3833. },
  3834. [
  3835. {
  3836. name: "Macro",
  3837. height: math.unit(156, "feet"),
  3838. default: true
  3839. },
  3840. {
  3841. name: "Macro+",
  3842. height: math.unit(1188, "feet")
  3843. },
  3844. ]
  3845. ))
  3846. characterMakers.push(() => makeCharacter(
  3847. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3848. {
  3849. front: {
  3850. height: math.unit(6, "feet"),
  3851. weight: math.unit(75, "kg"),
  3852. name: "Front",
  3853. image: {
  3854. source: "./media/characters/sefer/front.svg",
  3855. extra: 848 / 659,
  3856. bottom: 28.3 / 876.442
  3857. }
  3858. },
  3859. back: {
  3860. height: math.unit(6, "feet"),
  3861. weight: math.unit(75, "kg"),
  3862. name: "Back",
  3863. image: {
  3864. source: "./media/characters/sefer/back.svg",
  3865. extra: 864 / 695,
  3866. bottom: 10 / 871
  3867. }
  3868. },
  3869. frontDressed: {
  3870. height: math.unit(6, "feet"),
  3871. weight: math.unit(75, "kg"),
  3872. name: "Dressed",
  3873. image: {
  3874. source: "./media/characters/sefer/dressed.svg",
  3875. extra: 839 / 653,
  3876. bottom: 37.6 / 878
  3877. }
  3878. },
  3879. },
  3880. [
  3881. {
  3882. name: "Normal",
  3883. height: math.unit(6, "feet"),
  3884. default: true
  3885. },
  3886. {
  3887. name: "Big",
  3888. height: math.unit(8, "meters")
  3889. },
  3890. ]
  3891. ))
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3894. {
  3895. body: {
  3896. height: math.unit(2.2428, "meter"),
  3897. weight: math.unit(124.738, "kg"),
  3898. name: "Body",
  3899. image: {
  3900. extra: 1225 / 1050,
  3901. source: "./media/characters/north/front.svg"
  3902. }
  3903. }
  3904. },
  3905. [
  3906. {
  3907. name: "Micro",
  3908. height: math.unit(4, "inches")
  3909. },
  3910. {
  3911. name: "Macro",
  3912. height: math.unit(63, "meters")
  3913. },
  3914. {
  3915. name: "Megamacro",
  3916. height: math.unit(101, "miles"),
  3917. default: true
  3918. }
  3919. ]
  3920. ))
  3921. characterMakers.push(() => makeCharacter(
  3922. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3923. {
  3924. angled: {
  3925. height: math.unit(4, "meter"),
  3926. weight: math.unit(150, "kg"),
  3927. name: "Angled",
  3928. image: {
  3929. source: "./media/characters/talan/angled-sfw.svg",
  3930. bottom: 29 / 3734
  3931. }
  3932. },
  3933. angledNsfw: {
  3934. height: math.unit(4, "meter"),
  3935. weight: math.unit(150, "kg"),
  3936. name: "Angled (NSFW)",
  3937. image: {
  3938. source: "./media/characters/talan/angled-nsfw.svg",
  3939. bottom: 29 / 3734
  3940. }
  3941. },
  3942. frontNsfw: {
  3943. height: math.unit(4, "meter"),
  3944. weight: math.unit(150, "kg"),
  3945. name: "Front (NSFW)",
  3946. image: {
  3947. source: "./media/characters/talan/front-nsfw.svg",
  3948. bottom: 29 / 3734
  3949. }
  3950. },
  3951. sideNsfw: {
  3952. height: math.unit(4, "meter"),
  3953. weight: math.unit(150, "kg"),
  3954. name: "Side (NSFW)",
  3955. image: {
  3956. source: "./media/characters/talan/side-nsfw.svg",
  3957. bottom: 29 / 3734
  3958. }
  3959. },
  3960. back: {
  3961. height: math.unit(4, "meter"),
  3962. weight: math.unit(150, "kg"),
  3963. name: "Back",
  3964. image: {
  3965. source: "./media/characters/talan/back.svg"
  3966. }
  3967. },
  3968. dickBottom: {
  3969. height: math.unit(0.621, "meter"),
  3970. name: "Dick (Bottom)",
  3971. image: {
  3972. source: "./media/characters/talan/dick-bottom.svg"
  3973. }
  3974. },
  3975. dickTop: {
  3976. height: math.unit(0.621, "meter"),
  3977. name: "Dick (Top)",
  3978. image: {
  3979. source: "./media/characters/talan/dick-top.svg"
  3980. }
  3981. },
  3982. dickSide: {
  3983. height: math.unit(0.305, "meter"),
  3984. name: "Dick (Side)",
  3985. image: {
  3986. source: "./media/characters/talan/dick-side.svg"
  3987. }
  3988. },
  3989. dickFront: {
  3990. height: math.unit(0.305, "meter"),
  3991. name: "Dick (Front)",
  3992. image: {
  3993. source: "./media/characters/talan/dick-front.svg"
  3994. }
  3995. },
  3996. },
  3997. [
  3998. {
  3999. name: "Normal",
  4000. height: math.unit(4, "meters")
  4001. },
  4002. {
  4003. name: "Macro",
  4004. height: math.unit(100, "meters")
  4005. },
  4006. {
  4007. name: "Megamacro",
  4008. height: math.unit(2, "miles"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Gigamacro",
  4013. height: math.unit(5000, "miles")
  4014. },
  4015. {
  4016. name: "Teramacro",
  4017. height: math.unit(100, "parsecs")
  4018. }
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4023. {
  4024. front: {
  4025. height: math.unit(2, "meter"),
  4026. weight: math.unit(90, "kg"),
  4027. name: "Front",
  4028. image: {
  4029. source: "./media/characters/gael'rathus/front.svg"
  4030. }
  4031. },
  4032. frontAlt: {
  4033. height: math.unit(2, "meter"),
  4034. weight: math.unit(90, "kg"),
  4035. name: "Front (alt)",
  4036. image: {
  4037. source: "./media/characters/gael'rathus/front-alt.svg"
  4038. }
  4039. },
  4040. frontAlt2: {
  4041. height: math.unit(2, "meter"),
  4042. weight: math.unit(90, "kg"),
  4043. name: "Front (alt 2)",
  4044. image: {
  4045. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4046. }
  4047. }
  4048. },
  4049. [
  4050. {
  4051. name: "Normal",
  4052. height: math.unit(9, "feet"),
  4053. default: true
  4054. },
  4055. {
  4056. name: "Large",
  4057. height: math.unit(25, "feet")
  4058. },
  4059. {
  4060. name: "Macro",
  4061. height: math.unit(0.25, "miles")
  4062. },
  4063. {
  4064. name: "Megamacro",
  4065. height: math.unit(10, "miles")
  4066. }
  4067. ]
  4068. ))
  4069. characterMakers.push(() => makeCharacter(
  4070. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4071. {
  4072. side: {
  4073. height: math.unit(2, "meter"),
  4074. weight: math.unit(140, "kg"),
  4075. name: "Side",
  4076. image: {
  4077. source: "./media/characters/sosha/side.svg",
  4078. extra: 1170/1006,
  4079. bottom: 94/1264
  4080. }
  4081. },
  4082. maw: {
  4083. height: math.unit(2.87, "feet"),
  4084. name: "Maw",
  4085. image: {
  4086. source: "./media/characters/sosha/maw.svg",
  4087. extra: 966/865,
  4088. bottom: 0/966
  4089. }
  4090. },
  4091. cooch: {
  4092. height: math.unit(5.6, "feet"),
  4093. name: "Cooch",
  4094. image: {
  4095. source: "./media/characters/sosha/cooch.svg"
  4096. }
  4097. },
  4098. },
  4099. [
  4100. {
  4101. name: "Normal",
  4102. height: math.unit(12, "feet"),
  4103. default: true
  4104. }
  4105. ]
  4106. ))
  4107. characterMakers.push(() => makeCharacter(
  4108. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4109. {
  4110. side: {
  4111. height: math.unit(5 + 5 / 12, "feet"),
  4112. weight: math.unit(170, "kg"),
  4113. name: "Side",
  4114. image: {
  4115. source: "./media/characters/runnola/side.svg",
  4116. extra: 741 / 448,
  4117. bottom: 0.05
  4118. }
  4119. },
  4120. },
  4121. [
  4122. {
  4123. name: "Small",
  4124. height: math.unit(3, "feet")
  4125. },
  4126. {
  4127. name: "Normal",
  4128. height: math.unit(5 + 5 / 12, "feet"),
  4129. default: true
  4130. },
  4131. {
  4132. name: "Big",
  4133. height: math.unit(10, "feet")
  4134. },
  4135. ]
  4136. ))
  4137. characterMakers.push(() => makeCharacter(
  4138. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4139. {
  4140. front: {
  4141. height: math.unit(2, "meter"),
  4142. weight: math.unit(50, "kg"),
  4143. name: "Front",
  4144. image: {
  4145. source: "./media/characters/kurribird/front.svg",
  4146. bottom: 0.015
  4147. }
  4148. },
  4149. frontAlt: {
  4150. height: math.unit(1.5, "meter"),
  4151. weight: math.unit(50, "kg"),
  4152. name: "Front (Alt)",
  4153. image: {
  4154. source: "./media/characters/kurribird/front-alt.svg",
  4155. extra: 1.45
  4156. }
  4157. },
  4158. },
  4159. [
  4160. {
  4161. name: "Normal",
  4162. height: math.unit(7, "feet")
  4163. },
  4164. {
  4165. name: "Big",
  4166. height: math.unit(12, "feet"),
  4167. default: true
  4168. },
  4169. {
  4170. name: "Macro",
  4171. height: math.unit(1500, "feet")
  4172. },
  4173. {
  4174. name: "Megamacro",
  4175. height: math.unit(2, "miles")
  4176. }
  4177. ]
  4178. ))
  4179. characterMakers.push(() => makeCharacter(
  4180. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4181. {
  4182. front: {
  4183. height: math.unit(2, "meter"),
  4184. weight: math.unit(80, "kg"),
  4185. name: "Front",
  4186. image: {
  4187. source: "./media/characters/elbial/front.svg",
  4188. extra: 1643 / 1556,
  4189. bottom: 60.2 / 1696
  4190. }
  4191. },
  4192. side: {
  4193. height: math.unit(2, "meter"),
  4194. weight: math.unit(80, "kg"),
  4195. name: "Side",
  4196. image: {
  4197. source: "./media/characters/elbial/side.svg",
  4198. extra: 1601/1528,
  4199. bottom: 97/1698
  4200. }
  4201. },
  4202. back: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(80, "kg"),
  4205. name: "Back",
  4206. image: {
  4207. source: "./media/characters/elbial/back.svg",
  4208. extra: 1653/1569,
  4209. bottom: 20/1673
  4210. }
  4211. },
  4212. frontDressed: {
  4213. height: math.unit(2, "meter"),
  4214. weight: math.unit(80, "kg"),
  4215. name: "Front (Dressed)",
  4216. image: {
  4217. source: "./media/characters/elbial/front-dressed.svg",
  4218. extra: 1638/1569,
  4219. bottom: 70/1708
  4220. }
  4221. },
  4222. genitals: {
  4223. height: math.unit(2 / 3.367, "meter"),
  4224. name: "Genitals",
  4225. image: {
  4226. source: "./media/characters/elbial/genitals.svg"
  4227. }
  4228. },
  4229. },
  4230. [
  4231. {
  4232. name: "Large",
  4233. height: math.unit(100, "feet")
  4234. },
  4235. {
  4236. name: "Macro",
  4237. height: math.unit(500, "feet"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Megamacro",
  4242. height: math.unit(10, "miles")
  4243. },
  4244. {
  4245. name: "Gigamacro",
  4246. height: math.unit(25000, "miles")
  4247. },
  4248. {
  4249. name: "Full-Size",
  4250. height: math.unit(8000000, "gigaparsecs")
  4251. }
  4252. ]
  4253. ))
  4254. characterMakers.push(() => makeCharacter(
  4255. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4256. {
  4257. front: {
  4258. height: math.unit(2, "meter"),
  4259. weight: math.unit(60, "kg"),
  4260. name: "Front",
  4261. image: {
  4262. source: "./media/characters/noah/front.svg"
  4263. }
  4264. },
  4265. talons: {
  4266. height: math.unit(0.315, "meter"),
  4267. name: "Talons",
  4268. image: {
  4269. source: "./media/characters/noah/talons.svg"
  4270. }
  4271. }
  4272. },
  4273. [
  4274. {
  4275. name: "Large",
  4276. height: math.unit(50, "feet")
  4277. },
  4278. {
  4279. name: "Macro",
  4280. height: math.unit(750, "feet"),
  4281. default: true
  4282. },
  4283. {
  4284. name: "Megamacro",
  4285. height: math.unit(50, "miles")
  4286. },
  4287. {
  4288. name: "Gigamacro",
  4289. height: math.unit(100000, "miles")
  4290. },
  4291. {
  4292. name: "Full-Size",
  4293. height: math.unit(3000000000, "miles")
  4294. }
  4295. ]
  4296. ))
  4297. characterMakers.push(() => makeCharacter(
  4298. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4299. {
  4300. front: {
  4301. height: math.unit(2, "meter"),
  4302. weight: math.unit(80, "kg"),
  4303. name: "Front",
  4304. image: {
  4305. source: "./media/characters/natalya/front.svg"
  4306. }
  4307. },
  4308. back: {
  4309. height: math.unit(2, "meter"),
  4310. weight: math.unit(80, "kg"),
  4311. name: "Back",
  4312. image: {
  4313. source: "./media/characters/natalya/back.svg"
  4314. }
  4315. }
  4316. },
  4317. [
  4318. {
  4319. name: "Normal",
  4320. height: math.unit(150, "feet"),
  4321. default: true
  4322. },
  4323. {
  4324. name: "Megamacro",
  4325. height: math.unit(5, "miles")
  4326. },
  4327. {
  4328. name: "Full-Size",
  4329. height: math.unit(600, "kiloparsecs")
  4330. }
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4335. {
  4336. front: {
  4337. height: math.unit(2, "meter"),
  4338. weight: math.unit(50, "kg"),
  4339. name: "Front",
  4340. image: {
  4341. source: "./media/characters/erestrebah/front.svg",
  4342. extra: 1262/1162,
  4343. bottom: 96/1358
  4344. }
  4345. },
  4346. back: {
  4347. height: math.unit(2, "meter"),
  4348. weight: math.unit(50, "kg"),
  4349. name: "Back",
  4350. image: {
  4351. source: "./media/characters/erestrebah/back.svg",
  4352. extra: 1257/1139,
  4353. bottom: 13/1270
  4354. }
  4355. },
  4356. wing: {
  4357. height: math.unit(2, "meter"),
  4358. weight: math.unit(50, "kg"),
  4359. name: "Wing",
  4360. image: {
  4361. source: "./media/characters/erestrebah/wing.svg",
  4362. extra: 1262/1162,
  4363. bottom: 96/1358
  4364. }
  4365. },
  4366. mouth: {
  4367. height: math.unit(0.39, "feet"),
  4368. name: "Mouth",
  4369. image: {
  4370. source: "./media/characters/erestrebah/mouth.svg"
  4371. }
  4372. }
  4373. },
  4374. [
  4375. {
  4376. name: "Normal",
  4377. height: math.unit(10, "feet")
  4378. },
  4379. {
  4380. name: "Large",
  4381. height: math.unit(50, "feet"),
  4382. default: true
  4383. },
  4384. {
  4385. name: "Macro",
  4386. height: math.unit(300, "feet")
  4387. },
  4388. {
  4389. name: "Macro+",
  4390. height: math.unit(750, "feet")
  4391. },
  4392. {
  4393. name: "Megamacro",
  4394. height: math.unit(3, "miles")
  4395. }
  4396. ]
  4397. ))
  4398. characterMakers.push(() => makeCharacter(
  4399. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4400. {
  4401. front: {
  4402. height: math.unit(2, "meter"),
  4403. weight: math.unit(80, "kg"),
  4404. name: "Front",
  4405. image: {
  4406. source: "./media/characters/jennifer/front.svg",
  4407. bottom: 0.11,
  4408. extra: 1.16
  4409. }
  4410. },
  4411. frontAlt: {
  4412. height: math.unit(2, "meter"),
  4413. weight: math.unit(80, "kg"),
  4414. name: "Front (Alt)",
  4415. image: {
  4416. source: "./media/characters/jennifer/front-alt.svg"
  4417. }
  4418. }
  4419. },
  4420. [
  4421. {
  4422. name: "Canon Height",
  4423. height: math.unit(120, "feet"),
  4424. default: true
  4425. },
  4426. {
  4427. name: "Macro+",
  4428. height: math.unit(300, "feet")
  4429. },
  4430. {
  4431. name: "Megamacro",
  4432. height: math.unit(20000, "feet")
  4433. }
  4434. ]
  4435. ))
  4436. characterMakers.push(() => makeCharacter(
  4437. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4438. {
  4439. front: {
  4440. height: math.unit(2, "meter"),
  4441. weight: math.unit(50, "kg"),
  4442. name: "Front",
  4443. image: {
  4444. source: "./media/characters/kalista/front.svg",
  4445. extra: 1314/1145,
  4446. bottom: 101/1415
  4447. }
  4448. },
  4449. back: {
  4450. height: math.unit(2, "meter"),
  4451. weight: math.unit(50, "kg"),
  4452. name: "Back",
  4453. image: {
  4454. source: "./media/characters/kalista/back.svg",
  4455. extra: 1366 / 1156,
  4456. bottom: 33.9 / 1362.78
  4457. }
  4458. }
  4459. },
  4460. [
  4461. {
  4462. name: "Uncomfortably Small",
  4463. height: math.unit(10, "feet")
  4464. },
  4465. {
  4466. name: "Small",
  4467. height: math.unit(30, "feet")
  4468. },
  4469. {
  4470. name: "Macro",
  4471. height: math.unit(100, "feet"),
  4472. default: true
  4473. },
  4474. {
  4475. name: "Macro+",
  4476. height: math.unit(2000, "feet")
  4477. },
  4478. {
  4479. name: "True Form",
  4480. height: math.unit(8924, "miles")
  4481. }
  4482. ]
  4483. ))
  4484. characterMakers.push(() => makeCharacter(
  4485. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4486. {
  4487. front: {
  4488. height: math.unit(2, "meter"),
  4489. weight: math.unit(120, "kg"),
  4490. name: "Front",
  4491. image: {
  4492. source: "./media/characters/ggv/front.svg"
  4493. }
  4494. },
  4495. side: {
  4496. height: math.unit(2, "meter"),
  4497. weight: math.unit(120, "kg"),
  4498. name: "Side",
  4499. image: {
  4500. source: "./media/characters/ggv/side.svg"
  4501. }
  4502. }
  4503. },
  4504. [
  4505. {
  4506. name: "Extremely Puny",
  4507. height: math.unit(9 + 5 / 12, "feet")
  4508. },
  4509. {
  4510. name: "Horribly Small",
  4511. height: math.unit(47.7, "miles"),
  4512. default: true
  4513. },
  4514. {
  4515. name: "Reasonably Sized",
  4516. height: math.unit(25000, "parsecs")
  4517. },
  4518. {
  4519. name: "Slightly Uncompressed",
  4520. height: math.unit(7.77e31, "parsecs")
  4521. },
  4522. {
  4523. name: "Omniversal",
  4524. height: math.unit(1e300, "meters")
  4525. },
  4526. ]
  4527. ))
  4528. characterMakers.push(() => makeCharacter(
  4529. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4530. {
  4531. front: {
  4532. height: math.unit(2, "meter"),
  4533. weight: math.unit(75, "lb"),
  4534. name: "Front",
  4535. image: {
  4536. source: "./media/characters/napalm/front.svg"
  4537. }
  4538. },
  4539. back: {
  4540. height: math.unit(2, "meter"),
  4541. weight: math.unit(75, "lb"),
  4542. name: "Back",
  4543. image: {
  4544. source: "./media/characters/napalm/back.svg"
  4545. }
  4546. }
  4547. },
  4548. [
  4549. {
  4550. name: "Standard",
  4551. height: math.unit(55, "feet"),
  4552. default: true
  4553. }
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4558. {
  4559. front: {
  4560. height: math.unit(7 + 5 / 6, "feet"),
  4561. weight: math.unit(325, "lb"),
  4562. name: "Front",
  4563. image: {
  4564. source: "./media/characters/asana/front.svg",
  4565. extra: 1133 / 1060,
  4566. bottom: 15.2 / 1148.6
  4567. }
  4568. },
  4569. back: {
  4570. height: math.unit(7 + 5 / 6, "feet"),
  4571. weight: math.unit(325, "lb"),
  4572. name: "Back",
  4573. image: {
  4574. source: "./media/characters/asana/back.svg",
  4575. extra: 1114 / 1043,
  4576. bottom: 5 / 1120
  4577. }
  4578. },
  4579. dressedDark: {
  4580. height: math.unit(7 + 5 / 6, "feet"),
  4581. weight: math.unit(325, "lb"),
  4582. name: "Dressed (Dark)",
  4583. image: {
  4584. source: "./media/characters/asana/dressed-dark.svg",
  4585. extra: 1133 / 1060,
  4586. bottom: 15.2 / 1148.6
  4587. }
  4588. },
  4589. dressedLight: {
  4590. height: math.unit(7 + 5 / 6, "feet"),
  4591. weight: math.unit(325, "lb"),
  4592. name: "Dressed (Light)",
  4593. image: {
  4594. source: "./media/characters/asana/dressed-light.svg",
  4595. extra: 1133 / 1060,
  4596. bottom: 15.2 / 1148.6
  4597. }
  4598. },
  4599. },
  4600. [
  4601. {
  4602. name: "Standard",
  4603. height: math.unit(7 + 5 / 6, "feet"),
  4604. default: true
  4605. },
  4606. {
  4607. name: "Large",
  4608. height: math.unit(10, "meters")
  4609. },
  4610. {
  4611. name: "Macro",
  4612. height: math.unit(2500, "meters")
  4613. },
  4614. {
  4615. name: "Megamacro",
  4616. height: math.unit(5e6, "meters")
  4617. },
  4618. {
  4619. name: "Examacro",
  4620. height: math.unit(5e12, "lightyears")
  4621. },
  4622. {
  4623. name: "Max Size",
  4624. height: math.unit(1e31, "lightyears")
  4625. }
  4626. ]
  4627. ))
  4628. characterMakers.push(() => makeCharacter(
  4629. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4630. {
  4631. front: {
  4632. height: math.unit(2, "meter"),
  4633. weight: math.unit(60, "kg"),
  4634. name: "Front",
  4635. image: {
  4636. source: "./media/characters/ebony/front.svg",
  4637. bottom: 0.03,
  4638. extra: 1045 / 810 + 0.03
  4639. }
  4640. },
  4641. side: {
  4642. height: math.unit(2, "meter"),
  4643. weight: math.unit(60, "kg"),
  4644. name: "Side",
  4645. image: {
  4646. source: "./media/characters/ebony/side.svg",
  4647. bottom: 0.03,
  4648. extra: 1045 / 810 + 0.03
  4649. }
  4650. },
  4651. back: {
  4652. height: math.unit(2, "meter"),
  4653. weight: math.unit(60, "kg"),
  4654. name: "Back",
  4655. image: {
  4656. source: "./media/characters/ebony/back.svg",
  4657. bottom: 0.01,
  4658. extra: 1045 / 810 + 0.01
  4659. }
  4660. },
  4661. },
  4662. [
  4663. // TODO check why I did this lol
  4664. {
  4665. name: "Standard",
  4666. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4667. default: true
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(200, "feet")
  4672. },
  4673. {
  4674. name: "Gigamacro",
  4675. height: math.unit(13000, "km")
  4676. }
  4677. ]
  4678. ))
  4679. characterMakers.push(() => makeCharacter(
  4680. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4681. {
  4682. front: {
  4683. height: math.unit(6, "feet"),
  4684. weight: math.unit(175, "lb"),
  4685. name: "Front",
  4686. image: {
  4687. source: "./media/characters/mountain/front.svg",
  4688. extra: 972 / 955,
  4689. bottom: 64 / 1036.6
  4690. }
  4691. },
  4692. back: {
  4693. height: math.unit(6, "feet"),
  4694. weight: math.unit(175, "lb"),
  4695. name: "Back",
  4696. image: {
  4697. source: "./media/characters/mountain/back.svg",
  4698. extra: 970 / 950,
  4699. bottom: 28.25 / 999
  4700. }
  4701. },
  4702. },
  4703. [
  4704. {
  4705. name: "Large",
  4706. height: math.unit(20, "meters")
  4707. },
  4708. {
  4709. name: "Macro",
  4710. height: math.unit(300, "meters")
  4711. },
  4712. {
  4713. name: "Gigamacro",
  4714. height: math.unit(10000, "km"),
  4715. default: true
  4716. },
  4717. {
  4718. name: "Examacro",
  4719. height: math.unit(10e9, "lightyears")
  4720. }
  4721. ]
  4722. ))
  4723. characterMakers.push(() => makeCharacter(
  4724. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4725. {
  4726. front: {
  4727. height: math.unit(8, "feet"),
  4728. weight: math.unit(500, "lb"),
  4729. name: "Front",
  4730. image: {
  4731. source: "./media/characters/rick/front.svg"
  4732. }
  4733. }
  4734. },
  4735. [
  4736. {
  4737. name: "Normal",
  4738. height: math.unit(8, "feet"),
  4739. default: true
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(5, "km")
  4744. }
  4745. ]
  4746. ))
  4747. characterMakers.push(() => makeCharacter(
  4748. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4749. {
  4750. front: {
  4751. height: math.unit(8, "feet"),
  4752. weight: math.unit(120, "lb"),
  4753. name: "Front",
  4754. image: {
  4755. source: "./media/characters/ona/front.svg"
  4756. }
  4757. },
  4758. frontAlt: {
  4759. height: math.unit(8, "feet"),
  4760. weight: math.unit(120, "lb"),
  4761. name: "Front (Alt)",
  4762. image: {
  4763. source: "./media/characters/ona/front-alt.svg"
  4764. }
  4765. },
  4766. back: {
  4767. height: math.unit(8, "feet"),
  4768. weight: math.unit(120, "lb"),
  4769. name: "Back",
  4770. image: {
  4771. source: "./media/characters/ona/back.svg"
  4772. }
  4773. },
  4774. foot: {
  4775. height: math.unit(1.1, "feet"),
  4776. name: "Foot",
  4777. image: {
  4778. source: "./media/characters/ona/foot.svg"
  4779. }
  4780. }
  4781. },
  4782. [
  4783. {
  4784. name: "Megamacro",
  4785. height: math.unit(70, "km"),
  4786. default: true
  4787. },
  4788. {
  4789. name: "Gigamacro",
  4790. height: math.unit(681818, "miles")
  4791. },
  4792. {
  4793. name: "Examacro",
  4794. height: math.unit(3800000, "lightyears")
  4795. },
  4796. ]
  4797. ))
  4798. characterMakers.push(() => makeCharacter(
  4799. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4800. {
  4801. front: {
  4802. height: math.unit(12, "feet"),
  4803. weight: math.unit(3000, "lb"),
  4804. name: "Front",
  4805. image: {
  4806. source: "./media/characters/mech/front.svg",
  4807. extra: 2900 / 2770,
  4808. bottom: 110 / 3010
  4809. }
  4810. },
  4811. back: {
  4812. height: math.unit(12, "feet"),
  4813. weight: math.unit(3000, "lb"),
  4814. name: "Back",
  4815. image: {
  4816. source: "./media/characters/mech/back.svg",
  4817. extra: 3011 / 2890,
  4818. bottom: 94 / 3105
  4819. }
  4820. },
  4821. maw: {
  4822. height: math.unit(3.07, "feet"),
  4823. name: "Maw",
  4824. image: {
  4825. source: "./media/characters/mech/maw.svg"
  4826. }
  4827. },
  4828. head: {
  4829. height: math.unit(3.07, "feet"),
  4830. name: "Head",
  4831. image: {
  4832. source: "./media/characters/mech/head.svg"
  4833. }
  4834. },
  4835. dick: {
  4836. height: math.unit(1.43, "feet"),
  4837. name: "Dick",
  4838. image: {
  4839. source: "./media/characters/mech/dick.svg"
  4840. }
  4841. },
  4842. },
  4843. [
  4844. {
  4845. name: "Normal",
  4846. height: math.unit(12, "feet")
  4847. },
  4848. {
  4849. name: "Macro",
  4850. height: math.unit(300, "feet"),
  4851. default: true
  4852. },
  4853. {
  4854. name: "Macro+",
  4855. height: math.unit(1500, "feet")
  4856. },
  4857. ]
  4858. ))
  4859. characterMakers.push(() => makeCharacter(
  4860. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4861. {
  4862. front: {
  4863. height: math.unit(1.3, "meter"),
  4864. weight: math.unit(30, "kg"),
  4865. name: "Front",
  4866. image: {
  4867. source: "./media/characters/gregory/front.svg",
  4868. }
  4869. }
  4870. },
  4871. [
  4872. {
  4873. name: "Normal",
  4874. height: math.unit(1.3, "meter"),
  4875. default: true
  4876. },
  4877. {
  4878. name: "Macro",
  4879. height: math.unit(20, "meter")
  4880. }
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4885. {
  4886. front: {
  4887. height: math.unit(2.8, "meter"),
  4888. weight: math.unit(200, "kg"),
  4889. name: "Front",
  4890. image: {
  4891. source: "./media/characters/elory/front.svg",
  4892. }
  4893. }
  4894. },
  4895. [
  4896. {
  4897. name: "Normal",
  4898. height: math.unit(2.8, "meter"),
  4899. default: true
  4900. },
  4901. {
  4902. name: "Macro",
  4903. height: math.unit(38, "meter")
  4904. }
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4909. {
  4910. front: {
  4911. height: math.unit(470, "feet"),
  4912. weight: math.unit(924, "tons"),
  4913. name: "Front",
  4914. image: {
  4915. source: "./media/characters/angelpatamon/front.svg",
  4916. }
  4917. }
  4918. },
  4919. [
  4920. {
  4921. name: "Normal",
  4922. height: math.unit(470, "feet"),
  4923. default: true
  4924. },
  4925. {
  4926. name: "Deity Size I",
  4927. height: math.unit(28651.2, "km")
  4928. },
  4929. {
  4930. name: "Deity Size II",
  4931. height: math.unit(171907.2, "km")
  4932. }
  4933. ]
  4934. ))
  4935. characterMakers.push(() => makeCharacter(
  4936. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4937. {
  4938. side: {
  4939. height: math.unit(7.2, "meter"),
  4940. weight: math.unit(8.2, "tons"),
  4941. name: "Side",
  4942. image: {
  4943. source: "./media/characters/cryae/side.svg",
  4944. extra: 3500 / 1500
  4945. }
  4946. }
  4947. },
  4948. [
  4949. {
  4950. name: "Normal",
  4951. height: math.unit(7.2, "meter"),
  4952. default: true
  4953. }
  4954. ]
  4955. ))
  4956. characterMakers.push(() => makeCharacter(
  4957. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4958. {
  4959. front: {
  4960. height: math.unit(6, "feet"),
  4961. weight: math.unit(175, "lb"),
  4962. name: "Front",
  4963. image: {
  4964. source: "./media/characters/xera/front.svg",
  4965. extra: 2377 / 1972,
  4966. bottom: 75.5 / 2452
  4967. }
  4968. },
  4969. side: {
  4970. height: math.unit(6, "feet"),
  4971. weight: math.unit(175, "lb"),
  4972. name: "Side",
  4973. image: {
  4974. source: "./media/characters/xera/side.svg",
  4975. extra: 2345 / 2019,
  4976. bottom: 39.7 / 2384
  4977. }
  4978. },
  4979. back: {
  4980. height: math.unit(6, "feet"),
  4981. weight: math.unit(175, "lb"),
  4982. name: "Back",
  4983. image: {
  4984. source: "./media/characters/xera/back.svg",
  4985. extra: 2095 / 1984,
  4986. bottom: 67 / 2166
  4987. }
  4988. },
  4989. },
  4990. [
  4991. {
  4992. name: "Small",
  4993. height: math.unit(10, "feet")
  4994. },
  4995. {
  4996. name: "Macro",
  4997. height: math.unit(500, "meters"),
  4998. default: true
  4999. },
  5000. {
  5001. name: "Macro+",
  5002. height: math.unit(10, "km")
  5003. },
  5004. {
  5005. name: "Gigamacro",
  5006. height: math.unit(25000, "km")
  5007. },
  5008. {
  5009. name: "Teramacro",
  5010. height: math.unit(3e6, "km")
  5011. }
  5012. ]
  5013. ))
  5014. characterMakers.push(() => makeCharacter(
  5015. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5016. {
  5017. front: {
  5018. height: math.unit(6, "feet"),
  5019. weight: math.unit(175, "lb"),
  5020. name: "Front",
  5021. image: {
  5022. source: "./media/characters/nebula/front.svg",
  5023. extra: 2566 / 2362,
  5024. bottom: 81 / 2644
  5025. }
  5026. }
  5027. },
  5028. [
  5029. {
  5030. name: "Small",
  5031. height: math.unit(4.5, "meters")
  5032. },
  5033. {
  5034. name: "Macro",
  5035. height: math.unit(1500, "meters"),
  5036. default: true
  5037. },
  5038. {
  5039. name: "Megamacro",
  5040. height: math.unit(150, "km")
  5041. },
  5042. {
  5043. name: "Gigamacro",
  5044. height: math.unit(27000, "km")
  5045. }
  5046. ]
  5047. ))
  5048. characterMakers.push(() => makeCharacter(
  5049. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5050. {
  5051. front: {
  5052. height: math.unit(6, "feet"),
  5053. weight: math.unit(225, "lb"),
  5054. name: "Front",
  5055. image: {
  5056. source: "./media/characters/abysgar/front.svg",
  5057. extra: 1739/1614,
  5058. bottom: 71/1810
  5059. }
  5060. },
  5061. frontNsfw: {
  5062. height: math.unit(6, "feet"),
  5063. weight: math.unit(225, "lb"),
  5064. name: "Front (NSFW)",
  5065. image: {
  5066. source: "./media/characters/abysgar/front-nsfw.svg",
  5067. extra: 1739/1614,
  5068. bottom: 71/1810
  5069. }
  5070. },
  5071. back: {
  5072. height: math.unit(4.6, "feet"),
  5073. weight: math.unit(225, "lb"),
  5074. name: "Back",
  5075. image: {
  5076. source: "./media/characters/abysgar/back.svg",
  5077. extra: 1384/1327,
  5078. bottom: 0/1384
  5079. }
  5080. },
  5081. head: {
  5082. height: math.unit(1.25, "feet"),
  5083. name: "Head",
  5084. image: {
  5085. source: "./media/characters/abysgar/head.svg",
  5086. extra: 669/569,
  5087. bottom: 0/669
  5088. }
  5089. },
  5090. },
  5091. [
  5092. {
  5093. name: "Small",
  5094. height: math.unit(4.5, "meters")
  5095. },
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(1250, "meters"),
  5099. default: true
  5100. },
  5101. {
  5102. name: "Megamacro",
  5103. height: math.unit(125, "km")
  5104. },
  5105. {
  5106. name: "Gigamacro",
  5107. height: math.unit(26000, "km")
  5108. }
  5109. ]
  5110. ))
  5111. characterMakers.push(() => makeCharacter(
  5112. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5113. {
  5114. front: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(180, "lb"),
  5117. name: "Front",
  5118. image: {
  5119. source: "./media/characters/yakuz/front.svg"
  5120. }
  5121. }
  5122. },
  5123. [
  5124. {
  5125. name: "Small",
  5126. height: math.unit(5, "meters")
  5127. },
  5128. {
  5129. name: "Macro",
  5130. height: math.unit(1500, "meters"),
  5131. default: true
  5132. },
  5133. {
  5134. name: "Megamacro",
  5135. height: math.unit(200, "km")
  5136. },
  5137. {
  5138. name: "Gigamacro",
  5139. height: math.unit(100000, "km")
  5140. }
  5141. ]
  5142. ))
  5143. characterMakers.push(() => makeCharacter(
  5144. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5145. {
  5146. front: {
  5147. height: math.unit(6, "feet"),
  5148. weight: math.unit(175, "lb"),
  5149. name: "Front",
  5150. image: {
  5151. source: "./media/characters/mirova/front.svg",
  5152. extra: 3334 / 3071,
  5153. bottom: 42 / 3375.6
  5154. }
  5155. }
  5156. },
  5157. [
  5158. {
  5159. name: "Small",
  5160. height: math.unit(5, "meters")
  5161. },
  5162. {
  5163. name: "Macro",
  5164. height: math.unit(900, "meters"),
  5165. default: true
  5166. },
  5167. {
  5168. name: "Megamacro",
  5169. height: math.unit(135, "km")
  5170. },
  5171. {
  5172. name: "Gigamacro",
  5173. height: math.unit(20000, "km")
  5174. }
  5175. ]
  5176. ))
  5177. characterMakers.push(() => makeCharacter(
  5178. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5179. {
  5180. side: {
  5181. height: math.unit(28.35, "feet"),
  5182. weight: math.unit(99.75, "tons"),
  5183. name: "Side",
  5184. image: {
  5185. source: "./media/characters/asana-mech/side.svg",
  5186. extra: 923 / 699,
  5187. bottom: 50 / 975
  5188. }
  5189. },
  5190. chaingun: {
  5191. height: math.unit(7, "feet"),
  5192. weight: math.unit(2400, "lb"),
  5193. name: "Chaingun",
  5194. image: {
  5195. source: "./media/characters/asana-mech/chaingun.svg"
  5196. }
  5197. },
  5198. laser: {
  5199. height: math.unit(7.12, "feet"),
  5200. weight: math.unit(2000, "lb"),
  5201. name: "Laser",
  5202. image: {
  5203. source: "./media/characters/asana-mech/laser.svg"
  5204. }
  5205. },
  5206. },
  5207. [
  5208. {
  5209. name: "Normal",
  5210. height: math.unit(28.35, "feet"),
  5211. default: true
  5212. },
  5213. {
  5214. name: "Macro",
  5215. height: math.unit(2500, "feet")
  5216. },
  5217. {
  5218. name: "Megamacro",
  5219. height: math.unit(25, "miles")
  5220. },
  5221. {
  5222. name: "Examacro",
  5223. height: math.unit(6e8, "lightyears")
  5224. },
  5225. ]
  5226. ))
  5227. characterMakers.push(() => makeCharacter(
  5228. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5229. {
  5230. front: {
  5231. height: math.unit(5, "meters"),
  5232. weight: math.unit(1000, "kg"),
  5233. name: "Front",
  5234. image: {
  5235. source: "./media/characters/asche/front.svg",
  5236. extra: 1258 / 1190,
  5237. bottom: 47 / 1305
  5238. }
  5239. },
  5240. frontUnderwear: {
  5241. height: math.unit(5, "meters"),
  5242. weight: math.unit(1000, "kg"),
  5243. name: "Front (Underwear)",
  5244. image: {
  5245. source: "./media/characters/asche/front-underwear.svg",
  5246. extra: 1258 / 1190,
  5247. bottom: 47 / 1305
  5248. }
  5249. },
  5250. frontDressed: {
  5251. height: math.unit(5, "meters"),
  5252. weight: math.unit(1000, "kg"),
  5253. name: "Front (Dressed)",
  5254. image: {
  5255. source: "./media/characters/asche/front-dressed.svg",
  5256. extra: 1258 / 1190,
  5257. bottom: 47 / 1305
  5258. }
  5259. },
  5260. frontArmor: {
  5261. height: math.unit(5, "meters"),
  5262. weight: math.unit(1000, "kg"),
  5263. name: "Front (Armored)",
  5264. image: {
  5265. source: "./media/characters/asche/front-armored.svg",
  5266. extra: 1374 / 1308,
  5267. bottom: 23 / 1397
  5268. }
  5269. },
  5270. mp724: {
  5271. height: math.unit(0.96, "meters"),
  5272. weight: math.unit(38, "kg"),
  5273. name: "H&K MP724",
  5274. image: {
  5275. source: "./media/characters/asche/h&k-mp724.svg"
  5276. }
  5277. },
  5278. side: {
  5279. height: math.unit(5, "meters"),
  5280. weight: math.unit(1000, "kg"),
  5281. name: "Side",
  5282. image: {
  5283. source: "./media/characters/asche/side.svg",
  5284. extra: 1717 / 1609,
  5285. bottom: 0.005
  5286. }
  5287. },
  5288. back: {
  5289. height: math.unit(5, "meters"),
  5290. weight: math.unit(1000, "kg"),
  5291. name: "Back",
  5292. image: {
  5293. source: "./media/characters/asche/back.svg",
  5294. extra: 1570 / 1501
  5295. }
  5296. },
  5297. },
  5298. [
  5299. {
  5300. name: "DEFCON 5",
  5301. height: math.unit(5, "meters")
  5302. },
  5303. {
  5304. name: "DEFCON 4",
  5305. height: math.unit(500, "meters"),
  5306. default: true
  5307. },
  5308. {
  5309. name: "DEFCON 3",
  5310. height: math.unit(5, "km")
  5311. },
  5312. {
  5313. name: "DEFCON 2",
  5314. height: math.unit(500, "km")
  5315. },
  5316. {
  5317. name: "DEFCON 1",
  5318. height: math.unit(500000, "km")
  5319. },
  5320. {
  5321. name: "DEFCON 0",
  5322. height: math.unit(3, "gigaparsecs")
  5323. },
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5328. {
  5329. front: {
  5330. height: math.unit(7, "feet"),
  5331. weight: math.unit(92.7, "kg"),
  5332. name: "Front",
  5333. image: {
  5334. source: "./media/characters/gale/front.svg",
  5335. extra: 977/919,
  5336. bottom: 105/1082
  5337. }
  5338. },
  5339. side: {
  5340. height: math.unit(6.7, "feet"),
  5341. weight: math.unit(92.7, "kg"),
  5342. name: "Side",
  5343. image: {
  5344. source: "./media/characters/gale/side.svg",
  5345. extra: 978/922,
  5346. bottom: 140/1118
  5347. }
  5348. },
  5349. back: {
  5350. height: math.unit(7, "feet"),
  5351. weight: math.unit(92.7, "kg"),
  5352. name: "Back",
  5353. image: {
  5354. source: "./media/characters/gale/back.svg",
  5355. extra: 966/920,
  5356. bottom: 61/1027
  5357. }
  5358. },
  5359. maw: {
  5360. height: math.unit(2.23, "feet"),
  5361. name: "Maw",
  5362. image: {
  5363. source: "./media/characters/gale/maw.svg"
  5364. }
  5365. },
  5366. foot: {
  5367. height: math.unit(2.1, "feet"),
  5368. name: "Foot",
  5369. image: {
  5370. source: "./media/characters/gale/foot.svg"
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(7, "feet")
  5378. },
  5379. {
  5380. name: "Macro",
  5381. height: math.unit(150, "feet"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "Macro+",
  5386. height: math.unit(300, "feet")
  5387. },
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5392. {
  5393. front: {
  5394. height: math.unit(5 + 10/12, "feet"),
  5395. weight: math.unit(67, "kg"),
  5396. name: "Front",
  5397. image: {
  5398. source: "./media/characters/draylen/front.svg",
  5399. extra: 832/777,
  5400. bottom: 85/917
  5401. }
  5402. }
  5403. },
  5404. [
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(5 + 10/12, "feet")
  5408. },
  5409. {
  5410. name: "Macro",
  5411. height: math.unit(150, "feet"),
  5412. default: true
  5413. }
  5414. ]
  5415. ))
  5416. characterMakers.push(() => makeCharacter(
  5417. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5418. {
  5419. front: {
  5420. height: math.unit(7 + 9 / 12, "feet"),
  5421. weight: math.unit(379, "lbs"),
  5422. name: "Front",
  5423. image: {
  5424. source: "./media/characters/chez/front.svg"
  5425. }
  5426. },
  5427. side: {
  5428. height: math.unit(7 + 9 / 12, "feet"),
  5429. weight: math.unit(379, "lbs"),
  5430. name: "Side",
  5431. image: {
  5432. source: "./media/characters/chez/side.svg"
  5433. }
  5434. }
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(7 + 9 / 12, "feet"),
  5440. default: true
  5441. },
  5442. {
  5443. name: "God King",
  5444. height: math.unit(9750000, "meters")
  5445. }
  5446. ]
  5447. ))
  5448. characterMakers.push(() => makeCharacter(
  5449. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5450. {
  5451. front: {
  5452. height: math.unit(6, "feet"),
  5453. weight: math.unit(275, "lbs"),
  5454. name: "Front",
  5455. image: {
  5456. source: "./media/characters/kaylum/front.svg",
  5457. bottom: 0.01,
  5458. extra: 1166 / 1031
  5459. }
  5460. },
  5461. frontWingless: {
  5462. height: math.unit(6, "feet"),
  5463. weight: math.unit(275, "lbs"),
  5464. name: "Front (Wingless)",
  5465. image: {
  5466. source: "./media/characters/kaylum/front-wingless.svg",
  5467. bottom: 0.01,
  5468. extra: 1117 / 1031
  5469. }
  5470. }
  5471. },
  5472. [
  5473. {
  5474. name: "Normal",
  5475. height: math.unit(3.05, "meters")
  5476. },
  5477. {
  5478. name: "Master",
  5479. height: math.unit(5.5, "meters")
  5480. },
  5481. {
  5482. name: "Rampage",
  5483. height: math.unit(19, "meters")
  5484. },
  5485. {
  5486. name: "Macro Lite",
  5487. height: math.unit(37, "meters")
  5488. },
  5489. {
  5490. name: "Hyper Predator",
  5491. height: math.unit(61, "meters")
  5492. },
  5493. {
  5494. name: "Macro",
  5495. height: math.unit(138, "meters"),
  5496. default: true
  5497. }
  5498. ]
  5499. ))
  5500. characterMakers.push(() => makeCharacter(
  5501. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5502. {
  5503. front: {
  5504. height: math.unit(5 + 5 / 12, "feet"),
  5505. weight: math.unit(120, "lbs"),
  5506. name: "Front",
  5507. image: {
  5508. source: "./media/characters/geta/front.svg",
  5509. extra: 1003/933,
  5510. bottom: 21/1024
  5511. }
  5512. },
  5513. paw: {
  5514. height: math.unit(0.35, "feet"),
  5515. name: "Paw",
  5516. image: {
  5517. source: "./media/characters/geta/paw.svg"
  5518. }
  5519. },
  5520. },
  5521. [
  5522. {
  5523. name: "Micro",
  5524. height: math.unit(3, "inches"),
  5525. default: true
  5526. },
  5527. {
  5528. name: "Normal",
  5529. height: math.unit(5 + 5 / 12, "feet")
  5530. }
  5531. ]
  5532. ))
  5533. characterMakers.push(() => makeCharacter(
  5534. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5535. {
  5536. front: {
  5537. height: math.unit(6, "feet"),
  5538. weight: math.unit(300, "lbs"),
  5539. name: "Front",
  5540. image: {
  5541. source: "./media/characters/tyrnn/front.svg"
  5542. }
  5543. }
  5544. },
  5545. [
  5546. {
  5547. name: "Main Height",
  5548. height: math.unit(355, "feet"),
  5549. default: true
  5550. },
  5551. {
  5552. name: "Fave. Height",
  5553. height: math.unit(2400, "feet")
  5554. }
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5559. {
  5560. front: {
  5561. height: math.unit(6, "feet"),
  5562. weight: math.unit(300, "lbs"),
  5563. name: "Front",
  5564. image: {
  5565. source: "./media/characters/appledectomy/front.svg"
  5566. }
  5567. }
  5568. },
  5569. [
  5570. {
  5571. name: "Macro",
  5572. height: math.unit(2500, "feet")
  5573. },
  5574. {
  5575. name: "Megamacro",
  5576. height: math.unit(50, "miles"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Gigamacro",
  5581. height: math.unit(5000, "miles")
  5582. },
  5583. {
  5584. name: "Teramacro",
  5585. height: math.unit(250000, "miles")
  5586. },
  5587. ]
  5588. ))
  5589. characterMakers.push(() => makeCharacter(
  5590. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5591. {
  5592. front: {
  5593. height: math.unit(6, "feet"),
  5594. weight: math.unit(200, "lbs"),
  5595. name: "Front",
  5596. image: {
  5597. source: "./media/characters/vulpes/front.svg",
  5598. extra: 573 / 543,
  5599. bottom: 0.033
  5600. }
  5601. },
  5602. side: {
  5603. height: math.unit(6, "feet"),
  5604. weight: math.unit(200, "lbs"),
  5605. name: "Side",
  5606. image: {
  5607. source: "./media/characters/vulpes/side.svg",
  5608. extra: 577 / 549,
  5609. bottom: 11 / 588
  5610. }
  5611. },
  5612. back: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(200, "lbs"),
  5615. name: "Back",
  5616. image: {
  5617. source: "./media/characters/vulpes/back.svg",
  5618. extra: 573 / 549,
  5619. bottom: 20 / 593
  5620. }
  5621. },
  5622. feet: {
  5623. height: math.unit(1.276, "feet"),
  5624. name: "Feet",
  5625. image: {
  5626. source: "./media/characters/vulpes/feet.svg"
  5627. }
  5628. },
  5629. maw: {
  5630. height: math.unit(1.18, "feet"),
  5631. name: "Maw",
  5632. image: {
  5633. source: "./media/characters/vulpes/maw.svg"
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Micro",
  5640. height: math.unit(2, "inches")
  5641. },
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(6.3, "feet")
  5645. },
  5646. {
  5647. name: "Macro",
  5648. height: math.unit(850, "feet")
  5649. },
  5650. {
  5651. name: "Megamacro",
  5652. height: math.unit(7500, "feet"),
  5653. default: true
  5654. },
  5655. {
  5656. name: "Gigamacro",
  5657. height: math.unit(570000, "miles")
  5658. }
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5663. {
  5664. front: {
  5665. height: math.unit(6, "feet"),
  5666. weight: math.unit(210, "lbs"),
  5667. name: "Front",
  5668. image: {
  5669. source: "./media/characters/rain-fallen/front.svg"
  5670. }
  5671. },
  5672. side: {
  5673. height: math.unit(6, "feet"),
  5674. weight: math.unit(210, "lbs"),
  5675. name: "Side",
  5676. image: {
  5677. source: "./media/characters/rain-fallen/side.svg"
  5678. }
  5679. },
  5680. back: {
  5681. height: math.unit(6, "feet"),
  5682. weight: math.unit(210, "lbs"),
  5683. name: "Back",
  5684. image: {
  5685. source: "./media/characters/rain-fallen/back.svg"
  5686. }
  5687. },
  5688. feral: {
  5689. height: math.unit(9, "feet"),
  5690. weight: math.unit(700, "lbs"),
  5691. name: "Feral",
  5692. image: {
  5693. source: "./media/characters/rain-fallen/feral.svg"
  5694. }
  5695. },
  5696. },
  5697. [
  5698. {
  5699. name: "Meddling with Mortals",
  5700. height: math.unit(8 + 8/12, "feet")
  5701. },
  5702. {
  5703. name: "Normal",
  5704. height: math.unit(5, "meter")
  5705. },
  5706. {
  5707. name: "Macro",
  5708. height: math.unit(150, "meter"),
  5709. default: true
  5710. },
  5711. {
  5712. name: "Megamacro",
  5713. height: math.unit(278e6, "meter")
  5714. },
  5715. {
  5716. name: "Gigamacro",
  5717. height: math.unit(2e9, "meter")
  5718. },
  5719. {
  5720. name: "Teramacro",
  5721. height: math.unit(8e12, "meter")
  5722. },
  5723. {
  5724. name: "Devourer",
  5725. height: math.unit(14, "zettameters")
  5726. },
  5727. {
  5728. name: "Scarlet King",
  5729. height: math.unit(18, "yottameters")
  5730. },
  5731. {
  5732. name: "Void",
  5733. height: math.unit(1e88, "yottameters")
  5734. }
  5735. ]
  5736. ))
  5737. characterMakers.push(() => makeCharacter(
  5738. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5739. {
  5740. standing: {
  5741. height: math.unit(6, "feet"),
  5742. weight: math.unit(180, "lbs"),
  5743. name: "Standing",
  5744. image: {
  5745. source: "./media/characters/zaakira/standing.svg",
  5746. extra: 1599/1504,
  5747. bottom: 39/1638
  5748. }
  5749. },
  5750. laying: {
  5751. height: math.unit(3.3, "feet"),
  5752. weight: math.unit(180, "lbs"),
  5753. name: "Laying",
  5754. image: {
  5755. source: "./media/characters/zaakira/laying.svg"
  5756. }
  5757. },
  5758. },
  5759. [
  5760. {
  5761. name: "Normal",
  5762. height: math.unit(12, "feet")
  5763. },
  5764. {
  5765. name: "Macro",
  5766. height: math.unit(279, "feet"),
  5767. default: true
  5768. }
  5769. ]
  5770. ))
  5771. characterMakers.push(() => makeCharacter(
  5772. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5773. {
  5774. femSfw: {
  5775. height: math.unit(8, "feet"),
  5776. weight: math.unit(350, "lb"),
  5777. name: "Fem",
  5778. image: {
  5779. source: "./media/characters/sigvald/fem-sfw.svg",
  5780. extra: 182 / 164,
  5781. bottom: 8.7 / 190.5
  5782. }
  5783. },
  5784. femNsfw: {
  5785. height: math.unit(8, "feet"),
  5786. weight: math.unit(350, "lb"),
  5787. name: "Fem (NSFW)",
  5788. image: {
  5789. source: "./media/characters/sigvald/fem-nsfw.svg",
  5790. extra: 182 / 164,
  5791. bottom: 8.7 / 190.5
  5792. }
  5793. },
  5794. maleNsfw: {
  5795. height: math.unit(8, "feet"),
  5796. weight: math.unit(350, "lb"),
  5797. name: "Male (NSFW)",
  5798. image: {
  5799. source: "./media/characters/sigvald/male-nsfw.svg",
  5800. extra: 182 / 164,
  5801. bottom: 8.7 / 190.5
  5802. }
  5803. },
  5804. hermNsfw: {
  5805. height: math.unit(8, "feet"),
  5806. weight: math.unit(350, "lb"),
  5807. name: "Herm (NSFW)",
  5808. image: {
  5809. source: "./media/characters/sigvald/herm-nsfw.svg",
  5810. extra: 182 / 164,
  5811. bottom: 8.7 / 190.5
  5812. }
  5813. },
  5814. dick: {
  5815. height: math.unit(2.36, "feet"),
  5816. name: "Dick",
  5817. image: {
  5818. source: "./media/characters/sigvald/dick.svg"
  5819. }
  5820. },
  5821. eye: {
  5822. height: math.unit(0.31, "feet"),
  5823. name: "Eye",
  5824. image: {
  5825. source: "./media/characters/sigvald/eye.svg"
  5826. }
  5827. },
  5828. mouth: {
  5829. height: math.unit(0.92, "feet"),
  5830. name: "Mouth",
  5831. image: {
  5832. source: "./media/characters/sigvald/mouth.svg"
  5833. }
  5834. },
  5835. paws: {
  5836. height: math.unit(2.2, "feet"),
  5837. name: "Paws",
  5838. image: {
  5839. source: "./media/characters/sigvald/paws.svg"
  5840. }
  5841. }
  5842. },
  5843. [
  5844. {
  5845. name: "Normal",
  5846. height: math.unit(8, "feet")
  5847. },
  5848. {
  5849. name: "Large",
  5850. height: math.unit(12, "feet")
  5851. },
  5852. {
  5853. name: "Larger",
  5854. height: math.unit(20, "feet")
  5855. },
  5856. {
  5857. name: "Macro",
  5858. height: math.unit(150, "feet")
  5859. },
  5860. {
  5861. name: "Macro+",
  5862. height: math.unit(200, "feet"),
  5863. default: true
  5864. },
  5865. ]
  5866. ))
  5867. characterMakers.push(() => makeCharacter(
  5868. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5869. {
  5870. side: {
  5871. height: math.unit(12, "feet"),
  5872. weight: math.unit(2000, "kg"),
  5873. name: "Side",
  5874. image: {
  5875. source: "./media/characters/scott/side.svg",
  5876. extra: 754 / 724,
  5877. bottom: 0.069
  5878. }
  5879. },
  5880. upright: {
  5881. height: math.unit(12, "feet"),
  5882. weight: math.unit(2000, "kg"),
  5883. name: "Upright",
  5884. image: {
  5885. source: "./media/characters/scott/upright.svg",
  5886. extra: 3881 / 3722,
  5887. bottom: 0.05
  5888. }
  5889. },
  5890. },
  5891. [
  5892. {
  5893. name: "Normal",
  5894. height: math.unit(12, "feet"),
  5895. default: true
  5896. },
  5897. ]
  5898. ))
  5899. characterMakers.push(() => makeCharacter(
  5900. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5901. {
  5902. side: {
  5903. height: math.unit(8, "meters"),
  5904. weight: math.unit(84755, "lbs"),
  5905. name: "Side",
  5906. image: {
  5907. source: "./media/characters/tobias/side.svg",
  5908. extra: 1474 / 1096,
  5909. bottom: 38.9 / 1513.1235
  5910. }
  5911. },
  5912. },
  5913. [
  5914. {
  5915. name: "Normal",
  5916. height: math.unit(8, "meters"),
  5917. default: true
  5918. },
  5919. ]
  5920. ))
  5921. characterMakers.push(() => makeCharacter(
  5922. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5923. {
  5924. front: {
  5925. height: math.unit(5.5, "feet"),
  5926. weight: math.unit(400, "lbs"),
  5927. name: "Front",
  5928. image: {
  5929. source: "./media/characters/kieran/front.svg",
  5930. extra: 2694 / 2364,
  5931. bottom: 217 / 2908
  5932. }
  5933. },
  5934. side: {
  5935. height: math.unit(5.5, "feet"),
  5936. weight: math.unit(400, "lbs"),
  5937. name: "Side",
  5938. image: {
  5939. source: "./media/characters/kieran/side.svg",
  5940. extra: 875 / 777,
  5941. bottom: 84.6 / 959
  5942. }
  5943. },
  5944. },
  5945. [
  5946. {
  5947. name: "Normal",
  5948. height: math.unit(5.5, "feet"),
  5949. default: true
  5950. },
  5951. ]
  5952. ))
  5953. characterMakers.push(() => makeCharacter(
  5954. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5955. {
  5956. side: {
  5957. height: math.unit(2, "meters"),
  5958. weight: math.unit(70, "kg"),
  5959. name: "Side",
  5960. image: {
  5961. source: "./media/characters/sanya/side.svg",
  5962. bottom: 0.02,
  5963. extra: 1.02
  5964. }
  5965. },
  5966. },
  5967. [
  5968. {
  5969. name: "Small",
  5970. height: math.unit(2, "meters")
  5971. },
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(3, "meters")
  5975. },
  5976. {
  5977. name: "Macro",
  5978. height: math.unit(16, "meters"),
  5979. default: true
  5980. },
  5981. ]
  5982. ))
  5983. characterMakers.push(() => makeCharacter(
  5984. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5985. {
  5986. front: {
  5987. height: math.unit(2, "meters"),
  5988. weight: math.unit(120, "kg"),
  5989. name: "Front",
  5990. image: {
  5991. source: "./media/characters/miranda/front.svg",
  5992. extra: 195 / 185,
  5993. bottom: 10.9 / 206.5
  5994. }
  5995. },
  5996. back: {
  5997. height: math.unit(2, "meters"),
  5998. weight: math.unit(120, "kg"),
  5999. name: "Back",
  6000. image: {
  6001. source: "./media/characters/miranda/back.svg",
  6002. extra: 201 / 193,
  6003. bottom: 2.3 / 203.7
  6004. }
  6005. },
  6006. },
  6007. [
  6008. {
  6009. name: "Normal",
  6010. height: math.unit(10, "feet"),
  6011. default: true
  6012. }
  6013. ]
  6014. ))
  6015. characterMakers.push(() => makeCharacter(
  6016. { name: "James", species: ["deer"], tags: ["anthro"] },
  6017. {
  6018. side: {
  6019. height: math.unit(2, "meters"),
  6020. weight: math.unit(100, "kg"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/james/front.svg",
  6024. extra: 10 / 8.5
  6025. }
  6026. },
  6027. },
  6028. [
  6029. {
  6030. name: "Normal",
  6031. height: math.unit(8.5, "feet"),
  6032. default: true
  6033. }
  6034. ]
  6035. ))
  6036. characterMakers.push(() => makeCharacter(
  6037. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6038. {
  6039. side: {
  6040. height: math.unit(9.5, "feet"),
  6041. weight: math.unit(2500, "lbs"),
  6042. name: "Side",
  6043. image: {
  6044. source: "./media/characters/heather/side.svg"
  6045. }
  6046. },
  6047. },
  6048. [
  6049. {
  6050. name: "Normal",
  6051. height: math.unit(9.5, "feet"),
  6052. default: true
  6053. }
  6054. ]
  6055. ))
  6056. characterMakers.push(() => makeCharacter(
  6057. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6058. {
  6059. side: {
  6060. height: math.unit(6.5, "feet"),
  6061. weight: math.unit(400, "lbs"),
  6062. name: "Side",
  6063. image: {
  6064. source: "./media/characters/lukas/side.svg",
  6065. extra: 7.25 / 6.5
  6066. }
  6067. },
  6068. },
  6069. [
  6070. {
  6071. name: "Normal",
  6072. height: math.unit(6.5, "feet"),
  6073. default: true
  6074. }
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6079. {
  6080. side: {
  6081. height: math.unit(5, "feet"),
  6082. weight: math.unit(3000, "lbs"),
  6083. name: "Side",
  6084. image: {
  6085. source: "./media/characters/louise/side.svg"
  6086. }
  6087. },
  6088. },
  6089. [
  6090. {
  6091. name: "Normal",
  6092. height: math.unit(5, "feet"),
  6093. default: true
  6094. }
  6095. ]
  6096. ))
  6097. characterMakers.push(() => makeCharacter(
  6098. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6099. {
  6100. side: {
  6101. height: math.unit(6, "feet"),
  6102. weight: math.unit(150, "lbs"),
  6103. name: "Side",
  6104. image: {
  6105. source: "./media/characters/ramona/side.svg",
  6106. extra: 871/854,
  6107. bottom: 41/912
  6108. }
  6109. },
  6110. },
  6111. [
  6112. {
  6113. name: "Normal",
  6114. height: math.unit(6 + 4/12, "feet")
  6115. },
  6116. {
  6117. name: "Minimacro",
  6118. height: math.unit(5.3, "meters"),
  6119. default: true
  6120. },
  6121. {
  6122. name: "Macro",
  6123. height: math.unit(20, "stories")
  6124. },
  6125. {
  6126. name: "Macro+",
  6127. height: math.unit(50, "stories")
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6133. {
  6134. standing: {
  6135. height: math.unit(5.75, "feet"),
  6136. weight: math.unit(160, "lbs"),
  6137. name: "Standing",
  6138. image: {
  6139. source: "./media/characters/deerpuff/standing.svg",
  6140. extra: 682 / 624
  6141. }
  6142. },
  6143. sitting: {
  6144. height: math.unit(5.75 / 1.79, "feet"),
  6145. weight: math.unit(160, "lbs"),
  6146. name: "Sitting",
  6147. image: {
  6148. source: "./media/characters/deerpuff/sitting.svg",
  6149. bottom: 44 / 400,
  6150. extra: 1
  6151. }
  6152. },
  6153. taurLaying: {
  6154. height: math.unit(6, "feet"),
  6155. weight: math.unit(400, "lbs"),
  6156. name: "Taur (Laying)",
  6157. image: {
  6158. source: "./media/characters/deerpuff/taur-laying.svg"
  6159. }
  6160. },
  6161. },
  6162. [
  6163. {
  6164. name: "Puffball",
  6165. height: math.unit(6, "inches")
  6166. },
  6167. {
  6168. name: "Normalpuff",
  6169. height: math.unit(5.75, "feet")
  6170. },
  6171. {
  6172. name: "Macropuff",
  6173. height: math.unit(1500, "feet"),
  6174. default: true
  6175. },
  6176. {
  6177. name: "Megapuff",
  6178. height: math.unit(500, "miles")
  6179. },
  6180. {
  6181. name: "Gigapuff",
  6182. height: math.unit(250000, "miles")
  6183. },
  6184. {
  6185. name: "Omegapuff",
  6186. height: math.unit(1000, "lightyears")
  6187. },
  6188. ]
  6189. ))
  6190. characterMakers.push(() => makeCharacter(
  6191. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6192. {
  6193. stomping: {
  6194. height: math.unit(6, "feet"),
  6195. weight: math.unit(170, "lbs"),
  6196. name: "Stomping",
  6197. image: {
  6198. source: "./media/characters/vivian/stomping.svg"
  6199. }
  6200. },
  6201. sitting: {
  6202. height: math.unit(6 / 1.75, "feet"),
  6203. weight: math.unit(170, "lbs"),
  6204. name: "Sitting",
  6205. image: {
  6206. source: "./media/characters/vivian/sitting.svg",
  6207. bottom: 1 / 6.4,
  6208. extra: 1,
  6209. }
  6210. },
  6211. },
  6212. [
  6213. {
  6214. name: "Normal",
  6215. height: math.unit(7, "feet"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Macro",
  6220. height: math.unit(10, "stories")
  6221. },
  6222. {
  6223. name: "Macro+",
  6224. height: math.unit(30, "stories")
  6225. },
  6226. {
  6227. name: "Megamacro",
  6228. height: math.unit(10, "miles")
  6229. },
  6230. {
  6231. name: "Megamacro+",
  6232. height: math.unit(2750000, "meters")
  6233. },
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6238. {
  6239. front: {
  6240. height: math.unit(6, "feet"),
  6241. weight: math.unit(160, "lbs"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/prince/front.svg",
  6245. extra: 1938/1682,
  6246. bottom: 45/1983
  6247. }
  6248. },
  6249. back: {
  6250. height: math.unit(6, "feet"),
  6251. weight: math.unit(160, "lbs"),
  6252. name: "Back",
  6253. image: {
  6254. source: "./media/characters/prince/back.svg",
  6255. extra: 1955/1726,
  6256. bottom: 6/1961
  6257. }
  6258. },
  6259. },
  6260. [
  6261. {
  6262. name: "Normal",
  6263. height: math.unit(7.75, "feet"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Not cute",
  6268. height: math.unit(17, "feet")
  6269. },
  6270. {
  6271. name: "I said NOT",
  6272. height: math.unit(91, "feet")
  6273. },
  6274. {
  6275. name: "Please stop",
  6276. height: math.unit(560, "feet")
  6277. },
  6278. {
  6279. name: "What have you done",
  6280. height: math.unit(2200, "feet")
  6281. },
  6282. {
  6283. name: "Deer God",
  6284. height: math.unit(3.6, "miles")
  6285. },
  6286. ]
  6287. ))
  6288. characterMakers.push(() => makeCharacter(
  6289. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6290. {
  6291. standing: {
  6292. height: math.unit(6, "feet"),
  6293. weight: math.unit(300, "lbs"),
  6294. name: "Standing",
  6295. image: {
  6296. source: "./media/characters/psymon/standing.svg",
  6297. extra: 1888 / 1810,
  6298. bottom: 0.05
  6299. }
  6300. },
  6301. slithering: {
  6302. height: math.unit(6, "feet"),
  6303. weight: math.unit(300, "lbs"),
  6304. name: "Slithering",
  6305. image: {
  6306. source: "./media/characters/psymon/slithering.svg",
  6307. extra: 1330 / 1224
  6308. }
  6309. },
  6310. slitheringAlt: {
  6311. height: math.unit(6, "feet"),
  6312. weight: math.unit(300, "lbs"),
  6313. name: "Slithering (Alt)",
  6314. image: {
  6315. source: "./media/characters/psymon/slithering-alt.svg",
  6316. extra: 1330 / 1224
  6317. }
  6318. },
  6319. },
  6320. [
  6321. {
  6322. name: "Normal",
  6323. height: math.unit(11.25, "feet"),
  6324. default: true
  6325. },
  6326. {
  6327. name: "Large",
  6328. height: math.unit(27, "feet")
  6329. },
  6330. {
  6331. name: "Giant",
  6332. height: math.unit(87, "feet")
  6333. },
  6334. {
  6335. name: "Macro",
  6336. height: math.unit(365, "feet")
  6337. },
  6338. {
  6339. name: "Megamacro",
  6340. height: math.unit(3, "miles")
  6341. },
  6342. {
  6343. name: "World Serpent",
  6344. height: math.unit(8000, "miles")
  6345. },
  6346. ]
  6347. ))
  6348. characterMakers.push(() => makeCharacter(
  6349. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6350. {
  6351. front: {
  6352. height: math.unit(6, "feet"),
  6353. weight: math.unit(180, "lbs"),
  6354. name: "Front",
  6355. image: {
  6356. source: "./media/characters/daimos/front.svg",
  6357. extra: 4160 / 3897,
  6358. bottom: 0.021
  6359. }
  6360. }
  6361. },
  6362. [
  6363. {
  6364. name: "Normal",
  6365. height: math.unit(8, "feet"),
  6366. default: true
  6367. },
  6368. {
  6369. name: "Big Dog",
  6370. height: math.unit(22, "feet")
  6371. },
  6372. {
  6373. name: "Macro",
  6374. height: math.unit(127, "feet")
  6375. },
  6376. {
  6377. name: "Megamacro",
  6378. height: math.unit(3600, "feet")
  6379. },
  6380. ]
  6381. ))
  6382. characterMakers.push(() => makeCharacter(
  6383. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6384. {
  6385. side: {
  6386. height: math.unit(6, "feet"),
  6387. weight: math.unit(180, "lbs"),
  6388. name: "Side",
  6389. image: {
  6390. source: "./media/characters/blake/side.svg",
  6391. extra: 1212 / 1120,
  6392. bottom: 0.05
  6393. }
  6394. },
  6395. crouched: {
  6396. height: math.unit(6 * 0.57, "feet"),
  6397. weight: math.unit(180, "lbs"),
  6398. name: "Crouched",
  6399. image: {
  6400. source: "./media/characters/blake/crouched.svg",
  6401. extra: 840 / 587,
  6402. bottom: 0.04
  6403. }
  6404. },
  6405. bent: {
  6406. height: math.unit(6 * 0.75, "feet"),
  6407. weight: math.unit(180, "lbs"),
  6408. name: "Bent",
  6409. image: {
  6410. source: "./media/characters/blake/bent.svg",
  6411. extra: 592 / 544,
  6412. bottom: 0.035
  6413. }
  6414. },
  6415. },
  6416. [
  6417. {
  6418. name: "Normal",
  6419. height: math.unit(8 + 1 / 6, "feet"),
  6420. default: true
  6421. },
  6422. {
  6423. name: "Big Backside",
  6424. height: math.unit(37, "feet")
  6425. },
  6426. {
  6427. name: "Subway Shredder",
  6428. height: math.unit(72, "feet")
  6429. },
  6430. {
  6431. name: "City Carver",
  6432. height: math.unit(1675, "feet")
  6433. },
  6434. {
  6435. name: "Tectonic Tweaker",
  6436. height: math.unit(2300, "miles")
  6437. },
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6442. {
  6443. front: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(180, "lbs"),
  6446. name: "Front",
  6447. image: {
  6448. source: "./media/characters/guisetto/front.svg",
  6449. extra: 856 / 817,
  6450. bottom: 0.06
  6451. }
  6452. },
  6453. airborne: {
  6454. height: math.unit(6, "feet"),
  6455. weight: math.unit(180, "lbs"),
  6456. name: "Airborne",
  6457. image: {
  6458. source: "./media/characters/guisetto/airborne.svg",
  6459. extra: 584 / 525
  6460. }
  6461. },
  6462. },
  6463. [
  6464. {
  6465. name: "Normal",
  6466. height: math.unit(10 + 11 / 12, "feet"),
  6467. default: true
  6468. },
  6469. {
  6470. name: "Large",
  6471. height: math.unit(35, "feet")
  6472. },
  6473. {
  6474. name: "Macro",
  6475. height: math.unit(475, "feet")
  6476. },
  6477. ]
  6478. ))
  6479. characterMakers.push(() => makeCharacter(
  6480. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6481. {
  6482. front: {
  6483. height: math.unit(6, "feet"),
  6484. weight: math.unit(180, "lbs"),
  6485. name: "Front",
  6486. image: {
  6487. source: "./media/characters/luxor/front.svg",
  6488. extra: 2940 / 2152
  6489. }
  6490. },
  6491. back: {
  6492. height: math.unit(6, "feet"),
  6493. weight: math.unit(180, "lbs"),
  6494. name: "Back",
  6495. image: {
  6496. source: "./media/characters/luxor/back.svg",
  6497. extra: 1083 / 960
  6498. }
  6499. },
  6500. },
  6501. [
  6502. {
  6503. name: "Normal",
  6504. height: math.unit(5 + 5 / 6, "feet"),
  6505. default: true
  6506. },
  6507. {
  6508. name: "Lamp",
  6509. height: math.unit(50, "feet")
  6510. },
  6511. {
  6512. name: "Lämp",
  6513. height: math.unit(300, "feet")
  6514. },
  6515. {
  6516. name: "The sun is a lamp",
  6517. height: math.unit(250000, "miles")
  6518. },
  6519. ]
  6520. ))
  6521. characterMakers.push(() => makeCharacter(
  6522. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6523. {
  6524. front: {
  6525. height: math.unit(6, "feet"),
  6526. weight: math.unit(50, "lbs"),
  6527. name: "Front",
  6528. image: {
  6529. source: "./media/characters/huoyan/front.svg"
  6530. }
  6531. },
  6532. side: {
  6533. height: math.unit(6, "feet"),
  6534. weight: math.unit(180, "lbs"),
  6535. name: "Side",
  6536. image: {
  6537. source: "./media/characters/huoyan/side.svg"
  6538. }
  6539. },
  6540. },
  6541. [
  6542. {
  6543. name: "Chef",
  6544. height: math.unit(9, "feet")
  6545. },
  6546. {
  6547. name: "Normal",
  6548. height: math.unit(65, "feet"),
  6549. default: true
  6550. },
  6551. {
  6552. name: "Macro",
  6553. height: math.unit(780, "feet")
  6554. },
  6555. {
  6556. name: "Flaming Mountain",
  6557. height: math.unit(4.8, "miles")
  6558. },
  6559. {
  6560. name: "Celestial",
  6561. height: math.unit(765000, "miles")
  6562. },
  6563. ]
  6564. ))
  6565. characterMakers.push(() => makeCharacter(
  6566. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6567. {
  6568. front: {
  6569. height: math.unit(5 + 3 / 4, "feet"),
  6570. weight: math.unit(120, "lbs"),
  6571. name: "Front",
  6572. image: {
  6573. source: "./media/characters/tails/front.svg"
  6574. }
  6575. }
  6576. },
  6577. [
  6578. {
  6579. name: "Normal",
  6580. height: math.unit(5 + 3 / 4, "feet"),
  6581. default: true
  6582. }
  6583. ]
  6584. ))
  6585. characterMakers.push(() => makeCharacter(
  6586. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6587. {
  6588. front: {
  6589. height: math.unit(4, "feet"),
  6590. weight: math.unit(50, "lbs"),
  6591. name: "Front",
  6592. image: {
  6593. source: "./media/characters/rainy/front.svg"
  6594. }
  6595. }
  6596. },
  6597. [
  6598. {
  6599. name: "Macro",
  6600. height: math.unit(800, "feet"),
  6601. default: true
  6602. }
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6607. {
  6608. front: {
  6609. height: math.unit(6, "feet"),
  6610. weight: math.unit(150, "lbs"),
  6611. name: "Front",
  6612. image: {
  6613. source: "./media/characters/rainier/front.svg"
  6614. }
  6615. }
  6616. },
  6617. [
  6618. {
  6619. name: "Micro",
  6620. height: math.unit(2, "mm"),
  6621. default: true
  6622. }
  6623. ]
  6624. ))
  6625. characterMakers.push(() => makeCharacter(
  6626. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6627. {
  6628. front: {
  6629. height: math.unit(8 + 4/12, "feet"),
  6630. weight: math.unit(450, "kilograms"),
  6631. volume: math.unit(5, "cups"),
  6632. name: "Front",
  6633. image: {
  6634. source: "./media/characters/andy-renard/front.svg",
  6635. extra: 1839/1726,
  6636. bottom: 134/1973
  6637. }
  6638. },
  6639. back: {
  6640. height: math.unit(8 + 4/12, "feet"),
  6641. weight: math.unit(450, "kilograms"),
  6642. volume: math.unit(5, "cups"),
  6643. name: "Back",
  6644. image: {
  6645. source: "./media/characters/andy-renard/back.svg",
  6646. extra: 1838/1710,
  6647. bottom: 105/1943
  6648. }
  6649. },
  6650. },
  6651. [
  6652. {
  6653. name: "Tall",
  6654. height: math.unit(8 + 4/12, "feet")
  6655. },
  6656. {
  6657. name: "Mini Macro",
  6658. height: math.unit(15, "feet"),
  6659. default: true
  6660. },
  6661. {
  6662. name: "Macro",
  6663. height: math.unit(100, "feet")
  6664. },
  6665. {
  6666. name: "Mega Macro",
  6667. height: math.unit(1000, "feet")
  6668. },
  6669. {
  6670. name: "Giga Macro",
  6671. height: math.unit(10, "miles")
  6672. },
  6673. {
  6674. name: "God Macro",
  6675. height: math.unit(1, "multiverse")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(6, "feet"),
  6684. weight: math.unit(210, "lbs"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/cimmaron/front-sfw.svg",
  6688. extra: 701 / 676,
  6689. bottom: 0.046
  6690. }
  6691. },
  6692. back: {
  6693. height: math.unit(6, "feet"),
  6694. weight: math.unit(210, "lbs"),
  6695. name: "Back",
  6696. image: {
  6697. source: "./media/characters/cimmaron/back-sfw.svg",
  6698. extra: 701 / 676,
  6699. bottom: 0.046
  6700. }
  6701. },
  6702. frontNsfw: {
  6703. height: math.unit(6, "feet"),
  6704. weight: math.unit(210, "lbs"),
  6705. name: "Front (NSFW)",
  6706. image: {
  6707. source: "./media/characters/cimmaron/front-nsfw.svg",
  6708. extra: 701 / 676,
  6709. bottom: 0.046
  6710. }
  6711. },
  6712. backNsfw: {
  6713. height: math.unit(6, "feet"),
  6714. weight: math.unit(210, "lbs"),
  6715. name: "Back (NSFW)",
  6716. image: {
  6717. source: "./media/characters/cimmaron/back-nsfw.svg",
  6718. extra: 701 / 676,
  6719. bottom: 0.046
  6720. }
  6721. },
  6722. dick: {
  6723. height: math.unit(1.714, "feet"),
  6724. name: "Dick",
  6725. image: {
  6726. source: "./media/characters/cimmaron/dick.svg"
  6727. }
  6728. },
  6729. },
  6730. [
  6731. {
  6732. name: "Normal",
  6733. height: math.unit(6, "feet"),
  6734. default: true
  6735. },
  6736. {
  6737. name: "Macro Mayor",
  6738. height: math.unit(350, "meters")
  6739. },
  6740. ]
  6741. ))
  6742. characterMakers.push(() => makeCharacter(
  6743. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6744. {
  6745. front: {
  6746. height: math.unit(6, "feet"),
  6747. weight: math.unit(200, "lbs"),
  6748. name: "Front",
  6749. image: {
  6750. source: "./media/characters/akari/front.svg",
  6751. extra: 962 / 901,
  6752. bottom: 0.04
  6753. }
  6754. }
  6755. },
  6756. [
  6757. {
  6758. name: "Micro",
  6759. height: math.unit(5, "inches"),
  6760. default: true
  6761. },
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(7, "feet")
  6765. },
  6766. ]
  6767. ))
  6768. characterMakers.push(() => makeCharacter(
  6769. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6770. {
  6771. front: {
  6772. height: math.unit(6, "feet"),
  6773. weight: math.unit(140, "lbs"),
  6774. name: "Front",
  6775. image: {
  6776. source: "./media/characters/cynosura/front.svg",
  6777. extra: 437/410,
  6778. bottom: 9/446
  6779. }
  6780. },
  6781. back: {
  6782. height: math.unit(6, "feet"),
  6783. weight: math.unit(140, "lbs"),
  6784. name: "Back",
  6785. image: {
  6786. source: "./media/characters/cynosura/back.svg",
  6787. extra: 1304/1160,
  6788. bottom: 71/1375
  6789. }
  6790. },
  6791. },
  6792. [
  6793. {
  6794. name: "Micro",
  6795. height: math.unit(4, "inches")
  6796. },
  6797. {
  6798. name: "Normal",
  6799. height: math.unit(5.75, "feet"),
  6800. default: true
  6801. },
  6802. {
  6803. name: "Tall",
  6804. height: math.unit(10, "feet")
  6805. },
  6806. {
  6807. name: "Big",
  6808. height: math.unit(20, "feet")
  6809. },
  6810. {
  6811. name: "Macro",
  6812. height: math.unit(50, "feet")
  6813. },
  6814. ]
  6815. ))
  6816. characterMakers.push(() => makeCharacter(
  6817. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6818. {
  6819. front: {
  6820. height: math.unit(13 + 2/12, "feet"),
  6821. weight: math.unit(800, "kg"),
  6822. name: "Front",
  6823. image: {
  6824. source: "./media/characters/gin/front.svg",
  6825. extra: 1312/1191,
  6826. bottom: 45/1357
  6827. }
  6828. },
  6829. mouth: {
  6830. height: math.unit(2.39 * 1.8, "feet"),
  6831. name: "Mouth",
  6832. image: {
  6833. source: "./media/characters/gin/mouth.svg"
  6834. }
  6835. },
  6836. hand: {
  6837. height: math.unit(1.57 * 2.19, "feet"),
  6838. name: "Hand",
  6839. image: {
  6840. source: "./media/characters/gin/hand.svg"
  6841. }
  6842. },
  6843. foot: {
  6844. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6845. name: "Foot",
  6846. image: {
  6847. source: "./media/characters/gin/foot.svg"
  6848. }
  6849. },
  6850. sole: {
  6851. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6852. name: "Sole",
  6853. image: {
  6854. source: "./media/characters/gin/sole.svg"
  6855. }
  6856. },
  6857. },
  6858. [
  6859. {
  6860. name: "Very Small",
  6861. height: math.unit(13 + 2 / 12, "feet")
  6862. },
  6863. {
  6864. name: "Micro",
  6865. height: math.unit(600, "miles")
  6866. },
  6867. {
  6868. name: "Regular",
  6869. height: math.unit(20, "earths"),
  6870. default: true
  6871. },
  6872. {
  6873. name: "Macro",
  6874. height: math.unit(2.2, "solarradii")
  6875. },
  6876. {
  6877. name: "Teramacro",
  6878. height: math.unit(1.2, "galaxies")
  6879. },
  6880. {
  6881. name: "Omegamacro",
  6882. height: math.unit(200, "universes")
  6883. },
  6884. ]
  6885. ))
  6886. characterMakers.push(() => makeCharacter(
  6887. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6888. {
  6889. front: {
  6890. height: math.unit(6 + 1 / 6, "feet"),
  6891. weight: math.unit(178, "lbs"),
  6892. name: "Front",
  6893. image: {
  6894. source: "./media/characters/guy/front.svg"
  6895. }
  6896. }
  6897. },
  6898. [
  6899. {
  6900. name: "Normal",
  6901. height: math.unit(6 + 1 / 6, "feet"),
  6902. default: true
  6903. },
  6904. {
  6905. name: "Large",
  6906. height: math.unit(25 + 7 / 12, "feet")
  6907. },
  6908. {
  6909. name: "Macro",
  6910. height: math.unit(60 + 9 / 12, "feet")
  6911. },
  6912. {
  6913. name: "Macro+",
  6914. height: math.unit(246, "feet")
  6915. },
  6916. {
  6917. name: "Macro++",
  6918. height: math.unit(878, "feet")
  6919. }
  6920. ]
  6921. ))
  6922. characterMakers.push(() => makeCharacter(
  6923. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6924. {
  6925. front: {
  6926. height: math.unit(9, "feet"),
  6927. weight: math.unit(800, "lbs"),
  6928. name: "Front",
  6929. image: {
  6930. source: "./media/characters/tiberius/front.svg",
  6931. extra: 2295 / 2071
  6932. }
  6933. },
  6934. back: {
  6935. height: math.unit(9, "feet"),
  6936. weight: math.unit(800, "lbs"),
  6937. name: "Back",
  6938. image: {
  6939. source: "./media/characters/tiberius/back.svg",
  6940. extra: 2373 / 2160
  6941. }
  6942. },
  6943. },
  6944. [
  6945. {
  6946. name: "Normal",
  6947. height: math.unit(9, "feet"),
  6948. default: true
  6949. }
  6950. ]
  6951. ))
  6952. characterMakers.push(() => makeCharacter(
  6953. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6954. {
  6955. front: {
  6956. height: math.unit(6, "feet"),
  6957. weight: math.unit(600, "lbs"),
  6958. name: "Front",
  6959. image: {
  6960. source: "./media/characters/surgo/front.svg",
  6961. extra: 3591 / 2227
  6962. }
  6963. },
  6964. back: {
  6965. height: math.unit(6, "feet"),
  6966. weight: math.unit(600, "lbs"),
  6967. name: "Back",
  6968. image: {
  6969. source: "./media/characters/surgo/back.svg",
  6970. extra: 3557 / 2228
  6971. }
  6972. },
  6973. laying: {
  6974. height: math.unit(6 * 0.85, "feet"),
  6975. weight: math.unit(600, "lbs"),
  6976. name: "Laying",
  6977. image: {
  6978. source: "./media/characters/surgo/laying.svg"
  6979. }
  6980. },
  6981. },
  6982. [
  6983. {
  6984. name: "Normal",
  6985. height: math.unit(6, "feet"),
  6986. default: true
  6987. }
  6988. ]
  6989. ))
  6990. characterMakers.push(() => makeCharacter(
  6991. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6992. {
  6993. side: {
  6994. height: math.unit(6, "feet"),
  6995. weight: math.unit(150, "lbs"),
  6996. name: "Side",
  6997. image: {
  6998. source: "./media/characters/cibus/side.svg",
  6999. extra: 800 / 400
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "Normal",
  7006. height: math.unit(6, "feet"),
  7007. default: true
  7008. }
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7013. {
  7014. front: {
  7015. height: math.unit(6, "feet"),
  7016. weight: math.unit(240, "lbs"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/nibbles/front.svg"
  7020. }
  7021. },
  7022. side: {
  7023. height: math.unit(6, "feet"),
  7024. weight: math.unit(240, "lbs"),
  7025. name: "Side",
  7026. image: {
  7027. source: "./media/characters/nibbles/side.svg"
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(9, "feet"),
  7035. default: true
  7036. }
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7041. {
  7042. side: {
  7043. height: math.unit(5 + 1 / 6, "feet"),
  7044. weight: math.unit(130, "lbs"),
  7045. name: "Side",
  7046. image: {
  7047. source: "./media/characters/rikky/side.svg",
  7048. extra: 851 / 801
  7049. }
  7050. },
  7051. },
  7052. [
  7053. {
  7054. name: "Normal",
  7055. height: math.unit(5 + 1 / 6, "feet")
  7056. },
  7057. {
  7058. name: "Macro",
  7059. height: math.unit(152, "feet"),
  7060. default: true
  7061. },
  7062. {
  7063. name: "Megamacro",
  7064. height: math.unit(7, "miles")
  7065. }
  7066. ]
  7067. ))
  7068. characterMakers.push(() => makeCharacter(
  7069. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7070. {
  7071. side: {
  7072. height: math.unit(370, "cm"),
  7073. weight: math.unit(350, "lbs"),
  7074. name: "Side",
  7075. image: {
  7076. source: "./media/characters/malfressa/side.svg"
  7077. }
  7078. },
  7079. walking: {
  7080. height: math.unit(370, "cm"),
  7081. weight: math.unit(350, "lbs"),
  7082. name: "Walking",
  7083. image: {
  7084. source: "./media/characters/malfressa/walking.svg"
  7085. }
  7086. },
  7087. feral: {
  7088. height: math.unit(2500, "cm"),
  7089. weight: math.unit(100000, "lbs"),
  7090. name: "Feral",
  7091. image: {
  7092. source: "./media/characters/malfressa/feral.svg",
  7093. extra: 2108 / 837,
  7094. bottom: 0.02
  7095. }
  7096. },
  7097. },
  7098. [
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(370, "cm")
  7102. },
  7103. {
  7104. name: "Macro",
  7105. height: math.unit(300, "meters"),
  7106. default: true
  7107. }
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7112. {
  7113. front: {
  7114. height: math.unit(6, "feet"),
  7115. weight: math.unit(60, "kg"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/jaro/front.svg",
  7119. extra: 845/817,
  7120. bottom: 45/890
  7121. }
  7122. },
  7123. back: {
  7124. height: math.unit(6, "feet"),
  7125. weight: math.unit(60, "kg"),
  7126. name: "Back",
  7127. image: {
  7128. source: "./media/characters/jaro/back.svg",
  7129. extra: 847/817,
  7130. bottom: 34/881
  7131. }
  7132. },
  7133. },
  7134. [
  7135. {
  7136. name: "Micro",
  7137. height: math.unit(7, "inches")
  7138. },
  7139. {
  7140. name: "Normal",
  7141. height: math.unit(5.5, "feet"),
  7142. default: true
  7143. },
  7144. {
  7145. name: "Minimacro",
  7146. height: math.unit(20, "feet")
  7147. },
  7148. {
  7149. name: "Macro",
  7150. height: math.unit(200, "meters")
  7151. }
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7156. {
  7157. front: {
  7158. height: math.unit(6, "feet"),
  7159. weight: math.unit(195, "lb"),
  7160. name: "Front",
  7161. image: {
  7162. source: "./media/characters/rogue/front.svg"
  7163. }
  7164. },
  7165. },
  7166. [
  7167. {
  7168. name: "Macro",
  7169. height: math.unit(90, "feet"),
  7170. default: true
  7171. },
  7172. ]
  7173. ))
  7174. characterMakers.push(() => makeCharacter(
  7175. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7176. {
  7177. standing: {
  7178. height: math.unit(5 + 8 / 12, "feet"),
  7179. weight: math.unit(140, "lb"),
  7180. name: "Standing",
  7181. image: {
  7182. source: "./media/characters/piper/standing.svg",
  7183. extra: 1440/1284,
  7184. bottom: 66/1506
  7185. }
  7186. },
  7187. running: {
  7188. height: math.unit(5 + 8 / 12, "feet"),
  7189. weight: math.unit(140, "lb"),
  7190. name: "Running",
  7191. image: {
  7192. source: "./media/characters/piper/running.svg",
  7193. extra: 3948/3655,
  7194. bottom: 0/3948
  7195. }
  7196. },
  7197. sole: {
  7198. height: math.unit(0.81, "feet"),
  7199. weight: math.unit(2, "kg"),
  7200. name: "Sole",
  7201. image: {
  7202. source: "./media/characters/piper/sole.svg"
  7203. }
  7204. },
  7205. nipple: {
  7206. height: math.unit(0.25, "feet"),
  7207. weight: math.unit(1.5, "lb"),
  7208. name: "Nipple",
  7209. image: {
  7210. source: "./media/characters/piper/nipple.svg"
  7211. }
  7212. },
  7213. head: {
  7214. height: math.unit(1.1, "feet"),
  7215. name: "Head",
  7216. image: {
  7217. source: "./media/characters/piper/head.svg"
  7218. }
  7219. },
  7220. },
  7221. [
  7222. {
  7223. name: "Micro",
  7224. height: math.unit(2, "inches")
  7225. },
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(5 + 8 / 12, "feet")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(250, "feet"),
  7233. default: true
  7234. },
  7235. {
  7236. name: "Megamacro",
  7237. height: math.unit(7, "miles")
  7238. },
  7239. ]
  7240. ))
  7241. characterMakers.push(() => makeCharacter(
  7242. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7243. {
  7244. front: {
  7245. height: math.unit(6, "feet"),
  7246. weight: math.unit(220, "lb"),
  7247. name: "Front",
  7248. image: {
  7249. source: "./media/characters/gemini/front.svg"
  7250. }
  7251. },
  7252. back: {
  7253. height: math.unit(6, "feet"),
  7254. weight: math.unit(220, "lb"),
  7255. name: "Back",
  7256. image: {
  7257. source: "./media/characters/gemini/back.svg"
  7258. }
  7259. },
  7260. kneeling: {
  7261. height: math.unit(6 / 1.5, "feet"),
  7262. weight: math.unit(220, "lb"),
  7263. name: "Kneeling",
  7264. image: {
  7265. source: "./media/characters/gemini/kneeling.svg",
  7266. bottom: 0.02
  7267. }
  7268. },
  7269. },
  7270. [
  7271. {
  7272. name: "Macro",
  7273. height: math.unit(300, "meters"),
  7274. default: true
  7275. },
  7276. {
  7277. name: "Megamacro",
  7278. height: math.unit(6900, "meters")
  7279. },
  7280. ]
  7281. ))
  7282. characterMakers.push(() => makeCharacter(
  7283. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7284. {
  7285. anthro: {
  7286. height: math.unit(2.35, "meters"),
  7287. weight: math.unit(73, "kg"),
  7288. name: "Anthro",
  7289. image: {
  7290. source: "./media/characters/alicia/anthro.svg",
  7291. extra: 2571 / 2385,
  7292. bottom: 75 / 2648
  7293. }
  7294. },
  7295. paw: {
  7296. height: math.unit(1.32, "feet"),
  7297. name: "Paw",
  7298. image: {
  7299. source: "./media/characters/alicia/paw.svg"
  7300. }
  7301. },
  7302. feral: {
  7303. height: math.unit(1.69, "meters"),
  7304. weight: math.unit(73, "kg"),
  7305. name: "Feral",
  7306. image: {
  7307. source: "./media/characters/alicia/feral.svg",
  7308. extra: 2123 / 1715,
  7309. bottom: 222 / 2349
  7310. }
  7311. },
  7312. },
  7313. [
  7314. {
  7315. name: "Normal",
  7316. height: math.unit(2.35, "meters")
  7317. },
  7318. {
  7319. name: "Macro",
  7320. height: math.unit(60, "meters"),
  7321. default: true
  7322. },
  7323. {
  7324. name: "Megamacro",
  7325. height: math.unit(10000, "kilometers")
  7326. },
  7327. ]
  7328. ))
  7329. characterMakers.push(() => makeCharacter(
  7330. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7331. {
  7332. front: {
  7333. height: math.unit(7, "feet"),
  7334. weight: math.unit(250, "lbs"),
  7335. name: "Front",
  7336. image: {
  7337. source: "./media/characters/archy/front.svg"
  7338. }
  7339. }
  7340. },
  7341. [
  7342. {
  7343. name: "Micro",
  7344. height: math.unit(1, "inch")
  7345. },
  7346. {
  7347. name: "Shorty",
  7348. height: math.unit(5, "feet")
  7349. },
  7350. {
  7351. name: "Normal",
  7352. height: math.unit(7, "feet")
  7353. },
  7354. {
  7355. name: "Macro",
  7356. height: math.unit(600, "meters"),
  7357. default: true
  7358. },
  7359. {
  7360. name: "Megamacro",
  7361. height: math.unit(1, "mile")
  7362. },
  7363. ]
  7364. ))
  7365. characterMakers.push(() => makeCharacter(
  7366. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7367. {
  7368. front: {
  7369. height: math.unit(1.65, "meters"),
  7370. weight: math.unit(74, "kg"),
  7371. name: "Front",
  7372. image: {
  7373. source: "./media/characters/berri/front.svg",
  7374. extra: 857 / 837,
  7375. bottom: 18 / 877
  7376. }
  7377. },
  7378. bum: {
  7379. height: math.unit(1.46, "feet"),
  7380. name: "Bum",
  7381. image: {
  7382. source: "./media/characters/berri/bum.svg"
  7383. }
  7384. },
  7385. mouth: {
  7386. height: math.unit(0.44, "feet"),
  7387. name: "Mouth",
  7388. image: {
  7389. source: "./media/characters/berri/mouth.svg"
  7390. }
  7391. },
  7392. paw: {
  7393. height: math.unit(0.826, "feet"),
  7394. name: "Paw",
  7395. image: {
  7396. source: "./media/characters/berri/paw.svg"
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Normal",
  7403. height: math.unit(1.65, "meters")
  7404. },
  7405. {
  7406. name: "Macro",
  7407. height: math.unit(60, "m"),
  7408. default: true
  7409. },
  7410. {
  7411. name: "Megamacro",
  7412. height: math.unit(9.213, "km")
  7413. },
  7414. {
  7415. name: "Planet Eater",
  7416. height: math.unit(489, "megameters")
  7417. },
  7418. {
  7419. name: "Teramacro",
  7420. height: math.unit(2471635000000, "meters")
  7421. },
  7422. {
  7423. name: "Examacro",
  7424. height: math.unit(8.0624e+26, "meters")
  7425. }
  7426. ]
  7427. ))
  7428. characterMakers.push(() => makeCharacter(
  7429. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7430. {
  7431. front: {
  7432. height: math.unit(1.72, "meters"),
  7433. weight: math.unit(68, "kg"),
  7434. name: "Front",
  7435. image: {
  7436. source: "./media/characters/lexi/front.svg"
  7437. }
  7438. }
  7439. },
  7440. [
  7441. {
  7442. name: "Very Smol",
  7443. height: math.unit(10, "mm")
  7444. },
  7445. {
  7446. name: "Micro",
  7447. height: math.unit(6.8, "cm"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Normal",
  7452. height: math.unit(1.72, "m")
  7453. }
  7454. ]
  7455. ))
  7456. characterMakers.push(() => makeCharacter(
  7457. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7458. {
  7459. front: {
  7460. height: math.unit(1.69, "meters"),
  7461. weight: math.unit(68, "kg"),
  7462. name: "Front",
  7463. image: {
  7464. source: "./media/characters/martin/front.svg",
  7465. extra: 596 / 581
  7466. }
  7467. }
  7468. },
  7469. [
  7470. {
  7471. name: "Micro",
  7472. height: math.unit(6.85, "cm"),
  7473. default: true
  7474. },
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(1.69, "m")
  7478. }
  7479. ]
  7480. ))
  7481. characterMakers.push(() => makeCharacter(
  7482. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7483. {
  7484. front: {
  7485. height: math.unit(1.69, "meters"),
  7486. weight: math.unit(68, "kg"),
  7487. name: "Front",
  7488. image: {
  7489. source: "./media/characters/juno/front.svg"
  7490. }
  7491. }
  7492. },
  7493. [
  7494. {
  7495. name: "Micro",
  7496. height: math.unit(7, "cm")
  7497. },
  7498. {
  7499. name: "Normal",
  7500. height: math.unit(1.89, "m")
  7501. },
  7502. {
  7503. name: "Macro",
  7504. height: math.unit(353, "meters"),
  7505. default: true
  7506. }
  7507. ]
  7508. ))
  7509. characterMakers.push(() => makeCharacter(
  7510. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7511. {
  7512. front: {
  7513. height: math.unit(1.93, "meters"),
  7514. weight: math.unit(83, "kg"),
  7515. name: "Front",
  7516. image: {
  7517. source: "./media/characters/samantha/front.svg"
  7518. }
  7519. },
  7520. frontClothed: {
  7521. height: math.unit(1.93, "meters"),
  7522. weight: math.unit(83, "kg"),
  7523. name: "Front (Clothed)",
  7524. image: {
  7525. source: "./media/characters/samantha/front-clothed.svg"
  7526. }
  7527. },
  7528. back: {
  7529. height: math.unit(1.93, "meters"),
  7530. weight: math.unit(83, "kg"),
  7531. name: "Back",
  7532. image: {
  7533. source: "./media/characters/samantha/back.svg"
  7534. }
  7535. },
  7536. },
  7537. [
  7538. {
  7539. name: "Normal",
  7540. height: math.unit(1.93, "m")
  7541. },
  7542. {
  7543. name: "Macro",
  7544. height: math.unit(74, "meters"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Macro+",
  7549. height: math.unit(223, "meters"),
  7550. },
  7551. {
  7552. name: "Megamacro",
  7553. height: math.unit(8381, "meters"),
  7554. },
  7555. {
  7556. name: "Megamacro+",
  7557. height: math.unit(12000, "kilometers")
  7558. },
  7559. ]
  7560. ))
  7561. characterMakers.push(() => makeCharacter(
  7562. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7563. {
  7564. front: {
  7565. height: math.unit(1.92, "meters"),
  7566. weight: math.unit(80, "kg"),
  7567. name: "Front",
  7568. image: {
  7569. source: "./media/characters/dr-clay/front.svg"
  7570. }
  7571. },
  7572. frontClothed: {
  7573. height: math.unit(1.92, "meters"),
  7574. weight: math.unit(80, "kg"),
  7575. name: "Front (Clothed)",
  7576. image: {
  7577. source: "./media/characters/dr-clay/front-clothed.svg"
  7578. }
  7579. }
  7580. },
  7581. [
  7582. {
  7583. name: "Normal",
  7584. height: math.unit(1.92, "m")
  7585. },
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(214, "meters"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Macro+",
  7593. height: math.unit(12.237, "meters"),
  7594. },
  7595. {
  7596. name: "Megamacro",
  7597. height: math.unit(557, "megameters"),
  7598. },
  7599. {
  7600. name: "Unimaginable",
  7601. height: math.unit(120e9, "lightyears")
  7602. },
  7603. ]
  7604. ))
  7605. characterMakers.push(() => makeCharacter(
  7606. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7607. {
  7608. front: {
  7609. height: math.unit(2, "meters"),
  7610. weight: math.unit(80, "kg"),
  7611. name: "Front",
  7612. image: {
  7613. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7614. }
  7615. }
  7616. },
  7617. [
  7618. {
  7619. name: "Teramacro",
  7620. height: math.unit(500000, "lightyears"),
  7621. default: true
  7622. },
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7627. {
  7628. crux: {
  7629. height: math.unit(2, "meters"),
  7630. weight: math.unit(150, "kg"),
  7631. name: "Crux",
  7632. image: {
  7633. source: "./media/characters/vemus/crux.svg",
  7634. extra: 1074/936,
  7635. bottom: 23/1097
  7636. }
  7637. },
  7638. skunkTanuki: {
  7639. height: math.unit(2, "meters"),
  7640. weight: math.unit(150, "kg"),
  7641. name: "Skunk-Tanuki",
  7642. image: {
  7643. source: "./media/characters/vemus/skunk-tanuki.svg",
  7644. extra: 926/893,
  7645. bottom: 20/946
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(4, "meters"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Big",
  7657. height: math.unit(8, "meters")
  7658. },
  7659. {
  7660. name: "Macro",
  7661. height: math.unit(100, "meters")
  7662. },
  7663. {
  7664. name: "Macro+",
  7665. height: math.unit(1500, "meters")
  7666. },
  7667. {
  7668. name: "Stellar",
  7669. height: math.unit(14e8, "meters")
  7670. },
  7671. ]
  7672. ))
  7673. characterMakers.push(() => makeCharacter(
  7674. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7675. {
  7676. front: {
  7677. height: math.unit(2, "meters"),
  7678. weight: math.unit(70, "kg"),
  7679. name: "Front",
  7680. image: {
  7681. source: "./media/characters/beherit/front.svg",
  7682. extra: 1234/1109,
  7683. bottom: 55/1289
  7684. }
  7685. }
  7686. },
  7687. [
  7688. {
  7689. name: "Normal",
  7690. height: math.unit(6, "feet")
  7691. },
  7692. {
  7693. name: "Lorg",
  7694. height: math.unit(25, "feet"),
  7695. default: true
  7696. },
  7697. {
  7698. name: "Lorger",
  7699. height: math.unit(75, "feet")
  7700. },
  7701. {
  7702. name: "Macro",
  7703. height: math.unit(200, "meters")
  7704. },
  7705. ]
  7706. ))
  7707. characterMakers.push(() => makeCharacter(
  7708. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7709. {
  7710. front: {
  7711. height: math.unit(2, "meters"),
  7712. weight: math.unit(150, "kg"),
  7713. name: "Front",
  7714. image: {
  7715. source: "./media/characters/everett/front.svg",
  7716. extra: 1017/866,
  7717. bottom: 86/1103
  7718. }
  7719. },
  7720. paw: {
  7721. height: math.unit(2 / 3.6, "meters"),
  7722. name: "Paw",
  7723. image: {
  7724. source: "./media/characters/everett/paw.svg"
  7725. }
  7726. },
  7727. },
  7728. [
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(15, "feet"),
  7732. default: true
  7733. },
  7734. {
  7735. name: "Lorg",
  7736. height: math.unit(70, "feet"),
  7737. default: true
  7738. },
  7739. {
  7740. name: "Lorger",
  7741. height: math.unit(250, "feet")
  7742. },
  7743. {
  7744. name: "Macro",
  7745. height: math.unit(500, "meters")
  7746. },
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7751. {
  7752. front: {
  7753. height: math.unit(2, "meters"),
  7754. weight: math.unit(86, "kg"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/rose/front.svg",
  7758. extra: 1785/1636,
  7759. bottom: 30/1815
  7760. },
  7761. form: "liom",
  7762. default: true
  7763. },
  7764. frontSporty: {
  7765. height: math.unit(2, "meters"),
  7766. weight: math.unit(86, "kg"),
  7767. name: "Front (Sporty)",
  7768. image: {
  7769. source: "./media/characters/rose/front-sporty.svg",
  7770. extra: 350/335,
  7771. bottom: 10/360
  7772. },
  7773. form: "liom"
  7774. },
  7775. frontAlt: {
  7776. height: math.unit(1.6, "meters"),
  7777. weight: math.unit(86, "kg"),
  7778. name: "Front (Alt)",
  7779. image: {
  7780. source: "./media/characters/rose/front-alt.svg",
  7781. extra: 299/283,
  7782. bottom: 3/302
  7783. },
  7784. form: "liom"
  7785. },
  7786. plush: {
  7787. height: math.unit(2, "meters"),
  7788. weight: math.unit(86/3, "kg"),
  7789. name: "Plush",
  7790. image: {
  7791. source: "./media/characters/rose/plush.svg",
  7792. extra: 361/337,
  7793. bottom: 11/372
  7794. },
  7795. form: "plush",
  7796. default: true
  7797. },
  7798. faeStanding: {
  7799. height: math.unit(10, "cm"),
  7800. weight: math.unit(10, "grams"),
  7801. name: "Standing",
  7802. image: {
  7803. source: "./media/characters/rose/fae-standing.svg",
  7804. extra: 1189/1060,
  7805. bottom: 27/1216
  7806. },
  7807. form: "fae",
  7808. default: true
  7809. },
  7810. faeSitting: {
  7811. height: math.unit(5, "cm"),
  7812. weight: math.unit(10, "grams"),
  7813. name: "Sitting",
  7814. image: {
  7815. source: "./media/characters/rose/fae-sitting.svg",
  7816. extra: 737/577,
  7817. bottom: 356/1093
  7818. },
  7819. form: "fae"
  7820. },
  7821. faePaw: {
  7822. height: math.unit(1.35, "cm"),
  7823. name: "Paw",
  7824. image: {
  7825. source: "./media/characters/rose/fae-paw.svg"
  7826. },
  7827. form: "fae"
  7828. },
  7829. },
  7830. [
  7831. {
  7832. name: "True Micro",
  7833. height: math.unit(9, "cm"),
  7834. form: "liom"
  7835. },
  7836. {
  7837. name: "Micro",
  7838. height: math.unit(16, "cm"),
  7839. form: "liom"
  7840. },
  7841. {
  7842. name: "Normal",
  7843. height: math.unit(1.85, "meters"),
  7844. default: true,
  7845. form: "liom"
  7846. },
  7847. {
  7848. name: "Mini-Macro",
  7849. height: math.unit(5, "meters"),
  7850. form: "liom"
  7851. },
  7852. {
  7853. name: "Macro",
  7854. height: math.unit(15, "meters"),
  7855. form: "liom"
  7856. },
  7857. {
  7858. name: "True Macro",
  7859. height: math.unit(40, "meters"),
  7860. form: "liom"
  7861. },
  7862. {
  7863. name: "City Scale",
  7864. height: math.unit(1, "km"),
  7865. form: "liom"
  7866. },
  7867. {
  7868. name: "Plushie",
  7869. height: math.unit(9, "cm"),
  7870. form: "plush",
  7871. default: true
  7872. },
  7873. {
  7874. name: "Fae",
  7875. height: math.unit(10, "cm"),
  7876. form: "fae",
  7877. default: true
  7878. },
  7879. ],
  7880. {
  7881. "liom": {
  7882. name: "Liom"
  7883. },
  7884. "plush": {
  7885. name: "Plush"
  7886. },
  7887. "fae": {
  7888. name: "Fae Fox",
  7889. default: true
  7890. }
  7891. }
  7892. ))
  7893. characterMakers.push(() => makeCharacter(
  7894. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7895. {
  7896. front: {
  7897. height: math.unit(2, "meters"),
  7898. weight: math.unit(350, "lbs"),
  7899. name: "Front",
  7900. image: {
  7901. source: "./media/characters/regal/front.svg"
  7902. }
  7903. },
  7904. back: {
  7905. height: math.unit(2, "meters"),
  7906. weight: math.unit(350, "lbs"),
  7907. name: "Back",
  7908. image: {
  7909. source: "./media/characters/regal/back.svg"
  7910. }
  7911. },
  7912. },
  7913. [
  7914. {
  7915. name: "Macro",
  7916. height: math.unit(350, "feet"),
  7917. default: true
  7918. }
  7919. ]
  7920. ))
  7921. characterMakers.push(() => makeCharacter(
  7922. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7923. {
  7924. front: {
  7925. height: math.unit(4 + 11 / 12, "feet"),
  7926. weight: math.unit(100, "lbs"),
  7927. name: "Front",
  7928. image: {
  7929. source: "./media/characters/opal/front.svg"
  7930. }
  7931. },
  7932. frontAlt: {
  7933. height: math.unit(4 + 11 / 12, "feet"),
  7934. weight: math.unit(100, "lbs"),
  7935. name: "Front (Alt)",
  7936. image: {
  7937. source: "./media/characters/opal/front-alt.svg"
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Small",
  7944. height: math.unit(4 + 11 / 12, "feet")
  7945. },
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(20, "feet"),
  7949. default: true
  7950. },
  7951. {
  7952. name: "Macro",
  7953. height: math.unit(120, "feet")
  7954. },
  7955. {
  7956. name: "Megamacro",
  7957. height: math.unit(80, "miles")
  7958. },
  7959. {
  7960. name: "True Size",
  7961. height: math.unit(100000, "lightyears")
  7962. },
  7963. ]
  7964. ))
  7965. characterMakers.push(() => makeCharacter(
  7966. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7967. {
  7968. front: {
  7969. height: math.unit(6, "feet"),
  7970. weight: math.unit(200, "lbs"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/vector-wuff/front.svg"
  7974. }
  7975. }
  7976. },
  7977. [
  7978. {
  7979. name: "Normal",
  7980. height: math.unit(2.8, "meters")
  7981. },
  7982. {
  7983. name: "Macro",
  7984. height: math.unit(450, "meters"),
  7985. default: true
  7986. },
  7987. {
  7988. name: "Megamacro",
  7989. height: math.unit(15, "kilometers")
  7990. }
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7995. {
  7996. front: {
  7997. height: math.unit(6, "feet"),
  7998. weight: math.unit(256, "lbs"),
  7999. name: "Front",
  8000. image: {
  8001. source: "./media/characters/dannik/front.svg"
  8002. }
  8003. }
  8004. },
  8005. [
  8006. {
  8007. name: "Macro",
  8008. height: math.unit(69.57, "meters"),
  8009. default: true
  8010. },
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(6, "feet"),
  8018. weight: math.unit(120, "lbs"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/azura-saharah/front.svg"
  8022. }
  8023. },
  8024. back: {
  8025. height: math.unit(6, "feet"),
  8026. weight: math.unit(120, "lbs"),
  8027. name: "Back",
  8028. image: {
  8029. source: "./media/characters/azura-saharah/back.svg"
  8030. }
  8031. },
  8032. },
  8033. [
  8034. {
  8035. name: "Macro",
  8036. height: math.unit(100, "feet"),
  8037. default: true
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8043. {
  8044. side: {
  8045. height: math.unit(5 + 4 / 12, "feet"),
  8046. weight: math.unit(163, "lbs"),
  8047. name: "Side",
  8048. image: {
  8049. source: "./media/characters/kennedy/side.svg"
  8050. }
  8051. }
  8052. },
  8053. [
  8054. {
  8055. name: "Standard Doggo",
  8056. height: math.unit(5 + 4 / 12, "feet")
  8057. },
  8058. {
  8059. name: "Big Doggo",
  8060. height: math.unit(25 + 3 / 12, "feet"),
  8061. default: true
  8062. },
  8063. ]
  8064. ))
  8065. characterMakers.push(() => makeCharacter(
  8066. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8067. {
  8068. front: {
  8069. height: math.unit(5 + 5/12, "feet"),
  8070. weight: math.unit(100, "lbs"),
  8071. name: "Front",
  8072. image: {
  8073. source: "./media/characters/odios-de-lunar/front.svg",
  8074. extra: 1468/1323,
  8075. bottom: 22/1490
  8076. }
  8077. }
  8078. },
  8079. [
  8080. {
  8081. name: "Micro",
  8082. height: math.unit(3, "inches")
  8083. },
  8084. {
  8085. name: "Normal",
  8086. height: math.unit(5.5, "feet"),
  8087. default: true
  8088. },
  8089. {
  8090. name: "Macro",
  8091. height: math.unit(100, "feet")
  8092. },
  8093. ]
  8094. ))
  8095. characterMakers.push(() => makeCharacter(
  8096. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8097. {
  8098. back: {
  8099. height: math.unit(6, "feet"),
  8100. weight: math.unit(220, "lbs"),
  8101. name: "Back",
  8102. image: {
  8103. source: "./media/characters/mandake/back.svg"
  8104. }
  8105. }
  8106. },
  8107. [
  8108. {
  8109. name: "Normal",
  8110. height: math.unit(7, "feet"),
  8111. default: true
  8112. },
  8113. {
  8114. name: "Macro",
  8115. height: math.unit(78, "feet")
  8116. },
  8117. {
  8118. name: "Macro+",
  8119. height: math.unit(300, "meters")
  8120. },
  8121. {
  8122. name: "Macro++",
  8123. height: math.unit(2400, "feet")
  8124. },
  8125. {
  8126. name: "Megamacro",
  8127. height: math.unit(5167, "meters")
  8128. },
  8129. {
  8130. name: "Gigamacro",
  8131. height: math.unit(41769, "miles")
  8132. },
  8133. ]
  8134. ))
  8135. characterMakers.push(() => makeCharacter(
  8136. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8137. {
  8138. front: {
  8139. height: math.unit(6, "feet"),
  8140. weight: math.unit(120, "lbs"),
  8141. name: "Front",
  8142. image: {
  8143. source: "./media/characters/yozey/front.svg"
  8144. }
  8145. },
  8146. frontAlt: {
  8147. height: math.unit(6, "feet"),
  8148. weight: math.unit(120, "lbs"),
  8149. name: "Front (Alt)",
  8150. image: {
  8151. source: "./media/characters/yozey/front-alt.svg"
  8152. }
  8153. },
  8154. side: {
  8155. height: math.unit(6, "feet"),
  8156. weight: math.unit(120, "lbs"),
  8157. name: "Side",
  8158. image: {
  8159. source: "./media/characters/yozey/side.svg"
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Micro",
  8166. height: math.unit(3, "inches"),
  8167. default: true
  8168. },
  8169. {
  8170. name: "Normal",
  8171. height: math.unit(6, "feet")
  8172. }
  8173. ]
  8174. ))
  8175. characterMakers.push(() => makeCharacter(
  8176. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8177. {
  8178. front: {
  8179. height: math.unit(6, "feet"),
  8180. weight: math.unit(103, "lbs"),
  8181. name: "Front",
  8182. image: {
  8183. source: "./media/characters/valeska-voss/front.svg"
  8184. }
  8185. }
  8186. },
  8187. [
  8188. {
  8189. name: "Mini-Sized Sub",
  8190. height: math.unit(3.1, "inches")
  8191. },
  8192. {
  8193. name: "Mid-Sized Sub",
  8194. height: math.unit(6.2, "inches")
  8195. },
  8196. {
  8197. name: "Full-Sized Sub",
  8198. height: math.unit(9.3, "inches")
  8199. },
  8200. {
  8201. name: "Normal",
  8202. height: math.unit(5 + 2 / 12, "foot"),
  8203. default: true
  8204. },
  8205. ]
  8206. ))
  8207. characterMakers.push(() => makeCharacter(
  8208. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8209. {
  8210. front: {
  8211. height: math.unit(6, "feet"),
  8212. weight: math.unit(160, "lbs"),
  8213. name: "Front",
  8214. image: {
  8215. source: "./media/characters/gene-zeta/front.svg",
  8216. extra: 3006 / 2826,
  8217. bottom: 182 / 3188
  8218. }
  8219. }
  8220. },
  8221. [
  8222. {
  8223. name: "Micro",
  8224. height: math.unit(6, "inches")
  8225. },
  8226. {
  8227. name: "Normal",
  8228. height: math.unit(5 + 11 / 12, "foot"),
  8229. default: true
  8230. },
  8231. {
  8232. name: "Macro",
  8233. height: math.unit(140, "feet")
  8234. },
  8235. {
  8236. name: "Supercharged",
  8237. height: math.unit(2500, "feet")
  8238. },
  8239. ]
  8240. ))
  8241. characterMakers.push(() => makeCharacter(
  8242. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8243. {
  8244. front: {
  8245. height: math.unit(6, "feet"),
  8246. weight: math.unit(350, "lbs"),
  8247. name: "Front",
  8248. image: {
  8249. source: "./media/characters/razinox/front.svg",
  8250. extra: 1686 / 1548,
  8251. bottom: 28.2 / 1868
  8252. }
  8253. },
  8254. back: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(350, "lbs"),
  8257. name: "Back",
  8258. image: {
  8259. source: "./media/characters/razinox/back.svg",
  8260. extra: 1660 / 1590,
  8261. bottom: 15 / 1665
  8262. }
  8263. },
  8264. },
  8265. [
  8266. {
  8267. name: "Normal",
  8268. height: math.unit(10 + 8 / 12, "foot")
  8269. },
  8270. {
  8271. name: "Minimacro",
  8272. height: math.unit(15, "foot")
  8273. },
  8274. {
  8275. name: "Macro",
  8276. height: math.unit(60, "foot"),
  8277. default: true
  8278. },
  8279. {
  8280. name: "Megamacro",
  8281. height: math.unit(5, "miles")
  8282. },
  8283. {
  8284. name: "Gigamacro",
  8285. height: math.unit(6000, "miles")
  8286. },
  8287. ]
  8288. ))
  8289. characterMakers.push(() => makeCharacter(
  8290. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8291. {
  8292. front: {
  8293. height: math.unit(6, "feet"),
  8294. weight: math.unit(150, "lbs"),
  8295. name: "Front",
  8296. image: {
  8297. source: "./media/characters/cobalt/front.svg"
  8298. }
  8299. }
  8300. },
  8301. [
  8302. {
  8303. name: "Normal",
  8304. height: math.unit(8 + 1 / 12, "foot")
  8305. },
  8306. {
  8307. name: "Macro",
  8308. height: math.unit(111, "foot"),
  8309. default: true
  8310. },
  8311. {
  8312. name: "Supracosmic",
  8313. height: math.unit(1e42, "feet")
  8314. },
  8315. ]
  8316. ))
  8317. characterMakers.push(() => makeCharacter(
  8318. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8319. {
  8320. front: {
  8321. height: math.unit(5, "inches"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/amanda/front.svg",
  8325. extra: 926/791,
  8326. bottom: 38/964
  8327. }
  8328. },
  8329. back: {
  8330. height: math.unit(5, "inches"),
  8331. name: "Back",
  8332. image: {
  8333. source: "./media/characters/amanda/back.svg",
  8334. extra: 909/805,
  8335. bottom: 43/952
  8336. }
  8337. },
  8338. },
  8339. [
  8340. {
  8341. name: "Micro",
  8342. height: math.unit(5, "inches"),
  8343. default: true
  8344. },
  8345. ]
  8346. ))
  8347. characterMakers.push(() => makeCharacter(
  8348. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8349. {
  8350. front: {
  8351. height: math.unit(2.75, "meters"),
  8352. weight: math.unit(1200, "lb"),
  8353. name: "Front",
  8354. image: {
  8355. source: "./media/characters/teal/front.svg",
  8356. extra: 2463 / 2320,
  8357. bottom: 166 / 2629
  8358. }
  8359. },
  8360. back: {
  8361. height: math.unit(2.75, "meters"),
  8362. weight: math.unit(1200, "lb"),
  8363. name: "Back",
  8364. image: {
  8365. source: "./media/characters/teal/back.svg",
  8366. extra: 2580 / 2489,
  8367. bottom: 151 / 2731
  8368. }
  8369. },
  8370. sitting: {
  8371. height: math.unit(1.9, "meters"),
  8372. weight: math.unit(1200, "lb"),
  8373. name: "Sitting",
  8374. image: {
  8375. source: "./media/characters/teal/sitting.svg",
  8376. extra: 623 / 590,
  8377. bottom: 121 / 744
  8378. }
  8379. },
  8380. standing: {
  8381. height: math.unit(2.75, "meters"),
  8382. weight: math.unit(1200, "lb"),
  8383. name: "Standing",
  8384. image: {
  8385. source: "./media/characters/teal/standing.svg",
  8386. extra: 923 / 893,
  8387. bottom: 60 / 983
  8388. }
  8389. },
  8390. stretching: {
  8391. height: math.unit(3.65, "meters"),
  8392. weight: math.unit(1200, "lb"),
  8393. name: "Stretching",
  8394. image: {
  8395. source: "./media/characters/teal/stretching.svg",
  8396. extra: 1276 / 1244,
  8397. bottom: 0 / 1276
  8398. }
  8399. },
  8400. legged: {
  8401. height: math.unit(1.3, "meters"),
  8402. weight: math.unit(100, "lb"),
  8403. name: "Legged",
  8404. image: {
  8405. source: "./media/characters/teal/legged.svg",
  8406. extra: 462 / 437,
  8407. bottom: 24 / 486
  8408. }
  8409. },
  8410. naga: {
  8411. height: math.unit(5.4, "meters"),
  8412. weight: math.unit(4000, "lb"),
  8413. name: "Naga",
  8414. image: {
  8415. source: "./media/characters/teal/naga.svg",
  8416. extra: 1902 / 1858,
  8417. bottom: 0 / 1902
  8418. }
  8419. },
  8420. hand: {
  8421. height: math.unit(0.52, "meters"),
  8422. name: "Hand",
  8423. image: {
  8424. source: "./media/characters/teal/hand.svg"
  8425. }
  8426. },
  8427. maw: {
  8428. height: math.unit(0.43, "meters"),
  8429. name: "Maw",
  8430. image: {
  8431. source: "./media/characters/teal/maw.svg"
  8432. }
  8433. },
  8434. slit: {
  8435. height: math.unit(0.25, "meters"),
  8436. name: "Slit",
  8437. image: {
  8438. source: "./media/characters/teal/slit.svg"
  8439. }
  8440. },
  8441. },
  8442. [
  8443. {
  8444. name: "Normal",
  8445. height: math.unit(2.75, "meters"),
  8446. default: true
  8447. },
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(300, "feet")
  8451. },
  8452. {
  8453. name: "Macro+",
  8454. height: math.unit(2000, "feet")
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8460. {
  8461. frontCat: {
  8462. height: math.unit(6, "feet"),
  8463. weight: math.unit(180, "lbs"),
  8464. name: "Front (Cat)",
  8465. image: {
  8466. source: "./media/characters/ravin-amulet/front-cat.svg"
  8467. }
  8468. },
  8469. frontCatAlt: {
  8470. height: math.unit(6, "feet"),
  8471. weight: math.unit(180, "lbs"),
  8472. name: "Front (Alt, Cat)",
  8473. image: {
  8474. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8475. }
  8476. },
  8477. frontWerewolf: {
  8478. height: math.unit(6 * 1.2, "feet"),
  8479. weight: math.unit(225, "lbs"),
  8480. name: "Front (Werewolf)",
  8481. image: {
  8482. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8483. }
  8484. },
  8485. backWerewolf: {
  8486. height: math.unit(6 * 1.2, "feet"),
  8487. weight: math.unit(225, "lbs"),
  8488. name: "Back (Werewolf)",
  8489. image: {
  8490. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8491. }
  8492. },
  8493. },
  8494. [
  8495. {
  8496. name: "Nano",
  8497. height: math.unit(1, "micrometer")
  8498. },
  8499. {
  8500. name: "Micro",
  8501. height: math.unit(1, "inch")
  8502. },
  8503. {
  8504. name: "Normal",
  8505. height: math.unit(6, "feet"),
  8506. default: true
  8507. },
  8508. {
  8509. name: "Macro",
  8510. height: math.unit(60, "feet")
  8511. }
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8516. {
  8517. front: {
  8518. height: math.unit(6, "feet"),
  8519. weight: math.unit(165, "lbs"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/fluoresce/front.svg"
  8523. }
  8524. }
  8525. },
  8526. [
  8527. {
  8528. name: "Micro",
  8529. height: math.unit(6, "cm")
  8530. },
  8531. {
  8532. name: "Normal",
  8533. height: math.unit(5 + 7 / 12, "feet"),
  8534. default: true
  8535. },
  8536. {
  8537. name: "Macro",
  8538. height: math.unit(56, "feet")
  8539. },
  8540. {
  8541. name: "Megamacro",
  8542. height: math.unit(1.9, "miles")
  8543. },
  8544. ]
  8545. ))
  8546. characterMakers.push(() => makeCharacter(
  8547. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8548. {
  8549. front: {
  8550. height: math.unit(9 + 6 / 12, "feet"),
  8551. weight: math.unit(523, "lbs"),
  8552. name: "Side",
  8553. image: {
  8554. source: "./media/characters/aurora/side.svg",
  8555. extra: 474/393,
  8556. bottom: 5/479
  8557. }
  8558. }
  8559. },
  8560. [
  8561. {
  8562. name: "Normal",
  8563. height: math.unit(9 + 6 / 12, "feet")
  8564. },
  8565. {
  8566. name: "Macro",
  8567. height: math.unit(96, "feet"),
  8568. default: true
  8569. },
  8570. {
  8571. name: "Macro+",
  8572. height: math.unit(243, "feet")
  8573. },
  8574. ]
  8575. ))
  8576. characterMakers.push(() => makeCharacter(
  8577. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8578. {
  8579. front: {
  8580. height: math.unit(194, "cm"),
  8581. weight: math.unit(90, "kg"),
  8582. name: "Front",
  8583. image: {
  8584. source: "./media/characters/ranek/front.svg",
  8585. extra: 1862/1791,
  8586. bottom: 80/1942
  8587. }
  8588. },
  8589. back: {
  8590. height: math.unit(194, "cm"),
  8591. weight: math.unit(90, "kg"),
  8592. name: "Back",
  8593. image: {
  8594. source: "./media/characters/ranek/back.svg",
  8595. extra: 1853/1787,
  8596. bottom: 74/1927
  8597. }
  8598. },
  8599. feral: {
  8600. height: math.unit(30, "cm"),
  8601. weight: math.unit(1.6, "lbs"),
  8602. name: "Feral",
  8603. image: {
  8604. source: "./media/characters/ranek/feral.svg",
  8605. extra: 990/631,
  8606. bottom: 29/1019
  8607. }
  8608. },
  8609. },
  8610. [
  8611. {
  8612. name: "Normal",
  8613. height: math.unit(194, "cm"),
  8614. default: true
  8615. },
  8616. {
  8617. name: "Macro",
  8618. height: math.unit(100, "meters")
  8619. },
  8620. ]
  8621. ))
  8622. characterMakers.push(() => makeCharacter(
  8623. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8624. {
  8625. front: {
  8626. height: math.unit(5 + 6 / 12, "feet"),
  8627. weight: math.unit(153, "lbs"),
  8628. name: "Front",
  8629. image: {
  8630. source: "./media/characters/andrew-cooper/front.svg"
  8631. }
  8632. },
  8633. },
  8634. [
  8635. {
  8636. name: "Nano",
  8637. height: math.unit(1, "mm")
  8638. },
  8639. {
  8640. name: "Micro",
  8641. height: math.unit(2, "inches")
  8642. },
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(5 + 6 / 12, "feet"),
  8646. default: true
  8647. }
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8652. {
  8653. front: {
  8654. height: math.unit(6, "feet"),
  8655. weight: math.unit(180, "lbs"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/akane-sato/front.svg",
  8659. extra: 1219 / 1140
  8660. }
  8661. },
  8662. back: {
  8663. height: math.unit(6, "feet"),
  8664. weight: math.unit(180, "lbs"),
  8665. name: "Back",
  8666. image: {
  8667. source: "./media/characters/akane-sato/back.svg",
  8668. extra: 1219 / 1170
  8669. }
  8670. },
  8671. },
  8672. [
  8673. {
  8674. name: "Normal",
  8675. height: math.unit(2.5, "meters")
  8676. },
  8677. {
  8678. name: "Macro",
  8679. height: math.unit(250, "meters"),
  8680. default: true
  8681. },
  8682. {
  8683. name: "Megamacro",
  8684. height: math.unit(25, "km")
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8690. {
  8691. front: {
  8692. height: math.unit(6, "feet"),
  8693. weight: math.unit(65, "kg"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/rook/front.svg",
  8697. extra: 960 / 950
  8698. }
  8699. }
  8700. },
  8701. [
  8702. {
  8703. name: "Normal",
  8704. height: math.unit(8.8, "feet")
  8705. },
  8706. {
  8707. name: "Macro",
  8708. height: math.unit(88, "feet"),
  8709. default: true
  8710. },
  8711. {
  8712. name: "Megamacro",
  8713. height: math.unit(8, "miles")
  8714. },
  8715. ]
  8716. ))
  8717. characterMakers.push(() => makeCharacter(
  8718. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8719. {
  8720. front: {
  8721. height: math.unit(12 + 2 / 12, "feet"),
  8722. weight: math.unit(808, "lbs"),
  8723. name: "Front",
  8724. image: {
  8725. source: "./media/characters/prodigy/front.svg"
  8726. }
  8727. }
  8728. },
  8729. [
  8730. {
  8731. name: "Normal",
  8732. height: math.unit(12 + 2 / 12, "feet"),
  8733. default: true
  8734. },
  8735. {
  8736. name: "Macro",
  8737. height: math.unit(143, "feet")
  8738. },
  8739. {
  8740. name: "Macro+",
  8741. height: math.unit(400, "feet")
  8742. },
  8743. ]
  8744. ))
  8745. characterMakers.push(() => makeCharacter(
  8746. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8747. {
  8748. front: {
  8749. height: math.unit(6, "feet"),
  8750. weight: math.unit(225, "lbs"),
  8751. name: "Front",
  8752. image: {
  8753. source: "./media/characters/daniel/front.svg"
  8754. }
  8755. },
  8756. leaning: {
  8757. height: math.unit(6, "feet"),
  8758. weight: math.unit(225, "lbs"),
  8759. name: "Leaning",
  8760. image: {
  8761. source: "./media/characters/daniel/leaning.svg"
  8762. }
  8763. },
  8764. },
  8765. [
  8766. {
  8767. name: "Macro",
  8768. height: math.unit(1000, "feet"),
  8769. default: true
  8770. },
  8771. ]
  8772. ))
  8773. characterMakers.push(() => makeCharacter(
  8774. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8775. {
  8776. front: {
  8777. height: math.unit(6, "feet"),
  8778. weight: math.unit(88, "lbs"),
  8779. name: "Front",
  8780. image: {
  8781. source: "./media/characters/chiros/front.svg",
  8782. extra: 306 / 226
  8783. }
  8784. },
  8785. side: {
  8786. height: math.unit(6, "feet"),
  8787. weight: math.unit(88, "lbs"),
  8788. name: "Side",
  8789. image: {
  8790. source: "./media/characters/chiros/side.svg",
  8791. extra: 306 / 226
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Normal",
  8798. height: math.unit(6, "cm"),
  8799. default: true
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8805. {
  8806. front: {
  8807. height: math.unit(6, "feet"),
  8808. weight: math.unit(100, "lbs"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/selka/front.svg",
  8812. extra: 947 / 887
  8813. }
  8814. }
  8815. },
  8816. [
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(5, "cm"),
  8820. default: true
  8821. },
  8822. ]
  8823. ))
  8824. characterMakers.push(() => makeCharacter(
  8825. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8826. {
  8827. front: {
  8828. height: math.unit(8 + 3 / 12, "feet"),
  8829. weight: math.unit(424, "lbs"),
  8830. name: "Front",
  8831. image: {
  8832. source: "./media/characters/verin/front.svg",
  8833. extra: 1845 / 1550
  8834. }
  8835. },
  8836. frontArmored: {
  8837. height: math.unit(8 + 3 / 12, "feet"),
  8838. weight: math.unit(424, "lbs"),
  8839. name: "Front (Armored)",
  8840. image: {
  8841. source: "./media/characters/verin/front-armor.svg",
  8842. extra: 1845 / 1550,
  8843. bottom: 0.01
  8844. }
  8845. },
  8846. back: {
  8847. height: math.unit(8 + 3 / 12, "feet"),
  8848. weight: math.unit(424, "lbs"),
  8849. name: "Back",
  8850. image: {
  8851. source: "./media/characters/verin/back.svg",
  8852. bottom: 0.1,
  8853. extra: 1
  8854. }
  8855. },
  8856. foot: {
  8857. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8858. name: "Foot",
  8859. image: {
  8860. source: "./media/characters/verin/foot.svg"
  8861. }
  8862. },
  8863. },
  8864. [
  8865. {
  8866. name: "Normal",
  8867. height: math.unit(8 + 3 / 12, "feet")
  8868. },
  8869. {
  8870. name: "Minimacro",
  8871. height: math.unit(21, "feet"),
  8872. default: true
  8873. },
  8874. {
  8875. name: "Macro",
  8876. height: math.unit(626, "feet")
  8877. },
  8878. ]
  8879. ))
  8880. characterMakers.push(() => makeCharacter(
  8881. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8882. {
  8883. front: {
  8884. height: math.unit(2.718, "meters"),
  8885. weight: math.unit(150, "lbs"),
  8886. name: "Front",
  8887. image: {
  8888. source: "./media/characters/sovrim-terraquian/front.svg",
  8889. extra: 1752/1689,
  8890. bottom: 36/1788
  8891. }
  8892. },
  8893. back: {
  8894. height: math.unit(2.718, "meters"),
  8895. weight: math.unit(150, "lbs"),
  8896. name: "Back",
  8897. image: {
  8898. source: "./media/characters/sovrim-terraquian/back.svg",
  8899. extra: 1698/1657,
  8900. bottom: 58/1756
  8901. }
  8902. },
  8903. tongue: {
  8904. height: math.unit(2.865, "feet"),
  8905. name: "Tongue",
  8906. image: {
  8907. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8908. }
  8909. },
  8910. hand: {
  8911. height: math.unit(1.61, "feet"),
  8912. name: "Hand",
  8913. image: {
  8914. source: "./media/characters/sovrim-terraquian/hand.svg"
  8915. }
  8916. },
  8917. foot: {
  8918. height: math.unit(1.05, "feet"),
  8919. name: "Foot",
  8920. image: {
  8921. source: "./media/characters/sovrim-terraquian/foot.svg"
  8922. }
  8923. },
  8924. footAlt: {
  8925. height: math.unit(0.88, "feet"),
  8926. name: "Foot (Alt)",
  8927. image: {
  8928. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8929. }
  8930. },
  8931. },
  8932. [
  8933. {
  8934. name: "Micro",
  8935. height: math.unit(2, "inches")
  8936. },
  8937. {
  8938. name: "Small",
  8939. height: math.unit(1, "meter")
  8940. },
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(Math.E, "meters"),
  8944. default: true
  8945. },
  8946. {
  8947. name: "Macro",
  8948. height: math.unit(20, "meters")
  8949. },
  8950. {
  8951. name: "Macro+",
  8952. height: math.unit(400, "meters")
  8953. },
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8958. {
  8959. front: {
  8960. height: math.unit(7, "feet"),
  8961. weight: math.unit(489, "lbs"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/reece-silvermane/front.svg",
  8965. bottom: 0.02,
  8966. extra: 1
  8967. }
  8968. },
  8969. },
  8970. [
  8971. {
  8972. name: "Macro",
  8973. height: math.unit(1.5, "miles"),
  8974. default: true
  8975. },
  8976. ]
  8977. ))
  8978. characterMakers.push(() => makeCharacter(
  8979. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8980. {
  8981. front: {
  8982. height: math.unit(6, "feet"),
  8983. weight: math.unit(78, "kg"),
  8984. name: "Front",
  8985. image: {
  8986. source: "./media/characters/kane/front.svg",
  8987. extra: 978 / 899
  8988. }
  8989. },
  8990. },
  8991. [
  8992. {
  8993. name: "Normal",
  8994. height: math.unit(2.1, "m"),
  8995. },
  8996. {
  8997. name: "Macro",
  8998. height: math.unit(1, "km"),
  8999. default: true
  9000. },
  9001. ]
  9002. ))
  9003. characterMakers.push(() => makeCharacter(
  9004. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9005. {
  9006. front: {
  9007. height: math.unit(6, "feet"),
  9008. weight: math.unit(200, "kg"),
  9009. name: "Front",
  9010. image: {
  9011. source: "./media/characters/tegon/front.svg",
  9012. bottom: 0.01,
  9013. extra: 1
  9014. }
  9015. },
  9016. },
  9017. [
  9018. {
  9019. name: "Micro",
  9020. height: math.unit(1, "inch")
  9021. },
  9022. {
  9023. name: "Normal",
  9024. height: math.unit(6 + 3 / 12, "feet"),
  9025. default: true
  9026. },
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(300, "feet")
  9030. },
  9031. {
  9032. name: "Megamacro",
  9033. height: math.unit(69, "miles")
  9034. },
  9035. ]
  9036. ))
  9037. characterMakers.push(() => makeCharacter(
  9038. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9039. {
  9040. side: {
  9041. height: math.unit(6, "feet"),
  9042. weight: math.unit(2304, "lbs"),
  9043. name: "Side",
  9044. image: {
  9045. source: "./media/characters/arcturax/side.svg",
  9046. extra: 790 / 376,
  9047. bottom: 0.01
  9048. }
  9049. },
  9050. },
  9051. [
  9052. {
  9053. name: "Micro",
  9054. height: math.unit(2, "inch")
  9055. },
  9056. {
  9057. name: "Normal",
  9058. height: math.unit(6, "feet")
  9059. },
  9060. {
  9061. name: "Macro",
  9062. height: math.unit(39, "feet"),
  9063. default: true
  9064. },
  9065. {
  9066. name: "Megamacro",
  9067. height: math.unit(7, "miles")
  9068. },
  9069. ]
  9070. ))
  9071. characterMakers.push(() => makeCharacter(
  9072. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9073. {
  9074. front: {
  9075. height: math.unit(6, "feet"),
  9076. weight: math.unit(50, "lbs"),
  9077. name: "Front",
  9078. image: {
  9079. source: "./media/characters/sentri/front.svg",
  9080. extra: 1750 / 1570,
  9081. bottom: 0.025
  9082. }
  9083. },
  9084. frontAlt: {
  9085. height: math.unit(6, "feet"),
  9086. weight: math.unit(50, "lbs"),
  9087. name: "Front (Alt)",
  9088. image: {
  9089. source: "./media/characters/sentri/front-alt.svg",
  9090. extra: 1750 / 1570,
  9091. bottom: 0.025
  9092. }
  9093. },
  9094. },
  9095. [
  9096. {
  9097. name: "Normal",
  9098. height: math.unit(15, "feet"),
  9099. default: true
  9100. },
  9101. {
  9102. name: "Macro",
  9103. height: math.unit(2500, "feet")
  9104. }
  9105. ]
  9106. ))
  9107. characterMakers.push(() => makeCharacter(
  9108. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9109. {
  9110. front: {
  9111. height: math.unit(5 + 8 / 12, "feet"),
  9112. weight: math.unit(130, "lbs"),
  9113. name: "Front",
  9114. image: {
  9115. source: "./media/characters/corvin/front.svg",
  9116. extra: 1803 / 1629
  9117. }
  9118. },
  9119. frontShirt: {
  9120. height: math.unit(5 + 8 / 12, "feet"),
  9121. weight: math.unit(130, "lbs"),
  9122. name: "Front (Shirt)",
  9123. image: {
  9124. source: "./media/characters/corvin/front-shirt.svg",
  9125. extra: 1803 / 1629
  9126. }
  9127. },
  9128. frontPoncho: {
  9129. height: math.unit(5 + 8 / 12, "feet"),
  9130. weight: math.unit(130, "lbs"),
  9131. name: "Front (Poncho)",
  9132. image: {
  9133. source: "./media/characters/corvin/front-poncho.svg",
  9134. extra: 1803 / 1629
  9135. }
  9136. },
  9137. side: {
  9138. height: math.unit(5 + 8 / 12, "feet"),
  9139. weight: math.unit(130, "lbs"),
  9140. name: "Side",
  9141. image: {
  9142. source: "./media/characters/corvin/side.svg",
  9143. extra: 1012 / 945
  9144. }
  9145. },
  9146. back: {
  9147. height: math.unit(5 + 8 / 12, "feet"),
  9148. weight: math.unit(130, "lbs"),
  9149. name: "Back",
  9150. image: {
  9151. source: "./media/characters/corvin/back.svg",
  9152. extra: 1803 / 1629
  9153. }
  9154. },
  9155. },
  9156. [
  9157. {
  9158. name: "Micro",
  9159. height: math.unit(3, "inches")
  9160. },
  9161. {
  9162. name: "Normal",
  9163. height: math.unit(5 + 8 / 12, "feet")
  9164. },
  9165. {
  9166. name: "Macro",
  9167. height: math.unit(300, "feet"),
  9168. default: true
  9169. },
  9170. {
  9171. name: "Megamacro",
  9172. height: math.unit(500, "miles")
  9173. }
  9174. ]
  9175. ))
  9176. characterMakers.push(() => makeCharacter(
  9177. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9178. {
  9179. front: {
  9180. height: math.unit(6, "feet"),
  9181. weight: math.unit(135, "lbs"),
  9182. name: "Front",
  9183. image: {
  9184. source: "./media/characters/q/front.svg",
  9185. extra: 854 / 752,
  9186. bottom: 0.005
  9187. }
  9188. },
  9189. back: {
  9190. height: math.unit(6, "feet"),
  9191. weight: math.unit(130, "lbs"),
  9192. name: "Back",
  9193. image: {
  9194. source: "./media/characters/q/back.svg",
  9195. extra: 854 / 752
  9196. }
  9197. },
  9198. },
  9199. [
  9200. {
  9201. name: "Macro",
  9202. height: math.unit(90, "feet"),
  9203. default: true
  9204. },
  9205. {
  9206. name: "Extra Macro",
  9207. height: math.unit(300, "feet"),
  9208. },
  9209. {
  9210. name: "BIG WALF",
  9211. height: math.unit(750, "feet"),
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(3, "feet"),
  9220. weight: math.unit(28, "lbs"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/citrine/front.svg"
  9224. }
  9225. }
  9226. },
  9227. [
  9228. {
  9229. name: "Normal",
  9230. height: math.unit(3, "feet"),
  9231. default: true
  9232. }
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9237. {
  9238. front: {
  9239. height: math.unit(14, "feet"),
  9240. weight: math.unit(1450, "kg"),
  9241. preyCapacity: math.unit(15, "people"),
  9242. name: "Front",
  9243. image: {
  9244. source: "./media/characters/aura-starwind/front.svg",
  9245. extra: 1440/1327,
  9246. bottom: 11/1451
  9247. }
  9248. },
  9249. side: {
  9250. height: math.unit(14, "feet"),
  9251. weight: math.unit(1450, "kg"),
  9252. preyCapacity: math.unit(15, "people"),
  9253. name: "Side",
  9254. image: {
  9255. source: "./media/characters/aura-starwind/side.svg",
  9256. extra: 1654 / 1497
  9257. }
  9258. },
  9259. taur: {
  9260. height: math.unit(18, "feet"),
  9261. weight: math.unit(5500, "kg"),
  9262. preyCapacity: math.unit(50, "people"),
  9263. name: "Taur",
  9264. image: {
  9265. source: "./media/characters/aura-starwind/taur.svg",
  9266. extra: 1760 / 1650
  9267. }
  9268. },
  9269. feral: {
  9270. height: math.unit(46, "feet"),
  9271. weight: math.unit(25000, "kg"),
  9272. preyCapacity: math.unit(120, "people"),
  9273. name: "Feral",
  9274. image: {
  9275. source: "./media/characters/aura-starwind/feral.svg"
  9276. }
  9277. },
  9278. },
  9279. [
  9280. {
  9281. name: "Normal",
  9282. height: math.unit(14, "feet"),
  9283. default: true
  9284. },
  9285. {
  9286. name: "Macro",
  9287. height: math.unit(50, "meters")
  9288. },
  9289. {
  9290. name: "Megamacro",
  9291. height: math.unit(5000, "meters")
  9292. },
  9293. {
  9294. name: "Gigamacro",
  9295. height: math.unit(100000, "kilometers")
  9296. },
  9297. ]
  9298. ))
  9299. characterMakers.push(() => makeCharacter(
  9300. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9301. {
  9302. front: {
  9303. height: math.unit(2 + 7 / 12, "feet"),
  9304. weight: math.unit(32, "lbs"),
  9305. name: "Front",
  9306. image: {
  9307. source: "./media/characters/rivet/front.svg",
  9308. extra: 1716 / 1658,
  9309. bottom: 0.03
  9310. }
  9311. },
  9312. foot: {
  9313. height: math.unit(0.551, "feet"),
  9314. name: "Rivet's Foot",
  9315. image: {
  9316. source: "./media/characters/rivet/foot.svg"
  9317. },
  9318. rename: true
  9319. }
  9320. },
  9321. [
  9322. {
  9323. name: "Micro",
  9324. height: math.unit(1.5, "inches"),
  9325. },
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(2 + 7 / 12, "feet"),
  9329. default: true
  9330. },
  9331. {
  9332. name: "Macro",
  9333. height: math.unit(85, "feet")
  9334. },
  9335. {
  9336. name: "Megamacro",
  9337. height: math.unit(2.2, "km")
  9338. }
  9339. ]
  9340. ))
  9341. characterMakers.push(() => makeCharacter(
  9342. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9343. {
  9344. front: {
  9345. height: math.unit(5 + 9 / 12, "feet"),
  9346. weight: math.unit(150, "lbs"),
  9347. name: "Front",
  9348. image: {
  9349. source: "./media/characters/coffee/front.svg",
  9350. extra: 946/880,
  9351. bottom: 66/1012
  9352. }
  9353. },
  9354. foot: {
  9355. height: math.unit(1.29, "feet"),
  9356. name: "Foot",
  9357. image: {
  9358. source: "./media/characters/coffee/foot.svg"
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Micro",
  9365. height: math.unit(2, "inches"),
  9366. },
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(5 + 9 / 12, "feet"),
  9370. default: true
  9371. },
  9372. {
  9373. name: "Macro",
  9374. height: math.unit(800, "feet")
  9375. },
  9376. {
  9377. name: "Megamacro",
  9378. height: math.unit(25, "miles")
  9379. }
  9380. ]
  9381. ))
  9382. characterMakers.push(() => makeCharacter(
  9383. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9384. {
  9385. front: {
  9386. height: math.unit(6, "feet"),
  9387. weight: math.unit(200, "lbs"),
  9388. name: "Front",
  9389. image: {
  9390. source: "./media/characters/chari-gal/front.svg",
  9391. extra: 1568 / 1385,
  9392. bottom: 0.047
  9393. }
  9394. },
  9395. gigantamax: {
  9396. height: math.unit(6 * 16, "feet"),
  9397. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9398. name: "Gigantamax",
  9399. image: {
  9400. source: "./media/characters/chari-gal/gigantamax.svg",
  9401. extra: 1124 / 888,
  9402. bottom: 0.03
  9403. }
  9404. },
  9405. },
  9406. [
  9407. {
  9408. name: "Normal",
  9409. height: math.unit(5 + 7 / 12, "feet")
  9410. },
  9411. {
  9412. name: "Macro",
  9413. height: math.unit(200, "feet"),
  9414. default: true
  9415. }
  9416. ]
  9417. ))
  9418. characterMakers.push(() => makeCharacter(
  9419. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9420. {
  9421. front: {
  9422. height: math.unit(6, "feet"),
  9423. weight: math.unit(150, "lbs"),
  9424. name: "Front",
  9425. image: {
  9426. source: "./media/characters/nova/front.svg",
  9427. extra: 5000 / 4722,
  9428. bottom: 0.02
  9429. }
  9430. }
  9431. },
  9432. [
  9433. {
  9434. name: "Micro-",
  9435. height: math.unit(0.8, "inches")
  9436. },
  9437. {
  9438. name: "Micro",
  9439. height: math.unit(2, "inches"),
  9440. default: true
  9441. },
  9442. ]
  9443. ))
  9444. characterMakers.push(() => makeCharacter(
  9445. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9446. {
  9447. koboldFront: {
  9448. height: math.unit(3 + 1 / 12, "feet"),
  9449. weight: math.unit(21.7, "lbs"),
  9450. name: "Front",
  9451. image: {
  9452. source: "./media/characters/argent/kobold-front.svg",
  9453. extra: 1471 / 1331,
  9454. bottom: 100.8 / 1575.5
  9455. },
  9456. form: "kobold",
  9457. default: true
  9458. },
  9459. dragonFront: {
  9460. height: math.unit(75, "inches"),
  9461. name: "Front",
  9462. image: {
  9463. source: "./media/characters/argent/dragon-front.svg",
  9464. extra: 1389/1248,
  9465. bottom: 54/1443
  9466. },
  9467. form: "dragon",
  9468. },
  9469. dragonBack: {
  9470. height: math.unit(75, "inches"),
  9471. name: "Back",
  9472. image: {
  9473. source: "./media/characters/argent/dragon-back.svg",
  9474. extra: 1399/1271,
  9475. bottom: 23/1422
  9476. },
  9477. form: "dragon",
  9478. },
  9479. dragonDressed: {
  9480. height: math.unit(75, "inches"),
  9481. name: "Dressed",
  9482. image: {
  9483. source: "./media/characters/argent/dragon-dressed.svg",
  9484. extra: 1350/1215,
  9485. bottom: 26/1376
  9486. },
  9487. form: "dragon"
  9488. },
  9489. dragonHead: {
  9490. height: math.unit(23.5, "inches"),
  9491. name: "Head",
  9492. image: {
  9493. source: "./media/characters/argent/dragon-head.svg"
  9494. },
  9495. form: "dragon",
  9496. },
  9497. },
  9498. [
  9499. {
  9500. name: "Micro",
  9501. height: math.unit(2, "inches"),
  9502. form: "kobold",
  9503. },
  9504. {
  9505. name: "Normal",
  9506. height: math.unit(3 + 1 / 12, "feet"),
  9507. form: "kobold",
  9508. default: true
  9509. },
  9510. {
  9511. name: "Macro",
  9512. height: math.unit(120, "feet"),
  9513. form: "kobold",
  9514. },
  9515. {
  9516. name: "Speck",
  9517. height: math.unit(1, "mm"),
  9518. form: "dragon",
  9519. },
  9520. {
  9521. name: "Tiny",
  9522. height: math.unit(1, "cm"),
  9523. form: "dragon",
  9524. },
  9525. {
  9526. name: "Micro",
  9527. height: math.unit(5, "cm"),
  9528. form: "dragon",
  9529. },
  9530. {
  9531. name: "Normal",
  9532. height: math.unit(75, "inches"),
  9533. form: "dragon",
  9534. default: true
  9535. },
  9536. {
  9537. name: "Extra Tall",
  9538. height: math.unit(9, "feet"),
  9539. form: "dragon",
  9540. },
  9541. {
  9542. name: "Inconvenient",
  9543. height: math.unit(5, "meters"),
  9544. form: "dragon",
  9545. },
  9546. {
  9547. name: "Macro",
  9548. height: math.unit(70, "meters"),
  9549. form: "dragon",
  9550. },
  9551. {
  9552. name: "Macro+",
  9553. height: math.unit(250, "meters"),
  9554. form: "dragon",
  9555. },
  9556. {
  9557. name: "Megamacro",
  9558. height: math.unit(20, "km"),
  9559. form: "dragon",
  9560. },
  9561. {
  9562. name: "Mountainous",
  9563. height: math.unit(100, "km"),
  9564. form: "dragon",
  9565. },
  9566. {
  9567. name: "Continental",
  9568. height: math.unit(2, "megameters"),
  9569. form: "dragon",
  9570. },
  9571. {
  9572. name: "Too Big",
  9573. height: math.unit(900, "megameters"),
  9574. form: "dragon",
  9575. },
  9576. ],
  9577. {
  9578. "kobold": {
  9579. name: "Kobold",
  9580. default: true
  9581. },
  9582. "dragon": {
  9583. name: "Dragon",
  9584. },
  9585. }
  9586. ))
  9587. characterMakers.push(() => makeCharacter(
  9588. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9589. {
  9590. lamp: {
  9591. height: math.unit(7 * 1559 / 989, "feet"),
  9592. name: "Magic Lamp",
  9593. image: {
  9594. source: "./media/characters/mira-al-cul/lamp.svg",
  9595. extra: 1617 / 1559
  9596. }
  9597. },
  9598. front: {
  9599. height: math.unit(7, "feet"),
  9600. name: "Front",
  9601. image: {
  9602. source: "./media/characters/mira-al-cul/front.svg",
  9603. extra: 1044 / 990
  9604. }
  9605. },
  9606. },
  9607. [
  9608. {
  9609. name: "Heavily Restricted",
  9610. height: math.unit(7 * 1559 / 989, "feet")
  9611. },
  9612. {
  9613. name: "Freshly Freed",
  9614. height: math.unit(50 * 1559 / 989, "feet")
  9615. },
  9616. {
  9617. name: "World Encompassing",
  9618. height: math.unit(10000 * 1559 / 989, "miles")
  9619. },
  9620. {
  9621. name: "Galactic",
  9622. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9623. },
  9624. {
  9625. name: "Palmed Universe",
  9626. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9627. default: true
  9628. },
  9629. {
  9630. name: "Multiversal Matriarch",
  9631. height: math.unit(8.87e10, "yottameters")
  9632. },
  9633. {
  9634. name: "Void Mother",
  9635. height: math.unit(3.14e110, "yottaparsecs")
  9636. },
  9637. {
  9638. name: "Toying with Transcendence",
  9639. height: math.unit(1e307, "meters")
  9640. },
  9641. ]
  9642. ))
  9643. characterMakers.push(() => makeCharacter(
  9644. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9645. {
  9646. front: {
  9647. height: math.unit(17 + 1 / 12, "feet"),
  9648. weight: math.unit(476.2 * 5, "lbs"),
  9649. name: "Front",
  9650. image: {
  9651. source: "./media/characters/kuro-shi-uchū/front.svg",
  9652. extra: 2329 / 1835,
  9653. bottom: 0.02
  9654. }
  9655. },
  9656. },
  9657. [
  9658. {
  9659. name: "Micro",
  9660. height: math.unit(2, "inches")
  9661. },
  9662. {
  9663. name: "Normal",
  9664. height: math.unit(12, "meters")
  9665. },
  9666. {
  9667. name: "Planetary",
  9668. height: math.unit(0.00929, "AU"),
  9669. default: true
  9670. },
  9671. {
  9672. name: "Universal",
  9673. height: math.unit(20, "gigaparsecs")
  9674. },
  9675. ]
  9676. ))
  9677. characterMakers.push(() => makeCharacter(
  9678. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9679. {
  9680. front: {
  9681. height: math.unit(5 + 2 / 12, "feet"),
  9682. weight: math.unit(120, "lbs"),
  9683. name: "Front",
  9684. image: {
  9685. source: "./media/characters/katherine/front.svg",
  9686. extra: 2075 / 1969
  9687. }
  9688. },
  9689. dress: {
  9690. height: math.unit(5 + 2 / 12, "feet"),
  9691. weight: math.unit(120, "lbs"),
  9692. name: "Dress",
  9693. image: {
  9694. source: "./media/characters/katherine/dress.svg",
  9695. extra: 2258 / 2064
  9696. }
  9697. },
  9698. },
  9699. [
  9700. {
  9701. name: "Micro",
  9702. height: math.unit(1, "inches"),
  9703. default: true
  9704. },
  9705. {
  9706. name: "Normal",
  9707. height: math.unit(5 + 2 / 12, "feet")
  9708. },
  9709. {
  9710. name: "Macro",
  9711. height: math.unit(100, "meters")
  9712. },
  9713. {
  9714. name: "Megamacro",
  9715. height: math.unit(80, "miles")
  9716. },
  9717. ]
  9718. ))
  9719. characterMakers.push(() => makeCharacter(
  9720. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9721. {
  9722. front: {
  9723. height: math.unit(7 + 8 / 12, "feet"),
  9724. weight: math.unit(250, "lbs"),
  9725. name: "Front",
  9726. image: {
  9727. source: "./media/characters/yevis/front.svg",
  9728. extra: 1938 / 1755
  9729. }
  9730. }
  9731. },
  9732. [
  9733. {
  9734. name: "Mortal",
  9735. height: math.unit(7 + 8 / 12, "feet")
  9736. },
  9737. {
  9738. name: "Battle",
  9739. height: math.unit(25 + 11 / 12, "feet")
  9740. },
  9741. {
  9742. name: "Wrath",
  9743. height: math.unit(1654 + 11 / 12, "feet")
  9744. },
  9745. {
  9746. name: "Planet Destroyer",
  9747. height: math.unit(12000, "miles")
  9748. },
  9749. {
  9750. name: "Galaxy Conqueror",
  9751. height: math.unit(1.45, "zettameters"),
  9752. default: true
  9753. },
  9754. {
  9755. name: "Universal War",
  9756. height: math.unit(184, "gigaparsecs")
  9757. },
  9758. {
  9759. name: "Eternity War",
  9760. height: math.unit(1.98e55, "yottaparsecs")
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9766. {
  9767. front: {
  9768. height: math.unit(5 + 8 / 12, "feet"),
  9769. weight: math.unit(63, "kg"),
  9770. name: "Front",
  9771. image: {
  9772. source: "./media/characters/xavier/front.svg",
  9773. extra: 944 / 883
  9774. }
  9775. },
  9776. frontStretch: {
  9777. height: math.unit(5 + 8 / 12, "feet"),
  9778. weight: math.unit(63, "kg"),
  9779. name: "Stretching",
  9780. image: {
  9781. source: "./media/characters/xavier/front-stretch.svg",
  9782. extra: 962 / 820
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(5 + 8 / 12, "feet")
  9790. },
  9791. {
  9792. name: "Macro",
  9793. height: math.unit(100, "meters"),
  9794. default: true
  9795. },
  9796. {
  9797. name: "McLargeHuge",
  9798. height: math.unit(10, "miles")
  9799. },
  9800. ]
  9801. ))
  9802. characterMakers.push(() => makeCharacter(
  9803. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9804. {
  9805. front: {
  9806. height: math.unit(5 + 5 / 12, "feet"),
  9807. weight: math.unit(150, "lb"),
  9808. name: "Front",
  9809. image: {
  9810. source: "./media/characters/joshii/front.svg",
  9811. extra: 765 / 653,
  9812. bottom: 51 / 816
  9813. }
  9814. },
  9815. foot: {
  9816. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9817. name: "Foot",
  9818. image: {
  9819. source: "./media/characters/joshii/foot.svg"
  9820. }
  9821. },
  9822. },
  9823. [
  9824. {
  9825. name: "Micro",
  9826. height: math.unit(2, "inches")
  9827. },
  9828. {
  9829. name: "Normal",
  9830. height: math.unit(5 + 5 / 12, "feet")
  9831. },
  9832. {
  9833. name: "Macro",
  9834. height: math.unit(785, "feet"),
  9835. default: true
  9836. },
  9837. {
  9838. name: "Megamacro",
  9839. height: math.unit(24.5, "miles")
  9840. },
  9841. ]
  9842. ))
  9843. characterMakers.push(() => makeCharacter(
  9844. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9845. {
  9846. front: {
  9847. height: math.unit(6, "feet"),
  9848. weight: math.unit(150, "lb"),
  9849. name: "Front",
  9850. image: {
  9851. source: "./media/characters/goddess-elizabeth/front.svg",
  9852. extra: 1800 / 1525,
  9853. bottom: 0.005
  9854. }
  9855. },
  9856. foot: {
  9857. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9858. name: "Foot",
  9859. image: {
  9860. source: "./media/characters/goddess-elizabeth/foot.svg"
  9861. }
  9862. },
  9863. mouth: {
  9864. height: math.unit(6, "feet"),
  9865. name: "Mouth",
  9866. image: {
  9867. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9868. }
  9869. },
  9870. },
  9871. [
  9872. {
  9873. name: "Micro",
  9874. height: math.unit(12, "feet")
  9875. },
  9876. {
  9877. name: "Normal",
  9878. height: math.unit(80, "miles"),
  9879. default: true
  9880. },
  9881. {
  9882. name: "Macro",
  9883. height: math.unit(15000, "parsecs")
  9884. },
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9889. {
  9890. front: {
  9891. height: math.unit(5 + 9 / 12, "feet"),
  9892. weight: math.unit(144, "lb"),
  9893. name: "Front",
  9894. image: {
  9895. source: "./media/characters/kara/front.svg"
  9896. }
  9897. },
  9898. feet: {
  9899. height: math.unit(6 / 6.765, "feet"),
  9900. name: "Kara's Feet",
  9901. rename: true,
  9902. image: {
  9903. source: "./media/characters/kara/feet.svg"
  9904. }
  9905. },
  9906. },
  9907. [
  9908. {
  9909. name: "Normal",
  9910. height: math.unit(5 + 9 / 12, "feet")
  9911. },
  9912. {
  9913. name: "Macro",
  9914. height: math.unit(174, "feet"),
  9915. default: true
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9921. {
  9922. front: {
  9923. height: math.unit(18, "feet"),
  9924. weight: math.unit(4050, "lb"),
  9925. name: "Front",
  9926. image: {
  9927. source: "./media/characters/tyrone/front.svg",
  9928. extra: 2405 / 2270,
  9929. bottom: 182 / 2587
  9930. }
  9931. },
  9932. },
  9933. [
  9934. {
  9935. name: "Normal",
  9936. height: math.unit(18, "feet"),
  9937. default: true
  9938. },
  9939. {
  9940. name: "Macro",
  9941. height: math.unit(300, "feet")
  9942. },
  9943. {
  9944. name: "Megamacro",
  9945. height: math.unit(15, "km")
  9946. },
  9947. {
  9948. name: "Gigamacro",
  9949. height: math.unit(500, "km")
  9950. },
  9951. {
  9952. name: "Teramacro",
  9953. height: math.unit(0.5, "gigameters")
  9954. },
  9955. {
  9956. name: "Omnimacro",
  9957. height: math.unit(1e252, "yottauniverse")
  9958. },
  9959. ]
  9960. ))
  9961. characterMakers.push(() => makeCharacter(
  9962. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9963. {
  9964. front: {
  9965. height: math.unit(7 + 8 / 12, "feet"),
  9966. weight: math.unit(120, "lb"),
  9967. name: "Front",
  9968. image: {
  9969. source: "./media/characters/danny/front.svg",
  9970. extra: 1490 / 1350
  9971. }
  9972. },
  9973. back: {
  9974. height: math.unit(7 + 8 / 12, "feet"),
  9975. weight: math.unit(120, "lb"),
  9976. name: "Back",
  9977. image: {
  9978. source: "./media/characters/danny/back.svg",
  9979. extra: 1490 / 1350
  9980. }
  9981. },
  9982. },
  9983. [
  9984. {
  9985. name: "Normal",
  9986. height: math.unit(7 + 8 / 12, "feet"),
  9987. default: true
  9988. },
  9989. ]
  9990. ))
  9991. characterMakers.push(() => makeCharacter(
  9992. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9993. {
  9994. front: {
  9995. height: math.unit(3.5, "inches"),
  9996. weight: math.unit(19, "grams"),
  9997. name: "Front",
  9998. image: {
  9999. source: "./media/characters/mallow/front.svg",
  10000. extra: 471 / 431
  10001. }
  10002. },
  10003. back: {
  10004. height: math.unit(3.5, "inches"),
  10005. weight: math.unit(19, "grams"),
  10006. name: "Back",
  10007. image: {
  10008. source: "./media/characters/mallow/back.svg",
  10009. extra: 471 / 431
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Normal",
  10016. height: math.unit(3.5, "inches"),
  10017. default: true
  10018. },
  10019. ]
  10020. ))
  10021. characterMakers.push(() => makeCharacter(
  10022. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10023. {
  10024. front: {
  10025. height: math.unit(9, "feet"),
  10026. weight: math.unit(230, "kg"),
  10027. name: "Front",
  10028. image: {
  10029. source: "./media/characters/starry-aqua/front.svg"
  10030. }
  10031. },
  10032. back: {
  10033. height: math.unit(9, "feet"),
  10034. weight: math.unit(230, "kg"),
  10035. name: "Back",
  10036. image: {
  10037. source: "./media/characters/starry-aqua/back.svg"
  10038. }
  10039. },
  10040. hand: {
  10041. height: math.unit(9 * 0.1168, "feet"),
  10042. name: "Hand",
  10043. image: {
  10044. source: "./media/characters/starry-aqua/hand.svg"
  10045. }
  10046. },
  10047. foot: {
  10048. height: math.unit(9 * 0.18, "feet"),
  10049. name: "Foot",
  10050. image: {
  10051. source: "./media/characters/starry-aqua/foot.svg"
  10052. }
  10053. }
  10054. },
  10055. [
  10056. {
  10057. name: "Micro",
  10058. height: math.unit(3, "inches")
  10059. },
  10060. {
  10061. name: "Normal",
  10062. height: math.unit(9, "feet")
  10063. },
  10064. {
  10065. name: "Macro",
  10066. height: math.unit(300, "feet"),
  10067. default: true
  10068. },
  10069. {
  10070. name: "Megamacro",
  10071. height: math.unit(3200, "feet")
  10072. }
  10073. ]
  10074. ))
  10075. characterMakers.push(() => makeCharacter(
  10076. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10077. {
  10078. front: {
  10079. height: math.unit(15, "feet"),
  10080. weight: math.unit(5026, "lb"),
  10081. name: "Front",
  10082. image: {
  10083. source: "./media/characters/luka-towers/front.svg",
  10084. extra: 1269/1133,
  10085. bottom: 51/1320
  10086. }
  10087. },
  10088. },
  10089. [
  10090. {
  10091. name: "Normal",
  10092. height: math.unit(15, "feet"),
  10093. default: true
  10094. },
  10095. {
  10096. name: "Minimacro",
  10097. height: math.unit(25, "feet")
  10098. },
  10099. {
  10100. name: "Macro",
  10101. height: math.unit(320, "feet")
  10102. },
  10103. {
  10104. name: "Megamacro",
  10105. height: math.unit(35000, "feet")
  10106. },
  10107. {
  10108. name: "Gigamacro",
  10109. height: math.unit(4000, "miles")
  10110. },
  10111. {
  10112. name: "Teramacro",
  10113. height: math.unit(15000, "miles")
  10114. },
  10115. ]
  10116. ))
  10117. characterMakers.push(() => makeCharacter(
  10118. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10119. {
  10120. front: {
  10121. height: math.unit(6, "feet"),
  10122. weight: math.unit(150, "lb"),
  10123. name: "Front",
  10124. image: {
  10125. source: "./media/characters/natalie-nightring/front.svg",
  10126. extra: 1,
  10127. bottom: 0.06
  10128. }
  10129. },
  10130. },
  10131. [
  10132. {
  10133. name: "Uh Oh",
  10134. height: math.unit(0.1, "mm")
  10135. },
  10136. {
  10137. name: "Small",
  10138. height: math.unit(3, "inches")
  10139. },
  10140. {
  10141. name: "Human Scale",
  10142. height: math.unit(6, "feet")
  10143. },
  10144. {
  10145. name: "Librarian",
  10146. height: math.unit(50, "feet"),
  10147. default: true
  10148. },
  10149. {
  10150. name: "Immense",
  10151. height: math.unit(200, "miles")
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10157. {
  10158. front: {
  10159. height: math.unit(6, "feet"),
  10160. weight: math.unit(180, "lbs"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/danni-rosie/front.svg",
  10164. extra: 1260 / 1128,
  10165. bottom: 0.022
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Micro",
  10172. height: math.unit(2, "inches"),
  10173. default: true
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10179. {
  10180. front: {
  10181. height: math.unit(5 + 9 / 12, "feet"),
  10182. weight: math.unit(220, "lb"),
  10183. name: "Front",
  10184. image: {
  10185. source: "./media/characters/samantha-kruse/front.svg",
  10186. extra: (985 / 935),
  10187. bottom: 0.03
  10188. }
  10189. },
  10190. frontUndressed: {
  10191. height: math.unit(5 + 9 / 12, "feet"),
  10192. weight: math.unit(220, "lb"),
  10193. name: "Front (Undressed)",
  10194. image: {
  10195. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10196. extra: (973 / 923),
  10197. bottom: 0.025
  10198. }
  10199. },
  10200. fat: {
  10201. height: math.unit(5 + 9 / 12, "feet"),
  10202. weight: math.unit(900, "lb"),
  10203. name: "Front (Fat)",
  10204. image: {
  10205. source: "./media/characters/samantha-kruse/fat.svg",
  10206. extra: 2688 / 2561
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(5 + 9 / 12, "feet"),
  10214. default: true
  10215. }
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10220. {
  10221. back: {
  10222. height: math.unit(5 + 4 / 12, "feet"),
  10223. weight: math.unit(4963, "lb"),
  10224. name: "Back",
  10225. image: {
  10226. source: "./media/characters/amelia-rosie/back.svg",
  10227. extra: 1113 / 963,
  10228. bottom: 0.01
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Level 0",
  10235. height: math.unit(5 + 4 / 12, "feet")
  10236. },
  10237. {
  10238. name: "Level 1",
  10239. height: math.unit(164597, "feet"),
  10240. default: true
  10241. },
  10242. {
  10243. name: "Level 2",
  10244. height: math.unit(956243, "miles")
  10245. },
  10246. {
  10247. name: "Level 3",
  10248. height: math.unit(29421709423, "miles")
  10249. },
  10250. {
  10251. name: "Level 4",
  10252. height: math.unit(154, "lightyears")
  10253. },
  10254. {
  10255. name: "Level 5",
  10256. height: math.unit(4738272, "lightyears")
  10257. },
  10258. {
  10259. name: "Level 6",
  10260. height: math.unit(145787152896, "lightyears")
  10261. },
  10262. ]
  10263. ))
  10264. characterMakers.push(() => makeCharacter(
  10265. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10266. {
  10267. front: {
  10268. height: math.unit(5 + 11 / 12, "feet"),
  10269. weight: math.unit(65, "kg"),
  10270. name: "Front",
  10271. image: {
  10272. source: "./media/characters/rook-kitara/front.svg",
  10273. extra: 1347 / 1274,
  10274. bottom: 0.005
  10275. }
  10276. },
  10277. },
  10278. [
  10279. {
  10280. name: "Totally Unfair",
  10281. height: math.unit(1.8, "mm")
  10282. },
  10283. {
  10284. name: "Lap Rookie",
  10285. height: math.unit(1.4, "feet")
  10286. },
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(5 + 11 / 12, "feet"),
  10290. default: true
  10291. },
  10292. {
  10293. name: "How Did This Happen",
  10294. height: math.unit(80, "miles")
  10295. }
  10296. ]
  10297. ))
  10298. characterMakers.push(() => makeCharacter(
  10299. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10300. {
  10301. front: {
  10302. height: math.unit(7, "feet"),
  10303. weight: math.unit(300, "lb"),
  10304. name: "Front",
  10305. image: {
  10306. source: "./media/characters/pisces/front.svg",
  10307. extra: 2255 / 2115,
  10308. bottom: 0.03
  10309. }
  10310. },
  10311. back: {
  10312. height: math.unit(7, "feet"),
  10313. weight: math.unit(300, "lb"),
  10314. name: "Back",
  10315. image: {
  10316. source: "./media/characters/pisces/back.svg",
  10317. extra: 2146 / 2055,
  10318. bottom: 0.04
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Normal",
  10325. height: math.unit(7, "feet"),
  10326. default: true
  10327. },
  10328. {
  10329. name: "Swimming Pool",
  10330. height: math.unit(12.2, "meters")
  10331. },
  10332. {
  10333. name: "Olympic Swimming Pool",
  10334. height: math.unit(56.3, "meters")
  10335. },
  10336. {
  10337. name: "Lake Superior",
  10338. height: math.unit(93900, "meters")
  10339. },
  10340. {
  10341. name: "Mediterranean Sea",
  10342. height: math.unit(644457, "meters")
  10343. },
  10344. {
  10345. name: "World's Oceans",
  10346. height: math.unit(4567491, "meters")
  10347. },
  10348. ]
  10349. ))
  10350. characterMakers.push(() => makeCharacter(
  10351. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10352. {
  10353. front: {
  10354. height: math.unit(2.3, "meters"),
  10355. weight: math.unit(120, "kg"),
  10356. name: "Front",
  10357. image: {
  10358. source: "./media/characters/zelas/front.svg"
  10359. }
  10360. },
  10361. side: {
  10362. height: math.unit(2.3, "meters"),
  10363. weight: math.unit(120, "kg"),
  10364. name: "Side",
  10365. image: {
  10366. source: "./media/characters/zelas/side.svg"
  10367. }
  10368. },
  10369. back: {
  10370. height: math.unit(2.3, "meters"),
  10371. weight: math.unit(120, "kg"),
  10372. name: "Back",
  10373. image: {
  10374. source: "./media/characters/zelas/back.svg"
  10375. }
  10376. },
  10377. foot: {
  10378. height: math.unit(1.116, "feet"),
  10379. name: "Foot",
  10380. image: {
  10381. source: "./media/characters/zelas/foot.svg"
  10382. }
  10383. },
  10384. },
  10385. [
  10386. {
  10387. name: "Normal",
  10388. height: math.unit(2.3, "meters")
  10389. },
  10390. {
  10391. name: "Macro",
  10392. height: math.unit(30, "meters"),
  10393. default: true
  10394. },
  10395. ]
  10396. ))
  10397. characterMakers.push(() => makeCharacter(
  10398. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10399. {
  10400. front: {
  10401. height: math.unit(1, "inch"),
  10402. weight: math.unit(0.21, "grams"),
  10403. name: "Front",
  10404. image: {
  10405. source: "./media/characters/talbot/front.svg",
  10406. extra: 594 / 544
  10407. }
  10408. },
  10409. },
  10410. [
  10411. {
  10412. name: "Micro",
  10413. height: math.unit(1, "inch"),
  10414. default: true
  10415. },
  10416. ]
  10417. ))
  10418. characterMakers.push(() => makeCharacter(
  10419. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10420. {
  10421. front: {
  10422. height: math.unit(3 + 3 / 12, "feet"),
  10423. weight: math.unit(51.8, "lb"),
  10424. name: "Front",
  10425. image: {
  10426. source: "./media/characters/fliss/front.svg",
  10427. extra: 840 / 640
  10428. }
  10429. },
  10430. },
  10431. [
  10432. {
  10433. name: "Teeny Tiny",
  10434. height: math.unit(1, "mm")
  10435. },
  10436. {
  10437. name: "Small",
  10438. height: math.unit(1, "inch"),
  10439. default: true
  10440. },
  10441. {
  10442. name: "Standard Sylveon",
  10443. height: math.unit(3 + 3 / 12, "feet")
  10444. },
  10445. {
  10446. name: "Large Nuisance",
  10447. height: math.unit(33, "feet")
  10448. },
  10449. {
  10450. name: "City Filler",
  10451. height: math.unit(3000, "feet")
  10452. },
  10453. {
  10454. name: "New Horizon",
  10455. height: math.unit(6000, "miles")
  10456. },
  10457. ]
  10458. ))
  10459. characterMakers.push(() => makeCharacter(
  10460. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10461. {
  10462. front: {
  10463. height: math.unit(5, "cm"),
  10464. weight: math.unit(1.94, "g"),
  10465. name: "Front",
  10466. image: {
  10467. source: "./media/characters/fleta/front.svg",
  10468. extra: 835 / 803
  10469. }
  10470. },
  10471. back: {
  10472. height: math.unit(5, "cm"),
  10473. weight: math.unit(1.94, "g"),
  10474. name: "Back",
  10475. image: {
  10476. source: "./media/characters/fleta/back.svg",
  10477. extra: 835 / 803
  10478. }
  10479. },
  10480. },
  10481. [
  10482. {
  10483. name: "Micro",
  10484. height: math.unit(5, "cm"),
  10485. default: true
  10486. },
  10487. ]
  10488. ))
  10489. characterMakers.push(() => makeCharacter(
  10490. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10491. {
  10492. front: {
  10493. height: math.unit(6, "feet"),
  10494. weight: math.unit(225, "lb"),
  10495. name: "Front",
  10496. image: {
  10497. source: "./media/characters/dominic/front.svg",
  10498. extra: 1770 / 1620,
  10499. bottom: 0.025
  10500. }
  10501. },
  10502. back: {
  10503. height: math.unit(6, "feet"),
  10504. weight: math.unit(225, "lb"),
  10505. name: "Back",
  10506. image: {
  10507. source: "./media/characters/dominic/back.svg",
  10508. extra: 1745 / 1620,
  10509. bottom: 0.065
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Nano",
  10516. height: math.unit(0.1, "mm")
  10517. },
  10518. {
  10519. name: "Micro-",
  10520. height: math.unit(1, "mm")
  10521. },
  10522. {
  10523. name: "Micro",
  10524. height: math.unit(4, "inches")
  10525. },
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(6 + 4 / 12, "feet"),
  10529. default: true
  10530. },
  10531. {
  10532. name: "Macro",
  10533. height: math.unit(115, "feet")
  10534. },
  10535. {
  10536. name: "Macro+",
  10537. height: math.unit(955, "feet")
  10538. },
  10539. {
  10540. name: "Megamacro",
  10541. height: math.unit(8990, "feet")
  10542. },
  10543. {
  10544. name: "Gigmacro",
  10545. height: math.unit(9310, "miles")
  10546. },
  10547. {
  10548. name: "Teramacro",
  10549. height: math.unit(1567005010, "miles")
  10550. },
  10551. {
  10552. name: "Examacro",
  10553. height: math.unit(1425, "parsecs")
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(400, "feet"),
  10562. weight: math.unit(44444444, "lb"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/major-colonel/front.svg"
  10566. }
  10567. },
  10568. back: {
  10569. height: math.unit(400, "feet"),
  10570. weight: math.unit(44444444, "lb"),
  10571. name: "Back",
  10572. image: {
  10573. source: "./media/characters/major-colonel/back.svg"
  10574. }
  10575. },
  10576. },
  10577. [
  10578. {
  10579. name: "Macro",
  10580. height: math.unit(400, "feet"),
  10581. default: true
  10582. },
  10583. ]
  10584. ))
  10585. characterMakers.push(() => makeCharacter(
  10586. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10587. {
  10588. catFront: {
  10589. height: math.unit(6, "feet"),
  10590. weight: math.unit(120, "lb"),
  10591. name: "Front (Cat Side)",
  10592. image: {
  10593. source: "./media/characters/axel-lycan/cat-front.svg",
  10594. extra: 430 / 402,
  10595. bottom: 43 / 472.35
  10596. }
  10597. },
  10598. catBack: {
  10599. height: math.unit(6, "feet"),
  10600. weight: math.unit(120, "lb"),
  10601. name: "Back (Cat Side)",
  10602. image: {
  10603. source: "./media/characters/axel-lycan/cat-back.svg",
  10604. extra: 447 / 419,
  10605. bottom: 23.3 / 469
  10606. }
  10607. },
  10608. wolfFront: {
  10609. height: math.unit(6, "feet"),
  10610. weight: math.unit(120, "lb"),
  10611. name: "Front (Wolf Side)",
  10612. image: {
  10613. source: "./media/characters/axel-lycan/wolf-front.svg",
  10614. extra: 485 / 456,
  10615. bottom: 19 / 504
  10616. }
  10617. },
  10618. wolfBack: {
  10619. height: math.unit(6, "feet"),
  10620. weight: math.unit(120, "lb"),
  10621. name: "Back (Wolf Side)",
  10622. image: {
  10623. source: "./media/characters/axel-lycan/wolf-back.svg",
  10624. extra: 475 / 438,
  10625. bottom: 39.2 / 514
  10626. }
  10627. },
  10628. },
  10629. [
  10630. {
  10631. name: "Macro",
  10632. height: math.unit(1, "km"),
  10633. default: true
  10634. },
  10635. ]
  10636. ))
  10637. characterMakers.push(() => makeCharacter(
  10638. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10639. {
  10640. front: {
  10641. height: math.unit(5 + 9 / 12, "feet"),
  10642. weight: math.unit(175, "lb"),
  10643. name: "Front",
  10644. image: {
  10645. source: "./media/characters/vanrel-hyena/front.svg",
  10646. extra: 1086 / 1010,
  10647. bottom: 0.04
  10648. }
  10649. },
  10650. },
  10651. [
  10652. {
  10653. name: "Normal",
  10654. height: math.unit(5 + 9 / 12, "feet"),
  10655. default: true
  10656. },
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10661. {
  10662. front: {
  10663. height: math.unit(6, "feet"),
  10664. weight: math.unit(103, "lb"),
  10665. name: "Front",
  10666. image: {
  10667. source: "./media/characters/abbott-absol/front.svg",
  10668. extra: 2010 / 1842
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Megamicro",
  10675. height: math.unit(0.1, "mm")
  10676. },
  10677. {
  10678. name: "Micro",
  10679. height: math.unit(1, "inch")
  10680. },
  10681. {
  10682. name: "Normal",
  10683. height: math.unit(6, "feet"),
  10684. default: true
  10685. },
  10686. ]
  10687. ))
  10688. characterMakers.push(() => makeCharacter(
  10689. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10690. {
  10691. front: {
  10692. height: math.unit(6, "feet"),
  10693. weight: math.unit(264, "lb"),
  10694. name: "Front",
  10695. image: {
  10696. source: "./media/characters/hector/front.svg",
  10697. extra: 2280 / 2130,
  10698. bottom: 0.07
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(12.25, "foot"),
  10706. default: true
  10707. },
  10708. {
  10709. name: "Macro",
  10710. height: math.unit(160, "feet")
  10711. },
  10712. ]
  10713. ))
  10714. characterMakers.push(() => makeCharacter(
  10715. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10716. {
  10717. front: {
  10718. height: math.unit(6, "feet"),
  10719. weight: math.unit(150, "lb"),
  10720. name: "Front",
  10721. image: {
  10722. source: "./media/characters/sal/front.svg",
  10723. extra: 1846 / 1699,
  10724. bottom: 0.04
  10725. }
  10726. },
  10727. },
  10728. [
  10729. {
  10730. name: "Megamacro",
  10731. height: math.unit(10, "miles"),
  10732. default: true
  10733. },
  10734. ]
  10735. ))
  10736. characterMakers.push(() => makeCharacter(
  10737. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10738. {
  10739. front: {
  10740. height: math.unit(3, "meters"),
  10741. weight: math.unit(450, "kg"),
  10742. name: "front",
  10743. image: {
  10744. source: "./media/characters/ranger/front.svg",
  10745. extra: 2401 / 2243,
  10746. bottom: 0.05
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Normal",
  10753. height: math.unit(3, "meters"),
  10754. default: true
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10760. {
  10761. front: {
  10762. height: math.unit(14, "feet"),
  10763. weight: math.unit(800, "kg"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/theresa/front.svg",
  10767. extra: 3575 / 3346,
  10768. bottom: 0.03
  10769. }
  10770. },
  10771. },
  10772. [
  10773. {
  10774. name: "Normal",
  10775. height: math.unit(14, "feet"),
  10776. default: true
  10777. },
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10782. {
  10783. front: {
  10784. height: math.unit(6, "feet"),
  10785. weight: math.unit(3, "kg"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/ine/front.svg",
  10789. extra: 678 / 539,
  10790. bottom: 0.023
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Normal",
  10797. height: math.unit(2.265, "feet"),
  10798. default: true
  10799. },
  10800. ]
  10801. ))
  10802. characterMakers.push(() => makeCharacter(
  10803. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10804. {
  10805. front: {
  10806. height: math.unit(5, "feet"),
  10807. weight: math.unit(30, "kg"),
  10808. name: "Front",
  10809. image: {
  10810. source: "./media/characters/vial/front.svg",
  10811. extra: 1365 / 1277,
  10812. bottom: 0.04
  10813. }
  10814. },
  10815. },
  10816. [
  10817. {
  10818. name: "Normal",
  10819. height: math.unit(5, "feet"),
  10820. default: true
  10821. },
  10822. ]
  10823. ))
  10824. characterMakers.push(() => makeCharacter(
  10825. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10826. {
  10827. side: {
  10828. height: math.unit(3.4, "meters"),
  10829. weight: math.unit(1000, "lb"),
  10830. name: "Side",
  10831. image: {
  10832. source: "./media/characters/rovoska/side.svg",
  10833. extra: 4403 / 1515
  10834. }
  10835. },
  10836. },
  10837. [
  10838. {
  10839. name: "Normal",
  10840. height: math.unit(3.4, "meters"),
  10841. default: true
  10842. },
  10843. ]
  10844. ))
  10845. characterMakers.push(() => makeCharacter(
  10846. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10847. {
  10848. front: {
  10849. height: math.unit(8, "feet"),
  10850. weight: math.unit(315, "lb"),
  10851. name: "Front",
  10852. image: {
  10853. source: "./media/characters/gunner-rotthbauer/front.svg"
  10854. }
  10855. },
  10856. back: {
  10857. height: math.unit(8, "feet"),
  10858. weight: math.unit(315, "lb"),
  10859. name: "Back",
  10860. image: {
  10861. source: "./media/characters/gunner-rotthbauer/back.svg"
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Micro",
  10868. height: math.unit(3.5, "inches")
  10869. },
  10870. {
  10871. name: "Normal",
  10872. height: math.unit(8, "feet"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Macro",
  10877. height: math.unit(250, "feet")
  10878. },
  10879. {
  10880. name: "Megamacro",
  10881. height: math.unit(1, "AU")
  10882. },
  10883. ]
  10884. ))
  10885. characterMakers.push(() => makeCharacter(
  10886. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10887. {
  10888. front: {
  10889. height: math.unit(5 + 5 / 12, "feet"),
  10890. weight: math.unit(140, "lb"),
  10891. name: "Front",
  10892. image: {
  10893. source: "./media/characters/allatia/front.svg",
  10894. extra: 1227 / 1180,
  10895. bottom: 0.027
  10896. }
  10897. },
  10898. },
  10899. [
  10900. {
  10901. name: "Normal",
  10902. height: math.unit(5 + 5 / 12, "feet")
  10903. },
  10904. {
  10905. name: "Macro",
  10906. height: math.unit(250, "feet"),
  10907. default: true
  10908. },
  10909. {
  10910. name: "Megamacro",
  10911. height: math.unit(8, "miles")
  10912. }
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10917. {
  10918. front: {
  10919. height: math.unit(6, "feet"),
  10920. weight: math.unit(120, "lb"),
  10921. name: "Front",
  10922. image: {
  10923. source: "./media/characters/tene/front.svg",
  10924. extra: 814/750,
  10925. bottom: 36/850
  10926. }
  10927. },
  10928. stomping: {
  10929. height: math.unit(2.025, "meters"),
  10930. weight: math.unit(120, "lb"),
  10931. name: "Stomping",
  10932. image: {
  10933. source: "./media/characters/tene/stomping.svg",
  10934. extra: 885/821,
  10935. bottom: 15/900
  10936. }
  10937. },
  10938. sitting: {
  10939. height: math.unit(1, "meter"),
  10940. weight: math.unit(120, "lb"),
  10941. name: "Sitting",
  10942. image: {
  10943. source: "./media/characters/tene/sitting.svg",
  10944. extra: 396/366,
  10945. bottom: 79/475
  10946. }
  10947. },
  10948. smiling: {
  10949. height: math.unit(1.2, "feet"),
  10950. name: "Smiling",
  10951. image: {
  10952. source: "./media/characters/tene/smiling.svg",
  10953. extra: 1364/1071,
  10954. bottom: 0/1364
  10955. }
  10956. },
  10957. smug: {
  10958. height: math.unit(1.3, "feet"),
  10959. name: "Smug",
  10960. image: {
  10961. source: "./media/characters/tene/smug.svg",
  10962. extra: 1323/1082,
  10963. bottom: 0/1323
  10964. }
  10965. },
  10966. feral: {
  10967. height: math.unit(3.9, "feet"),
  10968. weight: math.unit(250, "lb"),
  10969. name: "Feral",
  10970. image: {
  10971. source: "./media/characters/tene/feral.svg",
  10972. extra: 717 / 458,
  10973. bottom: 0.179
  10974. }
  10975. },
  10976. },
  10977. [
  10978. {
  10979. name: "Normal",
  10980. height: math.unit(6, "feet")
  10981. },
  10982. {
  10983. name: "Macro",
  10984. height: math.unit(300, "feet"),
  10985. default: true
  10986. },
  10987. {
  10988. name: "Megamacro",
  10989. height: math.unit(5, "miles")
  10990. },
  10991. ]
  10992. ))
  10993. characterMakers.push(() => makeCharacter(
  10994. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10995. {
  10996. side: {
  10997. height: math.unit(6, "feet"),
  10998. name: "Side",
  10999. image: {
  11000. source: "./media/characters/evander/side.svg",
  11001. extra: 877 / 477
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(0.83, "meters"),
  11009. default: true
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11015. {
  11016. front: {
  11017. height: math.unit(12, "feet"),
  11018. weight: math.unit(1000, "lb"),
  11019. name: "Front",
  11020. image: {
  11021. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11022. extra: 1762 / 1611
  11023. }
  11024. },
  11025. back: {
  11026. height: math.unit(12, "feet"),
  11027. weight: math.unit(1000, "lb"),
  11028. name: "Back",
  11029. image: {
  11030. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11031. extra: 1762 / 1611
  11032. }
  11033. },
  11034. },
  11035. [
  11036. {
  11037. name: "Normal",
  11038. height: math.unit(12, "feet"),
  11039. default: true
  11040. },
  11041. {
  11042. name: "Kaiju",
  11043. height: math.unit(150, "feet")
  11044. },
  11045. ]
  11046. ))
  11047. characterMakers.push(() => makeCharacter(
  11048. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11049. {
  11050. front: {
  11051. height: math.unit(6, "feet"),
  11052. weight: math.unit(150, "lb"),
  11053. name: "Front",
  11054. image: {
  11055. source: "./media/characters/zero-alurus/front.svg"
  11056. }
  11057. },
  11058. back: {
  11059. height: math.unit(6, "feet"),
  11060. weight: math.unit(150, "lb"),
  11061. name: "Back",
  11062. image: {
  11063. source: "./media/characters/zero-alurus/back.svg"
  11064. }
  11065. },
  11066. },
  11067. [
  11068. {
  11069. name: "Normal",
  11070. height: math.unit(5 + 10 / 12, "feet")
  11071. },
  11072. {
  11073. name: "Macro",
  11074. height: math.unit(60, "feet"),
  11075. default: true
  11076. },
  11077. {
  11078. name: "Macro+",
  11079. height: math.unit(450, "feet")
  11080. },
  11081. ]
  11082. ))
  11083. characterMakers.push(() => makeCharacter(
  11084. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11085. {
  11086. front: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(200, "lb"),
  11089. name: "Front",
  11090. image: {
  11091. source: "./media/characters/mega-shi/front.svg",
  11092. extra: 1279 / 1250,
  11093. bottom: 0.02
  11094. }
  11095. },
  11096. back: {
  11097. height: math.unit(6, "feet"),
  11098. weight: math.unit(200, "lb"),
  11099. name: "Back",
  11100. image: {
  11101. source: "./media/characters/mega-shi/back.svg",
  11102. extra: 1279 / 1250,
  11103. bottom: 0.02
  11104. }
  11105. },
  11106. },
  11107. [
  11108. {
  11109. name: "Micro",
  11110. height: math.unit(16 + 6 / 12, "feet")
  11111. },
  11112. {
  11113. name: "Third Dimension",
  11114. height: math.unit(40, "meters")
  11115. },
  11116. {
  11117. name: "Normal",
  11118. height: math.unit(660, "feet"),
  11119. default: true
  11120. },
  11121. {
  11122. name: "Megamacro",
  11123. height: math.unit(10, "miles")
  11124. },
  11125. {
  11126. name: "Planetary Launch",
  11127. height: math.unit(500, "miles")
  11128. },
  11129. {
  11130. name: "Interstellar",
  11131. height: math.unit(1e9, "miles")
  11132. },
  11133. {
  11134. name: "Leaving the Universe",
  11135. height: math.unit(1, "gigaparsec")
  11136. },
  11137. {
  11138. name: "Travelling Universes",
  11139. height: math.unit(30e15, "parsecs")
  11140. },
  11141. ]
  11142. ))
  11143. characterMakers.push(() => makeCharacter(
  11144. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11145. {
  11146. front: {
  11147. height: math.unit(5 + 4/12, "feet"),
  11148. weight: math.unit(120, "lb"),
  11149. name: "Front",
  11150. image: {
  11151. source: "./media/characters/odyssey/front.svg",
  11152. extra: 1747/1571,
  11153. bottom: 47/1794
  11154. }
  11155. },
  11156. side: {
  11157. height: math.unit(5.1, "feet"),
  11158. weight: math.unit(120, "lb"),
  11159. name: "Side",
  11160. image: {
  11161. source: "./media/characters/odyssey/side.svg",
  11162. extra: 1847/1619,
  11163. bottom: 47/1894
  11164. }
  11165. },
  11166. lounging: {
  11167. height: math.unit(1.464, "feet"),
  11168. weight: math.unit(120, "lb"),
  11169. name: "Lounging",
  11170. image: {
  11171. source: "./media/characters/odyssey/lounging.svg",
  11172. extra: 1235/837,
  11173. bottom: 551/1786
  11174. }
  11175. },
  11176. },
  11177. [
  11178. {
  11179. name: "Normal",
  11180. height: math.unit(5 + 4 / 12, "feet")
  11181. },
  11182. {
  11183. name: "Macro",
  11184. height: math.unit(1, "km")
  11185. },
  11186. {
  11187. name: "Megamacro",
  11188. height: math.unit(3000, "km")
  11189. },
  11190. {
  11191. name: "Gigamacro",
  11192. height: math.unit(1, "AU"),
  11193. default: true
  11194. },
  11195. {
  11196. name: "Omniversal",
  11197. height: math.unit(100e14, "lightyears")
  11198. },
  11199. ]
  11200. ))
  11201. characterMakers.push(() => makeCharacter(
  11202. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11203. {
  11204. front: {
  11205. height: math.unit(5 + 10/12, "feet"),
  11206. name: "Front",
  11207. image: {
  11208. source: "./media/characters/mekuto/front.svg",
  11209. extra: 875/835,
  11210. bottom: 46/921
  11211. }
  11212. },
  11213. },
  11214. [
  11215. {
  11216. name: "Minimicro",
  11217. height: math.unit(0.2, "inches")
  11218. },
  11219. {
  11220. name: "Micro",
  11221. height: math.unit(1.5, "inches")
  11222. },
  11223. {
  11224. name: "Normal",
  11225. height: math.unit(5 + 10 / 12, "feet"),
  11226. default: true
  11227. },
  11228. {
  11229. name: "Minimacro",
  11230. height: math.unit(17 + 9 / 12, "feet")
  11231. },
  11232. {
  11233. name: "Macro",
  11234. height: math.unit(177.5, "feet")
  11235. },
  11236. {
  11237. name: "Megamacro",
  11238. height: math.unit(152, "miles")
  11239. },
  11240. ]
  11241. ))
  11242. characterMakers.push(() => makeCharacter(
  11243. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11244. {
  11245. front: {
  11246. height: math.unit(6.5, "inches"),
  11247. weight: math.unit(13, "oz"),
  11248. name: "Front",
  11249. image: {
  11250. source: "./media/characters/dafydd-tomos/front.svg",
  11251. extra: 2990 / 2603,
  11252. bottom: 0.03
  11253. }
  11254. },
  11255. },
  11256. [
  11257. {
  11258. name: "Micro",
  11259. height: math.unit(6.5, "inches"),
  11260. default: true
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(6, "feet"),
  11269. weight: math.unit(150, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/splinter/front.svg",
  11273. extra: 2990 / 2882,
  11274. bottom: 0.04
  11275. }
  11276. },
  11277. back: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(150, "lb"),
  11280. name: "Back",
  11281. image: {
  11282. source: "./media/characters/splinter/back.svg",
  11283. extra: 2990 / 2882,
  11284. bottom: 0.04
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Normal",
  11291. height: math.unit(6, "feet")
  11292. },
  11293. {
  11294. name: "Macro",
  11295. height: math.unit(230, "meters"),
  11296. default: true
  11297. },
  11298. ]
  11299. ))
  11300. characterMakers.push(() => makeCharacter(
  11301. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11302. {
  11303. front: {
  11304. height: math.unit(4 + 10 / 12, "feet"),
  11305. weight: math.unit(480, "lb"),
  11306. name: "Front",
  11307. image: {
  11308. source: "./media/characters/snow-gabumon/front.svg",
  11309. extra: 1140 / 963,
  11310. bottom: 0.058
  11311. }
  11312. },
  11313. back: {
  11314. height: math.unit(4 + 10 / 12, "feet"),
  11315. weight: math.unit(480, "lb"),
  11316. name: "Back",
  11317. image: {
  11318. source: "./media/characters/snow-gabumon/back.svg",
  11319. extra: 1115 / 962,
  11320. bottom: 0.041
  11321. }
  11322. },
  11323. frontUndresed: {
  11324. height: math.unit(4 + 10 / 12, "feet"),
  11325. weight: math.unit(480, "lb"),
  11326. name: "Front (Undressed)",
  11327. image: {
  11328. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11329. extra: 1061 / 960,
  11330. bottom: 0.045
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Micro",
  11337. height: math.unit(1, "inch")
  11338. },
  11339. {
  11340. name: "Normal",
  11341. height: math.unit(4 + 10 / 12, "feet"),
  11342. default: true
  11343. },
  11344. {
  11345. name: "Macro",
  11346. height: math.unit(200, "feet")
  11347. },
  11348. {
  11349. name: "Megamacro",
  11350. height: math.unit(120, "miles")
  11351. },
  11352. {
  11353. name: "Gigamacro",
  11354. height: math.unit(9800, "miles")
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11360. {
  11361. front: {
  11362. height: math.unit(1.7, "meters"),
  11363. weight: math.unit(140, "lb"),
  11364. name: "Front",
  11365. image: {
  11366. source: "./media/characters/moody/front.svg",
  11367. extra: 3226 / 3007,
  11368. bottom: 0.087
  11369. }
  11370. },
  11371. },
  11372. [
  11373. {
  11374. name: "Micro",
  11375. height: math.unit(1, "mm")
  11376. },
  11377. {
  11378. name: "Normal",
  11379. height: math.unit(1.7, "meters"),
  11380. default: true
  11381. },
  11382. {
  11383. name: "Macro",
  11384. height: math.unit(80, "meters")
  11385. },
  11386. {
  11387. name: "Macro+",
  11388. height: math.unit(500, "meters")
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11394. {
  11395. front: {
  11396. height: math.unit(6, "feet"),
  11397. weight: math.unit(150, "lb"),
  11398. name: "Front",
  11399. image: {
  11400. source: "./media/characters/zyas/front.svg",
  11401. extra: 1180 / 1120,
  11402. bottom: 0.045
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Normal",
  11409. height: math.unit(10, "feet"),
  11410. default: true
  11411. },
  11412. {
  11413. name: "Macro",
  11414. height: math.unit(500, "feet")
  11415. },
  11416. {
  11417. name: "Megamacro",
  11418. height: math.unit(5, "miles")
  11419. },
  11420. {
  11421. name: "Teramacro",
  11422. height: math.unit(150000, "miles")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11428. {
  11429. front: {
  11430. height: math.unit(6, "feet"),
  11431. weight: math.unit(150, "lb"),
  11432. name: "Front",
  11433. image: {
  11434. source: "./media/characters/cuon/front.svg",
  11435. extra: 1390 / 1320,
  11436. bottom: 0.008
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Micro",
  11443. height: math.unit(3, "inches")
  11444. },
  11445. {
  11446. name: "Normal",
  11447. height: math.unit(18 + 9 / 12, "feet"),
  11448. default: true
  11449. },
  11450. {
  11451. name: "Macro",
  11452. height: math.unit(360, "feet")
  11453. },
  11454. {
  11455. name: "Megamacro",
  11456. height: math.unit(360, "miles")
  11457. },
  11458. ]
  11459. ))
  11460. characterMakers.push(() => makeCharacter(
  11461. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11462. {
  11463. front: {
  11464. height: math.unit(2.4, "meters"),
  11465. weight: math.unit(70, "kg"),
  11466. name: "Front",
  11467. image: {
  11468. source: "./media/characters/nyanuxk/front.svg",
  11469. extra: 1172 / 1084,
  11470. bottom: 0.065
  11471. }
  11472. },
  11473. side: {
  11474. height: math.unit(2.4, "meters"),
  11475. weight: math.unit(70, "kg"),
  11476. name: "Side",
  11477. image: {
  11478. source: "./media/characters/nyanuxk/side.svg",
  11479. extra: 1190 / 1132,
  11480. bottom: 0.007
  11481. }
  11482. },
  11483. back: {
  11484. height: math.unit(2.4, "meters"),
  11485. weight: math.unit(70, "kg"),
  11486. name: "Back",
  11487. image: {
  11488. source: "./media/characters/nyanuxk/back.svg",
  11489. extra: 1200 / 1141,
  11490. bottom: 0.015
  11491. }
  11492. },
  11493. foot: {
  11494. height: math.unit(0.52, "meters"),
  11495. name: "Foot",
  11496. image: {
  11497. source: "./media/characters/nyanuxk/foot.svg"
  11498. }
  11499. },
  11500. },
  11501. [
  11502. {
  11503. name: "Micro",
  11504. height: math.unit(2, "cm")
  11505. },
  11506. {
  11507. name: "Normal",
  11508. height: math.unit(2.4, "meters"),
  11509. default: true
  11510. },
  11511. {
  11512. name: "Smaller Macro",
  11513. height: math.unit(120, "meters")
  11514. },
  11515. {
  11516. name: "Bigger Macro",
  11517. height: math.unit(1.2, "km")
  11518. },
  11519. {
  11520. name: "Megamacro",
  11521. height: math.unit(15, "kilometers")
  11522. },
  11523. {
  11524. name: "Gigamacro",
  11525. height: math.unit(2000, "km")
  11526. },
  11527. {
  11528. name: "Teramacro",
  11529. height: math.unit(500000, "km")
  11530. },
  11531. ]
  11532. ))
  11533. characterMakers.push(() => makeCharacter(
  11534. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11535. {
  11536. side: {
  11537. height: math.unit(6, "feet"),
  11538. name: "Side",
  11539. image: {
  11540. source: "./media/characters/ailbhe/side.svg",
  11541. extra: 757 / 464,
  11542. bottom: 0.041
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Normal",
  11549. height: math.unit(1.07, "meters"),
  11550. default: true
  11551. },
  11552. ]
  11553. ))
  11554. characterMakers.push(() => makeCharacter(
  11555. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11556. {
  11557. front: {
  11558. height: math.unit(6, "feet"),
  11559. weight: math.unit(120, "kg"),
  11560. name: "Front",
  11561. image: {
  11562. source: "./media/characters/zevulfius/front.svg",
  11563. extra: 965 / 903
  11564. }
  11565. },
  11566. side: {
  11567. height: math.unit(6, "feet"),
  11568. weight: math.unit(120, "kg"),
  11569. name: "Side",
  11570. image: {
  11571. source: "./media/characters/zevulfius/side.svg",
  11572. extra: 939 / 900
  11573. }
  11574. },
  11575. back: {
  11576. height: math.unit(6, "feet"),
  11577. weight: math.unit(120, "kg"),
  11578. name: "Back",
  11579. image: {
  11580. source: "./media/characters/zevulfius/back.svg",
  11581. extra: 918 / 854,
  11582. bottom: 0.005
  11583. }
  11584. },
  11585. foot: {
  11586. height: math.unit(6 / 3.72, "feet"),
  11587. name: "Foot",
  11588. image: {
  11589. source: "./media/characters/zevulfius/foot.svg"
  11590. }
  11591. },
  11592. },
  11593. [
  11594. {
  11595. name: "Macro",
  11596. height: math.unit(750, "meters")
  11597. },
  11598. {
  11599. name: "Megamacro",
  11600. height: math.unit(20, "km"),
  11601. default: true
  11602. },
  11603. {
  11604. name: "Gigamacro",
  11605. height: math.unit(2000, "km")
  11606. },
  11607. {
  11608. name: "Teramacro",
  11609. height: math.unit(250000, "km")
  11610. },
  11611. ]
  11612. ))
  11613. characterMakers.push(() => makeCharacter(
  11614. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11615. {
  11616. front: {
  11617. height: math.unit(100, "feet"),
  11618. weight: math.unit(350, "kg"),
  11619. name: "Front",
  11620. image: {
  11621. source: "./media/characters/rikes/front.svg",
  11622. extra: 1565 / 1483,
  11623. bottom: 0.017
  11624. }
  11625. },
  11626. },
  11627. [
  11628. {
  11629. name: "Macro",
  11630. height: math.unit(100, "feet"),
  11631. default: true
  11632. },
  11633. ]
  11634. ))
  11635. characterMakers.push(() => makeCharacter(
  11636. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11637. {
  11638. front: {
  11639. height: math.unit(8, "feet"),
  11640. weight: math.unit(356, "lb"),
  11641. name: "Front",
  11642. image: {
  11643. source: "./media/characters/adam-silver-mane/front.svg",
  11644. extra: 1036/937,
  11645. bottom: 63/1099
  11646. }
  11647. },
  11648. side: {
  11649. height: math.unit(8, "feet"),
  11650. weight: math.unit(356, "lb"),
  11651. name: "Side",
  11652. image: {
  11653. source: "./media/characters/adam-silver-mane/side.svg",
  11654. extra: 997/901,
  11655. bottom: 59/1056
  11656. }
  11657. },
  11658. frontNsfw: {
  11659. height: math.unit(8, "feet"),
  11660. weight: math.unit(356, "lb"),
  11661. name: "Front (NSFW)",
  11662. image: {
  11663. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11664. extra: 1036/937,
  11665. bottom: 63/1099
  11666. }
  11667. },
  11668. sideNsfw: {
  11669. height: math.unit(8, "feet"),
  11670. weight: math.unit(356, "lb"),
  11671. name: "Side (NSFW)",
  11672. image: {
  11673. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11674. extra: 997/901,
  11675. bottom: 59/1056
  11676. }
  11677. },
  11678. dick: {
  11679. height: math.unit(2.1, "feet"),
  11680. name: "Dick",
  11681. image: {
  11682. source: "./media/characters/adam-silver-mane/dick.svg"
  11683. }
  11684. },
  11685. taur: {
  11686. height: math.unit(16, "feet"),
  11687. weight: math.unit(1500, "kg"),
  11688. name: "Taur",
  11689. image: {
  11690. source: "./media/characters/adam-silver-mane/taur.svg",
  11691. extra: 1713 / 1571,
  11692. bottom: 0.01
  11693. }
  11694. },
  11695. },
  11696. [
  11697. {
  11698. name: "Normal",
  11699. height: math.unit(8, "feet")
  11700. },
  11701. {
  11702. name: "Minimacro",
  11703. height: math.unit(80, "feet")
  11704. },
  11705. {
  11706. name: "MDA",
  11707. height: math.unit(80, "meters")
  11708. },
  11709. {
  11710. name: "Macro",
  11711. height: math.unit(800, "feet"),
  11712. default: true
  11713. },
  11714. {
  11715. name: "Megamacro",
  11716. height: math.unit(8000, "feet")
  11717. },
  11718. {
  11719. name: "Gigamacro",
  11720. height: math.unit(800, "miles")
  11721. },
  11722. {
  11723. name: "Teramacro",
  11724. height: math.unit(80000, "miles")
  11725. },
  11726. {
  11727. name: "Celestial",
  11728. height: math.unit(8e6, "miles")
  11729. },
  11730. {
  11731. name: "Star Dragon",
  11732. height: math.unit(800000, "parsecs")
  11733. },
  11734. {
  11735. name: "Godly",
  11736. height: math.unit(800, "teraparsecs")
  11737. },
  11738. ]
  11739. ))
  11740. characterMakers.push(() => makeCharacter(
  11741. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11742. {
  11743. front: {
  11744. height: math.unit(6, "feet"),
  11745. weight: math.unit(150, "lb"),
  11746. name: "Front",
  11747. image: {
  11748. source: "./media/characters/ky'owin/front.svg",
  11749. extra: 3862/3053,
  11750. bottom: 74/3936
  11751. }
  11752. },
  11753. },
  11754. [
  11755. {
  11756. name: "Normal",
  11757. height: math.unit(6 + 8 / 12, "feet")
  11758. },
  11759. {
  11760. name: "Large",
  11761. height: math.unit(68, "feet")
  11762. },
  11763. {
  11764. name: "Macro",
  11765. height: math.unit(132, "feet")
  11766. },
  11767. {
  11768. name: "Macro+",
  11769. height: math.unit(340, "feet")
  11770. },
  11771. {
  11772. name: "Macro++",
  11773. height: math.unit(680, "feet"),
  11774. default: true
  11775. },
  11776. {
  11777. name: "Megamacro",
  11778. height: math.unit(1, "mile")
  11779. },
  11780. {
  11781. name: "Megamacro+",
  11782. height: math.unit(10, "miles")
  11783. },
  11784. ]
  11785. ))
  11786. characterMakers.push(() => makeCharacter(
  11787. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11788. {
  11789. front: {
  11790. height: math.unit(4, "feet"),
  11791. weight: math.unit(50, "lb"),
  11792. name: "Front",
  11793. image: {
  11794. source: "./media/characters/mal/front.svg",
  11795. extra: 785 / 724,
  11796. bottom: 0.07
  11797. }
  11798. },
  11799. },
  11800. [
  11801. {
  11802. name: "Micro",
  11803. height: math.unit(4, "inches")
  11804. },
  11805. {
  11806. name: "Normal",
  11807. height: math.unit(4, "feet"),
  11808. default: true
  11809. },
  11810. {
  11811. name: "Macro",
  11812. height: math.unit(200, "feet")
  11813. },
  11814. ]
  11815. ))
  11816. characterMakers.push(() => makeCharacter(
  11817. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11818. {
  11819. front: {
  11820. height: math.unit(6, "feet"),
  11821. weight: math.unit(150, "lb"),
  11822. name: "Front",
  11823. image: {
  11824. source: "./media/characters/jordan-deware/front.svg",
  11825. extra: 1191 / 1012
  11826. }
  11827. },
  11828. },
  11829. [
  11830. {
  11831. name: "Nano",
  11832. height: math.unit(0.01, "mm")
  11833. },
  11834. {
  11835. name: "Minimicro",
  11836. height: math.unit(1, "mm")
  11837. },
  11838. {
  11839. name: "Micro",
  11840. height: math.unit(0.5, "inches")
  11841. },
  11842. {
  11843. name: "Normal",
  11844. height: math.unit(4, "feet"),
  11845. default: true
  11846. },
  11847. {
  11848. name: "Minimacro",
  11849. height: math.unit(40, "meters")
  11850. },
  11851. {
  11852. name: "Small Macro",
  11853. height: math.unit(400, "meters")
  11854. },
  11855. {
  11856. name: "Macro",
  11857. height: math.unit(4, "miles")
  11858. },
  11859. {
  11860. name: "Megamacro",
  11861. height: math.unit(40, "miles")
  11862. },
  11863. {
  11864. name: "Megamacro+",
  11865. height: math.unit(400, "miles")
  11866. },
  11867. {
  11868. name: "Gigamacro",
  11869. height: math.unit(400000, "miles")
  11870. },
  11871. ]
  11872. ))
  11873. characterMakers.push(() => makeCharacter(
  11874. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11875. {
  11876. side: {
  11877. height: math.unit(6, "feet"),
  11878. weight: math.unit(150, "lb"),
  11879. name: "Side",
  11880. image: {
  11881. source: "./media/characters/kimiko/side.svg",
  11882. extra: 600 / 358
  11883. }
  11884. },
  11885. },
  11886. [
  11887. {
  11888. name: "Normal",
  11889. height: math.unit(15, "feet"),
  11890. default: true
  11891. },
  11892. {
  11893. name: "Macro",
  11894. height: math.unit(220, "feet")
  11895. },
  11896. {
  11897. name: "Macro+",
  11898. height: math.unit(1450, "feet")
  11899. },
  11900. {
  11901. name: "Megamacro",
  11902. height: math.unit(11500, "feet")
  11903. },
  11904. {
  11905. name: "Gigamacro",
  11906. height: math.unit(9500, "miles")
  11907. },
  11908. {
  11909. name: "Teramacro",
  11910. height: math.unit(2208005005, "miles")
  11911. },
  11912. {
  11913. name: "Examacro",
  11914. height: math.unit(2750, "parsecs")
  11915. },
  11916. {
  11917. name: "Zettamacro",
  11918. height: math.unit(101500, "parsecs")
  11919. },
  11920. ]
  11921. ))
  11922. characterMakers.push(() => makeCharacter(
  11923. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11924. {
  11925. front: {
  11926. height: math.unit(6, "feet"),
  11927. weight: math.unit(70, "kg"),
  11928. name: "Front",
  11929. image: {
  11930. source: "./media/characters/andrew-sleepy/front.svg"
  11931. }
  11932. },
  11933. side: {
  11934. height: math.unit(6, "feet"),
  11935. weight: math.unit(70, "kg"),
  11936. name: "Side",
  11937. image: {
  11938. source: "./media/characters/andrew-sleepy/side.svg"
  11939. }
  11940. },
  11941. },
  11942. [
  11943. {
  11944. name: "Micro",
  11945. height: math.unit(1, "mm"),
  11946. default: true
  11947. },
  11948. ]
  11949. ))
  11950. characterMakers.push(() => makeCharacter(
  11951. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11952. {
  11953. front: {
  11954. height: math.unit(6, "feet"),
  11955. weight: math.unit(150, "lb"),
  11956. name: "Front",
  11957. image: {
  11958. source: "./media/characters/judio/front.svg",
  11959. extra: 1258 / 1110
  11960. }
  11961. },
  11962. },
  11963. [
  11964. {
  11965. name: "Normal",
  11966. height: math.unit(5 + 6 / 12, "feet")
  11967. },
  11968. {
  11969. name: "Macro",
  11970. height: math.unit(1000, "feet"),
  11971. default: true
  11972. },
  11973. {
  11974. name: "Megamacro",
  11975. height: math.unit(10, "miles")
  11976. },
  11977. ]
  11978. ))
  11979. characterMakers.push(() => makeCharacter(
  11980. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11981. {
  11982. frontDressed: {
  11983. height: math.unit(6, "feet"),
  11984. weight: math.unit(68, "kg"),
  11985. name: "Front (Dressed)",
  11986. image: {
  11987. source: "./media/characters/nomaxice/front-dressed.svg",
  11988. extra: 1137/824,
  11989. bottom: 74/1211
  11990. }
  11991. },
  11992. frontShorts: {
  11993. height: math.unit(6, "feet"),
  11994. weight: math.unit(68, "kg"),
  11995. name: "Front (Shorts)",
  11996. image: {
  11997. source: "./media/characters/nomaxice/front-shorts.svg",
  11998. extra: 1137/824,
  11999. bottom: 74/1211
  12000. }
  12001. },
  12002. back: {
  12003. height: math.unit(6, "feet"),
  12004. weight: math.unit(68, "kg"),
  12005. name: "Back",
  12006. image: {
  12007. source: "./media/characters/nomaxice/back.svg",
  12008. extra: 822/786,
  12009. bottom: 39/861
  12010. }
  12011. },
  12012. hand: {
  12013. height: math.unit(0.565, "feet"),
  12014. name: "Hand",
  12015. image: {
  12016. source: "./media/characters/nomaxice/hand.svg"
  12017. }
  12018. },
  12019. foot: {
  12020. height: math.unit(1, "feet"),
  12021. name: "Foot",
  12022. image: {
  12023. source: "./media/characters/nomaxice/foot.svg"
  12024. }
  12025. },
  12026. },
  12027. [
  12028. {
  12029. name: "Micro",
  12030. height: math.unit(8, "cm")
  12031. },
  12032. {
  12033. name: "Norm",
  12034. height: math.unit(1.82, "m")
  12035. },
  12036. {
  12037. name: "Norm+",
  12038. height: math.unit(8.8, "feet"),
  12039. default: true
  12040. },
  12041. {
  12042. name: "Big",
  12043. height: math.unit(8, "meters")
  12044. },
  12045. {
  12046. name: "Macro",
  12047. height: math.unit(18, "meters")
  12048. },
  12049. {
  12050. name: "Macro+",
  12051. height: math.unit(88, "meters")
  12052. },
  12053. ]
  12054. ))
  12055. characterMakers.push(() => makeCharacter(
  12056. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12057. {
  12058. front: {
  12059. height: math.unit(12, "feet"),
  12060. weight: math.unit(1.5, "tons"),
  12061. name: "Front",
  12062. image: {
  12063. source: "./media/characters/dydros/front.svg",
  12064. extra: 863 / 800,
  12065. bottom: 0.015
  12066. }
  12067. },
  12068. back: {
  12069. height: math.unit(12, "feet"),
  12070. weight: math.unit(1.5, "tons"),
  12071. name: "Back",
  12072. image: {
  12073. source: "./media/characters/dydros/back.svg",
  12074. extra: 900 / 843,
  12075. bottom: 0.005
  12076. }
  12077. },
  12078. },
  12079. [
  12080. {
  12081. name: "Normal",
  12082. height: math.unit(12, "feet"),
  12083. default: true
  12084. },
  12085. ]
  12086. ))
  12087. characterMakers.push(() => makeCharacter(
  12088. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12089. {
  12090. front: {
  12091. height: math.unit(6, "feet"),
  12092. weight: math.unit(100, "kg"),
  12093. name: "Front",
  12094. image: {
  12095. source: "./media/characters/riggi/front.svg",
  12096. extra: 5787 / 5303
  12097. }
  12098. },
  12099. hyper: {
  12100. height: math.unit(6 * 5 / 3, "feet"),
  12101. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12102. name: "Hyper",
  12103. image: {
  12104. source: "./media/characters/riggi/hyper.svg",
  12105. extra: 3595 / 3485
  12106. }
  12107. },
  12108. },
  12109. [
  12110. {
  12111. name: "Small Macro",
  12112. height: math.unit(50, "feet")
  12113. },
  12114. {
  12115. name: "Default",
  12116. height: math.unit(200, "feet"),
  12117. default: true
  12118. },
  12119. {
  12120. name: "Loom",
  12121. height: math.unit(10000, "feet")
  12122. },
  12123. {
  12124. name: "Cruising Altitude",
  12125. height: math.unit(30000, "feet")
  12126. },
  12127. {
  12128. name: "Megamacro",
  12129. height: math.unit(100, "miles")
  12130. },
  12131. {
  12132. name: "Continent Sized",
  12133. height: math.unit(2800, "miles")
  12134. },
  12135. {
  12136. name: "Earth Sized",
  12137. height: math.unit(8000, "miles")
  12138. },
  12139. ]
  12140. ))
  12141. characterMakers.push(() => makeCharacter(
  12142. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12143. {
  12144. front: {
  12145. height: math.unit(6, "feet"),
  12146. weight: math.unit(250, "lb"),
  12147. name: "Front",
  12148. image: {
  12149. source: "./media/characters/alexi/front.svg",
  12150. extra: 3483 / 3291,
  12151. bottom: 0.04
  12152. }
  12153. },
  12154. back: {
  12155. height: math.unit(6, "feet"),
  12156. weight: math.unit(250, "lb"),
  12157. name: "Back",
  12158. image: {
  12159. source: "./media/characters/alexi/back.svg",
  12160. extra: 3533 / 3356,
  12161. bottom: 0.021
  12162. }
  12163. },
  12164. frontTransforming: {
  12165. height: math.unit(8.58, "feet"),
  12166. weight: math.unit(1300, "lb"),
  12167. name: "Transforming",
  12168. image: {
  12169. source: "./media/characters/alexi/front-transforming.svg",
  12170. extra: 437 / 409,
  12171. bottom: 19 / 458.66
  12172. }
  12173. },
  12174. frontTransformed: {
  12175. height: math.unit(12.5, "feet"),
  12176. weight: math.unit(4000, "lb"),
  12177. name: "Transformed",
  12178. image: {
  12179. source: "./media/characters/alexi/front-transformed.svg",
  12180. extra: 639 / 614,
  12181. bottom: 30.55 / 671
  12182. }
  12183. },
  12184. },
  12185. [
  12186. {
  12187. name: "Normal",
  12188. height: math.unit(14, "feet"),
  12189. default: true
  12190. },
  12191. {
  12192. name: "Minimacro",
  12193. height: math.unit(30, "meters")
  12194. },
  12195. {
  12196. name: "Macro",
  12197. height: math.unit(500, "meters")
  12198. },
  12199. {
  12200. name: "Megamacro",
  12201. height: math.unit(9000, "km")
  12202. },
  12203. {
  12204. name: "Teramacro",
  12205. height: math.unit(384000, "km")
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(6, "feet"),
  12214. weight: math.unit(150, "lb"),
  12215. name: "Front",
  12216. image: {
  12217. source: "./media/characters/kayroo/front.svg",
  12218. extra: 1153 / 1038,
  12219. bottom: 0.06
  12220. }
  12221. },
  12222. foot: {
  12223. height: math.unit(6, "feet"),
  12224. weight: math.unit(150, "lb"),
  12225. name: "Foot",
  12226. image: {
  12227. source: "./media/characters/kayroo/foot.svg"
  12228. }
  12229. },
  12230. },
  12231. [
  12232. {
  12233. name: "Normal",
  12234. height: math.unit(8, "feet"),
  12235. default: true
  12236. },
  12237. {
  12238. name: "Minimacro",
  12239. height: math.unit(250, "feet")
  12240. },
  12241. {
  12242. name: "Macro",
  12243. height: math.unit(2800, "feet")
  12244. },
  12245. {
  12246. name: "Megamacro",
  12247. height: math.unit(5200, "feet")
  12248. },
  12249. {
  12250. name: "Gigamacro",
  12251. height: math.unit(27000, "feet")
  12252. },
  12253. {
  12254. name: "Omega",
  12255. height: math.unit(45000, "feet")
  12256. },
  12257. ]
  12258. ))
  12259. characterMakers.push(() => makeCharacter(
  12260. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12261. {
  12262. front: {
  12263. height: math.unit(18, "feet"),
  12264. weight: math.unit(5800, "lb"),
  12265. name: "Front",
  12266. image: {
  12267. source: "./media/characters/rhys/front.svg",
  12268. extra: 3386 / 3090,
  12269. bottom: 0.07
  12270. }
  12271. },
  12272. },
  12273. [
  12274. {
  12275. name: "Normal",
  12276. height: math.unit(18, "feet"),
  12277. default: true
  12278. },
  12279. {
  12280. name: "Working Size",
  12281. height: math.unit(200, "feet")
  12282. },
  12283. {
  12284. name: "Demolition Size",
  12285. height: math.unit(2000, "feet")
  12286. },
  12287. {
  12288. name: "Maximum Licensed Size",
  12289. height: math.unit(5, "miles")
  12290. },
  12291. {
  12292. name: "Maximum Observed Size",
  12293. height: math.unit(10, "yottameters")
  12294. },
  12295. ]
  12296. ))
  12297. characterMakers.push(() => makeCharacter(
  12298. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12299. {
  12300. front: {
  12301. height: math.unit(6, "feet"),
  12302. weight: math.unit(250, "lb"),
  12303. name: "Front",
  12304. image: {
  12305. source: "./media/characters/toto/front.svg",
  12306. extra: 527 / 479,
  12307. bottom: 0.05
  12308. }
  12309. },
  12310. },
  12311. [
  12312. {
  12313. name: "Micro",
  12314. height: math.unit(3, "feet")
  12315. },
  12316. {
  12317. name: "Normal",
  12318. height: math.unit(10, "feet")
  12319. },
  12320. {
  12321. name: "Macro",
  12322. height: math.unit(150, "feet"),
  12323. default: true
  12324. },
  12325. {
  12326. name: "Megamacro",
  12327. height: math.unit(1200, "feet")
  12328. },
  12329. ]
  12330. ))
  12331. characterMakers.push(() => makeCharacter(
  12332. { name: "King", species: ["lion"], tags: ["anthro"] },
  12333. {
  12334. back: {
  12335. height: math.unit(6, "feet"),
  12336. weight: math.unit(150, "lb"),
  12337. name: "Back",
  12338. image: {
  12339. source: "./media/characters/king/back.svg"
  12340. }
  12341. },
  12342. },
  12343. [
  12344. {
  12345. name: "Micro",
  12346. height: math.unit(2, "inches")
  12347. },
  12348. {
  12349. name: "Normal",
  12350. height: math.unit(8, "feet")
  12351. },
  12352. {
  12353. name: "Macro",
  12354. height: math.unit(200, "feet"),
  12355. default: true
  12356. },
  12357. {
  12358. name: "Megamacro",
  12359. height: math.unit(50, "miles")
  12360. },
  12361. ]
  12362. ))
  12363. characterMakers.push(() => makeCharacter(
  12364. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12365. {
  12366. front: {
  12367. height: math.unit(11, "feet"),
  12368. weight: math.unit(1400, "lb"),
  12369. name: "Front",
  12370. image: {
  12371. source: "./media/characters/cordite/front.svg",
  12372. extra: 1919/1827,
  12373. bottom: 40/1959
  12374. }
  12375. },
  12376. side: {
  12377. height: math.unit(11, "feet"),
  12378. weight: math.unit(1400, "lb"),
  12379. name: "Side",
  12380. image: {
  12381. source: "./media/characters/cordite/side.svg",
  12382. extra: 1908/1793,
  12383. bottom: 38/1946
  12384. }
  12385. },
  12386. back: {
  12387. height: math.unit(11, "feet"),
  12388. weight: math.unit(1400, "lb"),
  12389. name: "Back",
  12390. image: {
  12391. source: "./media/characters/cordite/back.svg",
  12392. extra: 1938/1837,
  12393. bottom: 10/1948
  12394. }
  12395. },
  12396. feral: {
  12397. height: math.unit(2, "feet"),
  12398. weight: math.unit(90, "lb"),
  12399. name: "Feral",
  12400. image: {
  12401. source: "./media/characters/cordite/feral.svg",
  12402. extra: 1260 / 755,
  12403. bottom: 0.05
  12404. }
  12405. },
  12406. },
  12407. [
  12408. {
  12409. name: "Normal",
  12410. height: math.unit(11, "feet"),
  12411. default: true
  12412. },
  12413. ]
  12414. ))
  12415. characterMakers.push(() => makeCharacter(
  12416. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12417. {
  12418. front: {
  12419. height: math.unit(6, "feet"),
  12420. weight: math.unit(150, "lb"),
  12421. name: "Front",
  12422. image: {
  12423. source: "./media/characters/pianostrong/front.svg",
  12424. extra: 6577 / 6254,
  12425. bottom: 0.02
  12426. }
  12427. },
  12428. side: {
  12429. height: math.unit(6, "feet"),
  12430. weight: math.unit(150, "lb"),
  12431. name: "Side",
  12432. image: {
  12433. source: "./media/characters/pianostrong/side.svg",
  12434. extra: 6106 / 5730
  12435. }
  12436. },
  12437. back: {
  12438. height: math.unit(6, "feet"),
  12439. weight: math.unit(150, "lb"),
  12440. name: "Back",
  12441. image: {
  12442. source: "./media/characters/pianostrong/back.svg",
  12443. extra: 6085 / 5733,
  12444. bottom: 0.01
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Macro",
  12451. height: math.unit(100, "feet")
  12452. },
  12453. {
  12454. name: "Macro+",
  12455. height: math.unit(300, "feet"),
  12456. default: true
  12457. },
  12458. {
  12459. name: "Macro++",
  12460. height: math.unit(1000, "feet")
  12461. },
  12462. ]
  12463. ))
  12464. characterMakers.push(() => makeCharacter(
  12465. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12466. {
  12467. front: {
  12468. height: math.unit(6, "feet"),
  12469. weight: math.unit(150, "lb"),
  12470. name: "Front",
  12471. image: {
  12472. source: "./media/characters/kona/front.svg",
  12473. extra: 2960 / 2629,
  12474. bottom: 0.005
  12475. }
  12476. },
  12477. },
  12478. [
  12479. {
  12480. name: "Normal",
  12481. height: math.unit(11 + 8 / 12, "feet")
  12482. },
  12483. {
  12484. name: "Macro",
  12485. height: math.unit(850, "feet"),
  12486. default: true
  12487. },
  12488. {
  12489. name: "Macro+",
  12490. height: math.unit(1.5, "km"),
  12491. default: true
  12492. },
  12493. {
  12494. name: "Megamacro",
  12495. height: math.unit(80, "miles")
  12496. },
  12497. {
  12498. name: "Gigamacro",
  12499. height: math.unit(3500, "miles")
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12505. {
  12506. side: {
  12507. height: math.unit(1.9, "meters"),
  12508. weight: math.unit(326, "kg"),
  12509. name: "Side",
  12510. image: {
  12511. source: "./media/characters/levi/side.svg",
  12512. extra: 1704 / 1334,
  12513. bottom: 0.02
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Normal",
  12520. height: math.unit(1.9, "meters"),
  12521. default: true
  12522. },
  12523. {
  12524. name: "Macro",
  12525. height: math.unit(20, "meters")
  12526. },
  12527. {
  12528. name: "Macro+",
  12529. height: math.unit(200, "meters")
  12530. },
  12531. {
  12532. name: "Megamacro",
  12533. height: math.unit(2, "km")
  12534. },
  12535. {
  12536. name: "Megamacro+",
  12537. height: math.unit(20, "km")
  12538. },
  12539. {
  12540. name: "Gigamacro",
  12541. height: math.unit(2500, "km")
  12542. },
  12543. {
  12544. name: "Gigamacro+",
  12545. height: math.unit(120000, "km")
  12546. },
  12547. {
  12548. name: "Teramacro",
  12549. height: math.unit(7.77e6, "km")
  12550. },
  12551. ]
  12552. ))
  12553. characterMakers.push(() => makeCharacter(
  12554. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12555. {
  12556. front: {
  12557. height: math.unit(6 + 4/12, "feet"),
  12558. weight: math.unit(190, "lb"),
  12559. name: "Front",
  12560. image: {
  12561. source: "./media/characters/bmc/front.svg",
  12562. extra: 1626/1472,
  12563. bottom: 79/1705
  12564. }
  12565. },
  12566. back: {
  12567. height: math.unit(6 + 4/12, "feet"),
  12568. weight: math.unit(190, "lb"),
  12569. name: "Back",
  12570. image: {
  12571. source: "./media/characters/bmc/back.svg",
  12572. extra: 1640/1479,
  12573. bottom: 45/1685
  12574. }
  12575. },
  12576. frontArmor: {
  12577. height: math.unit(6 + 4/12, "feet"),
  12578. weight: math.unit(190, "lb"),
  12579. name: "Front-armor",
  12580. image: {
  12581. source: "./media/characters/bmc/front-armor.svg",
  12582. extra: 1538/1468,
  12583. bottom: 79/1617
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Human-sized",
  12590. height: math.unit(6 + 4 / 12, "feet")
  12591. },
  12592. {
  12593. name: "Interactive Size",
  12594. height: math.unit(25, "feet")
  12595. },
  12596. {
  12597. name: "Small",
  12598. height: math.unit(250, "feet")
  12599. },
  12600. {
  12601. name: "Normal",
  12602. height: math.unit(1250, "feet"),
  12603. default: true
  12604. },
  12605. {
  12606. name: "Good Day",
  12607. height: math.unit(88, "miles")
  12608. },
  12609. {
  12610. name: "Largest Measured Size",
  12611. height: math.unit(105.960, "galaxies")
  12612. },
  12613. ]
  12614. ))
  12615. characterMakers.push(() => makeCharacter(
  12616. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12617. {
  12618. front: {
  12619. height: math.unit(20, "feet"),
  12620. weight: math.unit(2016, "kg"),
  12621. name: "Front",
  12622. image: {
  12623. source: "./media/characters/sven-the-kaiju/front.svg",
  12624. extra: 1277/1250,
  12625. bottom: 35/1312
  12626. }
  12627. },
  12628. mouth: {
  12629. height: math.unit(1.85, "feet"),
  12630. name: "Mouth",
  12631. image: {
  12632. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12633. }
  12634. },
  12635. },
  12636. [
  12637. {
  12638. name: "Fairy",
  12639. height: math.unit(6, "inches")
  12640. },
  12641. {
  12642. name: "Normal",
  12643. height: math.unit(20, "feet"),
  12644. default: true
  12645. },
  12646. {
  12647. name: "Rampage",
  12648. height: math.unit(200, "feet")
  12649. },
  12650. {
  12651. name: "Archfey Forest Guardian",
  12652. height: math.unit(1, "mile")
  12653. },
  12654. ]
  12655. ))
  12656. characterMakers.push(() => makeCharacter(
  12657. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12658. {
  12659. front: {
  12660. height: math.unit(4, "meters"),
  12661. weight: math.unit(2, "tons"),
  12662. name: "Front",
  12663. image: {
  12664. source: "./media/characters/marik/front.svg",
  12665. extra: 1057 / 1003,
  12666. bottom: 0.08
  12667. }
  12668. },
  12669. },
  12670. [
  12671. {
  12672. name: "Normal",
  12673. height: math.unit(4, "meters"),
  12674. default: true
  12675. },
  12676. {
  12677. name: "Macro",
  12678. height: math.unit(20, "meters")
  12679. },
  12680. {
  12681. name: "Megamacro",
  12682. height: math.unit(50, "km")
  12683. },
  12684. {
  12685. name: "Gigamacro",
  12686. height: math.unit(100, "km")
  12687. },
  12688. {
  12689. name: "Alpha Macro",
  12690. height: math.unit(7.88e7, "yottameters")
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12696. {
  12697. front: {
  12698. height: math.unit(6, "feet"),
  12699. weight: math.unit(110, "lb"),
  12700. name: "Front",
  12701. image: {
  12702. source: "./media/characters/mel/front.svg",
  12703. extra: 736 / 617,
  12704. bottom: 0.017
  12705. }
  12706. },
  12707. },
  12708. [
  12709. {
  12710. name: "Pico",
  12711. height: math.unit(3, "pm")
  12712. },
  12713. {
  12714. name: "Nano",
  12715. height: math.unit(3, "nm")
  12716. },
  12717. {
  12718. name: "Micro",
  12719. height: math.unit(0.3, "mm"),
  12720. default: true
  12721. },
  12722. {
  12723. name: "Micro+",
  12724. height: math.unit(3, "mm")
  12725. },
  12726. {
  12727. name: "Normal",
  12728. height: math.unit(5 + 10.5 / 12, "feet")
  12729. },
  12730. ]
  12731. ))
  12732. characterMakers.push(() => makeCharacter(
  12733. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12734. {
  12735. kaiju: {
  12736. height: math.unit(1.75, "meters"),
  12737. weight: math.unit(55, "kg"),
  12738. name: "Kaiju",
  12739. image: {
  12740. source: "./media/characters/lykonous/kaiju.svg",
  12741. extra: 1055 / 946,
  12742. bottom: 0.135
  12743. }
  12744. },
  12745. },
  12746. [
  12747. {
  12748. name: "Normal",
  12749. height: math.unit(2.5, "meters"),
  12750. default: true
  12751. },
  12752. {
  12753. name: "Kaiju Dragon",
  12754. height: math.unit(60, "meters")
  12755. },
  12756. {
  12757. name: "Mega Kaiju",
  12758. height: math.unit(120, "km")
  12759. },
  12760. {
  12761. name: "Giga Kaiju",
  12762. height: math.unit(200, "megameters")
  12763. },
  12764. {
  12765. name: "Terra Kaiju",
  12766. height: math.unit(400, "gigameters")
  12767. },
  12768. {
  12769. name: "Kaiju Dragon God",
  12770. height: math.unit(13000, "exaparsecs")
  12771. },
  12772. ]
  12773. ))
  12774. characterMakers.push(() => makeCharacter(
  12775. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12776. {
  12777. front: {
  12778. height: math.unit(6, "feet"),
  12779. weight: math.unit(150, "lb"),
  12780. name: "Front",
  12781. image: {
  12782. source: "./media/characters/blü/front.svg",
  12783. extra: 1883 / 1564,
  12784. bottom: 0.031
  12785. }
  12786. },
  12787. },
  12788. [
  12789. {
  12790. name: "Normal",
  12791. height: math.unit(13, "feet"),
  12792. default: true
  12793. },
  12794. {
  12795. name: "Big Boi",
  12796. height: math.unit(150, "meters")
  12797. },
  12798. {
  12799. name: "Mini Stomper",
  12800. height: math.unit(300, "meters")
  12801. },
  12802. {
  12803. name: "Macro",
  12804. height: math.unit(1000, "meters")
  12805. },
  12806. {
  12807. name: "Megamacro",
  12808. height: math.unit(11000, "meters")
  12809. },
  12810. {
  12811. name: "Gigamacro",
  12812. height: math.unit(11000, "km")
  12813. },
  12814. {
  12815. name: "Teramacro",
  12816. height: math.unit(420000, "km")
  12817. },
  12818. {
  12819. name: "Examacro",
  12820. height: math.unit(120, "parsecs")
  12821. },
  12822. {
  12823. name: "God Tho",
  12824. height: math.unit(98000000000, "parsecs")
  12825. },
  12826. ]
  12827. ))
  12828. characterMakers.push(() => makeCharacter(
  12829. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12830. {
  12831. taurFront: {
  12832. height: math.unit(6, "feet"),
  12833. weight: math.unit(200, "lb"),
  12834. name: "Taur (Front)",
  12835. image: {
  12836. source: "./media/characters/scales/taur-front.svg",
  12837. extra: 1,
  12838. bottom: 0.05
  12839. }
  12840. },
  12841. taurBack: {
  12842. height: math.unit(6, "feet"),
  12843. weight: math.unit(200, "lb"),
  12844. name: "Taur (Back)",
  12845. image: {
  12846. source: "./media/characters/scales/taur-back.svg",
  12847. extra: 1,
  12848. bottom: 0.08
  12849. }
  12850. },
  12851. anthro: {
  12852. height: math.unit(6 * 7 / 12, "feet"),
  12853. weight: math.unit(100, "lb"),
  12854. name: "Anthro",
  12855. image: {
  12856. source: "./media/characters/scales/anthro.svg",
  12857. extra: 1,
  12858. bottom: 0.06
  12859. }
  12860. },
  12861. },
  12862. [
  12863. {
  12864. name: "Normal",
  12865. height: math.unit(12, "feet"),
  12866. default: true
  12867. },
  12868. ]
  12869. ))
  12870. characterMakers.push(() => makeCharacter(
  12871. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12872. {
  12873. front: {
  12874. height: math.unit(6, "feet"),
  12875. weight: math.unit(150, "lb"),
  12876. name: "Front",
  12877. image: {
  12878. source: "./media/characters/koragos/front.svg",
  12879. extra: 841 / 794,
  12880. bottom: 0.035
  12881. }
  12882. },
  12883. back: {
  12884. height: math.unit(6, "feet"),
  12885. weight: math.unit(150, "lb"),
  12886. name: "Back",
  12887. image: {
  12888. source: "./media/characters/koragos/back.svg",
  12889. extra: 841 / 810,
  12890. bottom: 0.022
  12891. }
  12892. },
  12893. },
  12894. [
  12895. {
  12896. name: "Normal",
  12897. height: math.unit(6 + 11 / 12, "feet"),
  12898. default: true
  12899. },
  12900. {
  12901. name: "Macro",
  12902. height: math.unit(490, "feet")
  12903. },
  12904. {
  12905. name: "Megamacro",
  12906. height: math.unit(10, "miles")
  12907. },
  12908. {
  12909. name: "Gigamacro",
  12910. height: math.unit(50, "miles")
  12911. },
  12912. ]
  12913. ))
  12914. characterMakers.push(() => makeCharacter(
  12915. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12916. {
  12917. front: {
  12918. height: math.unit(6, "feet"),
  12919. weight: math.unit(250, "lb"),
  12920. name: "Front",
  12921. image: {
  12922. source: "./media/characters/xylrem/front.svg",
  12923. extra: 3323 / 3050,
  12924. bottom: 0.065
  12925. }
  12926. },
  12927. },
  12928. [
  12929. {
  12930. name: "Micro",
  12931. height: math.unit(4, "feet")
  12932. },
  12933. {
  12934. name: "Normal",
  12935. height: math.unit(16, "feet"),
  12936. default: true
  12937. },
  12938. {
  12939. name: "Macro",
  12940. height: math.unit(2720, "feet")
  12941. },
  12942. {
  12943. name: "Megamacro",
  12944. height: math.unit(25000, "miles")
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12950. {
  12951. front: {
  12952. height: math.unit(8, "feet"),
  12953. weight: math.unit(250, "kg"),
  12954. name: "Front",
  12955. image: {
  12956. source: "./media/characters/ikideru/front.svg",
  12957. extra: 930 / 870,
  12958. bottom: 0.087
  12959. }
  12960. },
  12961. back: {
  12962. height: math.unit(8, "feet"),
  12963. weight: math.unit(250, "kg"),
  12964. name: "Back",
  12965. image: {
  12966. source: "./media/characters/ikideru/back.svg",
  12967. extra: 919 / 852,
  12968. bottom: 0.055
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Rare",
  12975. height: math.unit(8, "feet"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Playful Loom",
  12980. height: math.unit(80, "feet")
  12981. },
  12982. {
  12983. name: "City Leaner",
  12984. height: math.unit(230, "feet")
  12985. },
  12986. {
  12987. name: "Megamacro",
  12988. height: math.unit(2500, "feet")
  12989. },
  12990. {
  12991. name: "Gigamacro",
  12992. height: math.unit(26400, "feet")
  12993. },
  12994. {
  12995. name: "Tectonic Shifter",
  12996. height: math.unit(1.7, "megameters")
  12997. },
  12998. {
  12999. name: "Planet Carer",
  13000. height: math.unit(21, "megameters")
  13001. },
  13002. {
  13003. name: "God",
  13004. height: math.unit(11157.22, "parsecs")
  13005. },
  13006. ]
  13007. ))
  13008. characterMakers.push(() => makeCharacter(
  13009. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13010. {
  13011. front: {
  13012. height: math.unit(6, "feet"),
  13013. weight: math.unit(120, "lb"),
  13014. name: "Front",
  13015. image: {
  13016. source: "./media/characters/neo/front.svg"
  13017. }
  13018. },
  13019. },
  13020. [
  13021. {
  13022. name: "Micro",
  13023. height: math.unit(2, "inches"),
  13024. default: true
  13025. },
  13026. {
  13027. name: "Human Size",
  13028. height: math.unit(5 + 8 / 12, "feet")
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13034. {
  13035. front: {
  13036. height: math.unit(13 + 10 / 12, "feet"),
  13037. weight: math.unit(5320, "lb"),
  13038. name: "Front",
  13039. image: {
  13040. source: "./media/characters/chauncey-chantz/front.svg",
  13041. extra: 1587 / 1435,
  13042. bottom: 0.02
  13043. }
  13044. },
  13045. },
  13046. [
  13047. {
  13048. name: "Normal",
  13049. height: math.unit(13 + 10 / 12, "feet"),
  13050. default: true
  13051. },
  13052. {
  13053. name: "Macro",
  13054. height: math.unit(45, "feet")
  13055. },
  13056. {
  13057. name: "Megamacro",
  13058. height: math.unit(250, "miles")
  13059. },
  13060. {
  13061. name: "Planetary",
  13062. height: math.unit(10000, "miles")
  13063. },
  13064. {
  13065. name: "Galactic",
  13066. height: math.unit(40000, "parsecs")
  13067. },
  13068. {
  13069. name: "Universal",
  13070. height: math.unit(1, "yottameter")
  13071. },
  13072. ]
  13073. ))
  13074. characterMakers.push(() => makeCharacter(
  13075. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13076. {
  13077. front: {
  13078. height: math.unit(6, "feet"),
  13079. weight: math.unit(150, "lb"),
  13080. name: "Front",
  13081. image: {
  13082. source: "./media/characters/epifox/front.svg",
  13083. extra: 1,
  13084. bottom: 0.075
  13085. }
  13086. },
  13087. },
  13088. [
  13089. {
  13090. name: "Micro",
  13091. height: math.unit(6, "inches")
  13092. },
  13093. {
  13094. name: "Normal",
  13095. height: math.unit(12, "feet"),
  13096. default: true
  13097. },
  13098. {
  13099. name: "Macro",
  13100. height: math.unit(3810, "feet")
  13101. },
  13102. {
  13103. name: "Megamacro",
  13104. height: math.unit(500, "miles")
  13105. },
  13106. ]
  13107. ))
  13108. characterMakers.push(() => makeCharacter(
  13109. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13110. {
  13111. front: {
  13112. height: math.unit(1.8796, "m"),
  13113. weight: math.unit(230, "lb"),
  13114. name: "Front",
  13115. image: {
  13116. source: "./media/characters/colin-t/front.svg",
  13117. extra: 1272 / 1193,
  13118. bottom: 0.07
  13119. }
  13120. },
  13121. },
  13122. [
  13123. {
  13124. name: "Micro",
  13125. height: math.unit(0.571, "meters")
  13126. },
  13127. {
  13128. name: "Normal",
  13129. height: math.unit(1.8796, "meters"),
  13130. default: true
  13131. },
  13132. {
  13133. name: "Tall",
  13134. height: math.unit(4, "meters")
  13135. },
  13136. {
  13137. name: "Macro",
  13138. height: math.unit(67.241, "meters")
  13139. },
  13140. {
  13141. name: "Megamacro",
  13142. height: math.unit(371.856, "meters")
  13143. },
  13144. {
  13145. name: "Planetary",
  13146. height: math.unit(12631.5689, "km")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13152. {
  13153. front: {
  13154. height: math.unit(1.85, "meters"),
  13155. weight: math.unit(80, "kg"),
  13156. name: "Front",
  13157. image: {
  13158. source: "./media/characters/matvei/front.svg",
  13159. extra: 456/447,
  13160. bottom: 8/464
  13161. }
  13162. },
  13163. back: {
  13164. height: math.unit(1.85, "meters"),
  13165. weight: math.unit(80, "kg"),
  13166. name: "Back",
  13167. image: {
  13168. source: "./media/characters/matvei/back.svg",
  13169. extra: 434/427,
  13170. bottom: 11/445
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Normal",
  13177. height: math.unit(1.85, "meters"),
  13178. default: true
  13179. },
  13180. ]
  13181. ))
  13182. characterMakers.push(() => makeCharacter(
  13183. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13184. {
  13185. front: {
  13186. height: math.unit(5 + 9 / 12, "feet"),
  13187. weight: math.unit(70, "lb"),
  13188. name: "Front",
  13189. image: {
  13190. source: "./media/characters/quincy/front.svg",
  13191. extra: 3041 / 2751
  13192. }
  13193. },
  13194. back: {
  13195. height: math.unit(5 + 9 / 12, "feet"),
  13196. weight: math.unit(70, "lb"),
  13197. name: "Back",
  13198. image: {
  13199. source: "./media/characters/quincy/back.svg",
  13200. extra: 3041 / 2751
  13201. }
  13202. },
  13203. flying: {
  13204. height: math.unit(5 + 4 / 12, "feet"),
  13205. weight: math.unit(70, "lb"),
  13206. name: "Flying",
  13207. image: {
  13208. source: "./media/characters/quincy/flying.svg",
  13209. extra: 1044 / 930
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Micro",
  13216. height: math.unit(3, "cm")
  13217. },
  13218. {
  13219. name: "Normal",
  13220. height: math.unit(5 + 9 / 12, "feet")
  13221. },
  13222. {
  13223. name: "Macro",
  13224. height: math.unit(200, "meters"),
  13225. default: true
  13226. },
  13227. {
  13228. name: "Megamacro",
  13229. height: math.unit(1000, "meters")
  13230. },
  13231. ]
  13232. ))
  13233. characterMakers.push(() => makeCharacter(
  13234. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13235. {
  13236. front: {
  13237. height: math.unit(3 + 11/12, "feet"),
  13238. weight: math.unit(50, "lb"),
  13239. name: "Front",
  13240. image: {
  13241. source: "./media/characters/vanrel/front.svg",
  13242. extra: 1104/949,
  13243. bottom: 52/1156
  13244. }
  13245. },
  13246. back: {
  13247. height: math.unit(3 + 11/12, "feet"),
  13248. weight: math.unit(50, "lb"),
  13249. name: "Back",
  13250. image: {
  13251. source: "./media/characters/vanrel/back.svg",
  13252. extra: 1119/976,
  13253. bottom: 37/1156
  13254. }
  13255. },
  13256. tome: {
  13257. height: math.unit(1.35, "feet"),
  13258. weight: math.unit(10, "lb"),
  13259. name: "Vanrel's Tome",
  13260. rename: true,
  13261. image: {
  13262. source: "./media/characters/vanrel/tome.svg"
  13263. }
  13264. },
  13265. beans: {
  13266. height: math.unit(0.89, "feet"),
  13267. name: "Beans",
  13268. image: {
  13269. source: "./media/characters/vanrel/beans.svg"
  13270. }
  13271. },
  13272. },
  13273. [
  13274. {
  13275. name: "Normal",
  13276. height: math.unit(3 + 11/12, "feet"),
  13277. default: true
  13278. },
  13279. ]
  13280. ))
  13281. characterMakers.push(() => makeCharacter(
  13282. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13283. {
  13284. front: {
  13285. height: math.unit(7 + 5 / 12, "feet"),
  13286. name: "Front",
  13287. image: {
  13288. source: "./media/characters/kuiper-vanrel/front.svg",
  13289. extra: 1219/1169,
  13290. bottom: 69/1288
  13291. }
  13292. },
  13293. back: {
  13294. height: math.unit(7 + 5 / 12, "feet"),
  13295. name: "Back",
  13296. image: {
  13297. source: "./media/characters/kuiper-vanrel/back.svg",
  13298. extra: 1236/1193,
  13299. bottom: 27/1263
  13300. }
  13301. },
  13302. foot: {
  13303. height: math.unit(0.55, "meters"),
  13304. name: "Foot",
  13305. image: {
  13306. source: "./media/characters/kuiper-vanrel/foot.svg",
  13307. }
  13308. },
  13309. battle: {
  13310. height: math.unit(6.824, "feet"),
  13311. name: "Battle",
  13312. image: {
  13313. source: "./media/characters/kuiper-vanrel/battle.svg",
  13314. extra: 1466 / 1327,
  13315. bottom: 29 / 1492.5
  13316. }
  13317. },
  13318. meerkui: {
  13319. height: math.unit(18, "inches"),
  13320. name: "Meerkui",
  13321. image: {
  13322. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13323. extra: 1354/1289,
  13324. bottom: 69/1423
  13325. }
  13326. },
  13327. },
  13328. [
  13329. {
  13330. name: "Normal",
  13331. height: math.unit(7 + 5 / 12, "feet"),
  13332. default: true
  13333. },
  13334. ]
  13335. ))
  13336. characterMakers.push(() => makeCharacter(
  13337. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13338. {
  13339. front: {
  13340. height: math.unit(8 + 5 / 12, "feet"),
  13341. name: "Front",
  13342. image: {
  13343. source: "./media/characters/keset-vanrel/front.svg",
  13344. extra: 1231/1148,
  13345. bottom: 82/1313
  13346. }
  13347. },
  13348. back: {
  13349. height: math.unit(8 + 5 / 12, "feet"),
  13350. name: "Back",
  13351. image: {
  13352. source: "./media/characters/keset-vanrel/back.svg",
  13353. extra: 1240/1174,
  13354. bottom: 33/1273
  13355. }
  13356. },
  13357. hand: {
  13358. height: math.unit(0.6, "meters"),
  13359. name: "Hand",
  13360. image: {
  13361. source: "./media/characters/keset-vanrel/hand.svg"
  13362. }
  13363. },
  13364. foot: {
  13365. height: math.unit(0.94978, "meters"),
  13366. name: "Foot",
  13367. image: {
  13368. source: "./media/characters/keset-vanrel/foot.svg"
  13369. }
  13370. },
  13371. battle: {
  13372. height: math.unit(7.408, "feet"),
  13373. name: "Battle",
  13374. image: {
  13375. source: "./media/characters/keset-vanrel/battle.svg",
  13376. extra: 1890 / 1386,
  13377. bottom: 73.28 / 1970
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Normal",
  13384. height: math.unit(8 + 5 / 12, "feet"),
  13385. default: true
  13386. },
  13387. ]
  13388. ))
  13389. characterMakers.push(() => makeCharacter(
  13390. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13391. {
  13392. front: {
  13393. height: math.unit(6, "feet"),
  13394. weight: math.unit(150, "lb"),
  13395. name: "Front",
  13396. image: {
  13397. source: "./media/characters/neos/front.svg",
  13398. extra: 1696 / 992,
  13399. bottom: 0.14
  13400. }
  13401. },
  13402. },
  13403. [
  13404. {
  13405. name: "Normal",
  13406. height: math.unit(54, "cm"),
  13407. default: true
  13408. },
  13409. {
  13410. name: "Macro",
  13411. height: math.unit(100, "m")
  13412. },
  13413. {
  13414. name: "Megamacro",
  13415. height: math.unit(10, "km")
  13416. },
  13417. {
  13418. name: "Megamacro+",
  13419. height: math.unit(100, "km")
  13420. },
  13421. {
  13422. name: "Gigamacro",
  13423. height: math.unit(100, "Mm")
  13424. },
  13425. {
  13426. name: "Teramacro",
  13427. height: math.unit(100, "Gm")
  13428. },
  13429. {
  13430. name: "Examacro",
  13431. height: math.unit(100, "Em")
  13432. },
  13433. {
  13434. name: "Godly",
  13435. height: math.unit(10000, "Ym")
  13436. },
  13437. {
  13438. name: "Beyond Godly",
  13439. height: math.unit(25, "multiverses")
  13440. },
  13441. ]
  13442. ))
  13443. characterMakers.push(() => makeCharacter(
  13444. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13445. {
  13446. feminine: {
  13447. height: math.unit(5, "feet"),
  13448. weight: math.unit(100, "lb"),
  13449. name: "Feminine",
  13450. image: {
  13451. source: "./media/characters/sammy-mouse/feminine.svg",
  13452. extra: 2526 / 2425,
  13453. bottom: 0.123
  13454. }
  13455. },
  13456. masculine: {
  13457. height: math.unit(5, "feet"),
  13458. weight: math.unit(100, "lb"),
  13459. name: "Masculine",
  13460. image: {
  13461. source: "./media/characters/sammy-mouse/masculine.svg",
  13462. extra: 2526 / 2425,
  13463. bottom: 0.123
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "Micro",
  13470. height: math.unit(5, "inches")
  13471. },
  13472. {
  13473. name: "Normal",
  13474. height: math.unit(5, "feet"),
  13475. default: true
  13476. },
  13477. {
  13478. name: "Macro",
  13479. height: math.unit(60, "feet")
  13480. },
  13481. ]
  13482. ))
  13483. characterMakers.push(() => makeCharacter(
  13484. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13485. {
  13486. front: {
  13487. height: math.unit(4, "feet"),
  13488. weight: math.unit(50, "lb"),
  13489. name: "Front",
  13490. image: {
  13491. source: "./media/characters/kole/front.svg",
  13492. extra: 1423 / 1303,
  13493. bottom: 0.025
  13494. }
  13495. },
  13496. back: {
  13497. height: math.unit(4, "feet"),
  13498. weight: math.unit(50, "lb"),
  13499. name: "Back",
  13500. image: {
  13501. source: "./media/characters/kole/back.svg",
  13502. extra: 1426 / 1280,
  13503. bottom: 0.02
  13504. }
  13505. },
  13506. },
  13507. [
  13508. {
  13509. name: "Normal",
  13510. height: math.unit(4, "feet"),
  13511. default: true
  13512. },
  13513. ]
  13514. ))
  13515. characterMakers.push(() => makeCharacter(
  13516. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13517. {
  13518. front: {
  13519. height: math.unit(2.5, "feet"),
  13520. weight: math.unit(32, "lb"),
  13521. name: "Front",
  13522. image: {
  13523. source: "./media/characters/rufran/front.svg",
  13524. extra: 1313/885,
  13525. bottom: 94/1407
  13526. }
  13527. },
  13528. side: {
  13529. height: math.unit(2.5, "feet"),
  13530. weight: math.unit(32, "lb"),
  13531. name: "Side",
  13532. image: {
  13533. source: "./media/characters/rufran/side.svg",
  13534. extra: 1109/852,
  13535. bottom: 118/1227
  13536. }
  13537. },
  13538. back: {
  13539. height: math.unit(2.5, "feet"),
  13540. weight: math.unit(32, "lb"),
  13541. name: "Back",
  13542. image: {
  13543. source: "./media/characters/rufran/back.svg",
  13544. extra: 1280/878,
  13545. bottom: 131/1411
  13546. }
  13547. },
  13548. mouth: {
  13549. height: math.unit(1.13, "feet"),
  13550. name: "Mouth",
  13551. image: {
  13552. source: "./media/characters/rufran/mouth.svg"
  13553. }
  13554. },
  13555. foot: {
  13556. height: math.unit(1.33, "feet"),
  13557. name: "Foot",
  13558. image: {
  13559. source: "./media/characters/rufran/foot.svg"
  13560. }
  13561. },
  13562. koboldFront: {
  13563. height: math.unit(2 + 6 / 12, "feet"),
  13564. weight: math.unit(20, "lb"),
  13565. name: "Front (Kobold)",
  13566. image: {
  13567. source: "./media/characters/rufran/kobold-front.svg",
  13568. extra: 2041 / 1839,
  13569. bottom: 0.055
  13570. }
  13571. },
  13572. koboldBack: {
  13573. height: math.unit(2 + 6 / 12, "feet"),
  13574. weight: math.unit(20, "lb"),
  13575. name: "Back (Kobold)",
  13576. image: {
  13577. source: "./media/characters/rufran/kobold-back.svg",
  13578. extra: 2054 / 1839,
  13579. bottom: 0.01
  13580. }
  13581. },
  13582. koboldHand: {
  13583. height: math.unit(0.2166, "meters"),
  13584. name: "Hand (Kobold)",
  13585. image: {
  13586. source: "./media/characters/rufran/kobold-hand.svg"
  13587. }
  13588. },
  13589. koboldFoot: {
  13590. height: math.unit(0.185, "meters"),
  13591. name: "Foot (Kobold)",
  13592. image: {
  13593. source: "./media/characters/rufran/kobold-foot.svg"
  13594. }
  13595. },
  13596. },
  13597. [
  13598. {
  13599. name: "Micro",
  13600. height: math.unit(1, "inch")
  13601. },
  13602. {
  13603. name: "Normal",
  13604. height: math.unit(2 + 6 / 12, "feet"),
  13605. default: true
  13606. },
  13607. {
  13608. name: "Big",
  13609. height: math.unit(60, "feet")
  13610. },
  13611. {
  13612. name: "Macro",
  13613. height: math.unit(325, "feet")
  13614. },
  13615. ]
  13616. ))
  13617. characterMakers.push(() => makeCharacter(
  13618. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13619. {
  13620. front: {
  13621. height: math.unit(0.3, "meters"),
  13622. weight: math.unit(3.5, "kg"),
  13623. name: "Front",
  13624. image: {
  13625. source: "./media/characters/chip/front.svg",
  13626. extra: 748 / 674
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Micro",
  13633. height: math.unit(1, "inch"),
  13634. default: true
  13635. },
  13636. ]
  13637. ))
  13638. characterMakers.push(() => makeCharacter(
  13639. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13640. {
  13641. side: {
  13642. height: math.unit(2.3, "meters"),
  13643. weight: math.unit(3500, "lb"),
  13644. name: "Side",
  13645. image: {
  13646. source: "./media/characters/torvid/side.svg",
  13647. extra: 1972 / 722,
  13648. bottom: 0.035
  13649. }
  13650. },
  13651. },
  13652. [
  13653. {
  13654. name: "Normal",
  13655. height: math.unit(2.3, "meters"),
  13656. default: true
  13657. },
  13658. ]
  13659. ))
  13660. characterMakers.push(() => makeCharacter(
  13661. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13662. {
  13663. front: {
  13664. height: math.unit(2, "meters"),
  13665. weight: math.unit(150.5, "kg"),
  13666. name: "Front",
  13667. image: {
  13668. source: "./media/characters/susan/front.svg",
  13669. extra: 693 / 635,
  13670. bottom: 0.05
  13671. }
  13672. },
  13673. },
  13674. [
  13675. {
  13676. name: "Megamacro",
  13677. height: math.unit(505, "miles"),
  13678. default: true
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/raindrops/front.svg",
  13691. extra: 2655 / 2461,
  13692. bottom: 49 / 2705
  13693. }
  13694. },
  13695. back: {
  13696. height: math.unit(6, "feet"),
  13697. weight: math.unit(150, "lb"),
  13698. name: "Back",
  13699. image: {
  13700. source: "./media/characters/raindrops/back.svg",
  13701. extra: 2574 / 2400,
  13702. bottom: 65 / 2634
  13703. }
  13704. },
  13705. },
  13706. [
  13707. {
  13708. name: "Micro",
  13709. height: math.unit(6, "inches")
  13710. },
  13711. {
  13712. name: "Normal",
  13713. height: math.unit(6 + 2 / 12, "feet")
  13714. },
  13715. {
  13716. name: "Macro",
  13717. height: math.unit(131, "feet"),
  13718. default: true
  13719. },
  13720. {
  13721. name: "Megamacro",
  13722. height: math.unit(15, "miles")
  13723. },
  13724. {
  13725. name: "Gigamacro",
  13726. height: math.unit(4000, "miles")
  13727. },
  13728. {
  13729. name: "Teramacro",
  13730. height: math.unit(315000, "miles")
  13731. },
  13732. ]
  13733. ))
  13734. characterMakers.push(() => makeCharacter(
  13735. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13736. {
  13737. front: {
  13738. height: math.unit(2.794, "meters"),
  13739. weight: math.unit(325, "kg"),
  13740. name: "Front",
  13741. image: {
  13742. source: "./media/characters/tezwa/front.svg",
  13743. extra: 2083 / 1906,
  13744. bottom: 0.031
  13745. }
  13746. },
  13747. foot: {
  13748. height: math.unit(0.687, "meters"),
  13749. name: "Foot",
  13750. image: {
  13751. source: "./media/characters/tezwa/foot.svg"
  13752. }
  13753. },
  13754. },
  13755. [
  13756. {
  13757. name: "Normal",
  13758. height: math.unit(9 + 2 / 12, "feet"),
  13759. default: true
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13765. {
  13766. front: {
  13767. height: math.unit(58, "feet"),
  13768. weight: math.unit(89000, "lb"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/typhus/front.svg",
  13772. extra: 816 / 800,
  13773. bottom: 0.065
  13774. }
  13775. },
  13776. },
  13777. [
  13778. {
  13779. name: "Macro",
  13780. height: math.unit(58, "feet"),
  13781. default: true
  13782. },
  13783. ]
  13784. ))
  13785. characterMakers.push(() => makeCharacter(
  13786. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13787. {
  13788. front: {
  13789. height: math.unit(12, "feet"),
  13790. weight: math.unit(6, "tonnes"),
  13791. name: "Front",
  13792. image: {
  13793. source: "./media/characters/lyra-von-wulf/front.svg",
  13794. extra: 1,
  13795. bottom: 0.10
  13796. }
  13797. },
  13798. frontMecha: {
  13799. height: math.unit(12, "feet"),
  13800. weight: math.unit(12, "tonnes"),
  13801. name: "Front (Mecha)",
  13802. image: {
  13803. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13804. extra: 1,
  13805. bottom: 0.042
  13806. }
  13807. },
  13808. maw: {
  13809. height: math.unit(2.2, "feet"),
  13810. name: "Maw",
  13811. image: {
  13812. source: "./media/characters/lyra-von-wulf/maw.svg"
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Normal",
  13819. height: math.unit(12, "feet"),
  13820. default: true
  13821. },
  13822. {
  13823. name: "Classic",
  13824. height: math.unit(50, "feet")
  13825. },
  13826. {
  13827. name: "Macro",
  13828. height: math.unit(500, "feet")
  13829. },
  13830. {
  13831. name: "Megamacro",
  13832. height: math.unit(1, "mile")
  13833. },
  13834. {
  13835. name: "Gigamacro",
  13836. height: math.unit(400, "miles")
  13837. },
  13838. {
  13839. name: "Teramacro",
  13840. height: math.unit(22000, "miles")
  13841. },
  13842. {
  13843. name: "Solarmacro",
  13844. height: math.unit(8600000, "miles")
  13845. },
  13846. {
  13847. name: "Galactic",
  13848. height: math.unit(1057000, "lightyears")
  13849. },
  13850. ]
  13851. ))
  13852. characterMakers.push(() => makeCharacter(
  13853. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13854. {
  13855. front: {
  13856. height: math.unit(6 + 10 / 12, "feet"),
  13857. weight: math.unit(150, "lb"),
  13858. name: "Front",
  13859. image: {
  13860. source: "./media/characters/dixon/front.svg",
  13861. extra: 3361 / 3209,
  13862. bottom: 0.01
  13863. }
  13864. },
  13865. },
  13866. [
  13867. {
  13868. name: "Normal",
  13869. height: math.unit(6 + 10 / 12, "feet"),
  13870. default: true
  13871. },
  13872. {
  13873. name: "Big",
  13874. height: math.unit(12, "meters")
  13875. },
  13876. {
  13877. name: "Macro",
  13878. height: math.unit(500, "meters")
  13879. },
  13880. {
  13881. name: "Megamacro",
  13882. height: math.unit(2, "km")
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13888. {
  13889. front: {
  13890. height: math.unit(185, "cm"),
  13891. weight: math.unit(68, "kg"),
  13892. name: "Front",
  13893. image: {
  13894. source: "./media/characters/kauko/front.svg",
  13895. extra: 1455 / 1421,
  13896. bottom: 0.03
  13897. }
  13898. },
  13899. back: {
  13900. height: math.unit(185, "cm"),
  13901. weight: math.unit(68, "kg"),
  13902. name: "Back",
  13903. image: {
  13904. source: "./media/characters/kauko/back.svg",
  13905. extra: 1455 / 1421,
  13906. bottom: 0.004
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Normal",
  13913. height: math.unit(185, "cm"),
  13914. default: true
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13920. {
  13921. frontSfw: {
  13922. height: math.unit(5, "meters"),
  13923. weight: math.unit(4250, "lb"),
  13924. name: "Front",
  13925. image: {
  13926. source: "./media/characters/varg/front-sfw.svg",
  13927. extra: 1103/1010,
  13928. bottom: 50/1153
  13929. },
  13930. form: "anthro",
  13931. default: true
  13932. },
  13933. backSfw: {
  13934. height: math.unit(5, "meters"),
  13935. weight: math.unit(4250, "lb"),
  13936. name: "Back",
  13937. image: {
  13938. source: "./media/characters/varg/back-sfw.svg",
  13939. extra: 1038/1022,
  13940. bottom: 36/1074
  13941. },
  13942. form: "anthro"
  13943. },
  13944. frontNsfw: {
  13945. height: math.unit(5, "meters"),
  13946. weight: math.unit(4250, "lb"),
  13947. name: "Front (NSFW)",
  13948. image: {
  13949. source: "./media/characters/varg/front-nsfw.svg",
  13950. extra: 1103/1010,
  13951. bottom: 50/1153
  13952. },
  13953. form: "anthro"
  13954. },
  13955. sheath: {
  13956. height: math.unit(3.8, "feet"),
  13957. weight: math.unit(90, "kilograms"),
  13958. name: "Sheath",
  13959. image: {
  13960. source: "./media/characters/varg/sheath.svg"
  13961. },
  13962. form: "anthro"
  13963. },
  13964. dick: {
  13965. height: math.unit(4.6, "feet"),
  13966. weight: math.unit(451, "kilograms"),
  13967. name: "Dick",
  13968. image: {
  13969. source: "./media/characters/varg/dick.svg"
  13970. },
  13971. form: "anthro"
  13972. },
  13973. feralSfw: {
  13974. height: math.unit(5, "meters"),
  13975. weight: math.unit(100000, "lb"),
  13976. name: "Side",
  13977. image: {
  13978. source: "./media/characters/varg/feral-sfw.svg",
  13979. extra: 1065/511,
  13980. bottom: 211/1276
  13981. },
  13982. form: "feral",
  13983. default: true
  13984. },
  13985. feralNsfw: {
  13986. height: math.unit(5, "meters"),
  13987. weight: math.unit(100000, "lb"),
  13988. name: "Side (NSFW)",
  13989. image: {
  13990. source: "./media/characters/varg/feral-nsfw.svg",
  13991. extra: 1065/511,
  13992. bottom: 211/1276
  13993. },
  13994. form: "feral",
  13995. },
  13996. feralSheath: {
  13997. height: math.unit(9.8, "feet"),
  13998. weight: math.unit(2000, "kilograms"),
  13999. name: "Sheath",
  14000. image: {
  14001. source: "./media/characters/varg/sheath.svg"
  14002. },
  14003. form: "feral"
  14004. },
  14005. feralDick: {
  14006. height: math.unit(13.11, "feet"),
  14007. weight: math.unit(10440, "kilograms"),
  14008. name: "Dick",
  14009. image: {
  14010. source: "./media/characters/varg/dick.svg"
  14011. },
  14012. form: "feral"
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Normal",
  14018. height: math.unit(5, "meters"),
  14019. form: "anthro"
  14020. },
  14021. {
  14022. name: "Macro",
  14023. height: math.unit(200, "meters"),
  14024. form: "anthro"
  14025. },
  14026. {
  14027. name: "Megamacro",
  14028. height: math.unit(20, "kilometers"),
  14029. form: "anthro"
  14030. },
  14031. {
  14032. name: "True Size",
  14033. height: math.unit(211, "km"),
  14034. form: "anthro",
  14035. default: true
  14036. },
  14037. {
  14038. name: "Gigamacro",
  14039. height: math.unit(1000, "km"),
  14040. form: "anthro"
  14041. },
  14042. {
  14043. name: "Gigamacro+",
  14044. height: math.unit(8000, "km"),
  14045. form: "anthro"
  14046. },
  14047. {
  14048. name: "Teramacro",
  14049. height: math.unit(1000000, "km"),
  14050. form: "anthro"
  14051. },
  14052. {
  14053. name: "Normal",
  14054. height: math.unit(5, "meters"),
  14055. form: "feral"
  14056. },
  14057. {
  14058. name: "Macro",
  14059. height: math.unit(200, "meters"),
  14060. form: "feral"
  14061. },
  14062. {
  14063. name: "Megamacro",
  14064. height: math.unit(20, "kilometers"),
  14065. form: "feral"
  14066. },
  14067. {
  14068. name: "True Size",
  14069. height: math.unit(211, "km"),
  14070. form: "feral",
  14071. default: true
  14072. },
  14073. {
  14074. name: "Gigamacro",
  14075. height: math.unit(1000, "km"),
  14076. form: "feral"
  14077. },
  14078. {
  14079. name: "Gigamacro+",
  14080. height: math.unit(8000, "km"),
  14081. form: "feral"
  14082. },
  14083. {
  14084. name: "Teramacro",
  14085. height: math.unit(1000000, "km"),
  14086. form: "feral"
  14087. },
  14088. ],
  14089. {
  14090. "anthro": {
  14091. name: "Anthro",
  14092. default: true
  14093. },
  14094. "feral": {
  14095. name: "Feral",
  14096. },
  14097. }
  14098. ))
  14099. characterMakers.push(() => makeCharacter(
  14100. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14101. {
  14102. front: {
  14103. height: math.unit(7 + 7 / 12, "feet"),
  14104. weight: math.unit(267, "lb"),
  14105. name: "Front",
  14106. image: {
  14107. source: "./media/characters/dayza/front.svg",
  14108. extra: 1262 / 1200,
  14109. bottom: 0.035
  14110. }
  14111. },
  14112. side: {
  14113. height: math.unit(7 + 7 / 12, "feet"),
  14114. weight: math.unit(267, "lb"),
  14115. name: "Side",
  14116. image: {
  14117. source: "./media/characters/dayza/side.svg",
  14118. extra: 1295 / 1245,
  14119. bottom: 0.05
  14120. }
  14121. },
  14122. back: {
  14123. height: math.unit(7 + 7 / 12, "feet"),
  14124. weight: math.unit(267, "lb"),
  14125. name: "Back",
  14126. image: {
  14127. source: "./media/characters/dayza/back.svg",
  14128. extra: 1241 / 1170
  14129. }
  14130. },
  14131. },
  14132. [
  14133. {
  14134. name: "Normal",
  14135. height: math.unit(7 + 7 / 12, "feet"),
  14136. default: true
  14137. },
  14138. {
  14139. name: "Macro",
  14140. height: math.unit(155, "feet")
  14141. },
  14142. ]
  14143. ))
  14144. characterMakers.push(() => makeCharacter(
  14145. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14146. {
  14147. front: {
  14148. height: math.unit(6 + 5 / 12, "feet"),
  14149. weight: math.unit(160, "lb"),
  14150. name: "Front",
  14151. image: {
  14152. source: "./media/characters/xanthos/front.svg",
  14153. extra: 1,
  14154. bottom: 0.04
  14155. }
  14156. },
  14157. back: {
  14158. height: math.unit(6 + 5 / 12, "feet"),
  14159. weight: math.unit(160, "lb"),
  14160. name: "Back",
  14161. image: {
  14162. source: "./media/characters/xanthos/back.svg",
  14163. extra: 1,
  14164. bottom: 0.03
  14165. }
  14166. },
  14167. hand: {
  14168. height: math.unit(0.928, "feet"),
  14169. name: "Hand",
  14170. image: {
  14171. source: "./media/characters/xanthos/hand.svg"
  14172. }
  14173. },
  14174. foot: {
  14175. height: math.unit(1.286, "feet"),
  14176. name: "Foot",
  14177. image: {
  14178. source: "./media/characters/xanthos/foot.svg"
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Normal",
  14185. height: math.unit(6 + 5 / 12, "feet"),
  14186. default: true
  14187. },
  14188. {
  14189. name: "Normal+",
  14190. height: math.unit(6, "meters")
  14191. },
  14192. {
  14193. name: "Macro",
  14194. height: math.unit(40, "feet")
  14195. },
  14196. {
  14197. name: "Macro+",
  14198. height: math.unit(200, "meters")
  14199. },
  14200. {
  14201. name: "Megamacro",
  14202. height: math.unit(20, "km")
  14203. },
  14204. {
  14205. name: "Megamacro+",
  14206. height: math.unit(100, "km")
  14207. },
  14208. {
  14209. name: "Gigamacro",
  14210. height: math.unit(200, "megameters")
  14211. },
  14212. {
  14213. name: "Gigamacro+",
  14214. height: math.unit(1.5, "gigameters")
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14220. {
  14221. front: {
  14222. height: math.unit(6 + 3 / 12, "feet"),
  14223. weight: math.unit(215, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/grynn/front.svg",
  14227. extra: 4627 / 4209,
  14228. bottom: 0.047
  14229. }
  14230. },
  14231. },
  14232. [
  14233. {
  14234. name: "Micro",
  14235. height: math.unit(6, "inches")
  14236. },
  14237. {
  14238. name: "Normal",
  14239. height: math.unit(6 + 3 / 12, "feet"),
  14240. default: true
  14241. },
  14242. {
  14243. name: "Big",
  14244. height: math.unit(104, "feet")
  14245. },
  14246. {
  14247. name: "Macro",
  14248. height: math.unit(944, "feet")
  14249. },
  14250. {
  14251. name: "Macro+",
  14252. height: math.unit(9480, "feet")
  14253. },
  14254. {
  14255. name: "Megamacro",
  14256. height: math.unit(78752, "feet")
  14257. },
  14258. {
  14259. name: "Megamacro+",
  14260. height: math.unit(630128, "feet")
  14261. },
  14262. {
  14263. name: "Megamacro++",
  14264. height: math.unit(3150695, "feet")
  14265. },
  14266. ]
  14267. ))
  14268. characterMakers.push(() => makeCharacter(
  14269. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14270. {
  14271. front: {
  14272. height: math.unit(7 + 5 / 12, "feet"),
  14273. weight: math.unit(450, "lb"),
  14274. name: "Front",
  14275. image: {
  14276. source: "./media/characters/mocha-aura/front.svg",
  14277. extra: 1907 / 1817,
  14278. bottom: 0.04
  14279. }
  14280. },
  14281. back: {
  14282. height: math.unit(7 + 5 / 12, "feet"),
  14283. weight: math.unit(450, "lb"),
  14284. name: "Back",
  14285. image: {
  14286. source: "./media/characters/mocha-aura/back.svg",
  14287. extra: 1900 / 1825,
  14288. bottom: 0.045
  14289. }
  14290. },
  14291. },
  14292. [
  14293. {
  14294. name: "Nano",
  14295. height: math.unit(1, "nm")
  14296. },
  14297. {
  14298. name: "Megamicro",
  14299. height: math.unit(1, "mm")
  14300. },
  14301. {
  14302. name: "Micro",
  14303. height: math.unit(3, "inches")
  14304. },
  14305. {
  14306. name: "Normal",
  14307. height: math.unit(7 + 5 / 12, "feet"),
  14308. default: true
  14309. },
  14310. {
  14311. name: "Macro",
  14312. height: math.unit(30, "feet")
  14313. },
  14314. {
  14315. name: "Megamacro",
  14316. height: math.unit(3500, "feet")
  14317. },
  14318. {
  14319. name: "Teramacro",
  14320. height: math.unit(500000, "miles")
  14321. },
  14322. {
  14323. name: "Petamacro",
  14324. height: math.unit(50000000000000000, "parsecs")
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14330. {
  14331. front: {
  14332. height: math.unit(6, "feet"),
  14333. weight: math.unit(150, "lb"),
  14334. name: "Front",
  14335. image: {
  14336. source: "./media/characters/ilisha-devya/front.svg",
  14337. extra: 1053/1049,
  14338. bottom: 270/1323
  14339. }
  14340. },
  14341. back: {
  14342. height: math.unit(6, "feet"),
  14343. weight: math.unit(150, "lb"),
  14344. name: "Back",
  14345. image: {
  14346. source: "./media/characters/ilisha-devya/back.svg",
  14347. extra: 1131/1128,
  14348. bottom: 39/1170
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Macro",
  14355. height: math.unit(500, "feet"),
  14356. default: true
  14357. },
  14358. {
  14359. name: "Megamacro",
  14360. height: math.unit(10, "miles")
  14361. },
  14362. {
  14363. name: "Gigamacro",
  14364. height: math.unit(100000, "miles")
  14365. },
  14366. {
  14367. name: "Examacro",
  14368. height: math.unit(1e9, "lightyears")
  14369. },
  14370. {
  14371. name: "Omniversal",
  14372. height: math.unit(1e33, "lightyears")
  14373. },
  14374. {
  14375. name: "Beyond Infinite",
  14376. height: math.unit(1e100, "lightyears")
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14382. {
  14383. Side: {
  14384. height: math.unit(6, "feet"),
  14385. weight: math.unit(150, "lb"),
  14386. name: "Side",
  14387. image: {
  14388. source: "./media/characters/mira/side.svg",
  14389. extra: 900 / 799,
  14390. bottom: 0.02
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Human Size",
  14397. height: math.unit(6, "feet")
  14398. },
  14399. {
  14400. name: "Macro",
  14401. height: math.unit(100, "feet"),
  14402. default: true
  14403. },
  14404. {
  14405. name: "Megamacro",
  14406. height: math.unit(10, "miles")
  14407. },
  14408. {
  14409. name: "Gigamacro",
  14410. height: math.unit(25000, "miles")
  14411. },
  14412. {
  14413. name: "Teramacro",
  14414. height: math.unit(300, "AU")
  14415. },
  14416. {
  14417. name: "Full Size",
  14418. height: math.unit(4.5e10, "lightyears")
  14419. },
  14420. ]
  14421. ))
  14422. characterMakers.push(() => makeCharacter(
  14423. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14424. {
  14425. front: {
  14426. height: math.unit(6, "feet"),
  14427. weight: math.unit(150, "lb"),
  14428. name: "Front",
  14429. image: {
  14430. source: "./media/characters/holly/front.svg",
  14431. extra: 639 / 606
  14432. }
  14433. },
  14434. back: {
  14435. height: math.unit(6, "feet"),
  14436. weight: math.unit(150, "lb"),
  14437. name: "Back",
  14438. image: {
  14439. source: "./media/characters/holly/back.svg",
  14440. extra: 623 / 598
  14441. }
  14442. },
  14443. frontWorking: {
  14444. height: math.unit(6, "feet"),
  14445. weight: math.unit(150, "lb"),
  14446. name: "Front (Working)",
  14447. image: {
  14448. source: "./media/characters/holly/front-working.svg",
  14449. extra: 607 / 577,
  14450. bottom: 0.048
  14451. }
  14452. },
  14453. },
  14454. [
  14455. {
  14456. name: "Normal",
  14457. height: math.unit(12 + 3 / 12, "feet"),
  14458. default: true
  14459. },
  14460. ]
  14461. ))
  14462. characterMakers.push(() => makeCharacter(
  14463. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14464. {
  14465. front: {
  14466. height: math.unit(6, "feet"),
  14467. weight: math.unit(150, "lb"),
  14468. name: "Front",
  14469. image: {
  14470. source: "./media/characters/porter/front.svg",
  14471. extra: 1,
  14472. bottom: 0.01
  14473. }
  14474. },
  14475. frontRobes: {
  14476. height: math.unit(6, "feet"),
  14477. weight: math.unit(150, "lb"),
  14478. name: "Front (Robes)",
  14479. image: {
  14480. source: "./media/characters/porter/front-robes.svg",
  14481. extra: 1.01,
  14482. bottom: 0.01
  14483. }
  14484. },
  14485. },
  14486. [
  14487. {
  14488. name: "Normal",
  14489. height: math.unit(11 + 9 / 12, "feet"),
  14490. default: true
  14491. },
  14492. ]
  14493. ))
  14494. characterMakers.push(() => makeCharacter(
  14495. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14496. {
  14497. legendary: {
  14498. height: math.unit(6, "feet"),
  14499. weight: math.unit(150, "lb"),
  14500. name: "Legendary",
  14501. image: {
  14502. source: "./media/characters/lucy/legendary.svg",
  14503. extra: 1355 / 1100,
  14504. bottom: 0.045
  14505. }
  14506. },
  14507. },
  14508. [
  14509. {
  14510. name: "Legendary",
  14511. height: math.unit(86882 * 2, "miles"),
  14512. default: true
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14518. {
  14519. front: {
  14520. height: math.unit(6, "feet"),
  14521. weight: math.unit(150, "lb"),
  14522. name: "Front",
  14523. image: {
  14524. source: "./media/characters/drusilla/front.svg",
  14525. extra: 678 / 635,
  14526. bottom: 0.03
  14527. }
  14528. },
  14529. back: {
  14530. height: math.unit(6, "feet"),
  14531. weight: math.unit(150, "lb"),
  14532. name: "Back",
  14533. image: {
  14534. source: "./media/characters/drusilla/back.svg",
  14535. extra: 678 / 635,
  14536. bottom: 0.005
  14537. }
  14538. },
  14539. },
  14540. [
  14541. {
  14542. name: "Macro",
  14543. height: math.unit(100, "feet")
  14544. },
  14545. {
  14546. name: "Canon Height",
  14547. height: math.unit(2000, "feet"),
  14548. default: true
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14554. {
  14555. front: {
  14556. height: math.unit(6, "feet"),
  14557. weight: math.unit(180, "lb"),
  14558. name: "Front",
  14559. image: {
  14560. source: "./media/characters/renard-thatch/front.svg",
  14561. extra: 2411 / 2275,
  14562. bottom: 0.01
  14563. }
  14564. },
  14565. frontPosing: {
  14566. height: math.unit(6, "feet"),
  14567. weight: math.unit(180, "lb"),
  14568. name: "Front (Posing)",
  14569. image: {
  14570. source: "./media/characters/renard-thatch/front-posing.svg",
  14571. extra: 2381 / 2261,
  14572. bottom: 0.01
  14573. }
  14574. },
  14575. back: {
  14576. height: math.unit(6, "feet"),
  14577. weight: math.unit(180, "lb"),
  14578. name: "Back",
  14579. image: {
  14580. source: "./media/characters/renard-thatch/back.svg",
  14581. extra: 2428 / 2288
  14582. }
  14583. },
  14584. },
  14585. [
  14586. {
  14587. name: "Micro",
  14588. height: math.unit(3, "inches")
  14589. },
  14590. {
  14591. name: "Default",
  14592. height: math.unit(6, "feet"),
  14593. default: true
  14594. },
  14595. {
  14596. name: "Macro",
  14597. height: math.unit(75, "feet")
  14598. },
  14599. ]
  14600. ))
  14601. characterMakers.push(() => makeCharacter(
  14602. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14603. {
  14604. front: {
  14605. height: math.unit(1450, "feet"),
  14606. weight: math.unit(1.21e6, "tons"),
  14607. name: "Front",
  14608. image: {
  14609. source: "./media/characters/sekvra/front.svg",
  14610. extra: 1193/1190,
  14611. bottom: 78/1271
  14612. }
  14613. },
  14614. side: {
  14615. height: math.unit(1450, "feet"),
  14616. weight: math.unit(1.21e6, "tons"),
  14617. name: "Side",
  14618. image: {
  14619. source: "./media/characters/sekvra/side.svg",
  14620. extra: 1193/1190,
  14621. bottom: 52/1245
  14622. }
  14623. },
  14624. back: {
  14625. height: math.unit(1450, "feet"),
  14626. weight: math.unit(1.21e6, "tons"),
  14627. name: "Back",
  14628. image: {
  14629. source: "./media/characters/sekvra/back.svg",
  14630. extra: 1219/1216,
  14631. bottom: 21/1240
  14632. }
  14633. },
  14634. frontClothed: {
  14635. height: math.unit(1450, "feet"),
  14636. weight: math.unit(1.21e6, "tons"),
  14637. name: "Front (Clothed)",
  14638. image: {
  14639. source: "./media/characters/sekvra/front-clothed.svg",
  14640. extra: 1192/1189,
  14641. bottom: 79/1271
  14642. }
  14643. },
  14644. },
  14645. [
  14646. {
  14647. name: "Macro",
  14648. height: math.unit(1450, "feet"),
  14649. default: true
  14650. },
  14651. {
  14652. name: "Megamacro",
  14653. height: math.unit(15000, "feet")
  14654. },
  14655. ]
  14656. ))
  14657. characterMakers.push(() => makeCharacter(
  14658. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14659. {
  14660. front: {
  14661. height: math.unit(6, "feet"),
  14662. weight: math.unit(150, "lb"),
  14663. name: "Front",
  14664. image: {
  14665. source: "./media/characters/carmine/front.svg",
  14666. extra: 1,
  14667. bottom: 0.035
  14668. }
  14669. },
  14670. frontArmor: {
  14671. height: math.unit(6, "feet"),
  14672. weight: math.unit(150, "lb"),
  14673. name: "Front (Armor)",
  14674. image: {
  14675. source: "./media/characters/carmine/front-armor.svg",
  14676. extra: 1,
  14677. bottom: 0.035
  14678. }
  14679. },
  14680. },
  14681. [
  14682. {
  14683. name: "Large",
  14684. height: math.unit(1, "mile")
  14685. },
  14686. {
  14687. name: "Huge",
  14688. height: math.unit(40, "miles"),
  14689. default: true
  14690. },
  14691. {
  14692. name: "Colossal",
  14693. height: math.unit(2500, "miles")
  14694. },
  14695. ]
  14696. ))
  14697. characterMakers.push(() => makeCharacter(
  14698. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14699. {
  14700. front: {
  14701. height: math.unit(6, "feet"),
  14702. weight: math.unit(150, "lb"),
  14703. name: "Front",
  14704. image: {
  14705. source: "./media/characters/elyssia/front.svg",
  14706. extra: 2201 / 2035,
  14707. bottom: 0.05
  14708. }
  14709. },
  14710. frontClothed: {
  14711. height: math.unit(6, "feet"),
  14712. weight: math.unit(150, "lb"),
  14713. name: "Front (Clothed)",
  14714. image: {
  14715. source: "./media/characters/elyssia/front-clothed.svg",
  14716. extra: 2201 / 2035,
  14717. bottom: 0.05
  14718. }
  14719. },
  14720. back: {
  14721. height: math.unit(6, "feet"),
  14722. weight: math.unit(150, "lb"),
  14723. name: "Back",
  14724. image: {
  14725. source: "./media/characters/elyssia/back.svg",
  14726. extra: 2201 / 2035,
  14727. bottom: 0.013
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Smaller",
  14734. height: math.unit(150, "feet")
  14735. },
  14736. {
  14737. name: "Standard",
  14738. height: math.unit(1400, "feet"),
  14739. default: true
  14740. },
  14741. {
  14742. name: "Distracted",
  14743. height: math.unit(15000, "feet")
  14744. },
  14745. ]
  14746. ))
  14747. characterMakers.push(() => makeCharacter(
  14748. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14749. {
  14750. front: {
  14751. height: math.unit(7 + 4/12, "feet"),
  14752. weight: math.unit(690, "lb"),
  14753. name: "Front",
  14754. image: {
  14755. source: "./media/characters/geno-maxwell/front.svg",
  14756. extra: 984/856,
  14757. bottom: 87/1071
  14758. }
  14759. },
  14760. back: {
  14761. height: math.unit(7 + 4/12, "feet"),
  14762. weight: math.unit(690, "lb"),
  14763. name: "Back",
  14764. image: {
  14765. source: "./media/characters/geno-maxwell/back.svg",
  14766. extra: 981/854,
  14767. bottom: 57/1038
  14768. }
  14769. },
  14770. frontCostume: {
  14771. height: math.unit(7 + 4/12, "feet"),
  14772. weight: math.unit(690, "lb"),
  14773. name: "Front (Costume)",
  14774. image: {
  14775. source: "./media/characters/geno-maxwell/front-costume.svg",
  14776. extra: 984/856,
  14777. bottom: 87/1071
  14778. }
  14779. },
  14780. backcostume: {
  14781. height: math.unit(7 + 4/12, "feet"),
  14782. weight: math.unit(690, "lb"),
  14783. name: "Back (Costume)",
  14784. image: {
  14785. source: "./media/characters/geno-maxwell/back-costume.svg",
  14786. extra: 981/854,
  14787. bottom: 57/1038
  14788. }
  14789. },
  14790. },
  14791. [
  14792. {
  14793. name: "Micro",
  14794. height: math.unit(3, "inches")
  14795. },
  14796. {
  14797. name: "Normal",
  14798. height: math.unit(7 + 4 / 12, "feet"),
  14799. default: true
  14800. },
  14801. {
  14802. name: "Macro",
  14803. height: math.unit(220, "feet")
  14804. },
  14805. {
  14806. name: "Megamacro",
  14807. height: math.unit(11, "miles")
  14808. },
  14809. ]
  14810. ))
  14811. characterMakers.push(() => makeCharacter(
  14812. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14813. {
  14814. front: {
  14815. height: math.unit(7 + 4/12, "feet"),
  14816. weight: math.unit(750, "lb"),
  14817. name: "Front",
  14818. image: {
  14819. source: "./media/characters/regena-maxwell/front.svg",
  14820. extra: 984/856,
  14821. bottom: 87/1071
  14822. }
  14823. },
  14824. back: {
  14825. height: math.unit(7 + 4/12, "feet"),
  14826. weight: math.unit(750, "lb"),
  14827. name: "Back",
  14828. image: {
  14829. source: "./media/characters/regena-maxwell/back.svg",
  14830. extra: 981/854,
  14831. bottom: 57/1038
  14832. }
  14833. },
  14834. frontCostume: {
  14835. height: math.unit(7 + 4/12, "feet"),
  14836. weight: math.unit(750, "lb"),
  14837. name: "Front (Costume)",
  14838. image: {
  14839. source: "./media/characters/regena-maxwell/front-costume.svg",
  14840. extra: 984/856,
  14841. bottom: 87/1071
  14842. }
  14843. },
  14844. backcostume: {
  14845. height: math.unit(7 + 4/12, "feet"),
  14846. weight: math.unit(750, "lb"),
  14847. name: "Back (Costume)",
  14848. image: {
  14849. source: "./media/characters/regena-maxwell/back-costume.svg",
  14850. extra: 981/854,
  14851. bottom: 57/1038
  14852. }
  14853. },
  14854. },
  14855. [
  14856. {
  14857. name: "Normal",
  14858. height: math.unit(7 + 4 / 12, "feet"),
  14859. default: true
  14860. },
  14861. {
  14862. name: "Macro",
  14863. height: math.unit(220, "feet")
  14864. },
  14865. {
  14866. name: "Megamacro",
  14867. height: math.unit(11, "miles")
  14868. },
  14869. ]
  14870. ))
  14871. characterMakers.push(() => makeCharacter(
  14872. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14873. {
  14874. front: {
  14875. height: math.unit(6, "feet"),
  14876. weight: math.unit(150, "lb"),
  14877. name: "Front",
  14878. image: {
  14879. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14880. extra: 860 / 690,
  14881. bottom: 0.03
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Normal",
  14888. height: math.unit(1.7, "meters"),
  14889. default: true
  14890. },
  14891. ]
  14892. ))
  14893. characterMakers.push(() => makeCharacter(
  14894. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14895. {
  14896. front: {
  14897. height: math.unit(6, "feet"),
  14898. weight: math.unit(150, "lb"),
  14899. name: "Front",
  14900. image: {
  14901. source: "./media/characters/quilly/front.svg",
  14902. extra: 890 / 776
  14903. }
  14904. },
  14905. },
  14906. [
  14907. {
  14908. name: "Gigamacro",
  14909. height: math.unit(404090, "miles"),
  14910. default: true
  14911. },
  14912. ]
  14913. ))
  14914. characterMakers.push(() => makeCharacter(
  14915. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14916. {
  14917. front: {
  14918. height: math.unit(7 + 8 / 12, "feet"),
  14919. weight: math.unit(350, "lb"),
  14920. name: "Front",
  14921. image: {
  14922. source: "./media/characters/tempest/front.svg",
  14923. extra: 1175 / 1086,
  14924. bottom: 0.02
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "Normal",
  14931. height: math.unit(7 + 8 / 12, "feet"),
  14932. default: true
  14933. },
  14934. ]
  14935. ))
  14936. characterMakers.push(() => makeCharacter(
  14937. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14938. {
  14939. side: {
  14940. height: math.unit(4 + 5 / 12, "feet"),
  14941. weight: math.unit(80, "lb"),
  14942. name: "Side",
  14943. image: {
  14944. source: "./media/characters/rodger/side.svg",
  14945. extra: 1235 / 1118
  14946. }
  14947. },
  14948. },
  14949. [
  14950. {
  14951. name: "Micro",
  14952. height: math.unit(1, "inch")
  14953. },
  14954. {
  14955. name: "Normal",
  14956. height: math.unit(4 + 5 / 12, "feet"),
  14957. default: true
  14958. },
  14959. {
  14960. name: "Macro",
  14961. height: math.unit(120, "feet")
  14962. },
  14963. ]
  14964. ))
  14965. characterMakers.push(() => makeCharacter(
  14966. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14967. {
  14968. front: {
  14969. height: math.unit(6, "feet"),
  14970. weight: math.unit(150, "lb"),
  14971. name: "Front",
  14972. image: {
  14973. source: "./media/characters/danyel/front.svg",
  14974. extra: 1185 / 1123,
  14975. bottom: 0.05
  14976. }
  14977. },
  14978. },
  14979. [
  14980. {
  14981. name: "Shrunken",
  14982. height: math.unit(0.5, "mm")
  14983. },
  14984. {
  14985. name: "Micro",
  14986. height: math.unit(1, "mm"),
  14987. default: true
  14988. },
  14989. {
  14990. name: "Upsized",
  14991. height: math.unit(5 + 5 / 12, "feet")
  14992. },
  14993. ]
  14994. ))
  14995. characterMakers.push(() => makeCharacter(
  14996. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14997. {
  14998. front: {
  14999. height: math.unit(5 + 6 / 12, "feet"),
  15000. weight: math.unit(200, "lb"),
  15001. name: "Front",
  15002. image: {
  15003. source: "./media/characters/vivian-bijoux/front.svg",
  15004. extra: 1217/1209,
  15005. bottom: 76/1293
  15006. }
  15007. },
  15008. back: {
  15009. height: math.unit(5 + 6 / 12, "feet"),
  15010. weight: math.unit(200, "lb"),
  15011. name: "Back",
  15012. image: {
  15013. source: "./media/characters/vivian-bijoux/back.svg",
  15014. extra: 1214/1208,
  15015. bottom: 51/1265
  15016. }
  15017. },
  15018. dressed: {
  15019. height: math.unit(5 + 6 / 12, "feet"),
  15020. weight: math.unit(200, "lb"),
  15021. name: "Dressed",
  15022. image: {
  15023. source: "./media/characters/vivian-bijoux/dressed.svg",
  15024. extra: 1217/1209,
  15025. bottom: 76/1293
  15026. }
  15027. },
  15028. },
  15029. [
  15030. {
  15031. name: "Normal",
  15032. height: math.unit(5 + 6 / 12, "feet"),
  15033. default: true
  15034. },
  15035. {
  15036. name: "Bad Dream",
  15037. height: math.unit(500, "feet")
  15038. },
  15039. {
  15040. name: "Nightmare",
  15041. height: math.unit(500, "miles")
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(6 + 1 / 12, "feet"),
  15050. weight: math.unit(260, "lb"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/zeta/front.svg",
  15054. extra: 1968 / 1889,
  15055. bottom: 0.06
  15056. }
  15057. },
  15058. back: {
  15059. height: math.unit(6 + 1 / 12, "feet"),
  15060. weight: math.unit(260, "lb"),
  15061. name: "Back",
  15062. image: {
  15063. source: "./media/characters/zeta/back.svg",
  15064. extra: 1944 / 1858,
  15065. bottom: 0.03
  15066. }
  15067. },
  15068. hand: {
  15069. height: math.unit(1.112, "feet"),
  15070. name: "Hand",
  15071. image: {
  15072. source: "./media/characters/zeta/hand.svg"
  15073. }
  15074. },
  15075. foot: {
  15076. height: math.unit(1.48, "feet"),
  15077. name: "Foot",
  15078. image: {
  15079. source: "./media/characters/zeta/foot.svg"
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "Micro",
  15086. height: math.unit(6, "inches")
  15087. },
  15088. {
  15089. name: "Normal",
  15090. height: math.unit(6 + 1 / 12, "feet"),
  15091. default: true
  15092. },
  15093. {
  15094. name: "Macro",
  15095. height: math.unit(20, "feet")
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15101. {
  15102. front: {
  15103. height: math.unit(6, "feet"),
  15104. weight: math.unit(150, "lb"),
  15105. name: "Front",
  15106. image: {
  15107. source: "./media/characters/jamie-larsen/front.svg",
  15108. extra: 962 / 933,
  15109. bottom: 0.02
  15110. }
  15111. },
  15112. back: {
  15113. height: math.unit(6, "feet"),
  15114. weight: math.unit(150, "lb"),
  15115. name: "Back",
  15116. image: {
  15117. source: "./media/characters/jamie-larsen/back.svg",
  15118. extra: 997 / 946
  15119. }
  15120. },
  15121. },
  15122. [
  15123. {
  15124. name: "Macro",
  15125. height: math.unit(28 + 7 / 12, "feet"),
  15126. default: true
  15127. },
  15128. {
  15129. name: "Macro+",
  15130. height: math.unit(180, "feet")
  15131. },
  15132. {
  15133. name: "Megamacro",
  15134. height: math.unit(10, "miles")
  15135. },
  15136. {
  15137. name: "Gigamacro",
  15138. height: math.unit(200000, "miles")
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15144. {
  15145. front: {
  15146. height: math.unit(6, "feet"),
  15147. weight: math.unit(120, "lb"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/vance/front.svg",
  15151. extra: 1980 / 1890,
  15152. bottom: 0.09
  15153. }
  15154. },
  15155. back: {
  15156. height: math.unit(6, "feet"),
  15157. weight: math.unit(120, "lb"),
  15158. name: "Back",
  15159. image: {
  15160. source: "./media/characters/vance/back.svg",
  15161. extra: 2081 / 1994,
  15162. bottom: 0.014
  15163. }
  15164. },
  15165. hand: {
  15166. height: math.unit(0.88, "feet"),
  15167. name: "Hand",
  15168. image: {
  15169. source: "./media/characters/vance/hand.svg"
  15170. }
  15171. },
  15172. foot: {
  15173. height: math.unit(0.64, "feet"),
  15174. name: "Foot",
  15175. image: {
  15176. source: "./media/characters/vance/foot.svg"
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Small",
  15183. height: math.unit(90, "feet"),
  15184. default: true
  15185. },
  15186. {
  15187. name: "Macro",
  15188. height: math.unit(100, "meters")
  15189. },
  15190. {
  15191. name: "Megamacro",
  15192. height: math.unit(15, "miles")
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15198. {
  15199. front: {
  15200. height: math.unit(6, "feet"),
  15201. weight: math.unit(180, "lb"),
  15202. name: "Front",
  15203. image: {
  15204. source: "./media/characters/xochitl/front.svg",
  15205. extra: 2297 / 2261,
  15206. bottom: 0.065
  15207. }
  15208. },
  15209. back: {
  15210. height: math.unit(6, "feet"),
  15211. weight: math.unit(180, "lb"),
  15212. name: "Back",
  15213. image: {
  15214. source: "./media/characters/xochitl/back.svg",
  15215. extra: 2386 / 2354,
  15216. bottom: 0.01
  15217. }
  15218. },
  15219. foot: {
  15220. height: math.unit(6 / 5 * 1.15, "feet"),
  15221. weight: math.unit(150, "lb"),
  15222. name: "Foot",
  15223. image: {
  15224. source: "./media/characters/xochitl/foot.svg"
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Macro",
  15231. height: math.unit(80, "feet")
  15232. },
  15233. {
  15234. name: "Macro+",
  15235. height: math.unit(400, "feet"),
  15236. default: true
  15237. },
  15238. {
  15239. name: "Gigamacro",
  15240. height: math.unit(80000, "miles")
  15241. },
  15242. {
  15243. name: "Gigamacro+",
  15244. height: math.unit(400000, "miles")
  15245. },
  15246. {
  15247. name: "Teramacro",
  15248. height: math.unit(300, "AU")
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(6, "feet"),
  15257. weight: math.unit(150, "lb"),
  15258. name: "Front",
  15259. image: {
  15260. source: "./media/characters/vincent/front.svg",
  15261. extra: 1130 / 1080,
  15262. bottom: 0.055
  15263. }
  15264. },
  15265. beak: {
  15266. height: math.unit(6 * 0.1, "feet"),
  15267. name: "Beak",
  15268. image: {
  15269. source: "./media/characters/vincent/beak.svg"
  15270. }
  15271. },
  15272. hand: {
  15273. height: math.unit(6 * 0.85, "feet"),
  15274. weight: math.unit(150, "lb"),
  15275. name: "Hand",
  15276. image: {
  15277. source: "./media/characters/vincent/hand.svg"
  15278. }
  15279. },
  15280. foot: {
  15281. height: math.unit(6 * 0.19, "feet"),
  15282. weight: math.unit(150, "lb"),
  15283. name: "Foot",
  15284. image: {
  15285. source: "./media/characters/vincent/foot.svg"
  15286. }
  15287. },
  15288. },
  15289. [
  15290. {
  15291. name: "Base",
  15292. height: math.unit(6 + 5 / 12, "feet"),
  15293. default: true
  15294. },
  15295. {
  15296. name: "Macro",
  15297. height: math.unit(300, "feet")
  15298. },
  15299. {
  15300. name: "Megamacro",
  15301. height: math.unit(2, "miles")
  15302. },
  15303. {
  15304. name: "Gigamacro",
  15305. height: math.unit(1000, "miles")
  15306. },
  15307. ]
  15308. ))
  15309. characterMakers.push(() => makeCharacter(
  15310. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15311. {
  15312. front: {
  15313. height: math.unit(2, "meters"),
  15314. weight: math.unit(500, "kg"),
  15315. name: "Front",
  15316. image: {
  15317. source: "./media/characters/coatl/front.svg",
  15318. extra: 3948 / 3500,
  15319. bottom: 0.082
  15320. }
  15321. },
  15322. },
  15323. [
  15324. {
  15325. name: "Normal",
  15326. height: math.unit(4, "meters")
  15327. },
  15328. {
  15329. name: "Macro",
  15330. height: math.unit(100, "meters"),
  15331. default: true
  15332. },
  15333. {
  15334. name: "Macro+",
  15335. height: math.unit(300, "meters")
  15336. },
  15337. {
  15338. name: "Megamacro",
  15339. height: math.unit(3, "gigameters")
  15340. },
  15341. {
  15342. name: "Megamacro+",
  15343. height: math.unit(300, "terameters")
  15344. },
  15345. {
  15346. name: "Megamacro++",
  15347. height: math.unit(3, "lightyears")
  15348. },
  15349. ]
  15350. ))
  15351. characterMakers.push(() => makeCharacter(
  15352. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15353. {
  15354. front: {
  15355. height: math.unit(6, "feet"),
  15356. weight: math.unit(50, "kg"),
  15357. name: "front",
  15358. image: {
  15359. source: "./media/characters/shiroryu/front.svg",
  15360. extra: 1990 / 1935
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Mortal Mingling",
  15367. height: math.unit(3, "meters")
  15368. },
  15369. {
  15370. name: "Kaiju-ish",
  15371. height: math.unit(250, "meters")
  15372. },
  15373. {
  15374. name: "Somewhat Godly",
  15375. height: math.unit(400, "km"),
  15376. default: true
  15377. },
  15378. {
  15379. name: "Planetary",
  15380. height: math.unit(300, "megameters")
  15381. },
  15382. {
  15383. name: "Galaxy-dwarfing",
  15384. height: math.unit(450, "kiloparsecs")
  15385. },
  15386. {
  15387. name: "Universe Eater",
  15388. height: math.unit(150, "gigaparsecs")
  15389. },
  15390. {
  15391. name: "Almost Immeasurable",
  15392. height: math.unit(1.3e266, "yottaparsecs")
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15398. {
  15399. front: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(150, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/umeko/front.svg",
  15405. extra: 1,
  15406. bottom: 0.019
  15407. }
  15408. },
  15409. frontArmored: {
  15410. height: math.unit(6, "feet"),
  15411. weight: math.unit(150, "lb"),
  15412. name: "Front (Armored)",
  15413. image: {
  15414. source: "./media/characters/umeko/front-armored.svg",
  15415. extra: 1,
  15416. bottom: 0.021
  15417. }
  15418. },
  15419. },
  15420. [
  15421. {
  15422. name: "Macro",
  15423. height: math.unit(220, "feet"),
  15424. default: true
  15425. },
  15426. {
  15427. name: "Guardian Dragon",
  15428. height: math.unit(50, "miles")
  15429. },
  15430. {
  15431. name: "Cosmic",
  15432. height: math.unit(800000, "miles")
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(6, "feet"),
  15441. weight: math.unit(150, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/cassidy/front.svg",
  15445. extra: 810/808,
  15446. bottom: 41/851
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Canon Height",
  15453. height: math.unit(120, "feet"),
  15454. default: true
  15455. },
  15456. {
  15457. name: "Macro+",
  15458. height: math.unit(400, "feet")
  15459. },
  15460. {
  15461. name: "Macro++",
  15462. height: math.unit(4000, "feet")
  15463. },
  15464. {
  15465. name: "Megamacro",
  15466. height: math.unit(3, "miles")
  15467. },
  15468. ]
  15469. ))
  15470. characterMakers.push(() => makeCharacter(
  15471. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15472. {
  15473. front: {
  15474. height: math.unit(6, "feet"),
  15475. weight: math.unit(150, "lb"),
  15476. name: "Front",
  15477. image: {
  15478. source: "./media/characters/isaac/front.svg",
  15479. extra: 896 / 815,
  15480. bottom: 0.11
  15481. }
  15482. },
  15483. },
  15484. [
  15485. {
  15486. name: "Human Size",
  15487. height: math.unit(8, "feet"),
  15488. default: true
  15489. },
  15490. {
  15491. name: "Macro",
  15492. height: math.unit(400, "feet")
  15493. },
  15494. {
  15495. name: "Megamacro",
  15496. height: math.unit(50, "miles")
  15497. },
  15498. {
  15499. name: "Canon Height",
  15500. height: math.unit(200, "AU")
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15506. {
  15507. front: {
  15508. height: math.unit(6, "feet"),
  15509. weight: math.unit(72, "kg"),
  15510. name: "Front",
  15511. image: {
  15512. source: "./media/characters/sleekit/front.svg",
  15513. extra: 4693 / 4487,
  15514. bottom: 0.012
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Minimum Height",
  15521. height: math.unit(10, "meters")
  15522. },
  15523. {
  15524. name: "Smaller",
  15525. height: math.unit(25, "meters")
  15526. },
  15527. {
  15528. name: "Larger",
  15529. height: math.unit(38, "meters"),
  15530. default: true
  15531. },
  15532. {
  15533. name: "Maximum height",
  15534. height: math.unit(100, "meters")
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(6, "feet"),
  15543. weight: math.unit(150, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/nillia/front.svg",
  15547. extra: 2195 / 2037,
  15548. bottom: 0.005
  15549. }
  15550. },
  15551. back: {
  15552. height: math.unit(6, "feet"),
  15553. weight: math.unit(150, "lb"),
  15554. name: "Back",
  15555. image: {
  15556. source: "./media/characters/nillia/back.svg",
  15557. extra: 2195 / 2037,
  15558. bottom: 0.005
  15559. }
  15560. },
  15561. },
  15562. [
  15563. {
  15564. name: "Canon Height",
  15565. height: math.unit(489, "feet"),
  15566. default: true
  15567. }
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15572. {
  15573. front: {
  15574. height: math.unit(6, "feet"),
  15575. weight: math.unit(150, "lb"),
  15576. name: "Front",
  15577. image: {
  15578. source: "./media/characters/mesmyriza/front.svg",
  15579. extra: 2067 / 1784,
  15580. bottom: 0.035
  15581. }
  15582. },
  15583. foot: {
  15584. height: math.unit(6 / (250 / 35), "feet"),
  15585. name: "Foot",
  15586. image: {
  15587. source: "./media/characters/mesmyriza/foot.svg"
  15588. }
  15589. },
  15590. },
  15591. [
  15592. {
  15593. name: "Macro",
  15594. height: math.unit(457, "meters"),
  15595. default: true
  15596. },
  15597. {
  15598. name: "Megamacro",
  15599. height: math.unit(8, "megameters")
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15605. {
  15606. front: {
  15607. height: math.unit(6, "feet"),
  15608. weight: math.unit(250, "lb"),
  15609. name: "Front",
  15610. image: {
  15611. source: "./media/characters/saudade/front.svg",
  15612. extra: 1172 / 1139,
  15613. bottom: 0.035
  15614. }
  15615. },
  15616. },
  15617. [
  15618. {
  15619. name: "Micro",
  15620. height: math.unit(3, "inches")
  15621. },
  15622. {
  15623. name: "Normal",
  15624. height: math.unit(6, "feet"),
  15625. default: true
  15626. },
  15627. {
  15628. name: "Macro",
  15629. height: math.unit(50, "feet")
  15630. },
  15631. {
  15632. name: "Megamacro",
  15633. height: math.unit(2800, "feet")
  15634. },
  15635. ]
  15636. ))
  15637. characterMakers.push(() => makeCharacter(
  15638. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15639. {
  15640. front: {
  15641. height: math.unit(5 + 4 / 12, "feet"),
  15642. weight: math.unit(100, "lb"),
  15643. name: "Front",
  15644. image: {
  15645. source: "./media/characters/keireer/front.svg",
  15646. extra: 716 / 666,
  15647. bottom: 0.05
  15648. }
  15649. },
  15650. },
  15651. [
  15652. {
  15653. name: "Normal",
  15654. height: math.unit(5 + 4 / 12, "feet"),
  15655. default: true
  15656. },
  15657. ]
  15658. ))
  15659. characterMakers.push(() => makeCharacter(
  15660. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15661. {
  15662. front: {
  15663. height: math.unit(5.5, "feet"),
  15664. weight: math.unit(90, "kg"),
  15665. name: "Front",
  15666. image: {
  15667. source: "./media/characters/mirja/front.svg",
  15668. extra: 1452/1262,
  15669. bottom: 67/1519
  15670. }
  15671. },
  15672. frontDressed: {
  15673. height: math.unit(5.5, "feet"),
  15674. weight: math.unit(90, "lb"),
  15675. name: "Front (Dressed)",
  15676. image: {
  15677. source: "./media/characters/mirja/dressed.svg",
  15678. extra: 1452/1262,
  15679. bottom: 67/1519
  15680. }
  15681. },
  15682. back: {
  15683. height: math.unit(6, "feet"),
  15684. weight: math.unit(90, "lb"),
  15685. name: "Back",
  15686. image: {
  15687. source: "./media/characters/mirja/back.svg",
  15688. extra: 1892/1795,
  15689. bottom: 48/1940
  15690. }
  15691. },
  15692. maw: {
  15693. height: math.unit(1.312, "feet"),
  15694. name: "Maw",
  15695. image: {
  15696. source: "./media/characters/mirja/maw.svg"
  15697. }
  15698. },
  15699. paw: {
  15700. height: math.unit(1.15, "feet"),
  15701. name: "Paw",
  15702. image: {
  15703. source: "./media/characters/mirja/paw.svg"
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "\"Incognito\"",
  15710. height: math.unit(3, "meters")
  15711. },
  15712. {
  15713. name: "Strolling Size",
  15714. height: math.unit(15, "km")
  15715. },
  15716. {
  15717. name: "Larger Strolling Size",
  15718. height: math.unit(400, "km")
  15719. },
  15720. {
  15721. name: "Preferred Size",
  15722. height: math.unit(5000, "km"),
  15723. default: true
  15724. },
  15725. {
  15726. name: "True Size",
  15727. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15728. },
  15729. ]
  15730. ))
  15731. characterMakers.push(() => makeCharacter(
  15732. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15733. {
  15734. front: {
  15735. height: math.unit(15, "feet"),
  15736. weight: math.unit(880, "kg"),
  15737. name: "Front",
  15738. image: {
  15739. source: "./media/characters/nightraver/front.svg",
  15740. extra: 2444 / 2160,
  15741. bottom: 0.027
  15742. }
  15743. },
  15744. back: {
  15745. height: math.unit(15, "feet"),
  15746. weight: math.unit(880, "kg"),
  15747. name: "Back",
  15748. image: {
  15749. source: "./media/characters/nightraver/back.svg",
  15750. extra: 2309 / 2180,
  15751. bottom: 0.005
  15752. }
  15753. },
  15754. sole: {
  15755. height: math.unit(2.878, "feet"),
  15756. name: "Sole",
  15757. image: {
  15758. source: "./media/characters/nightraver/sole.svg"
  15759. }
  15760. },
  15761. foot: {
  15762. height: math.unit(2.285, "feet"),
  15763. name: "Foot",
  15764. image: {
  15765. source: "./media/characters/nightraver/foot.svg"
  15766. }
  15767. },
  15768. maw: {
  15769. height: math.unit(2.67, "feet"),
  15770. name: "Maw",
  15771. image: {
  15772. source: "./media/characters/nightraver/maw.svg"
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Micro",
  15779. height: math.unit(1, "cm")
  15780. },
  15781. {
  15782. name: "Normal",
  15783. height: math.unit(15, "feet"),
  15784. default: true
  15785. },
  15786. {
  15787. name: "Macro",
  15788. height: math.unit(300, "feet")
  15789. },
  15790. {
  15791. name: "Megamacro",
  15792. height: math.unit(300, "miles")
  15793. },
  15794. {
  15795. name: "Gigamacro",
  15796. height: math.unit(10000, "miles")
  15797. },
  15798. ]
  15799. ))
  15800. characterMakers.push(() => makeCharacter(
  15801. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15802. {
  15803. side: {
  15804. height: math.unit(2, "inches"),
  15805. weight: math.unit(5, "grams"),
  15806. name: "Side",
  15807. image: {
  15808. source: "./media/characters/arc/side.svg"
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Micro",
  15815. height: math.unit(2, "inches"),
  15816. default: true
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15822. {
  15823. front: {
  15824. height: math.unit(1.1938, "meters"),
  15825. weight: math.unit(54, "kg"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/nebula-shahar/front.svg",
  15829. extra: 1642 / 1436,
  15830. bottom: 0.06
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Megamicro",
  15837. height: math.unit(0.3, "mm")
  15838. },
  15839. {
  15840. name: "Micro",
  15841. height: math.unit(3, "cm")
  15842. },
  15843. {
  15844. name: "Normal",
  15845. height: math.unit(138, "cm"),
  15846. default: true
  15847. },
  15848. {
  15849. name: "Macro",
  15850. height: math.unit(30, "m")
  15851. },
  15852. ]
  15853. ))
  15854. characterMakers.push(() => makeCharacter(
  15855. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15856. {
  15857. front: {
  15858. height: math.unit(5.24, "feet"),
  15859. weight: math.unit(150, "lb"),
  15860. name: "Front",
  15861. image: {
  15862. source: "./media/characters/shayla/front.svg",
  15863. extra: 1512 / 1414,
  15864. bottom: 0.01
  15865. }
  15866. },
  15867. back: {
  15868. height: math.unit(5.24, "feet"),
  15869. weight: math.unit(150, "lb"),
  15870. name: "Back",
  15871. image: {
  15872. source: "./media/characters/shayla/back.svg",
  15873. extra: 1512 / 1414
  15874. }
  15875. },
  15876. hand: {
  15877. height: math.unit(0.7781496062992126, "feet"),
  15878. name: "Hand",
  15879. image: {
  15880. source: "./media/characters/shayla/hand.svg"
  15881. }
  15882. },
  15883. foot: {
  15884. height: math.unit(1.4206036745406823, "feet"),
  15885. name: "Foot",
  15886. image: {
  15887. source: "./media/characters/shayla/foot.svg"
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Micro",
  15894. height: math.unit(0.32, "feet")
  15895. },
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(5.24, "feet"),
  15899. default: true
  15900. },
  15901. {
  15902. name: "Macro",
  15903. height: math.unit(492.12, "feet")
  15904. },
  15905. {
  15906. name: "Megamacro",
  15907. height: math.unit(186.41, "miles")
  15908. },
  15909. ]
  15910. ))
  15911. characterMakers.push(() => makeCharacter(
  15912. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15913. {
  15914. front: {
  15915. height: math.unit(2.2, "m"),
  15916. weight: math.unit(120, "kg"),
  15917. name: "Front",
  15918. image: {
  15919. source: "./media/characters/pia-jr/front.svg",
  15920. extra: 1000 / 970,
  15921. bottom: 0.035
  15922. }
  15923. },
  15924. hand: {
  15925. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15926. name: "Hand",
  15927. image: {
  15928. source: "./media/characters/pia-jr/hand.svg"
  15929. }
  15930. },
  15931. paw: {
  15932. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15933. name: "Paw",
  15934. image: {
  15935. source: "./media/characters/pia-jr/paw.svg"
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Micro",
  15942. height: math.unit(1.2, "cm")
  15943. },
  15944. {
  15945. name: "Normal",
  15946. height: math.unit(2.2, "m"),
  15947. default: true
  15948. },
  15949. {
  15950. name: "Macro",
  15951. height: math.unit(180, "m")
  15952. },
  15953. {
  15954. name: "Megamacro",
  15955. height: math.unit(420, "km")
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(2, "m"),
  15964. weight: math.unit(115, "kg"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/pia-sr/front.svg",
  15968. extra: 760 / 730,
  15969. bottom: 0.015
  15970. }
  15971. },
  15972. back: {
  15973. height: math.unit(2, "m"),
  15974. weight: math.unit(115, "kg"),
  15975. name: "Back",
  15976. image: {
  15977. source: "./media/characters/pia-sr/back.svg",
  15978. extra: 760 / 730,
  15979. bottom: 0.01
  15980. }
  15981. },
  15982. hand: {
  15983. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15984. name: "Hand",
  15985. image: {
  15986. source: "./media/characters/pia-sr/hand.svg"
  15987. }
  15988. },
  15989. foot: {
  15990. height: math.unit(1.83, "feet"),
  15991. name: "Foot",
  15992. image: {
  15993. source: "./media/characters/pia-sr/foot.svg"
  15994. }
  15995. },
  15996. },
  15997. [
  15998. {
  15999. name: "Micro",
  16000. height: math.unit(88, "mm")
  16001. },
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(2, "m"),
  16005. default: true
  16006. },
  16007. {
  16008. name: "Macro",
  16009. height: math.unit(200, "m")
  16010. },
  16011. {
  16012. name: "Megamacro",
  16013. height: math.unit(420, "km")
  16014. },
  16015. ]
  16016. ))
  16017. characterMakers.push(() => makeCharacter(
  16018. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16019. {
  16020. front: {
  16021. height: math.unit(8 + 2 / 12, "feet"),
  16022. weight: math.unit(300, "lb"),
  16023. name: "Front",
  16024. image: {
  16025. source: "./media/characters/kibibyte/front.svg",
  16026. extra: 2221 / 2098,
  16027. bottom: 0.04
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Normal",
  16034. height: math.unit(8 + 2 / 12, "feet"),
  16035. default: true
  16036. },
  16037. {
  16038. name: "Socialable Macro",
  16039. height: math.unit(50, "feet")
  16040. },
  16041. {
  16042. name: "Macro",
  16043. height: math.unit(300, "feet")
  16044. },
  16045. {
  16046. name: "Megamacro",
  16047. height: math.unit(500, "miles")
  16048. },
  16049. ]
  16050. ))
  16051. characterMakers.push(() => makeCharacter(
  16052. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16053. {
  16054. front: {
  16055. height: math.unit(6, "feet"),
  16056. weight: math.unit(150, "lb"),
  16057. name: "Front",
  16058. image: {
  16059. source: "./media/characters/felix/front.svg",
  16060. extra: 762 / 722,
  16061. bottom: 0.02
  16062. }
  16063. },
  16064. frontClothed: {
  16065. height: math.unit(6, "feet"),
  16066. weight: math.unit(150, "lb"),
  16067. name: "Front (Clothed)",
  16068. image: {
  16069. source: "./media/characters/felix/front-clothed.svg",
  16070. extra: 762 / 722,
  16071. bottom: 0.02
  16072. }
  16073. },
  16074. },
  16075. [
  16076. {
  16077. name: "Normal",
  16078. height: math.unit(6 + 8 / 12, "feet"),
  16079. default: true
  16080. },
  16081. {
  16082. name: "Macro",
  16083. height: math.unit(2600, "feet")
  16084. },
  16085. {
  16086. name: "Megamacro",
  16087. height: math.unit(450, "miles")
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16093. {
  16094. front: {
  16095. height: math.unit(6 + 1 / 12, "feet"),
  16096. weight: math.unit(250, "lb"),
  16097. name: "Front",
  16098. image: {
  16099. source: "./media/characters/tobo/front.svg",
  16100. extra: 608 / 586,
  16101. bottom: 0.023
  16102. }
  16103. },
  16104. back: {
  16105. height: math.unit(6 + 1 / 12, "feet"),
  16106. weight: math.unit(250, "lb"),
  16107. name: "Back",
  16108. image: {
  16109. source: "./media/characters/tobo/back.svg",
  16110. extra: 608 / 586
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Nano",
  16117. height: math.unit(2, "nm")
  16118. },
  16119. {
  16120. name: "Megamicro",
  16121. height: math.unit(0.1, "mm")
  16122. },
  16123. {
  16124. name: "Micro",
  16125. height: math.unit(1, "inch"),
  16126. default: true
  16127. },
  16128. {
  16129. name: "Human-sized",
  16130. height: math.unit(6 + 1 / 12, "feet")
  16131. },
  16132. {
  16133. name: "Macro",
  16134. height: math.unit(250, "feet")
  16135. },
  16136. {
  16137. name: "Megamacro",
  16138. height: math.unit(75, "miles")
  16139. },
  16140. {
  16141. name: "Texas-sized",
  16142. height: math.unit(750, "miles")
  16143. },
  16144. {
  16145. name: "Teramacro",
  16146. height: math.unit(50000, "miles")
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(6, "feet"),
  16155. weight: math.unit(269, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/danny-kapowsky/front.svg",
  16159. extra: 766 / 736,
  16160. bottom: 0.044
  16161. }
  16162. },
  16163. back: {
  16164. height: math.unit(6, "feet"),
  16165. weight: math.unit(269, "lb"),
  16166. name: "Back",
  16167. image: {
  16168. source: "./media/characters/danny-kapowsky/back.svg",
  16169. extra: 797 / 760,
  16170. bottom: 0.025
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Macro",
  16177. height: math.unit(150, "feet"),
  16178. default: true
  16179. },
  16180. {
  16181. name: "Macro+",
  16182. height: math.unit(200, "feet")
  16183. },
  16184. {
  16185. name: "Macro++",
  16186. height: math.unit(300, "feet")
  16187. },
  16188. {
  16189. name: "Macro+++",
  16190. height: math.unit(400, "feet")
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16196. {
  16197. side: {
  16198. height: math.unit(6, "feet"),
  16199. weight: math.unit(170, "lb"),
  16200. name: "Side",
  16201. image: {
  16202. source: "./media/characters/finn/side.svg",
  16203. extra: 1953 / 1807,
  16204. bottom: 0.057
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Megamacro",
  16211. height: math.unit(14445, "feet"),
  16212. default: true
  16213. },
  16214. ]
  16215. ))
  16216. characterMakers.push(() => makeCharacter(
  16217. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16218. {
  16219. front: {
  16220. height: math.unit(5 + 6 / 12, "feet"),
  16221. weight: math.unit(125, "lb"),
  16222. name: "Front",
  16223. image: {
  16224. source: "./media/characters/roy/front.svg",
  16225. extra: 1,
  16226. bottom: 0.11
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Micro",
  16233. height: math.unit(3, "inches"),
  16234. default: true
  16235. },
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(5 + 6 / 12, "feet")
  16239. },
  16240. {
  16241. name: "Lesser Macro",
  16242. height: math.unit(60, "feet")
  16243. },
  16244. {
  16245. name: "Greater Macro",
  16246. height: math.unit(120, "feet")
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(6, "feet"),
  16255. weight: math.unit(100, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/aevsivs/front.svg",
  16259. extra: 1,
  16260. bottom: 0.03
  16261. }
  16262. },
  16263. back: {
  16264. height: math.unit(6, "feet"),
  16265. weight: math.unit(100, "lb"),
  16266. name: "Back",
  16267. image: {
  16268. source: "./media/characters/aevsivs/back.svg"
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Micro",
  16275. height: math.unit(2, "inches"),
  16276. default: true
  16277. },
  16278. {
  16279. name: "Normal",
  16280. height: math.unit(5, "feet")
  16281. },
  16282. ]
  16283. ))
  16284. characterMakers.push(() => makeCharacter(
  16285. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16286. {
  16287. front: {
  16288. height: math.unit(5 + 7 / 12, "feet"),
  16289. weight: math.unit(159, "lb"),
  16290. name: "Front",
  16291. image: {
  16292. source: "./media/characters/hildegard/front.svg",
  16293. extra: 289 / 269,
  16294. bottom: 7.63 / 297.8
  16295. }
  16296. },
  16297. back: {
  16298. height: math.unit(5 + 7 / 12, "feet"),
  16299. weight: math.unit(159, "lb"),
  16300. name: "Back",
  16301. image: {
  16302. source: "./media/characters/hildegard/back.svg",
  16303. extra: 280 / 260,
  16304. bottom: 2.3 / 282
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(5 + 7 / 12, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16318. {
  16319. bernard: {
  16320. height: math.unit(2 + 7 / 12, "feet"),
  16321. weight: math.unit(66, "lb"),
  16322. name: "Bernard",
  16323. rename: true,
  16324. image: {
  16325. source: "./media/characters/bernard-wilder/bernard.svg",
  16326. extra: 192 / 128,
  16327. bottom: 0.05
  16328. }
  16329. },
  16330. wilder: {
  16331. height: math.unit(5 + 8 / 12, "feet"),
  16332. weight: math.unit(143, "lb"),
  16333. name: "Wilder",
  16334. rename: true,
  16335. image: {
  16336. source: "./media/characters/bernard-wilder/wilder.svg",
  16337. extra: 361 / 312,
  16338. bottom: 0.02
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Normal",
  16345. height: math.unit(2 + 7 / 12, "feet"),
  16346. default: true
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16352. {
  16353. anthro: {
  16354. height: math.unit(6 + 1 / 12, "feet"),
  16355. weight: math.unit(155, "lb"),
  16356. name: "Anthro",
  16357. image: {
  16358. source: "./media/characters/hearth/anthro.svg",
  16359. extra: 1178/1136,
  16360. bottom: 28/1206
  16361. }
  16362. },
  16363. feral: {
  16364. height: math.unit(3.78, "feet"),
  16365. weight: math.unit(35, "kg"),
  16366. name: "Feral",
  16367. image: {
  16368. source: "./media/characters/hearth/feral.svg",
  16369. extra: 153 / 135,
  16370. bottom: 0.03
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(6 + 1 / 12, "feet"),
  16378. default: true
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16384. {
  16385. front: {
  16386. height: math.unit(6, "feet"),
  16387. weight: math.unit(182, "lb"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/ingrid/front.svg",
  16391. extra: 294 / 268,
  16392. bottom: 0.027
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(6, "feet"),
  16400. default: true
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16406. {
  16407. eevee: {
  16408. height: math.unit(2 + 10 / 12, "feet"),
  16409. weight: math.unit(86, "lb"),
  16410. name: "Malgam",
  16411. image: {
  16412. source: "./media/characters/malgam/eevee.svg",
  16413. extra: 952/784,
  16414. bottom: 38/990
  16415. }
  16416. },
  16417. sylveon: {
  16418. height: math.unit(4, "feet"),
  16419. weight: math.unit(101, "lb"),
  16420. name: "Future Malgam",
  16421. rename: true,
  16422. image: {
  16423. source: "./media/characters/malgam/sylveon.svg",
  16424. extra: 371 / 325,
  16425. bottom: 0.015
  16426. }
  16427. },
  16428. gigantamax: {
  16429. height: math.unit(50, "feet"),
  16430. name: "Gigantamax Malgam",
  16431. rename: true,
  16432. image: {
  16433. source: "./media/characters/malgam/gigantamax.svg"
  16434. }
  16435. },
  16436. },
  16437. [
  16438. {
  16439. name: "Normal",
  16440. height: math.unit(2 + 10 / 12, "feet"),
  16441. default: true
  16442. },
  16443. ]
  16444. ))
  16445. characterMakers.push(() => makeCharacter(
  16446. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16447. {
  16448. front: {
  16449. height: math.unit(5 + 11 / 12, "feet"),
  16450. weight: math.unit(188, "lb"),
  16451. name: "Front",
  16452. image: {
  16453. source: "./media/characters/fleur/front.svg",
  16454. extra: 309 / 283,
  16455. bottom: 0.007
  16456. }
  16457. },
  16458. },
  16459. [
  16460. {
  16461. name: "Normal",
  16462. height: math.unit(5 + 11 / 12, "feet"),
  16463. default: true
  16464. },
  16465. ]
  16466. ))
  16467. characterMakers.push(() => makeCharacter(
  16468. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16469. {
  16470. front: {
  16471. height: math.unit(5 + 4 / 12, "feet"),
  16472. weight: math.unit(122, "lb"),
  16473. name: "Front",
  16474. image: {
  16475. source: "./media/characters/jude/front.svg",
  16476. extra: 288 / 273,
  16477. bottom: 0.03
  16478. }
  16479. },
  16480. },
  16481. [
  16482. {
  16483. name: "Normal",
  16484. height: math.unit(5 + 4 / 12, "feet"),
  16485. default: true
  16486. },
  16487. ]
  16488. ))
  16489. characterMakers.push(() => makeCharacter(
  16490. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16491. {
  16492. front: {
  16493. height: math.unit(5 + 11 / 12, "feet"),
  16494. weight: math.unit(190, "lb"),
  16495. name: "Front",
  16496. image: {
  16497. source: "./media/characters/seara/front.svg",
  16498. extra: 1,
  16499. bottom: 0.05
  16500. }
  16501. },
  16502. },
  16503. [
  16504. {
  16505. name: "Normal",
  16506. height: math.unit(5 + 11 / 12, "feet"),
  16507. default: true
  16508. },
  16509. ]
  16510. ))
  16511. characterMakers.push(() => makeCharacter(
  16512. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16513. {
  16514. front: {
  16515. height: math.unit(16 + 5 / 12, "feet"),
  16516. weight: math.unit(524, "lb"),
  16517. name: "Front",
  16518. image: {
  16519. source: "./media/characters/caspian-lugia/front.svg",
  16520. extra: 1,
  16521. bottom: 0.04
  16522. }
  16523. },
  16524. },
  16525. [
  16526. {
  16527. name: "Normal",
  16528. height: math.unit(16 + 5 / 12, "feet"),
  16529. default: true
  16530. },
  16531. ]
  16532. ))
  16533. characterMakers.push(() => makeCharacter(
  16534. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16535. {
  16536. front: {
  16537. height: math.unit(5 + 7 / 12, "feet"),
  16538. weight: math.unit(170, "lb"),
  16539. name: "Front",
  16540. image: {
  16541. source: "./media/characters/mika/front.svg",
  16542. extra: 1,
  16543. bottom: 0.016
  16544. }
  16545. },
  16546. },
  16547. [
  16548. {
  16549. name: "Normal",
  16550. height: math.unit(5 + 7 / 12, "feet"),
  16551. default: true
  16552. },
  16553. ]
  16554. ))
  16555. characterMakers.push(() => makeCharacter(
  16556. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16557. {
  16558. front: {
  16559. height: math.unit(6 + 2 / 12, "feet"),
  16560. weight: math.unit(268, "lb"),
  16561. name: "Front",
  16562. image: {
  16563. source: "./media/characters/sol/front.svg",
  16564. extra: 247 / 231,
  16565. bottom: 0.05
  16566. }
  16567. },
  16568. },
  16569. [
  16570. {
  16571. name: "Normal",
  16572. height: math.unit(6 + 2 / 12, "feet"),
  16573. default: true
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16579. {
  16580. buizel: {
  16581. height: math.unit(2 + 5 / 12, "feet"),
  16582. weight: math.unit(87, "lb"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/umiko/buizel.svg",
  16586. extra: 172 / 157,
  16587. bottom: 0.01
  16588. },
  16589. form: "buizel",
  16590. default: true
  16591. },
  16592. floatzel: {
  16593. height: math.unit(5 + 9 / 12, "feet"),
  16594. weight: math.unit(250, "lb"),
  16595. name: "Front",
  16596. image: {
  16597. source: "./media/characters/umiko/floatzel.svg",
  16598. extra: 1076/1006,
  16599. bottom: 15/1091
  16600. },
  16601. form: "floatzel",
  16602. default: true
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Normal",
  16608. height: math.unit(2 + 5 / 12, "feet"),
  16609. form: "buizel",
  16610. default: true
  16611. },
  16612. {
  16613. name: "Normal",
  16614. height: math.unit(5 + 9 / 12, "feet"),
  16615. form: "floatzel",
  16616. default: true
  16617. },
  16618. ],
  16619. {
  16620. "buizel": {
  16621. name: "Buizel"
  16622. },
  16623. "floatzel": {
  16624. name: "Floatzel",
  16625. default: true
  16626. }
  16627. }
  16628. ))
  16629. characterMakers.push(() => makeCharacter(
  16630. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16631. {
  16632. front: {
  16633. height: math.unit(6 + 2 / 12, "feet"),
  16634. weight: math.unit(146, "lb"),
  16635. name: "Front",
  16636. image: {
  16637. source: "./media/characters/iliac/front.svg",
  16638. extra: 389 / 365,
  16639. bottom: 0.035
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Normal",
  16646. height: math.unit(6 + 2 / 12, "feet"),
  16647. default: true
  16648. },
  16649. ]
  16650. ))
  16651. characterMakers.push(() => makeCharacter(
  16652. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16653. {
  16654. front: {
  16655. height: math.unit(6, "feet"),
  16656. weight: math.unit(170, "lb"),
  16657. name: "Front",
  16658. image: {
  16659. source: "./media/characters/topaz/front.svg",
  16660. extra: 317 / 303,
  16661. bottom: 0.055
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(6, "feet"),
  16669. default: true
  16670. },
  16671. ]
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16675. {
  16676. front: {
  16677. height: math.unit(5 + 11 / 12, "feet"),
  16678. weight: math.unit(144, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/gabriel/front.svg",
  16682. extra: 285 / 262,
  16683. bottom: 0.004
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(5 + 11 / 12, "feet"),
  16691. default: true
  16692. },
  16693. ]
  16694. ))
  16695. characterMakers.push(() => makeCharacter(
  16696. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16697. {
  16698. side: {
  16699. height: math.unit(6 + 5 / 12, "feet"),
  16700. weight: math.unit(300, "lb"),
  16701. name: "Side",
  16702. image: {
  16703. source: "./media/characters/tempest-suicune/side.svg",
  16704. extra: 195 / 154,
  16705. bottom: 0.04
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Normal",
  16712. height: math.unit(6 + 5 / 12, "feet"),
  16713. default: true
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16719. {
  16720. front: {
  16721. height: math.unit(7 + 2 / 12, "feet"),
  16722. weight: math.unit(322, "lb"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/vulcan/front.svg",
  16726. extra: 154 / 147,
  16727. bottom: 0.04
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(7 + 2 / 12, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(5 + 10 / 12, "feet"),
  16744. weight: math.unit(264, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/gault/front.svg",
  16748. extra: 161 / 140,
  16749. bottom: 0.028
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(5 + 10 / 12, "feet"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(6, "feet"),
  16766. weight: math.unit(150, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/shard/front.svg",
  16770. extra: 273 / 238,
  16771. bottom: 0.02
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(3 + 6 / 12, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(5 + 11 / 12, "feet"),
  16788. weight: math.unit(146, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/ashe/front.svg",
  16792. extra: 400 / 373,
  16793. bottom: 0.01
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(5 + 11 / 12, "feet"),
  16801. default: true
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16807. {
  16808. front: {
  16809. height: math.unit(5 + 5 / 12, "feet"),
  16810. weight: math.unit(135, "lb"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/beatrix/front.svg",
  16814. extra: 392 / 379,
  16815. bottom: 0.01
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(6, "feet"),
  16823. default: true
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16829. {
  16830. front: {
  16831. height: math.unit(6 + 2/12, "feet"),
  16832. weight: math.unit(135, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/ignatius/front.svg",
  16836. extra: 1380/1259,
  16837. bottom: 27/1407
  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: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16851. {
  16852. front: {
  16853. height: math.unit(6 + 2 / 12, "feet"),
  16854. weight: math.unit(138, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/mei-li/front.svg",
  16858. extra: 237 / 229,
  16859. bottom: 0.03
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(6 + 2 / 12, "feet"),
  16867. default: true
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(2 + 4 / 12, "feet"),
  16876. weight: math.unit(62, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/puru/front.svg",
  16880. extra: 206 / 149,
  16881. bottom: 0.06
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(2 + 4 / 12, "feet"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16895. {
  16896. anthro: {
  16897. height: math.unit(5 + 8/12, "feet"),
  16898. weight: math.unit(200, "lb"),
  16899. energyNeed: math.unit(2000, "kcal"),
  16900. name: "Anthro",
  16901. image: {
  16902. source: "./media/characters/kee/anthro.svg",
  16903. extra: 3251/3184,
  16904. bottom: 250/3501
  16905. }
  16906. },
  16907. taur: {
  16908. height: math.unit(11, "feet"),
  16909. weight: math.unit(500, "lb"),
  16910. energyNeed: math.unit(5000, "kcal"),
  16911. name: "Taur",
  16912. image: {
  16913. source: "./media/characters/kee/taur.svg",
  16914. extra: 1362/1320,
  16915. bottom: 83/1445
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Normal",
  16922. height: math.unit(5 + 8/12, "feet"),
  16923. default: true
  16924. },
  16925. {
  16926. name: "Macro",
  16927. height: math.unit(35, "feet")
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16933. {
  16934. anthro: {
  16935. height: math.unit(7, "feet"),
  16936. weight: math.unit(190, "lb"),
  16937. name: "Anthro",
  16938. image: {
  16939. source: "./media/characters/cobalt-dracha/anthro.svg",
  16940. extra: 231 / 225,
  16941. bottom: 0.04
  16942. }
  16943. },
  16944. feral: {
  16945. height: math.unit(9 + 7 / 12, "feet"),
  16946. weight: math.unit(294, "lb"),
  16947. name: "Feral",
  16948. image: {
  16949. source: "./media/characters/cobalt-dracha/feral.svg",
  16950. extra: 692 / 633,
  16951. bottom: 0.05
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Normal",
  16958. height: math.unit(7, "feet"),
  16959. default: true
  16960. },
  16961. ]
  16962. ))
  16963. characterMakers.push(() => makeCharacter(
  16964. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16965. {
  16966. fallen: {
  16967. height: math.unit(11 + 8 / 12, "feet"),
  16968. weight: math.unit(485, "lb"),
  16969. name: "Java (Fallen)",
  16970. rename: true,
  16971. image: {
  16972. source: "./media/characters/java/fallen.svg",
  16973. extra: 226 / 208,
  16974. bottom: 0.005
  16975. }
  16976. },
  16977. godkin: {
  16978. height: math.unit(10 + 6 / 12, "feet"),
  16979. weight: math.unit(328, "lb"),
  16980. name: "Java (Godkin)",
  16981. rename: true,
  16982. image: {
  16983. source: "./media/characters/java/godkin.svg",
  16984. extra: 1104/1068,
  16985. bottom: 36/1140
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(11 + 8 / 12, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16999. {
  17000. front: {
  17001. height: math.unit(5 + 9 / 12, "feet"),
  17002. weight: math.unit(170, "lb"),
  17003. name: "Front",
  17004. image: {
  17005. source: "./media/characters/purna/front.svg",
  17006. extra: 239 / 229,
  17007. bottom: 0.01
  17008. }
  17009. },
  17010. },
  17011. [
  17012. {
  17013. name: "Normal",
  17014. height: math.unit(5 + 9 / 12, "feet"),
  17015. default: true
  17016. },
  17017. ]
  17018. ))
  17019. characterMakers.push(() => makeCharacter(
  17020. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17021. {
  17022. front: {
  17023. height: math.unit(5 + 9 / 12, "feet"),
  17024. weight: math.unit(142, "lb"),
  17025. name: "Front",
  17026. image: {
  17027. source: "./media/characters/kuva/front.svg",
  17028. extra: 281 / 271,
  17029. bottom: 0.006
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(5 + 9 / 12, "feet"),
  17037. default: true
  17038. },
  17039. ]
  17040. ))
  17041. characterMakers.push(() => makeCharacter(
  17042. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17043. {
  17044. anthro: {
  17045. height: math.unit(9 + 2 / 12, "feet"),
  17046. weight: math.unit(270, "lb"),
  17047. name: "Anthro",
  17048. image: {
  17049. source: "./media/characters/embra/anthro.svg",
  17050. extra: 200 / 187,
  17051. bottom: 0.02
  17052. }
  17053. },
  17054. feral: {
  17055. height: math.unit(18 + 8 / 12, "feet"),
  17056. weight: math.unit(576, "lb"),
  17057. name: "Feral",
  17058. image: {
  17059. source: "./media/characters/embra/feral.svg",
  17060. extra: 152 / 137,
  17061. bottom: 0.037
  17062. }
  17063. },
  17064. },
  17065. [
  17066. {
  17067. name: "Normal",
  17068. height: math.unit(9 + 2 / 12, "feet"),
  17069. default: true
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17075. {
  17076. anthro: {
  17077. height: math.unit(10 + 9 / 12, "feet"),
  17078. weight: math.unit(224, "lb"),
  17079. name: "Anthro",
  17080. image: {
  17081. source: "./media/characters/grottos/anthro.svg",
  17082. extra: 350 / 332,
  17083. bottom: 0.045
  17084. }
  17085. },
  17086. feral: {
  17087. height: math.unit(20 + 7 / 12, "feet"),
  17088. weight: math.unit(629, "lb"),
  17089. name: "Feral",
  17090. image: {
  17091. source: "./media/characters/grottos/feral.svg",
  17092. extra: 207 / 190,
  17093. bottom: 0.05
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(10 + 9 / 12, "feet"),
  17101. default: true
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17107. {
  17108. anthro: {
  17109. height: math.unit(9 + 6 / 12, "feet"),
  17110. weight: math.unit(298, "lb"),
  17111. name: "Anthro",
  17112. image: {
  17113. source: "./media/characters/frifna/anthro.svg",
  17114. extra: 282 / 269,
  17115. bottom: 0.015
  17116. }
  17117. },
  17118. feral: {
  17119. height: math.unit(16 + 2 / 12, "feet"),
  17120. weight: math.unit(624, "lb"),
  17121. name: "Feral",
  17122. image: {
  17123. source: "./media/characters/frifna/feral.svg"
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(9 + 6 / 12, "feet"),
  17131. default: true
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17137. {
  17138. front: {
  17139. height: math.unit(6 + 2 / 12, "feet"),
  17140. weight: math.unit(168, "lb"),
  17141. name: "Front",
  17142. image: {
  17143. source: "./media/characters/elise/front.svg",
  17144. extra: 276 / 271
  17145. }
  17146. },
  17147. },
  17148. [
  17149. {
  17150. name: "Normal",
  17151. height: math.unit(6 + 2 / 12, "feet"),
  17152. default: true
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17158. {
  17159. front: {
  17160. height: math.unit(5 + 10 / 12, "feet"),
  17161. weight: math.unit(210, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/glade/front.svg",
  17165. extra: 258 / 247,
  17166. bottom: 0.008
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(5 + 10 / 12, "feet"),
  17174. default: true
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17180. {
  17181. front: {
  17182. height: math.unit(5 + 10 / 12, "feet"),
  17183. weight: math.unit(129, "lb"),
  17184. name: "Front",
  17185. image: {
  17186. source: "./media/characters/rina/front.svg",
  17187. extra: 266 / 255,
  17188. bottom: 0.005
  17189. }
  17190. },
  17191. },
  17192. [
  17193. {
  17194. name: "Normal",
  17195. height: math.unit(5 + 10 / 12, "feet"),
  17196. default: true
  17197. },
  17198. ]
  17199. ))
  17200. characterMakers.push(() => makeCharacter(
  17201. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17202. {
  17203. front: {
  17204. height: math.unit(6 + 1 / 12, "feet"),
  17205. weight: math.unit(192, "lb"),
  17206. name: "Front",
  17207. image: {
  17208. source: "./media/characters/veronica/front.svg",
  17209. extra: 319 / 309,
  17210. bottom: 0.005
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(6 + 1 / 12, "feet"),
  17218. default: true
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17224. {
  17225. front: {
  17226. height: math.unit(9 + 3 / 12, "feet"),
  17227. weight: math.unit(1100, "lb"),
  17228. name: "Front",
  17229. image: {
  17230. source: "./media/characters/braxton/front.svg",
  17231. extra: 1057 / 984,
  17232. bottom: 0.05
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(9 + 3 / 12, "feet")
  17240. },
  17241. {
  17242. name: "Giant",
  17243. height: math.unit(300, "feet"),
  17244. default: true
  17245. },
  17246. {
  17247. name: "Macro",
  17248. height: math.unit(700, "feet")
  17249. },
  17250. {
  17251. name: "Megamacro",
  17252. height: math.unit(6000, "feet")
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17258. {
  17259. front: {
  17260. height: math.unit(6 + 7 / 12, "feet"),
  17261. weight: math.unit(150, "lb"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/blue-feyonics/front.svg",
  17265. extra: 1403 / 1306,
  17266. bottom: 0.047
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Normal",
  17273. height: math.unit(6 + 7 / 12, "feet"),
  17274. default: true
  17275. },
  17276. ]
  17277. ))
  17278. characterMakers.push(() => makeCharacter(
  17279. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17280. {
  17281. front: {
  17282. height: math.unit(1.8, "meters"),
  17283. weight: math.unit(60, "kg"),
  17284. name: "Front",
  17285. image: {
  17286. source: "./media/characters/maxwell/front.svg",
  17287. extra: 2060 / 1873
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Micro",
  17294. height: math.unit(1, "mm")
  17295. },
  17296. {
  17297. name: "Normal",
  17298. height: math.unit(1.8, "meter"),
  17299. default: true
  17300. },
  17301. {
  17302. name: "Macro",
  17303. height: math.unit(30, "meters")
  17304. },
  17305. {
  17306. name: "Megamacro",
  17307. height: math.unit(10, "km")
  17308. },
  17309. ]
  17310. ))
  17311. characterMakers.push(() => makeCharacter(
  17312. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17313. {
  17314. front: {
  17315. height: math.unit(6, "feet"),
  17316. weight: math.unit(150, "lb"),
  17317. name: "Front",
  17318. image: {
  17319. source: "./media/characters/jack/front.svg",
  17320. extra: 1754 / 1640,
  17321. bottom: 0.01
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Normal",
  17328. height: math.unit(80000, "feet"),
  17329. default: true
  17330. },
  17331. {
  17332. name: "Max size",
  17333. height: math.unit(10, "lightyears")
  17334. },
  17335. ]
  17336. ))
  17337. characterMakers.push(() => makeCharacter(
  17338. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17339. {
  17340. urban: {
  17341. height: math.unit(5, "feet"),
  17342. weight: math.unit(240, "lb"),
  17343. name: "Urban",
  17344. image: {
  17345. source: "./media/characters/cafat/urban.svg",
  17346. extra: 1223/1126,
  17347. bottom: 205/1428
  17348. }
  17349. },
  17350. summer: {
  17351. height: math.unit(5, "feet"),
  17352. weight: math.unit(240, "lb"),
  17353. name: "Summer",
  17354. image: {
  17355. source: "./media/characters/cafat/summer.svg",
  17356. extra: 1223/1126,
  17357. bottom: 205/1428
  17358. }
  17359. },
  17360. winter: {
  17361. height: math.unit(5, "feet"),
  17362. weight: math.unit(240, "lb"),
  17363. name: "Winter",
  17364. image: {
  17365. source: "./media/characters/cafat/winter.svg",
  17366. extra: 1223/1126,
  17367. bottom: 205/1428
  17368. }
  17369. },
  17370. lingerie: {
  17371. height: math.unit(5, "feet"),
  17372. weight: math.unit(240, "lb"),
  17373. name: "Lingerie",
  17374. image: {
  17375. source: "./media/characters/cafat/lingerie.svg",
  17376. extra: 1223/1126,
  17377. bottom: 205/1428
  17378. }
  17379. },
  17380. upright: {
  17381. height: math.unit(6.3, "feet"),
  17382. weight: math.unit(240, "lb"),
  17383. name: "Upright",
  17384. image: {
  17385. source: "./media/characters/cafat/upright.svg",
  17386. bottom: 0.01
  17387. }
  17388. },
  17389. uprightFull: {
  17390. height: math.unit(6.3, "feet"),
  17391. weight: math.unit(240, "lb"),
  17392. name: "Upright (Full)",
  17393. image: {
  17394. source: "./media/characters/cafat/upright-full.svg",
  17395. bottom: 0.01
  17396. }
  17397. },
  17398. },
  17399. [
  17400. {
  17401. name: "Small",
  17402. height: math.unit(5, "feet"),
  17403. default: true
  17404. },
  17405. {
  17406. name: "Large",
  17407. height: math.unit(13, "feet")
  17408. },
  17409. ]
  17410. ))
  17411. characterMakers.push(() => makeCharacter(
  17412. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17413. {
  17414. front: {
  17415. height: math.unit(6, "feet"),
  17416. weight: math.unit(150, "lb"),
  17417. name: "Front",
  17418. image: {
  17419. source: "./media/characters/verin-raharra/front.svg",
  17420. extra: 5019 / 4835,
  17421. bottom: 0.023
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(7 + 5 / 12, "feet"),
  17429. default: true
  17430. },
  17431. {
  17432. name: "Upsized",
  17433. height: math.unit(20, "feet")
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(7, "feet"),
  17442. weight: math.unit(230, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/nakata/front.svg",
  17446. extra: 1.005,
  17447. bottom: 0.01
  17448. }
  17449. },
  17450. },
  17451. [
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(7, "feet"),
  17455. default: true
  17456. },
  17457. {
  17458. name: "Big",
  17459. height: math.unit(14, "feet")
  17460. },
  17461. {
  17462. name: "Macro",
  17463. height: math.unit(400, "feet")
  17464. },
  17465. ]
  17466. ))
  17467. characterMakers.push(() => makeCharacter(
  17468. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17469. {
  17470. front: {
  17471. height: math.unit(4.91, "feet"),
  17472. weight: math.unit(100, "lb"),
  17473. name: "Front",
  17474. image: {
  17475. source: "./media/characters/lily/front.svg",
  17476. extra: 1585 / 1415,
  17477. bottom: 0.02
  17478. }
  17479. },
  17480. },
  17481. [
  17482. {
  17483. name: "Normal",
  17484. height: math.unit(4.91, "feet"),
  17485. default: true
  17486. },
  17487. ]
  17488. ))
  17489. characterMakers.push(() => makeCharacter(
  17490. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17491. {
  17492. laying: {
  17493. height: math.unit(4 + 4 / 12, "feet"),
  17494. weight: math.unit(600, "lb"),
  17495. name: "Laying",
  17496. image: {
  17497. source: "./media/characters/sheila/laying.svg",
  17498. extra: 1333 / 1265,
  17499. bottom: 0.16
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(4 + 4 / 12, "feet"),
  17507. default: true
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(6, "feet"),
  17516. weight: math.unit(190, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/sax/front.svg",
  17520. extra: 1187 / 973,
  17521. bottom: 0.042
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Micro",
  17528. height: math.unit(4, "inches"),
  17529. default: true
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17535. {
  17536. front: {
  17537. height: math.unit(6, "feet"),
  17538. weight: math.unit(150, "lb"),
  17539. name: "Front",
  17540. image: {
  17541. source: "./media/characters/pandora/front.svg",
  17542. extra: 2720 / 2556,
  17543. bottom: 0.015
  17544. }
  17545. },
  17546. back: {
  17547. height: math.unit(6, "feet"),
  17548. weight: math.unit(150, "lb"),
  17549. name: "Back",
  17550. image: {
  17551. source: "./media/characters/pandora/back.svg",
  17552. extra: 2720 / 2556,
  17553. bottom: 0.01
  17554. }
  17555. },
  17556. beans: {
  17557. height: math.unit(6 / 8, "feet"),
  17558. name: "Beans",
  17559. image: {
  17560. source: "./media/characters/pandora/beans.svg"
  17561. }
  17562. },
  17563. collar: {
  17564. height: math.unit(0.31, "feet"),
  17565. name: "Collar",
  17566. image: {
  17567. source: "./media/characters/pandora/collar.svg"
  17568. }
  17569. },
  17570. skirt: {
  17571. height: math.unit(6, "feet"),
  17572. weight: math.unit(150, "lb"),
  17573. name: "Skirt",
  17574. image: {
  17575. source: "./media/characters/pandora/skirt.svg",
  17576. extra: 1622 / 1525,
  17577. bottom: 0.015
  17578. }
  17579. },
  17580. hoodie: {
  17581. height: math.unit(6, "feet"),
  17582. weight: math.unit(150, "lb"),
  17583. name: "Hoodie",
  17584. image: {
  17585. source: "./media/characters/pandora/hoodie.svg",
  17586. extra: 1622 / 1525,
  17587. bottom: 0.015
  17588. }
  17589. },
  17590. casual: {
  17591. height: math.unit(6, "feet"),
  17592. weight: math.unit(150, "lb"),
  17593. name: "Casual",
  17594. image: {
  17595. source: "./media/characters/pandora/casual.svg",
  17596. extra: 1622 / 1525,
  17597. bottom: 0.015
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Normal",
  17604. height: math.unit(6, "feet")
  17605. },
  17606. {
  17607. name: "Big Steppy",
  17608. height: math.unit(1, "km"),
  17609. default: true
  17610. },
  17611. {
  17612. name: "Galactic Steppy",
  17613. height: math.unit(2, "gigameters")
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17619. {
  17620. side: {
  17621. height: math.unit(10, "feet"),
  17622. weight: math.unit(800, "kg"),
  17623. name: "Side",
  17624. image: {
  17625. source: "./media/characters/venio-darcony/side.svg",
  17626. extra: 1373 / 1003,
  17627. bottom: 0.037
  17628. }
  17629. },
  17630. front: {
  17631. height: math.unit(19, "feet"),
  17632. weight: math.unit(800, "kg"),
  17633. name: "Front",
  17634. image: {
  17635. source: "./media/characters/venio-darcony/front.svg"
  17636. }
  17637. },
  17638. back: {
  17639. height: math.unit(19, "feet"),
  17640. weight: math.unit(800, "kg"),
  17641. name: "Back",
  17642. image: {
  17643. source: "./media/characters/venio-darcony/back.svg"
  17644. }
  17645. },
  17646. sideNsfw: {
  17647. height: math.unit(10, "feet"),
  17648. weight: math.unit(800, "kg"),
  17649. name: "Side (NSFW)",
  17650. image: {
  17651. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17652. extra: 1373 / 1003,
  17653. bottom: 0.037
  17654. }
  17655. },
  17656. frontNsfw: {
  17657. height: math.unit(19, "feet"),
  17658. weight: math.unit(800, "kg"),
  17659. name: "Front (NSFW)",
  17660. image: {
  17661. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17662. }
  17663. },
  17664. backNsfw: {
  17665. height: math.unit(19, "feet"),
  17666. weight: math.unit(800, "kg"),
  17667. name: "Back (NSFW)",
  17668. image: {
  17669. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17670. }
  17671. },
  17672. sideArmored: {
  17673. height: math.unit(10, "feet"),
  17674. weight: math.unit(800, "kg"),
  17675. name: "Side (Armored)",
  17676. image: {
  17677. source: "./media/characters/venio-darcony/side-armored.svg",
  17678. extra: 1373 / 1003,
  17679. bottom: 0.037
  17680. }
  17681. },
  17682. frontArmored: {
  17683. height: math.unit(19, "feet"),
  17684. weight: math.unit(900, "kg"),
  17685. name: "Front (Armored)",
  17686. image: {
  17687. source: "./media/characters/venio-darcony/front-armored.svg"
  17688. }
  17689. },
  17690. backArmored: {
  17691. height: math.unit(19, "feet"),
  17692. weight: math.unit(900, "kg"),
  17693. name: "Back (Armored)",
  17694. image: {
  17695. source: "./media/characters/venio-darcony/back-armored.svg"
  17696. }
  17697. },
  17698. sword: {
  17699. height: math.unit(10, "feet"),
  17700. weight: math.unit(50, "lb"),
  17701. name: "Sword",
  17702. image: {
  17703. source: "./media/characters/venio-darcony/sword.svg"
  17704. }
  17705. },
  17706. },
  17707. [
  17708. {
  17709. name: "Normal",
  17710. height: math.unit(10, "feet")
  17711. },
  17712. {
  17713. name: "Macro",
  17714. height: math.unit(130, "feet"),
  17715. default: true
  17716. },
  17717. {
  17718. name: "Macro+",
  17719. height: math.unit(240, "feet")
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17725. {
  17726. front: {
  17727. height: math.unit(6, "feet"),
  17728. weight: math.unit(150, "lb"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/veski/front.svg",
  17732. extra: 1299 / 1225,
  17733. bottom: 0.04
  17734. }
  17735. },
  17736. back: {
  17737. height: math.unit(6, "feet"),
  17738. weight: math.unit(150, "lb"),
  17739. name: "Back",
  17740. image: {
  17741. source: "./media/characters/veski/back.svg",
  17742. extra: 1299 / 1225,
  17743. bottom: 0.008
  17744. }
  17745. },
  17746. maw: {
  17747. height: math.unit(1.5 * 1.21, "feet"),
  17748. name: "Maw",
  17749. image: {
  17750. source: "./media/characters/veski/maw.svg"
  17751. }
  17752. },
  17753. },
  17754. [
  17755. {
  17756. name: "Macro",
  17757. height: math.unit(2, "km"),
  17758. default: true
  17759. },
  17760. ]
  17761. ))
  17762. characterMakers.push(() => makeCharacter(
  17763. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17764. {
  17765. front: {
  17766. height: math.unit(5 + 7 / 12, "feet"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/isabelle/front.svg",
  17770. extra: 2130 / 1976,
  17771. bottom: 0.05
  17772. }
  17773. },
  17774. },
  17775. [
  17776. {
  17777. name: "Supermicro",
  17778. height: math.unit(10, "micrometers")
  17779. },
  17780. {
  17781. name: "Micro",
  17782. height: math.unit(1, "inch")
  17783. },
  17784. {
  17785. name: "Tiny",
  17786. height: math.unit(5, "inches")
  17787. },
  17788. {
  17789. name: "Standard",
  17790. height: math.unit(5 + 7 / 12, "inches")
  17791. },
  17792. {
  17793. name: "Macro",
  17794. height: math.unit(80, "meters"),
  17795. default: true
  17796. },
  17797. {
  17798. name: "Megamacro",
  17799. height: math.unit(250, "meters")
  17800. },
  17801. {
  17802. name: "Gigamacro",
  17803. height: math.unit(5, "km")
  17804. },
  17805. {
  17806. name: "Cosmic",
  17807. height: math.unit(2.5e6, "miles")
  17808. },
  17809. ]
  17810. ))
  17811. characterMakers.push(() => makeCharacter(
  17812. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17813. {
  17814. front: {
  17815. height: math.unit(6, "feet"),
  17816. weight: math.unit(150, "lb"),
  17817. name: "Front",
  17818. image: {
  17819. source: "./media/characters/hanzo/front.svg",
  17820. extra: 374 / 344,
  17821. bottom: 0.02
  17822. }
  17823. },
  17824. },
  17825. [
  17826. {
  17827. name: "Normal",
  17828. height: math.unit(8, "feet"),
  17829. default: true
  17830. },
  17831. ]
  17832. ))
  17833. characterMakers.push(() => makeCharacter(
  17834. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17835. {
  17836. front: {
  17837. height: math.unit(7, "feet"),
  17838. weight: math.unit(130, "lb"),
  17839. name: "Front",
  17840. image: {
  17841. source: "./media/characters/anna/front.svg",
  17842. extra: 169 / 145,
  17843. bottom: 0.06
  17844. }
  17845. },
  17846. full: {
  17847. height: math.unit(4.96, "feet"),
  17848. weight: math.unit(220, "lb"),
  17849. name: "Full",
  17850. image: {
  17851. source: "./media/characters/anna/full.svg",
  17852. extra: 138 / 114,
  17853. bottom: 0.15
  17854. }
  17855. },
  17856. tongue: {
  17857. height: math.unit(2.53, "feet"),
  17858. name: "Tongue",
  17859. image: {
  17860. source: "./media/characters/anna/tongue.svg"
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(7, "feet"),
  17868. default: true
  17869. },
  17870. ]
  17871. ))
  17872. characterMakers.push(() => makeCharacter(
  17873. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17874. {
  17875. front: {
  17876. height: math.unit(7, "feet"),
  17877. weight: math.unit(150, "lb"),
  17878. name: "Front",
  17879. image: {
  17880. source: "./media/characters/ian-corvid/front.svg",
  17881. extra: 150 / 142,
  17882. bottom: 0.02
  17883. }
  17884. },
  17885. back: {
  17886. height: math.unit(7, "feet"),
  17887. weight: math.unit(150, "lb"),
  17888. name: "Back",
  17889. image: {
  17890. source: "./media/characters/ian-corvid/back.svg",
  17891. extra: 150 / 143,
  17892. bottom: 0.01
  17893. }
  17894. },
  17895. stomping: {
  17896. height: math.unit(7, "feet"),
  17897. weight: math.unit(150, "lb"),
  17898. name: "Stomping",
  17899. image: {
  17900. source: "./media/characters/ian-corvid/stomping.svg",
  17901. extra: 76 / 72
  17902. }
  17903. },
  17904. sitting: {
  17905. height: math.unit(7 / 1.8, "feet"),
  17906. weight: math.unit(150, "lb"),
  17907. name: "Sitting",
  17908. image: {
  17909. source: "./media/characters/ian-corvid/sitting.svg",
  17910. extra: 1400 / 1269,
  17911. bottom: 0.15
  17912. }
  17913. },
  17914. },
  17915. [
  17916. {
  17917. name: "Tiny Microw",
  17918. height: math.unit(1, "inch")
  17919. },
  17920. {
  17921. name: "Microw",
  17922. height: math.unit(6, "inches")
  17923. },
  17924. {
  17925. name: "Crow",
  17926. height: math.unit(7 + 1 / 12, "feet"),
  17927. default: true
  17928. },
  17929. {
  17930. name: "Macrow",
  17931. height: math.unit(176, "feet")
  17932. },
  17933. ]
  17934. ))
  17935. characterMakers.push(() => makeCharacter(
  17936. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17937. {
  17938. front: {
  17939. height: math.unit(5 + 7 / 12, "feet"),
  17940. weight: math.unit(147, "lb"),
  17941. name: "Front",
  17942. image: {
  17943. source: "./media/characters/natalie-kellon/front.svg",
  17944. extra: 1214 / 1141,
  17945. bottom: 0.02
  17946. }
  17947. },
  17948. },
  17949. [
  17950. {
  17951. name: "Micro",
  17952. height: math.unit(1 / 16, "inch")
  17953. },
  17954. {
  17955. name: "Tiny",
  17956. height: math.unit(4, "inches")
  17957. },
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(5 + 7 / 12, "feet"),
  17961. default: true
  17962. },
  17963. {
  17964. name: "Amazon",
  17965. height: math.unit(12, "feet")
  17966. },
  17967. {
  17968. name: "Giantess",
  17969. height: math.unit(160, "meters")
  17970. },
  17971. {
  17972. name: "Titaness",
  17973. height: math.unit(800, "meters")
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17979. {
  17980. front: {
  17981. height: math.unit(6, "feet"),
  17982. weight: math.unit(150, "lb"),
  17983. name: "Front",
  17984. image: {
  17985. source: "./media/characters/alluria/front.svg",
  17986. extra: 806 / 738,
  17987. bottom: 0.01
  17988. }
  17989. },
  17990. side: {
  17991. height: math.unit(6, "feet"),
  17992. weight: math.unit(150, "lb"),
  17993. name: "Side",
  17994. image: {
  17995. source: "./media/characters/alluria/side.svg",
  17996. extra: 800 / 750,
  17997. }
  17998. },
  17999. back: {
  18000. height: math.unit(6, "feet"),
  18001. weight: math.unit(150, "lb"),
  18002. name: "Back",
  18003. image: {
  18004. source: "./media/characters/alluria/back.svg",
  18005. extra: 806 / 738,
  18006. }
  18007. },
  18008. frontMaid: {
  18009. height: math.unit(6, "feet"),
  18010. weight: math.unit(150, "lb"),
  18011. name: "Front (Maid)",
  18012. image: {
  18013. source: "./media/characters/alluria/front-maid.svg",
  18014. extra: 806 / 738,
  18015. bottom: 0.01
  18016. }
  18017. },
  18018. sideMaid: {
  18019. height: math.unit(6, "feet"),
  18020. weight: math.unit(150, "lb"),
  18021. name: "Side (Maid)",
  18022. image: {
  18023. source: "./media/characters/alluria/side-maid.svg",
  18024. extra: 800 / 750,
  18025. bottom: 0.005
  18026. }
  18027. },
  18028. backMaid: {
  18029. height: math.unit(6, "feet"),
  18030. weight: math.unit(150, "lb"),
  18031. name: "Back (Maid)",
  18032. image: {
  18033. source: "./media/characters/alluria/back-maid.svg",
  18034. extra: 806 / 738,
  18035. }
  18036. },
  18037. },
  18038. [
  18039. {
  18040. name: "Micro",
  18041. height: math.unit(6, "inches"),
  18042. default: true
  18043. },
  18044. ]
  18045. ))
  18046. characterMakers.push(() => makeCharacter(
  18047. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18048. {
  18049. front: {
  18050. height: math.unit(6, "feet"),
  18051. weight: math.unit(150, "lb"),
  18052. name: "Front",
  18053. image: {
  18054. source: "./media/characters/kyle/front.svg",
  18055. extra: 1069 / 962,
  18056. bottom: 77.228 / 1727.45
  18057. }
  18058. },
  18059. },
  18060. [
  18061. {
  18062. name: "Macro",
  18063. height: math.unit(150, "feet"),
  18064. default: true
  18065. },
  18066. ]
  18067. ))
  18068. characterMakers.push(() => makeCharacter(
  18069. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18070. {
  18071. front: {
  18072. height: math.unit(6, "feet"),
  18073. weight: math.unit(300, "lb"),
  18074. name: "Front",
  18075. image: {
  18076. source: "./media/characters/duncan/front.svg",
  18077. extra: 1650 / 1482,
  18078. bottom: 0.05
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Macro",
  18085. height: math.unit(100, "feet"),
  18086. default: true
  18087. },
  18088. ]
  18089. ))
  18090. characterMakers.push(() => makeCharacter(
  18091. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18092. {
  18093. front: {
  18094. height: math.unit(5 + 4 / 12, "feet"),
  18095. weight: math.unit(220, "lb"),
  18096. name: "Front",
  18097. image: {
  18098. source: "./media/characters/memory/front.svg",
  18099. extra: 3641 / 3545,
  18100. bottom: 0.03
  18101. }
  18102. },
  18103. back: {
  18104. height: math.unit(5 + 4 / 12, "feet"),
  18105. weight: math.unit(220, "lb"),
  18106. name: "Back",
  18107. image: {
  18108. source: "./media/characters/memory/back.svg",
  18109. extra: 3641 / 3545,
  18110. bottom: 0.025
  18111. }
  18112. },
  18113. frontSkirt: {
  18114. height: math.unit(5 + 4 / 12, "feet"),
  18115. weight: math.unit(220, "lb"),
  18116. name: "Front (Skirt)",
  18117. image: {
  18118. source: "./media/characters/memory/front-skirt.svg",
  18119. extra: 3641 / 3545,
  18120. bottom: 0.03
  18121. }
  18122. },
  18123. frontDress: {
  18124. height: math.unit(5 + 4 / 12, "feet"),
  18125. weight: math.unit(220, "lb"),
  18126. name: "Front (Dress)",
  18127. image: {
  18128. source: "./media/characters/memory/front-dress.svg",
  18129. extra: 3641 / 3545,
  18130. bottom: 0.03
  18131. }
  18132. },
  18133. },
  18134. [
  18135. {
  18136. name: "Micro",
  18137. height: math.unit(6, "inches"),
  18138. default: true
  18139. },
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(5 + 4 / 12, "feet")
  18143. },
  18144. ]
  18145. ))
  18146. characterMakers.push(() => makeCharacter(
  18147. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18148. {
  18149. front: {
  18150. height: math.unit(4 + 11 / 12, "feet"),
  18151. weight: math.unit(100, "lb"),
  18152. name: "Front",
  18153. image: {
  18154. source: "./media/characters/luno/front.svg",
  18155. extra: 1535 / 1487,
  18156. bottom: 0.03
  18157. }
  18158. },
  18159. },
  18160. [
  18161. {
  18162. name: "Micro",
  18163. height: math.unit(3, "inches")
  18164. },
  18165. {
  18166. name: "Normal",
  18167. height: math.unit(4 + 11 / 12, "feet"),
  18168. default: true
  18169. },
  18170. {
  18171. name: "Macro",
  18172. height: math.unit(300, "feet")
  18173. },
  18174. {
  18175. name: "Megamacro",
  18176. height: math.unit(700, "miles")
  18177. },
  18178. ]
  18179. ))
  18180. characterMakers.push(() => makeCharacter(
  18181. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18182. {
  18183. front: {
  18184. height: math.unit(6 + 2 / 12, "feet"),
  18185. weight: math.unit(170, "lb"),
  18186. name: "Front",
  18187. image: {
  18188. source: "./media/characters/jamesy/front.svg",
  18189. extra: 440 / 382,
  18190. bottom: 0.005
  18191. }
  18192. },
  18193. },
  18194. [
  18195. {
  18196. name: "Micro",
  18197. height: math.unit(3, "inches")
  18198. },
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(6 + 2 / 12, "feet"),
  18202. default: true
  18203. },
  18204. {
  18205. name: "Macro",
  18206. height: math.unit(300, "feet")
  18207. },
  18208. {
  18209. name: "Megamacro",
  18210. height: math.unit(700, "miles")
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18216. {
  18217. front: {
  18218. height: math.unit(6, "feet"),
  18219. weight: math.unit(160, "lb"),
  18220. name: "Front",
  18221. image: {
  18222. source: "./media/characters/mark/front.svg",
  18223. extra: 3300 / 3100,
  18224. bottom: 136.42 / 3440.47
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Macro",
  18231. height: math.unit(120, "meters")
  18232. },
  18233. {
  18234. name: "Bigger Macro",
  18235. height: math.unit(350, "meters")
  18236. },
  18237. {
  18238. name: "Megamacro",
  18239. height: math.unit(8, "km"),
  18240. default: true
  18241. },
  18242. {
  18243. name: "Continental",
  18244. height: math.unit(4550, "km")
  18245. },
  18246. {
  18247. name: "Planetary",
  18248. height: math.unit(65000, "km")
  18249. },
  18250. ]
  18251. ))
  18252. characterMakers.push(() => makeCharacter(
  18253. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18254. {
  18255. front: {
  18256. height: math.unit(6, "feet"),
  18257. weight: math.unit(400, "lb"),
  18258. name: "Front",
  18259. image: {
  18260. source: "./media/characters/mac/front.svg",
  18261. extra: 1048 / 987.7,
  18262. bottom: 60 / 1107.6,
  18263. }
  18264. },
  18265. },
  18266. [
  18267. {
  18268. name: "Macro",
  18269. height: math.unit(500, "feet"),
  18270. default: true
  18271. },
  18272. ]
  18273. ))
  18274. characterMakers.push(() => makeCharacter(
  18275. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18276. {
  18277. front: {
  18278. height: math.unit(5 + 2 / 12, "feet"),
  18279. weight: math.unit(190, "lb"),
  18280. name: "Front",
  18281. image: {
  18282. source: "./media/characters/bari/front.svg",
  18283. extra: 3156 / 2880,
  18284. bottom: 0.03
  18285. }
  18286. },
  18287. back: {
  18288. height: math.unit(5 + 2 / 12, "feet"),
  18289. weight: math.unit(190, "lb"),
  18290. name: "Back",
  18291. image: {
  18292. source: "./media/characters/bari/back.svg",
  18293. extra: 3260 / 2834,
  18294. bottom: 0.025
  18295. }
  18296. },
  18297. frontPlush: {
  18298. height: math.unit(5 + 2 / 12, "feet"),
  18299. weight: math.unit(190, "lb"),
  18300. name: "Front (Plush)",
  18301. image: {
  18302. source: "./media/characters/bari/front-plush.svg",
  18303. extra: 1112 / 1061,
  18304. bottom: 0.002
  18305. }
  18306. },
  18307. },
  18308. [
  18309. {
  18310. name: "Micro",
  18311. height: math.unit(3, "inches")
  18312. },
  18313. {
  18314. name: "Normal",
  18315. height: math.unit(5 + 2 / 12, "feet"),
  18316. default: true
  18317. },
  18318. {
  18319. name: "Macro",
  18320. height: math.unit(20, "feet")
  18321. },
  18322. ]
  18323. ))
  18324. characterMakers.push(() => makeCharacter(
  18325. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18326. {
  18327. front: {
  18328. height: math.unit(6 + 1 / 12, "feet"),
  18329. weight: math.unit(275, "lb"),
  18330. name: "Front",
  18331. image: {
  18332. source: "./media/characters/hunter-misha-raven/front.svg"
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Mortal",
  18339. height: math.unit(6 + 1 / 12, "feet")
  18340. },
  18341. {
  18342. name: "Divine",
  18343. height: math.unit(1.12134e34, "parsecs"),
  18344. default: true
  18345. },
  18346. ]
  18347. ))
  18348. characterMakers.push(() => makeCharacter(
  18349. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18350. {
  18351. front: {
  18352. height: math.unit(6 + 3 / 12, "feet"),
  18353. weight: math.unit(220, "lb"),
  18354. name: "Front",
  18355. image: {
  18356. source: "./media/characters/max-calore/front.svg",
  18357. extra: 1700 / 1648,
  18358. bottom: 0.01
  18359. }
  18360. },
  18361. back: {
  18362. height: math.unit(6 + 3 / 12, "feet"),
  18363. weight: math.unit(220, "lb"),
  18364. name: "Back",
  18365. image: {
  18366. source: "./media/characters/max-calore/back.svg",
  18367. extra: 1700 / 1648,
  18368. bottom: 0.01
  18369. }
  18370. },
  18371. },
  18372. [
  18373. {
  18374. name: "Normal",
  18375. height: math.unit(6 + 3 / 12, "feet"),
  18376. default: true
  18377. },
  18378. ]
  18379. ))
  18380. characterMakers.push(() => makeCharacter(
  18381. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18382. {
  18383. side: {
  18384. height: math.unit(2 + 8 / 12, "feet"),
  18385. weight: math.unit(99, "lb"),
  18386. name: "Side",
  18387. image: {
  18388. source: "./media/characters/aspen/side.svg",
  18389. extra: 152 / 138,
  18390. bottom: 0.032
  18391. }
  18392. },
  18393. },
  18394. [
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(2 + 8 / 12, "feet"),
  18398. default: true
  18399. },
  18400. ]
  18401. ))
  18402. characterMakers.push(() => makeCharacter(
  18403. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18404. {
  18405. side: {
  18406. height: math.unit(3 + 2 / 12, "feet"),
  18407. weight: math.unit(224, "lb"),
  18408. name: "Side",
  18409. image: {
  18410. source: "./media/characters/sheila-feral-wolf/side.svg",
  18411. extra: 179 / 166,
  18412. bottom: 0.03
  18413. }
  18414. },
  18415. },
  18416. [
  18417. {
  18418. name: "Normal",
  18419. height: math.unit(3 + 2 / 12, "feet"),
  18420. default: true
  18421. },
  18422. ]
  18423. ))
  18424. characterMakers.push(() => makeCharacter(
  18425. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18426. {
  18427. side: {
  18428. height: math.unit(1 + 9 / 12, "feet"),
  18429. weight: math.unit(38, "lb"),
  18430. name: "Side",
  18431. image: {
  18432. source: "./media/characters/michelle/side.svg",
  18433. extra: 147 / 136.7,
  18434. bottom: 0.03
  18435. }
  18436. },
  18437. },
  18438. [
  18439. {
  18440. name: "Normal",
  18441. height: math.unit(1 + 9 / 12, "feet"),
  18442. default: true
  18443. },
  18444. ]
  18445. ))
  18446. characterMakers.push(() => makeCharacter(
  18447. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18448. {
  18449. front: {
  18450. height: math.unit(1.54, "feet"),
  18451. weight: math.unit(50, "lb"),
  18452. name: "Front",
  18453. image: {
  18454. source: "./media/characters/nino/front.svg"
  18455. }
  18456. },
  18457. },
  18458. [
  18459. {
  18460. name: "Normal",
  18461. height: math.unit(1.54, "feet"),
  18462. default: true
  18463. },
  18464. ]
  18465. ))
  18466. characterMakers.push(() => makeCharacter(
  18467. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18468. {
  18469. front: {
  18470. height: math.unit(1.49, "feet"),
  18471. weight: math.unit(45, "lb"),
  18472. name: "Front",
  18473. image: {
  18474. source: "./media/characters/viola/front.svg"
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Normal",
  18481. height: math.unit(1.49, "feet"),
  18482. default: true
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18488. {
  18489. front: {
  18490. height: math.unit(6 + 5 / 12, "feet"),
  18491. weight: math.unit(580, "lb"),
  18492. name: "Front",
  18493. image: {
  18494. source: "./media/characters/atlas/front.svg",
  18495. extra: 298.5 / 290,
  18496. bottom: 0.015
  18497. }
  18498. },
  18499. },
  18500. [
  18501. {
  18502. name: "Normal",
  18503. height: math.unit(6 + 5 / 12, "feet"),
  18504. default: true
  18505. },
  18506. ]
  18507. ))
  18508. characterMakers.push(() => makeCharacter(
  18509. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18510. {
  18511. side: {
  18512. height: math.unit(15.6, "inches"),
  18513. weight: math.unit(10, "lb"),
  18514. name: "Side",
  18515. image: {
  18516. source: "./media/characters/davy/side.svg",
  18517. extra: 200 / 170,
  18518. bottom: 0.01
  18519. }
  18520. },
  18521. },
  18522. [
  18523. {
  18524. name: "Normal",
  18525. height: math.unit(15.6, "inches"),
  18526. default: true
  18527. },
  18528. ]
  18529. ))
  18530. characterMakers.push(() => makeCharacter(
  18531. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18532. {
  18533. side: {
  18534. height: math.unit(4 + 8 / 12, "feet"),
  18535. weight: math.unit(166, "lb"),
  18536. name: "Side",
  18537. image: {
  18538. source: "./media/characters/fiona/side.svg",
  18539. extra: 232 / 220,
  18540. bottom: 0.03
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Normal",
  18547. height: math.unit(4 + 8 / 12, "feet"),
  18548. default: true
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18554. {
  18555. front: {
  18556. height: math.unit(26, "inches"),
  18557. weight: math.unit(35, "lb"),
  18558. name: "Front",
  18559. image: {
  18560. source: "./media/characters/lyla/front.svg",
  18561. bottom: 0.1
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Normal",
  18568. height: math.unit(3, "feet"),
  18569. default: true
  18570. },
  18571. ]
  18572. ))
  18573. characterMakers.push(() => makeCharacter(
  18574. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18575. {
  18576. side: {
  18577. height: math.unit(1.8, "feet"),
  18578. weight: math.unit(44, "lb"),
  18579. name: "Side",
  18580. image: {
  18581. source: "./media/characters/perseus/side.svg",
  18582. bottom: 0.21
  18583. }
  18584. },
  18585. },
  18586. [
  18587. {
  18588. name: "Normal",
  18589. height: math.unit(1.8, "feet"),
  18590. default: true
  18591. },
  18592. ]
  18593. ))
  18594. characterMakers.push(() => makeCharacter(
  18595. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18596. {
  18597. side: {
  18598. height: math.unit(4 + 2 / 12, "feet"),
  18599. weight: math.unit(20, "lb"),
  18600. name: "Side",
  18601. image: {
  18602. source: "./media/characters/remus/side.svg"
  18603. }
  18604. },
  18605. },
  18606. [
  18607. {
  18608. name: "Normal",
  18609. height: math.unit(4 + 2 / 12, "feet"),
  18610. default: true
  18611. },
  18612. ]
  18613. ))
  18614. characterMakers.push(() => makeCharacter(
  18615. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18616. {
  18617. front: {
  18618. height: math.unit(4 + 11 / 12, "feet"),
  18619. weight: math.unit(114, "lb"),
  18620. name: "Front",
  18621. image: {
  18622. source: "./media/characters/raf/front.svg",
  18623. extra: 1504/1339,
  18624. bottom: 26/1530
  18625. }
  18626. },
  18627. side: {
  18628. height: math.unit(4 + 11 / 12, "feet"),
  18629. weight: math.unit(114, "lb"),
  18630. name: "Side",
  18631. image: {
  18632. source: "./media/characters/raf/side.svg",
  18633. extra: 1466/1316,
  18634. bottom: 29/1495
  18635. }
  18636. },
  18637. paw: {
  18638. height: math.unit(1.45, "feet"),
  18639. name: "Paw",
  18640. image: {
  18641. source: "./media/characters/raf/paw.svg"
  18642. },
  18643. extraAttributes: {
  18644. "toeSize": {
  18645. name: "Toe Size",
  18646. power: 2,
  18647. type: "area",
  18648. base: math.unit(0.004, "m^2")
  18649. },
  18650. "padSize": {
  18651. name: "Pad Size",
  18652. power: 2,
  18653. type: "area",
  18654. base: math.unit(0.04, "m^2")
  18655. },
  18656. "footSize": {
  18657. name: "Foot Size",
  18658. power: 2,
  18659. type: "area",
  18660. base: math.unit(0.08, "m^2")
  18661. },
  18662. }
  18663. },
  18664. },
  18665. [
  18666. {
  18667. name: "Micro",
  18668. height: math.unit(2, "inches")
  18669. },
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(4 + 11 / 12, "feet"),
  18673. default: true
  18674. },
  18675. {
  18676. name: "Macro",
  18677. height: math.unit(70, "feet")
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18683. {
  18684. front: {
  18685. height: math.unit(1.5, "meters"),
  18686. weight: math.unit(68, "kg"),
  18687. name: "Front",
  18688. image: {
  18689. source: "./media/characters/liam-einarr/front.svg",
  18690. extra: 2822 / 2666
  18691. }
  18692. },
  18693. back: {
  18694. height: math.unit(1.5, "meters"),
  18695. weight: math.unit(68, "kg"),
  18696. name: "Back",
  18697. image: {
  18698. source: "./media/characters/liam-einarr/back.svg",
  18699. extra: 2822 / 2666,
  18700. bottom: 0.015
  18701. }
  18702. },
  18703. },
  18704. [
  18705. {
  18706. name: "Normal",
  18707. height: math.unit(1.5, "meters"),
  18708. default: true
  18709. },
  18710. {
  18711. name: "Macro",
  18712. height: math.unit(150, "meters")
  18713. },
  18714. {
  18715. name: "Megamacro",
  18716. height: math.unit(35, "km")
  18717. },
  18718. ]
  18719. ))
  18720. characterMakers.push(() => makeCharacter(
  18721. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18722. {
  18723. front: {
  18724. height: math.unit(6, "feet"),
  18725. weight: math.unit(75, "kg"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/linda/front.svg",
  18729. extra: 930 / 874,
  18730. bottom: 0.004
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Normal",
  18737. height: math.unit(6, "feet"),
  18738. default: true
  18739. },
  18740. ]
  18741. ))
  18742. characterMakers.push(() => makeCharacter(
  18743. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18744. {
  18745. front: {
  18746. height: math.unit(6 + 8 / 12, "feet"),
  18747. weight: math.unit(220, "lb"),
  18748. name: "Front",
  18749. image: {
  18750. source: "./media/characters/caylex/front.svg",
  18751. extra: 821 / 772,
  18752. bottom: 0.07
  18753. }
  18754. },
  18755. back: {
  18756. height: math.unit(6 + 8 / 12, "feet"),
  18757. weight: math.unit(220, "lb"),
  18758. name: "Back",
  18759. image: {
  18760. source: "./media/characters/caylex/back.svg",
  18761. extra: 821 / 772,
  18762. bottom: 0.022
  18763. }
  18764. },
  18765. hand: {
  18766. height: math.unit(1.25, "feet"),
  18767. name: "Hand",
  18768. image: {
  18769. source: "./media/characters/caylex/hand.svg"
  18770. }
  18771. },
  18772. foot: {
  18773. height: math.unit(1.6, "feet"),
  18774. name: "Foot",
  18775. image: {
  18776. source: "./media/characters/caylex/foot.svg"
  18777. }
  18778. },
  18779. armored: {
  18780. height: math.unit(6 + 8 / 12, "feet"),
  18781. weight: math.unit(250, "lb"),
  18782. name: "Armored",
  18783. image: {
  18784. source: "./media/characters/caylex/armored.svg",
  18785. extra: 1420 / 1310,
  18786. bottom: 0.045
  18787. }
  18788. },
  18789. },
  18790. [
  18791. {
  18792. name: "Normal",
  18793. height: math.unit(6 + 8 / 12, "feet"),
  18794. default: true
  18795. },
  18796. {
  18797. name: "Normal+",
  18798. height: math.unit(12, "feet")
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18804. {
  18805. front: {
  18806. height: math.unit(7 + 6 / 12, "feet"),
  18807. weight: math.unit(288, "lb"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/alana/front.svg",
  18811. extra: 679 / 653,
  18812. bottom: 22.5 / 701
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(7 + 6 / 12, "feet")
  18820. },
  18821. {
  18822. name: "Large",
  18823. height: math.unit(50, "feet")
  18824. },
  18825. {
  18826. name: "Macro",
  18827. height: math.unit(100, "feet"),
  18828. default: true
  18829. },
  18830. {
  18831. name: "Macro+",
  18832. height: math.unit(200, "feet")
  18833. },
  18834. ]
  18835. ))
  18836. characterMakers.push(() => makeCharacter(
  18837. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18838. {
  18839. front: {
  18840. height: math.unit(6 + 1 / 12, "feet"),
  18841. weight: math.unit(210, "lb"),
  18842. name: "Front",
  18843. image: {
  18844. source: "./media/characters/hasani/front.svg",
  18845. extra: 244 / 232,
  18846. bottom: 0.01
  18847. }
  18848. },
  18849. back: {
  18850. height: math.unit(6 + 1 / 12, "feet"),
  18851. weight: math.unit(210, "lb"),
  18852. name: "Back",
  18853. image: {
  18854. source: "./media/characters/hasani/back.svg",
  18855. extra: 244 / 232,
  18856. bottom: 0.01
  18857. }
  18858. },
  18859. },
  18860. [
  18861. {
  18862. name: "Normal",
  18863. height: math.unit(6 + 1 / 12, "feet")
  18864. },
  18865. {
  18866. name: "Macro",
  18867. height: math.unit(175, "feet"),
  18868. default: true
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(1.82, "meters"),
  18877. weight: math.unit(140, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/nita/front.svg",
  18881. extra: 2473 / 2363,
  18882. bottom: 0.01
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(1.82, "m")
  18890. },
  18891. {
  18892. name: "Macro",
  18893. height: math.unit(300, "m")
  18894. },
  18895. {
  18896. name: "Mistake Canon",
  18897. height: math.unit(0.5, "miles"),
  18898. default: true
  18899. },
  18900. {
  18901. name: "Big Mistake",
  18902. height: math.unit(13, "miles")
  18903. },
  18904. {
  18905. name: "Playing God",
  18906. height: math.unit(2450, "miles")
  18907. },
  18908. ]
  18909. ))
  18910. characterMakers.push(() => makeCharacter(
  18911. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18912. {
  18913. front: {
  18914. height: math.unit(4, "feet"),
  18915. weight: math.unit(120, "lb"),
  18916. name: "Front",
  18917. image: {
  18918. source: "./media/characters/shiriko/front.svg",
  18919. extra: 970/934,
  18920. bottom: 5/975
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(4, "feet"),
  18928. default: true
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18934. {
  18935. front: {
  18936. height: math.unit(6, "feet"),
  18937. name: "front",
  18938. image: {
  18939. source: "./media/characters/deja/front.svg",
  18940. extra: 926 / 840,
  18941. bottom: 0.07
  18942. }
  18943. },
  18944. },
  18945. [
  18946. {
  18947. name: "Planck Length",
  18948. height: math.unit(1.6e-35, "meters")
  18949. },
  18950. {
  18951. name: "Normal",
  18952. height: math.unit(30.48, "meters"),
  18953. default: true
  18954. },
  18955. {
  18956. name: "Universal",
  18957. height: math.unit(8.8e26, "meters")
  18958. },
  18959. ]
  18960. ))
  18961. characterMakers.push(() => makeCharacter(
  18962. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18963. {
  18964. side: {
  18965. height: math.unit(8, "feet"),
  18966. weight: math.unit(6300, "lb"),
  18967. name: "Side",
  18968. image: {
  18969. source: "./media/characters/anima/side.svg",
  18970. bottom: 0.035
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(8, "feet"),
  18978. default: true
  18979. },
  18980. ]
  18981. ))
  18982. characterMakers.push(() => makeCharacter(
  18983. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18984. {
  18985. front: {
  18986. height: math.unit(8, "feet"),
  18987. weight: math.unit(350, "lb"),
  18988. name: "Front",
  18989. image: {
  18990. source: "./media/characters/bianca/front.svg",
  18991. extra: 234 / 225,
  18992. bottom: 0.03
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(8, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19006. {
  19007. front: {
  19008. height: math.unit(11 + 5/12, "feet"),
  19009. weight: math.unit(1200, "lb"),
  19010. name: "Front",
  19011. image: {
  19012. source: "./media/characters/adinia/front.svg",
  19013. extra: 1767/1641,
  19014. bottom: 44/1811
  19015. },
  19016. extraAttributes: {
  19017. "energyIntake": {
  19018. name: "Energy Intake",
  19019. power: 3,
  19020. type: "energy",
  19021. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19022. },
  19023. }
  19024. },
  19025. back: {
  19026. height: math.unit(11 + 5/12, "feet"),
  19027. weight: math.unit(1200, "lb"),
  19028. name: "Back",
  19029. image: {
  19030. source: "./media/characters/adinia/back.svg",
  19031. extra: 1834/1684,
  19032. bottom: 14/1848
  19033. },
  19034. extraAttributes: {
  19035. "energyIntake": {
  19036. name: "Energy Intake",
  19037. power: 3,
  19038. type: "energy",
  19039. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19040. },
  19041. }
  19042. },
  19043. maw: {
  19044. height: math.unit(3.79, "feet"),
  19045. name: "Maw",
  19046. image: {
  19047. source: "./media/characters/adinia/maw.svg"
  19048. }
  19049. },
  19050. rump: {
  19051. height: math.unit(4.6, "feet"),
  19052. name: "Rump",
  19053. image: {
  19054. source: "./media/characters/adinia/rump.svg"
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Normal",
  19061. height: math.unit(11 + 5 / 12, "feet"),
  19062. default: true
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19068. {
  19069. front: {
  19070. height: math.unit(3, "meters"),
  19071. weight: math.unit(200, "kg"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/lykasa/front.svg",
  19075. extra: 1076 / 976,
  19076. bottom: 0.06
  19077. }
  19078. },
  19079. },
  19080. [
  19081. {
  19082. name: "Normal",
  19083. height: math.unit(3, "meters")
  19084. },
  19085. {
  19086. name: "Kaiju",
  19087. height: math.unit(120, "meters"),
  19088. default: true
  19089. },
  19090. {
  19091. name: "Mega Kaiju",
  19092. height: math.unit(240, "km")
  19093. },
  19094. {
  19095. name: "Giga Kaiju",
  19096. height: math.unit(400, "megameters")
  19097. },
  19098. {
  19099. name: "Tera Kaiju",
  19100. height: math.unit(800, "gigameters")
  19101. },
  19102. {
  19103. name: "Kaiju Dragon Goddess",
  19104. height: math.unit(26, "zettaparsecs")
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19110. {
  19111. side: {
  19112. height: math.unit(283 / 124 * 6, "feet"),
  19113. weight: math.unit(35000, "lb"),
  19114. name: "Side",
  19115. image: {
  19116. source: "./media/characters/malfaren/side.svg",
  19117. extra: 1310/529,
  19118. bottom: 24/1334
  19119. }
  19120. },
  19121. front: {
  19122. height: math.unit(22.36, "feet"),
  19123. weight: math.unit(35000, "lb"),
  19124. name: "Front",
  19125. image: {
  19126. source: "./media/characters/malfaren/front.svg",
  19127. extra: 1237/1115,
  19128. bottom: 32/1269
  19129. }
  19130. },
  19131. maw: {
  19132. height: math.unit(6.9, "feet"),
  19133. name: "Maw",
  19134. image: {
  19135. source: "./media/characters/malfaren/maw.svg"
  19136. }
  19137. },
  19138. dick: {
  19139. height: math.unit(6.19, "feet"),
  19140. name: "Dick",
  19141. image: {
  19142. source: "./media/characters/malfaren/dick.svg"
  19143. }
  19144. },
  19145. eye: {
  19146. height: math.unit(0.69, "feet"),
  19147. name: "Eye",
  19148. image: {
  19149. source: "./media/characters/malfaren/eye.svg"
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Big",
  19156. height: math.unit(283 / 162 * 6, "feet"),
  19157. },
  19158. {
  19159. name: "Bigger",
  19160. height: math.unit(283 / 124 * 6, "feet")
  19161. },
  19162. {
  19163. name: "Massive",
  19164. height: math.unit(283 / 92 * 6, "feet"),
  19165. default: true
  19166. },
  19167. {
  19168. name: "👀💦",
  19169. height: math.unit(283 / 73 * 6, "feet"),
  19170. },
  19171. ]
  19172. ))
  19173. characterMakers.push(() => makeCharacter(
  19174. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19175. {
  19176. front: {
  19177. height: math.unit(1.7, "m"),
  19178. weight: math.unit(70, "kg"),
  19179. name: "Front",
  19180. image: {
  19181. source: "./media/characters/kernel/front.svg",
  19182. extra: 222 / 210,
  19183. bottom: 0.007
  19184. }
  19185. },
  19186. },
  19187. [
  19188. {
  19189. name: "Nano",
  19190. height: math.unit(17, "micrometers")
  19191. },
  19192. {
  19193. name: "Micro",
  19194. height: math.unit(1.7, "mm")
  19195. },
  19196. {
  19197. name: "Small",
  19198. height: math.unit(1.7, "cm")
  19199. },
  19200. {
  19201. name: "Normal",
  19202. height: math.unit(1.7, "m"),
  19203. default: true
  19204. },
  19205. ]
  19206. ))
  19207. characterMakers.push(() => makeCharacter(
  19208. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19209. {
  19210. front: {
  19211. height: math.unit(1.75, "meters"),
  19212. weight: math.unit(65, "kg"),
  19213. name: "Front",
  19214. image: {
  19215. source: "./media/characters/jayne-folest/front.svg",
  19216. extra: 2115 / 2007,
  19217. bottom: 0.02
  19218. }
  19219. },
  19220. back: {
  19221. height: math.unit(1.75, "meters"),
  19222. weight: math.unit(65, "kg"),
  19223. name: "Back",
  19224. image: {
  19225. source: "./media/characters/jayne-folest/back.svg",
  19226. extra: 2115 / 2007,
  19227. bottom: 0.005
  19228. }
  19229. },
  19230. frontClothed: {
  19231. height: math.unit(1.75, "meters"),
  19232. weight: math.unit(65, "kg"),
  19233. name: "Front (Clothed)",
  19234. image: {
  19235. source: "./media/characters/jayne-folest/front-clothed.svg",
  19236. extra: 2115 / 2007,
  19237. bottom: 0.035
  19238. }
  19239. },
  19240. hand: {
  19241. height: math.unit(1 / 1.260, "feet"),
  19242. name: "Hand",
  19243. image: {
  19244. source: "./media/characters/jayne-folest/hand.svg"
  19245. }
  19246. },
  19247. foot: {
  19248. height: math.unit(1 / 0.918, "feet"),
  19249. name: "Foot",
  19250. image: {
  19251. source: "./media/characters/jayne-folest/foot.svg"
  19252. }
  19253. },
  19254. },
  19255. [
  19256. {
  19257. name: "Micro",
  19258. height: math.unit(4, "cm")
  19259. },
  19260. {
  19261. name: "Normal",
  19262. height: math.unit(1.75, "meters")
  19263. },
  19264. {
  19265. name: "Macro",
  19266. height: math.unit(47.5, "meters"),
  19267. default: true
  19268. },
  19269. ]
  19270. ))
  19271. characterMakers.push(() => makeCharacter(
  19272. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19273. {
  19274. front: {
  19275. height: math.unit(180, "cm"),
  19276. weight: math.unit(70, "kg"),
  19277. name: "Front",
  19278. image: {
  19279. source: "./media/characters/algier/front.svg",
  19280. extra: 596 / 572,
  19281. bottom: 0.04
  19282. }
  19283. },
  19284. back: {
  19285. height: math.unit(180, "cm"),
  19286. weight: math.unit(70, "kg"),
  19287. name: "Back",
  19288. image: {
  19289. source: "./media/characters/algier/back.svg",
  19290. extra: 596 / 572,
  19291. bottom: 0.025
  19292. }
  19293. },
  19294. frontdressed: {
  19295. height: math.unit(180, "cm"),
  19296. weight: math.unit(150, "kg"),
  19297. name: "Front-dressed",
  19298. image: {
  19299. source: "./media/characters/algier/front-dressed.svg",
  19300. extra: 596 / 572,
  19301. bottom: 0.038
  19302. }
  19303. },
  19304. },
  19305. [
  19306. {
  19307. name: "Micro",
  19308. height: math.unit(5, "cm")
  19309. },
  19310. {
  19311. name: "Normal",
  19312. height: math.unit(180, "cm"),
  19313. default: true
  19314. },
  19315. {
  19316. name: "Macro",
  19317. height: math.unit(64, "m")
  19318. },
  19319. ]
  19320. ))
  19321. characterMakers.push(() => makeCharacter(
  19322. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19323. {
  19324. upright: {
  19325. height: math.unit(7, "feet"),
  19326. weight: math.unit(300, "lb"),
  19327. name: "Upright",
  19328. image: {
  19329. source: "./media/characters/pretzel/upright.svg",
  19330. extra: 534 / 522,
  19331. bottom: 0.065
  19332. }
  19333. },
  19334. sprawling: {
  19335. height: math.unit(3.75, "feet"),
  19336. weight: math.unit(300, "lb"),
  19337. name: "Sprawling",
  19338. image: {
  19339. source: "./media/characters/pretzel/sprawling.svg",
  19340. extra: 314 / 281,
  19341. bottom: 0.1
  19342. }
  19343. },
  19344. tongue: {
  19345. height: math.unit(2, "feet"),
  19346. name: "Tongue",
  19347. image: {
  19348. source: "./media/characters/pretzel/tongue.svg"
  19349. }
  19350. },
  19351. },
  19352. [
  19353. {
  19354. name: "Normal",
  19355. height: math.unit(7, "feet"),
  19356. default: true
  19357. },
  19358. {
  19359. name: "Oversized",
  19360. height: math.unit(15, "feet")
  19361. },
  19362. {
  19363. name: "Huge",
  19364. height: math.unit(30, "feet")
  19365. },
  19366. {
  19367. name: "Macro",
  19368. height: math.unit(250, "feet")
  19369. },
  19370. ]
  19371. ))
  19372. characterMakers.push(() => makeCharacter(
  19373. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19374. {
  19375. sideFront: {
  19376. height: math.unit(5 + 2 / 12, "feet"),
  19377. weight: math.unit(120, "lb"),
  19378. name: "Front Side",
  19379. image: {
  19380. source: "./media/characters/roxi/side-front.svg",
  19381. extra: 2924 / 2717,
  19382. bottom: 0.08
  19383. }
  19384. },
  19385. sideBack: {
  19386. height: math.unit(5 + 2 / 12, "feet"),
  19387. weight: math.unit(120, "lb"),
  19388. name: "Back Side",
  19389. image: {
  19390. source: "./media/characters/roxi/side-back.svg",
  19391. extra: 2904 / 2693,
  19392. bottom: 0.06
  19393. }
  19394. },
  19395. front: {
  19396. height: math.unit(5 + 2 / 12, "feet"),
  19397. weight: math.unit(120, "lb"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/roxi/front.svg",
  19401. extra: 2028 / 1907,
  19402. bottom: 0.01
  19403. }
  19404. },
  19405. frontAlt: {
  19406. height: math.unit(5 + 2 / 12, "feet"),
  19407. weight: math.unit(120, "lb"),
  19408. name: "Front (Alt)",
  19409. image: {
  19410. source: "./media/characters/roxi/front-alt.svg",
  19411. extra: 1828 / 1798,
  19412. bottom: 0.01
  19413. }
  19414. },
  19415. sitting: {
  19416. height: math.unit(2.8, "feet"),
  19417. weight: math.unit(120, "lb"),
  19418. name: "Sitting",
  19419. image: {
  19420. source: "./media/characters/roxi/sitting.svg",
  19421. extra: 2660 / 2462,
  19422. bottom: 0.1
  19423. }
  19424. },
  19425. },
  19426. [
  19427. {
  19428. name: "Normal",
  19429. height: math.unit(5 + 2 / 12, "feet"),
  19430. default: true
  19431. },
  19432. ]
  19433. ))
  19434. characterMakers.push(() => makeCharacter(
  19435. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19436. {
  19437. side: {
  19438. height: math.unit(55, "feet"),
  19439. weight: math.unit(153, "tons"),
  19440. name: "Side",
  19441. image: {
  19442. source: "./media/characters/shadow/side.svg",
  19443. extra: 701 / 628,
  19444. bottom: 0.02
  19445. }
  19446. },
  19447. flying: {
  19448. height: math.unit(145, "feet"),
  19449. weight: math.unit(153, "tons"),
  19450. name: "Flying",
  19451. image: {
  19452. source: "./media/characters/shadow/flying.svg"
  19453. }
  19454. },
  19455. },
  19456. [
  19457. {
  19458. name: "Normal",
  19459. height: math.unit(55, "feet"),
  19460. default: true
  19461. },
  19462. ]
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19466. {
  19467. front: {
  19468. height: math.unit(6, "feet"),
  19469. weight: math.unit(200, "lb"),
  19470. name: "Front",
  19471. image: {
  19472. source: "./media/characters/marcie/front.svg",
  19473. extra: 960 / 876,
  19474. bottom: 58 / 1017.87
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Macro",
  19481. height: math.unit(1, "mile"),
  19482. default: true
  19483. },
  19484. ]
  19485. ))
  19486. characterMakers.push(() => makeCharacter(
  19487. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19488. {
  19489. front: {
  19490. height: math.unit(7, "feet"),
  19491. weight: math.unit(200, "lb"),
  19492. name: "Front",
  19493. image: {
  19494. source: "./media/characters/kachina/front.svg",
  19495. extra: 1290.68 / 1119,
  19496. bottom: 36.5 / 1327.18
  19497. }
  19498. },
  19499. },
  19500. [
  19501. {
  19502. name: "Normal",
  19503. height: math.unit(7, "feet"),
  19504. default: true
  19505. },
  19506. ]
  19507. ))
  19508. characterMakers.push(() => makeCharacter(
  19509. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19510. {
  19511. looking: {
  19512. height: math.unit(2, "meters"),
  19513. weight: math.unit(300, "kg"),
  19514. name: "Looking",
  19515. image: {
  19516. source: "./media/characters/kash/looking.svg",
  19517. extra: 474 / 344,
  19518. bottom: 0.03
  19519. }
  19520. },
  19521. side: {
  19522. height: math.unit(2, "meters"),
  19523. weight: math.unit(300, "kg"),
  19524. name: "Side",
  19525. image: {
  19526. source: "./media/characters/kash/side.svg",
  19527. extra: 302 / 251,
  19528. bottom: 0.03
  19529. }
  19530. },
  19531. front: {
  19532. height: math.unit(2, "meters"),
  19533. weight: math.unit(300, "kg"),
  19534. name: "Front",
  19535. image: {
  19536. source: "./media/characters/kash/front.svg",
  19537. extra: 495 / 360,
  19538. bottom: 0.015
  19539. }
  19540. },
  19541. },
  19542. [
  19543. {
  19544. name: "Normal",
  19545. height: math.unit(2, "meters"),
  19546. default: true
  19547. },
  19548. {
  19549. name: "Big",
  19550. height: math.unit(3, "meters")
  19551. },
  19552. {
  19553. name: "Large",
  19554. height: math.unit(5, "meters")
  19555. },
  19556. ]
  19557. ))
  19558. characterMakers.push(() => makeCharacter(
  19559. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19560. {
  19561. feeding: {
  19562. height: math.unit(6.7, "feet"),
  19563. weight: math.unit(350, "lb"),
  19564. name: "Feeding",
  19565. image: {
  19566. source: "./media/characters/lalim/feeding.svg",
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Normal",
  19573. height: math.unit(6.7, "feet"),
  19574. default: true
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19580. {
  19581. front: {
  19582. height: math.unit(9.5, "feet"),
  19583. weight: math.unit(600, "lb"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/de'vout/front.svg",
  19587. extra: 1443 / 1328,
  19588. bottom: 0.025
  19589. }
  19590. },
  19591. back: {
  19592. height: math.unit(9.5, "feet"),
  19593. weight: math.unit(600, "lb"),
  19594. name: "Back",
  19595. image: {
  19596. source: "./media/characters/de'vout/back.svg",
  19597. extra: 1443 / 1328
  19598. }
  19599. },
  19600. frontDressed: {
  19601. height: math.unit(9.5, "feet"),
  19602. weight: math.unit(600, "lb"),
  19603. name: "Front (Dressed",
  19604. image: {
  19605. source: "./media/characters/de'vout/front-dressed.svg",
  19606. extra: 1443 / 1328,
  19607. bottom: 0.025
  19608. }
  19609. },
  19610. backDressed: {
  19611. height: math.unit(9.5, "feet"),
  19612. weight: math.unit(600, "lb"),
  19613. name: "Back (Dressed",
  19614. image: {
  19615. source: "./media/characters/de'vout/back-dressed.svg",
  19616. extra: 1443 / 1328
  19617. }
  19618. },
  19619. },
  19620. [
  19621. {
  19622. name: "Normal",
  19623. height: math.unit(9.5, "feet"),
  19624. default: true
  19625. },
  19626. ]
  19627. ))
  19628. characterMakers.push(() => makeCharacter(
  19629. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19630. {
  19631. front: {
  19632. height: math.unit(8, "feet"),
  19633. weight: math.unit(225, "lb"),
  19634. name: "Front",
  19635. image: {
  19636. source: "./media/characters/talana/front.svg",
  19637. extra: 1410 / 1300,
  19638. bottom: 0.015
  19639. }
  19640. },
  19641. frontDressed: {
  19642. height: math.unit(8, "feet"),
  19643. weight: math.unit(225, "lb"),
  19644. name: "Front (Dressed",
  19645. image: {
  19646. source: "./media/characters/talana/front-dressed.svg",
  19647. extra: 1410 / 1300,
  19648. bottom: 0.015
  19649. }
  19650. },
  19651. },
  19652. [
  19653. {
  19654. name: "Normal",
  19655. height: math.unit(8, "feet"),
  19656. default: true
  19657. },
  19658. ]
  19659. ))
  19660. characterMakers.push(() => makeCharacter(
  19661. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19662. {
  19663. side: {
  19664. height: math.unit(7.2, "feet"),
  19665. weight: math.unit(150, "lb"),
  19666. name: "Side",
  19667. image: {
  19668. source: "./media/characters/xeauvok/side.svg",
  19669. extra: 1975 / 1523,
  19670. bottom: 0.07
  19671. }
  19672. },
  19673. },
  19674. [
  19675. {
  19676. name: "Normal",
  19677. height: math.unit(7.2, "feet"),
  19678. default: true
  19679. },
  19680. ]
  19681. ))
  19682. characterMakers.push(() => makeCharacter(
  19683. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19684. {
  19685. side: {
  19686. height: math.unit(4, "meters"),
  19687. weight: math.unit(2200, "kg"),
  19688. name: "Side",
  19689. image: {
  19690. source: "./media/characters/zara/side.svg",
  19691. extra: 765/744,
  19692. bottom: 156/921
  19693. }
  19694. },
  19695. },
  19696. [
  19697. {
  19698. name: "Normal",
  19699. height: math.unit(4, "meters"),
  19700. default: true
  19701. },
  19702. ]
  19703. ))
  19704. characterMakers.push(() => makeCharacter(
  19705. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19706. {
  19707. side: {
  19708. height: math.unit(6, "feet"),
  19709. weight: math.unit(150, "lb"),
  19710. name: "Side",
  19711. image: {
  19712. source: "./media/characters/richard-dragon/side.svg",
  19713. extra: 845 / 340,
  19714. bottom: 0.017
  19715. }
  19716. },
  19717. maw: {
  19718. height: math.unit(2.97, "feet"),
  19719. name: "Maw",
  19720. image: {
  19721. source: "./media/characters/richard-dragon/maw.svg"
  19722. }
  19723. },
  19724. },
  19725. [
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19730. {
  19731. front: {
  19732. height: math.unit(4, "feet"),
  19733. weight: math.unit(100, "lb"),
  19734. name: "Front",
  19735. image: {
  19736. source: "./media/characters/richard-smeargle/front.svg",
  19737. extra: 2952 / 2820,
  19738. bottom: 0.028
  19739. }
  19740. },
  19741. },
  19742. [
  19743. {
  19744. name: "Normal",
  19745. height: math.unit(4, "feet"),
  19746. default: true
  19747. },
  19748. {
  19749. name: "Dynamax",
  19750. height: math.unit(20, "meters")
  19751. },
  19752. ]
  19753. ))
  19754. characterMakers.push(() => makeCharacter(
  19755. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19756. {
  19757. front: {
  19758. height: math.unit(6, "feet"),
  19759. weight: math.unit(110, "lb"),
  19760. name: "Front",
  19761. image: {
  19762. source: "./media/characters/klay/front.svg",
  19763. extra: 962 / 883,
  19764. bottom: 0.04
  19765. }
  19766. },
  19767. back: {
  19768. height: math.unit(6, "feet"),
  19769. weight: math.unit(110, "lb"),
  19770. name: "Back",
  19771. image: {
  19772. source: "./media/characters/klay/back.svg",
  19773. extra: 962 / 883
  19774. }
  19775. },
  19776. beans: {
  19777. height: math.unit(1.15, "feet"),
  19778. name: "Beans",
  19779. image: {
  19780. source: "./media/characters/klay/beans.svg"
  19781. }
  19782. },
  19783. },
  19784. [
  19785. {
  19786. name: "Micro",
  19787. height: math.unit(6, "inches")
  19788. },
  19789. {
  19790. name: "Mini",
  19791. height: math.unit(3, "feet")
  19792. },
  19793. {
  19794. name: "Normal",
  19795. height: math.unit(6, "feet"),
  19796. default: true
  19797. },
  19798. {
  19799. name: "Big",
  19800. height: math.unit(25, "feet")
  19801. },
  19802. {
  19803. name: "Macro",
  19804. height: math.unit(100, "feet")
  19805. },
  19806. {
  19807. name: "Megamacro",
  19808. height: math.unit(400, "feet")
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19814. {
  19815. front: {
  19816. height: math.unit(6, "feet"),
  19817. weight: math.unit(160, "lb"),
  19818. name: "Front",
  19819. image: {
  19820. source: "./media/characters/marcus/front.svg",
  19821. extra: 734 / 676,
  19822. bottom: 0.03
  19823. }
  19824. },
  19825. },
  19826. [
  19827. {
  19828. name: "Little",
  19829. height: math.unit(6, "feet")
  19830. },
  19831. {
  19832. name: "Normal",
  19833. height: math.unit(110, "feet"),
  19834. default: true
  19835. },
  19836. {
  19837. name: "Macro",
  19838. height: math.unit(250, "feet")
  19839. },
  19840. {
  19841. name: "Megamacro",
  19842. height: math.unit(1000, "feet")
  19843. },
  19844. ]
  19845. ))
  19846. characterMakers.push(() => makeCharacter(
  19847. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19848. {
  19849. front: {
  19850. height: math.unit(7, "feet"),
  19851. weight: math.unit(275, "lb"),
  19852. name: "Front",
  19853. image: {
  19854. source: "./media/characters/claude-delroute/front.svg",
  19855. extra: 902/827,
  19856. bottom: 26/928
  19857. }
  19858. },
  19859. side: {
  19860. height: math.unit(7, "feet"),
  19861. weight: math.unit(275, "lb"),
  19862. name: "Side",
  19863. image: {
  19864. source: "./media/characters/claude-delroute/side.svg",
  19865. extra: 908/853,
  19866. bottom: 16/924
  19867. }
  19868. },
  19869. back: {
  19870. height: math.unit(7, "feet"),
  19871. weight: math.unit(275, "lb"),
  19872. name: "Back",
  19873. image: {
  19874. source: "./media/characters/claude-delroute/back.svg",
  19875. extra: 911/829,
  19876. bottom: 18/929
  19877. }
  19878. },
  19879. maw: {
  19880. height: math.unit(0.6407, "meters"),
  19881. name: "Maw",
  19882. image: {
  19883. source: "./media/characters/claude-delroute/maw.svg"
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(7, "feet"),
  19891. default: true
  19892. },
  19893. {
  19894. name: "Lorge",
  19895. height: math.unit(20, "feet")
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19901. {
  19902. front: {
  19903. height: math.unit(8 + 4 / 12, "feet"),
  19904. weight: math.unit(600, "lb"),
  19905. name: "Front",
  19906. image: {
  19907. source: "./media/characters/dragonien/front.svg",
  19908. extra: 100 / 94,
  19909. bottom: 3.3 / 103.3445
  19910. }
  19911. },
  19912. back: {
  19913. height: math.unit(8 + 4 / 12, "feet"),
  19914. weight: math.unit(600, "lb"),
  19915. name: "Back",
  19916. image: {
  19917. source: "./media/characters/dragonien/back.svg",
  19918. extra: 776 / 746,
  19919. bottom: 6.4 / 782.0616
  19920. }
  19921. },
  19922. foot: {
  19923. height: math.unit(1.54, "feet"),
  19924. name: "Foot",
  19925. image: {
  19926. source: "./media/characters/dragonien/foot.svg",
  19927. }
  19928. },
  19929. },
  19930. [
  19931. {
  19932. name: "Normal",
  19933. height: math.unit(8 + 4 / 12, "feet"),
  19934. default: true
  19935. },
  19936. {
  19937. name: "Macro",
  19938. height: math.unit(200, "feet")
  19939. },
  19940. {
  19941. name: "Megamacro",
  19942. height: math.unit(1, "mile")
  19943. },
  19944. {
  19945. name: "Gigamacro",
  19946. height: math.unit(1000, "miles")
  19947. },
  19948. ]
  19949. ))
  19950. characterMakers.push(() => makeCharacter(
  19951. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19952. {
  19953. front: {
  19954. height: math.unit(5 + 2 / 12, "feet"),
  19955. weight: math.unit(110, "lb"),
  19956. name: "Front",
  19957. image: {
  19958. source: "./media/characters/desta/front.svg",
  19959. extra: 767 / 726,
  19960. bottom: 11.7 / 779
  19961. }
  19962. },
  19963. back: {
  19964. height: math.unit(5 + 2 / 12, "feet"),
  19965. weight: math.unit(110, "lb"),
  19966. name: "Back",
  19967. image: {
  19968. source: "./media/characters/desta/back.svg",
  19969. extra: 777 / 728,
  19970. bottom: 6 / 784
  19971. }
  19972. },
  19973. frontAlt: {
  19974. height: math.unit(5 + 2 / 12, "feet"),
  19975. weight: math.unit(110, "lb"),
  19976. name: "Front",
  19977. image: {
  19978. source: "./media/characters/desta/front-alt.svg",
  19979. extra: 1482 / 1417
  19980. }
  19981. },
  19982. side: {
  19983. height: math.unit(5 + 2 / 12, "feet"),
  19984. weight: math.unit(110, "lb"),
  19985. name: "Side",
  19986. image: {
  19987. source: "./media/characters/desta/side.svg",
  19988. extra: 2579 / 2491,
  19989. bottom: 0.053
  19990. }
  19991. },
  19992. },
  19993. [
  19994. {
  19995. name: "Micro",
  19996. height: math.unit(6, "inches")
  19997. },
  19998. {
  19999. name: "Normal",
  20000. height: math.unit(5 + 2 / 12, "feet"),
  20001. default: true
  20002. },
  20003. {
  20004. name: "Macro",
  20005. height: math.unit(62, "feet")
  20006. },
  20007. {
  20008. name: "Megamacro",
  20009. height: math.unit(1800, "feet")
  20010. },
  20011. ]
  20012. ))
  20013. characterMakers.push(() => makeCharacter(
  20014. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20015. {
  20016. front: {
  20017. height: math.unit(10, "feet"),
  20018. weight: math.unit(700, "lb"),
  20019. name: "Front",
  20020. image: {
  20021. source: "./media/characters/storm-alystar/front.svg",
  20022. extra: 2112 / 1898,
  20023. bottom: 0.034
  20024. }
  20025. },
  20026. },
  20027. [
  20028. {
  20029. name: "Micro",
  20030. height: math.unit(3.5, "inches")
  20031. },
  20032. {
  20033. name: "Normal",
  20034. height: math.unit(10, "feet"),
  20035. default: true
  20036. },
  20037. {
  20038. name: "Macro",
  20039. height: math.unit(400, "feet")
  20040. },
  20041. {
  20042. name: "Deific",
  20043. height: math.unit(60, "miles")
  20044. },
  20045. ]
  20046. ))
  20047. characterMakers.push(() => makeCharacter(
  20048. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20049. {
  20050. front: {
  20051. height: math.unit(2.35, "meters"),
  20052. weight: math.unit(119, "kg"),
  20053. name: "Front",
  20054. image: {
  20055. source: "./media/characters/ilia/front.svg",
  20056. extra: 1285 / 1255,
  20057. bottom: 0.06
  20058. }
  20059. },
  20060. },
  20061. [
  20062. {
  20063. name: "Normal",
  20064. height: math.unit(2.35, "meters")
  20065. },
  20066. {
  20067. name: "Macro",
  20068. height: math.unit(140, "meters"),
  20069. default: true
  20070. },
  20071. {
  20072. name: "Megamacro",
  20073. height: math.unit(100, "miles")
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20079. {
  20080. front: {
  20081. height: math.unit(6 + 5 / 12, "feet"),
  20082. weight: math.unit(190, "lb"),
  20083. name: "Front",
  20084. image: {
  20085. source: "./media/characters/kingdead/front.svg",
  20086. extra: 1228 / 1177
  20087. }
  20088. },
  20089. },
  20090. [
  20091. {
  20092. name: "Micro",
  20093. height: math.unit(7, "inches")
  20094. },
  20095. {
  20096. name: "Normal",
  20097. height: math.unit(6 + 5 / 12, "feet")
  20098. },
  20099. {
  20100. name: "Macro",
  20101. height: math.unit(150, "feet"),
  20102. default: true
  20103. },
  20104. {
  20105. name: "Megamacro",
  20106. height: math.unit(200, "miles")
  20107. },
  20108. ]
  20109. ))
  20110. characterMakers.push(() => makeCharacter(
  20111. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20112. {
  20113. front: {
  20114. height: math.unit(8, "feet"),
  20115. weight: math.unit(600, "lb"),
  20116. name: "Front",
  20117. image: {
  20118. source: "./media/characters/kyrehx/front.svg",
  20119. extra: 1195 / 1095,
  20120. bottom: 0.034
  20121. }
  20122. },
  20123. },
  20124. [
  20125. {
  20126. name: "Micro",
  20127. height: math.unit(2, "inches")
  20128. },
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(8, "feet"),
  20132. default: true
  20133. },
  20134. {
  20135. name: "Macro",
  20136. height: math.unit(255, "feet")
  20137. },
  20138. ]
  20139. ))
  20140. characterMakers.push(() => makeCharacter(
  20141. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20142. {
  20143. front: {
  20144. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20145. weight: math.unit(184, "lb"),
  20146. name: "Front",
  20147. image: {
  20148. source: "./media/characters/xang/front.svg",
  20149. extra: 845 / 755
  20150. }
  20151. },
  20152. },
  20153. [
  20154. {
  20155. name: "Normal",
  20156. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20157. default: true
  20158. },
  20159. {
  20160. name: "Macro",
  20161. height: math.unit(0.935 * 146, "feet")
  20162. },
  20163. {
  20164. name: "Megamacro",
  20165. height: math.unit(0.935 * 3, "miles")
  20166. },
  20167. ]
  20168. ))
  20169. characterMakers.push(() => makeCharacter(
  20170. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20171. {
  20172. frontDressed: {
  20173. height: math.unit(5 + 7 / 12, "feet"),
  20174. weight: math.unit(140, "lb"),
  20175. name: "Front (Dressed)",
  20176. image: {
  20177. source: "./media/characters/doc-weardno/front-dressed.svg",
  20178. extra: 263 / 234
  20179. }
  20180. },
  20181. backDressed: {
  20182. height: math.unit(5 + 7 / 12, "feet"),
  20183. weight: math.unit(140, "lb"),
  20184. name: "Back (Dressed)",
  20185. image: {
  20186. source: "./media/characters/doc-weardno/back-dressed.svg",
  20187. extra: 266 / 238
  20188. }
  20189. },
  20190. front: {
  20191. height: math.unit(5 + 7 / 12, "feet"),
  20192. weight: math.unit(140, "lb"),
  20193. name: "Front",
  20194. image: {
  20195. source: "./media/characters/doc-weardno/front.svg",
  20196. extra: 254 / 233
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Micro",
  20203. height: math.unit(3, "inches")
  20204. },
  20205. {
  20206. name: "Normal",
  20207. height: math.unit(5 + 7 / 12, "feet"),
  20208. default: true
  20209. },
  20210. {
  20211. name: "Macro",
  20212. height: math.unit(25, "feet")
  20213. },
  20214. {
  20215. name: "Megamacro",
  20216. height: math.unit(2, "miles")
  20217. },
  20218. ]
  20219. ))
  20220. characterMakers.push(() => makeCharacter(
  20221. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20222. {
  20223. front: {
  20224. height: math.unit(6 + 2 / 12, "feet"),
  20225. weight: math.unit(153, "lb"),
  20226. name: "Front",
  20227. image: {
  20228. source: "./media/characters/seth-whilst/front.svg",
  20229. bottom: 0.07
  20230. }
  20231. },
  20232. },
  20233. [
  20234. {
  20235. name: "Micro",
  20236. height: math.unit(5, "inches")
  20237. },
  20238. {
  20239. name: "Normal",
  20240. height: math.unit(6 + 2 / 12, "feet"),
  20241. default: true
  20242. },
  20243. ]
  20244. ))
  20245. characterMakers.push(() => makeCharacter(
  20246. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20247. {
  20248. front: {
  20249. height: math.unit(3, "inches"),
  20250. weight: math.unit(8, "grams"),
  20251. name: "Front",
  20252. image: {
  20253. source: "./media/characters/pocket-jabari/front.svg",
  20254. extra: 1024 / 974,
  20255. bottom: 0.039
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Minimicro",
  20262. height: math.unit(8, "mm")
  20263. },
  20264. {
  20265. name: "Micro",
  20266. height: math.unit(3, "inches"),
  20267. default: true
  20268. },
  20269. {
  20270. name: "Normal",
  20271. height: math.unit(3, "feet")
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20277. {
  20278. frontDressed: {
  20279. height: math.unit(15, "feet"),
  20280. weight: math.unit(3280, "lb"),
  20281. name: "Front (Dressed)",
  20282. image: {
  20283. source: "./media/characters/sapphy/front-dressed.svg",
  20284. extra: 1951/1654,
  20285. bottom: 194/2145
  20286. },
  20287. form: "anthro",
  20288. default: true
  20289. },
  20290. backDressed: {
  20291. height: math.unit(15, "feet"),
  20292. weight: math.unit(3280, "lb"),
  20293. name: "Back (Dressed)",
  20294. image: {
  20295. source: "./media/characters/sapphy/back-dressed.svg",
  20296. extra: 2058/1918,
  20297. bottom: 125/2183
  20298. },
  20299. form: "anthro"
  20300. },
  20301. frontNude: {
  20302. height: math.unit(15, "feet"),
  20303. weight: math.unit(3280, "lb"),
  20304. name: "Front (Nude)",
  20305. image: {
  20306. source: "./media/characters/sapphy/front-nude.svg",
  20307. extra: 1951/1654,
  20308. bottom: 194/2145
  20309. },
  20310. form: "anthro"
  20311. },
  20312. backNude: {
  20313. height: math.unit(15, "feet"),
  20314. weight: math.unit(3280, "lb"),
  20315. name: "Back (Nude)",
  20316. image: {
  20317. source: "./media/characters/sapphy/back-nude.svg",
  20318. extra: 2058/1918,
  20319. bottom: 125/2183
  20320. },
  20321. form: "anthro"
  20322. },
  20323. full: {
  20324. height: math.unit(15, "feet"),
  20325. weight: math.unit(3280, "lb"),
  20326. name: "Full",
  20327. image: {
  20328. source: "./media/characters/sapphy/full.svg",
  20329. extra: 1396/1317,
  20330. bottom: 44/1440
  20331. },
  20332. form: "anthro"
  20333. },
  20334. dick: {
  20335. height: math.unit(3.8, "feet"),
  20336. name: "Dick",
  20337. image: {
  20338. source: "./media/characters/sapphy/dick.svg"
  20339. },
  20340. form: "anthro"
  20341. },
  20342. feral: {
  20343. height: math.unit(35, "feet"),
  20344. weight: math.unit(160, "tons"),
  20345. name: "Feral",
  20346. image: {
  20347. source: "./media/characters/sapphy/feral.svg",
  20348. extra: 1050/573,
  20349. bottom: 60/1110
  20350. },
  20351. form: "feral",
  20352. default: true
  20353. },
  20354. },
  20355. [
  20356. {
  20357. name: "Normal",
  20358. height: math.unit(15, "feet"),
  20359. form: "anthro"
  20360. },
  20361. {
  20362. name: "Casual Macro",
  20363. height: math.unit(120, "feet"),
  20364. form: "anthro"
  20365. },
  20366. {
  20367. name: "Macro",
  20368. height: math.unit(2150, "feet"),
  20369. default: true,
  20370. form: "anthro"
  20371. },
  20372. {
  20373. name: "Megamacro",
  20374. height: math.unit(8, "miles"),
  20375. form: "anthro"
  20376. },
  20377. {
  20378. name: "Galaxy Mom",
  20379. height: math.unit(6, "megalightyears"),
  20380. form: "anthro"
  20381. },
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(35, "feet"),
  20385. form: "feral",
  20386. default: true
  20387. },
  20388. {
  20389. name: "Macro",
  20390. height: math.unit(300, "feet"),
  20391. form: "feral"
  20392. },
  20393. {
  20394. name: "Galaxy Mom",
  20395. height: math.unit(10, "megalightyears"),
  20396. form: "feral"
  20397. },
  20398. ],
  20399. {
  20400. "anthro": {
  20401. name: "Anthro",
  20402. default: true
  20403. },
  20404. "feral": {
  20405. name: "Feral"
  20406. }
  20407. }
  20408. ))
  20409. characterMakers.push(() => makeCharacter(
  20410. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20411. {
  20412. hyenaFront: {
  20413. height: math.unit(6, "feet"),
  20414. weight: math.unit(190, "lb"),
  20415. name: "Front",
  20416. image: {
  20417. source: "./media/characters/kiro/hyena-front.svg",
  20418. extra: 927/839,
  20419. bottom: 91/1018
  20420. },
  20421. form: "hyena",
  20422. default: true
  20423. },
  20424. front: {
  20425. height: math.unit(6, "feet"),
  20426. weight: math.unit(170, "lb"),
  20427. name: "Front",
  20428. image: {
  20429. source: "./media/characters/kiro/front.svg",
  20430. extra: 1064 / 1012,
  20431. bottom: 0.052
  20432. },
  20433. form: "folf",
  20434. default: true
  20435. },
  20436. },
  20437. [
  20438. {
  20439. name: "Micro",
  20440. height: math.unit(6, "inches"),
  20441. form: "folf"
  20442. },
  20443. {
  20444. name: "Normal",
  20445. height: math.unit(6, "feet"),
  20446. form: "folf",
  20447. default: true
  20448. },
  20449. {
  20450. name: "Macro",
  20451. height: math.unit(72, "feet"),
  20452. form: "folf"
  20453. },
  20454. {
  20455. name: "Micro",
  20456. height: math.unit(6, "inches"),
  20457. form: "hyena"
  20458. },
  20459. {
  20460. name: "Normal",
  20461. height: math.unit(6, "feet"),
  20462. form: "hyena",
  20463. default: true
  20464. },
  20465. {
  20466. name: "Macro",
  20467. height: math.unit(72, "feet"),
  20468. form: "hyena"
  20469. },
  20470. ],
  20471. {
  20472. "hyena": {
  20473. name: "Hyena",
  20474. default: true
  20475. },
  20476. "folf": {
  20477. name: "Folf",
  20478. },
  20479. }
  20480. ))
  20481. characterMakers.push(() => makeCharacter(
  20482. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20483. {
  20484. front: {
  20485. height: math.unit(5 + 9 / 12, "feet"),
  20486. weight: math.unit(175, "lb"),
  20487. name: "Front",
  20488. image: {
  20489. source: "./media/characters/irishfox/front.svg",
  20490. extra: 1912 / 1680,
  20491. bottom: 0.02
  20492. }
  20493. },
  20494. },
  20495. [
  20496. {
  20497. name: "Nano",
  20498. height: math.unit(1, "mm")
  20499. },
  20500. {
  20501. name: "Micro",
  20502. height: math.unit(2, "inches")
  20503. },
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(5 + 9 / 12, "feet"),
  20507. default: true
  20508. },
  20509. {
  20510. name: "Macro",
  20511. height: math.unit(45, "feet")
  20512. },
  20513. ]
  20514. ))
  20515. characterMakers.push(() => makeCharacter(
  20516. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20517. {
  20518. front: {
  20519. height: math.unit(6 + 1 / 12, "feet"),
  20520. weight: math.unit(75, "lb"),
  20521. name: "Front",
  20522. image: {
  20523. source: "./media/characters/aronai-sieyes/front.svg",
  20524. extra: 1532/1450,
  20525. bottom: 42/1574
  20526. }
  20527. },
  20528. side: {
  20529. height: math.unit(6 + 1 / 12, "feet"),
  20530. weight: math.unit(75, "lb"),
  20531. name: "Side",
  20532. image: {
  20533. source: "./media/characters/aronai-sieyes/side.svg",
  20534. extra: 1422/1365,
  20535. bottom: 148/1570
  20536. }
  20537. },
  20538. back: {
  20539. height: math.unit(6 + 1 / 12, "feet"),
  20540. weight: math.unit(75, "lb"),
  20541. name: "Back",
  20542. image: {
  20543. source: "./media/characters/aronai-sieyes/back.svg",
  20544. extra: 1526/1464,
  20545. bottom: 51/1577
  20546. }
  20547. },
  20548. dressed: {
  20549. height: math.unit(6 + 1 / 12, "feet"),
  20550. weight: math.unit(75, "lb"),
  20551. name: "Dressed",
  20552. image: {
  20553. source: "./media/characters/aronai-sieyes/dressed.svg",
  20554. extra: 1559/1483,
  20555. bottom: 39/1598
  20556. }
  20557. },
  20558. slit: {
  20559. height: math.unit(1.3, "feet"),
  20560. name: "Slit",
  20561. image: {
  20562. source: "./media/characters/aronai-sieyes/slit.svg"
  20563. }
  20564. },
  20565. slitSpread: {
  20566. height: math.unit(0.9, "feet"),
  20567. name: "Slit (Spread)",
  20568. image: {
  20569. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20570. }
  20571. },
  20572. rump: {
  20573. height: math.unit(1.3, "feet"),
  20574. name: "Rump",
  20575. image: {
  20576. source: "./media/characters/aronai-sieyes/rump.svg"
  20577. }
  20578. },
  20579. maw: {
  20580. height: math.unit(1.25, "feet"),
  20581. name: "Maw",
  20582. image: {
  20583. source: "./media/characters/aronai-sieyes/maw.svg"
  20584. }
  20585. },
  20586. feral: {
  20587. height: math.unit(18, "feet"),
  20588. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20589. name: "Feral",
  20590. image: {
  20591. source: "./media/characters/aronai-sieyes/feral.svg",
  20592. extra: 1530 / 1240,
  20593. bottom: 0.035
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Micro",
  20600. height: math.unit(2, "inches")
  20601. },
  20602. {
  20603. name: "Normal",
  20604. height: math.unit(6 + 1 / 12, "feet"),
  20605. default: true
  20606. }
  20607. ]
  20608. ))
  20609. characterMakers.push(() => makeCharacter(
  20610. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20611. {
  20612. front: {
  20613. height: math.unit(12, "feet"),
  20614. weight: math.unit(410, "kg"),
  20615. name: "Front",
  20616. image: {
  20617. source: "./media/characters/xuna/front.svg",
  20618. extra: 2184 / 1980
  20619. }
  20620. },
  20621. side: {
  20622. height: math.unit(12, "feet"),
  20623. weight: math.unit(410, "kg"),
  20624. name: "Side",
  20625. image: {
  20626. source: "./media/characters/xuna/side.svg",
  20627. extra: 2184 / 1980
  20628. }
  20629. },
  20630. back: {
  20631. height: math.unit(12, "feet"),
  20632. weight: math.unit(410, "kg"),
  20633. name: "Back",
  20634. image: {
  20635. source: "./media/characters/xuna/back.svg",
  20636. extra: 2184 / 1980
  20637. }
  20638. },
  20639. },
  20640. [
  20641. {
  20642. name: "Nano glow",
  20643. height: math.unit(10, "nm")
  20644. },
  20645. {
  20646. name: "Micro floof",
  20647. height: math.unit(0.3, "m")
  20648. },
  20649. {
  20650. name: "Huggable softy boi",
  20651. height: math.unit(3.6576, "m"),
  20652. default: true
  20653. },
  20654. {
  20655. name: "Admirable floof",
  20656. height: math.unit(80, "meters")
  20657. },
  20658. {
  20659. name: "Gentle macro",
  20660. height: math.unit(300, "meters")
  20661. },
  20662. {
  20663. name: "Very careful floof",
  20664. height: math.unit(3200, "meters")
  20665. },
  20666. {
  20667. name: "The mega floof",
  20668. height: math.unit(36000, "meters")
  20669. },
  20670. {
  20671. name: "Giga-fur-Wicker",
  20672. height: math.unit(4800000, "meters")
  20673. },
  20674. {
  20675. name: "Licky world",
  20676. height: math.unit(20000000, "meters")
  20677. },
  20678. {
  20679. name: "Floofy cyan sun",
  20680. height: math.unit(1500000000, "meters")
  20681. },
  20682. {
  20683. name: "Milky Wicker",
  20684. height: math.unit(1000000000000000000000, "meters")
  20685. },
  20686. {
  20687. name: "The observing Wicker",
  20688. height: math.unit(999999999999999999999999999, "meters")
  20689. },
  20690. ]
  20691. ))
  20692. characterMakers.push(() => makeCharacter(
  20693. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20694. {
  20695. front: {
  20696. height: math.unit(5 + 9 / 12, "feet"),
  20697. weight: math.unit(150, "lb"),
  20698. name: "Front",
  20699. image: {
  20700. source: "./media/characters/arokha-sieyes/front.svg",
  20701. extra: 1425 / 1284,
  20702. bottom: 0.05
  20703. }
  20704. },
  20705. },
  20706. [
  20707. {
  20708. name: "Normal",
  20709. height: math.unit(5 + 9 / 12, "feet")
  20710. },
  20711. {
  20712. name: "Macro",
  20713. height: math.unit(30, "meters"),
  20714. default: true
  20715. },
  20716. ]
  20717. ))
  20718. characterMakers.push(() => makeCharacter(
  20719. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20720. {
  20721. front: {
  20722. height: math.unit(6, "feet"),
  20723. weight: math.unit(180, "lb"),
  20724. name: "Front",
  20725. image: {
  20726. source: "./media/characters/arokh-sieyes/front.svg",
  20727. extra: 1830 / 1769,
  20728. bottom: 0.01
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Normal",
  20735. height: math.unit(6, "feet")
  20736. },
  20737. {
  20738. name: "Macro",
  20739. height: math.unit(30, "meters"),
  20740. default: true
  20741. },
  20742. ]
  20743. ))
  20744. characterMakers.push(() => makeCharacter(
  20745. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20746. {
  20747. side: {
  20748. height: math.unit(13 + 1 / 12, "feet"),
  20749. weight: math.unit(8.5, "tonnes"),
  20750. preyCapacity: math.unit(36, "people"),
  20751. name: "Side",
  20752. image: {
  20753. source: "./media/characters/goldeneye/side.svg",
  20754. extra: 1139/741,
  20755. bottom: 98/1237
  20756. }
  20757. },
  20758. front: {
  20759. height: math.unit(5.1, "feet"),
  20760. weight: math.unit(8.5, "tonnes"),
  20761. preyCapacity: math.unit(36, "people"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/goldeneye/front.svg",
  20765. extra: 635/365,
  20766. bottom: 598/1233
  20767. }
  20768. },
  20769. maw: {
  20770. height: math.unit(6.6, "feet"),
  20771. name: "Maw",
  20772. image: {
  20773. source: "./media/characters/goldeneye/maw.svg"
  20774. }
  20775. },
  20776. headFront: {
  20777. height: math.unit(8, "feet"),
  20778. name: "Head (Front)",
  20779. image: {
  20780. source: "./media/characters/goldeneye/head-front.svg"
  20781. }
  20782. },
  20783. headSide: {
  20784. height: math.unit(6, "feet"),
  20785. name: "Head (Side)",
  20786. image: {
  20787. source: "./media/characters/goldeneye/head-side.svg"
  20788. }
  20789. },
  20790. headBack: {
  20791. height: math.unit(8, "feet"),
  20792. name: "Head (Back)",
  20793. image: {
  20794. source: "./media/characters/goldeneye/head-back.svg"
  20795. }
  20796. },
  20797. paw: {
  20798. height: math.unit(3.4, "feet"),
  20799. name: "Paw",
  20800. image: {
  20801. source: "./media/characters/goldeneye/paw.svg"
  20802. }
  20803. },
  20804. toering: {
  20805. height: math.unit(0.45, "feet"),
  20806. name: "Toering",
  20807. image: {
  20808. source: "./media/characters/goldeneye/toering.svg"
  20809. }
  20810. },
  20811. eyes: {
  20812. height: math.unit(0.5, "feet"),
  20813. name: "Eyes",
  20814. image: {
  20815. source: "./media/characters/goldeneye/eyes.svg"
  20816. }
  20817. },
  20818. },
  20819. [
  20820. {
  20821. name: "Normal",
  20822. height: math.unit(13 + 1 / 12, "feet"),
  20823. default: true
  20824. },
  20825. ]
  20826. ))
  20827. characterMakers.push(() => makeCharacter(
  20828. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20829. {
  20830. front: {
  20831. height: math.unit(6 + 1 / 12, "feet"),
  20832. weight: math.unit(210, "lb"),
  20833. name: "Front",
  20834. image: {
  20835. source: "./media/characters/leonardo-lycheborne/front.svg",
  20836. extra: 776/723,
  20837. bottom: 34/810
  20838. }
  20839. },
  20840. side: {
  20841. height: math.unit(6 + 1 / 12, "feet"),
  20842. weight: math.unit(210, "lb"),
  20843. name: "Side",
  20844. image: {
  20845. source: "./media/characters/leonardo-lycheborne/side.svg",
  20846. extra: 780/728,
  20847. bottom: 12/792
  20848. }
  20849. },
  20850. back: {
  20851. height: math.unit(6 + 1 / 12, "feet"),
  20852. weight: math.unit(210, "lb"),
  20853. name: "Back",
  20854. image: {
  20855. source: "./media/characters/leonardo-lycheborne/back.svg",
  20856. extra: 775/721,
  20857. bottom: 17/792
  20858. }
  20859. },
  20860. hand: {
  20861. height: math.unit(1.08, "feet"),
  20862. name: "Hand",
  20863. image: {
  20864. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20865. }
  20866. },
  20867. foot: {
  20868. height: math.unit(1.32, "feet"),
  20869. name: "Foot",
  20870. image: {
  20871. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20872. }
  20873. },
  20874. maw: {
  20875. height: math.unit(1, "feet"),
  20876. name: "Maw",
  20877. image: {
  20878. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20879. }
  20880. },
  20881. were: {
  20882. height: math.unit(20, "feet"),
  20883. weight: math.unit(7800, "lb"),
  20884. name: "Were",
  20885. image: {
  20886. source: "./media/characters/leonardo-lycheborne/were.svg",
  20887. extra: 1224/1165,
  20888. bottom: 72/1296
  20889. }
  20890. },
  20891. feral: {
  20892. height: math.unit(7.5, "feet"),
  20893. weight: math.unit(600, "lb"),
  20894. name: "Feral",
  20895. image: {
  20896. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20897. extra: 797/702,
  20898. bottom: 139/936
  20899. }
  20900. },
  20901. taur: {
  20902. height: math.unit(11, "feet"),
  20903. weight: math.unit(3300, "lb"),
  20904. name: "Taur",
  20905. image: {
  20906. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20907. extra: 1271/1197,
  20908. bottom: 47/1318
  20909. }
  20910. },
  20911. barghest: {
  20912. height: math.unit(11, "feet"),
  20913. weight: math.unit(1300, "lb"),
  20914. name: "Barghest",
  20915. image: {
  20916. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20917. extra: 1291/1204,
  20918. bottom: 37/1328
  20919. }
  20920. },
  20921. dick: {
  20922. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20923. name: "Dick",
  20924. image: {
  20925. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20926. }
  20927. },
  20928. dickWere: {
  20929. height: math.unit((20) / 3.8, "feet"),
  20930. name: "Dick (Were)",
  20931. image: {
  20932. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20933. }
  20934. },
  20935. },
  20936. [
  20937. {
  20938. name: "Normal",
  20939. height: math.unit(6 + 1 / 12, "feet"),
  20940. default: true
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20946. {
  20947. front: {
  20948. height: math.unit(10, "feet"),
  20949. weight: math.unit(350, "lb"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/jet/front.svg",
  20953. extra: 2050 / 1980,
  20954. bottom: 0.013
  20955. }
  20956. },
  20957. back: {
  20958. height: math.unit(10, "feet"),
  20959. weight: math.unit(350, "lb"),
  20960. name: "Back",
  20961. image: {
  20962. source: "./media/characters/jet/back.svg",
  20963. extra: 2050 / 1980,
  20964. bottom: 0.013
  20965. }
  20966. },
  20967. },
  20968. [
  20969. {
  20970. name: "Micro",
  20971. height: math.unit(6, "inches")
  20972. },
  20973. {
  20974. name: "Normal",
  20975. height: math.unit(10, "feet"),
  20976. default: true
  20977. },
  20978. {
  20979. name: "Macro",
  20980. height: math.unit(100, "feet")
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(15, "feet"),
  20989. weight: math.unit(2800, "lb"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/tanarath/front.svg",
  20993. extra: 2392 / 2220,
  20994. bottom: 0.03
  20995. }
  20996. },
  20997. back: {
  20998. height: math.unit(15, "feet"),
  20999. weight: math.unit(2800, "lb"),
  21000. name: "Back",
  21001. image: {
  21002. source: "./media/characters/tanarath/back.svg",
  21003. extra: 2392 / 2220,
  21004. bottom: 0.03
  21005. }
  21006. },
  21007. },
  21008. [
  21009. {
  21010. name: "Normal",
  21011. height: math.unit(15, "feet"),
  21012. default: true
  21013. },
  21014. ]
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21018. {
  21019. front: {
  21020. height: math.unit(7 + 1 / 12, "feet"),
  21021. weight: math.unit(175, "lb"),
  21022. name: "Front",
  21023. image: {
  21024. source: "./media/characters/patty-cattybatty/front.svg",
  21025. extra: 908 / 874,
  21026. bottom: 0.025
  21027. }
  21028. },
  21029. },
  21030. [
  21031. {
  21032. name: "Micro",
  21033. height: math.unit(1, "inch")
  21034. },
  21035. {
  21036. name: "Normal",
  21037. height: math.unit(7 + 1 / 12, "feet")
  21038. },
  21039. {
  21040. name: "Mini Macro",
  21041. height: math.unit(155, "feet")
  21042. },
  21043. {
  21044. name: "Macro",
  21045. height: math.unit(1077, "feet")
  21046. },
  21047. {
  21048. name: "Mega Macro",
  21049. height: math.unit(47650, "feet"),
  21050. default: true
  21051. },
  21052. {
  21053. name: "Giga Macro",
  21054. height: math.unit(440, "miles")
  21055. },
  21056. {
  21057. name: "Tera Macro",
  21058. height: math.unit(8700, "miles")
  21059. },
  21060. {
  21061. name: "Planetary Macro",
  21062. height: math.unit(32700, "miles")
  21063. },
  21064. {
  21065. name: "Solar Macro",
  21066. height: math.unit(550000, "miles")
  21067. },
  21068. {
  21069. name: "Celestial Macro",
  21070. height: math.unit(2.5, "AU")
  21071. },
  21072. ]
  21073. ))
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21076. {
  21077. front: {
  21078. height: math.unit(4 + 5 / 12, "feet"),
  21079. weight: math.unit(90, "lb"),
  21080. name: "Front",
  21081. image: {
  21082. source: "./media/characters/cappu/front.svg",
  21083. extra: 1247 / 1152,
  21084. bottom: 0.012
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Normal",
  21091. height: math.unit(4 + 5 / 12, "feet"),
  21092. default: true
  21093. },
  21094. ]
  21095. ))
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21098. {
  21099. frontDressed: {
  21100. height: math.unit(70, "cm"),
  21101. weight: math.unit(6, "kg"),
  21102. name: "Front (Dressed)",
  21103. image: {
  21104. source: "./media/characters/sebi/front-dressed.svg",
  21105. extra: 713.5 / 686.5,
  21106. bottom: 0.003
  21107. }
  21108. },
  21109. front: {
  21110. height: math.unit(70, "cm"),
  21111. weight: math.unit(5, "kg"),
  21112. name: "Front",
  21113. image: {
  21114. source: "./media/characters/sebi/front.svg",
  21115. extra: 713.5 / 686.5,
  21116. bottom: 0.003
  21117. }
  21118. }
  21119. },
  21120. [
  21121. {
  21122. name: "Normal",
  21123. height: math.unit(70, "cm"),
  21124. default: true
  21125. },
  21126. {
  21127. name: "Macro",
  21128. height: math.unit(8, "meters")
  21129. },
  21130. ]
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21134. {
  21135. front: {
  21136. height: math.unit(6, "feet"),
  21137. weight: math.unit(150, "lb"),
  21138. name: "Front",
  21139. image: {
  21140. source: "./media/characters/typhek/front.svg",
  21141. extra: 1948 / 1929,
  21142. bottom: 0.025
  21143. }
  21144. },
  21145. side: {
  21146. height: math.unit(6, "feet"),
  21147. weight: math.unit(150, "lb"),
  21148. name: "Side",
  21149. image: {
  21150. source: "./media/characters/typhek/side.svg",
  21151. extra: 2034 / 2010,
  21152. bottom: 0.003
  21153. }
  21154. },
  21155. back: {
  21156. height: math.unit(6, "feet"),
  21157. weight: math.unit(150, "lb"),
  21158. name: "Back",
  21159. image: {
  21160. source: "./media/characters/typhek/back.svg",
  21161. extra: 2005 / 1978,
  21162. bottom: 0.004
  21163. }
  21164. },
  21165. palm: {
  21166. height: math.unit(1.2, "feet"),
  21167. name: "Palm",
  21168. image: {
  21169. source: "./media/characters/typhek/palm.svg"
  21170. }
  21171. },
  21172. fist: {
  21173. height: math.unit(1.1, "feet"),
  21174. name: "Fist",
  21175. image: {
  21176. source: "./media/characters/typhek/fist.svg"
  21177. }
  21178. },
  21179. foot: {
  21180. height: math.unit(1.57, "feet"),
  21181. name: "Foot",
  21182. image: {
  21183. source: "./media/characters/typhek/foot.svg"
  21184. }
  21185. },
  21186. sole: {
  21187. height: math.unit(2.05, "feet"),
  21188. name: "Sole",
  21189. image: {
  21190. source: "./media/characters/typhek/sole.svg"
  21191. }
  21192. },
  21193. },
  21194. [
  21195. {
  21196. name: "Macro",
  21197. height: math.unit(40, "stories"),
  21198. default: true
  21199. },
  21200. {
  21201. name: "Megamacro",
  21202. height: math.unit(1, "mile")
  21203. },
  21204. {
  21205. name: "Gigamacro",
  21206. height: math.unit(4000, "solarradii")
  21207. },
  21208. {
  21209. name: "Universal",
  21210. height: math.unit(1.1, "universes")
  21211. }
  21212. ]
  21213. ))
  21214. characterMakers.push(() => makeCharacter(
  21215. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21216. {
  21217. side: {
  21218. height: math.unit(5 + 7 / 12, "feet"),
  21219. weight: math.unit(150, "lb"),
  21220. name: "Side",
  21221. image: {
  21222. source: "./media/characters/kassy/side.svg",
  21223. extra: 1280 / 1225,
  21224. bottom: 0.002
  21225. }
  21226. },
  21227. front: {
  21228. height: math.unit(5 + 7 / 12, "feet"),
  21229. weight: math.unit(150, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/kassy/front.svg",
  21233. extra: 1280 / 1225,
  21234. bottom: 0.025
  21235. }
  21236. },
  21237. back: {
  21238. height: math.unit(5 + 7 / 12, "feet"),
  21239. weight: math.unit(150, "lb"),
  21240. name: "Back",
  21241. image: {
  21242. source: "./media/characters/kassy/back.svg",
  21243. extra: 1280 / 1225,
  21244. bottom: 0.002
  21245. }
  21246. },
  21247. foot: {
  21248. height: math.unit(1.266, "feet"),
  21249. name: "Foot",
  21250. image: {
  21251. source: "./media/characters/kassy/foot.svg"
  21252. }
  21253. },
  21254. },
  21255. [
  21256. {
  21257. name: "Normal",
  21258. height: math.unit(5 + 7 / 12, "feet")
  21259. },
  21260. {
  21261. name: "Macro",
  21262. height: math.unit(137, "feet"),
  21263. default: true
  21264. },
  21265. {
  21266. name: "Megamacro",
  21267. height: math.unit(1, "mile")
  21268. },
  21269. ]
  21270. ))
  21271. characterMakers.push(() => makeCharacter(
  21272. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21273. {
  21274. front: {
  21275. height: math.unit(6 + 1 / 12, "feet"),
  21276. weight: math.unit(200, "lb"),
  21277. name: "Front",
  21278. image: {
  21279. source: "./media/characters/neil/front.svg",
  21280. extra: 1326 / 1250,
  21281. bottom: 0.023
  21282. }
  21283. },
  21284. },
  21285. [
  21286. {
  21287. name: "Normal",
  21288. height: math.unit(6 + 1 / 12, "feet"),
  21289. default: true
  21290. },
  21291. {
  21292. name: "Macro",
  21293. height: math.unit(200, "feet")
  21294. },
  21295. ]
  21296. ))
  21297. characterMakers.push(() => makeCharacter(
  21298. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21299. {
  21300. front: {
  21301. height: math.unit(5 + 9 / 12, "feet"),
  21302. weight: math.unit(190, "lb"),
  21303. name: "Front",
  21304. image: {
  21305. source: "./media/characters/atticus/front.svg",
  21306. extra: 2934 / 2785,
  21307. bottom: 0.025
  21308. }
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Normal",
  21314. height: math.unit(5 + 9 / 12, "feet"),
  21315. default: true
  21316. },
  21317. {
  21318. name: "Macro",
  21319. height: math.unit(180, "feet")
  21320. },
  21321. ]
  21322. ))
  21323. characterMakers.push(() => makeCharacter(
  21324. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21325. {
  21326. side: {
  21327. height: math.unit(9, "feet"),
  21328. weight: math.unit(650, "lb"),
  21329. name: "Side",
  21330. image: {
  21331. source: "./media/characters/milo/side.svg",
  21332. extra: 2644 / 2310,
  21333. bottom: 0.032
  21334. }
  21335. },
  21336. },
  21337. [
  21338. {
  21339. name: "Normal",
  21340. height: math.unit(9, "feet"),
  21341. default: true
  21342. },
  21343. {
  21344. name: "Macro",
  21345. height: math.unit(300, "feet")
  21346. },
  21347. ]
  21348. ))
  21349. characterMakers.push(() => makeCharacter(
  21350. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21351. {
  21352. side: {
  21353. height: math.unit(8, "meters"),
  21354. weight: math.unit(90000, "kg"),
  21355. name: "Side",
  21356. image: {
  21357. source: "./media/characters/ijzer/side.svg",
  21358. extra: 2756 / 1600,
  21359. bottom: 0.01
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Small",
  21366. height: math.unit(3, "meters")
  21367. },
  21368. {
  21369. name: "Normal",
  21370. height: math.unit(8, "meters"),
  21371. default: true
  21372. },
  21373. {
  21374. name: "Normal+",
  21375. height: math.unit(10, "meters")
  21376. },
  21377. {
  21378. name: "Bigger",
  21379. height: math.unit(24, "meters")
  21380. },
  21381. {
  21382. name: "Huge",
  21383. height: math.unit(80, "meters")
  21384. },
  21385. ]
  21386. ))
  21387. characterMakers.push(() => makeCharacter(
  21388. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21389. {
  21390. front: {
  21391. height: math.unit(6 + 2 / 12, "feet"),
  21392. weight: math.unit(153, "lb"),
  21393. name: "Front",
  21394. image: {
  21395. source: "./media/characters/luca-cervicum/front.svg",
  21396. extra: 370 / 327,
  21397. bottom: 0.015
  21398. }
  21399. },
  21400. back: {
  21401. height: math.unit(6 + 2 / 12, "feet"),
  21402. weight: math.unit(153, "lb"),
  21403. name: "Back",
  21404. image: {
  21405. source: "./media/characters/luca-cervicum/back.svg",
  21406. extra: 367 / 333,
  21407. bottom: 0.005
  21408. }
  21409. },
  21410. frontGear: {
  21411. height: math.unit(6 + 2 / 12, "feet"),
  21412. weight: math.unit(173, "lb"),
  21413. name: "Front (Gear)",
  21414. image: {
  21415. source: "./media/characters/luca-cervicum/front-gear.svg",
  21416. extra: 377 / 333,
  21417. bottom: 0.006
  21418. }
  21419. },
  21420. },
  21421. [
  21422. {
  21423. name: "Normal",
  21424. height: math.unit(6 + 2 / 12, "feet"),
  21425. default: true
  21426. },
  21427. ]
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21431. {
  21432. front: {
  21433. height: math.unit(6 + 1 / 12, "feet"),
  21434. weight: math.unit(304, "lb"),
  21435. name: "Front",
  21436. image: {
  21437. source: "./media/characters/oliver/front.svg",
  21438. extra: 157 / 143,
  21439. bottom: 0.08
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(6 + 1 / 12, "feet"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21453. {
  21454. front: {
  21455. height: math.unit(5 + 7 / 12, "feet"),
  21456. weight: math.unit(140, "lb"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/shane/front.svg",
  21460. extra: 304 / 289,
  21461. bottom: 0.005
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(5 + 7 / 12, "feet"),
  21469. default: true
  21470. },
  21471. ]
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21475. {
  21476. front: {
  21477. height: math.unit(5 + 9 / 12, "feet"),
  21478. weight: math.unit(178, "lb"),
  21479. name: "Front",
  21480. image: {
  21481. source: "./media/characters/shin/front.svg",
  21482. extra: 159 / 151,
  21483. bottom: 0.015
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(5 + 9 / 12, "feet"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(5 + 10 / 12, "feet"),
  21500. weight: math.unit(168, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/xerxes/front.svg",
  21504. extra: 282 / 260,
  21505. bottom: 0.045
  21506. }
  21507. },
  21508. },
  21509. [
  21510. {
  21511. name: "Normal",
  21512. height: math.unit(5 + 10 / 12, "feet"),
  21513. default: true
  21514. },
  21515. ]
  21516. ))
  21517. characterMakers.push(() => makeCharacter(
  21518. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21519. {
  21520. front: {
  21521. height: math.unit(6 + 7 / 12, "feet"),
  21522. weight: math.unit(208, "lb"),
  21523. name: "Front",
  21524. image: {
  21525. source: "./media/characters/chaska/front.svg",
  21526. extra: 332 / 319,
  21527. bottom: 0.015
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Normal",
  21534. height: math.unit(6 + 7 / 12, "feet"),
  21535. default: true
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(5 + 8 / 12, "feet"),
  21544. weight: math.unit(208, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/enuk/front.svg",
  21548. extra: 437 / 406,
  21549. bottom: 0.02
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(5 + 8 / 12, "feet"),
  21557. default: true
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21563. {
  21564. front: {
  21565. height: math.unit(5 + 10 / 12, "feet"),
  21566. weight: math.unit(252, "lb"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/bruun/front.svg",
  21570. extra: 197 / 187,
  21571. bottom: 0.012
  21572. }
  21573. },
  21574. },
  21575. [
  21576. {
  21577. name: "Normal",
  21578. height: math.unit(5 + 10 / 12, "feet"),
  21579. default: true
  21580. },
  21581. ]
  21582. ))
  21583. characterMakers.push(() => makeCharacter(
  21584. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21585. {
  21586. front: {
  21587. height: math.unit(6 + 10 / 12, "feet"),
  21588. weight: math.unit(255, "lb"),
  21589. name: "Front",
  21590. image: {
  21591. source: "./media/characters/alexeev/front.svg",
  21592. extra: 213 / 200,
  21593. bottom: 0.05
  21594. }
  21595. },
  21596. },
  21597. [
  21598. {
  21599. name: "Normal",
  21600. height: math.unit(6 + 10 / 12, "feet"),
  21601. default: true
  21602. },
  21603. ]
  21604. ))
  21605. characterMakers.push(() => makeCharacter(
  21606. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21607. {
  21608. front: {
  21609. height: math.unit(2 + 8 / 12, "feet"),
  21610. weight: math.unit(22, "lb"),
  21611. name: "Front",
  21612. image: {
  21613. source: "./media/characters/evelyn/front.svg",
  21614. extra: 208 / 180
  21615. }
  21616. },
  21617. },
  21618. [
  21619. {
  21620. name: "Normal",
  21621. height: math.unit(2 + 8 / 12, "feet"),
  21622. default: true
  21623. },
  21624. ]
  21625. ))
  21626. characterMakers.push(() => makeCharacter(
  21627. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21628. {
  21629. front: {
  21630. height: math.unit(5 + 9 / 12, "feet"),
  21631. weight: math.unit(139, "lb"),
  21632. name: "Front",
  21633. image: {
  21634. source: "./media/characters/inca/front.svg",
  21635. extra: 294 / 291,
  21636. bottom: 0.03
  21637. }
  21638. },
  21639. },
  21640. [
  21641. {
  21642. name: "Normal",
  21643. height: math.unit(5 + 9 / 12, "feet"),
  21644. default: true
  21645. },
  21646. ]
  21647. ))
  21648. characterMakers.push(() => makeCharacter(
  21649. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21650. {
  21651. front: {
  21652. height: math.unit(6 + 3 / 12, "feet"),
  21653. weight: math.unit(185, "lb"),
  21654. name: "Front",
  21655. image: {
  21656. source: "./media/characters/mera/front.svg",
  21657. extra: 291 / 277,
  21658. bottom: 0.03
  21659. }
  21660. },
  21661. },
  21662. [
  21663. {
  21664. name: "Normal",
  21665. height: math.unit(6 + 3 / 12, "feet"),
  21666. default: true
  21667. },
  21668. ]
  21669. ))
  21670. characterMakers.push(() => makeCharacter(
  21671. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21672. {
  21673. front: {
  21674. height: math.unit(6 + 7 / 12, "feet"),
  21675. weight: math.unit(160, "lb"),
  21676. name: "Front",
  21677. image: {
  21678. source: "./media/characters/ceres/front.svg",
  21679. extra: 1023 / 950,
  21680. bottom: 0.027
  21681. }
  21682. },
  21683. back: {
  21684. height: math.unit(6 + 7 / 12, "feet"),
  21685. weight: math.unit(160, "lb"),
  21686. name: "Back",
  21687. image: {
  21688. source: "./media/characters/ceres/back.svg",
  21689. extra: 1023 / 950
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(6 + 7 / 12, "feet"),
  21697. default: true
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21703. {
  21704. front: {
  21705. height: math.unit(5 + 10 / 12, "feet"),
  21706. weight: math.unit(150, "lb"),
  21707. name: "Front",
  21708. image: {
  21709. source: "./media/characters/kris/front.svg",
  21710. extra: 885 / 803,
  21711. bottom: 0.03
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Normal",
  21718. height: math.unit(5 + 10 / 12, "feet"),
  21719. default: true
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21725. {
  21726. front: {
  21727. height: math.unit(7, "feet"),
  21728. weight: math.unit(120, "kg"),
  21729. name: "Front",
  21730. image: {
  21731. source: "./media/characters/taluthus/front.svg",
  21732. extra: 903 / 833,
  21733. bottom: 0.015
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Normal",
  21740. height: math.unit(7, "feet"),
  21741. default: true
  21742. },
  21743. {
  21744. name: "Macro",
  21745. height: math.unit(300, "feet")
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21751. {
  21752. front: {
  21753. height: math.unit(5 + 9 / 12, "feet"),
  21754. weight: math.unit(145, "lb"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/dawn/front.svg",
  21758. extra: 2094 / 2016,
  21759. bottom: 0.025
  21760. }
  21761. },
  21762. back: {
  21763. height: math.unit(5 + 9 / 12, "feet"),
  21764. weight: math.unit(160, "lb"),
  21765. name: "Back",
  21766. image: {
  21767. source: "./media/characters/dawn/back.svg",
  21768. extra: 2112 / 2080,
  21769. bottom: 0.005
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(6 + 7 / 12, "feet"),
  21777. default: true
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21783. {
  21784. anthro: {
  21785. height: math.unit(8 + 3 / 12, "feet"),
  21786. weight: math.unit(450, "lb"),
  21787. name: "Anthro",
  21788. image: {
  21789. source: "./media/characters/arador/anthro.svg",
  21790. extra: 1835 / 1718,
  21791. bottom: 0.025
  21792. }
  21793. },
  21794. feral: {
  21795. height: math.unit(4, "feet"),
  21796. weight: math.unit(200, "lb"),
  21797. name: "Feral",
  21798. image: {
  21799. source: "./media/characters/arador/feral.svg",
  21800. extra: 1683 / 1514,
  21801. bottom: 0.07
  21802. }
  21803. },
  21804. },
  21805. [
  21806. {
  21807. name: "Normal",
  21808. height: math.unit(8 + 3 / 12, "feet")
  21809. },
  21810. {
  21811. name: "Macro",
  21812. height: math.unit(82.5, "feet"),
  21813. default: true
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21819. {
  21820. front: {
  21821. height: math.unit(5 + 10 / 12, "feet"),
  21822. weight: math.unit(125, "lb"),
  21823. name: "Front",
  21824. image: {
  21825. source: "./media/characters/dharsi/front.svg",
  21826. extra: 716 / 630,
  21827. bottom: 0.035
  21828. }
  21829. },
  21830. },
  21831. [
  21832. {
  21833. name: "Nano",
  21834. height: math.unit(100, "nm")
  21835. },
  21836. {
  21837. name: "Micro",
  21838. height: math.unit(2, "inches")
  21839. },
  21840. {
  21841. name: "Normal",
  21842. height: math.unit(5 + 10 / 12, "feet"),
  21843. default: true
  21844. },
  21845. {
  21846. name: "Macro",
  21847. height: math.unit(1000, "feet")
  21848. },
  21849. {
  21850. name: "Megamacro",
  21851. height: math.unit(10, "miles")
  21852. },
  21853. {
  21854. name: "Gigamacro",
  21855. height: math.unit(3000, "miles")
  21856. },
  21857. {
  21858. name: "Teramacro",
  21859. height: math.unit(500000, "miles")
  21860. },
  21861. {
  21862. name: "Teramacro+",
  21863. height: math.unit(30, "galaxies")
  21864. },
  21865. ]
  21866. ))
  21867. characterMakers.push(() => makeCharacter(
  21868. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21869. {
  21870. front: {
  21871. height: math.unit(6, "feet"),
  21872. weight: math.unit(150, "lb"),
  21873. name: "Front",
  21874. image: {
  21875. source: "./media/characters/deathy/front.svg",
  21876. extra: 1552 / 1463,
  21877. bottom: 0.025
  21878. }
  21879. },
  21880. side: {
  21881. height: math.unit(6, "feet"),
  21882. weight: math.unit(150, "lb"),
  21883. name: "Side",
  21884. image: {
  21885. source: "./media/characters/deathy/side.svg",
  21886. extra: 1604 / 1455,
  21887. bottom: 0.025
  21888. }
  21889. },
  21890. back: {
  21891. height: math.unit(6, "feet"),
  21892. weight: math.unit(150, "lb"),
  21893. name: "Back",
  21894. image: {
  21895. source: "./media/characters/deathy/back.svg",
  21896. extra: 1580 / 1463,
  21897. bottom: 0.005
  21898. }
  21899. },
  21900. },
  21901. [
  21902. {
  21903. name: "Micro",
  21904. height: math.unit(5, "millimeters")
  21905. },
  21906. {
  21907. name: "Normal",
  21908. height: math.unit(6 + 5 / 12, "feet"),
  21909. default: true
  21910. },
  21911. ]
  21912. ))
  21913. characterMakers.push(() => makeCharacter(
  21914. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21915. {
  21916. front: {
  21917. height: math.unit(16, "feet"),
  21918. weight: math.unit(4000, "lb"),
  21919. name: "Front",
  21920. image: {
  21921. source: "./media/characters/juniper/front.svg",
  21922. bottom: 0.04
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(16, "feet"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21936. {
  21937. front: {
  21938. height: math.unit(6, "feet"),
  21939. weight: math.unit(150, "lb"),
  21940. name: "Front",
  21941. image: {
  21942. source: "./media/characters/hipster/front.svg",
  21943. extra: 1312 / 1209,
  21944. bottom: 0.025
  21945. }
  21946. },
  21947. back: {
  21948. height: math.unit(6, "feet"),
  21949. weight: math.unit(150, "lb"),
  21950. name: "Back",
  21951. image: {
  21952. source: "./media/characters/hipster/back.svg",
  21953. extra: 1281 / 1196,
  21954. bottom: 0.01
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Micro",
  21961. height: math.unit(1, "mm")
  21962. },
  21963. {
  21964. name: "Normal",
  21965. height: math.unit(4, "inches"),
  21966. default: true
  21967. },
  21968. {
  21969. name: "Macro",
  21970. height: math.unit(500, "feet")
  21971. },
  21972. {
  21973. name: "Megamacro",
  21974. height: math.unit(1000, "miles")
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21980. {
  21981. front: {
  21982. height: math.unit(6, "feet"),
  21983. weight: math.unit(150, "lb"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/tendirmuldr/front.svg",
  21987. extra: 1878 / 1772,
  21988. bottom: 0.015
  21989. }
  21990. },
  21991. },
  21992. [
  21993. {
  21994. name: "Megamacro",
  21995. height: math.unit(1500, "miles"),
  21996. default: true
  21997. },
  21998. ]
  21999. ))
  22000. characterMakers.push(() => makeCharacter(
  22001. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22002. {
  22003. front: {
  22004. height: math.unit(14, "feet"),
  22005. weight: math.unit(12000, "lb"),
  22006. name: "Front",
  22007. image: {
  22008. source: "./media/characters/mort/front.svg",
  22009. extra: 365 / 318,
  22010. bottom: 0.01
  22011. }
  22012. },
  22013. side: {
  22014. height: math.unit(14, "feet"),
  22015. weight: math.unit(12000, "lb"),
  22016. name: "Side",
  22017. image: {
  22018. source: "./media/characters/mort/side.svg",
  22019. extra: 365 / 318,
  22020. bottom: 0.052
  22021. },
  22022. default: true
  22023. },
  22024. back: {
  22025. height: math.unit(14, "feet"),
  22026. weight: math.unit(12000, "lb"),
  22027. name: "Back",
  22028. image: {
  22029. source: "./media/characters/mort/back.svg",
  22030. extra: 371 / 332,
  22031. bottom: 0.18
  22032. }
  22033. },
  22034. },
  22035. [
  22036. {
  22037. name: "Normal",
  22038. height: math.unit(14, "feet"),
  22039. default: true
  22040. },
  22041. ]
  22042. ))
  22043. characterMakers.push(() => makeCharacter(
  22044. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22045. {
  22046. front: {
  22047. height: math.unit(8, "feet"),
  22048. weight: math.unit(1, "ton"),
  22049. name: "Front",
  22050. image: {
  22051. source: "./media/characters/lycoa/front.svg",
  22052. extra: 1836/1728,
  22053. bottom: 81/1917
  22054. }
  22055. },
  22056. back: {
  22057. height: math.unit(8, "feet"),
  22058. weight: math.unit(1, "ton"),
  22059. name: "Back",
  22060. image: {
  22061. source: "./media/characters/lycoa/back.svg",
  22062. extra: 1785/1720,
  22063. bottom: 91/1876
  22064. }
  22065. },
  22066. head: {
  22067. height: math.unit(1.6243, "feet"),
  22068. name: "Head",
  22069. image: {
  22070. source: "./media/characters/lycoa/head.svg",
  22071. extra: 1011/782,
  22072. bottom: 0/1011
  22073. }
  22074. },
  22075. tailmaw: {
  22076. height: math.unit(1.9, "feet"),
  22077. name: "Tailmaw",
  22078. image: {
  22079. source: "./media/characters/lycoa/tailmaw.svg"
  22080. }
  22081. },
  22082. tentacles: {
  22083. height: math.unit(2.1, "feet"),
  22084. name: "Tentacles",
  22085. image: {
  22086. source: "./media/characters/lycoa/tentacles.svg"
  22087. }
  22088. },
  22089. dick: {
  22090. height: math.unit(1.73, "feet"),
  22091. name: "Dick",
  22092. image: {
  22093. source: "./media/characters/lycoa/dick.svg"
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Normal",
  22100. height: math.unit(8, "feet"),
  22101. default: true
  22102. },
  22103. {
  22104. name: "Macro",
  22105. height: math.unit(30, "feet")
  22106. },
  22107. ]
  22108. ))
  22109. characterMakers.push(() => makeCharacter(
  22110. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22111. {
  22112. front: {
  22113. height: math.unit(4 + 2 / 12, "feet"),
  22114. weight: math.unit(70, "lb"),
  22115. name: "Front",
  22116. image: {
  22117. source: "./media/characters/naldara/front.svg",
  22118. extra: 1664/1387,
  22119. bottom: 81/1745
  22120. },
  22121. form: "anthro",
  22122. default: true
  22123. },
  22124. naga: {
  22125. height: math.unit(20, "feet"),
  22126. weight: math.unit(15000, "kg"),
  22127. name: "Front",
  22128. image: {
  22129. source: "./media/characters/naldara/naga.svg",
  22130. extra: 1590/1396,
  22131. bottom: 285/1875
  22132. },
  22133. form: "naga",
  22134. default: true
  22135. },
  22136. },
  22137. [
  22138. {
  22139. name: "Normal",
  22140. height: math.unit(4 + 2 / 12, "feet"),
  22141. form: "anthro",
  22142. default: true
  22143. },
  22144. {
  22145. name: "Normal",
  22146. height: math.unit(20, "feet"),
  22147. form: "naga",
  22148. default: true
  22149. },
  22150. ],
  22151. {
  22152. "anthro": {
  22153. name: "Anthro",
  22154. default: true
  22155. },
  22156. "naga": {
  22157. name: "Naga"
  22158. }
  22159. }
  22160. ))
  22161. characterMakers.push(() => makeCharacter(
  22162. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22163. {
  22164. front: {
  22165. height: math.unit(13 + 7 / 12, "feet"),
  22166. weight: math.unit(1500, "lb"),
  22167. name: "Front",
  22168. image: {
  22169. source: "./media/characters/briar/front.svg",
  22170. extra: 1223/1157,
  22171. bottom: 123/1346
  22172. }
  22173. },
  22174. },
  22175. [
  22176. {
  22177. name: "Normal",
  22178. height: math.unit(13 + 7 / 12, "feet"),
  22179. default: true
  22180. },
  22181. ]
  22182. ))
  22183. characterMakers.push(() => makeCharacter(
  22184. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22185. {
  22186. side: {
  22187. height: math.unit(16, "feet"),
  22188. weight: math.unit(500, "lb"),
  22189. name: "Side",
  22190. image: {
  22191. source: "./media/characters/vanguard/side.svg",
  22192. extra: 1022/914,
  22193. bottom: 30/1052
  22194. }
  22195. },
  22196. sideAlt: {
  22197. height: math.unit(10, "feet"),
  22198. weight: math.unit(500, "lb"),
  22199. name: "Side (Alt)",
  22200. image: {
  22201. source: "./media/characters/vanguard/side-alt.svg",
  22202. extra: 502 / 425,
  22203. bottom: 0.087
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(17.71, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22217. {
  22218. front: {
  22219. height: math.unit(7.5, "feet"),
  22220. weight: math.unit(2, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/artemis/work-safe-front.svg",
  22224. extra: 1192 / 1075,
  22225. bottom: 0.07
  22226. },
  22227. form: "work-safe",
  22228. default: true
  22229. },
  22230. frontNsfw: {
  22231. height: math.unit(7.5, "feet"),
  22232. weight: math.unit(2, "lb"),
  22233. name: "Front",
  22234. image: {
  22235. source: "./media/characters/artemis/calibrating-front.svg",
  22236. extra: 1192 / 1075,
  22237. bottom: 0.07
  22238. },
  22239. form: "calibrating",
  22240. default: true
  22241. },
  22242. frontNsfwer: {
  22243. height: math.unit(7.5, "feet"),
  22244. weight: math.unit(2, "lb"),
  22245. name: "Front",
  22246. image: {
  22247. source: "./media/characters/artemis/oversize-load-front.svg",
  22248. extra: 1192 / 1075,
  22249. bottom: 0.07
  22250. },
  22251. form: "oversize-load",
  22252. default: true
  22253. },
  22254. side: {
  22255. height: math.unit(7.5, "feet"),
  22256. weight: math.unit(2, "lb"),
  22257. name: "Side",
  22258. image: {
  22259. source: "./media/characters/artemis/work-safe-side.svg",
  22260. extra: 1192 / 1075,
  22261. bottom: 0.07
  22262. },
  22263. form: "work-safe"
  22264. },
  22265. sideNsfw: {
  22266. height: math.unit(7.5, "feet"),
  22267. weight: math.unit(2, "lb"),
  22268. name: "Side",
  22269. image: {
  22270. source: "./media/characters/artemis/calibrating-side.svg",
  22271. extra: 1192 / 1075,
  22272. bottom: 0.07
  22273. },
  22274. form: "calibrating"
  22275. },
  22276. sideNsfwer: {
  22277. height: math.unit(7.5, "feet"),
  22278. weight: math.unit(2, "lb"),
  22279. name: "Side",
  22280. image: {
  22281. source: "./media/characters/artemis/oversize-load-side.svg",
  22282. extra: 1192 / 1075,
  22283. bottom: 0.07
  22284. },
  22285. form: "oversize-load"
  22286. },
  22287. maw: {
  22288. height: math.unit(1.1, "feet"),
  22289. name: "Maw",
  22290. image: {
  22291. source: "./media/characters/artemis/maw.svg"
  22292. },
  22293. form: "work-safe"
  22294. },
  22295. stomach: {
  22296. height: math.unit(0.95, "feet"),
  22297. name: "Stomach",
  22298. image: {
  22299. source: "./media/characters/artemis/stomach.svg"
  22300. },
  22301. form: "work-safe"
  22302. },
  22303. dickCanine: {
  22304. height: math.unit(1, "feet"),
  22305. name: "Dick (Canine)",
  22306. image: {
  22307. source: "./media/characters/artemis/dick-canine.svg"
  22308. },
  22309. form: "calibrating"
  22310. },
  22311. dickEquine: {
  22312. height: math.unit(0.85, "feet"),
  22313. name: "Dick (Equine)",
  22314. image: {
  22315. source: "./media/characters/artemis/dick-equine.svg"
  22316. },
  22317. form: "calibrating"
  22318. },
  22319. dickExotic: {
  22320. height: math.unit(0.85, "feet"),
  22321. name: "Dick (Exotic)",
  22322. image: {
  22323. source: "./media/characters/artemis/dick-exotic.svg"
  22324. },
  22325. form: "calibrating"
  22326. },
  22327. dickCanineBigger: {
  22328. height: math.unit(1 * 1.33, "feet"),
  22329. name: "Dick (Canine)",
  22330. image: {
  22331. source: "./media/characters/artemis/dick-canine.svg"
  22332. },
  22333. form: "oversize-load"
  22334. },
  22335. dickEquineBigger: {
  22336. height: math.unit(0.85 * 1.33, "feet"),
  22337. name: "Dick (Equine)",
  22338. image: {
  22339. source: "./media/characters/artemis/dick-equine.svg"
  22340. },
  22341. form: "oversize-load"
  22342. },
  22343. dickExoticBigger: {
  22344. height: math.unit(0.85 * 1.33, "feet"),
  22345. name: "Dick (Exotic)",
  22346. image: {
  22347. source: "./media/characters/artemis/dick-exotic.svg"
  22348. },
  22349. form: "oversize-load"
  22350. },
  22351. },
  22352. [
  22353. {
  22354. name: "Normal",
  22355. height: math.unit(7.5, "feet"),
  22356. form: "work-safe",
  22357. default: true
  22358. },
  22359. {
  22360. name: "Normal",
  22361. height: math.unit(7.5, "feet"),
  22362. form: "calibrating",
  22363. default: true
  22364. },
  22365. {
  22366. name: "Normal",
  22367. height: math.unit(7.5, "feet"),
  22368. form: "oversize-load",
  22369. default: true
  22370. },
  22371. {
  22372. name: "Enlarged",
  22373. height: math.unit(12, "feet"),
  22374. form: "work-safe",
  22375. },
  22376. {
  22377. name: "Enlarged",
  22378. height: math.unit(12, "feet"),
  22379. form: "calibrating",
  22380. },
  22381. {
  22382. name: "Enlarged",
  22383. height: math.unit(12, "feet"),
  22384. form: "oversize-load",
  22385. },
  22386. ],
  22387. {
  22388. "work-safe": {
  22389. name: "Work-Safe",
  22390. default: true
  22391. },
  22392. "calibrating": {
  22393. name: "Calibrating"
  22394. },
  22395. "oversize-load": {
  22396. name: "Oversize Load"
  22397. }
  22398. }
  22399. ))
  22400. characterMakers.push(() => makeCharacter(
  22401. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22402. {
  22403. front: {
  22404. height: math.unit(5 + 3 / 12, "feet"),
  22405. weight: math.unit(160, "lb"),
  22406. name: "Front",
  22407. image: {
  22408. source: "./media/characters/kira/front.svg",
  22409. extra: 906 / 786,
  22410. bottom: 0.01
  22411. }
  22412. },
  22413. back: {
  22414. height: math.unit(5 + 3 / 12, "feet"),
  22415. weight: math.unit(160, "lb"),
  22416. name: "Back",
  22417. image: {
  22418. source: "./media/characters/kira/back.svg",
  22419. extra: 882 / 757,
  22420. bottom: 0.005
  22421. }
  22422. },
  22423. frontDressed: {
  22424. height: math.unit(5 + 3 / 12, "feet"),
  22425. weight: math.unit(160, "lb"),
  22426. name: "Front (Dressed)",
  22427. image: {
  22428. source: "./media/characters/kira/front-dressed.svg",
  22429. extra: 906 / 786,
  22430. bottom: 0.01
  22431. }
  22432. },
  22433. beans: {
  22434. height: math.unit(0.92, "feet"),
  22435. name: "Beans",
  22436. image: {
  22437. source: "./media/characters/kira/beans.svg"
  22438. }
  22439. },
  22440. },
  22441. [
  22442. {
  22443. name: "Normal",
  22444. height: math.unit(5 + 3 / 12, "feet"),
  22445. default: true
  22446. },
  22447. ]
  22448. ))
  22449. characterMakers.push(() => makeCharacter(
  22450. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22451. {
  22452. front: {
  22453. height: math.unit(5 + 4 / 12, "feet"),
  22454. weight: math.unit(145, "lb"),
  22455. name: "Front",
  22456. image: {
  22457. source: "./media/characters/scramble/front.svg",
  22458. extra: 763 / 727,
  22459. bottom: 0.05
  22460. }
  22461. },
  22462. back: {
  22463. height: math.unit(5 + 4 / 12, "feet"),
  22464. weight: math.unit(145, "lb"),
  22465. name: "Back",
  22466. image: {
  22467. source: "./media/characters/scramble/back.svg",
  22468. extra: 826 / 737,
  22469. bottom: 0.002
  22470. }
  22471. },
  22472. },
  22473. [
  22474. {
  22475. name: "Normal",
  22476. height: math.unit(5 + 4 / 12, "feet"),
  22477. default: true
  22478. },
  22479. ]
  22480. ))
  22481. characterMakers.push(() => makeCharacter(
  22482. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22483. {
  22484. side: {
  22485. height: math.unit(6 + 2 / 12, "feet"),
  22486. weight: math.unit(190, "lb"),
  22487. name: "Side",
  22488. image: {
  22489. source: "./media/characters/biscuit/side.svg",
  22490. extra: 858 / 791,
  22491. bottom: 0.044
  22492. }
  22493. },
  22494. },
  22495. [
  22496. {
  22497. name: "Normal",
  22498. height: math.unit(6 + 2 / 12, "feet"),
  22499. default: true
  22500. },
  22501. ]
  22502. ))
  22503. characterMakers.push(() => makeCharacter(
  22504. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22505. {
  22506. front: {
  22507. height: math.unit(5 + 2 / 12, "feet"),
  22508. weight: math.unit(120, "lb"),
  22509. name: "Front",
  22510. image: {
  22511. source: "./media/characters/poffin/front.svg",
  22512. extra: 786 / 680,
  22513. bottom: 0.005
  22514. }
  22515. },
  22516. },
  22517. [
  22518. {
  22519. name: "Normal",
  22520. height: math.unit(5 + 2 / 12, "feet"),
  22521. default: true
  22522. },
  22523. ]
  22524. ))
  22525. characterMakers.push(() => makeCharacter(
  22526. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22527. {
  22528. front: {
  22529. height: math.unit(6 + 3 / 12, "feet"),
  22530. weight: math.unit(519, "lb"),
  22531. name: "Front",
  22532. image: {
  22533. source: "./media/characters/dhari/front.svg",
  22534. extra: 1048 / 946,
  22535. bottom: 0.015
  22536. }
  22537. },
  22538. back: {
  22539. height: math.unit(6 + 3 / 12, "feet"),
  22540. weight: math.unit(519, "lb"),
  22541. name: "Back",
  22542. image: {
  22543. source: "./media/characters/dhari/back.svg",
  22544. extra: 1048 / 931,
  22545. bottom: 0.005
  22546. }
  22547. },
  22548. frontDressed: {
  22549. height: math.unit(6 + 3 / 12, "feet"),
  22550. weight: math.unit(519, "lb"),
  22551. name: "Front (Dressed)",
  22552. image: {
  22553. source: "./media/characters/dhari/front-dressed.svg",
  22554. extra: 1713 / 1546,
  22555. bottom: 0.02
  22556. }
  22557. },
  22558. backDressed: {
  22559. height: math.unit(6 + 3 / 12, "feet"),
  22560. weight: math.unit(519, "lb"),
  22561. name: "Back (Dressed)",
  22562. image: {
  22563. source: "./media/characters/dhari/back-dressed.svg",
  22564. extra: 1699 / 1537,
  22565. bottom: 0.01
  22566. }
  22567. },
  22568. maw: {
  22569. height: math.unit(0.95, "feet"),
  22570. name: "Maw",
  22571. image: {
  22572. source: "./media/characters/dhari/maw.svg"
  22573. }
  22574. },
  22575. wereFront: {
  22576. height: math.unit(12 + 8 / 12, "feet"),
  22577. weight: math.unit(4000, "lb"),
  22578. name: "Front (Were)",
  22579. image: {
  22580. source: "./media/characters/dhari/were-front.svg",
  22581. extra: 1065 / 969,
  22582. bottom: 0.015
  22583. }
  22584. },
  22585. wereBack: {
  22586. height: math.unit(12 + 8 / 12, "feet"),
  22587. weight: math.unit(4000, "lb"),
  22588. name: "Back (Were)",
  22589. image: {
  22590. source: "./media/characters/dhari/were-back.svg",
  22591. extra: 1065 / 969,
  22592. bottom: 0.012
  22593. }
  22594. },
  22595. wereMaw: {
  22596. height: math.unit(0.625, "meters"),
  22597. name: "Maw (Were)",
  22598. image: {
  22599. source: "./media/characters/dhari/were-maw.svg"
  22600. }
  22601. },
  22602. },
  22603. [
  22604. {
  22605. name: "Normal",
  22606. height: math.unit(6 + 3 / 12, "feet"),
  22607. default: true
  22608. },
  22609. ]
  22610. ))
  22611. characterMakers.push(() => makeCharacter(
  22612. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22613. {
  22614. anthro: {
  22615. height: math.unit(5 + 7 / 12, "feet"),
  22616. weight: math.unit(175, "lb"),
  22617. name: "Anthro",
  22618. image: {
  22619. source: "./media/characters/rena-dyne/anthro.svg",
  22620. extra: 1849 / 1785,
  22621. bottom: 0.005
  22622. }
  22623. },
  22624. taur: {
  22625. height: math.unit(15 + 6 / 12, "feet"),
  22626. weight: math.unit(8000, "lb"),
  22627. name: "Taur",
  22628. image: {
  22629. source: "./media/characters/rena-dyne/taur.svg",
  22630. extra: 2315 / 2234,
  22631. bottom: 0.033
  22632. }
  22633. },
  22634. },
  22635. [
  22636. {
  22637. name: "Normal",
  22638. height: math.unit(5 + 7 / 12, "feet"),
  22639. default: true
  22640. },
  22641. ]
  22642. ))
  22643. characterMakers.push(() => makeCharacter(
  22644. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22645. {
  22646. front: {
  22647. height: math.unit(8, "feet"),
  22648. weight: math.unit(600, "lb"),
  22649. name: "Front",
  22650. image: {
  22651. source: "./media/characters/weremeep/front.svg",
  22652. extra: 970/849,
  22653. bottom: 7/977
  22654. }
  22655. },
  22656. },
  22657. [
  22658. {
  22659. name: "Normal",
  22660. height: math.unit(8, "feet"),
  22661. default: true
  22662. },
  22663. {
  22664. name: "Lorg",
  22665. height: math.unit(12, "feet")
  22666. },
  22667. {
  22668. name: "Oh Lawd She Comin'",
  22669. height: math.unit(20, "feet")
  22670. },
  22671. ]
  22672. ))
  22673. characterMakers.push(() => makeCharacter(
  22674. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22675. {
  22676. front: {
  22677. height: math.unit(4, "feet"),
  22678. weight: math.unit(90, "lb"),
  22679. name: "Front",
  22680. image: {
  22681. source: "./media/characters/reza/front.svg",
  22682. extra: 1183 / 1111,
  22683. bottom: 0.017
  22684. }
  22685. },
  22686. back: {
  22687. height: math.unit(4, "feet"),
  22688. weight: math.unit(90, "lb"),
  22689. name: "Back",
  22690. image: {
  22691. source: "./media/characters/reza/back.svg",
  22692. extra: 1183 / 1111,
  22693. bottom: 0.01
  22694. }
  22695. },
  22696. drake: {
  22697. height: math.unit(30, "feet"),
  22698. weight: math.unit(246960, "lb"),
  22699. name: "Drake",
  22700. image: {
  22701. source: "./media/characters/reza/drake.svg",
  22702. extra: 2350 / 2024,
  22703. bottom: 60.7 / 2403
  22704. }
  22705. },
  22706. },
  22707. [
  22708. {
  22709. name: "Normal",
  22710. height: math.unit(4, "feet"),
  22711. default: true
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22717. {
  22718. side: {
  22719. height: math.unit(15, "feet"),
  22720. weight: math.unit(14, "tons"),
  22721. name: "Side",
  22722. image: {
  22723. source: "./media/characters/athea/side.svg",
  22724. extra: 960 / 540,
  22725. bottom: 0.003
  22726. }
  22727. },
  22728. sitting: {
  22729. height: math.unit(6 * 2.85, "feet"),
  22730. weight: math.unit(14, "tons"),
  22731. name: "Sitting",
  22732. image: {
  22733. source: "./media/characters/athea/sitting.svg",
  22734. extra: 621 / 581,
  22735. bottom: 0.075
  22736. }
  22737. },
  22738. maw: {
  22739. height: math.unit(7.59498031496063, "feet"),
  22740. name: "Maw",
  22741. image: {
  22742. source: "./media/characters/athea/maw.svg"
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Lap Cat",
  22749. height: math.unit(2.5, "feet")
  22750. },
  22751. {
  22752. name: "Minimacro",
  22753. height: math.unit(15, "feet"),
  22754. default: true
  22755. },
  22756. {
  22757. name: "Macro",
  22758. height: math.unit(120, "feet")
  22759. },
  22760. {
  22761. name: "Macro+",
  22762. height: math.unit(640, "feet")
  22763. },
  22764. {
  22765. name: "Colossus",
  22766. height: math.unit(2.2, "miles")
  22767. },
  22768. ]
  22769. ))
  22770. characterMakers.push(() => makeCharacter(
  22771. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22772. {
  22773. front: {
  22774. height: math.unit(8 + 8 / 12, "feet"),
  22775. weight: math.unit(130, "kg"),
  22776. name: "Front",
  22777. image: {
  22778. source: "./media/characters/seroko/front.svg",
  22779. extra: 1385 / 1280,
  22780. bottom: 0.025
  22781. }
  22782. },
  22783. back: {
  22784. height: math.unit(8 + 8 / 12, "feet"),
  22785. weight: math.unit(130, "kg"),
  22786. name: "Back",
  22787. image: {
  22788. source: "./media/characters/seroko/back.svg",
  22789. extra: 1369 / 1238,
  22790. bottom: 0.018
  22791. }
  22792. },
  22793. frontDressed: {
  22794. height: math.unit(8 + 8 / 12, "feet"),
  22795. weight: math.unit(130, "kg"),
  22796. name: "Front (Dressed)",
  22797. image: {
  22798. source: "./media/characters/seroko/front-dressed.svg",
  22799. extra: 1366 / 1275,
  22800. bottom: 0.03
  22801. }
  22802. },
  22803. },
  22804. [
  22805. {
  22806. name: "Normal",
  22807. height: math.unit(8 + 8 / 12, "feet"),
  22808. default: true
  22809. },
  22810. ]
  22811. ))
  22812. characterMakers.push(() => makeCharacter(
  22813. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22814. {
  22815. front: {
  22816. height: math.unit(5.5, "feet"),
  22817. weight: math.unit(160, "lb"),
  22818. name: "Front",
  22819. image: {
  22820. source: "./media/characters/quatzi/front.svg",
  22821. extra: 2346 / 2242,
  22822. bottom: 0.015
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(5.5, "feet"),
  22830. default: true
  22831. },
  22832. {
  22833. name: "Big",
  22834. height: math.unit(7.7, "feet")
  22835. },
  22836. ]
  22837. ))
  22838. characterMakers.push(() => makeCharacter(
  22839. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22840. {
  22841. front: {
  22842. height: math.unit(5 + 11 / 12, "feet"),
  22843. weight: math.unit(180, "lb"),
  22844. name: "Front",
  22845. image: {
  22846. source: "./media/characters/sen/front.svg",
  22847. extra: 1321 / 1254,
  22848. bottom: 0.015
  22849. }
  22850. },
  22851. side: {
  22852. height: math.unit(5 + 11 / 12, "feet"),
  22853. weight: math.unit(180, "lb"),
  22854. name: "Side",
  22855. image: {
  22856. source: "./media/characters/sen/side.svg",
  22857. extra: 1321 / 1254,
  22858. bottom: 0.007
  22859. }
  22860. },
  22861. back: {
  22862. height: math.unit(5 + 11 / 12, "feet"),
  22863. weight: math.unit(180, "lb"),
  22864. name: "Back",
  22865. image: {
  22866. source: "./media/characters/sen/back.svg",
  22867. extra: 1321 / 1254
  22868. }
  22869. },
  22870. },
  22871. [
  22872. {
  22873. name: "Normal",
  22874. height: math.unit(5 + 11 / 12, "feet"),
  22875. default: true
  22876. },
  22877. ]
  22878. ))
  22879. characterMakers.push(() => makeCharacter(
  22880. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22881. {
  22882. front: {
  22883. height: math.unit(166.6, "cm"),
  22884. weight: math.unit(66.6, "kg"),
  22885. name: "Front",
  22886. image: {
  22887. source: "./media/characters/fruity/front.svg",
  22888. extra: 1510 / 1386,
  22889. bottom: 0.04
  22890. }
  22891. },
  22892. back: {
  22893. height: math.unit(166.6, "cm"),
  22894. weight: math.unit(66.6, "lb"),
  22895. name: "Back",
  22896. image: {
  22897. source: "./media/characters/fruity/back.svg",
  22898. extra: 1563 / 1435,
  22899. bottom: 0.005
  22900. }
  22901. },
  22902. },
  22903. [
  22904. {
  22905. name: "Normal",
  22906. height: math.unit(166.6, "cm"),
  22907. default: true
  22908. },
  22909. {
  22910. name: "Demonic",
  22911. height: math.unit(166.6, "feet")
  22912. },
  22913. ]
  22914. ))
  22915. characterMakers.push(() => makeCharacter(
  22916. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22917. {
  22918. side: {
  22919. height: math.unit(10, "feet"),
  22920. weight: math.unit(500, "lb"),
  22921. name: "Side",
  22922. image: {
  22923. source: "./media/characters/zost/side.svg",
  22924. extra: 2870/2533,
  22925. bottom: 252/3122
  22926. }
  22927. },
  22928. mawFront: {
  22929. height: math.unit(1.08, "meters"),
  22930. name: "Maw (Front)",
  22931. image: {
  22932. source: "./media/characters/zost/maw-front.svg"
  22933. }
  22934. },
  22935. mawSide: {
  22936. height: math.unit(2.66, "feet"),
  22937. name: "Maw (Side)",
  22938. image: {
  22939. source: "./media/characters/zost/maw-side.svg"
  22940. }
  22941. },
  22942. wingspan: {
  22943. height: math.unit(7.4, "feet"),
  22944. name: "Wingspan",
  22945. image: {
  22946. source: "./media/characters/zost/wingspan.svg"
  22947. }
  22948. },
  22949. },
  22950. [
  22951. {
  22952. name: "Normal",
  22953. height: math.unit(10, "feet"),
  22954. default: true
  22955. },
  22956. ]
  22957. ))
  22958. characterMakers.push(() => makeCharacter(
  22959. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22960. {
  22961. front: {
  22962. height: math.unit(5 + 4 / 12, "feet"),
  22963. weight: math.unit(120, "lb"),
  22964. name: "Front",
  22965. image: {
  22966. source: "./media/characters/luci/front.svg",
  22967. extra: 1985 / 1884,
  22968. bottom: 0.04
  22969. }
  22970. },
  22971. back: {
  22972. height: math.unit(5 + 4 / 12, "feet"),
  22973. weight: math.unit(120, "lb"),
  22974. name: "Back",
  22975. image: {
  22976. source: "./media/characters/luci/back.svg",
  22977. extra: 1892 / 1791,
  22978. bottom: 0.002
  22979. }
  22980. },
  22981. },
  22982. [
  22983. {
  22984. name: "Normal",
  22985. height: math.unit(5 + 4 / 12, "feet"),
  22986. default: true
  22987. },
  22988. ]
  22989. ))
  22990. characterMakers.push(() => makeCharacter(
  22991. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22992. {
  22993. front: {
  22994. height: math.unit(1500, "feet"),
  22995. weight: math.unit(3.8e6, "tons"),
  22996. name: "Front",
  22997. image: {
  22998. source: "./media/characters/2th/front.svg",
  22999. extra: 3489 / 3350,
  23000. bottom: 0.1
  23001. }
  23002. },
  23003. foot: {
  23004. height: math.unit(461, "feet"),
  23005. name: "Foot",
  23006. image: {
  23007. source: "./media/characters/2th/foot.svg"
  23008. }
  23009. },
  23010. },
  23011. [
  23012. {
  23013. name: "\"Micro\"",
  23014. height: math.unit(15 + 7 / 12, "feet")
  23015. },
  23016. {
  23017. name: "Normal",
  23018. height: math.unit(1500, "feet"),
  23019. default: true
  23020. },
  23021. {
  23022. name: "Macro",
  23023. height: math.unit(5000, "feet")
  23024. },
  23025. {
  23026. name: "Megamacro",
  23027. height: math.unit(15, "miles")
  23028. },
  23029. {
  23030. name: "Gigamacro",
  23031. height: math.unit(4000, "miles")
  23032. },
  23033. {
  23034. name: "Galactic",
  23035. height: math.unit(50, "AU")
  23036. },
  23037. ]
  23038. ))
  23039. characterMakers.push(() => makeCharacter(
  23040. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23041. {
  23042. front: {
  23043. height: math.unit(5 + 6 / 12, "feet"),
  23044. weight: math.unit(220, "lb"),
  23045. name: "Front",
  23046. image: {
  23047. source: "./media/characters/amethyst/front.svg",
  23048. extra: 2078 / 2040,
  23049. bottom: 0.045
  23050. }
  23051. },
  23052. back: {
  23053. height: math.unit(5 + 6 / 12, "feet"),
  23054. weight: math.unit(220, "lb"),
  23055. name: "Back",
  23056. image: {
  23057. source: "./media/characters/amethyst/back.svg",
  23058. extra: 2021 / 1989,
  23059. bottom: 0.02
  23060. }
  23061. },
  23062. },
  23063. [
  23064. {
  23065. name: "Normal",
  23066. height: math.unit(5 + 6 / 12, "feet"),
  23067. default: true
  23068. },
  23069. ]
  23070. ))
  23071. characterMakers.push(() => makeCharacter(
  23072. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23073. {
  23074. front: {
  23075. height: math.unit(4 + 11 / 12, "feet"),
  23076. weight: math.unit(120, "lb"),
  23077. name: "Front",
  23078. image: {
  23079. source: "./media/characters/yumi-akiyama/front.svg",
  23080. extra: 1327 / 1235,
  23081. bottom: 0.02
  23082. }
  23083. },
  23084. back: {
  23085. height: math.unit(4 + 11 / 12, "feet"),
  23086. weight: math.unit(120, "lb"),
  23087. name: "Back",
  23088. image: {
  23089. source: "./media/characters/yumi-akiyama/back.svg",
  23090. extra: 1287 / 1245,
  23091. bottom: 0.002
  23092. }
  23093. },
  23094. },
  23095. [
  23096. {
  23097. name: "Galactic",
  23098. height: math.unit(50, "galaxies"),
  23099. default: true
  23100. },
  23101. {
  23102. name: "Universal",
  23103. height: math.unit(100, "universes")
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23109. {
  23110. front: {
  23111. height: math.unit(8, "feet"),
  23112. weight: math.unit(500, "lb"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/rifter-yrmori/front.svg",
  23116. extra: 1180 / 1125,
  23117. bottom: 0.02
  23118. }
  23119. },
  23120. back: {
  23121. height: math.unit(8, "feet"),
  23122. weight: math.unit(500, "lb"),
  23123. name: "Back",
  23124. image: {
  23125. source: "./media/characters/rifter-yrmori/back.svg",
  23126. extra: 1190 / 1145,
  23127. bottom: 0.001
  23128. }
  23129. },
  23130. wings: {
  23131. height: math.unit(7.75, "feet"),
  23132. weight: math.unit(500, "lb"),
  23133. name: "Wings",
  23134. image: {
  23135. source: "./media/characters/rifter-yrmori/wings.svg",
  23136. extra: 1357 / 1285
  23137. }
  23138. },
  23139. maw: {
  23140. height: math.unit(0.8, "feet"),
  23141. name: "Maw",
  23142. image: {
  23143. source: "./media/characters/rifter-yrmori/maw.svg"
  23144. }
  23145. },
  23146. mawfront: {
  23147. height: math.unit(1.45, "feet"),
  23148. name: "Maw (Front)",
  23149. image: {
  23150. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Normal",
  23157. height: math.unit(8, "feet"),
  23158. default: true
  23159. },
  23160. {
  23161. name: "Macro",
  23162. height: math.unit(42, "meters")
  23163. },
  23164. ]
  23165. ))
  23166. characterMakers.push(() => makeCharacter(
  23167. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23168. {
  23169. were: {
  23170. height: math.unit(25 + 6 / 12, "feet"),
  23171. weight: math.unit(10000, "lb"),
  23172. name: "Were",
  23173. image: {
  23174. source: "./media/characters/tahajin/were.svg",
  23175. extra: 801 / 770,
  23176. bottom: 0.042
  23177. }
  23178. },
  23179. aquatic: {
  23180. height: math.unit(6 + 4 / 12, "feet"),
  23181. weight: math.unit(160, "lb"),
  23182. name: "Aquatic",
  23183. image: {
  23184. source: "./media/characters/tahajin/aquatic.svg",
  23185. extra: 572 / 542,
  23186. bottom: 0.04
  23187. }
  23188. },
  23189. chow: {
  23190. height: math.unit(8 + 11 / 12, "feet"),
  23191. weight: math.unit(450, "lb"),
  23192. name: "Chow",
  23193. image: {
  23194. source: "./media/characters/tahajin/chow.svg",
  23195. extra: 660 / 640,
  23196. bottom: 0.015
  23197. }
  23198. },
  23199. demiNaga: {
  23200. height: math.unit(6 + 8 / 12, "feet"),
  23201. weight: math.unit(300, "lb"),
  23202. name: "Demi Naga",
  23203. image: {
  23204. source: "./media/characters/tahajin/demi-naga.svg",
  23205. extra: 643 / 615,
  23206. bottom: 0.1
  23207. }
  23208. },
  23209. data: {
  23210. height: math.unit(5, "inches"),
  23211. weight: math.unit(0.1, "lb"),
  23212. name: "Data",
  23213. image: {
  23214. source: "./media/characters/tahajin/data.svg"
  23215. }
  23216. },
  23217. fluu: {
  23218. height: math.unit(5 + 7 / 12, "feet"),
  23219. weight: math.unit(140, "lb"),
  23220. name: "Fluu",
  23221. image: {
  23222. source: "./media/characters/tahajin/fluu.svg",
  23223. extra: 628 / 592,
  23224. bottom: 0.02
  23225. }
  23226. },
  23227. starWarrior: {
  23228. height: math.unit(4 + 5 / 12, "feet"),
  23229. weight: math.unit(50, "lb"),
  23230. name: "Star Warrior",
  23231. image: {
  23232. source: "./media/characters/tahajin/star-warrior.svg"
  23233. }
  23234. },
  23235. },
  23236. [
  23237. {
  23238. name: "Normal",
  23239. height: math.unit(25 + 6 / 12, "feet"),
  23240. default: true
  23241. },
  23242. ]
  23243. ))
  23244. characterMakers.push(() => makeCharacter(
  23245. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23246. {
  23247. front: {
  23248. height: math.unit(8, "feet"),
  23249. weight: math.unit(350, "lb"),
  23250. name: "Front",
  23251. image: {
  23252. source: "./media/characters/gabira/front.svg",
  23253. extra: 1261/1154,
  23254. bottom: 51/1312
  23255. }
  23256. },
  23257. back: {
  23258. height: math.unit(8, "feet"),
  23259. weight: math.unit(350, "lb"),
  23260. name: "Back",
  23261. image: {
  23262. source: "./media/characters/gabira/back.svg",
  23263. extra: 1265/1163,
  23264. bottom: 46/1311
  23265. }
  23266. },
  23267. head: {
  23268. height: math.unit(2.85, "feet"),
  23269. name: "Head",
  23270. image: {
  23271. source: "./media/characters/gabira/head.svg"
  23272. }
  23273. },
  23274. },
  23275. [
  23276. {
  23277. name: "Normal",
  23278. height: math.unit(8, "feet"),
  23279. default: true
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23285. {
  23286. front: {
  23287. height: math.unit(5 + 3 / 12, "feet"),
  23288. weight: math.unit(137, "lb"),
  23289. name: "Front",
  23290. image: {
  23291. source: "./media/characters/sasha-katraine/front.svg",
  23292. extra: 1745/1694,
  23293. bottom: 37/1782
  23294. }
  23295. },
  23296. back: {
  23297. height: math.unit(5 + 3 / 12, "feet"),
  23298. weight: math.unit(137, "lb"),
  23299. name: "Back",
  23300. image: {
  23301. source: "./media/characters/sasha-katraine/back.svg",
  23302. extra: 1776/1699,
  23303. bottom: 26/1802
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Micro",
  23310. height: math.unit(5, "inches")
  23311. },
  23312. {
  23313. name: "Normal",
  23314. height: math.unit(5 + 3 / 12, "feet"),
  23315. default: true
  23316. },
  23317. ]
  23318. ))
  23319. characterMakers.push(() => makeCharacter(
  23320. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23321. {
  23322. side: {
  23323. height: math.unit(4, "inches"),
  23324. weight: math.unit(200, "grams"),
  23325. name: "Side",
  23326. image: {
  23327. source: "./media/characters/der/side.svg",
  23328. extra: 719 / 400,
  23329. bottom: 30.6 / 749.9187
  23330. }
  23331. },
  23332. },
  23333. [
  23334. {
  23335. name: "Micro",
  23336. height: math.unit(4, "inches"),
  23337. default: true
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23343. {
  23344. side: {
  23345. height: math.unit(30, "meters"),
  23346. weight: math.unit(700, "tonnes"),
  23347. name: "Side",
  23348. image: {
  23349. source: "./media/characters/fixerdragon/side.svg",
  23350. extra: (1293.0514 - 116.03) / 1106.86,
  23351. bottom: 116.03 / 1293.0514
  23352. }
  23353. },
  23354. },
  23355. [
  23356. {
  23357. name: "Planck",
  23358. height: math.unit(1.6e-35, "meters")
  23359. },
  23360. {
  23361. name: "Micro",
  23362. height: math.unit(0.4, "meters")
  23363. },
  23364. {
  23365. name: "Normal",
  23366. height: math.unit(30, "meters"),
  23367. default: true
  23368. },
  23369. {
  23370. name: "Megamacro",
  23371. height: math.unit(1.2, "megameters")
  23372. },
  23373. {
  23374. name: "Teramacro",
  23375. height: math.unit(130, "terameters")
  23376. },
  23377. {
  23378. name: "Yottamacro",
  23379. height: math.unit(6200, "yottameters")
  23380. },
  23381. ]
  23382. ));
  23383. characterMakers.push(() => makeCharacter(
  23384. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23385. {
  23386. front: {
  23387. height: math.unit(8, "feet"),
  23388. weight: math.unit(250, "lb"),
  23389. name: "Front",
  23390. image: {
  23391. source: "./media/characters/kite/front.svg",
  23392. extra: 2796 / 2659,
  23393. bottom: 0.002
  23394. }
  23395. },
  23396. },
  23397. [
  23398. {
  23399. name: "Normal",
  23400. height: math.unit(8, "feet"),
  23401. default: true
  23402. },
  23403. {
  23404. name: "Macro",
  23405. height: math.unit(360, "feet")
  23406. },
  23407. {
  23408. name: "Megamacro",
  23409. height: math.unit(1500, "feet")
  23410. },
  23411. ]
  23412. ))
  23413. characterMakers.push(() => makeCharacter(
  23414. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23415. {
  23416. front: {
  23417. height: math.unit(5 + 11/12, "feet"),
  23418. weight: math.unit(170, "lb"),
  23419. name: "Front",
  23420. image: {
  23421. source: "./media/characters/poojawa-vynar/front.svg",
  23422. extra: 1735/1585,
  23423. bottom: 96/1831
  23424. }
  23425. },
  23426. back: {
  23427. height: math.unit(5 + 11/12, "feet"),
  23428. weight: math.unit(170, "lb"),
  23429. name: "Back",
  23430. image: {
  23431. source: "./media/characters/poojawa-vynar/back.svg",
  23432. extra: 1749/1607,
  23433. bottom: 28/1777
  23434. }
  23435. },
  23436. male: {
  23437. height: math.unit(5 + 11/12, "feet"),
  23438. weight: math.unit(170, "lb"),
  23439. name: "Male",
  23440. image: {
  23441. source: "./media/characters/poojawa-vynar/male.svg",
  23442. extra: 1855/1713,
  23443. bottom: 63/1918
  23444. }
  23445. },
  23446. taur: {
  23447. height: math.unit(5 + 11/12, "feet"),
  23448. weight: math.unit(170, "lb"),
  23449. name: "Taur",
  23450. image: {
  23451. source: "./media/characters/poojawa-vynar/taur.svg",
  23452. extra: 1151/1059,
  23453. bottom: 356/1507
  23454. }
  23455. },
  23456. frontDressed: {
  23457. height: math.unit(5 + 11/12, "feet"),
  23458. weight: math.unit(170, "lb"),
  23459. name: "Front (Dressed)",
  23460. image: {
  23461. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23462. extra: 1735/1585,
  23463. bottom: 96/1831
  23464. }
  23465. },
  23466. backDressed: {
  23467. height: math.unit(5 + 11/12, "feet"),
  23468. weight: math.unit(170, "lb"),
  23469. name: "Back (Dressed)",
  23470. image: {
  23471. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23472. extra: 1749/1607,
  23473. bottom: 28/1777
  23474. }
  23475. },
  23476. maleDressed: {
  23477. height: math.unit(5 + 11/12, "feet"),
  23478. weight: math.unit(170, "lb"),
  23479. name: "Male (Dressed)",
  23480. image: {
  23481. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23482. extra: 1855/1713,
  23483. bottom: 63/1918
  23484. }
  23485. },
  23486. taurDressed: {
  23487. height: math.unit(5 + 11/12, "feet"),
  23488. weight: math.unit(170, "lb"),
  23489. name: "Taur (Dressed)",
  23490. image: {
  23491. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23492. extra: 1151/1059,
  23493. bottom: 356/1507
  23494. }
  23495. },
  23496. maw: {
  23497. height: math.unit(1.46, "feet"),
  23498. name: "Maw",
  23499. image: {
  23500. source: "./media/characters/poojawa-vynar/maw.svg"
  23501. }
  23502. },
  23503. head: {
  23504. height: math.unit(2.34, "feet"),
  23505. name: "Head",
  23506. image: {
  23507. source: "./media/characters/poojawa-vynar/head.svg"
  23508. }
  23509. },
  23510. paw: {
  23511. height: math.unit(1.61, "feet"),
  23512. name: "Paw",
  23513. image: {
  23514. source: "./media/characters/poojawa-vynar/paw.svg"
  23515. }
  23516. },
  23517. pawToering: {
  23518. height: math.unit(1.72, "feet"),
  23519. name: "Paw (Toering)",
  23520. image: {
  23521. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23522. }
  23523. },
  23524. toering: {
  23525. height: math.unit(2.9, "inches"),
  23526. name: "Toering",
  23527. image: {
  23528. source: "./media/characters/poojawa-vynar/toering.svg"
  23529. }
  23530. },
  23531. shaft: {
  23532. height: math.unit(0.625, "feet"),
  23533. name: "Shaft",
  23534. image: {
  23535. source: "./media/characters/poojawa-vynar/shaft.svg"
  23536. }
  23537. },
  23538. spade: {
  23539. height: math.unit(0.42, "feet"),
  23540. name: "Spade",
  23541. image: {
  23542. source: "./media/characters/poojawa-vynar/spade.svg"
  23543. }
  23544. },
  23545. },
  23546. [
  23547. {
  23548. name: "Shortstack",
  23549. height: math.unit(4, "feet")
  23550. },
  23551. {
  23552. name: "Normal",
  23553. height: math.unit(5 + 11 / 12, "feet"),
  23554. default: true
  23555. },
  23556. {
  23557. name: "Tauric",
  23558. height: math.unit(4, "meters")
  23559. },
  23560. ]
  23561. ))
  23562. characterMakers.push(() => makeCharacter(
  23563. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23564. {
  23565. front: {
  23566. height: math.unit(293, "meters"),
  23567. weight: math.unit(70400, "tons"),
  23568. name: "Front",
  23569. image: {
  23570. source: "./media/characters/violette/front.svg",
  23571. extra: 1227 / 1180,
  23572. bottom: 0.005
  23573. }
  23574. },
  23575. back: {
  23576. height: math.unit(293, "meters"),
  23577. weight: math.unit(70400, "tons"),
  23578. name: "Back",
  23579. image: {
  23580. source: "./media/characters/violette/back.svg",
  23581. extra: 1227 / 1180,
  23582. bottom: 0.005
  23583. }
  23584. },
  23585. },
  23586. [
  23587. {
  23588. name: "Macro",
  23589. height: math.unit(293, "meters"),
  23590. default: true
  23591. },
  23592. ]
  23593. ))
  23594. characterMakers.push(() => makeCharacter(
  23595. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23596. {
  23597. front: {
  23598. height: math.unit(1050, "feet"),
  23599. weight: math.unit(200000, "tons"),
  23600. name: "Front",
  23601. image: {
  23602. source: "./media/characters/alessandra/front.svg",
  23603. extra: 960 / 912,
  23604. bottom: 0.06
  23605. }
  23606. },
  23607. },
  23608. [
  23609. {
  23610. name: "Macro",
  23611. height: math.unit(1050, "feet")
  23612. },
  23613. {
  23614. name: "Macro+",
  23615. height: math.unit(900, "meters"),
  23616. default: true
  23617. },
  23618. ]
  23619. ))
  23620. characterMakers.push(() => makeCharacter(
  23621. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23622. {
  23623. front: {
  23624. height: math.unit(5, "feet"),
  23625. weight: math.unit(187, "lb"),
  23626. name: "Front",
  23627. image: {
  23628. source: "./media/characters/person/front.svg",
  23629. extra: 3087 / 2945,
  23630. bottom: 91 / 3181
  23631. }
  23632. },
  23633. },
  23634. [
  23635. {
  23636. name: "Micro",
  23637. height: math.unit(3, "inches")
  23638. },
  23639. {
  23640. name: "Normal",
  23641. height: math.unit(5, "feet"),
  23642. default: true
  23643. },
  23644. {
  23645. name: "Macro",
  23646. height: math.unit(90, "feet")
  23647. },
  23648. {
  23649. name: "Max Size",
  23650. height: math.unit(280, "feet")
  23651. },
  23652. ]
  23653. ))
  23654. characterMakers.push(() => makeCharacter(
  23655. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23656. {
  23657. front: {
  23658. height: math.unit(4.5, "meters"),
  23659. weight: math.unit(3200, "lb"),
  23660. name: "Front",
  23661. image: {
  23662. source: "./media/characters/ty/front.svg",
  23663. extra: 1038 / 960,
  23664. bottom: 31.156 / 1068
  23665. }
  23666. },
  23667. back: {
  23668. height: math.unit(4.5, "meters"),
  23669. weight: math.unit(3200, "lb"),
  23670. name: "Back",
  23671. image: {
  23672. source: "./media/characters/ty/back.svg",
  23673. extra: 1044 / 966,
  23674. bottom: 7.48 / 1049
  23675. }
  23676. },
  23677. },
  23678. [
  23679. {
  23680. name: "Normal",
  23681. height: math.unit(4.5, "meters"),
  23682. default: true
  23683. },
  23684. ]
  23685. ))
  23686. characterMakers.push(() => makeCharacter(
  23687. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23688. {
  23689. front: {
  23690. height: math.unit(5 + 4 / 12, "feet"),
  23691. weight: math.unit(115, "lb"),
  23692. name: "Front",
  23693. image: {
  23694. source: "./media/characters/rocky/front.svg",
  23695. extra: 1012 / 975,
  23696. bottom: 54 / 1066
  23697. }
  23698. },
  23699. },
  23700. [
  23701. {
  23702. name: "Normal",
  23703. height: math.unit(5 + 4 / 12, "feet"),
  23704. default: true
  23705. },
  23706. ]
  23707. ))
  23708. characterMakers.push(() => makeCharacter(
  23709. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23710. {
  23711. upright: {
  23712. height: math.unit(6, "meters"),
  23713. weight: math.unit(4000, "kg"),
  23714. name: "Upright",
  23715. image: {
  23716. source: "./media/characters/ruin/upright.svg",
  23717. extra: 668 / 661,
  23718. bottom: 42 / 799.8396
  23719. }
  23720. },
  23721. },
  23722. [
  23723. {
  23724. name: "Normal",
  23725. height: math.unit(6, "meters"),
  23726. default: true
  23727. },
  23728. ]
  23729. ))
  23730. characterMakers.push(() => makeCharacter(
  23731. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23732. {
  23733. front: {
  23734. height: math.unit(5, "feet"),
  23735. weight: math.unit(106, "lb"),
  23736. name: "Front",
  23737. image: {
  23738. source: "./media/characters/robin/front.svg",
  23739. extra: 862 / 799,
  23740. bottom: 42.4 / 914.8856
  23741. }
  23742. },
  23743. },
  23744. [
  23745. {
  23746. name: "Normal",
  23747. height: math.unit(5, "feet"),
  23748. default: true
  23749. },
  23750. ]
  23751. ))
  23752. characterMakers.push(() => makeCharacter(
  23753. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23754. {
  23755. side: {
  23756. height: math.unit(3, "feet"),
  23757. weight: math.unit(225, "lb"),
  23758. name: "Side",
  23759. image: {
  23760. source: "./media/characters/saian/side.svg",
  23761. extra: 566 / 356,
  23762. bottom: 79.7 / 643
  23763. }
  23764. },
  23765. maw: {
  23766. height: math.unit(2.85, "feet"),
  23767. name: "Maw",
  23768. image: {
  23769. source: "./media/characters/saian/maw.svg"
  23770. }
  23771. },
  23772. },
  23773. [
  23774. {
  23775. name: "Normal",
  23776. height: math.unit(3, "feet"),
  23777. default: true
  23778. },
  23779. ]
  23780. ))
  23781. characterMakers.push(() => makeCharacter(
  23782. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23783. {
  23784. side: {
  23785. height: math.unit(8, "feet"),
  23786. weight: math.unit(300, "lb"),
  23787. name: "Side",
  23788. image: {
  23789. source: "./media/characters/equus-silvermane/side.svg",
  23790. extra: 2176 / 2050,
  23791. bottom: 65.7 / 2245
  23792. }
  23793. },
  23794. front: {
  23795. height: math.unit(8, "feet"),
  23796. weight: math.unit(300, "lb"),
  23797. name: "Front",
  23798. image: {
  23799. source: "./media/characters/equus-silvermane/front.svg",
  23800. extra: 4633 / 4400,
  23801. bottom: 71.3 / 4706.915
  23802. }
  23803. },
  23804. sideStepping: {
  23805. height: math.unit(8, "feet"),
  23806. weight: math.unit(300, "lb"),
  23807. name: "Side (Stepping)",
  23808. image: {
  23809. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23810. extra: 1968 / 1860,
  23811. bottom: 16.4 / 1989
  23812. }
  23813. },
  23814. },
  23815. [
  23816. {
  23817. name: "Normal",
  23818. height: math.unit(8, "feet")
  23819. },
  23820. {
  23821. name: "Minimacro",
  23822. height: math.unit(75, "feet"),
  23823. default: true
  23824. },
  23825. {
  23826. name: "Macro",
  23827. height: math.unit(150, "feet")
  23828. },
  23829. {
  23830. name: "Macro+",
  23831. height: math.unit(1000, "feet")
  23832. },
  23833. {
  23834. name: "Megamacro",
  23835. height: math.unit(1, "mile")
  23836. },
  23837. ]
  23838. ))
  23839. characterMakers.push(() => makeCharacter(
  23840. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23841. {
  23842. side: {
  23843. height: math.unit(20, "feet"),
  23844. weight: math.unit(30000, "kg"),
  23845. name: "Side",
  23846. image: {
  23847. source: "./media/characters/windar/side.svg",
  23848. extra: 1491 / 1248,
  23849. bottom: 82.56 / 1568
  23850. }
  23851. },
  23852. },
  23853. [
  23854. {
  23855. name: "Normal",
  23856. height: math.unit(20, "feet"),
  23857. default: true
  23858. },
  23859. ]
  23860. ))
  23861. characterMakers.push(() => makeCharacter(
  23862. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23863. {
  23864. side: {
  23865. height: math.unit(15.66, "feet"),
  23866. weight: math.unit(150, "lb"),
  23867. name: "Side",
  23868. image: {
  23869. source: "./media/characters/melody/side.svg",
  23870. extra: 1097 / 944,
  23871. bottom: 11.8 / 1109
  23872. }
  23873. },
  23874. sideOutfit: {
  23875. height: math.unit(15.66, "feet"),
  23876. weight: math.unit(150, "lb"),
  23877. name: "Side (Outfit)",
  23878. image: {
  23879. source: "./media/characters/melody/side-outfit.svg",
  23880. extra: 1097 / 944,
  23881. bottom: 11.8 / 1109
  23882. }
  23883. },
  23884. },
  23885. [
  23886. {
  23887. name: "Normal",
  23888. height: math.unit(15.66, "feet"),
  23889. default: true
  23890. },
  23891. ]
  23892. ))
  23893. characterMakers.push(() => makeCharacter(
  23894. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23895. {
  23896. armoredFront: {
  23897. height: math.unit(8, "feet"),
  23898. weight: math.unit(325, "lb"),
  23899. name: "Front",
  23900. image: {
  23901. source: "./media/characters/windera/armored-front.svg",
  23902. extra: 1830/1598,
  23903. bottom: 151/1981
  23904. },
  23905. form: "armored",
  23906. default: true
  23907. },
  23908. macroFront: {
  23909. height: math.unit(70, "feet"),
  23910. weight: math.unit(315453, "lb"),
  23911. name: "Front",
  23912. image: {
  23913. source: "./media/characters/windera/macro-front.svg",
  23914. extra: 963/883,
  23915. bottom: 23/986
  23916. },
  23917. form: "macro",
  23918. default: true
  23919. },
  23920. },
  23921. [
  23922. {
  23923. name: "Normal",
  23924. height: math.unit(8, "feet"),
  23925. default: true,
  23926. form: "armored"
  23927. },
  23928. {
  23929. name: "Normal",
  23930. height: math.unit(70, "feet"),
  23931. default: true,
  23932. form: "macro"
  23933. },
  23934. ],
  23935. {
  23936. "armored": {
  23937. name: "Armored",
  23938. default: true
  23939. },
  23940. "macro": {
  23941. name: "Macro",
  23942. },
  23943. }
  23944. ))
  23945. characterMakers.push(() => makeCharacter(
  23946. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23947. {
  23948. front: {
  23949. height: math.unit(28.75, "feet"),
  23950. weight: math.unit(2000, "kg"),
  23951. name: "Front",
  23952. image: {
  23953. source: "./media/characters/sonear/front.svg",
  23954. extra: 1041.1 / 964.9,
  23955. bottom: 53.7 / 1096.6
  23956. }
  23957. },
  23958. },
  23959. [
  23960. {
  23961. name: "Normal",
  23962. height: math.unit(28.75, "feet"),
  23963. default: true
  23964. },
  23965. ]
  23966. ))
  23967. characterMakers.push(() => makeCharacter(
  23968. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23969. {
  23970. side: {
  23971. height: math.unit(25.5, "feet"),
  23972. weight: math.unit(23000, "kg"),
  23973. name: "Side",
  23974. image: {
  23975. source: "./media/characters/kanara/side.svg"
  23976. }
  23977. },
  23978. },
  23979. [
  23980. {
  23981. name: "Normal",
  23982. height: math.unit(25.5, "feet"),
  23983. default: true
  23984. },
  23985. ]
  23986. ))
  23987. characterMakers.push(() => makeCharacter(
  23988. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23989. {
  23990. side: {
  23991. height: math.unit(10, "feet"),
  23992. weight: math.unit(1000, "kg"),
  23993. name: "Side",
  23994. image: {
  23995. source: "./media/characters/ereus/side.svg",
  23996. extra: 1157 / 959,
  23997. bottom: 153 / 1312.5
  23998. }
  23999. },
  24000. },
  24001. [
  24002. {
  24003. name: "Normal",
  24004. height: math.unit(10, "feet"),
  24005. default: true
  24006. },
  24007. ]
  24008. ))
  24009. characterMakers.push(() => makeCharacter(
  24010. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24011. {
  24012. side: {
  24013. height: math.unit(4.5, "feet"),
  24014. weight: math.unit(500, "lb"),
  24015. name: "Side",
  24016. image: {
  24017. source: "./media/characters/e-ter/side.svg",
  24018. extra: 1550 / 1248,
  24019. bottom: 146 / 1694
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Normal",
  24026. height: math.unit(4.5, "feet"),
  24027. default: true
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24033. {
  24034. side: {
  24035. height: math.unit(9.7, "feet"),
  24036. weight: math.unit(4000, "kg"),
  24037. name: "Side",
  24038. image: {
  24039. source: "./media/characters/yamie/side.svg"
  24040. }
  24041. },
  24042. },
  24043. [
  24044. {
  24045. name: "Normal",
  24046. height: math.unit(9.7, "feet"),
  24047. default: true
  24048. },
  24049. ]
  24050. ))
  24051. characterMakers.push(() => makeCharacter(
  24052. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24053. {
  24054. front: {
  24055. height: math.unit(50, "feet"),
  24056. weight: math.unit(50000, "kg"),
  24057. name: "Front",
  24058. image: {
  24059. source: "./media/characters/anders/front.svg",
  24060. extra: 570 / 539,
  24061. bottom: 14.7 / 586.7
  24062. }
  24063. },
  24064. },
  24065. [
  24066. {
  24067. name: "Large",
  24068. height: math.unit(50, "feet")
  24069. },
  24070. {
  24071. name: "Macro",
  24072. height: math.unit(2000, "feet"),
  24073. default: true
  24074. },
  24075. {
  24076. name: "Megamacro",
  24077. height: math.unit(12, "miles")
  24078. },
  24079. ]
  24080. ))
  24081. characterMakers.push(() => makeCharacter(
  24082. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24083. {
  24084. front: {
  24085. height: math.unit(7 + 2 / 12, "feet"),
  24086. weight: math.unit(300, "lb"),
  24087. name: "Front",
  24088. image: {
  24089. source: "./media/characters/reban/front.svg",
  24090. extra: 1287/1212,
  24091. bottom: 148/1435
  24092. }
  24093. },
  24094. head: {
  24095. height: math.unit(1.95, "feet"),
  24096. name: "Head",
  24097. image: {
  24098. source: "./media/characters/reban/head.svg"
  24099. }
  24100. },
  24101. maw: {
  24102. height: math.unit(0.95, "feet"),
  24103. name: "Maw",
  24104. image: {
  24105. source: "./media/characters/reban/maw.svg"
  24106. }
  24107. },
  24108. foot: {
  24109. height: math.unit(1.65, "feet"),
  24110. name: "Foot",
  24111. image: {
  24112. source: "./media/characters/reban/foot.svg"
  24113. }
  24114. },
  24115. dick: {
  24116. height: math.unit(7 / 5, "feet"),
  24117. name: "Dick",
  24118. image: {
  24119. source: "./media/characters/reban/dick.svg"
  24120. }
  24121. },
  24122. },
  24123. [
  24124. {
  24125. name: "Natural Height",
  24126. height: math.unit(7 + 2 / 12, "feet")
  24127. },
  24128. {
  24129. name: "Macro",
  24130. height: math.unit(500, "feet"),
  24131. default: true
  24132. },
  24133. {
  24134. name: "Canon Height",
  24135. height: math.unit(50, "AU")
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24141. {
  24142. front: {
  24143. height: math.unit(6, "feet"),
  24144. weight: math.unit(150, "lb"),
  24145. name: "Front",
  24146. image: {
  24147. source: "./media/characters/terrance-keayes/front.svg",
  24148. extra: 1.005,
  24149. bottom: 151 / 1615
  24150. }
  24151. },
  24152. side: {
  24153. height: math.unit(6, "feet"),
  24154. weight: math.unit(150, "lb"),
  24155. name: "Side",
  24156. image: {
  24157. source: "./media/characters/terrance-keayes/side.svg",
  24158. extra: 1.005,
  24159. bottom: 129.4 / 1544
  24160. }
  24161. },
  24162. back: {
  24163. height: math.unit(6, "feet"),
  24164. weight: math.unit(150, "lb"),
  24165. name: "Back",
  24166. image: {
  24167. source: "./media/characters/terrance-keayes/back.svg",
  24168. extra: 1.005,
  24169. bottom: 58.4 / 1557.3
  24170. }
  24171. },
  24172. dick: {
  24173. height: math.unit(6 * 0.208, "feet"),
  24174. name: "Dick",
  24175. image: {
  24176. source: "./media/characters/terrance-keayes/dick.svg"
  24177. }
  24178. },
  24179. },
  24180. [
  24181. {
  24182. name: "Canon Height",
  24183. height: math.unit(35, "miles"),
  24184. default: true
  24185. },
  24186. ]
  24187. ))
  24188. characterMakers.push(() => makeCharacter(
  24189. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24190. {
  24191. front: {
  24192. height: math.unit(6, "feet"),
  24193. weight: math.unit(150, "lb"),
  24194. name: "Front",
  24195. image: {
  24196. source: "./media/characters/ofelia/front.svg",
  24197. extra: 1130/1117,
  24198. bottom: 91/1221
  24199. }
  24200. },
  24201. back: {
  24202. height: math.unit(6, "feet"),
  24203. weight: math.unit(150, "lb"),
  24204. name: "Back",
  24205. image: {
  24206. source: "./media/characters/ofelia/back.svg",
  24207. extra: 1172/1159,
  24208. bottom: 28/1200
  24209. }
  24210. },
  24211. maw: {
  24212. height: math.unit(1, "feet"),
  24213. name: "Maw",
  24214. image: {
  24215. source: "./media/characters/ofelia/maw.svg"
  24216. }
  24217. },
  24218. foot: {
  24219. height: math.unit(1.949, "feet"),
  24220. name: "Foot",
  24221. image: {
  24222. source: "./media/characters/ofelia/foot.svg"
  24223. }
  24224. },
  24225. },
  24226. [
  24227. {
  24228. name: "Canon Height",
  24229. height: math.unit(2000, "miles"),
  24230. default: true
  24231. },
  24232. ]
  24233. ))
  24234. characterMakers.push(() => makeCharacter(
  24235. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24236. {
  24237. front: {
  24238. height: math.unit(6, "feet"),
  24239. weight: math.unit(150, "lb"),
  24240. name: "Front",
  24241. image: {
  24242. source: "./media/characters/samuel/front.svg",
  24243. extra: 265 / 258,
  24244. bottom: 2 / 266.1566
  24245. }
  24246. },
  24247. },
  24248. [
  24249. {
  24250. name: "Macro",
  24251. height: math.unit(100, "feet"),
  24252. default: true
  24253. },
  24254. {
  24255. name: "Full Size",
  24256. height: math.unit(1000, "miles")
  24257. },
  24258. ]
  24259. ))
  24260. characterMakers.push(() => makeCharacter(
  24261. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24262. {
  24263. front: {
  24264. height: math.unit(6, "feet"),
  24265. weight: math.unit(300, "lb"),
  24266. name: "Front",
  24267. image: {
  24268. source: "./media/characters/beishir-kiel/front.svg",
  24269. extra: 569 / 547,
  24270. bottom: 41.9 / 609
  24271. }
  24272. },
  24273. maw: {
  24274. height: math.unit(6 * 0.202, "feet"),
  24275. name: "Maw",
  24276. image: {
  24277. source: "./media/characters/beishir-kiel/maw.svg"
  24278. }
  24279. },
  24280. },
  24281. [
  24282. {
  24283. name: "Macro",
  24284. height: math.unit(300, "feet"),
  24285. default: true
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24291. {
  24292. front: {
  24293. height: math.unit(5 + 7/12, "feet"),
  24294. weight: math.unit(120, "lb"),
  24295. name: "Front",
  24296. image: {
  24297. source: "./media/characters/logan-grey/front.svg",
  24298. extra: 1836/1738,
  24299. bottom: 108/1944
  24300. }
  24301. },
  24302. back: {
  24303. height: math.unit(5 + 7/12, "feet"),
  24304. weight: math.unit(120, "lb"),
  24305. name: "Back",
  24306. image: {
  24307. source: "./media/characters/logan-grey/back.svg",
  24308. extra: 1880/1794,
  24309. bottom: 24/1904
  24310. }
  24311. },
  24312. frontSfw: {
  24313. height: math.unit(5 + 7/12, "feet"),
  24314. weight: math.unit(120, "lb"),
  24315. name: "Front (SFW)",
  24316. image: {
  24317. source: "./media/characters/logan-grey/front-sfw.svg",
  24318. extra: 1836/1738,
  24319. bottom: 108/1944
  24320. }
  24321. },
  24322. backSfw: {
  24323. height: math.unit(5 + 7/12, "feet"),
  24324. weight: math.unit(120, "lb"),
  24325. name: "Back (SFW)",
  24326. image: {
  24327. source: "./media/characters/logan-grey/back-sfw.svg",
  24328. extra: 1880/1794,
  24329. bottom: 24/1904
  24330. }
  24331. },
  24332. hands: {
  24333. height: math.unit(0.84, "feet"),
  24334. name: "Hands",
  24335. image: {
  24336. source: "./media/characters/logan-grey/hands.svg"
  24337. }
  24338. },
  24339. paws: {
  24340. height: math.unit(0.72, "feet"),
  24341. name: "Paws",
  24342. image: {
  24343. source: "./media/characters/logan-grey/paws.svg"
  24344. }
  24345. },
  24346. cock: {
  24347. height: math.unit(1.45, "feet"),
  24348. name: "Cock",
  24349. image: {
  24350. source: "./media/characters/logan-grey/cock.svg"
  24351. }
  24352. },
  24353. cockAlt: {
  24354. height: math.unit(1.437, "feet"),
  24355. name: "Cock (alt)",
  24356. image: {
  24357. source: "./media/characters/logan-grey/cock-alt.svg"
  24358. }
  24359. },
  24360. },
  24361. [
  24362. {
  24363. name: "Normal",
  24364. height: math.unit(5 + 8 / 12, "feet")
  24365. },
  24366. {
  24367. name: "The 500 Foot Femboy",
  24368. height: math.unit(500, "feet"),
  24369. default: true
  24370. },
  24371. {
  24372. name: "Megmacro",
  24373. height: math.unit(20, "miles")
  24374. },
  24375. ]
  24376. ))
  24377. characterMakers.push(() => makeCharacter(
  24378. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24379. {
  24380. front: {
  24381. height: math.unit(8 + 2 / 12, "feet"),
  24382. weight: math.unit(275, "lb"),
  24383. name: "Front",
  24384. image: {
  24385. source: "./media/characters/draganta/front.svg",
  24386. extra: 1177 / 1135,
  24387. bottom: 33.46 / 1212.1
  24388. }
  24389. },
  24390. },
  24391. [
  24392. {
  24393. name: "Normal",
  24394. height: math.unit(8 + 6 / 12, "feet"),
  24395. default: true
  24396. },
  24397. {
  24398. name: "Macro",
  24399. height: math.unit(150, "feet")
  24400. },
  24401. {
  24402. name: "Megamacro",
  24403. height: math.unit(1000, "miles")
  24404. },
  24405. ]
  24406. ))
  24407. characterMakers.push(() => makeCharacter(
  24408. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24409. {
  24410. front: {
  24411. height: math.unit(1.72, "m"),
  24412. weight: math.unit(80, "lb"),
  24413. name: "Front",
  24414. image: {
  24415. source: "./media/characters/voski/front.svg",
  24416. extra: 2076.22 / 2022.4,
  24417. bottom: 102.7 / 2177.3866
  24418. }
  24419. },
  24420. frontFlaccid: {
  24421. height: math.unit(1.72, "m"),
  24422. weight: math.unit(80, "lb"),
  24423. name: "Front (Flaccid)",
  24424. image: {
  24425. source: "./media/characters/voski/front-flaccid.svg",
  24426. extra: 2076.22 / 2022.4,
  24427. bottom: 102.7 / 2177.3866
  24428. }
  24429. },
  24430. frontErect: {
  24431. height: math.unit(1.72, "m"),
  24432. weight: math.unit(80, "lb"),
  24433. name: "Front (Erect)",
  24434. image: {
  24435. source: "./media/characters/voski/front-erect.svg",
  24436. extra: 2076.22 / 2022.4,
  24437. bottom: 102.7 / 2177.3866
  24438. }
  24439. },
  24440. back: {
  24441. height: math.unit(1.72, "m"),
  24442. weight: math.unit(80, "lb"),
  24443. name: "Back",
  24444. image: {
  24445. source: "./media/characters/voski/back.svg",
  24446. extra: 2104 / 2051,
  24447. bottom: 10.45 / 2113.63
  24448. }
  24449. },
  24450. },
  24451. [
  24452. {
  24453. name: "Normal",
  24454. height: math.unit(1.72, "m")
  24455. },
  24456. {
  24457. name: "Macro",
  24458. height: math.unit(55, "m"),
  24459. default: true
  24460. },
  24461. {
  24462. name: "Macro+",
  24463. height: math.unit(300, "m")
  24464. },
  24465. {
  24466. name: "Macro++",
  24467. height: math.unit(700, "m")
  24468. },
  24469. {
  24470. name: "Macro+++",
  24471. height: math.unit(4500, "m")
  24472. },
  24473. {
  24474. name: "Macro++++",
  24475. height: math.unit(45, "km")
  24476. },
  24477. {
  24478. name: "Macro+++++",
  24479. height: math.unit(1220, "km")
  24480. },
  24481. ]
  24482. ))
  24483. characterMakers.push(() => makeCharacter(
  24484. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24485. {
  24486. front: {
  24487. height: math.unit(2.3, "m"),
  24488. weight: math.unit(304, "kg"),
  24489. name: "Front",
  24490. image: {
  24491. source: "./media/characters/icowom-lee/front.svg",
  24492. extra: 985 / 955,
  24493. bottom: 25.4 / 1012
  24494. }
  24495. },
  24496. fronttentacles: {
  24497. height: math.unit(2.3, "m"),
  24498. weight: math.unit(304, "kg"),
  24499. name: "Front-tentacles",
  24500. image: {
  24501. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24502. extra: 985 / 955,
  24503. bottom: 25.4 / 1012
  24504. }
  24505. },
  24506. back: {
  24507. height: math.unit(2.3, "m"),
  24508. weight: math.unit(304, "kg"),
  24509. name: "Back",
  24510. image: {
  24511. source: "./media/characters/icowom-lee/back.svg",
  24512. extra: 975 / 954,
  24513. bottom: 9.5 / 985
  24514. }
  24515. },
  24516. backtentacles: {
  24517. height: math.unit(2.3, "m"),
  24518. weight: math.unit(304, "kg"),
  24519. name: "Back-tentacles",
  24520. image: {
  24521. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24522. extra: 975 / 954,
  24523. bottom: 9.5 / 985
  24524. }
  24525. },
  24526. frontDressed: {
  24527. height: math.unit(2.3, "m"),
  24528. weight: math.unit(304, "kg"),
  24529. name: "Front (Dressed)",
  24530. image: {
  24531. source: "./media/characters/icowom-lee/front-dressed.svg",
  24532. extra: 3076 / 2933,
  24533. bottom: 51.4 / 3125.1889
  24534. }
  24535. },
  24536. rump: {
  24537. height: math.unit(0.776, "meters"),
  24538. name: "Rump",
  24539. image: {
  24540. source: "./media/characters/icowom-lee/rump.svg"
  24541. }
  24542. },
  24543. genitals: {
  24544. height: math.unit(0.78, "meters"),
  24545. name: "Genitals",
  24546. image: {
  24547. source: "./media/characters/icowom-lee/genitals.svg"
  24548. }
  24549. },
  24550. },
  24551. [
  24552. {
  24553. name: "Normal",
  24554. height: math.unit(2.3, "meters"),
  24555. default: true
  24556. },
  24557. {
  24558. name: "Macro",
  24559. height: math.unit(94, "meters"),
  24560. default: true
  24561. },
  24562. ]
  24563. ))
  24564. characterMakers.push(() => makeCharacter(
  24565. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24566. {
  24567. front: {
  24568. height: math.unit(22, "meters"),
  24569. weight: math.unit(21000, "kg"),
  24570. name: "Front",
  24571. image: {
  24572. source: "./media/characters/shock-diamond/front.svg",
  24573. extra: 2204 / 2053,
  24574. bottom: 65 / 2239.47
  24575. }
  24576. },
  24577. frontNude: {
  24578. height: math.unit(22, "meters"),
  24579. weight: math.unit(21000, "kg"),
  24580. name: "Front (Nude)",
  24581. image: {
  24582. source: "./media/characters/shock-diamond/front-nude.svg",
  24583. extra: 2514 / 2285,
  24584. bottom: 13 / 2527.56
  24585. }
  24586. },
  24587. },
  24588. [
  24589. {
  24590. name: "Normal",
  24591. height: math.unit(3, "meters")
  24592. },
  24593. {
  24594. name: "Macro",
  24595. height: math.unit(22, "meters"),
  24596. default: true
  24597. },
  24598. ]
  24599. ))
  24600. characterMakers.push(() => makeCharacter(
  24601. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24602. {
  24603. frontNsfw: {
  24604. height: math.unit(5 + 4/12, "feet"),
  24605. weight: math.unit(195, "lb"),
  24606. name: "Front",
  24607. image: {
  24608. source: "./media/characters/rory/front.svg",
  24609. extra: 1220/1100,
  24610. bottom: 103/1323
  24611. }
  24612. },
  24613. back: {
  24614. height: math.unit(5 + 4/12, "feet"),
  24615. weight: math.unit(195, "lb"),
  24616. name: "Back",
  24617. image: {
  24618. source: "./media/characters/rory/back.svg",
  24619. extra: 1166/1086,
  24620. bottom: 35/1201
  24621. }
  24622. },
  24623. },
  24624. [
  24625. {
  24626. name: "Micro",
  24627. height: math.unit(3, "inches")
  24628. },
  24629. {
  24630. name: "Normal",
  24631. height: math.unit(5 + 4/12, "feet"),
  24632. default: true
  24633. },
  24634. {
  24635. name: "Macro",
  24636. height: math.unit(90, "feet")
  24637. },
  24638. {
  24639. name: "Supercharged",
  24640. height: math.unit(270, "feet")
  24641. },
  24642. ]
  24643. ))
  24644. characterMakers.push(() => makeCharacter(
  24645. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24646. {
  24647. front: {
  24648. height: math.unit(5 + 9 / 12, "feet"),
  24649. weight: math.unit(190, "lb"),
  24650. name: "Front",
  24651. image: {
  24652. source: "./media/characters/sprisk/front.svg",
  24653. extra: 1225 / 1180,
  24654. bottom: 42.7 / 1266.4
  24655. }
  24656. },
  24657. frontNsfw: {
  24658. height: math.unit(5 + 9 / 12, "feet"),
  24659. weight: math.unit(190, "lb"),
  24660. name: "Front (NSFW)",
  24661. image: {
  24662. source: "./media/characters/sprisk/front-nsfw.svg",
  24663. extra: 1225 / 1180,
  24664. bottom: 42.7 / 1266.4
  24665. }
  24666. },
  24667. back: {
  24668. height: math.unit(5 + 9 / 12, "feet"),
  24669. weight: math.unit(190, "lb"),
  24670. name: "Back",
  24671. image: {
  24672. source: "./media/characters/sprisk/back.svg",
  24673. extra: 1247 / 1200,
  24674. bottom: 5.6 / 1253.04
  24675. }
  24676. },
  24677. },
  24678. [
  24679. {
  24680. name: "Tiny",
  24681. height: math.unit(2, "inches")
  24682. },
  24683. {
  24684. name: "Normal",
  24685. height: math.unit(5 + 9 / 12, "feet"),
  24686. default: true
  24687. },
  24688. {
  24689. name: "Mini Macro",
  24690. height: math.unit(18, "feet")
  24691. },
  24692. {
  24693. name: "Macro",
  24694. height: math.unit(100, "feet")
  24695. },
  24696. {
  24697. name: "MACRO",
  24698. height: math.unit(50, "miles")
  24699. },
  24700. {
  24701. name: "M A C R O",
  24702. height: math.unit(300, "miles")
  24703. },
  24704. ]
  24705. ))
  24706. characterMakers.push(() => makeCharacter(
  24707. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24708. {
  24709. side: {
  24710. height: math.unit(15.6, "meters"),
  24711. weight: math.unit(700000, "kg"),
  24712. name: "Side",
  24713. image: {
  24714. source: "./media/characters/bunsen/side.svg",
  24715. extra: 1644 / 358
  24716. }
  24717. },
  24718. foot: {
  24719. height: math.unit(1.611 * 1644 / 358, "meter"),
  24720. name: "Foot",
  24721. image: {
  24722. source: "./media/characters/bunsen/foot.svg"
  24723. }
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Small",
  24729. height: math.unit(10, "feet")
  24730. },
  24731. {
  24732. name: "Normal",
  24733. height: math.unit(15.6, "meters"),
  24734. default: true
  24735. },
  24736. ]
  24737. ))
  24738. characterMakers.push(() => makeCharacter(
  24739. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24740. {
  24741. front: {
  24742. height: math.unit(4 + 11 / 12, "feet"),
  24743. weight: math.unit(140, "lb"),
  24744. name: "Front",
  24745. image: {
  24746. source: "./media/characters/sesh/front.svg",
  24747. extra: 3420 / 3231,
  24748. bottom: 72 / 3949.5
  24749. }
  24750. },
  24751. },
  24752. [
  24753. {
  24754. name: "Normal",
  24755. height: math.unit(4 + 11 / 12, "feet")
  24756. },
  24757. {
  24758. name: "Grown",
  24759. height: math.unit(15, "feet"),
  24760. default: true
  24761. },
  24762. {
  24763. name: "Macro",
  24764. height: math.unit(1500, "feet")
  24765. },
  24766. {
  24767. name: "Megamacro",
  24768. height: math.unit(30, "miles")
  24769. },
  24770. {
  24771. name: "Continental",
  24772. height: math.unit(3000, "miles")
  24773. },
  24774. {
  24775. name: "Gravity Mass",
  24776. height: math.unit(300000, "miles")
  24777. },
  24778. {
  24779. name: "Planet Buster",
  24780. height: math.unit(30000000, "miles")
  24781. },
  24782. {
  24783. name: "Big",
  24784. height: math.unit(3000000000, "miles")
  24785. },
  24786. ]
  24787. ))
  24788. characterMakers.push(() => makeCharacter(
  24789. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24790. {
  24791. front: {
  24792. height: math.unit(9, "feet"),
  24793. weight: math.unit(350, "lb"),
  24794. name: "Front",
  24795. image: {
  24796. source: "./media/characters/pepper/front.svg",
  24797. extra: 1448 / 1312,
  24798. bottom: 9.4 / 1457.88
  24799. }
  24800. },
  24801. back: {
  24802. height: math.unit(9, "feet"),
  24803. weight: math.unit(350, "lb"),
  24804. name: "Back",
  24805. image: {
  24806. source: "./media/characters/pepper/back.svg",
  24807. extra: 1423 / 1300,
  24808. bottom: 4.6 / 1429
  24809. }
  24810. },
  24811. maw: {
  24812. height: math.unit(0.932, "feet"),
  24813. name: "Maw",
  24814. image: {
  24815. source: "./media/characters/pepper/maw.svg"
  24816. }
  24817. },
  24818. },
  24819. [
  24820. {
  24821. name: "Normal",
  24822. height: math.unit(9, "feet"),
  24823. default: true
  24824. },
  24825. ]
  24826. ))
  24827. characterMakers.push(() => makeCharacter(
  24828. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24829. {
  24830. front: {
  24831. height: math.unit(6, "feet"),
  24832. weight: math.unit(150, "lb"),
  24833. name: "Front",
  24834. image: {
  24835. source: "./media/characters/maelstrom/front.svg",
  24836. extra: 2100 / 1883,
  24837. bottom: 94 / 2196.7
  24838. }
  24839. },
  24840. },
  24841. [
  24842. {
  24843. name: "Less Kaiju",
  24844. height: math.unit(200, "feet")
  24845. },
  24846. {
  24847. name: "Kaiju",
  24848. height: math.unit(400, "feet"),
  24849. default: true
  24850. },
  24851. {
  24852. name: "Kaiju-er",
  24853. height: math.unit(600, "feet")
  24854. },
  24855. ]
  24856. ))
  24857. characterMakers.push(() => makeCharacter(
  24858. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24859. {
  24860. front: {
  24861. height: math.unit(6 + 5 / 12, "feet"),
  24862. weight: math.unit(180, "lb"),
  24863. name: "Front",
  24864. image: {
  24865. source: "./media/characters/lexir/front.svg",
  24866. extra: 180 / 172,
  24867. bottom: 12 / 192
  24868. }
  24869. },
  24870. back: {
  24871. height: math.unit(6 + 5 / 12, "feet"),
  24872. weight: math.unit(180, "lb"),
  24873. name: "Back",
  24874. image: {
  24875. source: "./media/characters/lexir/back.svg",
  24876. extra: 1273/1201,
  24877. bottom: 39/1312
  24878. }
  24879. },
  24880. },
  24881. [
  24882. {
  24883. name: "Very Smal",
  24884. height: math.unit(1, "nm")
  24885. },
  24886. {
  24887. name: "Normal",
  24888. height: math.unit(6 + 5 / 12, "feet"),
  24889. default: true
  24890. },
  24891. {
  24892. name: "Macro",
  24893. height: math.unit(1, "mile")
  24894. },
  24895. {
  24896. name: "Megamacro",
  24897. height: math.unit(50, "miles")
  24898. },
  24899. ]
  24900. ))
  24901. characterMakers.push(() => makeCharacter(
  24902. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24903. {
  24904. front: {
  24905. height: math.unit(1.5, "meters"),
  24906. weight: math.unit(100, "lb"),
  24907. name: "Front",
  24908. image: {
  24909. source: "./media/characters/maksio/front.svg",
  24910. extra: 1549 / 1531,
  24911. bottom: 123.7 / 1674.5429
  24912. }
  24913. },
  24914. back: {
  24915. height: math.unit(1.5, "meters"),
  24916. weight: math.unit(100, "lb"),
  24917. name: "Back",
  24918. image: {
  24919. source: "./media/characters/maksio/back.svg",
  24920. extra: 1541 / 1509,
  24921. bottom: 97 / 1639
  24922. }
  24923. },
  24924. hand: {
  24925. height: math.unit(0.621, "feet"),
  24926. name: "Hand",
  24927. image: {
  24928. source: "./media/characters/maksio/hand.svg"
  24929. }
  24930. },
  24931. foot: {
  24932. height: math.unit(1.611, "feet"),
  24933. name: "Foot",
  24934. image: {
  24935. source: "./media/characters/maksio/foot.svg"
  24936. }
  24937. },
  24938. },
  24939. [
  24940. {
  24941. name: "Shrunken",
  24942. height: math.unit(10, "cm")
  24943. },
  24944. {
  24945. name: "Normal",
  24946. height: math.unit(150, "cm"),
  24947. default: true
  24948. },
  24949. ]
  24950. ))
  24951. characterMakers.push(() => makeCharacter(
  24952. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24953. {
  24954. front: {
  24955. height: math.unit(100, "feet"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/erza-bear/front.svg",
  24959. extra: 2449 / 2390,
  24960. bottom: 46 / 2494
  24961. }
  24962. },
  24963. back: {
  24964. height: math.unit(100, "feet"),
  24965. name: "Back",
  24966. image: {
  24967. source: "./media/characters/erza-bear/back.svg",
  24968. extra: 2489 / 2430,
  24969. bottom: 85.4 / 2480
  24970. }
  24971. },
  24972. tail: {
  24973. height: math.unit(42, "feet"),
  24974. name: "Tail",
  24975. image: {
  24976. source: "./media/characters/erza-bear/tail.svg"
  24977. }
  24978. },
  24979. tongue: {
  24980. height: math.unit(8, "feet"),
  24981. name: "Tongue",
  24982. image: {
  24983. source: "./media/characters/erza-bear/tongue.svg"
  24984. }
  24985. },
  24986. dick: {
  24987. height: math.unit(10.5, "feet"),
  24988. name: "Dick",
  24989. image: {
  24990. source: "./media/characters/erza-bear/dick.svg"
  24991. }
  24992. },
  24993. dickVertical: {
  24994. height: math.unit(16.9, "feet"),
  24995. name: "Dick (Vertical)",
  24996. image: {
  24997. source: "./media/characters/erza-bear/dick-vertical.svg"
  24998. }
  24999. },
  25000. },
  25001. [
  25002. {
  25003. name: "Macro",
  25004. height: math.unit(100, "feet"),
  25005. default: true
  25006. },
  25007. ]
  25008. ))
  25009. characterMakers.push(() => makeCharacter(
  25010. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25011. {
  25012. front: {
  25013. height: math.unit(172, "cm"),
  25014. weight: math.unit(73, "kg"),
  25015. name: "Front",
  25016. image: {
  25017. source: "./media/characters/violet-flor/front.svg",
  25018. extra: 1530 / 1442,
  25019. bottom: 61.9 / 1588.8
  25020. }
  25021. },
  25022. back: {
  25023. height: math.unit(180, "cm"),
  25024. weight: math.unit(73, "kg"),
  25025. name: "Back",
  25026. image: {
  25027. source: "./media/characters/violet-flor/back.svg",
  25028. extra: 1692 / 1630,
  25029. bottom: 20 / 1712
  25030. }
  25031. },
  25032. },
  25033. [
  25034. {
  25035. name: "Normal",
  25036. height: math.unit(172, "cm"),
  25037. default: true
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25043. {
  25044. front: {
  25045. height: math.unit(6, "feet"),
  25046. weight: math.unit(220, "lb"),
  25047. name: "Front",
  25048. image: {
  25049. source: "./media/characters/lynn-rhea/front.svg",
  25050. extra: 310 / 273
  25051. }
  25052. },
  25053. back: {
  25054. height: math.unit(6, "feet"),
  25055. weight: math.unit(220, "lb"),
  25056. name: "Back",
  25057. image: {
  25058. source: "./media/characters/lynn-rhea/back.svg",
  25059. extra: 310 / 273
  25060. }
  25061. },
  25062. dicks: {
  25063. height: math.unit(0.9, "feet"),
  25064. name: "Dicks",
  25065. image: {
  25066. source: "./media/characters/lynn-rhea/dicks.svg"
  25067. }
  25068. },
  25069. slit: {
  25070. height: math.unit(0.4, "feet"),
  25071. name: "Slit",
  25072. image: {
  25073. source: "./media/characters/lynn-rhea/slit.svg"
  25074. }
  25075. },
  25076. },
  25077. [
  25078. {
  25079. name: "Micro",
  25080. height: math.unit(1, "inch")
  25081. },
  25082. {
  25083. name: "Macro",
  25084. height: math.unit(60, "feet"),
  25085. default: true
  25086. },
  25087. {
  25088. name: "Megamacro",
  25089. height: math.unit(2, "miles")
  25090. },
  25091. {
  25092. name: "Gigamacro",
  25093. height: math.unit(3, "earths")
  25094. },
  25095. {
  25096. name: "Galactic",
  25097. height: math.unit(0.8, "galaxies")
  25098. },
  25099. ]
  25100. ))
  25101. characterMakers.push(() => makeCharacter(
  25102. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25103. {
  25104. front: {
  25105. height: math.unit(1600, "feet"),
  25106. weight: math.unit(85758785169, "kg"),
  25107. name: "Front",
  25108. image: {
  25109. source: "./media/characters/valathos/front.svg",
  25110. extra: 1451 / 1339
  25111. }
  25112. },
  25113. },
  25114. [
  25115. {
  25116. name: "Macro",
  25117. height: math.unit(1600, "feet"),
  25118. default: true
  25119. },
  25120. ]
  25121. ))
  25122. characterMakers.push(() => makeCharacter(
  25123. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25124. {
  25125. front: {
  25126. height: math.unit(7 + 5 / 12, "feet"),
  25127. weight: math.unit(300, "lb"),
  25128. name: "Front",
  25129. image: {
  25130. source: "./media/characters/azula/front.svg",
  25131. extra: 3208 / 2880,
  25132. bottom: 80.2 / 3277
  25133. }
  25134. },
  25135. back: {
  25136. height: math.unit(7 + 5 / 12, "feet"),
  25137. weight: math.unit(300, "lb"),
  25138. name: "Back",
  25139. image: {
  25140. source: "./media/characters/azula/back.svg",
  25141. extra: 3169 / 2822,
  25142. bottom: 150.6 / 3321
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Normal",
  25149. height: math.unit(7 + 5 / 12, "feet"),
  25150. default: true
  25151. },
  25152. {
  25153. name: "Big",
  25154. height: math.unit(20, "feet")
  25155. },
  25156. ]
  25157. ))
  25158. characterMakers.push(() => makeCharacter(
  25159. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25160. {
  25161. front: {
  25162. height: math.unit(5 + 1 / 12, "feet"),
  25163. weight: math.unit(110, "lb"),
  25164. name: "Front",
  25165. image: {
  25166. source: "./media/characters/rupert/front.svg",
  25167. extra: 1549 / 1495,
  25168. bottom: 54.2 / 1604.4
  25169. }
  25170. },
  25171. },
  25172. [
  25173. {
  25174. name: "Normal",
  25175. height: math.unit(5 + 1 / 12, "feet"),
  25176. default: true
  25177. },
  25178. ]
  25179. ))
  25180. characterMakers.push(() => makeCharacter(
  25181. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25182. {
  25183. front: {
  25184. height: math.unit(8 + 4 / 12, "feet"),
  25185. weight: math.unit(350, "lb"),
  25186. name: "Front",
  25187. image: {
  25188. source: "./media/characters/sheera-castellar/front.svg",
  25189. extra: 1957 / 1894,
  25190. bottom: 26.97 / 1975.017
  25191. }
  25192. },
  25193. side: {
  25194. height: math.unit(8 + 4 / 12, "feet"),
  25195. weight: math.unit(350, "lb"),
  25196. name: "Side",
  25197. image: {
  25198. source: "./media/characters/sheera-castellar/side.svg",
  25199. extra: 1957 / 1894
  25200. }
  25201. },
  25202. back: {
  25203. height: math.unit(8 + 4 / 12, "feet"),
  25204. weight: math.unit(350, "lb"),
  25205. name: "Back",
  25206. image: {
  25207. source: "./media/characters/sheera-castellar/back.svg",
  25208. extra: 1957 / 1894
  25209. }
  25210. },
  25211. angled: {
  25212. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25213. weight: math.unit(350, "lb"),
  25214. name: "Angled",
  25215. image: {
  25216. source: "./media/characters/sheera-castellar/angled.svg",
  25217. extra: 1807 / 1707,
  25218. bottom: 68 / 1875
  25219. }
  25220. },
  25221. genitals: {
  25222. height: math.unit(2.2, "feet"),
  25223. name: "Genitals",
  25224. image: {
  25225. source: "./media/characters/sheera-castellar/genitals.svg"
  25226. }
  25227. },
  25228. taur: {
  25229. height: math.unit(10 + 6/12, "feet"),
  25230. name: "Taur",
  25231. image: {
  25232. source: "./media/characters/sheera-castellar/taur.svg",
  25233. extra: 2017/1909,
  25234. bottom: 185/2202
  25235. }
  25236. },
  25237. },
  25238. [
  25239. {
  25240. name: "Normal",
  25241. height: math.unit(8 + 4 / 12, "feet")
  25242. },
  25243. {
  25244. name: "Macro",
  25245. height: math.unit(150, "feet"),
  25246. default: true
  25247. },
  25248. {
  25249. name: "Macro+",
  25250. height: math.unit(800, "feet")
  25251. },
  25252. ]
  25253. ))
  25254. characterMakers.push(() => makeCharacter(
  25255. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25256. {
  25257. front: {
  25258. height: math.unit(6, "feet"),
  25259. weight: math.unit(150, "lb"),
  25260. name: "Front",
  25261. image: {
  25262. source: "./media/characters/jaipur/front.svg",
  25263. extra: 3860 / 3731,
  25264. bottom: 287 / 4140
  25265. }
  25266. },
  25267. back: {
  25268. height: math.unit(6, "feet"),
  25269. weight: math.unit(150, "lb"),
  25270. name: "Back",
  25271. image: {
  25272. source: "./media/characters/jaipur/back.svg",
  25273. extra: 1637/1561,
  25274. bottom: 154/1791
  25275. }
  25276. },
  25277. },
  25278. [
  25279. {
  25280. name: "Normal",
  25281. height: math.unit(1.85, "meters"),
  25282. default: true
  25283. },
  25284. {
  25285. name: "Macro",
  25286. height: math.unit(150, "meters")
  25287. },
  25288. {
  25289. name: "Macro+",
  25290. height: math.unit(0.5, "miles")
  25291. },
  25292. {
  25293. name: "Macro++",
  25294. height: math.unit(2.5, "miles")
  25295. },
  25296. {
  25297. name: "Macro+++",
  25298. height: math.unit(12, "miles")
  25299. },
  25300. {
  25301. name: "Macro++++",
  25302. height: math.unit(120, "miles")
  25303. },
  25304. {
  25305. name: "Macro+++++",
  25306. height: math.unit(1200, "miles")
  25307. },
  25308. ]
  25309. ))
  25310. characterMakers.push(() => makeCharacter(
  25311. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25312. {
  25313. front: {
  25314. height: math.unit(6, "feet"),
  25315. weight: math.unit(150, "lb"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/sheila-wolf/front.svg",
  25319. extra: 1931 / 1808,
  25320. bottom: 29.5 / 1960
  25321. }
  25322. },
  25323. dick: {
  25324. height: math.unit(1.464, "feet"),
  25325. name: "Dick",
  25326. image: {
  25327. source: "./media/characters/sheila-wolf/dick.svg"
  25328. }
  25329. },
  25330. muzzle: {
  25331. height: math.unit(0.513, "feet"),
  25332. name: "Muzzle",
  25333. image: {
  25334. source: "./media/characters/sheila-wolf/muzzle.svg"
  25335. }
  25336. },
  25337. },
  25338. [
  25339. {
  25340. name: "Macro",
  25341. height: math.unit(70, "feet"),
  25342. default: true
  25343. },
  25344. ]
  25345. ))
  25346. characterMakers.push(() => makeCharacter(
  25347. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25348. {
  25349. front: {
  25350. height: math.unit(32, "meters"),
  25351. weight: math.unit(300000, "kg"),
  25352. name: "Front",
  25353. image: {
  25354. source: "./media/characters/almor/front.svg",
  25355. extra: 1408 / 1322,
  25356. bottom: 94.6 / 1506.5
  25357. }
  25358. },
  25359. },
  25360. [
  25361. {
  25362. name: "Macro",
  25363. height: math.unit(32, "meters"),
  25364. default: true
  25365. },
  25366. ]
  25367. ))
  25368. characterMakers.push(() => makeCharacter(
  25369. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25370. {
  25371. front: {
  25372. height: math.unit(7, "feet"),
  25373. weight: math.unit(200, "lb"),
  25374. name: "Front",
  25375. image: {
  25376. source: "./media/characters/silver/front.svg",
  25377. extra: 472.1 / 450.5,
  25378. bottom: 26.5 / 499.424
  25379. }
  25380. },
  25381. },
  25382. [
  25383. {
  25384. name: "Normal",
  25385. height: math.unit(7, "feet"),
  25386. default: true
  25387. },
  25388. {
  25389. name: "Macro",
  25390. height: math.unit(800, "feet")
  25391. },
  25392. {
  25393. name: "Megamacro",
  25394. height: math.unit(250, "miles")
  25395. },
  25396. ]
  25397. ))
  25398. characterMakers.push(() => makeCharacter(
  25399. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25400. {
  25401. front: {
  25402. height: math.unit(6, "feet"),
  25403. weight: math.unit(150, "lb"),
  25404. name: "Front",
  25405. image: {
  25406. source: "./media/characters/pliskin/front.svg",
  25407. extra: 1469 / 1359,
  25408. bottom: 70 / 1540
  25409. }
  25410. },
  25411. },
  25412. [
  25413. {
  25414. name: "Micro",
  25415. height: math.unit(3, "inches")
  25416. },
  25417. {
  25418. name: "Normal",
  25419. height: math.unit(5 + 11 / 12, "feet"),
  25420. default: true
  25421. },
  25422. {
  25423. name: "Macro",
  25424. height: math.unit(120, "feet")
  25425. },
  25426. ]
  25427. ))
  25428. characterMakers.push(() => makeCharacter(
  25429. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25430. {
  25431. front: {
  25432. height: math.unit(6, "feet"),
  25433. weight: math.unit(150, "lb"),
  25434. name: "Front",
  25435. image: {
  25436. source: "./media/characters/sammy/front.svg",
  25437. extra: 1193 / 1089,
  25438. bottom: 30.5 / 1226
  25439. }
  25440. },
  25441. },
  25442. [
  25443. {
  25444. name: "Macro",
  25445. height: math.unit(1700, "feet"),
  25446. default: true
  25447. },
  25448. {
  25449. name: "Examacro",
  25450. height: math.unit(2.5e9, "lightyears")
  25451. },
  25452. ]
  25453. ))
  25454. characterMakers.push(() => makeCharacter(
  25455. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25456. {
  25457. front: {
  25458. height: math.unit(21, "meters"),
  25459. weight: math.unit(12, "tonnes"),
  25460. name: "Front",
  25461. image: {
  25462. source: "./media/characters/kuru/front.svg",
  25463. extra: 4301 / 3785,
  25464. bottom: 371.3 / 4691
  25465. }
  25466. },
  25467. },
  25468. [
  25469. {
  25470. name: "Macro",
  25471. height: math.unit(21, "meters"),
  25472. default: true
  25473. },
  25474. ]
  25475. ))
  25476. characterMakers.push(() => makeCharacter(
  25477. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25478. {
  25479. front: {
  25480. height: math.unit(23, "meters"),
  25481. weight: math.unit(12.2, "tonnes"),
  25482. name: "Front",
  25483. image: {
  25484. source: "./media/characters/rakka/front.svg",
  25485. extra: 4670 / 4169,
  25486. bottom: 301 / 4968.7
  25487. }
  25488. },
  25489. },
  25490. [
  25491. {
  25492. name: "Macro",
  25493. height: math.unit(23, "meters"),
  25494. default: true
  25495. },
  25496. ]
  25497. ))
  25498. characterMakers.push(() => makeCharacter(
  25499. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25500. {
  25501. front: {
  25502. height: math.unit(6, "feet"),
  25503. weight: math.unit(150, "lb"),
  25504. name: "Front",
  25505. image: {
  25506. source: "./media/characters/rhys-feline/front.svg",
  25507. extra: 2488 / 2308,
  25508. bottom: 35.67 / 2519.19
  25509. }
  25510. },
  25511. },
  25512. [
  25513. {
  25514. name: "Really Small",
  25515. height: math.unit(1, "nm")
  25516. },
  25517. {
  25518. name: "Micro",
  25519. height: math.unit(4, "inches")
  25520. },
  25521. {
  25522. name: "Normal",
  25523. height: math.unit(4 + 10 / 12, "feet"),
  25524. default: true
  25525. },
  25526. {
  25527. name: "Macro",
  25528. height: math.unit(100, "feet")
  25529. },
  25530. {
  25531. name: "Megamacto",
  25532. height: math.unit(50, "miles")
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25538. {
  25539. side: {
  25540. height: math.unit(30, "feet"),
  25541. weight: math.unit(35000, "kg"),
  25542. name: "Side",
  25543. image: {
  25544. source: "./media/characters/alydar/side.svg",
  25545. extra: 234 / 222,
  25546. bottom: 6.5 / 241
  25547. }
  25548. },
  25549. front: {
  25550. height: math.unit(30, "feet"),
  25551. weight: math.unit(35000, "kg"),
  25552. name: "Front",
  25553. image: {
  25554. source: "./media/characters/alydar/front.svg",
  25555. extra: 223.37 / 210.2,
  25556. bottom: 22.3 / 246.76
  25557. }
  25558. },
  25559. top: {
  25560. height: math.unit(64.54, "feet"),
  25561. weight: math.unit(35000, "kg"),
  25562. name: "Top",
  25563. image: {
  25564. source: "./media/characters/alydar/top.svg"
  25565. }
  25566. },
  25567. anthro: {
  25568. height: math.unit(30, "feet"),
  25569. weight: math.unit(9000, "kg"),
  25570. name: "Anthro",
  25571. image: {
  25572. source: "./media/characters/alydar/anthro.svg",
  25573. extra: 432 / 421,
  25574. bottom: 7.18 / 440
  25575. }
  25576. },
  25577. maw: {
  25578. height: math.unit(11.693, "feet"),
  25579. name: "Maw",
  25580. image: {
  25581. source: "./media/characters/alydar/maw.svg"
  25582. }
  25583. },
  25584. head: {
  25585. height: math.unit(11.693, "feet"),
  25586. name: "Head",
  25587. image: {
  25588. source: "./media/characters/alydar/head.svg"
  25589. }
  25590. },
  25591. headAlt: {
  25592. height: math.unit(12.861, "feet"),
  25593. name: "Head (Alt)",
  25594. image: {
  25595. source: "./media/characters/alydar/head-alt.svg"
  25596. }
  25597. },
  25598. wing: {
  25599. height: math.unit(20.712, "feet"),
  25600. name: "Wing",
  25601. image: {
  25602. source: "./media/characters/alydar/wing.svg"
  25603. }
  25604. },
  25605. wingFeather: {
  25606. height: math.unit(9.662, "feet"),
  25607. name: "Wing Feather",
  25608. image: {
  25609. source: "./media/characters/alydar/wing-feather.svg"
  25610. }
  25611. },
  25612. countourFeather: {
  25613. height: math.unit(4.154, "feet"),
  25614. name: "Contour Feather",
  25615. image: {
  25616. source: "./media/characters/alydar/contour-feather.svg"
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Diplomatic",
  25623. height: math.unit(13, "feet"),
  25624. default: true
  25625. },
  25626. {
  25627. name: "Small",
  25628. height: math.unit(30, "feet")
  25629. },
  25630. {
  25631. name: "Normal",
  25632. height: math.unit(95, "feet"),
  25633. default: true
  25634. },
  25635. {
  25636. name: "Large",
  25637. height: math.unit(285, "feet")
  25638. },
  25639. {
  25640. name: "Incomprehensible",
  25641. height: math.unit(450, "megameters")
  25642. },
  25643. ]
  25644. ))
  25645. characterMakers.push(() => makeCharacter(
  25646. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25647. {
  25648. side: {
  25649. height: math.unit(11, "feet"),
  25650. weight: math.unit(1750, "kg"),
  25651. name: "Side",
  25652. image: {
  25653. source: "./media/characters/selicia/side.svg",
  25654. extra: 440 / 396,
  25655. bottom: 24.8 / 465.979
  25656. }
  25657. },
  25658. maw: {
  25659. height: math.unit(4.665, "feet"),
  25660. name: "Maw",
  25661. image: {
  25662. source: "./media/characters/selicia/maw.svg"
  25663. }
  25664. },
  25665. },
  25666. [
  25667. {
  25668. name: "Normal",
  25669. height: math.unit(11, "feet"),
  25670. default: true
  25671. },
  25672. ]
  25673. ))
  25674. characterMakers.push(() => makeCharacter(
  25675. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25676. {
  25677. side: {
  25678. height: math.unit(2 + 6 / 12, "feet"),
  25679. weight: math.unit(30, "lb"),
  25680. name: "Side",
  25681. image: {
  25682. source: "./media/characters/layla/side.svg",
  25683. extra: 244 / 188,
  25684. bottom: 18.2 / 262.1
  25685. }
  25686. },
  25687. back: {
  25688. height: math.unit(2 + 6 / 12, "feet"),
  25689. weight: math.unit(30, "lb"),
  25690. name: "Back",
  25691. image: {
  25692. source: "./media/characters/layla/back.svg",
  25693. extra: 308 / 241.5,
  25694. bottom: 8.9 / 316.8
  25695. }
  25696. },
  25697. cumming: {
  25698. height: math.unit(2 + 6 / 12, "feet"),
  25699. weight: math.unit(30, "lb"),
  25700. name: "Cumming",
  25701. image: {
  25702. source: "./media/characters/layla/cumming.svg",
  25703. extra: 342 / 279,
  25704. bottom: 595 / 938
  25705. }
  25706. },
  25707. dickFlaccid: {
  25708. height: math.unit(2.595, "feet"),
  25709. name: "Flaccid Genitals",
  25710. image: {
  25711. source: "./media/characters/layla/dick-flaccid.svg"
  25712. }
  25713. },
  25714. dickErect: {
  25715. height: math.unit(2.359, "feet"),
  25716. name: "Erect Genitals",
  25717. image: {
  25718. source: "./media/characters/layla/dick-erect.svg"
  25719. }
  25720. },
  25721. dragon: {
  25722. height: math.unit(40, "feet"),
  25723. name: "Dragon",
  25724. image: {
  25725. source: "./media/characters/layla/dragon.svg",
  25726. extra: 610/535,
  25727. bottom: 367/977
  25728. }
  25729. },
  25730. taur: {
  25731. height: math.unit(30, "feet"),
  25732. name: "Taur",
  25733. image: {
  25734. source: "./media/characters/layla/taur.svg",
  25735. extra: 1268/1199,
  25736. bottom: 112/1380
  25737. }
  25738. },
  25739. },
  25740. [
  25741. {
  25742. name: "Micro",
  25743. height: math.unit(1, "inch")
  25744. },
  25745. {
  25746. name: "Small",
  25747. height: math.unit(1, "foot")
  25748. },
  25749. {
  25750. name: "Normal",
  25751. height: math.unit(2 + 6 / 12, "feet"),
  25752. default: true
  25753. },
  25754. {
  25755. name: "Macro",
  25756. height: math.unit(200, "feet")
  25757. },
  25758. {
  25759. name: "Megamacro",
  25760. height: math.unit(1000, "miles")
  25761. },
  25762. {
  25763. name: "Planetary",
  25764. height: math.unit(8000, "miles")
  25765. },
  25766. {
  25767. name: "True Layla",
  25768. height: math.unit(200000 * 7, "multiverses")
  25769. },
  25770. ]
  25771. ))
  25772. characterMakers.push(() => makeCharacter(
  25773. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25774. {
  25775. back: {
  25776. height: math.unit(10.5, "feet"),
  25777. weight: math.unit(800, "lb"),
  25778. name: "Back",
  25779. image: {
  25780. source: "./media/characters/knox/back.svg",
  25781. extra: 1486 / 1089,
  25782. bottom: 107 / 1601.4
  25783. }
  25784. },
  25785. side: {
  25786. height: math.unit(10.5, "feet"),
  25787. weight: math.unit(800, "lb"),
  25788. name: "Side",
  25789. image: {
  25790. source: "./media/characters/knox/side.svg",
  25791. extra: 244 / 218,
  25792. bottom: 14 / 260
  25793. }
  25794. },
  25795. },
  25796. [
  25797. {
  25798. name: "Compact",
  25799. height: math.unit(10.5, "feet"),
  25800. default: true
  25801. },
  25802. {
  25803. name: "Dynamax",
  25804. height: math.unit(210, "feet")
  25805. },
  25806. {
  25807. name: "Full Macro",
  25808. height: math.unit(850, "feet")
  25809. },
  25810. ]
  25811. ))
  25812. characterMakers.push(() => makeCharacter(
  25813. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25814. {
  25815. front: {
  25816. height: math.unit(28, "feet"),
  25817. weight: math.unit(10500, "lb"),
  25818. name: "Front",
  25819. image: {
  25820. source: "./media/characters/kayda/front.svg",
  25821. extra: 1536 / 1428,
  25822. bottom: 68.7 / 1603
  25823. }
  25824. },
  25825. back: {
  25826. height: math.unit(28, "feet"),
  25827. weight: math.unit(10500, "lb"),
  25828. name: "Back",
  25829. image: {
  25830. source: "./media/characters/kayda/back.svg",
  25831. extra: 1557 / 1464,
  25832. bottom: 39.5 / 1597.49
  25833. }
  25834. },
  25835. dick: {
  25836. height: math.unit(3.858, "feet"),
  25837. name: "Dick",
  25838. image: {
  25839. source: "./media/characters/kayda/dick.svg"
  25840. }
  25841. },
  25842. },
  25843. [
  25844. {
  25845. name: "Macro",
  25846. height: math.unit(28, "feet"),
  25847. default: true
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25853. {
  25854. front: {
  25855. height: math.unit(10 + 11 / 12, "feet"),
  25856. weight: math.unit(1400, "lb"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/brian/front.svg",
  25860. extra: 737 / 692,
  25861. bottom: 55.4 / 785
  25862. }
  25863. },
  25864. },
  25865. [
  25866. {
  25867. name: "Normal",
  25868. height: math.unit(10 + 11 / 12, "feet"),
  25869. default: true
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25875. {
  25876. front: {
  25877. height: math.unit(5 + 8 / 12, "feet"),
  25878. weight: math.unit(140, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/khemri/front.svg",
  25882. extra: 4780 / 4059,
  25883. bottom: 80.1 / 4859.25
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Micro",
  25890. height: math.unit(6, "inches")
  25891. },
  25892. {
  25893. name: "Normal",
  25894. height: math.unit(5 + 8 / 12, "feet"),
  25895. default: true
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25901. {
  25902. front: {
  25903. height: math.unit(13, "feet"),
  25904. weight: math.unit(1700, "lb"),
  25905. name: "Front",
  25906. image: {
  25907. source: "./media/characters/felix-braveheart/front.svg",
  25908. extra: 1222 / 1157,
  25909. bottom: 53.2 / 1280
  25910. }
  25911. },
  25912. back: {
  25913. height: math.unit(13, "feet"),
  25914. weight: math.unit(1700, "lb"),
  25915. name: "Back",
  25916. image: {
  25917. source: "./media/characters/felix-braveheart/back.svg",
  25918. extra: 1277 / 1203,
  25919. bottom: 50.2 / 1327
  25920. }
  25921. },
  25922. feral: {
  25923. height: math.unit(6, "feet"),
  25924. weight: math.unit(400, "lb"),
  25925. name: "Feral",
  25926. image: {
  25927. source: "./media/characters/felix-braveheart/feral.svg",
  25928. extra: 682 / 625,
  25929. bottom: 6.9 / 688
  25930. }
  25931. },
  25932. },
  25933. [
  25934. {
  25935. name: "Normal",
  25936. height: math.unit(13, "feet"),
  25937. default: true
  25938. },
  25939. ]
  25940. ))
  25941. characterMakers.push(() => makeCharacter(
  25942. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25943. {
  25944. side: {
  25945. height: math.unit(5 + 11 / 12, "feet"),
  25946. weight: math.unit(1400, "lb"),
  25947. name: "Side",
  25948. image: {
  25949. source: "./media/characters/shadow-blade/side.svg",
  25950. extra: 1726 / 1267,
  25951. bottom: 58.4 / 1785
  25952. }
  25953. },
  25954. },
  25955. [
  25956. {
  25957. name: "Normal",
  25958. height: math.unit(5 + 11 / 12, "feet"),
  25959. default: true
  25960. },
  25961. ]
  25962. ))
  25963. characterMakers.push(() => makeCharacter(
  25964. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25965. {
  25966. front: {
  25967. height: math.unit(1 + 6 / 12, "feet"),
  25968. weight: math.unit(25, "lb"),
  25969. name: "Front",
  25970. image: {
  25971. source: "./media/characters/karla-halldor/front.svg",
  25972. extra: 1459 / 1383,
  25973. bottom: 12 / 1472
  25974. }
  25975. },
  25976. },
  25977. [
  25978. {
  25979. name: "Normal",
  25980. height: math.unit(1 + 6 / 12, "feet"),
  25981. default: true
  25982. },
  25983. ]
  25984. ))
  25985. characterMakers.push(() => makeCharacter(
  25986. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25987. {
  25988. front: {
  25989. height: math.unit(6 + 2 / 12, "feet"),
  25990. weight: math.unit(160, "lb"),
  25991. name: "Front",
  25992. image: {
  25993. source: "./media/characters/ariam/front.svg",
  25994. extra: 1073/976,
  25995. bottom: 52/1125
  25996. }
  25997. },
  25998. back: {
  25999. height: math.unit(6 + 2/12, "feet"),
  26000. weight: math.unit(160, "lb"),
  26001. name: "Back",
  26002. image: {
  26003. source: "./media/characters/ariam/back.svg",
  26004. extra: 1103/1023,
  26005. bottom: 9/1112
  26006. }
  26007. },
  26008. dressed: {
  26009. height: math.unit(6 + 2/12, "feet"),
  26010. weight: math.unit(160, "lb"),
  26011. name: "Dressed",
  26012. image: {
  26013. source: "./media/characters/ariam/dressed.svg",
  26014. extra: 1099/1009,
  26015. bottom: 25/1124
  26016. }
  26017. },
  26018. squatting: {
  26019. height: math.unit(4.1, "feet"),
  26020. weight: math.unit(160, "lb"),
  26021. name: "Squatting",
  26022. image: {
  26023. source: "./media/characters/ariam/squatting.svg",
  26024. extra: 2617 / 2112,
  26025. bottom: 61.2 / 2681,
  26026. }
  26027. },
  26028. },
  26029. [
  26030. {
  26031. name: "Normal",
  26032. height: math.unit(6 + 2 / 12, "feet"),
  26033. default: true
  26034. },
  26035. {
  26036. name: "Normal+",
  26037. height: math.unit(4, "meters")
  26038. },
  26039. {
  26040. name: "Macro",
  26041. height: math.unit(50, "meters")
  26042. },
  26043. {
  26044. name: "Macro+",
  26045. height: math.unit(100, "meters")
  26046. },
  26047. {
  26048. name: "Megamacro",
  26049. height: math.unit(20, "km")
  26050. },
  26051. {
  26052. name: "Caretaker",
  26053. height: math.unit(444, "megameters")
  26054. },
  26055. ]
  26056. ))
  26057. characterMakers.push(() => makeCharacter(
  26058. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26059. {
  26060. front: {
  26061. height: math.unit(1.67, "meters"),
  26062. weight: math.unit(140, "lb"),
  26063. name: "Front",
  26064. image: {
  26065. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26066. extra: 438 / 410,
  26067. bottom: 0.75 / 439
  26068. }
  26069. },
  26070. },
  26071. [
  26072. {
  26073. name: "Shrunken",
  26074. height: math.unit(7.6, "cm")
  26075. },
  26076. {
  26077. name: "Human Scale",
  26078. height: math.unit(1.67, "meters")
  26079. },
  26080. {
  26081. name: "Wolxi Scale",
  26082. height: math.unit(36.7, "meters"),
  26083. default: true
  26084. },
  26085. ]
  26086. ))
  26087. characterMakers.push(() => makeCharacter(
  26088. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26089. {
  26090. front: {
  26091. height: math.unit(1.73, "meters"),
  26092. weight: math.unit(240, "lb"),
  26093. name: "Front",
  26094. image: {
  26095. source: "./media/characters/izue-two-mothers/front.svg",
  26096. extra: 469 / 437,
  26097. bottom: 1.24 / 470.6
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Shrunken",
  26104. height: math.unit(7.86, "cm")
  26105. },
  26106. {
  26107. name: "Human Scale",
  26108. height: math.unit(1.73, "meters")
  26109. },
  26110. {
  26111. name: "Wolxi Scale",
  26112. height: math.unit(38, "meters"),
  26113. default: true
  26114. },
  26115. ]
  26116. ))
  26117. characterMakers.push(() => makeCharacter(
  26118. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26119. {
  26120. front: {
  26121. height: math.unit(1.55, "meters"),
  26122. weight: math.unit(120, "lb"),
  26123. name: "Front",
  26124. image: {
  26125. source: "./media/characters/teeku-love-shack/front.svg",
  26126. extra: 387 / 362,
  26127. bottom: 1.51 / 388
  26128. }
  26129. },
  26130. },
  26131. [
  26132. {
  26133. name: "Shrunken",
  26134. height: math.unit(7, "cm")
  26135. },
  26136. {
  26137. name: "Human Scale",
  26138. height: math.unit(1.55, "meters")
  26139. },
  26140. {
  26141. name: "Wolxi Scale",
  26142. height: math.unit(34.1, "meters"),
  26143. default: true
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26149. {
  26150. front: {
  26151. height: math.unit(1.83, "meters"),
  26152. weight: math.unit(135, "lb"),
  26153. name: "Front",
  26154. image: {
  26155. source: "./media/characters/dejma-the-red/front.svg",
  26156. extra: 480 / 458,
  26157. bottom: 1.8 / 482
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Shrunken",
  26164. height: math.unit(8.3, "cm")
  26165. },
  26166. {
  26167. name: "Human Scale",
  26168. height: math.unit(1.83, "meters")
  26169. },
  26170. {
  26171. name: "Wolxi Scale",
  26172. height: math.unit(40, "meters"),
  26173. default: true
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(1.78, "meters"),
  26182. weight: math.unit(65, "kg"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/aki/front.svg",
  26186. extra: 452 / 415
  26187. }
  26188. },
  26189. frontNsfw: {
  26190. height: math.unit(1.78, "meters"),
  26191. weight: math.unit(65, "kg"),
  26192. name: "Front (NSFW)",
  26193. image: {
  26194. source: "./media/characters/aki/front-nsfw.svg",
  26195. extra: 452 / 415
  26196. }
  26197. },
  26198. back: {
  26199. height: math.unit(1.78, "meters"),
  26200. weight: math.unit(65, "kg"),
  26201. name: "Back",
  26202. image: {
  26203. source: "./media/characters/aki/back.svg",
  26204. extra: 452 / 415
  26205. }
  26206. },
  26207. rump: {
  26208. height: math.unit(2.05, "feet"),
  26209. name: "Rump",
  26210. image: {
  26211. source: "./media/characters/aki/rump.svg"
  26212. }
  26213. },
  26214. dick: {
  26215. height: math.unit(0.95, "feet"),
  26216. name: "Dick",
  26217. image: {
  26218. source: "./media/characters/aki/dick.svg"
  26219. }
  26220. },
  26221. },
  26222. [
  26223. {
  26224. name: "Micro",
  26225. height: math.unit(15, "cm")
  26226. },
  26227. {
  26228. name: "Normal",
  26229. height: math.unit(178, "cm"),
  26230. default: true
  26231. },
  26232. {
  26233. name: "Macro",
  26234. height: math.unit(214, "m")
  26235. },
  26236. {
  26237. name: "Macro+",
  26238. height: math.unit(534, "m")
  26239. },
  26240. ]
  26241. ))
  26242. characterMakers.push(() => makeCharacter(
  26243. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26244. {
  26245. front: {
  26246. height: math.unit(5 + 5 / 12, "feet"),
  26247. weight: math.unit(120, "lb"),
  26248. name: "Front",
  26249. image: {
  26250. source: "./media/characters/ari/front.svg",
  26251. extra: 1550/1471,
  26252. bottom: 39/1589
  26253. }
  26254. },
  26255. },
  26256. [
  26257. {
  26258. name: "Normal",
  26259. height: math.unit(5 + 5 / 12, "feet")
  26260. },
  26261. {
  26262. name: "Macro",
  26263. height: math.unit(100, "feet"),
  26264. default: true
  26265. },
  26266. {
  26267. name: "Megamacro",
  26268. height: math.unit(100, "miles")
  26269. },
  26270. {
  26271. name: "Gigamacro",
  26272. height: math.unit(80000, "miles")
  26273. },
  26274. ]
  26275. ))
  26276. characterMakers.push(() => makeCharacter(
  26277. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26278. {
  26279. side: {
  26280. height: math.unit(9, "feet"),
  26281. weight: math.unit(400, "kg"),
  26282. name: "Side",
  26283. image: {
  26284. source: "./media/characters/bolt/side.svg",
  26285. extra: 1126 / 896,
  26286. bottom: 60 / 1187.3,
  26287. }
  26288. },
  26289. },
  26290. [
  26291. {
  26292. name: "Micro",
  26293. height: math.unit(5, "inches")
  26294. },
  26295. {
  26296. name: "Normal",
  26297. height: math.unit(9, "feet"),
  26298. default: true
  26299. },
  26300. {
  26301. name: "Macro",
  26302. height: math.unit(700, "feet")
  26303. },
  26304. {
  26305. name: "Max Size",
  26306. height: math.unit(1.52e22, "yottameters")
  26307. },
  26308. ]
  26309. ))
  26310. characterMakers.push(() => makeCharacter(
  26311. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26312. {
  26313. front: {
  26314. height: math.unit(4.3, "meters"),
  26315. weight: math.unit(3, "tons"),
  26316. name: "Front",
  26317. image: {
  26318. source: "./media/characters/draekon-sylviar/front.svg",
  26319. extra: 2072/1512,
  26320. bottom: 74/2146
  26321. }
  26322. },
  26323. back: {
  26324. height: math.unit(4.3, "meters"),
  26325. weight: math.unit(3, "tons"),
  26326. name: "Back",
  26327. image: {
  26328. source: "./media/characters/draekon-sylviar/back.svg",
  26329. extra: 1639/1483,
  26330. bottom: 41/1680
  26331. }
  26332. },
  26333. feral: {
  26334. height: math.unit(1.15, "meters"),
  26335. weight: math.unit(3, "tons"),
  26336. name: "Feral",
  26337. image: {
  26338. source: "./media/characters/draekon-sylviar/feral.svg",
  26339. extra: 1033/395,
  26340. bottom: 130/1163
  26341. }
  26342. },
  26343. maw: {
  26344. height: math.unit(1.3, "meters"),
  26345. name: "Maw",
  26346. image: {
  26347. source: "./media/characters/draekon-sylviar/maw.svg"
  26348. }
  26349. },
  26350. mawSeparated: {
  26351. height: math.unit(1.53, "meters"),
  26352. name: "Separated Maw",
  26353. image: {
  26354. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26355. }
  26356. },
  26357. tail: {
  26358. height: math.unit(1.15, "meters"),
  26359. name: "Tail",
  26360. image: {
  26361. source: "./media/characters/draekon-sylviar/tail.svg"
  26362. }
  26363. },
  26364. tailDick: {
  26365. height: math.unit(1.15, "meters"),
  26366. name: "Tail (Dick)",
  26367. image: {
  26368. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26369. }
  26370. },
  26371. tailDickSeparated: {
  26372. height: math.unit(1.19, "meters"),
  26373. name: "Tail (Separated Dick)",
  26374. image: {
  26375. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26376. }
  26377. },
  26378. slit: {
  26379. height: math.unit(1, "meters"),
  26380. name: "Slit",
  26381. image: {
  26382. source: "./media/characters/draekon-sylviar/slit.svg"
  26383. }
  26384. },
  26385. dick: {
  26386. height: math.unit(1.15, "meters"),
  26387. name: "Dick",
  26388. image: {
  26389. source: "./media/characters/draekon-sylviar/dick.svg"
  26390. }
  26391. },
  26392. dickSeparated: {
  26393. height: math.unit(1.1, "meters"),
  26394. name: "Separated Dick",
  26395. image: {
  26396. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26397. }
  26398. },
  26399. sheath: {
  26400. height: math.unit(1.15, "meters"),
  26401. name: "Sheath",
  26402. image: {
  26403. source: "./media/characters/draekon-sylviar/sheath.svg"
  26404. }
  26405. },
  26406. },
  26407. [
  26408. {
  26409. name: "Small",
  26410. height: math.unit(4.53 / 2, "meters"),
  26411. default: true
  26412. },
  26413. {
  26414. name: "Normal",
  26415. height: math.unit(4.53, "meters"),
  26416. default: true
  26417. },
  26418. {
  26419. name: "Large",
  26420. height: math.unit(4.53 * 2, "meters"),
  26421. },
  26422. ]
  26423. ))
  26424. characterMakers.push(() => makeCharacter(
  26425. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26426. {
  26427. front: {
  26428. height: math.unit(6 + 2 / 12, "feet"),
  26429. weight: math.unit(180, "lb"),
  26430. name: "Front",
  26431. image: {
  26432. source: "./media/characters/brawler/front.svg",
  26433. extra: 3301 / 3027,
  26434. bottom: 138 / 3439
  26435. }
  26436. },
  26437. },
  26438. [
  26439. {
  26440. name: "Normal",
  26441. height: math.unit(6 + 2 / 12, "feet"),
  26442. default: true
  26443. },
  26444. ]
  26445. ))
  26446. characterMakers.push(() => makeCharacter(
  26447. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26448. {
  26449. front: {
  26450. height: math.unit(11, "feet"),
  26451. weight: math.unit(1000, "lb"),
  26452. name: "Front",
  26453. image: {
  26454. source: "./media/characters/alex/front.svg",
  26455. bottom: 44.5 / 620
  26456. }
  26457. },
  26458. },
  26459. [
  26460. {
  26461. name: "Micro",
  26462. height: math.unit(5, "inches")
  26463. },
  26464. {
  26465. name: "Normal",
  26466. height: math.unit(11, "feet"),
  26467. default: true
  26468. },
  26469. {
  26470. name: "Macro",
  26471. height: math.unit(9.5e9, "feet")
  26472. },
  26473. {
  26474. name: "Max Size",
  26475. height: math.unit(1.4e283, "yottameters")
  26476. },
  26477. ]
  26478. ))
  26479. characterMakers.push(() => makeCharacter(
  26480. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26481. {
  26482. female: {
  26483. height: math.unit(29.9, "m"),
  26484. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26485. name: "Female",
  26486. image: {
  26487. source: "./media/characters/zenari/female.svg",
  26488. extra: 3281.6 / 3217,
  26489. bottom: 72.2 / 3353
  26490. }
  26491. },
  26492. male: {
  26493. height: math.unit(27.7, "m"),
  26494. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26495. name: "Male",
  26496. image: {
  26497. source: "./media/characters/zenari/male.svg",
  26498. extra: 3008 / 2991,
  26499. bottom: 54.6 / 3069
  26500. }
  26501. },
  26502. },
  26503. [
  26504. {
  26505. name: "Macro",
  26506. height: math.unit(29.7, "meters"),
  26507. default: true
  26508. },
  26509. ]
  26510. ))
  26511. characterMakers.push(() => makeCharacter(
  26512. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26513. {
  26514. female: {
  26515. height: math.unit(23.8, "m"),
  26516. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26517. name: "Female",
  26518. image: {
  26519. source: "./media/characters/mactarian/female.svg",
  26520. extra: 2662 / 2569,
  26521. bottom: 73 / 2736
  26522. }
  26523. },
  26524. male: {
  26525. height: math.unit(23.8, "m"),
  26526. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26527. name: "Male",
  26528. image: {
  26529. source: "./media/characters/mactarian/male.svg",
  26530. extra: 2673 / 2600,
  26531. bottom: 76 / 2750
  26532. }
  26533. },
  26534. },
  26535. [
  26536. {
  26537. name: "Macro",
  26538. height: math.unit(23.8, "meters"),
  26539. default: true
  26540. },
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26545. {
  26546. female: {
  26547. height: math.unit(19.3, "m"),
  26548. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26549. name: "Female",
  26550. image: {
  26551. source: "./media/characters/umok/female.svg",
  26552. extra: 2186 / 2078,
  26553. bottom: 87 / 2277
  26554. }
  26555. },
  26556. male: {
  26557. height: math.unit(19.5, "m"),
  26558. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26559. name: "Male",
  26560. image: {
  26561. source: "./media/characters/umok/male.svg",
  26562. extra: 2233 / 2140,
  26563. bottom: 24.4 / 2258
  26564. }
  26565. },
  26566. },
  26567. [
  26568. {
  26569. name: "Macro",
  26570. height: math.unit(19.3, "meters"),
  26571. default: true
  26572. },
  26573. ]
  26574. ))
  26575. characterMakers.push(() => makeCharacter(
  26576. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26577. {
  26578. female: {
  26579. height: math.unit(26.15, "m"),
  26580. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26581. name: "Female",
  26582. image: {
  26583. source: "./media/characters/joraxian/female.svg",
  26584. extra: 2912 / 2824,
  26585. bottom: 36 / 2956
  26586. }
  26587. },
  26588. male: {
  26589. height: math.unit(25.4, "m"),
  26590. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26591. name: "Male",
  26592. image: {
  26593. source: "./media/characters/joraxian/male.svg",
  26594. extra: 2877 / 2721,
  26595. bottom: 82 / 2967
  26596. }
  26597. },
  26598. },
  26599. [
  26600. {
  26601. name: "Macro",
  26602. height: math.unit(26.15, "meters"),
  26603. default: true
  26604. },
  26605. ]
  26606. ))
  26607. characterMakers.push(() => makeCharacter(
  26608. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26609. {
  26610. female: {
  26611. height: math.unit(21.6, "m"),
  26612. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26613. name: "Female",
  26614. image: {
  26615. source: "./media/characters/sthara/female.svg",
  26616. extra: 2516 / 2347,
  26617. bottom: 21.5 / 2537
  26618. }
  26619. },
  26620. male: {
  26621. height: math.unit(24, "m"),
  26622. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26623. name: "Male",
  26624. image: {
  26625. source: "./media/characters/sthara/male.svg",
  26626. extra: 2732 / 2607,
  26627. bottom: 23 / 2732
  26628. }
  26629. },
  26630. },
  26631. [
  26632. {
  26633. name: "Macro",
  26634. height: math.unit(21.6, "meters"),
  26635. default: true
  26636. },
  26637. ]
  26638. ))
  26639. characterMakers.push(() => makeCharacter(
  26640. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26641. {
  26642. front: {
  26643. height: math.unit(6 + 4 / 12, "feet"),
  26644. weight: math.unit(175, "lb"),
  26645. name: "Front",
  26646. image: {
  26647. source: "./media/characters/luka-bryzant/front.svg",
  26648. extra: 311 / 289,
  26649. bottom: 4 / 315
  26650. }
  26651. },
  26652. back: {
  26653. height: math.unit(6 + 4 / 12, "feet"),
  26654. weight: math.unit(175, "lb"),
  26655. name: "Back",
  26656. image: {
  26657. source: "./media/characters/luka-bryzant/back.svg",
  26658. extra: 311 / 289,
  26659. bottom: 3.8 / 313.7
  26660. }
  26661. },
  26662. },
  26663. [
  26664. {
  26665. name: "Micro",
  26666. height: math.unit(10, "inches")
  26667. },
  26668. {
  26669. name: "Normal",
  26670. height: math.unit(6 + 4 / 12, "feet"),
  26671. default: true
  26672. },
  26673. {
  26674. name: "Large",
  26675. height: math.unit(12, "feet")
  26676. },
  26677. ]
  26678. ))
  26679. characterMakers.push(() => makeCharacter(
  26680. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26681. {
  26682. front: {
  26683. height: math.unit(5 + 7 / 12, "feet"),
  26684. weight: math.unit(185, "lb"),
  26685. name: "Front",
  26686. image: {
  26687. source: "./media/characters/aman-aquila/front.svg",
  26688. extra: 1013 / 976,
  26689. bottom: 45.6 / 1057
  26690. }
  26691. },
  26692. side: {
  26693. height: math.unit(5 + 7 / 12, "feet"),
  26694. weight: math.unit(185, "lb"),
  26695. name: "Side",
  26696. image: {
  26697. source: "./media/characters/aman-aquila/side.svg",
  26698. extra: 1054 / 1011,
  26699. bottom: 15 / 1070
  26700. }
  26701. },
  26702. back: {
  26703. height: math.unit(5 + 7 / 12, "feet"),
  26704. weight: math.unit(185, "lb"),
  26705. name: "Back",
  26706. image: {
  26707. source: "./media/characters/aman-aquila/back.svg",
  26708. extra: 1026 / 970,
  26709. bottom: 12 / 1039
  26710. }
  26711. },
  26712. head: {
  26713. height: math.unit(1.211, "feet"),
  26714. name: "Head",
  26715. image: {
  26716. source: "./media/characters/aman-aquila/head.svg",
  26717. }
  26718. },
  26719. },
  26720. [
  26721. {
  26722. name: "Minimicro",
  26723. height: math.unit(0.057, "inches")
  26724. },
  26725. {
  26726. name: "Micro",
  26727. height: math.unit(7, "inches")
  26728. },
  26729. {
  26730. name: "Mini",
  26731. height: math.unit(3 + 7 / 12, "feet")
  26732. },
  26733. {
  26734. name: "Normal",
  26735. height: math.unit(5 + 7 / 12, "feet"),
  26736. default: true
  26737. },
  26738. {
  26739. name: "Macro",
  26740. height: math.unit(157 + 7 / 12, "feet")
  26741. },
  26742. {
  26743. name: "Megamacro",
  26744. height: math.unit(1557 + 7 / 12, "feet")
  26745. },
  26746. {
  26747. name: "Gigamacro",
  26748. height: math.unit(15557 + 7 / 12, "feet")
  26749. },
  26750. ]
  26751. ))
  26752. characterMakers.push(() => makeCharacter(
  26753. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26754. {
  26755. front: {
  26756. height: math.unit(3 + 2 / 12, "inches"),
  26757. weight: math.unit(0.3, "ounces"),
  26758. name: "Front",
  26759. image: {
  26760. source: "./media/characters/hiphae/front.svg",
  26761. extra: 1931 / 1683,
  26762. bottom: 24 / 1955
  26763. }
  26764. },
  26765. },
  26766. [
  26767. {
  26768. name: "Normal",
  26769. height: math.unit(3 + 1 / 2, "inches"),
  26770. default: true
  26771. },
  26772. ]
  26773. ))
  26774. characterMakers.push(() => makeCharacter(
  26775. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26776. {
  26777. front: {
  26778. height: math.unit(5 + 10 / 12, "feet"),
  26779. weight: math.unit(165, "lb"),
  26780. name: "Front",
  26781. image: {
  26782. source: "./media/characters/nicky/front.svg",
  26783. extra: 3144 / 2886,
  26784. bottom: 45.6 / 3192
  26785. }
  26786. },
  26787. back: {
  26788. height: math.unit(5 + 10 / 12, "feet"),
  26789. weight: math.unit(165, "lb"),
  26790. name: "Back",
  26791. image: {
  26792. source: "./media/characters/nicky/back.svg",
  26793. extra: 3055 / 2804,
  26794. bottom: 28.4 / 3087
  26795. }
  26796. },
  26797. frontclothed: {
  26798. height: math.unit(5 + 10 / 12, "feet"),
  26799. weight: math.unit(165, "lb"),
  26800. name: "Front-clothed",
  26801. image: {
  26802. source: "./media/characters/nicky/front-clothed.svg",
  26803. extra: 3184.9 / 2926.9,
  26804. bottom: 86.5 / 3239.9
  26805. }
  26806. },
  26807. foot: {
  26808. height: math.unit(1.16, "feet"),
  26809. name: "Foot",
  26810. image: {
  26811. source: "./media/characters/nicky/foot.svg"
  26812. }
  26813. },
  26814. feet: {
  26815. height: math.unit(1.34, "feet"),
  26816. name: "Feet",
  26817. image: {
  26818. source: "./media/characters/nicky/feet.svg"
  26819. }
  26820. },
  26821. maw: {
  26822. height: math.unit(0.9, "feet"),
  26823. name: "Maw",
  26824. image: {
  26825. source: "./media/characters/nicky/maw.svg"
  26826. }
  26827. },
  26828. },
  26829. [
  26830. {
  26831. name: "Normal",
  26832. height: math.unit(5 + 10 / 12, "feet"),
  26833. default: true
  26834. },
  26835. {
  26836. name: "Macro",
  26837. height: math.unit(60, "feet")
  26838. },
  26839. {
  26840. name: "Megamacro",
  26841. height: math.unit(1, "mile")
  26842. },
  26843. ]
  26844. ))
  26845. characterMakers.push(() => makeCharacter(
  26846. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26847. {
  26848. side: {
  26849. height: math.unit(10, "feet"),
  26850. weight: math.unit(600, "lb"),
  26851. name: "Side",
  26852. image: {
  26853. source: "./media/characters/blair/side.svg",
  26854. bottom: 16.6 / 475,
  26855. extra: 458 / 431
  26856. }
  26857. },
  26858. },
  26859. [
  26860. {
  26861. name: "Micro",
  26862. height: math.unit(8, "inches")
  26863. },
  26864. {
  26865. name: "Normal",
  26866. height: math.unit(10, "feet"),
  26867. default: true
  26868. },
  26869. {
  26870. name: "Macro",
  26871. height: math.unit(180, "feet")
  26872. },
  26873. ]
  26874. ))
  26875. characterMakers.push(() => makeCharacter(
  26876. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26877. {
  26878. front: {
  26879. height: math.unit(5 + 4 / 12, "feet"),
  26880. weight: math.unit(125, "lb"),
  26881. name: "Front",
  26882. image: {
  26883. source: "./media/characters/fisher/front.svg",
  26884. extra: 444 / 390,
  26885. bottom: 2 / 444.8
  26886. }
  26887. },
  26888. },
  26889. [
  26890. {
  26891. name: "Micro",
  26892. height: math.unit(4, "inches")
  26893. },
  26894. {
  26895. name: "Normal",
  26896. height: math.unit(5 + 4 / 12, "feet"),
  26897. default: true
  26898. },
  26899. {
  26900. name: "Macro",
  26901. height: math.unit(100, "feet")
  26902. },
  26903. ]
  26904. ))
  26905. characterMakers.push(() => makeCharacter(
  26906. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26907. {
  26908. front: {
  26909. height: math.unit(6.71, "feet"),
  26910. weight: math.unit(200, "lb"),
  26911. preyCapacity: math.unit(1000000, "people"),
  26912. name: "Front",
  26913. image: {
  26914. source: "./media/characters/gliss/front.svg",
  26915. extra: 2347 / 2231,
  26916. bottom: 113 / 2462
  26917. }
  26918. },
  26919. hammerspaceSize: {
  26920. height: math.unit(6.71 * 717, "feet"),
  26921. weight: math.unit(200, "lb"),
  26922. preyCapacity: math.unit(1000000, "people"),
  26923. name: "Hammerspace Size",
  26924. image: {
  26925. source: "./media/characters/gliss/front.svg",
  26926. extra: 2347 / 2231,
  26927. bottom: 113 / 2462
  26928. }
  26929. },
  26930. },
  26931. [
  26932. {
  26933. name: "Normal",
  26934. height: math.unit(6.71, "feet"),
  26935. default: true
  26936. },
  26937. ]
  26938. ))
  26939. characterMakers.push(() => makeCharacter(
  26940. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26941. {
  26942. side: {
  26943. height: math.unit(1.44, "m"),
  26944. weight: math.unit(80, "kg"),
  26945. name: "Side",
  26946. image: {
  26947. source: "./media/characters/dune-anderson/side.svg",
  26948. bottom: 49 / 1426
  26949. }
  26950. },
  26951. },
  26952. [
  26953. {
  26954. name: "Wolf-sized",
  26955. height: math.unit(1.44, "meters")
  26956. },
  26957. {
  26958. name: "Normal",
  26959. height: math.unit(5.05, "meters"),
  26960. default: true
  26961. },
  26962. {
  26963. name: "Big",
  26964. height: math.unit(14.4, "meters")
  26965. },
  26966. {
  26967. name: "Huge",
  26968. height: math.unit(144, "meters")
  26969. },
  26970. ]
  26971. ))
  26972. characterMakers.push(() => makeCharacter(
  26973. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26974. {
  26975. front: {
  26976. height: math.unit(7, "feet"),
  26977. weight: math.unit(425, "lb"),
  26978. name: "Front",
  26979. image: {
  26980. source: "./media/characters/hind/front.svg",
  26981. extra: 2091 / 1860,
  26982. bottom: 129 / 2220
  26983. }
  26984. },
  26985. back: {
  26986. height: math.unit(7, "feet"),
  26987. weight: math.unit(425, "lb"),
  26988. name: "Back",
  26989. image: {
  26990. source: "./media/characters/hind/back.svg",
  26991. extra: 2091 / 1860,
  26992. bottom: 24.6 / 2309
  26993. }
  26994. },
  26995. tail: {
  26996. height: math.unit(2.8, "feet"),
  26997. name: "Tail",
  26998. image: {
  26999. source: "./media/characters/hind/tail.svg"
  27000. }
  27001. },
  27002. head: {
  27003. height: math.unit(2.55, "feet"),
  27004. name: "Head",
  27005. image: {
  27006. source: "./media/characters/hind/head.svg"
  27007. }
  27008. },
  27009. },
  27010. [
  27011. {
  27012. name: "XS",
  27013. height: math.unit(0.7, "feet")
  27014. },
  27015. {
  27016. name: "Normal",
  27017. height: math.unit(7, "feet"),
  27018. default: true
  27019. },
  27020. {
  27021. name: "XL",
  27022. height: math.unit(70, "feet")
  27023. },
  27024. ]
  27025. ))
  27026. characterMakers.push(() => makeCharacter(
  27027. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27028. {
  27029. front: {
  27030. height: math.unit(2.1, "meters"),
  27031. weight: math.unit(150, "lb"),
  27032. name: "Front",
  27033. image: {
  27034. source: "./media/characters/tharquench-sizestealer/front.svg",
  27035. extra: 1605/1470,
  27036. bottom: 36/1641
  27037. }
  27038. },
  27039. frontAlt: {
  27040. height: math.unit(2.1, "meters"),
  27041. weight: math.unit(150, "lb"),
  27042. name: "Front (Alt)",
  27043. image: {
  27044. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27045. extra: 2318 / 2063,
  27046. bottom: 93.4 / 2410
  27047. }
  27048. },
  27049. },
  27050. [
  27051. {
  27052. name: "Nano",
  27053. height: math.unit(1, "mm")
  27054. },
  27055. {
  27056. name: "Micro",
  27057. height: math.unit(1, "cm")
  27058. },
  27059. {
  27060. name: "Normal",
  27061. height: math.unit(2.1, "meters"),
  27062. default: true
  27063. },
  27064. ]
  27065. ))
  27066. characterMakers.push(() => makeCharacter(
  27067. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27068. {
  27069. front: {
  27070. height: math.unit(7 + 5 / 12, "feet"),
  27071. weight: math.unit(357, "lb"),
  27072. name: "Front",
  27073. image: {
  27074. source: "./media/characters/solex-draconov/front.svg",
  27075. extra: 1993 / 1865,
  27076. bottom: 117 / 2111
  27077. }
  27078. },
  27079. },
  27080. [
  27081. {
  27082. name: "Natural Height",
  27083. height: math.unit(7 + 5 / 12, "feet"),
  27084. default: true
  27085. },
  27086. {
  27087. name: "Macro",
  27088. height: math.unit(350, "feet")
  27089. },
  27090. {
  27091. name: "Macro+",
  27092. height: math.unit(1000, "feet")
  27093. },
  27094. {
  27095. name: "Megamacro",
  27096. height: math.unit(20, "km")
  27097. },
  27098. {
  27099. name: "Megamacro+",
  27100. height: math.unit(1000, "km")
  27101. },
  27102. {
  27103. name: "Gigamacro",
  27104. height: math.unit(2.5, "Gm")
  27105. },
  27106. {
  27107. name: "Teramacro",
  27108. height: math.unit(15, "Tm")
  27109. },
  27110. {
  27111. name: "Galactic",
  27112. height: math.unit(30, "Zm")
  27113. },
  27114. {
  27115. name: "Universal",
  27116. height: math.unit(21000, "Ym")
  27117. },
  27118. {
  27119. name: "Omniversal",
  27120. height: math.unit(9.861e50, "Ym")
  27121. },
  27122. {
  27123. name: "Existential",
  27124. height: math.unit(1e300, "meters")
  27125. },
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27130. {
  27131. side: {
  27132. height: math.unit(25, "feet"),
  27133. weight: math.unit(90000, "lb"),
  27134. name: "Side",
  27135. image: {
  27136. source: "./media/characters/mandarax/side.svg",
  27137. extra: 614 / 332,
  27138. bottom: 55 / 630
  27139. }
  27140. },
  27141. lounging: {
  27142. height: math.unit(15.4, "feet"),
  27143. weight: math.unit(90000, "lb"),
  27144. name: "Lounging",
  27145. image: {
  27146. source: "./media/characters/mandarax/lounging.svg",
  27147. extra: 817/609,
  27148. bottom: 685/1502
  27149. }
  27150. },
  27151. head: {
  27152. height: math.unit(11.4, "feet"),
  27153. name: "Head",
  27154. image: {
  27155. source: "./media/characters/mandarax/head.svg"
  27156. }
  27157. },
  27158. belly: {
  27159. height: math.unit(33, "feet"),
  27160. name: "Belly",
  27161. preyCapacity: math.unit(500, "people"),
  27162. image: {
  27163. source: "./media/characters/mandarax/belly.svg"
  27164. }
  27165. },
  27166. dick: {
  27167. height: math.unit(8.46, "feet"),
  27168. name: "Dick",
  27169. image: {
  27170. source: "./media/characters/mandarax/dick.svg"
  27171. }
  27172. },
  27173. top: {
  27174. height: math.unit(28, "meters"),
  27175. name: "Top",
  27176. image: {
  27177. source: "./media/characters/mandarax/top.svg"
  27178. }
  27179. },
  27180. },
  27181. [
  27182. {
  27183. name: "Normal",
  27184. height: math.unit(25, "feet"),
  27185. default: true
  27186. },
  27187. ]
  27188. ))
  27189. characterMakers.push(() => makeCharacter(
  27190. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27191. {
  27192. front: {
  27193. height: math.unit(5, "feet"),
  27194. weight: math.unit(90, "lb"),
  27195. name: "Front",
  27196. image: {
  27197. source: "./media/characters/pixil/front.svg",
  27198. extra: 2000 / 1618,
  27199. bottom: 12.3 / 2011
  27200. }
  27201. },
  27202. },
  27203. [
  27204. {
  27205. name: "Normal",
  27206. height: math.unit(5, "feet"),
  27207. default: true
  27208. },
  27209. {
  27210. name: "Megamacro",
  27211. height: math.unit(10, "miles"),
  27212. },
  27213. ]
  27214. ))
  27215. characterMakers.push(() => makeCharacter(
  27216. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27217. {
  27218. front: {
  27219. height: math.unit(7 + 2 / 12, "feet"),
  27220. weight: math.unit(200, "lb"),
  27221. name: "Front",
  27222. image: {
  27223. source: "./media/characters/angel/front.svg",
  27224. extra: 1830 / 1737,
  27225. bottom: 22.6 / 1854,
  27226. }
  27227. },
  27228. },
  27229. [
  27230. {
  27231. name: "Normal",
  27232. height: math.unit(7 + 2 / 12, "feet"),
  27233. default: true
  27234. },
  27235. {
  27236. name: "Macro",
  27237. height: math.unit(1000, "feet")
  27238. },
  27239. {
  27240. name: "Megamacro",
  27241. height: math.unit(2, "miles")
  27242. },
  27243. {
  27244. name: "Gigamacro",
  27245. height: math.unit(20, "earths")
  27246. },
  27247. ]
  27248. ))
  27249. characterMakers.push(() => makeCharacter(
  27250. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27251. {
  27252. front: {
  27253. height: math.unit(5, "feet"),
  27254. weight: math.unit(180, "lb"),
  27255. name: "Front",
  27256. image: {
  27257. source: "./media/characters/mekana/front.svg",
  27258. extra: 1671 / 1605,
  27259. bottom: 3.5 / 1691
  27260. }
  27261. },
  27262. side: {
  27263. height: math.unit(5, "feet"),
  27264. weight: math.unit(180, "lb"),
  27265. name: "Side",
  27266. image: {
  27267. source: "./media/characters/mekana/side.svg",
  27268. extra: 1671 / 1605,
  27269. bottom: 3.5 / 1691
  27270. }
  27271. },
  27272. back: {
  27273. height: math.unit(5, "feet"),
  27274. weight: math.unit(180, "lb"),
  27275. name: "Back",
  27276. image: {
  27277. source: "./media/characters/mekana/back.svg",
  27278. extra: 1671 / 1605,
  27279. bottom: 3.5 / 1691
  27280. }
  27281. },
  27282. },
  27283. [
  27284. {
  27285. name: "Normal",
  27286. height: math.unit(5, "feet"),
  27287. default: true
  27288. },
  27289. ]
  27290. ))
  27291. characterMakers.push(() => makeCharacter(
  27292. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27293. {
  27294. front: {
  27295. height: math.unit(4 + 6 / 12, "feet"),
  27296. weight: math.unit(80, "lb"),
  27297. name: "Front",
  27298. image: {
  27299. source: "./media/characters/pixie/front.svg",
  27300. extra: 1924 / 1825,
  27301. bottom: 22.4 / 1946
  27302. }
  27303. },
  27304. },
  27305. [
  27306. {
  27307. name: "Normal",
  27308. height: math.unit(4 + 6 / 12, "feet"),
  27309. default: true
  27310. },
  27311. {
  27312. name: "Macro",
  27313. height: math.unit(40, "feet")
  27314. },
  27315. ]
  27316. ))
  27317. characterMakers.push(() => makeCharacter(
  27318. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27319. {
  27320. front: {
  27321. height: math.unit(2.1, "meters"),
  27322. weight: math.unit(200, "lb"),
  27323. name: "Front",
  27324. image: {
  27325. source: "./media/characters/the-lascivious/front.svg",
  27326. extra: 1 / 0.893,
  27327. bottom: 3.5 / 573.7
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Human Scale",
  27334. height: math.unit(2.1, "meters")
  27335. },
  27336. {
  27337. name: "Wolxi Scale",
  27338. height: math.unit(46.2, "m"),
  27339. default: true
  27340. },
  27341. {
  27342. name: "Boinker of Buildings",
  27343. height: math.unit(10, "km")
  27344. },
  27345. {
  27346. name: "Shagger of Skyscrapers",
  27347. height: math.unit(40, "km")
  27348. },
  27349. {
  27350. name: "Banger of Boroughs",
  27351. height: math.unit(4000, "km")
  27352. },
  27353. {
  27354. name: "Screwer of States",
  27355. height: math.unit(100000, "km")
  27356. },
  27357. {
  27358. name: "Pounder of Planets",
  27359. height: math.unit(2000000, "km")
  27360. },
  27361. ]
  27362. ))
  27363. characterMakers.push(() => makeCharacter(
  27364. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27365. {
  27366. front: {
  27367. height: math.unit(6, "feet"),
  27368. weight: math.unit(150, "lb"),
  27369. name: "Front",
  27370. image: {
  27371. source: "./media/characters/aj/front.svg",
  27372. extra: 2039 / 1562,
  27373. bottom: 40 / 2079
  27374. }
  27375. },
  27376. },
  27377. [
  27378. {
  27379. name: "Normal",
  27380. height: math.unit(11 + 6 / 12, "feet"),
  27381. default: true
  27382. },
  27383. {
  27384. name: "Megamacro",
  27385. height: math.unit(60, "megameters")
  27386. },
  27387. ]
  27388. ))
  27389. characterMakers.push(() => makeCharacter(
  27390. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27391. {
  27392. side: {
  27393. height: math.unit(31 + 8 / 12, "feet"),
  27394. weight: math.unit(75000, "kg"),
  27395. name: "Side",
  27396. image: {
  27397. source: "./media/characters/koros/side.svg",
  27398. extra: 1442 / 1297,
  27399. bottom: 122.7 / 1562
  27400. }
  27401. },
  27402. dicksKingsCrown: {
  27403. height: math.unit(6, "feet"),
  27404. name: "Dicks (King's Crown)",
  27405. image: {
  27406. source: "./media/characters/koros/dicks-kings-crown.svg"
  27407. }
  27408. },
  27409. dicksTailSet: {
  27410. height: math.unit(3, "feet"),
  27411. name: "Dicks (Tail Set)",
  27412. image: {
  27413. source: "./media/characters/koros/dicks-tail-set.svg"
  27414. }
  27415. },
  27416. dickCumming: {
  27417. height: math.unit(7.98, "feet"),
  27418. name: "Dick (Cumming)",
  27419. image: {
  27420. source: "./media/characters/koros/dick-cumming.svg"
  27421. }
  27422. },
  27423. dicksBack: {
  27424. height: math.unit(5.9, "feet"),
  27425. name: "Dicks (Back)",
  27426. image: {
  27427. source: "./media/characters/koros/dicks-back.svg"
  27428. }
  27429. },
  27430. dicksFront: {
  27431. height: math.unit(3.72, "feet"),
  27432. name: "Dicks (Front)",
  27433. image: {
  27434. source: "./media/characters/koros/dicks-front.svg"
  27435. }
  27436. },
  27437. dicksPeeking: {
  27438. height: math.unit(3.0, "feet"),
  27439. name: "Dicks (Peeking)",
  27440. image: {
  27441. source: "./media/characters/koros/dicks-peeking.svg"
  27442. }
  27443. },
  27444. eye: {
  27445. height: math.unit(1.7, "feet"),
  27446. name: "Eye",
  27447. image: {
  27448. source: "./media/characters/koros/eye.svg"
  27449. }
  27450. },
  27451. headFront: {
  27452. height: math.unit(11.69, "feet"),
  27453. name: "Head (Front)",
  27454. image: {
  27455. source: "./media/characters/koros/head-front.svg"
  27456. }
  27457. },
  27458. headSide: {
  27459. height: math.unit(14, "feet"),
  27460. name: "Head (Side)",
  27461. image: {
  27462. source: "./media/characters/koros/head-side.svg"
  27463. }
  27464. },
  27465. leg: {
  27466. height: math.unit(17, "feet"),
  27467. name: "Leg",
  27468. image: {
  27469. source: "./media/characters/koros/leg.svg"
  27470. }
  27471. },
  27472. mawSide: {
  27473. height: math.unit(12.8, "feet"),
  27474. name: "Maw (Side)",
  27475. image: {
  27476. source: "./media/characters/koros/maw-side.svg"
  27477. }
  27478. },
  27479. mawSpitting: {
  27480. height: math.unit(17, "feet"),
  27481. name: "Maw (Spitting)",
  27482. image: {
  27483. source: "./media/characters/koros/maw-spitting.svg"
  27484. }
  27485. },
  27486. slit: {
  27487. height: math.unit(2.8, "feet"),
  27488. name: "Slit",
  27489. image: {
  27490. source: "./media/characters/koros/slit.svg"
  27491. }
  27492. },
  27493. stomach: {
  27494. height: math.unit(6.8, "feet"),
  27495. preyCapacity: math.unit(20, "people"),
  27496. name: "Stomach",
  27497. image: {
  27498. source: "./media/characters/koros/stomach.svg"
  27499. }
  27500. },
  27501. wingspanBottom: {
  27502. height: math.unit(114, "feet"),
  27503. name: "Wingspan (Bottom)",
  27504. image: {
  27505. source: "./media/characters/koros/wingspan-bottom.svg"
  27506. }
  27507. },
  27508. wingspanTop: {
  27509. height: math.unit(104, "feet"),
  27510. name: "Wingspan (Top)",
  27511. image: {
  27512. source: "./media/characters/koros/wingspan-top.svg"
  27513. }
  27514. },
  27515. },
  27516. [
  27517. {
  27518. name: "Normal",
  27519. height: math.unit(31 + 8 / 12, "feet"),
  27520. default: true
  27521. },
  27522. ]
  27523. ))
  27524. characterMakers.push(() => makeCharacter(
  27525. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27526. {
  27527. front: {
  27528. height: math.unit(18 + 5 / 12, "feet"),
  27529. weight: math.unit(3750, "kg"),
  27530. name: "Front",
  27531. image: {
  27532. source: "./media/characters/vexx/front.svg",
  27533. extra: 426 / 396,
  27534. bottom: 31.5 / 458
  27535. }
  27536. },
  27537. maw: {
  27538. height: math.unit(6, "feet"),
  27539. name: "Maw",
  27540. image: {
  27541. source: "./media/characters/vexx/maw.svg"
  27542. }
  27543. },
  27544. },
  27545. [
  27546. {
  27547. name: "Normal",
  27548. height: math.unit(18 + 5 / 12, "feet"),
  27549. default: true
  27550. },
  27551. ]
  27552. ))
  27553. characterMakers.push(() => makeCharacter(
  27554. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27555. {
  27556. front: {
  27557. height: math.unit(17 + 6 / 12, "feet"),
  27558. weight: math.unit(150, "lb"),
  27559. name: "Front",
  27560. image: {
  27561. source: "./media/characters/baadra/front.svg",
  27562. extra: 1694/1553,
  27563. bottom: 179/1873
  27564. }
  27565. },
  27566. frontAlt: {
  27567. height: math.unit(17 + 6 / 12, "feet"),
  27568. weight: math.unit(150, "lb"),
  27569. name: "Front (Alt)",
  27570. image: {
  27571. source: "./media/characters/baadra/front-alt.svg",
  27572. extra: 3137 / 2890,
  27573. bottom: 168.4 / 3305
  27574. }
  27575. },
  27576. back: {
  27577. height: math.unit(17 + 6 / 12, "feet"),
  27578. weight: math.unit(150, "lb"),
  27579. name: "Back",
  27580. image: {
  27581. source: "./media/characters/baadra/back.svg",
  27582. extra: 3142 / 2890,
  27583. bottom: 220 / 3371
  27584. }
  27585. },
  27586. head: {
  27587. height: math.unit(5.45, "feet"),
  27588. name: "Head",
  27589. image: {
  27590. source: "./media/characters/baadra/head.svg"
  27591. }
  27592. },
  27593. headAngry: {
  27594. height: math.unit(4.95, "feet"),
  27595. name: "Head (Angry)",
  27596. image: {
  27597. source: "./media/characters/baadra/head-angry.svg"
  27598. }
  27599. },
  27600. headOpen: {
  27601. height: math.unit(6, "feet"),
  27602. name: "Head (Open)",
  27603. image: {
  27604. source: "./media/characters/baadra/head-open.svg"
  27605. }
  27606. },
  27607. },
  27608. [
  27609. {
  27610. name: "Normal",
  27611. height: math.unit(17 + 6 / 12, "feet"),
  27612. default: true
  27613. },
  27614. ]
  27615. ))
  27616. characterMakers.push(() => makeCharacter(
  27617. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27618. {
  27619. front: {
  27620. height: math.unit(7 + 3 / 12, "feet"),
  27621. weight: math.unit(180, "lb"),
  27622. name: "Front",
  27623. image: {
  27624. source: "./media/characters/juri/front.svg",
  27625. extra: 1401 / 1237,
  27626. bottom: 18.5 / 1418
  27627. }
  27628. },
  27629. side: {
  27630. height: math.unit(7 + 3 / 12, "feet"),
  27631. weight: math.unit(180, "lb"),
  27632. name: "Side",
  27633. image: {
  27634. source: "./media/characters/juri/side.svg",
  27635. extra: 1424 / 1242,
  27636. bottom: 18.5 / 1447
  27637. }
  27638. },
  27639. sitting: {
  27640. height: math.unit(6, "feet"),
  27641. weight: math.unit(180, "lb"),
  27642. name: "Sitting",
  27643. image: {
  27644. source: "./media/characters/juri/sitting.svg",
  27645. extra: 1270 / 1143,
  27646. bottom: 100 / 1343
  27647. }
  27648. },
  27649. back: {
  27650. height: math.unit(7 + 3 / 12, "feet"),
  27651. weight: math.unit(180, "lb"),
  27652. name: "Back",
  27653. image: {
  27654. source: "./media/characters/juri/back.svg",
  27655. extra: 1377 / 1240,
  27656. bottom: 23.7 / 1405
  27657. }
  27658. },
  27659. maw: {
  27660. height: math.unit(2.8, "feet"),
  27661. name: "Maw",
  27662. image: {
  27663. source: "./media/characters/juri/maw.svg"
  27664. }
  27665. },
  27666. stomach: {
  27667. height: math.unit(0.89, "feet"),
  27668. preyCapacity: math.unit(4, "liters"),
  27669. name: "Stomach",
  27670. image: {
  27671. source: "./media/characters/juri/stomach.svg"
  27672. }
  27673. },
  27674. },
  27675. [
  27676. {
  27677. name: "Normal",
  27678. height: math.unit(7 + 3 / 12, "feet"),
  27679. default: true
  27680. },
  27681. ]
  27682. ))
  27683. characterMakers.push(() => makeCharacter(
  27684. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27685. {
  27686. fox: {
  27687. height: math.unit(5 + 6 / 12, "feet"),
  27688. weight: math.unit(140, "lb"),
  27689. name: "Fox",
  27690. image: {
  27691. source: "./media/characters/maxene-sita/fox.svg",
  27692. extra: 146 / 138,
  27693. bottom: 2.1 / 148.19
  27694. }
  27695. },
  27696. foxLaying: {
  27697. height: math.unit(1.70, "feet"),
  27698. weight: math.unit(140, "lb"),
  27699. name: "Fox (Laying)",
  27700. image: {
  27701. source: "./media/characters/maxene-sita/fox-laying.svg",
  27702. extra: 910 / 572,
  27703. bottom: 71 / 981
  27704. }
  27705. },
  27706. kitsune: {
  27707. height: math.unit(10, "feet"),
  27708. weight: math.unit(800, "lb"),
  27709. name: "Kitsune",
  27710. image: {
  27711. source: "./media/characters/maxene-sita/kitsune.svg",
  27712. extra: 185 / 176,
  27713. bottom: 4.7 / 189.9
  27714. }
  27715. },
  27716. hellhound: {
  27717. height: math.unit(10, "feet"),
  27718. weight: math.unit(700, "lb"),
  27719. name: "Hellhound",
  27720. image: {
  27721. source: "./media/characters/maxene-sita/hellhound.svg",
  27722. extra: 1600 / 1545,
  27723. bottom: 81 / 1681
  27724. }
  27725. },
  27726. },
  27727. [
  27728. {
  27729. name: "Normal",
  27730. height: math.unit(5 + 6 / 12, "feet"),
  27731. default: true
  27732. },
  27733. ]
  27734. ))
  27735. characterMakers.push(() => makeCharacter(
  27736. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27737. {
  27738. front: {
  27739. height: math.unit(3 + 4 / 12, "feet"),
  27740. weight: math.unit(70, "lb"),
  27741. name: "Front",
  27742. image: {
  27743. source: "./media/characters/maia/front.svg",
  27744. extra: 227 / 219.5,
  27745. bottom: 40 / 267
  27746. }
  27747. },
  27748. back: {
  27749. height: math.unit(3 + 4 / 12, "feet"),
  27750. weight: math.unit(70, "lb"),
  27751. name: "Back",
  27752. image: {
  27753. source: "./media/characters/maia/back.svg",
  27754. extra: 237 / 225
  27755. }
  27756. },
  27757. },
  27758. [
  27759. {
  27760. name: "Normal",
  27761. height: math.unit(3 + 4 / 12, "feet"),
  27762. default: true
  27763. },
  27764. ]
  27765. ))
  27766. characterMakers.push(() => makeCharacter(
  27767. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27768. {
  27769. front: {
  27770. height: math.unit(5 + 10 / 12, "feet"),
  27771. weight: math.unit(197, "lb"),
  27772. name: "Front",
  27773. image: {
  27774. source: "./media/characters/jabaro/front.svg",
  27775. extra: 225 / 216,
  27776. bottom: 5.06 / 230
  27777. }
  27778. },
  27779. back: {
  27780. height: math.unit(5 + 10 / 12, "feet"),
  27781. weight: math.unit(197, "lb"),
  27782. name: "Back",
  27783. image: {
  27784. source: "./media/characters/jabaro/back.svg",
  27785. extra: 225 / 219,
  27786. bottom: 1.9 / 227
  27787. }
  27788. },
  27789. },
  27790. [
  27791. {
  27792. name: "Normal",
  27793. height: math.unit(5 + 10 / 12, "feet"),
  27794. default: true
  27795. },
  27796. ]
  27797. ))
  27798. characterMakers.push(() => makeCharacter(
  27799. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27800. {
  27801. front: {
  27802. height: math.unit(5 + 8 / 12, "feet"),
  27803. weight: math.unit(139, "lb"),
  27804. name: "Front",
  27805. image: {
  27806. source: "./media/characters/risa/front.svg",
  27807. extra: 270 / 260,
  27808. bottom: 11.2 / 282
  27809. }
  27810. },
  27811. back: {
  27812. height: math.unit(5 + 8 / 12, "feet"),
  27813. weight: math.unit(139, "lb"),
  27814. name: "Back",
  27815. image: {
  27816. source: "./media/characters/risa/back.svg",
  27817. extra: 264 / 255,
  27818. bottom: 4 / 268
  27819. }
  27820. },
  27821. },
  27822. [
  27823. {
  27824. name: "Normal",
  27825. height: math.unit(5 + 8 / 12, "feet"),
  27826. default: true
  27827. },
  27828. ]
  27829. ))
  27830. characterMakers.push(() => makeCharacter(
  27831. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27832. {
  27833. front: {
  27834. height: math.unit(2 + 11 / 12, "feet"),
  27835. weight: math.unit(30, "lb"),
  27836. name: "Front",
  27837. image: {
  27838. source: "./media/characters/weatley/front.svg",
  27839. bottom: 10.7 / 414,
  27840. extra: 403.5 / 362
  27841. }
  27842. },
  27843. back: {
  27844. height: math.unit(2 + 11 / 12, "feet"),
  27845. weight: math.unit(30, "lb"),
  27846. name: "Back",
  27847. image: {
  27848. source: "./media/characters/weatley/back.svg",
  27849. bottom: 10.7 / 414,
  27850. extra: 403.5 / 362
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Normal",
  27857. height: math.unit(2 + 11 / 12, "feet"),
  27858. default: true
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27864. {
  27865. front: {
  27866. height: math.unit(5 + 2 / 12, "feet"),
  27867. weight: math.unit(50, "kg"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/mercury-crescent/front.svg",
  27871. extra: 1088 / 1033,
  27872. bottom: 18.9 / 1109
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Normal",
  27879. height: math.unit(5 + 2 / 12, "feet"),
  27880. default: true
  27881. },
  27882. ]
  27883. ))
  27884. characterMakers.push(() => makeCharacter(
  27885. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27886. {
  27887. front: {
  27888. height: math.unit(2, "feet"),
  27889. weight: math.unit(15, "kg"),
  27890. name: "Front",
  27891. image: {
  27892. source: "./media/characters/diamond-jones/front.svg",
  27893. extra: 727/723,
  27894. bottom: 46/773
  27895. }
  27896. },
  27897. },
  27898. [
  27899. {
  27900. name: "Normal",
  27901. height: math.unit(2, "feet"),
  27902. default: true
  27903. },
  27904. ]
  27905. ))
  27906. characterMakers.push(() => makeCharacter(
  27907. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27908. {
  27909. front: {
  27910. height: math.unit(3, "feet"),
  27911. weight: math.unit(30, "kg"),
  27912. name: "Front",
  27913. image: {
  27914. source: "./media/characters/sweet-bit/front.svg",
  27915. extra: 675 / 567,
  27916. bottom: 27.7 / 703
  27917. }
  27918. },
  27919. },
  27920. [
  27921. {
  27922. name: "Normal",
  27923. height: math.unit(3, "feet"),
  27924. default: true
  27925. },
  27926. ]
  27927. ))
  27928. characterMakers.push(() => makeCharacter(
  27929. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27930. {
  27931. side: {
  27932. height: math.unit(9.178, "feet"),
  27933. weight: math.unit(500, "lb"),
  27934. name: "Side",
  27935. image: {
  27936. source: "./media/characters/umbrazen/side.svg",
  27937. extra: 1730 / 1473,
  27938. bottom: 34.6 / 1765
  27939. }
  27940. },
  27941. },
  27942. [
  27943. {
  27944. name: "Normal",
  27945. height: math.unit(9.178, "feet"),
  27946. default: true
  27947. },
  27948. ]
  27949. ))
  27950. characterMakers.push(() => makeCharacter(
  27951. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27952. {
  27953. front: {
  27954. height: math.unit(10, "feet"),
  27955. weight: math.unit(750, "lb"),
  27956. name: "Front",
  27957. image: {
  27958. source: "./media/characters/arlist/front.svg",
  27959. extra: 961 / 778,
  27960. bottom: 6.2 / 986
  27961. }
  27962. },
  27963. },
  27964. [
  27965. {
  27966. name: "Normal",
  27967. height: math.unit(10, "feet"),
  27968. default: true
  27969. },
  27970. ]
  27971. ))
  27972. characterMakers.push(() => makeCharacter(
  27973. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27974. {
  27975. front: {
  27976. height: math.unit(5 + 1 / 12, "feet"),
  27977. weight: math.unit(110, "lb"),
  27978. name: "Front",
  27979. image: {
  27980. source: "./media/characters/aradel/front.svg",
  27981. extra: 324 / 303,
  27982. bottom: 3.6 / 329.4
  27983. }
  27984. },
  27985. },
  27986. [
  27987. {
  27988. name: "Normal",
  27989. height: math.unit(5 + 1 / 12, "feet"),
  27990. default: true
  27991. },
  27992. ]
  27993. ))
  27994. characterMakers.push(() => makeCharacter(
  27995. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27996. {
  27997. dressed: {
  27998. height: math.unit(3 + 8 / 12, "feet"),
  27999. weight: math.unit(50, "lb"),
  28000. name: "Dressed",
  28001. image: {
  28002. source: "./media/characters/serryn/dressed.svg",
  28003. extra: 1792 / 1656,
  28004. bottom: 43.5 / 1840
  28005. }
  28006. },
  28007. nude: {
  28008. height: math.unit(3 + 8 / 12, "feet"),
  28009. weight: math.unit(50, "lb"),
  28010. name: "Nude",
  28011. image: {
  28012. source: "./media/characters/serryn/nude.svg",
  28013. extra: 1792 / 1656,
  28014. bottom: 43.5 / 1840
  28015. }
  28016. },
  28017. },
  28018. [
  28019. {
  28020. name: "Normal",
  28021. height: math.unit(3 + 8 / 12, "feet"),
  28022. default: true
  28023. },
  28024. ]
  28025. ))
  28026. characterMakers.push(() => makeCharacter(
  28027. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28028. {
  28029. front: {
  28030. height: math.unit(7 + 10 / 12, "feet"),
  28031. weight: math.unit(255, "lb"),
  28032. name: "Front",
  28033. image: {
  28034. source: "./media/characters/xavier-thyme/front.svg",
  28035. extra: 3733 / 3642,
  28036. bottom: 131 / 3869
  28037. }
  28038. },
  28039. frontRaven: {
  28040. height: math.unit(7 + 10 / 12, "feet"),
  28041. weight: math.unit(255, "lb"),
  28042. name: "Front (Raven)",
  28043. image: {
  28044. source: "./media/characters/xavier-thyme/front-raven.svg",
  28045. extra: 4385 / 3642,
  28046. bottom: 131 / 4517
  28047. }
  28048. },
  28049. },
  28050. [
  28051. {
  28052. name: "Normal",
  28053. height: math.unit(7 + 10 / 12, "feet"),
  28054. default: true
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28060. {
  28061. front: {
  28062. height: math.unit(1.6, "m"),
  28063. weight: math.unit(50, "kg"),
  28064. name: "Front",
  28065. image: {
  28066. source: "./media/characters/kiki/front.svg",
  28067. extra: 4682 / 3610,
  28068. bottom: 115 / 4777
  28069. }
  28070. },
  28071. },
  28072. [
  28073. {
  28074. name: "Normal",
  28075. height: math.unit(1.6, "meters"),
  28076. default: true
  28077. },
  28078. ]
  28079. ))
  28080. characterMakers.push(() => makeCharacter(
  28081. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28082. {
  28083. front: {
  28084. height: math.unit(50, "m"),
  28085. weight: math.unit(500, "tonnes"),
  28086. name: "Front",
  28087. image: {
  28088. source: "./media/characters/ryoko/front.svg",
  28089. extra: 4632 / 3926,
  28090. bottom: 193 / 4823
  28091. }
  28092. },
  28093. },
  28094. [
  28095. {
  28096. name: "Normal",
  28097. height: math.unit(50, "meters"),
  28098. default: true
  28099. },
  28100. ]
  28101. ))
  28102. characterMakers.push(() => makeCharacter(
  28103. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28104. {
  28105. front: {
  28106. height: math.unit(30, "m"),
  28107. weight: math.unit(22, "tonnes"),
  28108. name: "Front",
  28109. image: {
  28110. source: "./media/characters/elio/front.svg",
  28111. extra: 4582 / 3720,
  28112. bottom: 236 / 4828
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(30, "meters"),
  28120. default: true
  28121. },
  28122. ]
  28123. ))
  28124. characterMakers.push(() => makeCharacter(
  28125. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28126. {
  28127. front: {
  28128. height: math.unit(6 + 3 / 12, "feet"),
  28129. weight: math.unit(120, "lb"),
  28130. name: "Front",
  28131. image: {
  28132. source: "./media/characters/azura/front.svg",
  28133. extra: 1149 / 1135,
  28134. bottom: 45 / 1194
  28135. }
  28136. },
  28137. frontClothed: {
  28138. height: math.unit(6 + 3 / 12, "feet"),
  28139. weight: math.unit(120, "lb"),
  28140. name: "Front (Clothed)",
  28141. image: {
  28142. source: "./media/characters/azura/front-clothed.svg",
  28143. extra: 1149 / 1135,
  28144. bottom: 45 / 1194
  28145. }
  28146. },
  28147. },
  28148. [
  28149. {
  28150. name: "Normal",
  28151. height: math.unit(6 + 3 / 12, "feet"),
  28152. default: true
  28153. },
  28154. {
  28155. name: "Macro",
  28156. height: math.unit(20 + 6 / 12, "feet")
  28157. },
  28158. {
  28159. name: "Megamacro",
  28160. height: math.unit(12, "miles")
  28161. },
  28162. {
  28163. name: "Gigamacro",
  28164. height: math.unit(10000, "miles")
  28165. },
  28166. {
  28167. name: "Teramacro",
  28168. height: math.unit(900000, "miles")
  28169. },
  28170. ]
  28171. ))
  28172. characterMakers.push(() => makeCharacter(
  28173. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28174. {
  28175. front: {
  28176. height: math.unit(12, "feet"),
  28177. weight: math.unit(1, "ton"),
  28178. capacity: math.unit(660000, "gallons"),
  28179. name: "Front",
  28180. image: {
  28181. source: "./media/characters/zeus/front.svg",
  28182. extra: 5005 / 4717,
  28183. bottom: 363 / 5388
  28184. }
  28185. },
  28186. },
  28187. [
  28188. {
  28189. name: "Normal",
  28190. height: math.unit(12, "feet")
  28191. },
  28192. {
  28193. name: "Preferred Size",
  28194. height: math.unit(0.5, "miles"),
  28195. default: true
  28196. },
  28197. {
  28198. name: "Giga Horse",
  28199. height: math.unit(300, "miles")
  28200. },
  28201. {
  28202. name: "Riding Planets",
  28203. height: math.unit(30, "megameters")
  28204. },
  28205. {
  28206. name: "Cosmic Giant",
  28207. height: math.unit(3, "zettameters")
  28208. },
  28209. {
  28210. name: "Breeding God",
  28211. height: math.unit(9.92e22, "yottameters")
  28212. },
  28213. ]
  28214. ))
  28215. characterMakers.push(() => makeCharacter(
  28216. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28217. {
  28218. side: {
  28219. height: math.unit(9, "feet"),
  28220. weight: math.unit(1500, "kg"),
  28221. name: "Side",
  28222. image: {
  28223. source: "./media/characters/fang/side.svg",
  28224. extra: 924 / 866,
  28225. bottom: 47.5 / 972.3
  28226. }
  28227. },
  28228. },
  28229. [
  28230. {
  28231. name: "Normal",
  28232. height: math.unit(9, "feet"),
  28233. default: true
  28234. },
  28235. {
  28236. name: "Macro",
  28237. height: math.unit(75 + 6 / 12, "feet")
  28238. },
  28239. {
  28240. name: "Teramacro",
  28241. height: math.unit(50000, "miles")
  28242. },
  28243. ]
  28244. ))
  28245. characterMakers.push(() => makeCharacter(
  28246. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28247. {
  28248. front: {
  28249. height: math.unit(10, "feet"),
  28250. weight: math.unit(2, "tons"),
  28251. name: "Front",
  28252. image: {
  28253. source: "./media/characters/rekhit/front.svg",
  28254. extra: 2796 / 2590,
  28255. bottom: 225 / 3022
  28256. }
  28257. },
  28258. },
  28259. [
  28260. {
  28261. name: "Normal",
  28262. height: math.unit(10, "feet"),
  28263. default: true
  28264. },
  28265. {
  28266. name: "Macro",
  28267. height: math.unit(500, "feet")
  28268. },
  28269. ]
  28270. ))
  28271. characterMakers.push(() => makeCharacter(
  28272. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28273. {
  28274. front: {
  28275. height: math.unit(7 + 6.451 / 12, "feet"),
  28276. weight: math.unit(310, "lb"),
  28277. name: "Front",
  28278. image: {
  28279. source: "./media/characters/dahlia-verrick/front.svg",
  28280. extra: 1488 / 1365,
  28281. bottom: 6.2 / 1495
  28282. }
  28283. },
  28284. back: {
  28285. height: math.unit(7 + 6.451 / 12, "feet"),
  28286. weight: math.unit(310, "lb"),
  28287. name: "Back",
  28288. image: {
  28289. source: "./media/characters/dahlia-verrick/back.svg",
  28290. extra: 1472 / 1351,
  28291. bottom: 5.28 / 1477
  28292. }
  28293. },
  28294. frontBusiness: {
  28295. height: math.unit(7 + 6.451 / 12, "feet"),
  28296. weight: math.unit(200, "lb"),
  28297. name: "Front (Business)",
  28298. image: {
  28299. source: "./media/characters/dahlia-verrick/front-business.svg",
  28300. extra: 1478 / 1381,
  28301. bottom: 5.5 / 1484
  28302. }
  28303. },
  28304. frontCasual: {
  28305. height: math.unit(7 + 6.451 / 12, "feet"),
  28306. weight: math.unit(200, "lb"),
  28307. name: "Front (Casual)",
  28308. image: {
  28309. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28310. extra: 1478 / 1381,
  28311. bottom: 5.5 / 1484
  28312. }
  28313. },
  28314. },
  28315. [
  28316. {
  28317. name: "Travel-Sized",
  28318. height: math.unit(7.45, "inches")
  28319. },
  28320. {
  28321. name: "Normal",
  28322. height: math.unit(7 + 6.451 / 12, "feet"),
  28323. default: true
  28324. },
  28325. {
  28326. name: "Hitting the Town",
  28327. height: math.unit(37 + 8 / 12, "feet")
  28328. },
  28329. {
  28330. name: "Stomp in the Suburbs",
  28331. height: math.unit(964 + 9.728 / 12, "feet")
  28332. },
  28333. {
  28334. name: "Sit on the City",
  28335. height: math.unit(61747 + 10.592 / 12, "feet")
  28336. },
  28337. {
  28338. name: "Glomp the Globe",
  28339. height: math.unit(252919327 + 4.832 / 12, "feet")
  28340. },
  28341. ]
  28342. ))
  28343. characterMakers.push(() => makeCharacter(
  28344. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28345. {
  28346. front: {
  28347. height: math.unit(6 + 4 / 12, "feet"),
  28348. weight: math.unit(320, "lb"),
  28349. name: "Front",
  28350. image: {
  28351. source: "./media/characters/balina-mahigan/front.svg",
  28352. extra: 447 / 428,
  28353. bottom: 18 / 466
  28354. }
  28355. },
  28356. back: {
  28357. height: math.unit(6 + 4 / 12, "feet"),
  28358. weight: math.unit(320, "lb"),
  28359. name: "Back",
  28360. image: {
  28361. source: "./media/characters/balina-mahigan/back.svg",
  28362. extra: 445 / 428,
  28363. bottom: 4.07 / 448
  28364. }
  28365. },
  28366. arm: {
  28367. height: math.unit(1.88, "feet"),
  28368. name: "Arm",
  28369. image: {
  28370. source: "./media/characters/balina-mahigan/arm.svg"
  28371. }
  28372. },
  28373. backPort: {
  28374. height: math.unit(0.685, "feet"),
  28375. name: "Back Port",
  28376. image: {
  28377. source: "./media/characters/balina-mahigan/back-port.svg"
  28378. }
  28379. },
  28380. hoofpaw: {
  28381. height: math.unit(1.41, "feet"),
  28382. name: "Hoofpaw",
  28383. image: {
  28384. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28385. }
  28386. },
  28387. leftHandBack: {
  28388. height: math.unit(0.938, "feet"),
  28389. name: "Left Hand (Back)",
  28390. image: {
  28391. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28392. }
  28393. },
  28394. leftHandFront: {
  28395. height: math.unit(0.938, "feet"),
  28396. name: "Left Hand (Front)",
  28397. image: {
  28398. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28399. }
  28400. },
  28401. rightHandBack: {
  28402. height: math.unit(0.95, "feet"),
  28403. name: "Right Hand (Back)",
  28404. image: {
  28405. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28406. }
  28407. },
  28408. rightHandFront: {
  28409. height: math.unit(0.95, "feet"),
  28410. name: "Right Hand (Front)",
  28411. image: {
  28412. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28413. }
  28414. },
  28415. },
  28416. [
  28417. {
  28418. name: "Normal",
  28419. height: math.unit(6 + 4 / 12, "feet"),
  28420. default: true
  28421. },
  28422. ]
  28423. ))
  28424. characterMakers.push(() => makeCharacter(
  28425. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28426. {
  28427. front: {
  28428. height: math.unit(6, "feet"),
  28429. weight: math.unit(320, "lb"),
  28430. name: "Front",
  28431. image: {
  28432. source: "./media/characters/balina-mejeri/front.svg",
  28433. extra: 517 / 488,
  28434. bottom: 44.2 / 561
  28435. }
  28436. },
  28437. },
  28438. [
  28439. {
  28440. name: "Normal",
  28441. height: math.unit(6 + 4 / 12, "feet")
  28442. },
  28443. {
  28444. name: "Business",
  28445. height: math.unit(155, "feet"),
  28446. default: true
  28447. },
  28448. ]
  28449. ))
  28450. characterMakers.push(() => makeCharacter(
  28451. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28452. {
  28453. kneeling: {
  28454. height: math.unit(6 + 4 / 12, "feet"),
  28455. weight: math.unit(300 * 20, "lb"),
  28456. name: "Kneeling",
  28457. image: {
  28458. source: "./media/characters/balbarian/kneeling.svg",
  28459. extra: 922 / 862,
  28460. bottom: 42.4 / 965
  28461. }
  28462. },
  28463. },
  28464. [
  28465. {
  28466. name: "Normal",
  28467. height: math.unit(6 + 4 / 12, "feet")
  28468. },
  28469. {
  28470. name: "Treasured",
  28471. height: math.unit(18 + 9 / 12, "feet"),
  28472. default: true
  28473. },
  28474. {
  28475. name: "Macro",
  28476. height: math.unit(900, "feet")
  28477. },
  28478. ]
  28479. ))
  28480. characterMakers.push(() => makeCharacter(
  28481. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28482. {
  28483. front: {
  28484. height: math.unit(6 + 4 / 12, "feet"),
  28485. weight: math.unit(325, "lb"),
  28486. name: "Front",
  28487. image: {
  28488. source: "./media/characters/balina-amarini/front.svg",
  28489. extra: 415 / 403,
  28490. bottom: 19 / 433.4
  28491. }
  28492. },
  28493. back: {
  28494. height: math.unit(6 + 4 / 12, "feet"),
  28495. weight: math.unit(325, "lb"),
  28496. name: "Back",
  28497. image: {
  28498. source: "./media/characters/balina-amarini/back.svg",
  28499. extra: 415 / 403,
  28500. bottom: 13.5 / 432
  28501. }
  28502. },
  28503. overdrive: {
  28504. height: math.unit(6 + 4 / 12, "feet"),
  28505. weight: math.unit(400, "lb"),
  28506. name: "Overdrive",
  28507. image: {
  28508. source: "./media/characters/balina-amarini/overdrive.svg",
  28509. extra: 269 / 259,
  28510. bottom: 12 / 282
  28511. }
  28512. },
  28513. },
  28514. [
  28515. {
  28516. name: "Boom",
  28517. height: math.unit(9 + 10 / 12, "feet"),
  28518. default: true
  28519. },
  28520. {
  28521. name: "Macro",
  28522. height: math.unit(280, "feet")
  28523. },
  28524. ]
  28525. ))
  28526. characterMakers.push(() => makeCharacter(
  28527. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28528. {
  28529. goddess: {
  28530. height: math.unit(600, "feet"),
  28531. weight: math.unit(2000000, "tons"),
  28532. name: "Goddess",
  28533. image: {
  28534. source: "./media/characters/lady-kubwa/goddess.svg",
  28535. extra: 1240.5 / 1223,
  28536. bottom: 22 / 1263
  28537. }
  28538. },
  28539. goddesser: {
  28540. height: math.unit(900, "feet"),
  28541. weight: math.unit(20000000, "lb"),
  28542. name: "Goddess-er",
  28543. image: {
  28544. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28545. extra: 899 / 888,
  28546. bottom: 12.6 / 912
  28547. }
  28548. },
  28549. },
  28550. [
  28551. {
  28552. name: "Macro",
  28553. height: math.unit(600, "feet"),
  28554. default: true
  28555. },
  28556. {
  28557. name: "Megamacro",
  28558. height: math.unit(250, "miles")
  28559. },
  28560. ]
  28561. ))
  28562. characterMakers.push(() => makeCharacter(
  28563. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28564. {
  28565. front: {
  28566. height: math.unit(7 + 7 / 12, "feet"),
  28567. weight: math.unit(250, "lb"),
  28568. name: "Front",
  28569. image: {
  28570. source: "./media/characters/tala-grovehorn/front.svg",
  28571. extra: 2636 / 2525,
  28572. bottom: 147 / 2781
  28573. }
  28574. },
  28575. back: {
  28576. height: math.unit(7 + 7 / 12, "feet"),
  28577. weight: math.unit(250, "lb"),
  28578. name: "Back",
  28579. image: {
  28580. source: "./media/characters/tala-grovehorn/back.svg",
  28581. extra: 2635 / 2539,
  28582. bottom: 100 / 2732.8
  28583. }
  28584. },
  28585. mouth: {
  28586. height: math.unit(1.15, "feet"),
  28587. name: "Mouth",
  28588. image: {
  28589. source: "./media/characters/tala-grovehorn/mouth.svg"
  28590. }
  28591. },
  28592. dick: {
  28593. height: math.unit(2.36, "feet"),
  28594. name: "Dick",
  28595. image: {
  28596. source: "./media/characters/tala-grovehorn/dick.svg"
  28597. }
  28598. },
  28599. slit: {
  28600. height: math.unit(0.61, "feet"),
  28601. name: "Slit",
  28602. image: {
  28603. source: "./media/characters/tala-grovehorn/slit.svg"
  28604. }
  28605. },
  28606. },
  28607. [
  28608. ]
  28609. ))
  28610. characterMakers.push(() => makeCharacter(
  28611. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28612. {
  28613. front: {
  28614. height: math.unit(7 + 7 / 12, "feet"),
  28615. weight: math.unit(225, "lb"),
  28616. name: "Front",
  28617. image: {
  28618. source: "./media/characters/epona/front.svg",
  28619. extra: 2445 / 2290,
  28620. bottom: 251 / 2696
  28621. }
  28622. },
  28623. back: {
  28624. height: math.unit(7 + 7 / 12, "feet"),
  28625. weight: math.unit(225, "lb"),
  28626. name: "Back",
  28627. image: {
  28628. source: "./media/characters/epona/back.svg",
  28629. extra: 2546 / 2408,
  28630. bottom: 44 / 2589
  28631. }
  28632. },
  28633. genitals: {
  28634. height: math.unit(1.5, "feet"),
  28635. name: "Genitals",
  28636. image: {
  28637. source: "./media/characters/epona/genitals.svg"
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Normal",
  28644. height: math.unit(7 + 7 / 12, "feet"),
  28645. default: true
  28646. },
  28647. ]
  28648. ))
  28649. characterMakers.push(() => makeCharacter(
  28650. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28651. {
  28652. front: {
  28653. height: math.unit(7, "feet"),
  28654. weight: math.unit(518, "lb"),
  28655. name: "Front",
  28656. image: {
  28657. source: "./media/characters/avia-bloodbourn/front.svg",
  28658. extra: 1466 / 1350,
  28659. bottom: 65 / 1527
  28660. }
  28661. },
  28662. },
  28663. [
  28664. ]
  28665. ))
  28666. characterMakers.push(() => makeCharacter(
  28667. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28668. {
  28669. front: {
  28670. height: math.unit(9.35, "feet"),
  28671. weight: math.unit(600, "lb"),
  28672. name: "Front",
  28673. image: {
  28674. source: "./media/characters/amera/front.svg",
  28675. extra: 891 / 818,
  28676. bottom: 30 / 922.7
  28677. }
  28678. },
  28679. back: {
  28680. height: math.unit(9.35, "feet"),
  28681. weight: math.unit(600, "lb"),
  28682. name: "Back",
  28683. image: {
  28684. source: "./media/characters/amera/back.svg",
  28685. extra: 876 / 824,
  28686. bottom: 6.8 / 884
  28687. }
  28688. },
  28689. dick: {
  28690. height: math.unit(2.14, "feet"),
  28691. name: "Dick",
  28692. image: {
  28693. source: "./media/characters/amera/dick.svg"
  28694. }
  28695. },
  28696. },
  28697. [
  28698. {
  28699. name: "Normal",
  28700. height: math.unit(9.35, "feet"),
  28701. default: true
  28702. },
  28703. ]
  28704. ))
  28705. characterMakers.push(() => makeCharacter(
  28706. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28707. {
  28708. kneeling: {
  28709. height: math.unit(3 + 4 / 12, "feet"),
  28710. weight: math.unit(90, "lb"),
  28711. name: "Kneeling",
  28712. image: {
  28713. source: "./media/characters/rosewen/kneeling.svg",
  28714. extra: 1835 / 1571,
  28715. bottom: 27.7 / 1862
  28716. }
  28717. },
  28718. },
  28719. [
  28720. {
  28721. name: "Normal",
  28722. height: math.unit(3 + 4 / 12, "feet"),
  28723. default: true
  28724. },
  28725. ]
  28726. ))
  28727. characterMakers.push(() => makeCharacter(
  28728. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28729. {
  28730. front: {
  28731. height: math.unit(5 + 10 / 12, "feet"),
  28732. weight: math.unit(200, "lb"),
  28733. name: "Front",
  28734. image: {
  28735. source: "./media/characters/sabah/front.svg",
  28736. extra: 849 / 763,
  28737. bottom: 33.9 / 881
  28738. }
  28739. },
  28740. },
  28741. [
  28742. {
  28743. name: "Normal",
  28744. height: math.unit(5 + 10 / 12, "feet"),
  28745. default: true
  28746. },
  28747. ]
  28748. ))
  28749. characterMakers.push(() => makeCharacter(
  28750. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28751. {
  28752. front: {
  28753. height: math.unit(3 + 5 / 12, "feet"),
  28754. weight: math.unit(40, "kg"),
  28755. name: "Front",
  28756. image: {
  28757. source: "./media/characters/purple-flame/front.svg",
  28758. extra: 1577 / 1412,
  28759. bottom: 97 / 1694
  28760. }
  28761. },
  28762. frontDressed: {
  28763. height: math.unit(3 + 5 / 12, "feet"),
  28764. weight: math.unit(40, "kg"),
  28765. name: "Front (Dressed)",
  28766. image: {
  28767. source: "./media/characters/purple-flame/front-dressed.svg",
  28768. extra: 1577 / 1412,
  28769. bottom: 97 / 1694
  28770. }
  28771. },
  28772. headphones: {
  28773. height: math.unit(0.85, "feet"),
  28774. name: "Headphones",
  28775. image: {
  28776. source: "./media/characters/purple-flame/headphones.svg"
  28777. }
  28778. },
  28779. },
  28780. [
  28781. {
  28782. name: "Really Small",
  28783. height: math.unit(5, "cm")
  28784. },
  28785. {
  28786. name: "Micro",
  28787. height: math.unit(1 + 5 / 12, "feet")
  28788. },
  28789. {
  28790. name: "Normal",
  28791. height: math.unit(3 + 5 / 12, "feet"),
  28792. default: true
  28793. },
  28794. {
  28795. name: "Minimacro",
  28796. height: math.unit(125, "feet")
  28797. },
  28798. {
  28799. name: "Macro",
  28800. height: math.unit(0.5, "miles")
  28801. },
  28802. {
  28803. name: "Megamacro",
  28804. height: math.unit(50, "miles")
  28805. },
  28806. {
  28807. name: "Gigantic",
  28808. height: math.unit(750, "miles")
  28809. },
  28810. {
  28811. name: "Planetary",
  28812. height: math.unit(15000, "miles")
  28813. },
  28814. ]
  28815. ))
  28816. characterMakers.push(() => makeCharacter(
  28817. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28818. {
  28819. front: {
  28820. height: math.unit(14, "feet"),
  28821. weight: math.unit(959, "lb"),
  28822. name: "Front",
  28823. image: {
  28824. source: "./media/characters/arsenal/front.svg",
  28825. extra: 2357 / 2157,
  28826. bottom: 93 / 2458
  28827. }
  28828. },
  28829. },
  28830. [
  28831. {
  28832. name: "Normal",
  28833. height: math.unit(14, "feet"),
  28834. default: true
  28835. },
  28836. ]
  28837. ))
  28838. characterMakers.push(() => makeCharacter(
  28839. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28840. {
  28841. front: {
  28842. height: math.unit(6, "feet"),
  28843. weight: math.unit(150, "lb"),
  28844. name: "Front",
  28845. image: {
  28846. source: "./media/characters/adira/front.svg",
  28847. extra: 1078 / 1029,
  28848. bottom: 87 / 1166
  28849. }
  28850. },
  28851. },
  28852. [
  28853. {
  28854. name: "Micro",
  28855. height: math.unit(4, "inches"),
  28856. default: true
  28857. },
  28858. {
  28859. name: "Macro",
  28860. height: math.unit(50, "feet")
  28861. },
  28862. ]
  28863. ))
  28864. characterMakers.push(() => makeCharacter(
  28865. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28866. {
  28867. front: {
  28868. height: math.unit(16, "feet"),
  28869. weight: math.unit(1000, "lb"),
  28870. name: "Front",
  28871. image: {
  28872. source: "./media/characters/grim/front.svg",
  28873. extra: 622 / 614,
  28874. bottom: 18.1 / 642
  28875. }
  28876. },
  28877. back: {
  28878. height: math.unit(16, "feet"),
  28879. weight: math.unit(1000, "lb"),
  28880. name: "Back",
  28881. image: {
  28882. source: "./media/characters/grim/back.svg",
  28883. extra: 610.6 / 602,
  28884. bottom: 40.8 / 652
  28885. }
  28886. },
  28887. hunched: {
  28888. height: math.unit(9.75, "feet"),
  28889. weight: math.unit(1000, "lb"),
  28890. name: "Hunched",
  28891. image: {
  28892. source: "./media/characters/grim/hunched.svg",
  28893. extra: 304 / 297,
  28894. bottom: 35.4 / 394
  28895. }
  28896. },
  28897. },
  28898. [
  28899. {
  28900. name: "Normal",
  28901. height: math.unit(16, "feet"),
  28902. default: true
  28903. },
  28904. ]
  28905. ))
  28906. characterMakers.push(() => makeCharacter(
  28907. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28908. {
  28909. front: {
  28910. height: math.unit(2.3, "meters"),
  28911. weight: math.unit(300, "lb"),
  28912. name: "Front",
  28913. image: {
  28914. source: "./media/characters/sinja/front-sfw.svg",
  28915. extra: 1393 / 1294,
  28916. bottom: 70 / 1463
  28917. }
  28918. },
  28919. frontNsfw: {
  28920. height: math.unit(2.3, "meters"),
  28921. weight: math.unit(300, "lb"),
  28922. name: "Front (NSFW)",
  28923. image: {
  28924. source: "./media/characters/sinja/front-nsfw.svg",
  28925. extra: 1393 / 1294,
  28926. bottom: 70 / 1463
  28927. }
  28928. },
  28929. back: {
  28930. height: math.unit(2.3, "meters"),
  28931. weight: math.unit(300, "lb"),
  28932. name: "Back",
  28933. image: {
  28934. source: "./media/characters/sinja/back.svg",
  28935. extra: 1393 / 1294,
  28936. bottom: 70 / 1463
  28937. }
  28938. },
  28939. head: {
  28940. height: math.unit(1.771, "feet"),
  28941. name: "Head",
  28942. image: {
  28943. source: "./media/characters/sinja/head.svg"
  28944. }
  28945. },
  28946. slit: {
  28947. height: math.unit(0.8, "feet"),
  28948. name: "Slit",
  28949. image: {
  28950. source: "./media/characters/sinja/slit.svg"
  28951. }
  28952. },
  28953. },
  28954. [
  28955. {
  28956. name: "Normal",
  28957. height: math.unit(2.3, "meters")
  28958. },
  28959. {
  28960. name: "Macro",
  28961. height: math.unit(91, "meters"),
  28962. default: true
  28963. },
  28964. {
  28965. name: "Megamacro",
  28966. height: math.unit(91440, "meters")
  28967. },
  28968. {
  28969. name: "Gigamacro",
  28970. height: math.unit(60960000, "meters")
  28971. },
  28972. {
  28973. name: "Teramacro",
  28974. height: math.unit(9144000000, "meters")
  28975. },
  28976. ]
  28977. ))
  28978. characterMakers.push(() => makeCharacter(
  28979. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28980. {
  28981. front: {
  28982. height: math.unit(1.7, "meters"),
  28983. weight: math.unit(130, "lb"),
  28984. name: "Front",
  28985. image: {
  28986. source: "./media/characters/kyu/front.svg",
  28987. extra: 415 / 395,
  28988. bottom: 5 / 420
  28989. }
  28990. },
  28991. head: {
  28992. height: math.unit(1.75, "feet"),
  28993. name: "Head",
  28994. image: {
  28995. source: "./media/characters/kyu/head.svg"
  28996. }
  28997. },
  28998. foot: {
  28999. height: math.unit(0.81, "feet"),
  29000. name: "Foot",
  29001. image: {
  29002. source: "./media/characters/kyu/foot.svg"
  29003. }
  29004. },
  29005. },
  29006. [
  29007. {
  29008. name: "Normal",
  29009. height: math.unit(1.7, "meters")
  29010. },
  29011. {
  29012. name: "Macro",
  29013. height: math.unit(131, "feet"),
  29014. default: true
  29015. },
  29016. {
  29017. name: "Megamacro",
  29018. height: math.unit(91440, "meters")
  29019. },
  29020. {
  29021. name: "Gigamacro",
  29022. height: math.unit(60960000, "meters")
  29023. },
  29024. {
  29025. name: "Teramacro",
  29026. height: math.unit(9144000000, "meters")
  29027. },
  29028. ]
  29029. ))
  29030. characterMakers.push(() => makeCharacter(
  29031. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29032. {
  29033. front: {
  29034. height: math.unit(7 + 1 / 12, "feet"),
  29035. weight: math.unit(250, "lb"),
  29036. name: "Front",
  29037. image: {
  29038. source: "./media/characters/joey/front.svg",
  29039. extra: 1791 / 1537,
  29040. bottom: 28 / 1816
  29041. }
  29042. },
  29043. },
  29044. [
  29045. {
  29046. name: "Micro",
  29047. height: math.unit(3, "inches")
  29048. },
  29049. {
  29050. name: "Normal",
  29051. height: math.unit(7 + 1 / 12, "feet"),
  29052. default: true
  29053. },
  29054. ]
  29055. ))
  29056. characterMakers.push(() => makeCharacter(
  29057. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29058. {
  29059. front: {
  29060. height: math.unit(165, "cm"),
  29061. weight: math.unit(140, "lb"),
  29062. name: "Front",
  29063. image: {
  29064. source: "./media/characters/sam-evans/front.svg",
  29065. extra: 3417 / 3230,
  29066. bottom: 41.3 / 3417
  29067. }
  29068. },
  29069. frontSixTails: {
  29070. height: math.unit(165, "cm"),
  29071. weight: math.unit(140, "lb"),
  29072. name: "Front-six-tails",
  29073. image: {
  29074. source: "./media/characters/sam-evans/front-six-tails.svg",
  29075. extra: 3417 / 3230,
  29076. bottom: 41.3 / 3417
  29077. }
  29078. },
  29079. back: {
  29080. height: math.unit(165, "cm"),
  29081. weight: math.unit(140, "lb"),
  29082. name: "Back",
  29083. image: {
  29084. source: "./media/characters/sam-evans/back.svg",
  29085. extra: 3227 / 3032,
  29086. bottom: 6.8 / 3234
  29087. }
  29088. },
  29089. face: {
  29090. height: math.unit(0.68, "feet"),
  29091. name: "Face",
  29092. image: {
  29093. source: "./media/characters/sam-evans/face.svg"
  29094. }
  29095. },
  29096. },
  29097. [
  29098. {
  29099. name: "Normal",
  29100. height: math.unit(165, "cm"),
  29101. default: true
  29102. },
  29103. {
  29104. name: "Macro",
  29105. height: math.unit(100, "meters")
  29106. },
  29107. {
  29108. name: "Macro+",
  29109. height: math.unit(800, "meters")
  29110. },
  29111. {
  29112. name: "Macro++",
  29113. height: math.unit(3, "km")
  29114. },
  29115. {
  29116. name: "Macro+++",
  29117. height: math.unit(30, "km")
  29118. },
  29119. ]
  29120. ))
  29121. characterMakers.push(() => makeCharacter(
  29122. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29123. {
  29124. front: {
  29125. height: math.unit(10, "feet"),
  29126. weight: math.unit(750, "lb"),
  29127. name: "Front",
  29128. image: {
  29129. source: "./media/characters/juliet-a/front.svg",
  29130. extra: 1766 / 1720,
  29131. bottom: 43 / 1809
  29132. }
  29133. },
  29134. back: {
  29135. height: math.unit(10, "feet"),
  29136. weight: math.unit(750, "lb"),
  29137. name: "Back",
  29138. image: {
  29139. source: "./media/characters/juliet-a/back.svg",
  29140. extra: 1781 / 1734,
  29141. bottom: 35 / 1810,
  29142. }
  29143. },
  29144. },
  29145. [
  29146. {
  29147. name: "Normal",
  29148. height: math.unit(10, "feet"),
  29149. default: true
  29150. },
  29151. {
  29152. name: "Dragon Form",
  29153. height: math.unit(250, "feet")
  29154. },
  29155. {
  29156. name: "Macro",
  29157. height: math.unit(1000, "feet")
  29158. },
  29159. {
  29160. name: "Megamacro",
  29161. height: math.unit(10000, "feet")
  29162. }
  29163. ]
  29164. ))
  29165. characterMakers.push(() => makeCharacter(
  29166. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29167. {
  29168. regular: {
  29169. height: math.unit(7 + 3 / 12, "feet"),
  29170. weight: math.unit(260, "lb"),
  29171. name: "Regular",
  29172. image: {
  29173. source: "./media/characters/wild/regular.svg",
  29174. extra: 97.45 / 92,
  29175. bottom: 6.8 / 104.3
  29176. }
  29177. },
  29178. biggums: {
  29179. height: math.unit(8 + 6 / 12, "feet"),
  29180. weight: math.unit(425, "lb"),
  29181. name: "Biggums",
  29182. image: {
  29183. source: "./media/characters/wild/biggums.svg",
  29184. extra: 97.45 / 92,
  29185. bottom: 7.5 / 132.34
  29186. }
  29187. },
  29188. mawRegular: {
  29189. height: math.unit(1.24, "feet"),
  29190. name: "Maw (Regular)",
  29191. image: {
  29192. source: "./media/characters/wild/maw.svg"
  29193. }
  29194. },
  29195. mawBiggums: {
  29196. height: math.unit(1.47, "feet"),
  29197. name: "Maw (Biggums)",
  29198. image: {
  29199. source: "./media/characters/wild/maw.svg"
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Normal",
  29206. height: math.unit(7 + 3 / 12, "feet"),
  29207. default: true
  29208. },
  29209. ]
  29210. ))
  29211. characterMakers.push(() => makeCharacter(
  29212. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29213. {
  29214. front: {
  29215. height: math.unit(2.5, "meters"),
  29216. weight: math.unit(200, "kg"),
  29217. name: "Front",
  29218. image: {
  29219. source: "./media/characters/vidar/front.svg",
  29220. extra: 2994 / 2795,
  29221. bottom: 56 / 3061
  29222. }
  29223. },
  29224. back: {
  29225. height: math.unit(2.5, "meters"),
  29226. weight: math.unit(200, "kg"),
  29227. name: "Back",
  29228. image: {
  29229. source: "./media/characters/vidar/back.svg",
  29230. extra: 3131 / 2928,
  29231. bottom: 13.5 / 3141.5
  29232. }
  29233. },
  29234. feral: {
  29235. height: math.unit(2.5, "meters"),
  29236. weight: math.unit(2000, "kg"),
  29237. name: "Feral",
  29238. image: {
  29239. source: "./media/characters/vidar/feral.svg",
  29240. extra: 2790 / 1765,
  29241. bottom: 6 / 2796
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Normal",
  29248. height: math.unit(2.5, "meters"),
  29249. default: true
  29250. },
  29251. {
  29252. name: "Macro",
  29253. height: math.unit(100, "meters")
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(5 + 9 / 12, "feet"),
  29262. weight: math.unit(120, "lb"),
  29263. name: "Front",
  29264. image: {
  29265. source: "./media/characters/ash/front.svg",
  29266. extra: 2189 / 1961,
  29267. bottom: 5.2 / 2194
  29268. }
  29269. },
  29270. },
  29271. [
  29272. {
  29273. name: "Normal",
  29274. height: math.unit(5 + 9 / 12, "feet"),
  29275. default: true
  29276. },
  29277. ]
  29278. ))
  29279. characterMakers.push(() => makeCharacter(
  29280. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29281. {
  29282. front: {
  29283. height: math.unit(9, "feet"),
  29284. weight: math.unit(10000, "lb"),
  29285. name: "Front",
  29286. image: {
  29287. source: "./media/characters/gygabite/front.svg",
  29288. bottom: 31.7 / 537.8,
  29289. extra: 505 / 370
  29290. }
  29291. },
  29292. },
  29293. [
  29294. {
  29295. name: "Normal",
  29296. height: math.unit(9, "feet"),
  29297. default: true
  29298. },
  29299. ]
  29300. ))
  29301. characterMakers.push(() => makeCharacter(
  29302. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29303. {
  29304. front: {
  29305. height: math.unit(12, "feet"),
  29306. weight: math.unit(4000, "lb"),
  29307. name: "Front",
  29308. image: {
  29309. source: "./media/characters/p0tat0/front.svg",
  29310. extra: 1065 / 921,
  29311. bottom: 55.7 / 1121.25
  29312. }
  29313. },
  29314. },
  29315. [
  29316. {
  29317. name: "Normal",
  29318. height: math.unit(12, "feet"),
  29319. default: true
  29320. },
  29321. ]
  29322. ))
  29323. characterMakers.push(() => makeCharacter(
  29324. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29325. {
  29326. side: {
  29327. height: math.unit(6.5, "feet"),
  29328. weight: math.unit(800, "lb"),
  29329. name: "Side",
  29330. image: {
  29331. source: "./media/characters/dusk/side.svg",
  29332. extra: 615 / 373,
  29333. bottom: 53 / 664
  29334. }
  29335. },
  29336. sitting: {
  29337. height: math.unit(7, "feet"),
  29338. weight: math.unit(800, "lb"),
  29339. name: "Sitting",
  29340. image: {
  29341. source: "./media/characters/dusk/sitting.svg",
  29342. extra: 753 / 425,
  29343. bottom: 33 / 774
  29344. }
  29345. },
  29346. head: {
  29347. height: math.unit(6.1, "feet"),
  29348. name: "Head",
  29349. image: {
  29350. source: "./media/characters/dusk/head.svg"
  29351. }
  29352. },
  29353. },
  29354. [
  29355. {
  29356. name: "Normal",
  29357. height: math.unit(7, "feet"),
  29358. default: true
  29359. },
  29360. ]
  29361. ))
  29362. characterMakers.push(() => makeCharacter(
  29363. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29364. {
  29365. front: {
  29366. height: math.unit(15, "feet"),
  29367. weight: math.unit(7000, "lb"),
  29368. name: "Front",
  29369. image: {
  29370. source: "./media/characters/jay-direwolf/front.svg",
  29371. extra: 1810 / 1732,
  29372. bottom: 66 / 1892
  29373. }
  29374. },
  29375. },
  29376. [
  29377. {
  29378. name: "Normal",
  29379. height: math.unit(15, "feet"),
  29380. default: true
  29381. },
  29382. ]
  29383. ))
  29384. characterMakers.push(() => makeCharacter(
  29385. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29386. {
  29387. front: {
  29388. height: math.unit(4 + 9 / 12, "feet"),
  29389. weight: math.unit(130, "lb"),
  29390. name: "Front",
  29391. image: {
  29392. source: "./media/characters/anchovie/front.svg",
  29393. extra: 382 / 350,
  29394. bottom: 25 / 409
  29395. }
  29396. },
  29397. back: {
  29398. height: math.unit(4 + 9 / 12, "feet"),
  29399. weight: math.unit(130, "lb"),
  29400. name: "Back",
  29401. image: {
  29402. source: "./media/characters/anchovie/back.svg",
  29403. extra: 385 / 352,
  29404. bottom: 16.6 / 402
  29405. }
  29406. },
  29407. frontDressed: {
  29408. height: math.unit(4 + 9 / 12, "feet"),
  29409. weight: math.unit(130, "lb"),
  29410. name: "Front (Dressed)",
  29411. image: {
  29412. source: "./media/characters/anchovie/front-dressed.svg",
  29413. extra: 382 / 350,
  29414. bottom: 25 / 409
  29415. }
  29416. },
  29417. backDressed: {
  29418. height: math.unit(4 + 9 / 12, "feet"),
  29419. weight: math.unit(130, "lb"),
  29420. name: "Back (Dressed)",
  29421. image: {
  29422. source: "./media/characters/anchovie/back-dressed.svg",
  29423. extra: 385 / 352,
  29424. bottom: 16.6 / 402
  29425. }
  29426. },
  29427. },
  29428. [
  29429. {
  29430. name: "Micro",
  29431. height: math.unit(6.4, "inches")
  29432. },
  29433. {
  29434. name: "Normal",
  29435. height: math.unit(4 + 9 / 12, "feet"),
  29436. default: true
  29437. },
  29438. ]
  29439. ))
  29440. characterMakers.push(() => makeCharacter(
  29441. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29442. {
  29443. front: {
  29444. height: math.unit(2, "meters"),
  29445. weight: math.unit(180, "lb"),
  29446. name: "Front",
  29447. image: {
  29448. source: "./media/characters/acidrenamon/front.svg",
  29449. extra: 987 / 890,
  29450. bottom: 22.8 / 1009
  29451. }
  29452. },
  29453. back: {
  29454. height: math.unit(2, "meters"),
  29455. weight: math.unit(180, "lb"),
  29456. name: "Back",
  29457. image: {
  29458. source: "./media/characters/acidrenamon/back.svg",
  29459. extra: 983 / 891,
  29460. bottom: 8.4 / 992
  29461. }
  29462. },
  29463. head: {
  29464. height: math.unit(1.92, "feet"),
  29465. name: "Head",
  29466. image: {
  29467. source: "./media/characters/acidrenamon/head.svg"
  29468. }
  29469. },
  29470. rump: {
  29471. height: math.unit(1.72, "feet"),
  29472. name: "Rump",
  29473. image: {
  29474. source: "./media/characters/acidrenamon/rump.svg"
  29475. }
  29476. },
  29477. tail: {
  29478. height: math.unit(4.2, "feet"),
  29479. name: "Tail",
  29480. image: {
  29481. source: "./media/characters/acidrenamon/tail.svg"
  29482. }
  29483. },
  29484. },
  29485. [
  29486. {
  29487. name: "Normal",
  29488. height: math.unit(2, "meters"),
  29489. default: true
  29490. },
  29491. {
  29492. name: "Minimacro",
  29493. height: math.unit(7, "meters")
  29494. },
  29495. {
  29496. name: "Macro",
  29497. height: math.unit(200, "meters")
  29498. },
  29499. {
  29500. name: "Gigamacro",
  29501. height: math.unit(0.2, "earths")
  29502. },
  29503. ]
  29504. ))
  29505. characterMakers.push(() => makeCharacter(
  29506. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29507. {
  29508. front: {
  29509. height: math.unit(152, "feet"),
  29510. name: "Front",
  29511. image: {
  29512. source: "./media/characters/kenzie-lee/front.svg",
  29513. extra: 1869/1774,
  29514. bottom: 128/1997
  29515. }
  29516. },
  29517. side: {
  29518. height: math.unit(86, "feet"),
  29519. name: "Side",
  29520. image: {
  29521. source: "./media/characters/kenzie-lee/side.svg",
  29522. extra: 930/815,
  29523. bottom: 177/1107
  29524. }
  29525. },
  29526. paw: {
  29527. height: math.unit(15, "feet"),
  29528. name: "Paw",
  29529. image: {
  29530. source: "./media/characters/kenzie-lee/paw.svg"
  29531. }
  29532. },
  29533. },
  29534. [
  29535. {
  29536. name: "Kenzie Flea",
  29537. height: math.unit(2, "mm"),
  29538. default: true
  29539. },
  29540. {
  29541. name: "Micro",
  29542. height: math.unit(2, "inches")
  29543. },
  29544. {
  29545. name: "Normal",
  29546. height: math.unit(152, "feet")
  29547. },
  29548. {
  29549. name: "Megamacro",
  29550. height: math.unit(7, "miles")
  29551. },
  29552. {
  29553. name: "Gigamacro",
  29554. height: math.unit(8000, "miles")
  29555. },
  29556. ]
  29557. ))
  29558. characterMakers.push(() => makeCharacter(
  29559. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29560. {
  29561. front: {
  29562. height: math.unit(6, "feet"),
  29563. name: "Front",
  29564. image: {
  29565. source: "./media/characters/withers/front.svg",
  29566. extra: 1935/1760,
  29567. bottom: 72/2007
  29568. }
  29569. },
  29570. back: {
  29571. height: math.unit(6, "feet"),
  29572. name: "Back",
  29573. image: {
  29574. source: "./media/characters/withers/back.svg",
  29575. extra: 1944/1792,
  29576. bottom: 12/1956
  29577. }
  29578. },
  29579. dressed: {
  29580. height: math.unit(6, "feet"),
  29581. name: "Dressed",
  29582. image: {
  29583. source: "./media/characters/withers/dressed.svg",
  29584. extra: 1937/1765,
  29585. bottom: 73/2010
  29586. }
  29587. },
  29588. phase1: {
  29589. height: math.unit(1.1, "feet"),
  29590. name: "Phase 1",
  29591. image: {
  29592. source: "./media/characters/withers/phase-1.svg",
  29593. extra: 1885/1232,
  29594. bottom: 0/1885
  29595. }
  29596. },
  29597. phase2: {
  29598. height: math.unit(1.05, "feet"),
  29599. name: "Phase 2",
  29600. image: {
  29601. source: "./media/characters/withers/phase-2.svg",
  29602. extra: 1792/1090,
  29603. bottom: 0/1792
  29604. }
  29605. },
  29606. partyWipe: {
  29607. height: math.unit(1.1, "feet"),
  29608. name: "Party Wipe",
  29609. image: {
  29610. source: "./media/characters/withers/party-wipe.svg",
  29611. extra: 1864/1207,
  29612. bottom: 0/1864
  29613. }
  29614. },
  29615. },
  29616. [
  29617. {
  29618. name: "Macro",
  29619. height: math.unit(167, "feet"),
  29620. default: true
  29621. },
  29622. {
  29623. name: "Megamacro",
  29624. height: math.unit(15, "miles")
  29625. }
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29630. {
  29631. front: {
  29632. height: math.unit(6 + 7 / 12, "feet"),
  29633. weight: math.unit(250, "lb"),
  29634. name: "Front",
  29635. image: {
  29636. source: "./media/characters/nemoskii/front.svg",
  29637. extra: 2270 / 1734,
  29638. bottom: 86 / 2354
  29639. }
  29640. },
  29641. back: {
  29642. height: math.unit(6 + 7 / 12, "feet"),
  29643. weight: math.unit(250, "lb"),
  29644. name: "Back",
  29645. image: {
  29646. source: "./media/characters/nemoskii/back.svg",
  29647. extra: 1845 / 1788,
  29648. bottom: 10.5 / 1852
  29649. }
  29650. },
  29651. head: {
  29652. height: math.unit(1.31, "feet"),
  29653. name: "Head",
  29654. image: {
  29655. source: "./media/characters/nemoskii/head.svg"
  29656. }
  29657. },
  29658. },
  29659. [
  29660. {
  29661. name: "Micro",
  29662. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29663. },
  29664. {
  29665. name: "Normal",
  29666. height: math.unit(6 + 7 / 12, "feet"),
  29667. default: true
  29668. },
  29669. {
  29670. name: "Macro",
  29671. height: math.unit((6 + 7 / 12) * 150, "feet")
  29672. },
  29673. {
  29674. name: "Macro+",
  29675. height: math.unit((6 + 7 / 12) * 500, "feet")
  29676. },
  29677. {
  29678. name: "Megamacro",
  29679. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29680. },
  29681. ]
  29682. ))
  29683. characterMakers.push(() => makeCharacter(
  29684. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29685. {
  29686. front: {
  29687. height: math.unit(1, "mile"),
  29688. weight: math.unit(265261.9, "lb"),
  29689. name: "Front",
  29690. image: {
  29691. source: "./media/characters/shui/front.svg",
  29692. extra: 1633 / 1564,
  29693. bottom: 91.5 / 1726
  29694. }
  29695. },
  29696. },
  29697. [
  29698. {
  29699. name: "Macro",
  29700. height: math.unit(1, "mile"),
  29701. default: true
  29702. },
  29703. ]
  29704. ))
  29705. characterMakers.push(() => makeCharacter(
  29706. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29707. {
  29708. front: {
  29709. height: math.unit(12 + 6 / 12, "feet"),
  29710. weight: math.unit(1342, "lb"),
  29711. name: "Front",
  29712. image: {
  29713. source: "./media/characters/arokh-takakura/front.svg",
  29714. extra: 1089 / 1043,
  29715. bottom: 77.4 / 1176.7
  29716. }
  29717. },
  29718. back: {
  29719. height: math.unit(12 + 6 / 12, "feet"),
  29720. weight: math.unit(1342, "lb"),
  29721. name: "Back",
  29722. image: {
  29723. source: "./media/characters/arokh-takakura/back.svg",
  29724. extra: 1046 / 1019,
  29725. bottom: 102 / 1150
  29726. }
  29727. },
  29728. },
  29729. [
  29730. {
  29731. name: "Big",
  29732. height: math.unit(12 + 6 / 12, "feet"),
  29733. default: true
  29734. },
  29735. ]
  29736. ))
  29737. characterMakers.push(() => makeCharacter(
  29738. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29739. {
  29740. front: {
  29741. height: math.unit(5 + 6 / 12, "feet"),
  29742. weight: math.unit(150, "lb"),
  29743. name: "Front",
  29744. image: {
  29745. source: "./media/characters/theo/front.svg",
  29746. extra: 1184 / 1131,
  29747. bottom: 7.4 / 1191
  29748. }
  29749. },
  29750. },
  29751. [
  29752. {
  29753. name: "Micro",
  29754. height: math.unit(5, "inches")
  29755. },
  29756. {
  29757. name: "Normal",
  29758. height: math.unit(5 + 6 / 12, "feet"),
  29759. default: true
  29760. },
  29761. ]
  29762. ))
  29763. characterMakers.push(() => makeCharacter(
  29764. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29765. {
  29766. front: {
  29767. height: math.unit(5 + 9 / 12, "feet"),
  29768. weight: math.unit(130, "lb"),
  29769. name: "Front",
  29770. image: {
  29771. source: "./media/characters/cecelia-swift/front.svg",
  29772. extra: 502 / 484,
  29773. bottom: 23 / 523
  29774. }
  29775. },
  29776. back: {
  29777. height: math.unit(5 + 9 / 12, "feet"),
  29778. weight: math.unit(130, "lb"),
  29779. name: "Back",
  29780. image: {
  29781. source: "./media/characters/cecelia-swift/back.svg",
  29782. extra: 499 / 485,
  29783. bottom: 12 / 511
  29784. }
  29785. },
  29786. head: {
  29787. height: math.unit(0.90, "feet"),
  29788. name: "Head",
  29789. image: {
  29790. source: "./media/characters/cecelia-swift/head.svg"
  29791. }
  29792. },
  29793. rump: {
  29794. height: math.unit(1.75, "feet"),
  29795. name: "Rump",
  29796. image: {
  29797. source: "./media/characters/cecelia-swift/rump.svg"
  29798. }
  29799. },
  29800. },
  29801. [
  29802. {
  29803. name: "Normal",
  29804. height: math.unit(5 + 9 / 12, "feet"),
  29805. default: true
  29806. },
  29807. {
  29808. name: "Big",
  29809. height: math.unit(50, "feet")
  29810. },
  29811. {
  29812. name: "Macro",
  29813. height: math.unit(100, "feet")
  29814. },
  29815. {
  29816. name: "Macro+",
  29817. height: math.unit(500, "feet")
  29818. },
  29819. {
  29820. name: "Macro++",
  29821. height: math.unit(1000, "feet")
  29822. },
  29823. ]
  29824. ))
  29825. characterMakers.push(() => makeCharacter(
  29826. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29827. {
  29828. front: {
  29829. height: math.unit(6, "feet"),
  29830. weight: math.unit(150, "lb"),
  29831. name: "Front",
  29832. image: {
  29833. source: "./media/characters/kaunan/front.svg",
  29834. extra: 2890 / 2523,
  29835. bottom: 49 / 2939
  29836. }
  29837. },
  29838. },
  29839. [
  29840. {
  29841. name: "Macro",
  29842. height: math.unit(150, "feet"),
  29843. default: true
  29844. },
  29845. ]
  29846. ))
  29847. characterMakers.push(() => makeCharacter(
  29848. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29849. {
  29850. dressed: {
  29851. height: math.unit(175, "cm"),
  29852. weight: math.unit(60, "kg"),
  29853. name: "Dressed",
  29854. image: {
  29855. source: "./media/characters/fei/dressed.svg",
  29856. extra: 1402/1278,
  29857. bottom: 27/1429
  29858. }
  29859. },
  29860. nude: {
  29861. height: math.unit(175, "cm"),
  29862. weight: math.unit(60, "kg"),
  29863. name: "Nude",
  29864. image: {
  29865. source: "./media/characters/fei/nude.svg",
  29866. extra: 1402/1278,
  29867. bottom: 27/1429
  29868. }
  29869. },
  29870. heels: {
  29871. height: math.unit(0.466, "feet"),
  29872. name: "Heels",
  29873. image: {
  29874. source: "./media/characters/fei/heels.svg",
  29875. extra: 156/152,
  29876. bottom: 28/184
  29877. }
  29878. },
  29879. },
  29880. [
  29881. {
  29882. name: "Mortal",
  29883. height: math.unit(175, "cm")
  29884. },
  29885. {
  29886. name: "Normal",
  29887. height: math.unit(3500, "m")
  29888. },
  29889. {
  29890. name: "Stroll",
  29891. height: math.unit(18.4, "km"),
  29892. default: true
  29893. },
  29894. {
  29895. name: "Showoff",
  29896. height: math.unit(175, "km")
  29897. },
  29898. ]
  29899. ))
  29900. characterMakers.push(() => makeCharacter(
  29901. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29902. {
  29903. front: {
  29904. height: math.unit(7, "feet"),
  29905. weight: math.unit(1000, "kg"),
  29906. name: "Front",
  29907. image: {
  29908. source: "./media/characters/edrax/front.svg",
  29909. extra: 2838 / 2550,
  29910. bottom: 130 / 2968
  29911. }
  29912. },
  29913. },
  29914. [
  29915. {
  29916. name: "Small",
  29917. height: math.unit(7, "feet")
  29918. },
  29919. {
  29920. name: "Normal",
  29921. height: math.unit(1500, "meters")
  29922. },
  29923. {
  29924. name: "Mega",
  29925. height: math.unit(12000000, "km"),
  29926. default: true
  29927. },
  29928. {
  29929. name: "Megamacro",
  29930. height: math.unit(10600000, "lightyears")
  29931. },
  29932. {
  29933. name: "Hypermacro",
  29934. height: math.unit(256, "yottameters")
  29935. },
  29936. ]
  29937. ))
  29938. characterMakers.push(() => makeCharacter(
  29939. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29940. {
  29941. front: {
  29942. height: math.unit(10, "feet"),
  29943. weight: math.unit(750, "lb"),
  29944. name: "Front",
  29945. image: {
  29946. source: "./media/characters/clove/front.svg",
  29947. extra: 1918/1751,
  29948. bottom: 52/1970
  29949. }
  29950. },
  29951. back: {
  29952. height: math.unit(10, "feet"),
  29953. weight: math.unit(750, "lb"),
  29954. name: "Back",
  29955. image: {
  29956. source: "./media/characters/clove/back.svg",
  29957. extra: 1912/1747,
  29958. bottom: 50/1962
  29959. }
  29960. },
  29961. },
  29962. [
  29963. {
  29964. name: "Normal",
  29965. height: math.unit(10, "feet"),
  29966. default: true
  29967. },
  29968. ]
  29969. ))
  29970. characterMakers.push(() => makeCharacter(
  29971. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29972. {
  29973. front: {
  29974. height: math.unit(4, "feet"),
  29975. weight: math.unit(50, "lb"),
  29976. name: "Front",
  29977. image: {
  29978. source: "./media/characters/alex-rabbit/front.svg",
  29979. extra: 507 / 458,
  29980. bottom: 18.5 / 527
  29981. }
  29982. },
  29983. back: {
  29984. height: math.unit(4, "feet"),
  29985. weight: math.unit(50, "lb"),
  29986. name: "Back",
  29987. image: {
  29988. source: "./media/characters/alex-rabbit/back.svg",
  29989. extra: 502 / 460,
  29990. bottom: 18.9 / 521
  29991. }
  29992. },
  29993. },
  29994. [
  29995. {
  29996. name: "Normal",
  29997. height: math.unit(4, "feet"),
  29998. default: true
  29999. },
  30000. ]
  30001. ))
  30002. characterMakers.push(() => makeCharacter(
  30003. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30004. {
  30005. front: {
  30006. height: math.unit(1 + 3 / 12, "feet"),
  30007. weight: math.unit(80, "lb"),
  30008. name: "Front",
  30009. image: {
  30010. source: "./media/characters/zander-rose/front.svg",
  30011. extra: 916 / 797,
  30012. bottom: 17 / 933
  30013. }
  30014. },
  30015. back: {
  30016. height: math.unit(1 + 3 / 12, "feet"),
  30017. weight: math.unit(80, "lb"),
  30018. name: "Back",
  30019. image: {
  30020. source: "./media/characters/zander-rose/back.svg",
  30021. extra: 903 / 779,
  30022. bottom: 31 / 934
  30023. }
  30024. },
  30025. },
  30026. [
  30027. {
  30028. name: "Normal",
  30029. height: math.unit(1 + 3 / 12, "feet"),
  30030. default: true
  30031. },
  30032. ]
  30033. ))
  30034. characterMakers.push(() => makeCharacter(
  30035. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30036. {
  30037. anthro: {
  30038. height: math.unit(6, "feet"),
  30039. weight: math.unit(150, "lb"),
  30040. name: "Anthro",
  30041. image: {
  30042. source: "./media/characters/razz/anthro.svg",
  30043. extra: 1437 / 1343,
  30044. bottom: 48 / 1485
  30045. }
  30046. },
  30047. feral: {
  30048. height: math.unit(6, "feet"),
  30049. weight: math.unit(150, "lb"),
  30050. name: "Feral",
  30051. image: {
  30052. source: "./media/characters/razz/feral.svg",
  30053. extra: 2569 / 1385,
  30054. bottom: 95 / 2664
  30055. }
  30056. },
  30057. },
  30058. [
  30059. {
  30060. name: "Normal",
  30061. height: math.unit(6, "feet"),
  30062. default: true
  30063. },
  30064. ]
  30065. ))
  30066. characterMakers.push(() => makeCharacter(
  30067. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30068. {
  30069. front: {
  30070. height: math.unit(9 + 4 / 12, "feet"),
  30071. weight: math.unit(500, "lb"),
  30072. name: "Front",
  30073. image: {
  30074. source: "./media/characters/morrigan/front.svg",
  30075. extra: 2707 / 2579,
  30076. bottom: 156 / 2863
  30077. }
  30078. },
  30079. },
  30080. [
  30081. {
  30082. name: "Normal",
  30083. height: math.unit(9 + 4 / 12, "feet"),
  30084. default: true
  30085. },
  30086. ]
  30087. ))
  30088. characterMakers.push(() => makeCharacter(
  30089. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30090. {
  30091. front: {
  30092. height: math.unit(5, "stories"),
  30093. weight: math.unit(4000, "lb"),
  30094. name: "Front",
  30095. image: {
  30096. source: "./media/characters/jenene/front.svg",
  30097. extra: 1780 / 1710,
  30098. bottom: 57 / 1837
  30099. }
  30100. },
  30101. },
  30102. [
  30103. {
  30104. name: "Normal",
  30105. height: math.unit(5, "stories"),
  30106. default: true
  30107. },
  30108. ]
  30109. ))
  30110. characterMakers.push(() => makeCharacter(
  30111. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30112. {
  30113. taurSfw: {
  30114. height: math.unit(10, "meters"),
  30115. weight: math.unit(17500, "kg"),
  30116. name: "Taur",
  30117. image: {
  30118. source: "./media/characters/faey/taur-sfw.svg",
  30119. extra: 1200 / 968,
  30120. bottom: 41 / 1241
  30121. }
  30122. },
  30123. chestmaw: {
  30124. height: math.unit(2.01, "meters"),
  30125. name: "Chestmaw",
  30126. image: {
  30127. source: "./media/characters/faey/chestmaw.svg"
  30128. }
  30129. },
  30130. foot: {
  30131. height: math.unit(2.43, "meters"),
  30132. name: "Foot",
  30133. image: {
  30134. source: "./media/characters/faey/foot.svg"
  30135. }
  30136. },
  30137. jaws: {
  30138. height: math.unit(1.66, "meters"),
  30139. name: "Jaws",
  30140. image: {
  30141. source: "./media/characters/faey/jaws.svg"
  30142. }
  30143. },
  30144. tongues: {
  30145. height: math.unit(2.01, "meters"),
  30146. name: "Tongues",
  30147. image: {
  30148. source: "./media/characters/faey/tongues.svg"
  30149. }
  30150. },
  30151. },
  30152. [
  30153. {
  30154. name: "Small",
  30155. height: math.unit(10, "meters"),
  30156. default: true
  30157. },
  30158. {
  30159. name: "Big",
  30160. height: math.unit(500000, "km")
  30161. },
  30162. ]
  30163. ))
  30164. characterMakers.push(() => makeCharacter(
  30165. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30166. {
  30167. front: {
  30168. height: math.unit(7, "feet"),
  30169. weight: math.unit(275, "lb"),
  30170. name: "Front",
  30171. image: {
  30172. source: "./media/characters/roku/front.svg",
  30173. extra: 903 / 878,
  30174. bottom: 37 / 940
  30175. }
  30176. },
  30177. },
  30178. [
  30179. {
  30180. name: "Normal",
  30181. height: math.unit(7, "feet"),
  30182. default: true
  30183. },
  30184. {
  30185. name: "Macro",
  30186. height: math.unit(500, "feet")
  30187. },
  30188. {
  30189. name: "Megamacro",
  30190. height: math.unit(200, "miles")
  30191. },
  30192. ]
  30193. ))
  30194. characterMakers.push(() => makeCharacter(
  30195. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30196. {
  30197. front: {
  30198. height: math.unit(6 + 2 / 12, "feet"),
  30199. weight: math.unit(150, "lb"),
  30200. name: "Front",
  30201. image: {
  30202. source: "./media/characters/lira/front.svg",
  30203. extra: 1727 / 1605,
  30204. bottom: 26 / 1753
  30205. }
  30206. },
  30207. back: {
  30208. height: math.unit(6 + 2 / 12, "feet"),
  30209. weight: math.unit(150, "lb"),
  30210. name: "Back",
  30211. image: {
  30212. source: "./media/characters/lira/back.svg",
  30213. extra: 1713/1621,
  30214. bottom: 20/1733
  30215. }
  30216. },
  30217. hand: {
  30218. height: math.unit(0.75, "feet"),
  30219. name: "Hand",
  30220. image: {
  30221. source: "./media/characters/lira/hand.svg"
  30222. }
  30223. },
  30224. maw: {
  30225. height: math.unit(0.65, "feet"),
  30226. name: "Maw",
  30227. image: {
  30228. source: "./media/characters/lira/maw.svg"
  30229. }
  30230. },
  30231. pawDigi: {
  30232. height: math.unit(1.6, "feet"),
  30233. name: "Paw Digi",
  30234. image: {
  30235. source: "./media/characters/lira/paw-digi.svg"
  30236. }
  30237. },
  30238. pawPlanti: {
  30239. height: math.unit(1.4, "feet"),
  30240. name: "Paw Planti",
  30241. image: {
  30242. source: "./media/characters/lira/paw-planti.svg"
  30243. }
  30244. },
  30245. },
  30246. [
  30247. {
  30248. name: "Normal",
  30249. height: math.unit(6 + 2 / 12, "feet"),
  30250. default: true
  30251. },
  30252. {
  30253. name: "Macro",
  30254. height: math.unit(100, "feet")
  30255. },
  30256. {
  30257. name: "Macro²",
  30258. height: math.unit(1600, "feet")
  30259. },
  30260. {
  30261. name: "Planetary",
  30262. height: math.unit(20, "earths")
  30263. },
  30264. ]
  30265. ))
  30266. characterMakers.push(() => makeCharacter(
  30267. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30268. {
  30269. front: {
  30270. height: math.unit(6, "feet"),
  30271. weight: math.unit(150, "lb"),
  30272. name: "Front",
  30273. image: {
  30274. source: "./media/characters/hadjet/front.svg",
  30275. extra: 1480 / 1346,
  30276. bottom: 26 / 1506
  30277. }
  30278. },
  30279. frontNsfw: {
  30280. height: math.unit(6, "feet"),
  30281. weight: math.unit(150, "lb"),
  30282. name: "Front (NSFW)",
  30283. image: {
  30284. source: "./media/characters/hadjet/front-nsfw.svg",
  30285. extra: 1440 / 1358,
  30286. bottom: 52 / 1492
  30287. }
  30288. },
  30289. },
  30290. [
  30291. {
  30292. name: "Macro",
  30293. height: math.unit(10, "stories"),
  30294. default: true
  30295. },
  30296. {
  30297. name: "Megamacro",
  30298. height: math.unit(1.5, "miles")
  30299. },
  30300. {
  30301. name: "Megamacro+",
  30302. height: math.unit(5, "miles")
  30303. },
  30304. ]
  30305. ))
  30306. characterMakers.push(() => makeCharacter(
  30307. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30308. {
  30309. side: {
  30310. height: math.unit(106, "feet"),
  30311. weight: math.unit(500, "tonnes"),
  30312. name: "Side",
  30313. image: {
  30314. source: "./media/characters/kodran/side.svg",
  30315. extra: 553 / 480,
  30316. bottom: 33 / 586
  30317. }
  30318. },
  30319. front: {
  30320. height: math.unit(132, "feet"),
  30321. weight: math.unit(500, "tonnes"),
  30322. name: "Front",
  30323. image: {
  30324. source: "./media/characters/kodran/front.svg",
  30325. extra: 667 / 643,
  30326. bottom: 42 / 709
  30327. }
  30328. },
  30329. flying: {
  30330. height: math.unit(350, "feet"),
  30331. weight: math.unit(500, "tonnes"),
  30332. name: "Flying",
  30333. image: {
  30334. source: "./media/characters/kodran/flying.svg"
  30335. }
  30336. },
  30337. foot: {
  30338. height: math.unit(33, "feet"),
  30339. name: "Foot",
  30340. image: {
  30341. source: "./media/characters/kodran/foot.svg"
  30342. }
  30343. },
  30344. footFront: {
  30345. height: math.unit(19, "feet"),
  30346. name: "Foot (Front)",
  30347. image: {
  30348. source: "./media/characters/kodran/foot-front.svg",
  30349. extra: 261 / 261,
  30350. bottom: 91 / 352
  30351. }
  30352. },
  30353. headFront: {
  30354. height: math.unit(53, "feet"),
  30355. name: "Head (Front)",
  30356. image: {
  30357. source: "./media/characters/kodran/head-front.svg"
  30358. }
  30359. },
  30360. headSide: {
  30361. height: math.unit(65, "feet"),
  30362. name: "Head (Side)",
  30363. image: {
  30364. source: "./media/characters/kodran/head-side.svg"
  30365. }
  30366. },
  30367. throat: {
  30368. height: math.unit(79, "feet"),
  30369. name: "Throat",
  30370. image: {
  30371. source: "./media/characters/kodran/throat.svg"
  30372. }
  30373. },
  30374. },
  30375. [
  30376. {
  30377. name: "Large",
  30378. height: math.unit(106, "feet"),
  30379. default: true
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30385. {
  30386. side: {
  30387. height: math.unit(11, "feet"),
  30388. weight: math.unit(150, "lb"),
  30389. name: "Side",
  30390. image: {
  30391. source: "./media/characters/pyxaron/side.svg",
  30392. extra: 305 / 195,
  30393. bottom: 17 / 322
  30394. }
  30395. },
  30396. },
  30397. [
  30398. {
  30399. name: "Normal",
  30400. height: math.unit(11, "feet"),
  30401. default: true
  30402. },
  30403. ]
  30404. ))
  30405. characterMakers.push(() => makeCharacter(
  30406. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30407. {
  30408. front: {
  30409. height: math.unit(6, "feet"),
  30410. weight: math.unit(150, "lb"),
  30411. name: "Front",
  30412. image: {
  30413. source: "./media/characters/meep/front.svg",
  30414. extra: 88 / 80,
  30415. bottom: 6 / 94
  30416. }
  30417. },
  30418. },
  30419. [
  30420. {
  30421. name: "Fun Sized",
  30422. height: math.unit(2, "inches"),
  30423. default: true
  30424. },
  30425. {
  30426. name: "Friend Sized",
  30427. height: math.unit(8, "inches")
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30433. {
  30434. front: {
  30435. height: math.unit(15, "feet"),
  30436. weight: math.unit(2500, "lb"),
  30437. name: "Front",
  30438. image: {
  30439. source: "./media/characters/holly-rabbit/front.svg",
  30440. extra: 1433 / 1233,
  30441. bottom: 125 / 1558
  30442. }
  30443. },
  30444. dick: {
  30445. height: math.unit(4.6, "feet"),
  30446. name: "Dick",
  30447. image: {
  30448. source: "./media/characters/holly-rabbit/dick.svg"
  30449. }
  30450. },
  30451. },
  30452. [
  30453. {
  30454. name: "Normal",
  30455. height: math.unit(15, "feet"),
  30456. default: true
  30457. },
  30458. {
  30459. name: "Macro",
  30460. height: math.unit(250, "feet")
  30461. },
  30462. {
  30463. name: "Macro+",
  30464. height: math.unit(2500, "feet")
  30465. },
  30466. ]
  30467. ))
  30468. characterMakers.push(() => makeCharacter(
  30469. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30470. {
  30471. front: {
  30472. height: math.unit(3.02, "meters"),
  30473. weight: math.unit(500, "kg"),
  30474. name: "Front",
  30475. image: {
  30476. source: "./media/characters/drena/front.svg",
  30477. extra: 282 / 243,
  30478. bottom: 8 / 290
  30479. }
  30480. },
  30481. side: {
  30482. height: math.unit(3.02, "meters"),
  30483. weight: math.unit(500, "kg"),
  30484. name: "Side",
  30485. image: {
  30486. source: "./media/characters/drena/side.svg",
  30487. extra: 280 / 245,
  30488. bottom: 10 / 290
  30489. }
  30490. },
  30491. back: {
  30492. height: math.unit(3.02, "meters"),
  30493. weight: math.unit(500, "kg"),
  30494. name: "Back",
  30495. image: {
  30496. source: "./media/characters/drena/back.svg",
  30497. extra: 278 / 243,
  30498. bottom: 2 / 280
  30499. }
  30500. },
  30501. foot: {
  30502. height: math.unit(0.75, "meters"),
  30503. name: "Foot",
  30504. image: {
  30505. source: "./media/characters/drena/foot.svg"
  30506. }
  30507. },
  30508. maw: {
  30509. height: math.unit(0.82, "meters"),
  30510. name: "Maw",
  30511. image: {
  30512. source: "./media/characters/drena/maw.svg"
  30513. }
  30514. },
  30515. eating: {
  30516. height: math.unit(0.75, "meters"),
  30517. name: "Eating",
  30518. image: {
  30519. source: "./media/characters/drena/eating.svg"
  30520. }
  30521. },
  30522. rump: {
  30523. height: math.unit(0.93, "meters"),
  30524. name: "Rump",
  30525. image: {
  30526. source: "./media/characters/drena/rump.svg"
  30527. }
  30528. },
  30529. },
  30530. [
  30531. {
  30532. name: "Normal",
  30533. height: math.unit(3.02, "meters"),
  30534. default: true
  30535. },
  30536. ]
  30537. ))
  30538. characterMakers.push(() => makeCharacter(
  30539. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30540. {
  30541. front: {
  30542. height: math.unit(6 + 4 / 12, "feet"),
  30543. weight: math.unit(250, "lb"),
  30544. name: "Front",
  30545. image: {
  30546. source: "./media/characters/remmyzilla/front.svg",
  30547. extra: 4033 / 3588,
  30548. bottom: 123 / 4156
  30549. }
  30550. },
  30551. back: {
  30552. height: math.unit(6 + 4 / 12, "feet"),
  30553. weight: math.unit(250, "lb"),
  30554. name: "Back",
  30555. image: {
  30556. source: "./media/characters/remmyzilla/back.svg",
  30557. extra: 2687 / 2555,
  30558. bottom: 48 / 2735
  30559. }
  30560. },
  30561. paw: {
  30562. height: math.unit(1.73, "feet"),
  30563. name: "Paw",
  30564. image: {
  30565. source: "./media/characters/remmyzilla/paw.svg"
  30566. },
  30567. extraAttributes: {
  30568. "toeSize": {
  30569. name: "Toe Size",
  30570. power: 2,
  30571. type: "area",
  30572. base: math.unit(0.0035, "m^2")
  30573. },
  30574. "padSize": {
  30575. name: "Pad Size",
  30576. power: 2,
  30577. type: "area",
  30578. base: math.unit(0.015, "m^2")
  30579. },
  30580. "pawsize": {
  30581. name: "Paw Size",
  30582. power: 2,
  30583. type: "area",
  30584. base: math.unit(0.072, "m^2")
  30585. },
  30586. }
  30587. },
  30588. maw: {
  30589. height: math.unit(1.73, "feet"),
  30590. name: "Maw",
  30591. image: {
  30592. source: "./media/characters/remmyzilla/maw.svg"
  30593. }
  30594. },
  30595. },
  30596. [
  30597. {
  30598. name: "Normal",
  30599. height: math.unit(6 + 4 / 12, "feet")
  30600. },
  30601. {
  30602. name: "Minimacro",
  30603. height: math.unit(12 + 8 / 12, "feet")
  30604. },
  30605. {
  30606. name: "Normal",
  30607. height: math.unit(640, "feet"),
  30608. default: true
  30609. },
  30610. {
  30611. name: "Megamacro",
  30612. height: math.unit(6400, "feet")
  30613. },
  30614. {
  30615. name: "Gigamacro",
  30616. height: math.unit(64000, "miles")
  30617. },
  30618. ]
  30619. ))
  30620. characterMakers.push(() => makeCharacter(
  30621. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30622. {
  30623. front: {
  30624. height: math.unit(2.5, "meters"),
  30625. weight: math.unit(300, "lb"),
  30626. name: "Front",
  30627. image: {
  30628. source: "./media/characters/lawrence/front.svg",
  30629. extra: 357 / 335,
  30630. bottom: 30 / 387
  30631. }
  30632. },
  30633. back: {
  30634. height: math.unit(2.5, "meters"),
  30635. weight: math.unit(300, "lb"),
  30636. name: "Back",
  30637. image: {
  30638. source: "./media/characters/lawrence/back.svg",
  30639. extra: 357 / 338,
  30640. bottom: 16 / 373
  30641. }
  30642. },
  30643. head: {
  30644. height: math.unit(0.9, "meter"),
  30645. name: "Head",
  30646. image: {
  30647. source: "./media/characters/lawrence/head.svg"
  30648. }
  30649. },
  30650. maw: {
  30651. height: math.unit(0.7, "meter"),
  30652. name: "Maw",
  30653. image: {
  30654. source: "./media/characters/lawrence/maw.svg"
  30655. }
  30656. },
  30657. footBottom: {
  30658. height: math.unit(0.5, "meter"),
  30659. name: "Foot (Bottom)",
  30660. image: {
  30661. source: "./media/characters/lawrence/foot-bottom.svg"
  30662. }
  30663. },
  30664. footTop: {
  30665. height: math.unit(0.5, "meter"),
  30666. name: "Foot (Top)",
  30667. image: {
  30668. source: "./media/characters/lawrence/foot-top.svg"
  30669. }
  30670. },
  30671. },
  30672. [
  30673. {
  30674. name: "Normal",
  30675. height: math.unit(2.5, "meters"),
  30676. default: true
  30677. },
  30678. {
  30679. name: "Macro",
  30680. height: math.unit(95, "meters")
  30681. },
  30682. {
  30683. name: "Megamacro",
  30684. height: math.unit(150, "km")
  30685. },
  30686. ]
  30687. ))
  30688. characterMakers.push(() => makeCharacter(
  30689. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30690. {
  30691. front: {
  30692. height: math.unit(4.2, "meters"),
  30693. preyCapacity: math.unit(50, "m^3"),
  30694. weight: math.unit(30, "tonnes"),
  30695. name: "Front",
  30696. image: {
  30697. source: "./media/characters/sydney/front.svg",
  30698. extra: 1177/1129,
  30699. bottom: 197/1374
  30700. },
  30701. extraAttributes: {
  30702. "length": {
  30703. name: "Length",
  30704. power: 1,
  30705. type: "length",
  30706. base: math.unit(21, "meters")
  30707. },
  30708. }
  30709. },
  30710. },
  30711. [
  30712. {
  30713. name: "Normal",
  30714. height: math.unit(4.2, "meters"),
  30715. default: true
  30716. },
  30717. ]
  30718. ))
  30719. characterMakers.push(() => makeCharacter(
  30720. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30721. {
  30722. back: {
  30723. height: math.unit(201, "feet"),
  30724. name: "Back",
  30725. image: {
  30726. source: "./media/characters/jessica/back.svg",
  30727. extra: 273 / 259,
  30728. bottom: 7 / 280
  30729. }
  30730. },
  30731. },
  30732. [
  30733. {
  30734. name: "Normal",
  30735. height: math.unit(201, "feet"),
  30736. default: true
  30737. },
  30738. {
  30739. name: "Megamacro",
  30740. height: math.unit(8, "miles")
  30741. },
  30742. ]
  30743. ))
  30744. characterMakers.push(() => makeCharacter(
  30745. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30746. {
  30747. side: {
  30748. height: math.unit(5.6, "m"),
  30749. weight: math.unit(8000, "kg"),
  30750. name: "Side",
  30751. image: {
  30752. source: "./media/characters/victoria/side.svg",
  30753. extra: 1542/1229,
  30754. bottom: 124/1666
  30755. }
  30756. },
  30757. maw: {
  30758. height: math.unit(7.14, "feet"),
  30759. name: "Maw",
  30760. image: {
  30761. source: "./media/characters/victoria/maw.svg"
  30762. }
  30763. },
  30764. },
  30765. [
  30766. {
  30767. name: "Normal",
  30768. height: math.unit(5.6, "m"),
  30769. default: true
  30770. },
  30771. ]
  30772. ))
  30773. characterMakers.push(() => makeCharacter(
  30774. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30775. {
  30776. front: {
  30777. height: math.unit(5 + 6 / 12, "feet"),
  30778. name: "Front",
  30779. image: {
  30780. source: "./media/characters/cat/front.svg",
  30781. extra: 1449/1295,
  30782. bottom: 34/1483
  30783. },
  30784. form: "cat",
  30785. default: true
  30786. },
  30787. back: {
  30788. height: math.unit(5 + 6 / 12, "feet"),
  30789. name: "Back",
  30790. image: {
  30791. source: "./media/characters/cat/back.svg",
  30792. extra: 1466/1301,
  30793. bottom: 19/1485
  30794. },
  30795. form: "cat"
  30796. },
  30797. taur: {
  30798. height: math.unit(7, "feet"),
  30799. name: "Taur",
  30800. image: {
  30801. source: "./media/characters/cat/taur.svg",
  30802. extra: 1389/1233,
  30803. bottom: 83/1472
  30804. },
  30805. form: "taur",
  30806. default: true
  30807. },
  30808. lucarioFront: {
  30809. height: math.unit(4, "feet"),
  30810. name: "Lucario (Front)",
  30811. image: {
  30812. source: "./media/characters/cat/lucario-front.svg",
  30813. extra: 1149/1019,
  30814. bottom: 84/1233
  30815. },
  30816. form: "lucario",
  30817. default: true
  30818. },
  30819. lucarioBack: {
  30820. height: math.unit(4, "feet"),
  30821. name: "Lucario (Back)",
  30822. image: {
  30823. source: "./media/characters/cat/lucario-back.svg",
  30824. extra: 1190/1059,
  30825. bottom: 33/1223
  30826. },
  30827. form: "lucario"
  30828. },
  30829. megaLucario: {
  30830. height: math.unit(4, "feet"),
  30831. name: "Mega Lucario",
  30832. image: {
  30833. source: "./media/characters/cat/mega-lucario.svg",
  30834. extra: 1515 / 1319,
  30835. bottom: 63 / 1578
  30836. },
  30837. form: "lucario"
  30838. },
  30839. nickit: {
  30840. height: math.unit(2, "feet"),
  30841. name: "Nickit",
  30842. image: {
  30843. source: "./media/characters/cat/nickit.svg",
  30844. extra: 1980 / 1585,
  30845. bottom: 102 / 2082
  30846. },
  30847. form: "nickit",
  30848. default: true
  30849. },
  30850. lopunnyFront: {
  30851. height: math.unit(5, "feet"),
  30852. name: "Lopunny (Front)",
  30853. image: {
  30854. source: "./media/characters/cat/lopunny-front.svg",
  30855. extra: 1782 / 1469,
  30856. bottom: 38 / 1820
  30857. },
  30858. form: "lopunny",
  30859. default: true
  30860. },
  30861. lopunnyBack: {
  30862. height: math.unit(5, "feet"),
  30863. name: "Lopunny (Back)",
  30864. image: {
  30865. source: "./media/characters/cat/lopunny-back.svg",
  30866. extra: 1660 / 1490,
  30867. bottom: 25 / 1685
  30868. },
  30869. form: "lopunny"
  30870. },
  30871. },
  30872. [
  30873. {
  30874. name: "Really small",
  30875. height: math.unit(1, "nm")
  30876. },
  30877. {
  30878. name: "Micro",
  30879. height: math.unit(5, "inches")
  30880. },
  30881. {
  30882. name: "Normal",
  30883. height: math.unit(5 + 6 / 12, "feet"),
  30884. default: true
  30885. },
  30886. {
  30887. name: "Macro",
  30888. height: math.unit(50, "feet")
  30889. },
  30890. {
  30891. name: "Macro+",
  30892. height: math.unit(150, "feet")
  30893. },
  30894. {
  30895. name: "Megamacro",
  30896. height: math.unit(100, "miles")
  30897. },
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30902. {
  30903. front: {
  30904. height: math.unit(63.4, "meters"),
  30905. weight: math.unit(3.28349e+6, "kilograms"),
  30906. name: "Front",
  30907. image: {
  30908. source: "./media/characters/kirina-violet/front.svg",
  30909. extra: 2812 / 2725,
  30910. bottom: 0 / 2812
  30911. }
  30912. },
  30913. back: {
  30914. height: math.unit(63.4, "meters"),
  30915. weight: math.unit(3.28349e+6, "kilograms"),
  30916. name: "Back",
  30917. image: {
  30918. source: "./media/characters/kirina-violet/back.svg",
  30919. extra: 2812 / 2725,
  30920. bottom: 0 / 2812
  30921. }
  30922. },
  30923. mouth: {
  30924. height: math.unit(4.35, "meters"),
  30925. name: "Mouth",
  30926. image: {
  30927. source: "./media/characters/kirina-violet/mouth.svg"
  30928. }
  30929. },
  30930. paw: {
  30931. height: math.unit(5.6, "meters"),
  30932. name: "Paw",
  30933. image: {
  30934. source: "./media/characters/kirina-violet/paw.svg"
  30935. }
  30936. },
  30937. tail: {
  30938. height: math.unit(18, "meters"),
  30939. name: "Tail",
  30940. image: {
  30941. source: "./media/characters/kirina-violet/tail.svg"
  30942. }
  30943. },
  30944. },
  30945. [
  30946. {
  30947. name: "Macro",
  30948. height: math.unit(63.4, "meters"),
  30949. default: true
  30950. },
  30951. ]
  30952. ))
  30953. characterMakers.push(() => makeCharacter(
  30954. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30955. {
  30956. front: {
  30957. height: math.unit(75, "feet"),
  30958. name: "Front",
  30959. image: {
  30960. source: "./media/characters/cat-gigachu/front.svg",
  30961. extra: 1239/1027,
  30962. bottom: 32/1271
  30963. }
  30964. },
  30965. back: {
  30966. height: math.unit(75, "feet"),
  30967. name: "Back",
  30968. image: {
  30969. source: "./media/characters/cat-gigachu/back.svg",
  30970. extra: 1229/1030,
  30971. bottom: 9/1238
  30972. }
  30973. },
  30974. },
  30975. [
  30976. {
  30977. name: "Dynamax",
  30978. height: math.unit(75, "feet"),
  30979. default: true
  30980. },
  30981. ]
  30982. ))
  30983. characterMakers.push(() => makeCharacter(
  30984. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30985. {
  30986. front: {
  30987. height: math.unit(6, "feet"),
  30988. weight: math.unit(150, "lb"),
  30989. name: "Front",
  30990. image: {
  30991. source: "./media/characters/sfaiyan/front.svg",
  30992. extra: 999 / 978,
  30993. bottom: 5 / 1004
  30994. }
  30995. },
  30996. },
  30997. [
  30998. {
  30999. name: "Normal",
  31000. height: math.unit(1.82, "meters")
  31001. },
  31002. {
  31003. name: "Giant",
  31004. height: math.unit(2.27, "km"),
  31005. default: true
  31006. },
  31007. ]
  31008. ))
  31009. characterMakers.push(() => makeCharacter(
  31010. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31011. {
  31012. front: {
  31013. height: math.unit(179, "cm"),
  31014. weight: math.unit(100, "kg"),
  31015. name: "Front",
  31016. image: {
  31017. source: "./media/characters/raunehkeli/front.svg",
  31018. extra: 1934 / 1926,
  31019. bottom: 0 / 1934
  31020. }
  31021. },
  31022. },
  31023. [
  31024. {
  31025. name: "Normal",
  31026. height: math.unit(179, "cm")
  31027. },
  31028. {
  31029. name: "Maximum",
  31030. height: math.unit(575, "meters"),
  31031. default: true
  31032. },
  31033. ]
  31034. ))
  31035. characterMakers.push(() => makeCharacter(
  31036. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31037. {
  31038. front: {
  31039. height: math.unit(6, "feet"),
  31040. weight: math.unit(150, "lb"),
  31041. name: "Front",
  31042. image: {
  31043. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31044. extra: 2625 / 2518,
  31045. bottom: 60 / 2685
  31046. }
  31047. },
  31048. },
  31049. [
  31050. {
  31051. name: "Normal",
  31052. height: math.unit(6 + 2 / 12, "feet")
  31053. },
  31054. {
  31055. name: "Macro",
  31056. height: math.unit(1180, "feet"),
  31057. default: true
  31058. },
  31059. ]
  31060. ))
  31061. characterMakers.push(() => makeCharacter(
  31062. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31063. {
  31064. front: {
  31065. height: math.unit(5 + 6 / 12, "feet"),
  31066. weight: math.unit(108, "lb"),
  31067. name: "Front",
  31068. image: {
  31069. source: "./media/characters/lilith-zott/front.svg",
  31070. extra: 2510 / 2238,
  31071. bottom: 100 / 2610
  31072. }
  31073. },
  31074. frontDressed: {
  31075. height: math.unit(5 + 6 / 12, "feet"),
  31076. weight: math.unit(108, "lb"),
  31077. name: "Front (Dressed)",
  31078. image: {
  31079. source: "./media/characters/lilith-zott/front-dressed.svg",
  31080. extra: 2510 / 2238,
  31081. bottom: 100 / 2610
  31082. }
  31083. },
  31084. },
  31085. [
  31086. {
  31087. name: "Normal",
  31088. height: math.unit(5 + 6 / 12, "feet")
  31089. },
  31090. {
  31091. name: "Macro",
  31092. height: math.unit(1030, "feet"),
  31093. default: true
  31094. },
  31095. ]
  31096. ))
  31097. characterMakers.push(() => makeCharacter(
  31098. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31099. {
  31100. front: {
  31101. height: math.unit(6, "feet"),
  31102. weight: math.unit(150, "lb"),
  31103. name: "Front",
  31104. image: {
  31105. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31106. extra: 2567 / 2435,
  31107. bottom: 39 / 2606
  31108. }
  31109. },
  31110. frontSuper: {
  31111. height: math.unit(6, "feet"),
  31112. name: "Front (Super)",
  31113. image: {
  31114. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31115. extra: 2567 / 2435,
  31116. bottom: 39 / 2606
  31117. }
  31118. },
  31119. },
  31120. [
  31121. {
  31122. name: "Normal",
  31123. height: math.unit(5 + 10 / 12, "feet")
  31124. },
  31125. {
  31126. name: "Macro",
  31127. height: math.unit(1100, "feet"),
  31128. default: true
  31129. },
  31130. ]
  31131. ))
  31132. characterMakers.push(() => makeCharacter(
  31133. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31134. {
  31135. front: {
  31136. height: math.unit(100, "miles"),
  31137. name: "Front",
  31138. image: {
  31139. source: "./media/characters/sona/front.svg",
  31140. extra: 2433 / 2201,
  31141. bottom: 53 / 2486
  31142. }
  31143. },
  31144. foot: {
  31145. height: math.unit(16.1, "miles"),
  31146. name: "Foot",
  31147. image: {
  31148. source: "./media/characters/sona/foot.svg"
  31149. }
  31150. },
  31151. },
  31152. [
  31153. {
  31154. name: "Macro",
  31155. height: math.unit(100, "miles"),
  31156. default: true
  31157. },
  31158. ]
  31159. ))
  31160. characterMakers.push(() => makeCharacter(
  31161. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31162. {
  31163. front: {
  31164. height: math.unit(6, "feet"),
  31165. weight: math.unit(150, "lb"),
  31166. name: "Front",
  31167. image: {
  31168. source: "./media/characters/bailey/front.svg",
  31169. extra: 1778 / 1724,
  31170. bottom: 30 / 1808
  31171. }
  31172. },
  31173. },
  31174. [
  31175. {
  31176. name: "Micro",
  31177. height: math.unit(4, "inches")
  31178. },
  31179. {
  31180. name: "Normal",
  31181. height: math.unit(5 + 5 / 12, "feet"),
  31182. default: true
  31183. },
  31184. {
  31185. name: "Macro",
  31186. height: math.unit(250, "feet")
  31187. },
  31188. {
  31189. name: "Megamacro",
  31190. height: math.unit(100, "miles")
  31191. },
  31192. ]
  31193. ))
  31194. characterMakers.push(() => makeCharacter(
  31195. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31196. {
  31197. front: {
  31198. height: math.unit(5 + 2 / 12, "feet"),
  31199. weight: math.unit(120, "lb"),
  31200. name: "Front",
  31201. image: {
  31202. source: "./media/characters/snaps/front.svg",
  31203. extra: 2370 / 2177,
  31204. bottom: 48 / 2418
  31205. }
  31206. },
  31207. back: {
  31208. height: math.unit(5 + 2 / 12, "feet"),
  31209. weight: math.unit(120, "lb"),
  31210. name: "Back",
  31211. image: {
  31212. source: "./media/characters/snaps/back.svg",
  31213. extra: 2408 / 2258,
  31214. bottom: 15 / 2423
  31215. }
  31216. },
  31217. },
  31218. [
  31219. {
  31220. name: "Micro",
  31221. height: math.unit(9, "inches")
  31222. },
  31223. {
  31224. name: "Normal",
  31225. height: math.unit(5 + 2 / 12, "feet"),
  31226. default: true
  31227. },
  31228. {
  31229. name: "Mini Macro",
  31230. height: math.unit(10, "feet")
  31231. },
  31232. ]
  31233. ))
  31234. characterMakers.push(() => makeCharacter(
  31235. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31236. {
  31237. front: {
  31238. height: math.unit(1.8, "meters"),
  31239. weight: math.unit(85, "kg"),
  31240. name: "Front",
  31241. image: {
  31242. source: "./media/characters/azteck/front.svg",
  31243. extra: 2815 / 2625,
  31244. bottom: 89 / 2904
  31245. }
  31246. },
  31247. back: {
  31248. height: math.unit(1.8, "meters"),
  31249. weight: math.unit(85, "kg"),
  31250. name: "Back",
  31251. image: {
  31252. source: "./media/characters/azteck/back.svg",
  31253. extra: 2856 / 2648,
  31254. bottom: 85 / 2941
  31255. }
  31256. },
  31257. frontDressed: {
  31258. height: math.unit(1.8, "meters"),
  31259. weight: math.unit(85, "kg"),
  31260. name: "Front (Dressed)",
  31261. image: {
  31262. source: "./media/characters/azteck/front-dressed.svg",
  31263. extra: 2147 / 2003,
  31264. bottom: 68 / 2215
  31265. }
  31266. },
  31267. head: {
  31268. height: math.unit(0.47, "meters"),
  31269. weight: math.unit(85, "kg"),
  31270. name: "Head",
  31271. image: {
  31272. source: "./media/characters/azteck/head.svg"
  31273. }
  31274. },
  31275. },
  31276. [
  31277. {
  31278. name: "Bite sized",
  31279. height: math.unit(16, "cm")
  31280. },
  31281. {
  31282. name: "Normal",
  31283. height: math.unit(1.8, "meters"),
  31284. default: true
  31285. },
  31286. ]
  31287. ))
  31288. characterMakers.push(() => makeCharacter(
  31289. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31290. {
  31291. front: {
  31292. height: math.unit(6, "feet"),
  31293. weight: math.unit(150, "lb"),
  31294. name: "Front",
  31295. image: {
  31296. source: "./media/characters/pidge/front.svg",
  31297. extra: 1936/1820,
  31298. bottom: 0/1936
  31299. }
  31300. },
  31301. back: {
  31302. height: math.unit(6, "feet"),
  31303. weight: math.unit(150, "lb"),
  31304. name: "Back",
  31305. image: {
  31306. source: "./media/characters/pidge/back.svg",
  31307. extra: 1938/1843,
  31308. bottom: 0/1938
  31309. }
  31310. },
  31311. casual: {
  31312. height: math.unit(6, "feet"),
  31313. weight: math.unit(150, "lb"),
  31314. name: "Casual",
  31315. image: {
  31316. source: "./media/characters/pidge/casual.svg",
  31317. extra: 1936/1820,
  31318. bottom: 0/1936
  31319. }
  31320. },
  31321. tech: {
  31322. height: math.unit(6, "feet"),
  31323. weight: math.unit(150, "lb"),
  31324. name: "Tech",
  31325. image: {
  31326. source: "./media/characters/pidge/tech.svg",
  31327. extra: 1802/1682,
  31328. bottom: 0/1802
  31329. }
  31330. },
  31331. head: {
  31332. height: math.unit(1.61, "feet"),
  31333. name: "Head",
  31334. image: {
  31335. source: "./media/characters/pidge/head.svg"
  31336. }
  31337. },
  31338. collar: {
  31339. height: math.unit(0.82, "feet"),
  31340. name: "Collar",
  31341. image: {
  31342. source: "./media/characters/pidge/collar.svg"
  31343. }
  31344. },
  31345. },
  31346. [
  31347. {
  31348. name: "Macro",
  31349. height: math.unit(2, "mile"),
  31350. default: true
  31351. },
  31352. {
  31353. name: "PUPPY",
  31354. height: math.unit(20, "miles")
  31355. },
  31356. ]
  31357. ))
  31358. characterMakers.push(() => makeCharacter(
  31359. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31360. {
  31361. front: {
  31362. height: math.unit(6, "feet"),
  31363. weight: math.unit(150, "lb"),
  31364. name: "Front",
  31365. image: {
  31366. source: "./media/characters/en/front.svg",
  31367. extra: 1697 / 1563,
  31368. bottom: 103 / 1800
  31369. }
  31370. },
  31371. back: {
  31372. height: math.unit(6, "feet"),
  31373. weight: math.unit(150, "lb"),
  31374. name: "Back",
  31375. image: {
  31376. source: "./media/characters/en/back.svg",
  31377. extra: 1700 / 1570,
  31378. bottom: 51 / 1751
  31379. }
  31380. },
  31381. frontDressed: {
  31382. height: math.unit(6, "feet"),
  31383. weight: math.unit(150, "lb"),
  31384. name: "Front (Dressed)",
  31385. image: {
  31386. source: "./media/characters/en/front-dressed.svg",
  31387. extra: 1697 / 1563,
  31388. bottom: 103 / 1800
  31389. }
  31390. },
  31391. backDressed: {
  31392. height: math.unit(6, "feet"),
  31393. weight: math.unit(150, "lb"),
  31394. name: "Back (Dressed)",
  31395. image: {
  31396. source: "./media/characters/en/back-dressed.svg",
  31397. extra: 1700 / 1570,
  31398. bottom: 51 / 1751
  31399. }
  31400. },
  31401. },
  31402. [
  31403. {
  31404. name: "Macro",
  31405. height: math.unit(210, "feet"),
  31406. default: true
  31407. },
  31408. ]
  31409. ))
  31410. characterMakers.push(() => makeCharacter(
  31411. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31412. {
  31413. front: {
  31414. height: math.unit(6, "feet"),
  31415. weight: math.unit(150, "lb"),
  31416. name: "Front",
  31417. image: {
  31418. source: "./media/characters/haze-orris/front.svg",
  31419. extra: 3975 / 3525,
  31420. bottom: 137 / 4112
  31421. }
  31422. },
  31423. },
  31424. [
  31425. {
  31426. name: "Micro",
  31427. height: math.unit(150, "mm"),
  31428. default: true
  31429. },
  31430. ]
  31431. ))
  31432. characterMakers.push(() => makeCharacter(
  31433. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31434. {
  31435. front: {
  31436. height: math.unit(6, "feet"),
  31437. weight: math.unit(150, "lb"),
  31438. name: "Front",
  31439. image: {
  31440. source: "./media/characters/casselene-yaro/front.svg",
  31441. extra: 4721 / 4541,
  31442. bottom: 82 / 4803
  31443. }
  31444. },
  31445. back: {
  31446. height: math.unit(6, "feet"),
  31447. weight: math.unit(150, "lb"),
  31448. name: "Back",
  31449. image: {
  31450. source: "./media/characters/casselene-yaro/back.svg",
  31451. extra: 4569 / 4377,
  31452. bottom: 69 / 4638
  31453. }
  31454. },
  31455. dressed: {
  31456. height: math.unit(6, "feet"),
  31457. weight: math.unit(150, "lb"),
  31458. name: "Dressed",
  31459. image: {
  31460. source: "./media/characters/casselene-yaro/dressed.svg",
  31461. extra: 4721 / 4541,
  31462. bottom: 82 / 4803
  31463. }
  31464. },
  31465. maw: {
  31466. height: math.unit(1, "feet"),
  31467. name: "Maw",
  31468. image: {
  31469. source: "./media/characters/casselene-yaro/maw.svg"
  31470. }
  31471. },
  31472. },
  31473. [
  31474. {
  31475. name: "Macro",
  31476. height: math.unit(190, "feet"),
  31477. default: true
  31478. },
  31479. ]
  31480. ))
  31481. characterMakers.push(() => makeCharacter(
  31482. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31483. {
  31484. front: {
  31485. height: math.unit(10, "feet"),
  31486. weight: math.unit(15015, "lb"),
  31487. name: "Front",
  31488. image: {
  31489. source: "./media/characters/platine/front.svg",
  31490. extra: 1741/1650,
  31491. bottom: 84/1825
  31492. }
  31493. },
  31494. side: {
  31495. height: math.unit(10, "feet"),
  31496. weight: math.unit(15015, "lb"),
  31497. name: "Side",
  31498. image: {
  31499. source: "./media/characters/platine/side.svg",
  31500. extra: 1790/1705,
  31501. bottom: 29/1819
  31502. }
  31503. },
  31504. },
  31505. [
  31506. {
  31507. name: "Normal",
  31508. height: math.unit(10, "feet"),
  31509. default: true
  31510. },
  31511. {
  31512. name: "Macro",
  31513. height: math.unit(100, "feet")
  31514. },
  31515. {
  31516. name: "Megamacro",
  31517. height: math.unit(1000, "feet")
  31518. },
  31519. ]
  31520. ))
  31521. characterMakers.push(() => makeCharacter(
  31522. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31523. {
  31524. front: {
  31525. height: math.unit(15 + 5 / 12, "feet"),
  31526. weight: math.unit(4600, "lb"),
  31527. name: "Front",
  31528. image: {
  31529. source: "./media/characters/neapolitan-ananassa/front.svg",
  31530. extra: 2903 / 2736,
  31531. bottom: 0 / 2903
  31532. }
  31533. },
  31534. side: {
  31535. height: math.unit(15 + 5 / 12, "feet"),
  31536. weight: math.unit(4600, "lb"),
  31537. name: "Side",
  31538. image: {
  31539. source: "./media/characters/neapolitan-ananassa/side.svg",
  31540. extra: 2925 / 2719,
  31541. bottom: 0 / 2925
  31542. }
  31543. },
  31544. back: {
  31545. height: math.unit(15 + 5 / 12, "feet"),
  31546. weight: math.unit(4600, "lb"),
  31547. name: "Back",
  31548. image: {
  31549. source: "./media/characters/neapolitan-ananassa/back.svg",
  31550. extra: 2903 / 2736,
  31551. bottom: 0 / 2903
  31552. }
  31553. },
  31554. },
  31555. [
  31556. {
  31557. name: "Normal",
  31558. height: math.unit(15 + 5 / 12, "feet"),
  31559. default: true
  31560. },
  31561. {
  31562. name: "Post-Millenium",
  31563. height: math.unit(35 + 5 / 12, "feet")
  31564. },
  31565. {
  31566. name: "Post-Era",
  31567. height: math.unit(450 + 5 / 12, "feet")
  31568. },
  31569. ]
  31570. ))
  31571. characterMakers.push(() => makeCharacter(
  31572. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31573. {
  31574. front: {
  31575. height: math.unit(300, "meters"),
  31576. weight: math.unit(125000, "tonnes"),
  31577. name: "Front",
  31578. image: {
  31579. source: "./media/characters/pazuzu/front.svg",
  31580. extra: 877 / 794,
  31581. bottom: 47 / 924
  31582. }
  31583. },
  31584. },
  31585. [
  31586. {
  31587. name: "Macro",
  31588. height: math.unit(300, "meters"),
  31589. default: true
  31590. },
  31591. ]
  31592. ))
  31593. characterMakers.push(() => makeCharacter(
  31594. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31595. {
  31596. side: {
  31597. height: math.unit(10 + 7 / 12, "feet"),
  31598. weight: math.unit(2.5, "tons"),
  31599. name: "Side",
  31600. image: {
  31601. source: "./media/characters/aasha/side.svg",
  31602. extra: 1345 / 1245,
  31603. bottom: 111 / 1456
  31604. }
  31605. },
  31606. back: {
  31607. height: math.unit(10 + 7 / 12, "feet"),
  31608. weight: math.unit(2.5, "tons"),
  31609. name: "Back",
  31610. image: {
  31611. source: "./media/characters/aasha/back.svg",
  31612. extra: 1133 / 1057,
  31613. bottom: 257 / 1390
  31614. }
  31615. },
  31616. },
  31617. [
  31618. {
  31619. name: "Normal",
  31620. height: math.unit(10 + 7 / 12, "feet"),
  31621. default: true
  31622. },
  31623. ]
  31624. ))
  31625. characterMakers.push(() => makeCharacter(
  31626. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31627. {
  31628. front: {
  31629. height: math.unit(6 + 3 / 12, "feet"),
  31630. name: "Front",
  31631. image: {
  31632. source: "./media/characters/nevan/front.svg",
  31633. extra: 704 / 704,
  31634. bottom: 28 / 732
  31635. }
  31636. },
  31637. back: {
  31638. height: math.unit(6 + 3 / 12, "feet"),
  31639. name: "Back",
  31640. image: {
  31641. source: "./media/characters/nevan/back.svg",
  31642. extra: 714 / 714,
  31643. bottom: 21 / 735
  31644. }
  31645. },
  31646. frontFlaccid: {
  31647. height: math.unit(6 + 3 / 12, "feet"),
  31648. name: "Front (Flaccid)",
  31649. image: {
  31650. source: "./media/characters/nevan/front-flaccid.svg",
  31651. extra: 704 / 704,
  31652. bottom: 28 / 732
  31653. }
  31654. },
  31655. frontErect: {
  31656. height: math.unit(6 + 3 / 12, "feet"),
  31657. name: "Front (Erect)",
  31658. image: {
  31659. source: "./media/characters/nevan/front-erect.svg",
  31660. extra: 704 / 704,
  31661. bottom: 28 / 732
  31662. }
  31663. },
  31664. backFlaccid: {
  31665. height: math.unit(6 + 3 / 12, "feet"),
  31666. name: "Back (Flaccid)",
  31667. image: {
  31668. source: "./media/characters/nevan/back-flaccid.svg",
  31669. extra: 714 / 714,
  31670. bottom: 21 / 735
  31671. }
  31672. },
  31673. },
  31674. [
  31675. {
  31676. name: "Normal",
  31677. height: math.unit(6 + 3 / 12, "feet"),
  31678. default: true
  31679. },
  31680. ]
  31681. ))
  31682. characterMakers.push(() => makeCharacter(
  31683. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31684. {
  31685. front: {
  31686. height: math.unit(4, "feet"),
  31687. name: "Front",
  31688. image: {
  31689. source: "./media/characters/arhan/front.svg",
  31690. extra: 3368 / 3133,
  31691. bottom: 0 / 3368
  31692. }
  31693. },
  31694. side: {
  31695. height: math.unit(4, "feet"),
  31696. name: "Side",
  31697. image: {
  31698. source: "./media/characters/arhan/side.svg",
  31699. extra: 3347 / 3105,
  31700. bottom: 0 / 3347
  31701. }
  31702. },
  31703. tongue: {
  31704. height: math.unit(1.42, "feet"),
  31705. name: "Tongue",
  31706. image: {
  31707. source: "./media/characters/arhan/tongue.svg"
  31708. }
  31709. },
  31710. head: {
  31711. height: math.unit(0.85, "feet"),
  31712. name: "Head",
  31713. image: {
  31714. source: "./media/characters/arhan/head.svg"
  31715. }
  31716. },
  31717. },
  31718. [
  31719. {
  31720. name: "Normal",
  31721. height: math.unit(4, "feet"),
  31722. default: true
  31723. },
  31724. ]
  31725. ))
  31726. characterMakers.push(() => makeCharacter(
  31727. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31728. {
  31729. front: {
  31730. height: math.unit(5 + 7.5 / 12, "feet"),
  31731. weight: math.unit(120, "lb"),
  31732. name: "Front",
  31733. image: {
  31734. source: "./media/characters/digi-duncan/front.svg",
  31735. extra: 330 / 326,
  31736. bottom: 16 / 346
  31737. }
  31738. },
  31739. side: {
  31740. height: math.unit(5 + 7.5 / 12, "feet"),
  31741. weight: math.unit(120, "lb"),
  31742. name: "Side",
  31743. image: {
  31744. source: "./media/characters/digi-duncan/side.svg",
  31745. extra: 341 / 337,
  31746. bottom: 1 / 342
  31747. }
  31748. },
  31749. back: {
  31750. height: math.unit(5 + 7.5 / 12, "feet"),
  31751. weight: math.unit(120, "lb"),
  31752. name: "Back",
  31753. image: {
  31754. source: "./media/characters/digi-duncan/back.svg",
  31755. extra: 330 / 326,
  31756. bottom: 12 / 342
  31757. }
  31758. },
  31759. },
  31760. [
  31761. {
  31762. name: "Speck",
  31763. height: math.unit(0.25, "mm")
  31764. },
  31765. {
  31766. name: "Micro",
  31767. height: math.unit(5, "mm")
  31768. },
  31769. {
  31770. name: "Tiny",
  31771. height: math.unit(0.5, "inches"),
  31772. default: true
  31773. },
  31774. {
  31775. name: "Human",
  31776. height: math.unit(5 + 7.5 / 12, "feet")
  31777. },
  31778. {
  31779. name: "Minigiant",
  31780. height: math.unit(8 + 5.25, "feet")
  31781. },
  31782. {
  31783. name: "Giant",
  31784. height: math.unit(2000, "feet")
  31785. },
  31786. {
  31787. name: "Mega",
  31788. height: math.unit(371.1, "miles")
  31789. },
  31790. ]
  31791. ))
  31792. characterMakers.push(() => makeCharacter(
  31793. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31794. {
  31795. front: {
  31796. height: math.unit(2, "meters"),
  31797. weight: math.unit(350, "kg"),
  31798. name: "Front",
  31799. image: {
  31800. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31801. extra: 898 / 838,
  31802. bottom: 9 / 907
  31803. }
  31804. },
  31805. },
  31806. [
  31807. {
  31808. name: "Micro",
  31809. height: math.unit(8, "meters")
  31810. },
  31811. {
  31812. name: "Normal",
  31813. height: math.unit(50, "meters"),
  31814. default: true
  31815. },
  31816. {
  31817. name: "Macro",
  31818. height: math.unit(500, "meters")
  31819. },
  31820. ]
  31821. ))
  31822. characterMakers.push(() => makeCharacter(
  31823. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31824. {
  31825. front: {
  31826. height: math.unit(6 + 6 / 12, "feet"),
  31827. name: "Front",
  31828. image: {
  31829. source: "./media/characters/khardesh/front.svg",
  31830. extra: 1788/1596,
  31831. bottom: 66/1854
  31832. }
  31833. },
  31834. back: {
  31835. height: math.unit(6 + 6 / 12, "feet"),
  31836. name: "Back",
  31837. image: {
  31838. source: "./media/characters/khardesh/back.svg",
  31839. extra: 1781/1584,
  31840. bottom: 68/1849
  31841. }
  31842. },
  31843. },
  31844. [
  31845. {
  31846. name: "Normal",
  31847. height: math.unit(6 + 6 / 12, "feet"),
  31848. default: true
  31849. },
  31850. {
  31851. name: "Normal+",
  31852. height: math.unit(4, "meters")
  31853. },
  31854. {
  31855. name: "Macro",
  31856. height: math.unit(50, "meters")
  31857. },
  31858. {
  31859. name: "Macro+",
  31860. height: math.unit(100, "meters")
  31861. },
  31862. {
  31863. name: "Megamacro",
  31864. height: math.unit(20, "km")
  31865. },
  31866. ]
  31867. ))
  31868. characterMakers.push(() => makeCharacter(
  31869. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31870. {
  31871. front: {
  31872. height: math.unit(6, "feet"),
  31873. weight: math.unit(150, "lb"),
  31874. name: "Front",
  31875. image: {
  31876. source: "./media/characters/kosho/front.svg",
  31877. extra: 1847 / 1847,
  31878. bottom: 86 / 1933
  31879. }
  31880. },
  31881. },
  31882. [
  31883. {
  31884. name: "Second-stage micro",
  31885. height: math.unit(0.5, "inches")
  31886. },
  31887. {
  31888. name: "First-stage micro",
  31889. height: math.unit(6, "inches")
  31890. },
  31891. {
  31892. name: "Normal",
  31893. height: math.unit(6, "feet"),
  31894. default: true
  31895. },
  31896. {
  31897. name: "First-stage macro",
  31898. height: math.unit(72, "feet")
  31899. },
  31900. {
  31901. name: "Second-stage macro",
  31902. height: math.unit(864, "feet")
  31903. },
  31904. ]
  31905. ))
  31906. characterMakers.push(() => makeCharacter(
  31907. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31908. {
  31909. normal: {
  31910. height: math.unit(4 + 6 / 12, "feet"),
  31911. name: "Normal",
  31912. image: {
  31913. source: "./media/characters/hydra/normal.svg",
  31914. extra: 2833 / 2634,
  31915. bottom: 68 / 2901
  31916. }
  31917. },
  31918. smol: {
  31919. height: math.unit(0.705, "inches"),
  31920. name: "Smol",
  31921. image: {
  31922. source: "./media/characters/hydra/smol.svg",
  31923. extra: 2715 / 2540,
  31924. bottom: 0 / 2715
  31925. }
  31926. },
  31927. },
  31928. [
  31929. {
  31930. name: "Normal",
  31931. height: math.unit(4 + 6 / 12, "feet"),
  31932. default: true
  31933. }
  31934. ]
  31935. ))
  31936. characterMakers.push(() => makeCharacter(
  31937. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31938. {
  31939. front: {
  31940. height: math.unit(0.6, "cm"),
  31941. name: "Front",
  31942. image: {
  31943. source: "./media/characters/daz/front.svg",
  31944. extra: 1682 / 1164,
  31945. bottom: 42 / 1724
  31946. }
  31947. },
  31948. },
  31949. [
  31950. {
  31951. name: "Normal",
  31952. height: math.unit(0.6, "cm"),
  31953. default: true
  31954. },
  31955. ]
  31956. ))
  31957. characterMakers.push(() => makeCharacter(
  31958. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31959. {
  31960. front: {
  31961. height: math.unit(6, "feet"),
  31962. weight: math.unit(235, "lb"),
  31963. name: "Front",
  31964. image: {
  31965. source: "./media/characters/theo-pangolin/front.svg",
  31966. extra: 1996 / 1969,
  31967. bottom: 115 / 2111
  31968. }
  31969. },
  31970. back: {
  31971. height: math.unit(6, "feet"),
  31972. weight: math.unit(235, "lb"),
  31973. name: "Back",
  31974. image: {
  31975. source: "./media/characters/theo-pangolin/back.svg",
  31976. extra: 1979 / 1979,
  31977. bottom: 40 / 2019
  31978. }
  31979. },
  31980. feral: {
  31981. height: math.unit(2, "feet"),
  31982. weight: math.unit(30, "lb"),
  31983. name: "Feral",
  31984. image: {
  31985. source: "./media/characters/theo-pangolin/feral.svg",
  31986. extra: 803 / 791,
  31987. bottom: 181 / 984
  31988. }
  31989. },
  31990. footFive: {
  31991. height: math.unit(1.43, "feet"),
  31992. name: "Foot (Five Toes)",
  31993. image: {
  31994. source: "./media/characters/theo-pangolin/foot-five.svg"
  31995. }
  31996. },
  31997. footFour: {
  31998. height: math.unit(1.43, "feet"),
  31999. name: "Foot (Four Toes)",
  32000. image: {
  32001. source: "./media/characters/theo-pangolin/foot-four.svg"
  32002. }
  32003. },
  32004. handFour: {
  32005. height: math.unit(0.81, "feet"),
  32006. name: "Hand (Four Fingers)",
  32007. image: {
  32008. source: "./media/characters/theo-pangolin/hand-four.svg"
  32009. }
  32010. },
  32011. handThree: {
  32012. height: math.unit(0.81, "feet"),
  32013. name: "Hand (Three Fingers)",
  32014. image: {
  32015. source: "./media/characters/theo-pangolin/hand-three.svg"
  32016. }
  32017. },
  32018. headFront: {
  32019. height: math.unit(1.37, "feet"),
  32020. name: "Head (Front)",
  32021. image: {
  32022. source: "./media/characters/theo-pangolin/head-front.svg"
  32023. }
  32024. },
  32025. headSide: {
  32026. height: math.unit(1.43, "feet"),
  32027. name: "Head (Side)",
  32028. image: {
  32029. source: "./media/characters/theo-pangolin/head-side.svg"
  32030. }
  32031. },
  32032. tongue: {
  32033. height: math.unit(2.29, "feet"),
  32034. name: "Tongue",
  32035. image: {
  32036. source: "./media/characters/theo-pangolin/tongue.svg"
  32037. }
  32038. },
  32039. },
  32040. [
  32041. {
  32042. name: "Normal",
  32043. height: math.unit(6, "feet")
  32044. },
  32045. {
  32046. name: "Macro",
  32047. height: math.unit(400, "feet"),
  32048. default: true
  32049. },
  32050. ]
  32051. ))
  32052. characterMakers.push(() => makeCharacter(
  32053. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32054. {
  32055. front: {
  32056. height: math.unit(6, "inches"),
  32057. weight: math.unit(0.036, "kg"),
  32058. name: "Front",
  32059. image: {
  32060. source: "./media/characters/renée/front.svg",
  32061. extra: 900 / 886,
  32062. bottom: 8 / 908
  32063. }
  32064. },
  32065. },
  32066. [
  32067. {
  32068. name: "Nano",
  32069. height: math.unit(1, "nm")
  32070. },
  32071. {
  32072. name: "Micro",
  32073. height: math.unit(1, "mm")
  32074. },
  32075. {
  32076. name: "Normal",
  32077. height: math.unit(6, "inches")
  32078. },
  32079. {
  32080. name: "Macro",
  32081. height: math.unit(2000, "feet"),
  32082. default: true
  32083. },
  32084. {
  32085. name: "Megamacro",
  32086. height: math.unit(2, "km")
  32087. },
  32088. {
  32089. name: "Gigamacro",
  32090. height: math.unit(2000, "km")
  32091. },
  32092. {
  32093. name: "Teramacro",
  32094. height: math.unit(250000, "km")
  32095. },
  32096. ]
  32097. ))
  32098. characterMakers.push(() => makeCharacter(
  32099. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32100. {
  32101. front: {
  32102. height: math.unit(4, "meters"),
  32103. weight: math.unit(150, "kg"),
  32104. name: "Front",
  32105. image: {
  32106. source: "./media/characters/caledvwlch/front.svg",
  32107. extra: 1757/1537,
  32108. bottom: 31/1788
  32109. }
  32110. },
  32111. side: {
  32112. height: math.unit(4, "meters"),
  32113. weight: math.unit(150, "kg"),
  32114. name: "Side",
  32115. image: {
  32116. source: "./media/characters/caledvwlch/side.svg",
  32117. extra: 1605 / 1536,
  32118. bottom: 31 / 1636
  32119. }
  32120. },
  32121. back: {
  32122. height: math.unit(4, "meters"),
  32123. weight: math.unit(150, "kg"),
  32124. name: "Back",
  32125. image: {
  32126. source: "./media/characters/caledvwlch/back.svg",
  32127. extra: 1635 / 1565,
  32128. bottom: 27 / 1662
  32129. }
  32130. },
  32131. },
  32132. [
  32133. {
  32134. name: "\"Incognito\"",
  32135. height: math.unit(4, "meters")
  32136. },
  32137. {
  32138. name: "Small rampage",
  32139. height: math.unit(600, "meters")
  32140. },
  32141. {
  32142. name: "Mega",
  32143. height: math.unit(30, "km")
  32144. },
  32145. {
  32146. name: "Home-size",
  32147. height: math.unit(50, "km"),
  32148. default: true
  32149. },
  32150. {
  32151. name: "Giga",
  32152. height: math.unit(300, "km")
  32153. },
  32154. {
  32155. name: "Lounging",
  32156. height: math.unit(11000, "km")
  32157. },
  32158. {
  32159. name: "Planet snacking",
  32160. height: math.unit(2000000, "km")
  32161. },
  32162. ]
  32163. ))
  32164. characterMakers.push(() => makeCharacter(
  32165. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32166. {
  32167. front: {
  32168. height: math.unit(6, "feet"),
  32169. weight: math.unit(215, "lb"),
  32170. name: "Front",
  32171. image: {
  32172. source: "./media/characters/sapphire-svell/front.svg",
  32173. extra: 495 / 455,
  32174. bottom: 20 / 515
  32175. }
  32176. },
  32177. back: {
  32178. height: math.unit(6, "feet"),
  32179. weight: math.unit(216, "lb"),
  32180. name: "Back",
  32181. image: {
  32182. source: "./media/characters/sapphire-svell/back.svg",
  32183. extra: 497 / 477,
  32184. bottom: 7 / 504
  32185. }
  32186. },
  32187. maw: {
  32188. height: math.unit(1.57, "feet"),
  32189. name: "Maw",
  32190. image: {
  32191. source: "./media/characters/sapphire-svell/maw.svg"
  32192. }
  32193. },
  32194. foot: {
  32195. height: math.unit(1.07, "feet"),
  32196. name: "Foot",
  32197. image: {
  32198. source: "./media/characters/sapphire-svell/foot.svg"
  32199. }
  32200. },
  32201. toering: {
  32202. height: math.unit(1.7, "inch"),
  32203. name: "Toering",
  32204. image: {
  32205. source: "./media/characters/sapphire-svell/toering.svg"
  32206. }
  32207. },
  32208. },
  32209. [
  32210. {
  32211. name: "Normal",
  32212. height: math.unit(300, "feet"),
  32213. default: true
  32214. },
  32215. {
  32216. name: "Augmented",
  32217. height: math.unit(1250, "feet")
  32218. },
  32219. {
  32220. name: "Unleashed",
  32221. height: math.unit(3000, "feet")
  32222. },
  32223. ]
  32224. ))
  32225. characterMakers.push(() => makeCharacter(
  32226. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32227. {
  32228. side: {
  32229. height: math.unit(2 + 3 / 12, "feet"),
  32230. weight: math.unit(110, "lb"),
  32231. name: "Side",
  32232. image: {
  32233. source: "./media/characters/glitch-flux/side.svg",
  32234. extra: 997 / 805,
  32235. bottom: 20 / 1017
  32236. }
  32237. },
  32238. },
  32239. [
  32240. {
  32241. name: "Normal",
  32242. height: math.unit(2 + 3 / 12, "feet"),
  32243. default: true
  32244. },
  32245. ]
  32246. ))
  32247. characterMakers.push(() => makeCharacter(
  32248. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32249. {
  32250. front: {
  32251. height: math.unit(4, "meters"),
  32252. name: "Front",
  32253. image: {
  32254. source: "./media/characters/mid/front.svg",
  32255. extra: 507 / 476,
  32256. bottom: 17 / 524
  32257. }
  32258. },
  32259. back: {
  32260. height: math.unit(4, "meters"),
  32261. name: "Back",
  32262. image: {
  32263. source: "./media/characters/mid/back.svg",
  32264. extra: 519 / 487,
  32265. bottom: 7 / 526
  32266. }
  32267. },
  32268. stuck: {
  32269. height: math.unit(2.2, "meters"),
  32270. name: "Stuck",
  32271. image: {
  32272. source: "./media/characters/mid/stuck.svg",
  32273. extra: 1951 / 1869,
  32274. bottom: 88 / 2039
  32275. }
  32276. }
  32277. },
  32278. [
  32279. {
  32280. name: "Normal",
  32281. height: math.unit(4, "meters"),
  32282. default: true
  32283. },
  32284. {
  32285. name: "Big",
  32286. height: math.unit(10, "meters")
  32287. },
  32288. {
  32289. name: "Macro",
  32290. height: math.unit(800, "meters")
  32291. },
  32292. {
  32293. name: "Megamacro",
  32294. height: math.unit(100, "km")
  32295. },
  32296. {
  32297. name: "Overgrown",
  32298. height: math.unit(1, "parsec")
  32299. },
  32300. ]
  32301. ))
  32302. characterMakers.push(() => makeCharacter(
  32303. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32304. {
  32305. front: {
  32306. height: math.unit(2.5, "meters"),
  32307. weight: math.unit(225, "kg"),
  32308. name: "Front",
  32309. image: {
  32310. source: "./media/characters/iris/front.svg",
  32311. extra: 3348 / 3251,
  32312. bottom: 205 / 3553
  32313. }
  32314. },
  32315. maw: {
  32316. height: math.unit(0.56, "meter"),
  32317. name: "Maw",
  32318. image: {
  32319. source: "./media/characters/iris/maw.svg"
  32320. }
  32321. },
  32322. },
  32323. [
  32324. {
  32325. name: "Mewter cat",
  32326. height: math.unit(1.2, "meters")
  32327. },
  32328. {
  32329. name: "Normal",
  32330. height: math.unit(2.5, "meters"),
  32331. default: true
  32332. },
  32333. {
  32334. name: "Minimacro",
  32335. height: math.unit(18, "feet")
  32336. },
  32337. {
  32338. name: "Macro",
  32339. height: math.unit(140, "feet")
  32340. },
  32341. {
  32342. name: "Macro+",
  32343. height: math.unit(180, "meters")
  32344. },
  32345. {
  32346. name: "Megamacro",
  32347. height: math.unit(2746, "meters")
  32348. },
  32349. ]
  32350. ))
  32351. characterMakers.push(() => makeCharacter(
  32352. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32353. {
  32354. front: {
  32355. height: math.unit(6, "feet"),
  32356. weight: math.unit(135, "lb"),
  32357. name: "Front",
  32358. image: {
  32359. source: "./media/characters/axel/front.svg",
  32360. extra: 908 / 908,
  32361. bottom: 58 / 966
  32362. }
  32363. },
  32364. side: {
  32365. height: math.unit(6, "feet"),
  32366. weight: math.unit(135, "lb"),
  32367. name: "Side",
  32368. image: {
  32369. source: "./media/characters/axel/side.svg",
  32370. extra: 958 / 958,
  32371. bottom: 11 / 969
  32372. }
  32373. },
  32374. back: {
  32375. height: math.unit(6, "feet"),
  32376. weight: math.unit(135, "lb"),
  32377. name: "Back",
  32378. image: {
  32379. source: "./media/characters/axel/back.svg",
  32380. extra: 887 / 887,
  32381. bottom: 34 / 921
  32382. }
  32383. },
  32384. head: {
  32385. height: math.unit(1.07, "feet"),
  32386. name: "Head",
  32387. image: {
  32388. source: "./media/characters/axel/head.svg"
  32389. }
  32390. },
  32391. beak: {
  32392. height: math.unit(1.4, "feet"),
  32393. name: "Beak",
  32394. image: {
  32395. source: "./media/characters/axel/beak.svg"
  32396. }
  32397. },
  32398. beakSide: {
  32399. height: math.unit(1.4, "feet"),
  32400. name: "Beak Side",
  32401. image: {
  32402. source: "./media/characters/axel/beak-side.svg"
  32403. }
  32404. },
  32405. sheath: {
  32406. height: math.unit(0.5, "feet"),
  32407. name: "Sheath",
  32408. image: {
  32409. source: "./media/characters/axel/sheath.svg"
  32410. }
  32411. },
  32412. dick: {
  32413. height: math.unit(0.98, "feet"),
  32414. name: "Dick",
  32415. image: {
  32416. source: "./media/characters/axel/dick.svg"
  32417. }
  32418. },
  32419. },
  32420. [
  32421. {
  32422. name: "Macro",
  32423. height: math.unit(68, "meters"),
  32424. default: true
  32425. },
  32426. ]
  32427. ))
  32428. characterMakers.push(() => makeCharacter(
  32429. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32430. {
  32431. front: {
  32432. height: math.unit(3.5, "meters"),
  32433. weight: math.unit(1200, "kg"),
  32434. name: "Front",
  32435. image: {
  32436. source: "./media/characters/joanna/front.svg",
  32437. extra: 1596 / 1488,
  32438. bottom: 29 / 1625
  32439. }
  32440. },
  32441. back: {
  32442. height: math.unit(3.5, "meters"),
  32443. weight: math.unit(1200, "kg"),
  32444. name: "Back",
  32445. image: {
  32446. source: "./media/characters/joanna/back.svg",
  32447. extra: 1594 / 1495,
  32448. bottom: 26 / 1620
  32449. }
  32450. },
  32451. frontShorts: {
  32452. height: math.unit(3.5, "meters"),
  32453. weight: math.unit(1200, "kg"),
  32454. name: "Front (Shorts)",
  32455. image: {
  32456. source: "./media/characters/joanna/front-shorts.svg",
  32457. extra: 1596 / 1488,
  32458. bottom: 29 / 1625
  32459. }
  32460. },
  32461. frontBiker: {
  32462. height: math.unit(3.5, "meters"),
  32463. weight: math.unit(1200, "kg"),
  32464. name: "Front (Biker)",
  32465. image: {
  32466. source: "./media/characters/joanna/front-biker.svg",
  32467. extra: 1596 / 1488,
  32468. bottom: 29 / 1625
  32469. }
  32470. },
  32471. backBiker: {
  32472. height: math.unit(3.5, "meters"),
  32473. weight: math.unit(1200, "kg"),
  32474. name: "Back (Biker)",
  32475. image: {
  32476. source: "./media/characters/joanna/back-biker.svg",
  32477. extra: 1594 / 1495,
  32478. bottom: 88 / 1682
  32479. }
  32480. },
  32481. bikeLeft: {
  32482. height: math.unit(2.4, "meters"),
  32483. weight: math.unit(1600, "kg"),
  32484. name: "Bike (Left)",
  32485. image: {
  32486. source: "./media/characters/joanna/bike-left.svg",
  32487. extra: 720 / 720,
  32488. bottom: 8 / 728
  32489. }
  32490. },
  32491. bikeRight: {
  32492. height: math.unit(2.4, "meters"),
  32493. weight: math.unit(1600, "kg"),
  32494. name: "Bike (Right)",
  32495. image: {
  32496. source: "./media/characters/joanna/bike-right.svg",
  32497. extra: 720 / 720,
  32498. bottom: 8 / 728
  32499. }
  32500. },
  32501. },
  32502. [
  32503. {
  32504. name: "Incognito",
  32505. height: math.unit(3.5, "meters")
  32506. },
  32507. {
  32508. name: "Casual Big",
  32509. height: math.unit(200, "meters")
  32510. },
  32511. {
  32512. name: "Macro",
  32513. height: math.unit(600, "meters")
  32514. },
  32515. {
  32516. name: "Original",
  32517. height: math.unit(20, "km"),
  32518. default: true
  32519. },
  32520. {
  32521. name: "Giga",
  32522. height: math.unit(400, "km")
  32523. },
  32524. {
  32525. name: "Lounging",
  32526. height: math.unit(1500, "km")
  32527. },
  32528. {
  32529. name: "Planetary",
  32530. height: math.unit(200000, "km")
  32531. },
  32532. ]
  32533. ))
  32534. characterMakers.push(() => makeCharacter(
  32535. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32536. {
  32537. front: {
  32538. height: math.unit(6, "feet"),
  32539. weight: math.unit(150, "lb"),
  32540. name: "Front",
  32541. image: {
  32542. source: "./media/characters/hugo-sigil/front.svg",
  32543. extra: 522 / 500,
  32544. bottom: 2 / 524
  32545. }
  32546. },
  32547. back: {
  32548. height: math.unit(6, "feet"),
  32549. weight: math.unit(150, "lb"),
  32550. name: "Back",
  32551. image: {
  32552. source: "./media/characters/hugo-sigil/back.svg",
  32553. extra: 519 / 495,
  32554. bottom: 5 / 524
  32555. }
  32556. },
  32557. maw: {
  32558. height: math.unit(1.4, "feet"),
  32559. weight: math.unit(150, "lb"),
  32560. name: "Maw",
  32561. image: {
  32562. source: "./media/characters/hugo-sigil/maw.svg"
  32563. }
  32564. },
  32565. feet: {
  32566. height: math.unit(1.56, "feet"),
  32567. weight: math.unit(150, "lb"),
  32568. name: "Feet",
  32569. image: {
  32570. source: "./media/characters/hugo-sigil/feet.svg",
  32571. extra: 177 / 177,
  32572. bottom: 12 / 189
  32573. }
  32574. },
  32575. },
  32576. [
  32577. {
  32578. name: "Normal",
  32579. height: math.unit(6, "feet")
  32580. },
  32581. {
  32582. name: "Macro",
  32583. height: math.unit(200, "feet"),
  32584. default: true
  32585. },
  32586. ]
  32587. ))
  32588. characterMakers.push(() => makeCharacter(
  32589. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32590. {
  32591. front: {
  32592. height: math.unit(6, "feet"),
  32593. weight: math.unit(150, "lb"),
  32594. name: "Front",
  32595. image: {
  32596. source: "./media/characters/peri/front.svg",
  32597. extra: 2354 / 2233,
  32598. bottom: 49 / 2403
  32599. }
  32600. },
  32601. },
  32602. [
  32603. {
  32604. name: "Really Small",
  32605. height: math.unit(1, "nm")
  32606. },
  32607. {
  32608. name: "Micro",
  32609. height: math.unit(4, "inches")
  32610. },
  32611. {
  32612. name: "Normal",
  32613. height: math.unit(7, "inches"),
  32614. default: true
  32615. },
  32616. {
  32617. name: "Macro",
  32618. height: math.unit(400, "feet")
  32619. },
  32620. {
  32621. name: "Megamacro",
  32622. height: math.unit(100, "miles")
  32623. },
  32624. ]
  32625. ))
  32626. characterMakers.push(() => makeCharacter(
  32627. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32628. {
  32629. frontSlim: {
  32630. height: math.unit(7, "feet"),
  32631. name: "Front (Slim)",
  32632. image: {
  32633. source: "./media/characters/issilora/front-slim.svg",
  32634. extra: 529 / 449,
  32635. bottom: 53 / 582
  32636. }
  32637. },
  32638. sideSlim: {
  32639. height: math.unit(7, "feet"),
  32640. name: "Side (Slim)",
  32641. image: {
  32642. source: "./media/characters/issilora/side-slim.svg",
  32643. extra: 570 / 480,
  32644. bottom: 30 / 600
  32645. }
  32646. },
  32647. backSlim: {
  32648. height: math.unit(7, "feet"),
  32649. name: "Back (Slim)",
  32650. image: {
  32651. source: "./media/characters/issilora/back-slim.svg",
  32652. extra: 537 / 455,
  32653. bottom: 46 / 583
  32654. }
  32655. },
  32656. frontBuff: {
  32657. height: math.unit(7, "feet"),
  32658. name: "Front (Buff)",
  32659. image: {
  32660. source: "./media/characters/issilora/front-buff.svg",
  32661. extra: 2310 / 2035,
  32662. bottom: 335 / 2645
  32663. }
  32664. },
  32665. head: {
  32666. height: math.unit(1.94, "feet"),
  32667. name: "Head",
  32668. image: {
  32669. source: "./media/characters/issilora/head.svg"
  32670. }
  32671. },
  32672. },
  32673. [
  32674. {
  32675. name: "Minimum",
  32676. height: math.unit(7, "feet")
  32677. },
  32678. {
  32679. name: "Comfortable",
  32680. height: math.unit(17, "feet")
  32681. },
  32682. {
  32683. name: "Fun Size",
  32684. height: math.unit(47, "feet")
  32685. },
  32686. {
  32687. name: "Natural Macro",
  32688. height: math.unit(137, "feet"),
  32689. default: true
  32690. },
  32691. {
  32692. name: "Maximum Kaiju",
  32693. height: math.unit(397, "feet")
  32694. },
  32695. ]
  32696. ))
  32697. characterMakers.push(() => makeCharacter(
  32698. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32699. {
  32700. front: {
  32701. height: math.unit(50 + 9/12, "feet"),
  32702. weight: math.unit(32.8, "tons"),
  32703. name: "Front",
  32704. image: {
  32705. source: "./media/characters/irb'iiritaahn/front.svg",
  32706. extra: 1878/1826,
  32707. bottom: 326/2204
  32708. }
  32709. },
  32710. back: {
  32711. height: math.unit(50 + 9/12, "feet"),
  32712. weight: math.unit(32.8, "tons"),
  32713. name: "Back",
  32714. image: {
  32715. source: "./media/characters/irb'iiritaahn/back.svg",
  32716. extra: 2052/2018,
  32717. bottom: 152/2204
  32718. }
  32719. },
  32720. head: {
  32721. height: math.unit(12.86, "feet"),
  32722. name: "Head",
  32723. image: {
  32724. source: "./media/characters/irb'iiritaahn/head.svg"
  32725. }
  32726. },
  32727. maw: {
  32728. height: math.unit(9.66, "feet"),
  32729. name: "Maw",
  32730. image: {
  32731. source: "./media/characters/irb'iiritaahn/maw.svg"
  32732. }
  32733. },
  32734. frontDick: {
  32735. height: math.unit(8.78461, "feet"),
  32736. name: "Front Dick",
  32737. image: {
  32738. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32739. }
  32740. },
  32741. rearDick: {
  32742. height: math.unit(8.78461, "feet"),
  32743. name: "Rear Dick",
  32744. image: {
  32745. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32746. }
  32747. },
  32748. rearDickUnfolded: {
  32749. height: math.unit(8.78, "feet"),
  32750. name: "Rear Dick (Unfolded)",
  32751. image: {
  32752. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32753. }
  32754. },
  32755. wings: {
  32756. height: math.unit(43, "feet"),
  32757. name: "Wings",
  32758. image: {
  32759. source: "./media/characters/irb'iiritaahn/wings.svg"
  32760. }
  32761. },
  32762. },
  32763. [
  32764. {
  32765. name: "Macro",
  32766. height: math.unit(50 + 9/12, "feet"),
  32767. default: true
  32768. },
  32769. ]
  32770. ))
  32771. characterMakers.push(() => makeCharacter(
  32772. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32773. {
  32774. front: {
  32775. height: math.unit(205, "cm"),
  32776. weight: math.unit(102, "kg"),
  32777. name: "Front",
  32778. image: {
  32779. source: "./media/characters/irbisgreif/front.svg",
  32780. extra: 785/706,
  32781. bottom: 13/798
  32782. }
  32783. },
  32784. back: {
  32785. height: math.unit(205, "cm"),
  32786. weight: math.unit(102, "kg"),
  32787. name: "Back",
  32788. image: {
  32789. source: "./media/characters/irbisgreif/back.svg",
  32790. extra: 713/701,
  32791. bottom: 26/739
  32792. }
  32793. },
  32794. frontDressed: {
  32795. height: math.unit(216, "cm"),
  32796. weight: math.unit(102, "kg"),
  32797. name: "Front-dressed",
  32798. image: {
  32799. source: "./media/characters/irbisgreif/front-dressed.svg",
  32800. extra: 902/776,
  32801. bottom: 14/916
  32802. }
  32803. },
  32804. sideDressed: {
  32805. height: math.unit(195, "cm"),
  32806. weight: math.unit(102, "kg"),
  32807. name: "Side-dressed",
  32808. image: {
  32809. source: "./media/characters/irbisgreif/side-dressed.svg",
  32810. extra: 788/688,
  32811. bottom: 21/809
  32812. }
  32813. },
  32814. backDressed: {
  32815. height: math.unit(216, "cm"),
  32816. weight: math.unit(102, "kg"),
  32817. name: "Back-dressed",
  32818. image: {
  32819. source: "./media/characters/irbisgreif/back-dressed.svg",
  32820. extra: 901/783,
  32821. bottom: 10/911
  32822. }
  32823. },
  32824. dick: {
  32825. height: math.unit(0.49, "feet"),
  32826. name: "Dick",
  32827. image: {
  32828. source: "./media/characters/irbisgreif/dick.svg"
  32829. }
  32830. },
  32831. wingTop: {
  32832. height: math.unit(1.93 , "feet"),
  32833. name: "Wing-top",
  32834. image: {
  32835. source: "./media/characters/irbisgreif/wing-top.svg"
  32836. }
  32837. },
  32838. wingBottom: {
  32839. height: math.unit(1.93 , "feet"),
  32840. name: "Wing-bottom",
  32841. image: {
  32842. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32843. }
  32844. },
  32845. },
  32846. [
  32847. {
  32848. name: "Normal",
  32849. height: math.unit(216, "cm"),
  32850. default: true
  32851. },
  32852. ]
  32853. ))
  32854. characterMakers.push(() => makeCharacter(
  32855. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32856. {
  32857. front: {
  32858. height: math.unit(6, "feet"),
  32859. weight: math.unit(150, "lb"),
  32860. name: "Front",
  32861. image: {
  32862. source: "./media/characters/pride/front.svg",
  32863. extra: 1299/1230,
  32864. bottom: 18/1317
  32865. }
  32866. },
  32867. },
  32868. [
  32869. {
  32870. name: "Normal",
  32871. height: math.unit(7, "feet")
  32872. },
  32873. {
  32874. name: "Mini-macro",
  32875. height: math.unit(11, "feet")
  32876. },
  32877. {
  32878. name: "Macro",
  32879. height: math.unit(15, "meters"),
  32880. default: true
  32881. },
  32882. {
  32883. name: "Macro+",
  32884. height: math.unit(40, "meters")
  32885. },
  32886. ]
  32887. ))
  32888. characterMakers.push(() => makeCharacter(
  32889. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32890. {
  32891. front: {
  32892. height: math.unit(4 + 2 / 12, "feet"),
  32893. weight: math.unit(95, "lb"),
  32894. name: "Front",
  32895. image: {
  32896. source: "./media/characters/vaelophis-nyx/front.svg",
  32897. extra: 2532/2330,
  32898. bottom: 0/2532
  32899. }
  32900. },
  32901. back: {
  32902. height: math.unit(4 + 2 / 12, "feet"),
  32903. weight: math.unit(95, "lb"),
  32904. name: "Back",
  32905. image: {
  32906. source: "./media/characters/vaelophis-nyx/back.svg",
  32907. extra: 2484/2361,
  32908. bottom: 0/2484
  32909. }
  32910. },
  32911. feralSide: {
  32912. height: math.unit(2 + 1/12, "feet"),
  32913. weight: math.unit(20, "lb"),
  32914. name: "Feral (Side)",
  32915. image: {
  32916. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32917. extra: 1721/1581,
  32918. bottom: 70/1791
  32919. }
  32920. },
  32921. feralLazing: {
  32922. height: math.unit(1.08, "feet"),
  32923. weight: math.unit(20, "lb"),
  32924. name: "Feral (Lazing)",
  32925. image: {
  32926. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32927. extra: 822/822,
  32928. bottom: 248/1070
  32929. }
  32930. },
  32931. ear: {
  32932. height: math.unit(0.416, "feet"),
  32933. name: "Ear",
  32934. image: {
  32935. source: "./media/characters/vaelophis-nyx/ear.svg"
  32936. }
  32937. },
  32938. eye: {
  32939. height: math.unit(0.0748, "feet"),
  32940. name: "Eye",
  32941. image: {
  32942. source: "./media/characters/vaelophis-nyx/eye.svg"
  32943. }
  32944. },
  32945. mouth: {
  32946. height: math.unit(0.378, "feet"),
  32947. name: "Mouth",
  32948. image: {
  32949. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32950. }
  32951. },
  32952. spade: {
  32953. height: math.unit(0.55, "feet"),
  32954. name: "Spade",
  32955. image: {
  32956. source: "./media/characters/vaelophis-nyx/spade.svg"
  32957. }
  32958. },
  32959. },
  32960. [
  32961. {
  32962. name: "Normal",
  32963. height: math.unit(4 + 2/12, "feet"),
  32964. default: true
  32965. },
  32966. ]
  32967. ))
  32968. characterMakers.push(() => makeCharacter(
  32969. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32970. {
  32971. front: {
  32972. height: math.unit(7, "feet"),
  32973. weight: math.unit(231, "lb"),
  32974. name: "Front",
  32975. image: {
  32976. source: "./media/characters/flux/front.svg",
  32977. extra: 919/871,
  32978. bottom: 0/919
  32979. }
  32980. },
  32981. back: {
  32982. height: math.unit(7, "feet"),
  32983. weight: math.unit(231, "lb"),
  32984. name: "Back",
  32985. image: {
  32986. source: "./media/characters/flux/back.svg",
  32987. extra: 1040/992,
  32988. bottom: 0/1040
  32989. }
  32990. },
  32991. frontDressed: {
  32992. height: math.unit(7, "feet"),
  32993. weight: math.unit(231, "lb"),
  32994. name: "Front (Dressed)",
  32995. image: {
  32996. source: "./media/characters/flux/front-dressed.svg",
  32997. extra: 919/871,
  32998. bottom: 0/919
  32999. }
  33000. },
  33001. feralSide: {
  33002. height: math.unit(5, "feet"),
  33003. weight: math.unit(150, "lb"),
  33004. name: "Feral (Side)",
  33005. image: {
  33006. source: "./media/characters/flux/feral-side.svg",
  33007. extra: 598/528,
  33008. bottom: 28/626
  33009. }
  33010. },
  33011. head: {
  33012. height: math.unit(1.585, "feet"),
  33013. name: "Head",
  33014. image: {
  33015. source: "./media/characters/flux/head.svg"
  33016. }
  33017. },
  33018. headSide: {
  33019. height: math.unit(1.74, "feet"),
  33020. name: "Head (Side)",
  33021. image: {
  33022. source: "./media/characters/flux/head-side.svg"
  33023. }
  33024. },
  33025. headSideFire: {
  33026. height: math.unit(1.76, "feet"),
  33027. name: "Head (Side, Fire)",
  33028. image: {
  33029. source: "./media/characters/flux/head-side-fire.svg"
  33030. }
  33031. },
  33032. },
  33033. [
  33034. {
  33035. name: "Normal",
  33036. height: math.unit(7, "feet"),
  33037. default: true
  33038. },
  33039. ]
  33040. ))
  33041. characterMakers.push(() => makeCharacter(
  33042. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33043. {
  33044. front: {
  33045. height: math.unit(9, "feet"),
  33046. weight: math.unit(1012, "lb"),
  33047. name: "Front",
  33048. image: {
  33049. source: "./media/characters/ulfra-lupae/front.svg",
  33050. extra: 1083/1011,
  33051. bottom: 67/1150
  33052. }
  33053. },
  33054. },
  33055. [
  33056. {
  33057. name: "Micro",
  33058. height: math.unit(6, "inches")
  33059. },
  33060. {
  33061. name: "Socializing",
  33062. height: math.unit(6 + 5/12, "feet")
  33063. },
  33064. {
  33065. name: "Normal",
  33066. height: math.unit(9, "feet"),
  33067. default: true
  33068. },
  33069. {
  33070. name: "Macro",
  33071. height: math.unit(150, "feet")
  33072. },
  33073. ]
  33074. ))
  33075. characterMakers.push(() => makeCharacter(
  33076. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33077. {
  33078. front: {
  33079. height: math.unit(5 + 2/12, "feet"),
  33080. weight: math.unit(120, "lb"),
  33081. name: "Front",
  33082. image: {
  33083. source: "./media/characters/timber/front.svg",
  33084. extra: 2814/2705,
  33085. bottom: 181/2995
  33086. }
  33087. },
  33088. },
  33089. [
  33090. {
  33091. name: "Normal",
  33092. height: math.unit(5 + 2/12, "feet"),
  33093. default: true
  33094. },
  33095. ]
  33096. ))
  33097. characterMakers.push(() => makeCharacter(
  33098. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33099. {
  33100. front: {
  33101. height: math.unit(9, "feet"),
  33102. name: "Front",
  33103. image: {
  33104. source: "./media/characters/nicki/front.svg",
  33105. extra: 1240/990,
  33106. bottom: 45/1285
  33107. },
  33108. form: "anthro",
  33109. default: true
  33110. },
  33111. side: {
  33112. height: math.unit(9, "feet"),
  33113. name: "Side",
  33114. image: {
  33115. source: "./media/characters/nicki/side.svg",
  33116. extra: 1047/973,
  33117. bottom: 61/1108
  33118. },
  33119. form: "anthro"
  33120. },
  33121. back: {
  33122. height: math.unit(9, "feet"),
  33123. name: "Back",
  33124. image: {
  33125. source: "./media/characters/nicki/back.svg",
  33126. extra: 1006/965,
  33127. bottom: 39/1045
  33128. },
  33129. form: "anthro"
  33130. },
  33131. taur: {
  33132. height: math.unit(15, "feet"),
  33133. name: "Taur",
  33134. image: {
  33135. source: "./media/characters/nicki/taur.svg",
  33136. extra: 1592/1347,
  33137. bottom: 0/1592
  33138. },
  33139. form: "taur",
  33140. default: true
  33141. },
  33142. },
  33143. [
  33144. {
  33145. name: "Normal",
  33146. height: math.unit(9, "feet"),
  33147. form: "anthro",
  33148. default: true
  33149. },
  33150. {
  33151. name: "Normal",
  33152. height: math.unit(15, "feet"),
  33153. form: "taur",
  33154. default: true
  33155. }
  33156. ],
  33157. {
  33158. "anthro": {
  33159. name: "Anthro",
  33160. default: true
  33161. },
  33162. "taur": {
  33163. name: "Taur"
  33164. }
  33165. }
  33166. ))
  33167. characterMakers.push(() => makeCharacter(
  33168. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33169. {
  33170. front: {
  33171. height: math.unit(7 + 10/12, "feet"),
  33172. weight: math.unit(3.5, "tons"),
  33173. name: "Front",
  33174. image: {
  33175. source: "./media/characters/lee/front.svg",
  33176. extra: 1773/1615,
  33177. bottom: 86/1859
  33178. }
  33179. },
  33180. hand: {
  33181. height: math.unit(1.78, "feet"),
  33182. name: "Hand",
  33183. image: {
  33184. source: "./media/characters/lee/hand.svg"
  33185. }
  33186. },
  33187. maw: {
  33188. height: math.unit(1.18, "feet"),
  33189. name: "Maw",
  33190. image: {
  33191. source: "./media/characters/lee/maw.svg"
  33192. }
  33193. },
  33194. },
  33195. [
  33196. {
  33197. name: "Normal",
  33198. height: math.unit(7 + 10/12, "feet"),
  33199. default: true
  33200. },
  33201. ]
  33202. ))
  33203. characterMakers.push(() => makeCharacter(
  33204. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33205. {
  33206. front: {
  33207. height: math.unit(9, "feet"),
  33208. name: "Front",
  33209. image: {
  33210. source: "./media/characters/guti/front.svg",
  33211. extra: 4551/4355,
  33212. bottom: 123/4674
  33213. }
  33214. },
  33215. tongue: {
  33216. height: math.unit(1, "feet"),
  33217. name: "Tongue",
  33218. image: {
  33219. source: "./media/characters/guti/tongue.svg"
  33220. }
  33221. },
  33222. paw: {
  33223. height: math.unit(1.18, "feet"),
  33224. name: "Paw",
  33225. image: {
  33226. source: "./media/characters/guti/paw.svg"
  33227. }
  33228. },
  33229. },
  33230. [
  33231. {
  33232. name: "Normal",
  33233. height: math.unit(9, "feet"),
  33234. default: true
  33235. },
  33236. ]
  33237. ))
  33238. characterMakers.push(() => makeCharacter(
  33239. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33240. {
  33241. side: {
  33242. height: math.unit(5, "meters"),
  33243. name: "Side",
  33244. image: {
  33245. source: "./media/characters/vesper/side.svg",
  33246. extra: 1605/1518,
  33247. bottom: 0/1605
  33248. }
  33249. },
  33250. },
  33251. [
  33252. {
  33253. name: "Small",
  33254. height: math.unit(5, "meters")
  33255. },
  33256. {
  33257. name: "Sage",
  33258. height: math.unit(100, "meters"),
  33259. default: true
  33260. },
  33261. {
  33262. name: "Fun Size",
  33263. height: math.unit(600, "meters")
  33264. },
  33265. {
  33266. name: "Goddess",
  33267. height: math.unit(20000, "km")
  33268. },
  33269. {
  33270. name: "Maximum",
  33271. height: math.unit(5, "galaxies")
  33272. },
  33273. ]
  33274. ))
  33275. characterMakers.push(() => makeCharacter(
  33276. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33277. {
  33278. front: {
  33279. height: math.unit(6 + 3/12, "feet"),
  33280. weight: math.unit(190, "lb"),
  33281. name: "Front",
  33282. image: {
  33283. source: "./media/characters/gawain/front.svg",
  33284. extra: 2222/2139,
  33285. bottom: 90/2312
  33286. }
  33287. },
  33288. back: {
  33289. height: math.unit(6 + 3/12, "feet"),
  33290. weight: math.unit(190, "lb"),
  33291. name: "Back",
  33292. image: {
  33293. source: "./media/characters/gawain/back.svg",
  33294. extra: 2199/2111,
  33295. bottom: 73/2272
  33296. }
  33297. },
  33298. },
  33299. [
  33300. {
  33301. name: "Normal",
  33302. height: math.unit(6 + 3/12, "feet"),
  33303. default: true
  33304. },
  33305. ]
  33306. ))
  33307. characterMakers.push(() => makeCharacter(
  33308. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33309. {
  33310. side: {
  33311. height: math.unit(3.5, "meters"),
  33312. weight: math.unit(16000, "lb"),
  33313. name: "Side",
  33314. image: {
  33315. source: "./media/characters/dascalti/side.svg",
  33316. extra: 392/273,
  33317. bottom: 47/439
  33318. }
  33319. },
  33320. breath: {
  33321. height: math.unit(7.4, "feet"),
  33322. name: "Breath",
  33323. image: {
  33324. source: "./media/characters/dascalti/breath.svg"
  33325. }
  33326. },
  33327. fed: {
  33328. height: math.unit(3.6, "meters"),
  33329. weight: math.unit(16000, "lb"),
  33330. name: "Fed",
  33331. image: {
  33332. source: "./media/characters/dascalti/fed.svg",
  33333. extra: 1419/820,
  33334. bottom: 95/1514
  33335. }
  33336. },
  33337. },
  33338. [
  33339. {
  33340. name: "Normal",
  33341. height: math.unit(3.5, "meters"),
  33342. default: true
  33343. },
  33344. ]
  33345. ))
  33346. characterMakers.push(() => makeCharacter(
  33347. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33348. {
  33349. front: {
  33350. height: math.unit(3 + 5/12, "feet"),
  33351. name: "Front",
  33352. image: {
  33353. source: "./media/characters/mauve/front.svg",
  33354. extra: 1126/1033,
  33355. bottom: 65/1191
  33356. }
  33357. },
  33358. side: {
  33359. height: math.unit(3 + 5/12, "feet"),
  33360. name: "Side",
  33361. image: {
  33362. source: "./media/characters/mauve/side.svg",
  33363. extra: 1089/1001,
  33364. bottom: 29/1118
  33365. }
  33366. },
  33367. back: {
  33368. height: math.unit(3 + 5/12, "feet"),
  33369. name: "Back",
  33370. image: {
  33371. source: "./media/characters/mauve/back.svg",
  33372. extra: 1173/1053,
  33373. bottom: 109/1282
  33374. }
  33375. },
  33376. },
  33377. [
  33378. {
  33379. name: "Normal",
  33380. height: math.unit(3 + 5/12, "feet"),
  33381. default: true
  33382. },
  33383. ]
  33384. ))
  33385. characterMakers.push(() => makeCharacter(
  33386. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33387. {
  33388. front: {
  33389. height: math.unit(6 + 3/12, "feet"),
  33390. weight: math.unit(430, "lb"),
  33391. name: "Front",
  33392. image: {
  33393. source: "./media/characters/carlos/front.svg",
  33394. extra: 1964/1913,
  33395. bottom: 70/2034
  33396. }
  33397. },
  33398. },
  33399. [
  33400. {
  33401. name: "Normal",
  33402. height: math.unit(6 + 3/12, "feet"),
  33403. default: true
  33404. },
  33405. ]
  33406. ))
  33407. characterMakers.push(() => makeCharacter(
  33408. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33409. {
  33410. back: {
  33411. height: math.unit(5 + 10/12, "feet"),
  33412. weight: math.unit(200, "lb"),
  33413. name: "Back",
  33414. image: {
  33415. source: "./media/characters/jax/back.svg",
  33416. extra: 764/739,
  33417. bottom: 25/789
  33418. }
  33419. },
  33420. },
  33421. [
  33422. {
  33423. name: "Normal",
  33424. height: math.unit(5 + 10/12, "feet"),
  33425. default: true
  33426. },
  33427. ]
  33428. ))
  33429. characterMakers.push(() => makeCharacter(
  33430. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33431. {
  33432. front: {
  33433. height: math.unit(8, "feet"),
  33434. weight: math.unit(250, "lb"),
  33435. name: "Front",
  33436. image: {
  33437. source: "./media/characters/eikthynir/front.svg",
  33438. extra: 1332/1166,
  33439. bottom: 82/1414
  33440. }
  33441. },
  33442. back: {
  33443. height: math.unit(8, "feet"),
  33444. weight: math.unit(250, "lb"),
  33445. name: "Back",
  33446. image: {
  33447. source: "./media/characters/eikthynir/back.svg",
  33448. extra: 1342/1190,
  33449. bottom: 19/1361
  33450. }
  33451. },
  33452. dick: {
  33453. height: math.unit(2.35, "feet"),
  33454. name: "Dick",
  33455. image: {
  33456. source: "./media/characters/eikthynir/dick.svg"
  33457. }
  33458. },
  33459. },
  33460. [
  33461. {
  33462. name: "Normal",
  33463. height: math.unit(8, "feet"),
  33464. default: true
  33465. },
  33466. ]
  33467. ))
  33468. characterMakers.push(() => makeCharacter(
  33469. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33470. {
  33471. front: {
  33472. height: math.unit(99, "meters"),
  33473. weight: math.unit(13000, "tons"),
  33474. name: "Front",
  33475. image: {
  33476. source: "./media/characters/zlmos/front.svg",
  33477. extra: 2202/1992,
  33478. bottom: 315/2517
  33479. }
  33480. },
  33481. },
  33482. [
  33483. {
  33484. name: "Macro",
  33485. height: math.unit(99, "meters"),
  33486. default: true
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(6 + 5/12, "feet"),
  33495. name: "Front",
  33496. image: {
  33497. source: "./media/characters/purri/front.svg",
  33498. extra: 1698/1610,
  33499. bottom: 32/1730
  33500. }
  33501. },
  33502. frontAlt: {
  33503. height: math.unit(6 + 5/12, "feet"),
  33504. name: "Front (Alt)",
  33505. image: {
  33506. source: "./media/characters/purri/front-alt.svg",
  33507. extra: 450/420,
  33508. bottom: 26/476
  33509. }
  33510. },
  33511. boots: {
  33512. height: math.unit(5.5, "feet"),
  33513. name: "Boots",
  33514. image: {
  33515. source: "./media/characters/purri/boots.svg",
  33516. extra: 905/853,
  33517. bottom: 18/923
  33518. }
  33519. },
  33520. lying: {
  33521. height: math.unit(2, "feet"),
  33522. name: "Lying",
  33523. image: {
  33524. source: "./media/characters/purri/lying.svg",
  33525. extra: 940/843,
  33526. bottom: 146/1086
  33527. }
  33528. },
  33529. devious: {
  33530. height: math.unit(1.77, "feet"),
  33531. name: "Devious",
  33532. image: {
  33533. source: "./media/characters/purri/devious.svg",
  33534. extra: 1440/1155,
  33535. bottom: 147/1587
  33536. }
  33537. },
  33538. bean: {
  33539. height: math.unit(1.94, "feet"),
  33540. name: "Bean",
  33541. image: {
  33542. source: "./media/characters/purri/bean.svg"
  33543. }
  33544. },
  33545. },
  33546. [
  33547. {
  33548. name: "Micro",
  33549. height: math.unit(1, "mm")
  33550. },
  33551. {
  33552. name: "Normal",
  33553. height: math.unit(6 + 5/12, "feet"),
  33554. default: true
  33555. },
  33556. {
  33557. name: "Macro :3c",
  33558. height: math.unit(2, "miles")
  33559. },
  33560. ]
  33561. ))
  33562. characterMakers.push(() => makeCharacter(
  33563. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33564. {
  33565. front: {
  33566. height: math.unit(6 + 2/12, "feet"),
  33567. weight: math.unit(250, "lb"),
  33568. name: "Front",
  33569. image: {
  33570. source: "./media/characters/moonlight/front.svg",
  33571. extra: 1044/908,
  33572. bottom: 56/1100
  33573. }
  33574. },
  33575. feral: {
  33576. height: math.unit(3 + 1/12, "feet"),
  33577. weight: math.unit(50, "kg"),
  33578. name: "Feral",
  33579. image: {
  33580. source: "./media/characters/moonlight/feral.svg",
  33581. extra: 3705/2791,
  33582. bottom: 145/3850
  33583. }
  33584. },
  33585. paw: {
  33586. height: math.unit(1, "feet"),
  33587. name: "Paw",
  33588. image: {
  33589. source: "./media/characters/moonlight/paw.svg"
  33590. }
  33591. },
  33592. paws: {
  33593. height: math.unit(0.98, "feet"),
  33594. name: "Paws",
  33595. image: {
  33596. source: "./media/characters/moonlight/paws.svg",
  33597. extra: 939/939,
  33598. bottom: 50/989
  33599. }
  33600. },
  33601. mouth: {
  33602. height: math.unit(0.48, "feet"),
  33603. name: "Mouth",
  33604. image: {
  33605. source: "./media/characters/moonlight/mouth.svg"
  33606. }
  33607. },
  33608. dick: {
  33609. height: math.unit(1.46, "feet"),
  33610. name: "Dick",
  33611. image: {
  33612. source: "./media/characters/moonlight/dick.svg"
  33613. }
  33614. },
  33615. },
  33616. [
  33617. {
  33618. name: "Normal",
  33619. height: math.unit(6 + 2/12, "feet"),
  33620. default: true
  33621. },
  33622. {
  33623. name: "Macro",
  33624. height: math.unit(300, "feet")
  33625. },
  33626. {
  33627. name: "Macro+",
  33628. height: math.unit(1, "mile")
  33629. },
  33630. {
  33631. name: "Mt. Moon",
  33632. height: math.unit(5, "miles")
  33633. },
  33634. {
  33635. name: "Megamacro",
  33636. height: math.unit(15, "miles")
  33637. },
  33638. ]
  33639. ))
  33640. characterMakers.push(() => makeCharacter(
  33641. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33642. {
  33643. back: {
  33644. height: math.unit(6, "feet"),
  33645. weight: math.unit(150, "lb"),
  33646. name: "Back",
  33647. image: {
  33648. source: "./media/characters/sylen/back.svg",
  33649. extra: 1335/1273,
  33650. bottom: 107/1442
  33651. }
  33652. },
  33653. },
  33654. [
  33655. {
  33656. name: "Normal",
  33657. height: math.unit(5 + 5/12, "feet")
  33658. },
  33659. {
  33660. name: "Megamacro",
  33661. height: math.unit(3, "miles"),
  33662. default: true
  33663. },
  33664. ]
  33665. ))
  33666. characterMakers.push(() => makeCharacter(
  33667. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33668. {
  33669. front: {
  33670. height: math.unit(6, "feet"),
  33671. weight: math.unit(190, "lb"),
  33672. name: "Front",
  33673. image: {
  33674. source: "./media/characters/huttser/front.svg",
  33675. extra: 1152/1058,
  33676. bottom: 23/1175
  33677. }
  33678. },
  33679. side: {
  33680. height: math.unit(6, "feet"),
  33681. weight: math.unit(190, "lb"),
  33682. name: "Side",
  33683. image: {
  33684. source: "./media/characters/huttser/side.svg",
  33685. extra: 1174/1065,
  33686. bottom: 18/1192
  33687. }
  33688. },
  33689. back: {
  33690. height: math.unit(6, "feet"),
  33691. weight: math.unit(190, "lb"),
  33692. name: "Back",
  33693. image: {
  33694. source: "./media/characters/huttser/back.svg",
  33695. extra: 1158/1056,
  33696. bottom: 12/1170
  33697. }
  33698. },
  33699. },
  33700. [
  33701. ]
  33702. ))
  33703. characterMakers.push(() => makeCharacter(
  33704. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33705. {
  33706. side: {
  33707. height: math.unit(12 + 9/12, "feet"),
  33708. weight: math.unit(15000, "lb"),
  33709. name: "Side",
  33710. image: {
  33711. source: "./media/characters/faan/side.svg",
  33712. extra: 2747/2697,
  33713. bottom: 0/2747
  33714. }
  33715. },
  33716. front: {
  33717. height: math.unit(12 + 9/12, "feet"),
  33718. weight: math.unit(15000, "lb"),
  33719. name: "Front",
  33720. image: {
  33721. source: "./media/characters/faan/front.svg",
  33722. extra: 607/571,
  33723. bottom: 24/631
  33724. }
  33725. },
  33726. head: {
  33727. height: math.unit(2.85, "feet"),
  33728. name: "Head",
  33729. image: {
  33730. source: "./media/characters/faan/head.svg"
  33731. }
  33732. },
  33733. headAlt: {
  33734. height: math.unit(3.13, "feet"),
  33735. name: "Head-alt",
  33736. image: {
  33737. source: "./media/characters/faan/head-alt.svg"
  33738. }
  33739. },
  33740. },
  33741. [
  33742. {
  33743. name: "Normal",
  33744. height: math.unit(12 + 9/12, "feet"),
  33745. default: true
  33746. },
  33747. ]
  33748. ))
  33749. characterMakers.push(() => makeCharacter(
  33750. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33751. {
  33752. front: {
  33753. height: math.unit(6, "feet"),
  33754. weight: math.unit(300, "lb"),
  33755. name: "Front",
  33756. image: {
  33757. source: "./media/characters/tanio/front.svg",
  33758. extra: 711/673,
  33759. bottom: 25/736
  33760. }
  33761. },
  33762. },
  33763. [
  33764. {
  33765. name: "Normal",
  33766. height: math.unit(6, "feet"),
  33767. default: true
  33768. },
  33769. ]
  33770. ))
  33771. characterMakers.push(() => makeCharacter(
  33772. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33773. {
  33774. front: {
  33775. height: math.unit(3, "inches"),
  33776. name: "Front",
  33777. image: {
  33778. source: "./media/characters/noboru/front.svg",
  33779. extra: 1039/932,
  33780. bottom: 18/1057
  33781. }
  33782. },
  33783. },
  33784. [
  33785. {
  33786. name: "Micro",
  33787. height: math.unit(3, "inches"),
  33788. default: true
  33789. },
  33790. ]
  33791. ))
  33792. characterMakers.push(() => makeCharacter(
  33793. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33794. {
  33795. front: {
  33796. height: math.unit(1.85, "meters"),
  33797. weight: math.unit(80, "kg"),
  33798. name: "Front",
  33799. image: {
  33800. source: "./media/characters/daniel-barrett/front.svg",
  33801. extra: 355/337,
  33802. bottom: 9/364
  33803. }
  33804. },
  33805. },
  33806. [
  33807. {
  33808. name: "Pico",
  33809. height: math.unit(0.0433, "mm")
  33810. },
  33811. {
  33812. name: "Nano",
  33813. height: math.unit(1.5, "mm")
  33814. },
  33815. {
  33816. name: "Micro",
  33817. height: math.unit(5.3, "cm"),
  33818. default: true
  33819. },
  33820. {
  33821. name: "Normal",
  33822. height: math.unit(1.85, "meters")
  33823. },
  33824. {
  33825. name: "Macro",
  33826. height: math.unit(64.7, "meters")
  33827. },
  33828. {
  33829. name: "Megamacro",
  33830. height: math.unit(2.26, "km")
  33831. },
  33832. {
  33833. name: "Gigamacro",
  33834. height: math.unit(79, "km")
  33835. },
  33836. {
  33837. name: "Teramacro",
  33838. height: math.unit(2765, "km")
  33839. },
  33840. {
  33841. name: "Petamacro",
  33842. height: math.unit(96678, "km")
  33843. },
  33844. ]
  33845. ))
  33846. characterMakers.push(() => makeCharacter(
  33847. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33848. {
  33849. front: {
  33850. height: math.unit(30, "meters"),
  33851. weight: math.unit(400, "tons"),
  33852. name: "Front",
  33853. image: {
  33854. source: "./media/characters/zeel/front.svg",
  33855. extra: 2599/2599,
  33856. bottom: 226/2825
  33857. }
  33858. },
  33859. },
  33860. [
  33861. {
  33862. name: "Macro",
  33863. height: math.unit(30, "meters"),
  33864. default: true
  33865. },
  33866. ]
  33867. ))
  33868. characterMakers.push(() => makeCharacter(
  33869. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33870. {
  33871. front: {
  33872. height: math.unit(6 + 7/12, "feet"),
  33873. weight: math.unit(210, "lb"),
  33874. name: "Front",
  33875. image: {
  33876. source: "./media/characters/tarn/front.svg",
  33877. extra: 3517/3220,
  33878. bottom: 91/3608
  33879. }
  33880. },
  33881. back: {
  33882. height: math.unit(6 + 7/12, "feet"),
  33883. weight: math.unit(210, "lb"),
  33884. name: "Back",
  33885. image: {
  33886. source: "./media/characters/tarn/back.svg",
  33887. extra: 3566/3241,
  33888. bottom: 34/3600
  33889. }
  33890. },
  33891. dick: {
  33892. height: math.unit(1.65, "feet"),
  33893. name: "Dick",
  33894. image: {
  33895. source: "./media/characters/tarn/dick.svg"
  33896. }
  33897. },
  33898. paw: {
  33899. height: math.unit(1.80, "feet"),
  33900. name: "Paw",
  33901. image: {
  33902. source: "./media/characters/tarn/paw.svg"
  33903. }
  33904. },
  33905. tongue: {
  33906. height: math.unit(0.97, "feet"),
  33907. name: "Tongue",
  33908. image: {
  33909. source: "./media/characters/tarn/tongue.svg"
  33910. }
  33911. },
  33912. },
  33913. [
  33914. {
  33915. name: "Micro",
  33916. height: math.unit(4, "inches")
  33917. },
  33918. {
  33919. name: "Normal",
  33920. height: math.unit(6 + 7/12, "feet"),
  33921. default: true
  33922. },
  33923. {
  33924. name: "Macro",
  33925. height: math.unit(300, "feet")
  33926. },
  33927. ]
  33928. ))
  33929. characterMakers.push(() => makeCharacter(
  33930. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33931. {
  33932. front: {
  33933. height: math.unit(5 + 7/12, "feet"),
  33934. weight: math.unit(80, "kg"),
  33935. name: "Front",
  33936. image: {
  33937. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33938. extra: 3023/2865,
  33939. bottom: 33/3056
  33940. }
  33941. },
  33942. back: {
  33943. height: math.unit(5 + 7/12, "feet"),
  33944. weight: math.unit(80, "kg"),
  33945. name: "Back",
  33946. image: {
  33947. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33948. extra: 3020/2886,
  33949. bottom: 30/3050
  33950. }
  33951. },
  33952. dick: {
  33953. height: math.unit(0.98, "feet"),
  33954. name: "Dick",
  33955. image: {
  33956. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33957. }
  33958. },
  33959. anatomy: {
  33960. height: math.unit(2.86, "feet"),
  33961. name: "Anatomy",
  33962. image: {
  33963. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33964. }
  33965. },
  33966. },
  33967. [
  33968. {
  33969. name: "Really Small",
  33970. height: math.unit(2, "inches")
  33971. },
  33972. {
  33973. name: "Micro",
  33974. height: math.unit(5.583, "inches")
  33975. },
  33976. {
  33977. name: "Normal",
  33978. height: math.unit(5 + 7/12, "feet"),
  33979. default: true
  33980. },
  33981. {
  33982. name: "Macro",
  33983. height: math.unit(67, "feet")
  33984. },
  33985. {
  33986. name: "Megamacro",
  33987. height: math.unit(134, "feet")
  33988. },
  33989. ]
  33990. ))
  33991. characterMakers.push(() => makeCharacter(
  33992. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33993. {
  33994. front: {
  33995. height: math.unit(9, "feet"),
  33996. weight: math.unit(120, "lb"),
  33997. name: "Front",
  33998. image: {
  33999. source: "./media/characters/sally/front.svg",
  34000. extra: 1506/1349,
  34001. bottom: 66/1572
  34002. }
  34003. },
  34004. },
  34005. [
  34006. {
  34007. name: "Normal",
  34008. height: math.unit(9, "feet"),
  34009. default: true
  34010. },
  34011. ]
  34012. ))
  34013. characterMakers.push(() => makeCharacter(
  34014. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34015. {
  34016. front: {
  34017. height: math.unit(8, "feet"),
  34018. weight: math.unit(900, "lb"),
  34019. name: "Front",
  34020. image: {
  34021. source: "./media/characters/owen/front.svg",
  34022. extra: 1761/1657,
  34023. bottom: 74/1835
  34024. }
  34025. },
  34026. side: {
  34027. height: math.unit(8, "feet"),
  34028. weight: math.unit(900, "lb"),
  34029. name: "Side",
  34030. image: {
  34031. source: "./media/characters/owen/side.svg",
  34032. extra: 1797/1734,
  34033. bottom: 30/1827
  34034. }
  34035. },
  34036. back: {
  34037. height: math.unit(8, "feet"),
  34038. weight: math.unit(900, "lb"),
  34039. name: "Back",
  34040. image: {
  34041. source: "./media/characters/owen/back.svg",
  34042. extra: 1796/1706,
  34043. bottom: 59/1855
  34044. }
  34045. },
  34046. maw: {
  34047. height: math.unit(1.76, "feet"),
  34048. name: "Maw",
  34049. image: {
  34050. source: "./media/characters/owen/maw.svg"
  34051. }
  34052. },
  34053. },
  34054. [
  34055. {
  34056. name: "Normal",
  34057. height: math.unit(8, "feet"),
  34058. default: true
  34059. },
  34060. ]
  34061. ))
  34062. characterMakers.push(() => makeCharacter(
  34063. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34064. {
  34065. front: {
  34066. height: math.unit(4, "feet"),
  34067. weight: math.unit(400, "lb"),
  34068. name: "Front",
  34069. image: {
  34070. source: "./media/characters/ryth/front.svg",
  34071. extra: 1920/1748,
  34072. bottom: 42/1962
  34073. }
  34074. },
  34075. back: {
  34076. height: math.unit(4, "feet"),
  34077. weight: math.unit(400, "lb"),
  34078. name: "Back",
  34079. image: {
  34080. source: "./media/characters/ryth/back.svg",
  34081. extra: 1897/1690,
  34082. bottom: 89/1986
  34083. }
  34084. },
  34085. mouth: {
  34086. height: math.unit(1.39, "feet"),
  34087. name: "Mouth",
  34088. image: {
  34089. source: "./media/characters/ryth/mouth.svg"
  34090. }
  34091. },
  34092. tailmaw: {
  34093. height: math.unit(1.23, "feet"),
  34094. name: "Tailmaw",
  34095. image: {
  34096. source: "./media/characters/ryth/tailmaw.svg"
  34097. }
  34098. },
  34099. goia: {
  34100. height: math.unit(4, "meters"),
  34101. weight: math.unit(10800, "lb"),
  34102. name: "Goia",
  34103. image: {
  34104. source: "./media/characters/ryth/goia.svg",
  34105. extra: 745/640,
  34106. bottom: 107/852
  34107. }
  34108. },
  34109. goiaFront: {
  34110. height: math.unit(4, "meters"),
  34111. weight: math.unit(10800, "lb"),
  34112. name: "Goia (Front)",
  34113. image: {
  34114. source: "./media/characters/ryth/goia-front.svg",
  34115. extra: 750/586,
  34116. bottom: 114/864
  34117. }
  34118. },
  34119. goiaMaw: {
  34120. height: math.unit(5.55, "feet"),
  34121. name: "Goia Maw",
  34122. image: {
  34123. source: "./media/characters/ryth/goia-maw.svg"
  34124. }
  34125. },
  34126. goiaForepaw: {
  34127. height: math.unit(3.5, "feet"),
  34128. name: "Goia Forepaw",
  34129. image: {
  34130. source: "./media/characters/ryth/goia-forepaw.svg"
  34131. }
  34132. },
  34133. goiaHindpaw: {
  34134. height: math.unit(5.55, "feet"),
  34135. name: "Goia Hindpaw",
  34136. image: {
  34137. source: "./media/characters/ryth/goia-hindpaw.svg"
  34138. }
  34139. },
  34140. },
  34141. [
  34142. {
  34143. name: "Normal",
  34144. height: math.unit(4, "feet"),
  34145. default: true
  34146. },
  34147. ]
  34148. ))
  34149. characterMakers.push(() => makeCharacter(
  34150. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34151. {
  34152. front: {
  34153. height: math.unit(7, "feet"),
  34154. weight: math.unit(180, "lb"),
  34155. name: "Front",
  34156. image: {
  34157. source: "./media/characters/necrolance/front.svg",
  34158. extra: 1062/947,
  34159. bottom: 41/1103
  34160. }
  34161. },
  34162. back: {
  34163. height: math.unit(7, "feet"),
  34164. weight: math.unit(180, "lb"),
  34165. name: "Back",
  34166. image: {
  34167. source: "./media/characters/necrolance/back.svg",
  34168. extra: 1045/984,
  34169. bottom: 14/1059
  34170. }
  34171. },
  34172. wing: {
  34173. height: math.unit(2.67, "feet"),
  34174. name: "Wing",
  34175. image: {
  34176. source: "./media/characters/necrolance/wing.svg"
  34177. }
  34178. },
  34179. },
  34180. [
  34181. {
  34182. name: "Normal",
  34183. height: math.unit(7, "feet"),
  34184. default: true
  34185. },
  34186. ]
  34187. ))
  34188. characterMakers.push(() => makeCharacter(
  34189. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34190. {
  34191. front: {
  34192. height: math.unit(76, "meters"),
  34193. weight: math.unit(30000, "tons"),
  34194. name: "Front",
  34195. image: {
  34196. source: "./media/characters/tyler/front.svg",
  34197. extra: 1640/1640,
  34198. bottom: 114/1754
  34199. }
  34200. },
  34201. },
  34202. [
  34203. {
  34204. name: "Macro",
  34205. height: math.unit(76, "meters"),
  34206. default: true
  34207. },
  34208. ]
  34209. ))
  34210. characterMakers.push(() => makeCharacter(
  34211. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34212. {
  34213. front: {
  34214. height: math.unit(4 + 11/12, "feet"),
  34215. weight: math.unit(132, "lb"),
  34216. name: "Front",
  34217. image: {
  34218. source: "./media/characters/icey/front.svg",
  34219. extra: 2750/2550,
  34220. bottom: 33/2783
  34221. }
  34222. },
  34223. back: {
  34224. height: math.unit(4 + 11/12, "feet"),
  34225. weight: math.unit(132, "lb"),
  34226. name: "Back",
  34227. image: {
  34228. source: "./media/characters/icey/back.svg",
  34229. extra: 2624/2481,
  34230. bottom: 35/2659
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Normal",
  34237. height: math.unit(4 + 11/12, "feet"),
  34238. default: true
  34239. },
  34240. ]
  34241. ))
  34242. characterMakers.push(() => makeCharacter(
  34243. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34244. {
  34245. front: {
  34246. height: math.unit(100, "feet"),
  34247. weight: math.unit(0, "lb"),
  34248. name: "Front",
  34249. image: {
  34250. source: "./media/characters/smile/front.svg",
  34251. extra: 2983/2912,
  34252. bottom: 162/3145
  34253. }
  34254. },
  34255. back: {
  34256. height: math.unit(100, "feet"),
  34257. weight: math.unit(0, "lb"),
  34258. name: "Back",
  34259. image: {
  34260. source: "./media/characters/smile/back.svg",
  34261. extra: 3143/3031,
  34262. bottom: 91/3234
  34263. }
  34264. },
  34265. head: {
  34266. height: math.unit(26.3, "feet"),
  34267. weight: math.unit(0, "lb"),
  34268. name: "Head",
  34269. image: {
  34270. source: "./media/characters/smile/head.svg"
  34271. }
  34272. },
  34273. collar: {
  34274. height: math.unit(5.3, "feet"),
  34275. weight: math.unit(0, "lb"),
  34276. name: "Collar",
  34277. image: {
  34278. source: "./media/characters/smile/collar.svg"
  34279. }
  34280. },
  34281. },
  34282. [
  34283. {
  34284. name: "Macro",
  34285. height: math.unit(100, "feet"),
  34286. default: true
  34287. },
  34288. ]
  34289. ))
  34290. characterMakers.push(() => makeCharacter(
  34291. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34292. {
  34293. dragon: {
  34294. height: math.unit(26, "feet"),
  34295. weight: math.unit(36, "tons"),
  34296. name: "Dragon",
  34297. image: {
  34298. source: "./media/characters/arimphae/dragon.svg",
  34299. extra: 1574/983,
  34300. bottom: 357/1931
  34301. }
  34302. },
  34303. drake: {
  34304. height: math.unit(9, "feet"),
  34305. weight: math.unit(1.5, "tons"),
  34306. name: "Drake",
  34307. image: {
  34308. source: "./media/characters/arimphae/drake.svg",
  34309. extra: 1120/925,
  34310. bottom: 435/1555
  34311. }
  34312. },
  34313. },
  34314. [
  34315. {
  34316. name: "Small",
  34317. height: math.unit(26*5/9, "feet")
  34318. },
  34319. {
  34320. name: "Normal",
  34321. height: math.unit(26, "feet"),
  34322. default: true
  34323. },
  34324. ]
  34325. ))
  34326. characterMakers.push(() => makeCharacter(
  34327. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34328. {
  34329. front: {
  34330. height: math.unit(8 + 9/12, "feet"),
  34331. name: "Front",
  34332. image: {
  34333. source: "./media/characters/xander/front.svg",
  34334. extra: 1237/974,
  34335. bottom: 94/1331
  34336. }
  34337. },
  34338. },
  34339. [
  34340. {
  34341. name: "Normal",
  34342. height: math.unit(8 + 9/12, "feet"),
  34343. default: true
  34344. },
  34345. {
  34346. name: "Gaze Grabber",
  34347. height: math.unit(13 + 8/12, "feet")
  34348. },
  34349. {
  34350. name: "Jaw Dropper",
  34351. height: math.unit(27, "feet")
  34352. },
  34353. {
  34354. name: "Show Stopper",
  34355. height: math.unit(136, "feet")
  34356. },
  34357. {
  34358. name: "Superstar",
  34359. height: math.unit(1.9e6, "miles")
  34360. },
  34361. ]
  34362. ))
  34363. characterMakers.push(() => makeCharacter(
  34364. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34365. {
  34366. side: {
  34367. height: math.unit(2100, "feet"),
  34368. name: "Side",
  34369. image: {
  34370. source: "./media/characters/osiris/side.svg",
  34371. extra: 1105/939,
  34372. bottom: 167/1272
  34373. }
  34374. },
  34375. },
  34376. [
  34377. {
  34378. name: "Macro",
  34379. height: math.unit(2100, "feet"),
  34380. default: true
  34381. },
  34382. ]
  34383. ))
  34384. characterMakers.push(() => makeCharacter(
  34385. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34386. {
  34387. front: {
  34388. height: math.unit(6 + 8/12, "feet"),
  34389. weight: math.unit(225, "lb"),
  34390. name: "Front",
  34391. image: {
  34392. source: "./media/characters/rhys-londe/front.svg",
  34393. extra: 2258/2141,
  34394. bottom: 188/2446
  34395. }
  34396. },
  34397. back: {
  34398. height: math.unit(6 + 8/12, "feet"),
  34399. weight: math.unit(225, "lb"),
  34400. name: "Back",
  34401. image: {
  34402. source: "./media/characters/rhys-londe/back.svg",
  34403. extra: 2237/2137,
  34404. bottom: 63/2300
  34405. }
  34406. },
  34407. frontNsfw: {
  34408. height: math.unit(6 + 8/12, "feet"),
  34409. weight: math.unit(225, "lb"),
  34410. name: "Front (NSFW)",
  34411. image: {
  34412. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34413. extra: 2258/2141,
  34414. bottom: 188/2446
  34415. }
  34416. },
  34417. backNsfw: {
  34418. height: math.unit(6 + 8/12, "feet"),
  34419. weight: math.unit(225, "lb"),
  34420. name: "Back (NSFW)",
  34421. image: {
  34422. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34423. extra: 2237/2137,
  34424. bottom: 63/2300
  34425. }
  34426. },
  34427. dick: {
  34428. height: math.unit(30, "inches"),
  34429. name: "Dick",
  34430. image: {
  34431. source: "./media/characters/rhys-londe/dick.svg"
  34432. }
  34433. },
  34434. maw: {
  34435. height: math.unit(1.6, "feet"),
  34436. name: "Maw",
  34437. image: {
  34438. source: "./media/characters/rhys-londe/maw.svg"
  34439. }
  34440. },
  34441. },
  34442. [
  34443. {
  34444. name: "Normal",
  34445. height: math.unit(6 + 8/12, "feet"),
  34446. default: true
  34447. },
  34448. ]
  34449. ))
  34450. characterMakers.push(() => makeCharacter(
  34451. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34452. {
  34453. front: {
  34454. height: math.unit(3 + 10/12, "feet"),
  34455. weight: math.unit(90, "lb"),
  34456. name: "Front",
  34457. image: {
  34458. source: "./media/characters/taivas-ensim/front.svg",
  34459. extra: 1327/1216,
  34460. bottom: 96/1423
  34461. }
  34462. },
  34463. back: {
  34464. height: math.unit(3 + 10/12, "feet"),
  34465. weight: math.unit(90, "lb"),
  34466. name: "Back",
  34467. image: {
  34468. source: "./media/characters/taivas-ensim/back.svg",
  34469. extra: 1355/1247,
  34470. bottom: 11/1366
  34471. }
  34472. },
  34473. frontNsfw: {
  34474. height: math.unit(3 + 10/12, "feet"),
  34475. weight: math.unit(90, "lb"),
  34476. name: "Front (NSFW)",
  34477. image: {
  34478. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34479. extra: 1327/1216,
  34480. bottom: 96/1423
  34481. }
  34482. },
  34483. backNsfw: {
  34484. height: math.unit(3 + 10/12, "feet"),
  34485. weight: math.unit(90, "lb"),
  34486. name: "Back (NSFW)",
  34487. image: {
  34488. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34489. extra: 1355/1247,
  34490. bottom: 11/1366
  34491. }
  34492. },
  34493. },
  34494. [
  34495. {
  34496. name: "Normal",
  34497. height: math.unit(3 + 10/12, "feet"),
  34498. default: true
  34499. },
  34500. ]
  34501. ))
  34502. characterMakers.push(() => makeCharacter(
  34503. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34504. {
  34505. front: {
  34506. height: math.unit(9 + 6/12, "feet"),
  34507. weight: math.unit(940, "lb"),
  34508. name: "Front",
  34509. image: {
  34510. source: "./media/characters/byliss/front.svg",
  34511. extra: 1327/1290,
  34512. bottom: 82/1409
  34513. }
  34514. },
  34515. back: {
  34516. height: math.unit(9 + 6/12, "feet"),
  34517. weight: math.unit(940, "lb"),
  34518. name: "Back",
  34519. image: {
  34520. source: "./media/characters/byliss/back.svg",
  34521. extra: 1376/1349,
  34522. bottom: 9/1385
  34523. }
  34524. },
  34525. frontNsfw: {
  34526. height: math.unit(9 + 6/12, "feet"),
  34527. weight: math.unit(940, "lb"),
  34528. name: "Front (NSFW)",
  34529. image: {
  34530. source: "./media/characters/byliss/front-nsfw.svg",
  34531. extra: 1327/1290,
  34532. bottom: 82/1409
  34533. }
  34534. },
  34535. backNsfw: {
  34536. height: math.unit(9 + 6/12, "feet"),
  34537. weight: math.unit(940, "lb"),
  34538. name: "Back (NSFW)",
  34539. image: {
  34540. source: "./media/characters/byliss/back-nsfw.svg",
  34541. extra: 1376/1349,
  34542. bottom: 9/1385
  34543. }
  34544. },
  34545. },
  34546. [
  34547. {
  34548. name: "Normal",
  34549. height: math.unit(9 + 6/12, "feet"),
  34550. default: true
  34551. },
  34552. ]
  34553. ))
  34554. characterMakers.push(() => makeCharacter(
  34555. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34556. {
  34557. front: {
  34558. height: math.unit(5 + 2/12, "feet"),
  34559. weight: math.unit(200, "lb"),
  34560. name: "Front",
  34561. image: {
  34562. source: "./media/characters/noraly/front.svg",
  34563. extra: 4985/4773,
  34564. bottom: 150/5135
  34565. }
  34566. },
  34567. full: {
  34568. height: math.unit(5 + 2/12, "feet"),
  34569. weight: math.unit(164, "lb"),
  34570. name: "Full",
  34571. image: {
  34572. source: "./media/characters/noraly/full.svg",
  34573. extra: 1114/1059,
  34574. bottom: 35/1149
  34575. }
  34576. },
  34577. fuller: {
  34578. height: math.unit(5 + 2/12, "feet"),
  34579. weight: math.unit(230, "lb"),
  34580. name: "Fuller",
  34581. image: {
  34582. source: "./media/characters/noraly/fuller.svg",
  34583. extra: 1114/1059,
  34584. bottom: 35/1149
  34585. }
  34586. },
  34587. fullest: {
  34588. height: math.unit(5 + 2/12, "feet"),
  34589. weight: math.unit(300, "lb"),
  34590. name: "Fullest",
  34591. image: {
  34592. source: "./media/characters/noraly/fullest.svg",
  34593. extra: 1114/1059,
  34594. bottom: 35/1149
  34595. }
  34596. },
  34597. },
  34598. [
  34599. {
  34600. name: "Normal",
  34601. height: math.unit(5 + 2/12, "feet"),
  34602. default: true
  34603. },
  34604. ]
  34605. ))
  34606. characterMakers.push(() => makeCharacter(
  34607. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34608. {
  34609. front: {
  34610. height: math.unit(5 + 2/12, "feet"),
  34611. weight: math.unit(210, "lb"),
  34612. name: "Front",
  34613. image: {
  34614. source: "./media/characters/pera/front.svg",
  34615. extra: 1560/1531,
  34616. bottom: 165/1725
  34617. }
  34618. },
  34619. back: {
  34620. height: math.unit(5 + 2/12, "feet"),
  34621. weight: math.unit(210, "lb"),
  34622. name: "Back",
  34623. image: {
  34624. source: "./media/characters/pera/back.svg",
  34625. extra: 1523/1493,
  34626. bottom: 152/1675
  34627. }
  34628. },
  34629. dick: {
  34630. height: math.unit(2.4, "feet"),
  34631. name: "Dick",
  34632. image: {
  34633. source: "./media/characters/pera/dick.svg"
  34634. }
  34635. },
  34636. },
  34637. [
  34638. {
  34639. name: "Normal",
  34640. height: math.unit(5 + 2/12, "feet"),
  34641. default: true
  34642. },
  34643. ]
  34644. ))
  34645. characterMakers.push(() => makeCharacter(
  34646. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34647. {
  34648. front: {
  34649. height: math.unit(12, "feet"),
  34650. weight: math.unit(3200, "lb"),
  34651. name: "Front",
  34652. image: {
  34653. source: "./media/characters/julian/front.svg",
  34654. extra: 2962/2701,
  34655. bottom: 184/3146
  34656. }
  34657. },
  34658. maw: {
  34659. height: math.unit(5.35, "feet"),
  34660. name: "Maw",
  34661. image: {
  34662. source: "./media/characters/julian/maw.svg"
  34663. }
  34664. },
  34665. paw: {
  34666. height: math.unit(3.07, "feet"),
  34667. name: "Paw",
  34668. image: {
  34669. source: "./media/characters/julian/paw.svg"
  34670. }
  34671. },
  34672. },
  34673. [
  34674. {
  34675. name: "Default",
  34676. height: math.unit(12, "feet"),
  34677. default: true
  34678. },
  34679. {
  34680. name: "Big",
  34681. height: math.unit(50, "feet")
  34682. },
  34683. {
  34684. name: "Really Big",
  34685. height: math.unit(1, "mile")
  34686. },
  34687. {
  34688. name: "Extremely Big",
  34689. height: math.unit(100, "miles")
  34690. },
  34691. {
  34692. name: "Planet Hugger",
  34693. height: math.unit(200, "megameters")
  34694. },
  34695. {
  34696. name: "Unreasonably Big",
  34697. height: math.unit(1e300, "meters")
  34698. },
  34699. ]
  34700. ))
  34701. characterMakers.push(() => makeCharacter(
  34702. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34703. {
  34704. solgooleo: {
  34705. height: math.unit(4, "meters"),
  34706. weight: math.unit(6000*1.5, "kg"),
  34707. volume: math.unit(6000, "liters"),
  34708. name: "Solgooleo",
  34709. image: {
  34710. source: "./media/characters/pi/solgooleo.svg",
  34711. extra: 388/331,
  34712. bottom: 29/417
  34713. }
  34714. },
  34715. },
  34716. [
  34717. {
  34718. name: "Normal",
  34719. height: math.unit(4, "meters"),
  34720. default: true
  34721. },
  34722. ]
  34723. ))
  34724. characterMakers.push(() => makeCharacter(
  34725. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34726. {
  34727. front: {
  34728. height: math.unit(8, "feet"),
  34729. weight: math.unit(4, "tons"),
  34730. name: "Front",
  34731. image: {
  34732. source: "./media/characters/shaun/front.svg",
  34733. extra: 503/495,
  34734. bottom: 20/523
  34735. }
  34736. },
  34737. back: {
  34738. height: math.unit(8, "feet"),
  34739. weight: math.unit(4, "tons"),
  34740. name: "Back",
  34741. image: {
  34742. source: "./media/characters/shaun/back.svg",
  34743. extra: 487/480,
  34744. bottom: 20/507
  34745. }
  34746. },
  34747. },
  34748. [
  34749. {
  34750. name: "Lorg",
  34751. height: math.unit(8, "feet"),
  34752. default: true
  34753. },
  34754. ]
  34755. ))
  34756. characterMakers.push(() => makeCharacter(
  34757. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34758. {
  34759. frontAnthro: {
  34760. height: math.unit(7, "feet"),
  34761. name: "Front",
  34762. image: {
  34763. source: "./media/characters/sini/front-anthro.svg",
  34764. extra: 726/678,
  34765. bottom: 35/761
  34766. },
  34767. form: "anthro",
  34768. default: true
  34769. },
  34770. backAnthro: {
  34771. height: math.unit(7, "feet"),
  34772. name: "Back",
  34773. image: {
  34774. source: "./media/characters/sini/back-anthro.svg",
  34775. extra: 743/701,
  34776. bottom: 12/755
  34777. },
  34778. form: "anthro",
  34779. },
  34780. frontAnthroNsfw: {
  34781. height: math.unit(7, "feet"),
  34782. name: "Front (NSFW)",
  34783. image: {
  34784. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34785. extra: 726/678,
  34786. bottom: 35/761
  34787. },
  34788. form: "anthro"
  34789. },
  34790. backAnthroNsfw: {
  34791. height: math.unit(7, "feet"),
  34792. name: "Back (NSFW)",
  34793. image: {
  34794. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34795. extra: 743/701,
  34796. bottom: 12/755
  34797. },
  34798. form: "anthro",
  34799. },
  34800. mawAnthro: {
  34801. height: math.unit(2.14, "feet"),
  34802. name: "Maw",
  34803. image: {
  34804. source: "./media/characters/sini/maw-anthro.svg"
  34805. },
  34806. form: "anthro"
  34807. },
  34808. dick: {
  34809. height: math.unit(1.45, "feet"),
  34810. name: "Dick",
  34811. image: {
  34812. source: "./media/characters/sini/dick-anthro.svg"
  34813. },
  34814. form: "anthro"
  34815. },
  34816. feral: {
  34817. height: math.unit(16, "feet"),
  34818. name: "Feral",
  34819. image: {
  34820. source: "./media/characters/sini/feral.svg",
  34821. extra: 814/605,
  34822. bottom: 11/825
  34823. },
  34824. form: "feral",
  34825. default: true
  34826. },
  34827. feralNsfw: {
  34828. height: math.unit(16, "feet"),
  34829. name: "Feral (NSFW)",
  34830. image: {
  34831. source: "./media/characters/sini/feral-nsfw.svg",
  34832. extra: 814/605,
  34833. bottom: 11/825
  34834. },
  34835. form: "feral"
  34836. },
  34837. mawFeral: {
  34838. height: math.unit(5.66, "feet"),
  34839. name: "Maw",
  34840. image: {
  34841. source: "./media/characters/sini/maw-feral.svg"
  34842. },
  34843. form: "feral",
  34844. },
  34845. pawFeral: {
  34846. height: math.unit(5.17, "feet"),
  34847. name: "Paw",
  34848. image: {
  34849. source: "./media/characters/sini/paw-feral.svg"
  34850. },
  34851. form: "feral",
  34852. },
  34853. rumpFeral: {
  34854. height: math.unit(13.11, "feet"),
  34855. name: "Rump",
  34856. image: {
  34857. source: "./media/characters/sini/rump-feral.svg"
  34858. },
  34859. form: "feral",
  34860. },
  34861. dickFeral: {
  34862. height: math.unit(1, "feet"),
  34863. name: "Dick",
  34864. image: {
  34865. source: "./media/characters/sini/dick-feral.svg"
  34866. },
  34867. form: "feral",
  34868. },
  34869. eyeFeral: {
  34870. height: math.unit(1.23, "feet"),
  34871. name: "Eye",
  34872. image: {
  34873. source: "./media/characters/sini/eye-feral.svg"
  34874. },
  34875. form: "feral",
  34876. },
  34877. },
  34878. [
  34879. {
  34880. name: "Normal",
  34881. height: math.unit(7, "feet"),
  34882. default: true,
  34883. form: "anthro"
  34884. },
  34885. {
  34886. name: "Normal",
  34887. height: math.unit(16, "feet"),
  34888. default: true,
  34889. form: "feral"
  34890. },
  34891. ],
  34892. {
  34893. "anthro": {
  34894. name: "Anthro",
  34895. default: true
  34896. },
  34897. "feral": {
  34898. name: "Feral",
  34899. }
  34900. }
  34901. ))
  34902. characterMakers.push(() => makeCharacter(
  34903. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34904. {
  34905. side: {
  34906. height: math.unit(47.2, "meters"),
  34907. weight: math.unit(10000, "tons"),
  34908. name: "Side",
  34909. image: {
  34910. source: "./media/characters/raylldo/side.svg",
  34911. extra: 2363/642,
  34912. bottom: 221/2584
  34913. }
  34914. },
  34915. top: {
  34916. height: math.unit(240, "meters"),
  34917. weight: math.unit(10000, "tons"),
  34918. name: "Top",
  34919. image: {
  34920. source: "./media/characters/raylldo/top.svg"
  34921. }
  34922. },
  34923. bottom: {
  34924. height: math.unit(240, "meters"),
  34925. weight: math.unit(10000, "tons"),
  34926. name: "Bottom",
  34927. image: {
  34928. source: "./media/characters/raylldo/bottom.svg"
  34929. }
  34930. },
  34931. head: {
  34932. height: math.unit(38.6, "meters"),
  34933. name: "Head",
  34934. image: {
  34935. source: "./media/characters/raylldo/head.svg",
  34936. extra: 1335/1112,
  34937. bottom: 0/1335
  34938. }
  34939. },
  34940. maw: {
  34941. height: math.unit(16.37, "meters"),
  34942. name: "Maw",
  34943. image: {
  34944. source: "./media/characters/raylldo/maw.svg",
  34945. extra: 883/660,
  34946. bottom: 0/883
  34947. },
  34948. extraAttributes: {
  34949. preyCapacity: {
  34950. name: "Capacity",
  34951. power: 3,
  34952. type: "volume",
  34953. base: math.unit(1000, "people")
  34954. },
  34955. tongueSize: {
  34956. name: "Tongue Size",
  34957. power: 2,
  34958. type: "area",
  34959. base: math.unit(21, "m^2")
  34960. }
  34961. }
  34962. },
  34963. forepaw: {
  34964. height: math.unit(18, "meters"),
  34965. name: "Forepaw",
  34966. image: {
  34967. source: "./media/characters/raylldo/forepaw.svg"
  34968. }
  34969. },
  34970. hindpaw: {
  34971. height: math.unit(23, "meters"),
  34972. name: "Hindpaw",
  34973. image: {
  34974. source: "./media/characters/raylldo/hindpaw.svg"
  34975. }
  34976. },
  34977. genitals: {
  34978. height: math.unit(42, "meters"),
  34979. name: "Genitals",
  34980. image: {
  34981. source: "./media/characters/raylldo/genitals.svg"
  34982. }
  34983. },
  34984. },
  34985. [
  34986. {
  34987. name: "Normal",
  34988. height: math.unit(47.2, "meters"),
  34989. default: true
  34990. },
  34991. ]
  34992. ))
  34993. characterMakers.push(() => makeCharacter(
  34994. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34995. {
  34996. anthroFront: {
  34997. height: math.unit(9, "feet"),
  34998. weight: math.unit(600, "lb"),
  34999. name: "Anthro (Front)",
  35000. image: {
  35001. source: "./media/characters/glint/anthro-front.svg",
  35002. extra: 1097/1018,
  35003. bottom: 28/1125
  35004. }
  35005. },
  35006. anthroBack: {
  35007. height: math.unit(9, "feet"),
  35008. weight: math.unit(600, "lb"),
  35009. name: "Anthro (Back)",
  35010. image: {
  35011. source: "./media/characters/glint/anthro-back.svg",
  35012. extra: 1154/997,
  35013. bottom: 36/1190
  35014. }
  35015. },
  35016. feral: {
  35017. height: math.unit(11, "feet"),
  35018. weight: math.unit(50000, "lb"),
  35019. name: "Feral",
  35020. image: {
  35021. source: "./media/characters/glint/feral.svg",
  35022. extra: 3035/1585,
  35023. bottom: 1169/4204
  35024. }
  35025. },
  35026. dickAnthro: {
  35027. height: math.unit(0.7, "meters"),
  35028. name: "Dick (Anthro)",
  35029. image: {
  35030. source: "./media/characters/glint/dick-anthro.svg"
  35031. }
  35032. },
  35033. dickFeral: {
  35034. height: math.unit(2.65, "meters"),
  35035. name: "Dick (Feral)",
  35036. image: {
  35037. source: "./media/characters/glint/dick-feral.svg"
  35038. }
  35039. },
  35040. slitHidden: {
  35041. height: math.unit(5.85, "meters"),
  35042. name: "Slit (Hidden)",
  35043. image: {
  35044. source: "./media/characters/glint/slit-hidden.svg"
  35045. }
  35046. },
  35047. slitErect: {
  35048. height: math.unit(5.85, "meters"),
  35049. name: "Slit (Erect)",
  35050. image: {
  35051. source: "./media/characters/glint/slit-erect.svg"
  35052. }
  35053. },
  35054. mawAnthro: {
  35055. height: math.unit(0.63, "meters"),
  35056. name: "Maw (Anthro)",
  35057. image: {
  35058. source: "./media/characters/glint/maw.svg"
  35059. }
  35060. },
  35061. mawFeral: {
  35062. height: math.unit(2.89, "meters"),
  35063. name: "Maw (Feral)",
  35064. image: {
  35065. source: "./media/characters/glint/maw.svg"
  35066. }
  35067. },
  35068. },
  35069. [
  35070. {
  35071. name: "Normal",
  35072. height: math.unit(9, "feet"),
  35073. default: true
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35079. {
  35080. side: {
  35081. height: math.unit(15, "feet"),
  35082. weight: math.unit(5000, "kg"),
  35083. name: "Side",
  35084. image: {
  35085. source: "./media/characters/kairne/side.svg",
  35086. extra: 979/811,
  35087. bottom: 13/992
  35088. }
  35089. },
  35090. front: {
  35091. height: math.unit(15, "feet"),
  35092. weight: math.unit(5000, "kg"),
  35093. name: "Front",
  35094. image: {
  35095. source: "./media/characters/kairne/front.svg",
  35096. extra: 908/814,
  35097. bottom: 26/934
  35098. }
  35099. },
  35100. sideNsfw: {
  35101. height: math.unit(15, "feet"),
  35102. weight: math.unit(5000, "kg"),
  35103. name: "Side (NSFW)",
  35104. image: {
  35105. source: "./media/characters/kairne/side-nsfw.svg",
  35106. extra: 979/811,
  35107. bottom: 13/992
  35108. }
  35109. },
  35110. frontNsfw: {
  35111. height: math.unit(15, "feet"),
  35112. weight: math.unit(5000, "kg"),
  35113. name: "Front (NSFW)",
  35114. image: {
  35115. source: "./media/characters/kairne/front-nsfw.svg",
  35116. extra: 908/814,
  35117. bottom: 26/934
  35118. }
  35119. },
  35120. dickCaged: {
  35121. height: math.unit(0.65, "meters"),
  35122. name: "Dick-caged",
  35123. image: {
  35124. source: "./media/characters/kairne/dick-caged.svg"
  35125. }
  35126. },
  35127. dick: {
  35128. height: math.unit(0.79, "meters"),
  35129. name: "Dick",
  35130. image: {
  35131. source: "./media/characters/kairne/dick.svg"
  35132. }
  35133. },
  35134. genitals: {
  35135. height: math.unit(1.29, "meters"),
  35136. name: "Genitals",
  35137. image: {
  35138. source: "./media/characters/kairne/genitals.svg"
  35139. }
  35140. },
  35141. maw: {
  35142. height: math.unit(1.73, "meters"),
  35143. name: "Maw",
  35144. image: {
  35145. source: "./media/characters/kairne/maw.svg"
  35146. }
  35147. },
  35148. },
  35149. [
  35150. {
  35151. name: "Normal",
  35152. height: math.unit(15, "feet"),
  35153. default: true
  35154. },
  35155. ]
  35156. ))
  35157. characterMakers.push(() => makeCharacter(
  35158. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35159. {
  35160. front: {
  35161. height: math.unit(5 + 8/12, "feet"),
  35162. weight: math.unit(139, "lb"),
  35163. name: "Front",
  35164. image: {
  35165. source: "./media/characters/biscuit-jackal/front.svg",
  35166. extra: 2106/1961,
  35167. bottom: 58/2164
  35168. }
  35169. },
  35170. back: {
  35171. height: math.unit(5 + 8/12, "feet"),
  35172. weight: math.unit(139, "lb"),
  35173. name: "Back",
  35174. image: {
  35175. source: "./media/characters/biscuit-jackal/back.svg",
  35176. extra: 2132/1976,
  35177. bottom: 57/2189
  35178. }
  35179. },
  35180. werejackal: {
  35181. height: math.unit(6 + 3/12, "feet"),
  35182. weight: math.unit(188, "lb"),
  35183. name: "Werejackal",
  35184. image: {
  35185. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35186. extra: 2373/2178,
  35187. bottom: 53/2426
  35188. }
  35189. },
  35190. },
  35191. [
  35192. {
  35193. name: "Normal",
  35194. height: math.unit(5 + 8/12, "feet"),
  35195. default: true
  35196. },
  35197. ]
  35198. ))
  35199. characterMakers.push(() => makeCharacter(
  35200. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35201. {
  35202. front: {
  35203. height: math.unit(140, "cm"),
  35204. weight: math.unit(45, "kg"),
  35205. name: "Front",
  35206. image: {
  35207. source: "./media/characters/tayra-white/front.svg",
  35208. extra: 2229/2192,
  35209. bottom: 75/2304
  35210. }
  35211. },
  35212. },
  35213. [
  35214. {
  35215. name: "Normal",
  35216. height: math.unit(140, "cm"),
  35217. default: true
  35218. },
  35219. ]
  35220. ))
  35221. characterMakers.push(() => makeCharacter(
  35222. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35223. {
  35224. front: {
  35225. height: math.unit(4 + 5/12, "feet"),
  35226. name: "Front",
  35227. image: {
  35228. source: "./media/characters/scoop/front.svg",
  35229. extra: 1257/1136,
  35230. bottom: 69/1326
  35231. }
  35232. },
  35233. back: {
  35234. height: math.unit(4 + 5/12, "feet"),
  35235. name: "Back",
  35236. image: {
  35237. source: "./media/characters/scoop/back.svg",
  35238. extra: 1321/1152,
  35239. bottom: 32/1353
  35240. }
  35241. },
  35242. maw: {
  35243. height: math.unit(0.68, "feet"),
  35244. name: "Maw",
  35245. image: {
  35246. source: "./media/characters/scoop/maw.svg"
  35247. }
  35248. },
  35249. },
  35250. [
  35251. {
  35252. name: "Really Small",
  35253. height: math.unit(1, "mm")
  35254. },
  35255. {
  35256. name: "Micro",
  35257. height: math.unit(1, "inch")
  35258. },
  35259. {
  35260. name: "Normal",
  35261. height: math.unit(4 + 5/12, "feet"),
  35262. default: true
  35263. },
  35264. {
  35265. name: "Macro",
  35266. height: math.unit(200, "feet")
  35267. },
  35268. {
  35269. name: "Megamacro",
  35270. height: math.unit(3240, "feet")
  35271. },
  35272. {
  35273. name: "Teramacro",
  35274. height: math.unit(2500, "miles")
  35275. },
  35276. ]
  35277. ))
  35278. characterMakers.push(() => makeCharacter(
  35279. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35280. {
  35281. front: {
  35282. height: math.unit(15 + 7/12, "feet"),
  35283. weight: math.unit(1150, "tons"),
  35284. name: "Front",
  35285. image: {
  35286. source: "./media/characters/saphinara/front.svg",
  35287. extra: 1837/1643,
  35288. bottom: 84/1921
  35289. },
  35290. form: "normal",
  35291. default: true
  35292. },
  35293. side: {
  35294. height: math.unit(15 + 7/12, "feet"),
  35295. weight: math.unit(1150, "tons"),
  35296. name: "Side",
  35297. image: {
  35298. source: "./media/characters/saphinara/side.svg",
  35299. extra: 605/547,
  35300. bottom: 6/611
  35301. },
  35302. form: "normal"
  35303. },
  35304. back: {
  35305. height: math.unit(15 + 7/12, "feet"),
  35306. weight: math.unit(1150, "tons"),
  35307. name: "Back",
  35308. image: {
  35309. source: "./media/characters/saphinara/back.svg",
  35310. extra: 591/531,
  35311. bottom: 13/604
  35312. },
  35313. form: "normal"
  35314. },
  35315. frontTail: {
  35316. height: math.unit(15 + 7/12, "feet"),
  35317. weight: math.unit(1150, "tons"),
  35318. name: "Front (Full Tail)",
  35319. image: {
  35320. source: "./media/characters/saphinara/front-tail.svg",
  35321. extra: 2256/1630,
  35322. bottom: 261/2517
  35323. },
  35324. form: "normal"
  35325. },
  35326. insides: {
  35327. height: math.unit(11.92, "feet"),
  35328. name: "Insides",
  35329. image: {
  35330. source: "./media/characters/saphinara/insides.svg"
  35331. },
  35332. form: "normal"
  35333. },
  35334. head: {
  35335. height: math.unit(4.17, "feet"),
  35336. name: "Head",
  35337. image: {
  35338. source: "./media/characters/saphinara/head.svg"
  35339. },
  35340. form: "normal"
  35341. },
  35342. tongue: {
  35343. height: math.unit(4.60, "feet"),
  35344. name: "Tongue",
  35345. image: {
  35346. source: "./media/characters/saphinara/tongue.svg"
  35347. },
  35348. form: "normal"
  35349. },
  35350. headEnraged: {
  35351. height: math.unit(5.55, "feet"),
  35352. name: "Head (Enraged)",
  35353. image: {
  35354. source: "./media/characters/saphinara/head-enraged.svg"
  35355. },
  35356. form: "normal"
  35357. },
  35358. wings: {
  35359. height: math.unit(11.95, "feet"),
  35360. name: "Wings",
  35361. image: {
  35362. source: "./media/characters/saphinara/wings.svg"
  35363. },
  35364. form: "normal"
  35365. },
  35366. feathers: {
  35367. height: math.unit(8.92, "feet"),
  35368. name: "Feathers",
  35369. image: {
  35370. source: "./media/characters/saphinara/feathers.svg"
  35371. },
  35372. form: "normal"
  35373. },
  35374. shackles: {
  35375. height: math.unit(2, "feet"),
  35376. name: "Shackles",
  35377. image: {
  35378. source: "./media/characters/saphinara/shackles.svg"
  35379. },
  35380. form: "normal"
  35381. },
  35382. eyes: {
  35383. height: math.unit(1.331, "feet"),
  35384. name: "Eyes",
  35385. image: {
  35386. source: "./media/characters/saphinara/eyes.svg"
  35387. },
  35388. form: "normal"
  35389. },
  35390. eyesEnraged: {
  35391. height: math.unit(1.331, "feet"),
  35392. name: "Eyes (Enraged)",
  35393. image: {
  35394. source: "./media/characters/saphinara/eyes-enraged.svg"
  35395. },
  35396. form: "normal"
  35397. },
  35398. trueFormSide: {
  35399. height: math.unit(200, "feet"),
  35400. weight: math.unit(1e7, "tons"),
  35401. name: "Side",
  35402. image: {
  35403. source: "./media/characters/saphinara/true-form-side.svg",
  35404. extra: 1399/770,
  35405. bottom: 97/1496
  35406. },
  35407. form: "true-form",
  35408. default: true
  35409. },
  35410. trueFormMaw: {
  35411. height: math.unit(71.5, "feet"),
  35412. name: "Maw",
  35413. image: {
  35414. source: "./media/characters/saphinara/true-form-maw.svg",
  35415. extra: 2302/1453,
  35416. bottom: 0/2302
  35417. },
  35418. form: "true-form"
  35419. },
  35420. meowberusSide: {
  35421. height: math.unit(75, "feet"),
  35422. weight: math.unit(180000, "kg"),
  35423. preyCapacity: math.unit(50000, "people"),
  35424. name: "Side",
  35425. image: {
  35426. source: "./media/characters/saphinara/meowberus-side.svg",
  35427. extra: 1400/711,
  35428. bottom: 126/1526
  35429. },
  35430. form: "meowberus",
  35431. extraAttributes: {
  35432. "pawArea": {
  35433. name: "Paw Size",
  35434. power: 2,
  35435. type: "area",
  35436. base: math.unit(35, "m^2")
  35437. }
  35438. }
  35439. },
  35440. },
  35441. [
  35442. {
  35443. name: "Normal",
  35444. height: math.unit(15 + 7/12, "feet"),
  35445. default: true,
  35446. form: "normal"
  35447. },
  35448. {
  35449. name: "Angry",
  35450. height: math.unit(30 + 6/12, "feet"),
  35451. form: "normal"
  35452. },
  35453. {
  35454. name: "Enraged",
  35455. height: math.unit(102 + 1/12, "feet"),
  35456. form: "normal"
  35457. },
  35458. {
  35459. name: "True",
  35460. height: math.unit(200, "feet"),
  35461. default: true,
  35462. form: "true-form"
  35463. },
  35464. {
  35465. name: "Normal",
  35466. height: math.unit(75, "feet"),
  35467. default: true,
  35468. form: "meowberus"
  35469. },
  35470. ],
  35471. {
  35472. "normal": {
  35473. name: "Normal",
  35474. default: true
  35475. },
  35476. "true-form": {
  35477. name: "True Form"
  35478. },
  35479. "meowberus": {
  35480. name: "Meowberus",
  35481. },
  35482. }
  35483. ))
  35484. characterMakers.push(() => makeCharacter(
  35485. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35486. {
  35487. front: {
  35488. height: math.unit(6 + 8/12, "feet"),
  35489. weight: math.unit(300, "lb"),
  35490. name: "Front",
  35491. image: {
  35492. source: "./media/characters/jrain/front.svg",
  35493. extra: 3039/2865,
  35494. bottom: 399/3438
  35495. }
  35496. },
  35497. back: {
  35498. height: math.unit(6 + 8/12, "feet"),
  35499. weight: math.unit(300, "lb"),
  35500. name: "Back",
  35501. image: {
  35502. source: "./media/characters/jrain/back.svg",
  35503. extra: 3089/2938,
  35504. bottom: 172/3261
  35505. }
  35506. },
  35507. head: {
  35508. height: math.unit(2.14, "feet"),
  35509. name: "Head",
  35510. image: {
  35511. source: "./media/characters/jrain/head.svg"
  35512. }
  35513. },
  35514. maw: {
  35515. height: math.unit(1.77, "feet"),
  35516. name: "Maw",
  35517. image: {
  35518. source: "./media/characters/jrain/maw.svg"
  35519. }
  35520. },
  35521. leftHand: {
  35522. height: math.unit(1.1, "feet"),
  35523. name: "Left Hand",
  35524. image: {
  35525. source: "./media/characters/jrain/left-hand.svg"
  35526. }
  35527. },
  35528. rightHand: {
  35529. height: math.unit(1.1, "feet"),
  35530. name: "Right Hand",
  35531. image: {
  35532. source: "./media/characters/jrain/right-hand.svg"
  35533. }
  35534. },
  35535. eye: {
  35536. height: math.unit(0.35, "feet"),
  35537. name: "Eye",
  35538. image: {
  35539. source: "./media/characters/jrain/eye.svg"
  35540. }
  35541. },
  35542. },
  35543. [
  35544. {
  35545. name: "Normal",
  35546. height: math.unit(6 + 8/12, "feet"),
  35547. default: true
  35548. },
  35549. {
  35550. name: "Casually Large",
  35551. height: math.unit(25, "feet")
  35552. },
  35553. {
  35554. name: "Giant",
  35555. height: math.unit(100, "feet")
  35556. },
  35557. {
  35558. name: "Kaiju",
  35559. height: math.unit(300, "feet")
  35560. },
  35561. ]
  35562. ))
  35563. characterMakers.push(() => makeCharacter(
  35564. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35565. {
  35566. dragon: {
  35567. height: math.unit(5, "meters"),
  35568. name: "Dragon",
  35569. image: {
  35570. source: "./media/characters/sabrina/dragon.svg",
  35571. extra: 3670 / 2365,
  35572. bottom: 333 / 4003
  35573. }
  35574. },
  35575. gryphon: {
  35576. height: math.unit(3, "meters"),
  35577. name: "Gryphon",
  35578. image: {
  35579. source: "./media/characters/sabrina/gryphon.svg",
  35580. extra: 1576 / 945,
  35581. bottom: 71 / 1647
  35582. }
  35583. },
  35584. snake: {
  35585. height: math.unit(12, "meters"),
  35586. name: "Snake",
  35587. image: {
  35588. source: "./media/characters/sabrina/snake.svg",
  35589. extra: 1758 / 1320,
  35590. bottom: 186 / 1944
  35591. }
  35592. },
  35593. collar: {
  35594. height: math.unit(1.86, "meters"),
  35595. name: "Collar",
  35596. image: {
  35597. source: "./media/characters/sabrina/collar.svg"
  35598. }
  35599. },
  35600. eye: {
  35601. height: math.unit(0.53, "meters"),
  35602. name: "Eye",
  35603. image: {
  35604. source: "./media/characters/sabrina/eye.svg"
  35605. }
  35606. },
  35607. foot: {
  35608. height: math.unit(1.86, "meters"),
  35609. name: "Foot",
  35610. image: {
  35611. source: "./media/characters/sabrina/foot.svg"
  35612. }
  35613. },
  35614. hand: {
  35615. height: math.unit(1.32, "meters"),
  35616. name: "Hand",
  35617. image: {
  35618. source: "./media/characters/sabrina/hand.svg"
  35619. }
  35620. },
  35621. head: {
  35622. height: math.unit(2.44, "meters"),
  35623. name: "Head",
  35624. image: {
  35625. source: "./media/characters/sabrina/head.svg"
  35626. }
  35627. },
  35628. headAngry: {
  35629. height: math.unit(2.44, "meters"),
  35630. name: "Head (Angry))",
  35631. image: {
  35632. source: "./media/characters/sabrina/head-angry.svg"
  35633. }
  35634. },
  35635. maw: {
  35636. height: math.unit(1.65, "meters"),
  35637. name: "Maw",
  35638. image: {
  35639. source: "./media/characters/sabrina/maw.svg"
  35640. }
  35641. },
  35642. spikes: {
  35643. height: math.unit(1.69, "meters"),
  35644. name: "Spikes",
  35645. image: {
  35646. source: "./media/characters/sabrina/spikes.svg"
  35647. }
  35648. },
  35649. stomach: {
  35650. height: math.unit(1.15, "meters"),
  35651. name: "Stomach",
  35652. image: {
  35653. source: "./media/characters/sabrina/stomach.svg"
  35654. }
  35655. },
  35656. tongue: {
  35657. height: math.unit(1.27, "meters"),
  35658. name: "Tongue",
  35659. image: {
  35660. source: "./media/characters/sabrina/tongue.svg"
  35661. }
  35662. },
  35663. wingDorsal: {
  35664. height: math.unit(4.85, "meters"),
  35665. name: "Wing (Dorsal)",
  35666. image: {
  35667. source: "./media/characters/sabrina/wing-dorsal.svg"
  35668. }
  35669. },
  35670. wingVentral: {
  35671. height: math.unit(4.85, "meters"),
  35672. name: "Wing (Ventral)",
  35673. image: {
  35674. source: "./media/characters/sabrina/wing-ventral.svg"
  35675. }
  35676. },
  35677. },
  35678. [
  35679. {
  35680. name: "Normal",
  35681. height: math.unit(5, "meters"),
  35682. default: true
  35683. },
  35684. ]
  35685. ))
  35686. characterMakers.push(() => makeCharacter(
  35687. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35688. {
  35689. frontMaid: {
  35690. height: math.unit(5 + 5/12, "feet"),
  35691. weight: math.unit(130, "lb"),
  35692. name: "Front (Maid)",
  35693. image: {
  35694. source: "./media/characters/midnight-tales/front-maid.svg",
  35695. extra: 489/454,
  35696. bottom: 61/550
  35697. }
  35698. },
  35699. frontFormal: {
  35700. height: math.unit(5 + 5/12, "feet"),
  35701. weight: math.unit(130, "lb"),
  35702. name: "Front (Formal)",
  35703. image: {
  35704. source: "./media/characters/midnight-tales/front-formal.svg",
  35705. extra: 489/454,
  35706. bottom: 61/550
  35707. }
  35708. },
  35709. back: {
  35710. height: math.unit(5 + 5/12, "feet"),
  35711. weight: math.unit(130, "lb"),
  35712. name: "Back",
  35713. image: {
  35714. source: "./media/characters/midnight-tales/back.svg",
  35715. extra: 498/456,
  35716. bottom: 33/531
  35717. }
  35718. },
  35719. frontBeast: {
  35720. height: math.unit(40, "feet"),
  35721. weight: math.unit(64000, "lb"),
  35722. name: "Front (Beast)",
  35723. image: {
  35724. source: "./media/characters/midnight-tales/front-beast.svg",
  35725. extra: 927/860,
  35726. bottom: 53/980
  35727. }
  35728. },
  35729. backBeast: {
  35730. height: math.unit(40, "feet"),
  35731. weight: math.unit(64000, "lb"),
  35732. name: "Back (Beast)",
  35733. image: {
  35734. source: "./media/characters/midnight-tales/back-beast.svg",
  35735. extra: 929/855,
  35736. bottom: 16/945
  35737. }
  35738. },
  35739. footBeast: {
  35740. height: math.unit(6.7, "feet"),
  35741. name: "Foot (Beast)",
  35742. image: {
  35743. source: "./media/characters/midnight-tales/foot-beast.svg"
  35744. }
  35745. },
  35746. headBeast: {
  35747. height: math.unit(8, "feet"),
  35748. name: "Head (Beast)",
  35749. image: {
  35750. source: "./media/characters/midnight-tales/head-beast.svg"
  35751. }
  35752. },
  35753. },
  35754. [
  35755. {
  35756. name: "Normal",
  35757. height: math.unit(5 + 5 / 12, "feet"),
  35758. default: true
  35759. },
  35760. {
  35761. name: "Macro",
  35762. height: math.unit(25, "feet")
  35763. },
  35764. ]
  35765. ))
  35766. characterMakers.push(() => makeCharacter(
  35767. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35768. {
  35769. front: {
  35770. height: math.unit(5 + 10/12, "feet"),
  35771. name: "Front",
  35772. image: {
  35773. source: "./media/characters/argon/front.svg",
  35774. extra: 2009/1935,
  35775. bottom: 118/2127
  35776. }
  35777. },
  35778. back: {
  35779. height: math.unit(5 + 10/12, "feet"),
  35780. name: "Back",
  35781. image: {
  35782. source: "./media/characters/argon/back.svg",
  35783. extra: 2047/1992,
  35784. bottom: 20/2067
  35785. }
  35786. },
  35787. frontDressed: {
  35788. height: math.unit(5 + 10/12, "feet"),
  35789. name: "Front (Dressed)",
  35790. image: {
  35791. source: "./media/characters/argon/front-dressed.svg",
  35792. extra: 2009/1935,
  35793. bottom: 118/2127
  35794. }
  35795. },
  35796. },
  35797. [
  35798. {
  35799. name: "Normal",
  35800. height: math.unit(5 + 10/12, "feet"),
  35801. default: true
  35802. },
  35803. ]
  35804. ))
  35805. characterMakers.push(() => makeCharacter(
  35806. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35807. {
  35808. front: {
  35809. height: math.unit(8 + 6/12, "feet"),
  35810. weight: math.unit(1150, "lb"),
  35811. name: "Front",
  35812. image: {
  35813. source: "./media/characters/kichi/front.svg",
  35814. extra: 1267/1164,
  35815. bottom: 61/1328
  35816. }
  35817. },
  35818. back: {
  35819. height: math.unit(8 + 6/12, "feet"),
  35820. weight: math.unit(1150, "lb"),
  35821. name: "Back",
  35822. image: {
  35823. source: "./media/characters/kichi/back.svg",
  35824. extra: 1273/1166,
  35825. bottom: 33/1306
  35826. }
  35827. },
  35828. },
  35829. [
  35830. {
  35831. name: "Normal",
  35832. height: math.unit(8 + 6/12, "feet"),
  35833. default: true
  35834. },
  35835. ]
  35836. ))
  35837. characterMakers.push(() => makeCharacter(
  35838. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35839. {
  35840. front: {
  35841. height: math.unit(6, "feet"),
  35842. weight: math.unit(210, "lb"),
  35843. name: "Front",
  35844. image: {
  35845. source: "./media/characters/manetel-greyscale/front.svg",
  35846. extra: 350/312,
  35847. bottom: 8/358
  35848. }
  35849. },
  35850. },
  35851. [
  35852. {
  35853. name: "Micro",
  35854. height: math.unit(2, "inches")
  35855. },
  35856. {
  35857. name: "Normal",
  35858. height: math.unit(6, "feet"),
  35859. default: true
  35860. },
  35861. {
  35862. name: "Minimacro",
  35863. height: math.unit(17, "feet")
  35864. },
  35865. {
  35866. name: "Macro",
  35867. height: math.unit(117, "feet")
  35868. },
  35869. ]
  35870. ))
  35871. characterMakers.push(() => makeCharacter(
  35872. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35873. {
  35874. side: {
  35875. height: math.unit(5 + 1/12, "feet"),
  35876. weight: math.unit(418, "lb"),
  35877. name: "Side",
  35878. image: {
  35879. source: "./media/characters/softpurr/side.svg",
  35880. extra: 1993/1945,
  35881. bottom: 134/2127
  35882. }
  35883. },
  35884. front: {
  35885. height: math.unit(5 + 1/12, "feet"),
  35886. weight: math.unit(418, "lb"),
  35887. name: "Front",
  35888. image: {
  35889. source: "./media/characters/softpurr/front.svg",
  35890. extra: 1950/1856,
  35891. bottom: 174/2124
  35892. }
  35893. },
  35894. paw: {
  35895. height: math.unit(1, "feet"),
  35896. name: "Paw",
  35897. image: {
  35898. source: "./media/characters/softpurr/paw.svg"
  35899. }
  35900. },
  35901. },
  35902. [
  35903. {
  35904. name: "Normal",
  35905. height: math.unit(5 + 1/12, "feet"),
  35906. default: true
  35907. },
  35908. ]
  35909. ))
  35910. characterMakers.push(() => makeCharacter(
  35911. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35912. {
  35913. front: {
  35914. height: math.unit(260, "meters"),
  35915. name: "Front",
  35916. image: {
  35917. source: "./media/characters/anahita/front.svg",
  35918. extra: 665/635,
  35919. bottom: 89/754
  35920. }
  35921. },
  35922. },
  35923. [
  35924. {
  35925. name: "Macro",
  35926. height: math.unit(260, "meters"),
  35927. default: true
  35928. },
  35929. ]
  35930. ))
  35931. characterMakers.push(() => makeCharacter(
  35932. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35933. {
  35934. front: {
  35935. height: math.unit(4 + 10/12, "feet"),
  35936. weight: math.unit(160, "lb"),
  35937. name: "Front",
  35938. image: {
  35939. source: "./media/characters/chip-mouse/front.svg",
  35940. extra: 3528/3408,
  35941. bottom: 0/3528
  35942. }
  35943. },
  35944. frontNsfw: {
  35945. height: math.unit(4 + 10/12, "feet"),
  35946. weight: math.unit(160, "lb"),
  35947. name: "Front (NSFW)",
  35948. image: {
  35949. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35950. extra: 3528/3408,
  35951. bottom: 0/3528
  35952. }
  35953. },
  35954. },
  35955. [
  35956. {
  35957. name: "Normal",
  35958. height: math.unit(4 + 10/12, "feet"),
  35959. default: true
  35960. },
  35961. ]
  35962. ))
  35963. characterMakers.push(() => makeCharacter(
  35964. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35965. {
  35966. side: {
  35967. height: math.unit(10, "feet"),
  35968. weight: math.unit(14000, "lb"),
  35969. name: "Side",
  35970. image: {
  35971. source: "./media/characters/kremm/side.svg",
  35972. extra: 1390/1053,
  35973. bottom: 90/1480
  35974. }
  35975. },
  35976. gut: {
  35977. height: math.unit(5.8, "feet"),
  35978. name: "Gut",
  35979. image: {
  35980. source: "./media/characters/kremm/gut.svg"
  35981. }
  35982. },
  35983. ass: {
  35984. height: math.unit(6.1, "feet"),
  35985. name: "Ass",
  35986. image: {
  35987. source: "./media/characters/kremm/ass.svg"
  35988. }
  35989. },
  35990. jaws: {
  35991. height: math.unit(2.2, "feet"),
  35992. name: "Jaws",
  35993. image: {
  35994. source: "./media/characters/kremm/jaws.svg"
  35995. }
  35996. },
  35997. dick: {
  35998. height: math.unit(4.26, "feet"),
  35999. name: "Dick",
  36000. image: {
  36001. source: "./media/characters/kremm/dick.svg"
  36002. }
  36003. },
  36004. },
  36005. [
  36006. {
  36007. name: "Normal",
  36008. height: math.unit(10, "feet"),
  36009. default: true
  36010. },
  36011. ]
  36012. ))
  36013. characterMakers.push(() => makeCharacter(
  36014. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36015. {
  36016. front: {
  36017. height: math.unit(30, "stories"),
  36018. name: "Front",
  36019. image: {
  36020. source: "./media/characters/kai/front.svg",
  36021. extra: 1892/1718,
  36022. bottom: 162/2054
  36023. }
  36024. },
  36025. },
  36026. [
  36027. {
  36028. name: "Macro",
  36029. height: math.unit(30, "stories"),
  36030. default: true
  36031. },
  36032. ]
  36033. ))
  36034. characterMakers.push(() => makeCharacter(
  36035. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36036. {
  36037. front: {
  36038. height: math.unit(6 + 4/12, "feet"),
  36039. weight: math.unit(145, "lb"),
  36040. name: "Front",
  36041. image: {
  36042. source: "./media/characters/sykes/front.svg",
  36043. extra: 1321 / 1187,
  36044. bottom: 66 / 1387
  36045. }
  36046. },
  36047. back: {
  36048. height: math.unit(6 + 4/12, "feet"),
  36049. weight: math.unit(145, "lb"),
  36050. name: "Back",
  36051. image: {
  36052. source: "./media/characters/sykes/back.svg",
  36053. extra: 1326/1181,
  36054. bottom: 31/1357
  36055. }
  36056. },
  36057. traditionalOutfit: {
  36058. height: math.unit(6 + 4/12, "feet"),
  36059. weight: math.unit(145, "lb"),
  36060. name: "Traditional Outfit",
  36061. image: {
  36062. source: "./media/characters/sykes/traditional-outfit.svg",
  36063. extra: 1321 / 1187,
  36064. bottom: 66 / 1387
  36065. }
  36066. },
  36067. adventureOutfit: {
  36068. height: math.unit(6 + 4/12, "feet"),
  36069. weight: math.unit(145, "lb"),
  36070. name: "Adventure Outfit",
  36071. image: {
  36072. source: "./media/characters/sykes/adventure-outfit.svg",
  36073. extra: 1321 / 1187,
  36074. bottom: 66 / 1387
  36075. }
  36076. },
  36077. handLeft: {
  36078. height: math.unit(0.9, "feet"),
  36079. name: "Hand (Left)",
  36080. image: {
  36081. source: "./media/characters/sykes/hand-left.svg"
  36082. }
  36083. },
  36084. handRight: {
  36085. height: math.unit(0.839, "feet"),
  36086. name: "Hand (Right)",
  36087. image: {
  36088. source: "./media/characters/sykes/hand-right.svg"
  36089. }
  36090. },
  36091. leftFoot: {
  36092. height: math.unit(1.2, "feet"),
  36093. name: "Foot (Left)",
  36094. image: {
  36095. source: "./media/characters/sykes/foot-left.svg"
  36096. }
  36097. },
  36098. rightFoot: {
  36099. height: math.unit(1.2, "feet"),
  36100. name: "Foot (Right)",
  36101. image: {
  36102. source: "./media/characters/sykes/foot-right.svg"
  36103. }
  36104. },
  36105. maw: {
  36106. height: math.unit(1.93, "feet"),
  36107. name: "Maw",
  36108. image: {
  36109. source: "./media/characters/sykes/maw.svg"
  36110. }
  36111. },
  36112. teeth: {
  36113. height: math.unit(0.51, "feet"),
  36114. name: "Teeth",
  36115. image: {
  36116. source: "./media/characters/sykes/teeth.svg"
  36117. }
  36118. },
  36119. tongue: {
  36120. height: math.unit(2.13, "feet"),
  36121. name: "Tongue",
  36122. image: {
  36123. source: "./media/characters/sykes/tongue.svg"
  36124. }
  36125. },
  36126. uvula: {
  36127. height: math.unit(0.16, "feet"),
  36128. name: "Uvula",
  36129. image: {
  36130. source: "./media/characters/sykes/uvula.svg"
  36131. }
  36132. },
  36133. collar: {
  36134. height: math.unit(0.287, "feet"),
  36135. name: "Collar",
  36136. image: {
  36137. source: "./media/characters/sykes/collar.svg"
  36138. }
  36139. },
  36140. tail: {
  36141. height: math.unit(3.8, "feet"),
  36142. name: "Tail",
  36143. image: {
  36144. source: "./media/characters/sykes/tail.svg"
  36145. }
  36146. },
  36147. },
  36148. [
  36149. {
  36150. name: "Shrunken",
  36151. height: math.unit(5, "inches")
  36152. },
  36153. {
  36154. name: "Normal",
  36155. height: math.unit(6 + 4 / 12, "feet"),
  36156. default: true
  36157. },
  36158. {
  36159. name: "Big",
  36160. height: math.unit(15, "feet")
  36161. },
  36162. ]
  36163. ))
  36164. characterMakers.push(() => makeCharacter(
  36165. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36166. {
  36167. front: {
  36168. height: math.unit(5 + 8/12, "feet"),
  36169. weight: math.unit(190, "lb"),
  36170. name: "Front",
  36171. image: {
  36172. source: "./media/characters/oven-otter/front.svg",
  36173. extra: 1809/1740,
  36174. bottom: 181/1990
  36175. }
  36176. },
  36177. back: {
  36178. height: math.unit(5 + 8/12, "feet"),
  36179. weight: math.unit(190, "lb"),
  36180. name: "Back",
  36181. image: {
  36182. source: "./media/characters/oven-otter/back.svg",
  36183. extra: 1709/1635,
  36184. bottom: 118/1827
  36185. }
  36186. },
  36187. hand: {
  36188. height: math.unit(1.07, "feet"),
  36189. name: "Hand",
  36190. image: {
  36191. source: "./media/characters/oven-otter/hand.svg"
  36192. }
  36193. },
  36194. beans: {
  36195. height: math.unit(1.74, "feet"),
  36196. name: "Beans",
  36197. image: {
  36198. source: "./media/characters/oven-otter/beans.svg"
  36199. }
  36200. },
  36201. },
  36202. [
  36203. {
  36204. name: "Micro",
  36205. height: math.unit(0.5, "inches")
  36206. },
  36207. {
  36208. name: "Normal",
  36209. height: math.unit(5 + 8/12, "feet"),
  36210. default: true
  36211. },
  36212. {
  36213. name: "Macro",
  36214. height: math.unit(250, "feet")
  36215. },
  36216. {
  36217. name: "Really High",
  36218. height: math.unit(420, "feet")
  36219. },
  36220. ]
  36221. ))
  36222. characterMakers.push(() => makeCharacter(
  36223. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36224. {
  36225. front: {
  36226. height: math.unit(5, "meters"),
  36227. weight: math.unit(292000000000000, "kg"),
  36228. name: "Front",
  36229. image: {
  36230. source: "./media/characters/devourer/front.svg",
  36231. extra: 1800/1733,
  36232. bottom: 211/2011
  36233. }
  36234. },
  36235. maw: {
  36236. height: math.unit(1.1, "meter"),
  36237. name: "Maw",
  36238. image: {
  36239. source: "./media/characters/devourer/maw.svg"
  36240. }
  36241. },
  36242. },
  36243. [
  36244. {
  36245. name: "Small",
  36246. height: math.unit(3, "meters")
  36247. },
  36248. {
  36249. name: "Large",
  36250. height: math.unit(5, "meters"),
  36251. default: true
  36252. },
  36253. ]
  36254. ))
  36255. characterMakers.push(() => makeCharacter(
  36256. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36257. {
  36258. front: {
  36259. height: math.unit(6, "feet"),
  36260. weight: math.unit(400, "lb"),
  36261. name: "Front",
  36262. image: {
  36263. source: "./media/characters/ellarby/front.svg",
  36264. extra: 1909/1763,
  36265. bottom: 80/1989
  36266. }
  36267. },
  36268. back: {
  36269. height: math.unit(6, "feet"),
  36270. weight: math.unit(400, "lb"),
  36271. name: "Back",
  36272. image: {
  36273. source: "./media/characters/ellarby/back.svg",
  36274. extra: 1914/1784,
  36275. bottom: 172/2086
  36276. }
  36277. },
  36278. },
  36279. [
  36280. {
  36281. name: "Mischief",
  36282. height: math.unit(18, "inches")
  36283. },
  36284. {
  36285. name: "Trouble",
  36286. height: math.unit(12, "feet")
  36287. },
  36288. {
  36289. name: "Havoc",
  36290. height: math.unit(200, "feet"),
  36291. default: true
  36292. },
  36293. {
  36294. name: "Pandemonium",
  36295. height: math.unit(1, "mile")
  36296. },
  36297. {
  36298. name: "Catastrophe",
  36299. height: math.unit(100, "miles")
  36300. },
  36301. ]
  36302. ))
  36303. characterMakers.push(() => makeCharacter(
  36304. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36305. {
  36306. front: {
  36307. height: math.unit(4.7, "meters"),
  36308. weight: math.unit(6500, "kg"),
  36309. name: "Front",
  36310. image: {
  36311. source: "./media/characters/vex/front.svg",
  36312. extra: 1288/1140,
  36313. bottom: 100/1388
  36314. }
  36315. },
  36316. },
  36317. [
  36318. {
  36319. name: "Normal",
  36320. height: math.unit(4.7, "meters"),
  36321. default: true
  36322. },
  36323. ]
  36324. ))
  36325. characterMakers.push(() => makeCharacter(
  36326. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36327. {
  36328. normal: {
  36329. height: math.unit(6, "feet"),
  36330. weight: math.unit(350, "lb"),
  36331. name: "Normal",
  36332. image: {
  36333. source: "./media/characters/teshy/normal.svg",
  36334. extra: 1795/1735,
  36335. bottom: 16/1811
  36336. }
  36337. },
  36338. monsterFront: {
  36339. height: math.unit(12, "feet"),
  36340. weight: math.unit(4700, "lb"),
  36341. name: "Monster (Front)",
  36342. image: {
  36343. source: "./media/characters/teshy/monster-front.svg",
  36344. extra: 2042/2034,
  36345. bottom: 128/2170
  36346. }
  36347. },
  36348. monsterSide: {
  36349. height: math.unit(12, "feet"),
  36350. weight: math.unit(4700, "lb"),
  36351. name: "Monster (Side)",
  36352. image: {
  36353. source: "./media/characters/teshy/monster-side.svg",
  36354. extra: 2067/2056,
  36355. bottom: 70/2137
  36356. }
  36357. },
  36358. monsterBack: {
  36359. height: math.unit(12, "feet"),
  36360. weight: math.unit(4700, "lb"),
  36361. name: "Monster (Back)",
  36362. image: {
  36363. source: "./media/characters/teshy/monster-back.svg",
  36364. extra: 1921/1914,
  36365. bottom: 171/2092
  36366. }
  36367. },
  36368. },
  36369. [
  36370. {
  36371. name: "Normal",
  36372. height: math.unit(6, "feet"),
  36373. default: true
  36374. },
  36375. ]
  36376. ))
  36377. characterMakers.push(() => makeCharacter(
  36378. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36379. {
  36380. front: {
  36381. height: math.unit(6, "feet"),
  36382. name: "Front",
  36383. image: {
  36384. source: "./media/characters/ramey/front.svg",
  36385. extra: 790/787,
  36386. bottom: 27/817
  36387. }
  36388. },
  36389. },
  36390. [
  36391. {
  36392. name: "Normal",
  36393. height: math.unit(6, "feet"),
  36394. default: true
  36395. },
  36396. ]
  36397. ))
  36398. characterMakers.push(() => makeCharacter(
  36399. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36400. {
  36401. front: {
  36402. height: math.unit(5 + 5/12, "feet"),
  36403. weight: math.unit(120, "lb"),
  36404. name: "Front",
  36405. image: {
  36406. source: "./media/characters/phirae/front.svg",
  36407. extra: 2491/2436,
  36408. bottom: 38/2529
  36409. }
  36410. },
  36411. },
  36412. [
  36413. {
  36414. name: "Normal",
  36415. height: math.unit(5 + 5/12, "feet"),
  36416. default: true
  36417. },
  36418. ]
  36419. ))
  36420. characterMakers.push(() => makeCharacter(
  36421. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36422. {
  36423. front: {
  36424. height: math.unit(5 + 3/12, "feet"),
  36425. name: "Front",
  36426. image: {
  36427. source: "./media/characters/stagglas/front.svg",
  36428. extra: 962/882,
  36429. bottom: 53/1015
  36430. }
  36431. },
  36432. feral: {
  36433. height: math.unit(335, "cm"),
  36434. name: "Feral",
  36435. image: {
  36436. source: "./media/characters/stagglas/feral.svg",
  36437. extra: 1732/1090,
  36438. bottom: 48/1780
  36439. }
  36440. },
  36441. },
  36442. [
  36443. {
  36444. name: "Normal",
  36445. height: math.unit(5 + 3/12, "feet"),
  36446. default: true
  36447. },
  36448. ]
  36449. ))
  36450. characterMakers.push(() => makeCharacter(
  36451. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36452. {
  36453. front: {
  36454. height: math.unit(5 + 4/12, "feet"),
  36455. weight: math.unit(145, "lb"),
  36456. name: "Front",
  36457. image: {
  36458. source: "./media/characters/starra/front.svg",
  36459. extra: 1790/1691,
  36460. bottom: 91/1881
  36461. }
  36462. },
  36463. },
  36464. [
  36465. {
  36466. name: "Normal",
  36467. height: math.unit(5 + 4/12, "feet"),
  36468. default: true
  36469. },
  36470. ]
  36471. ))
  36472. characterMakers.push(() => makeCharacter(
  36473. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36474. {
  36475. front: {
  36476. height: math.unit(2.2, "meters"),
  36477. name: "Front",
  36478. image: {
  36479. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36480. extra: 1248/972,
  36481. bottom: 38/1286
  36482. }
  36483. },
  36484. },
  36485. [
  36486. {
  36487. name: "Normal",
  36488. height: math.unit(2.2, "meters"),
  36489. default: true
  36490. },
  36491. ]
  36492. ))
  36493. characterMakers.push(() => makeCharacter(
  36494. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36495. {
  36496. side: {
  36497. height: math.unit(8 + 2/12, "feet"),
  36498. weight: math.unit(1240, "lb"),
  36499. name: "Side",
  36500. image: {
  36501. source: "./media/characters/mika-valentine/side.svg",
  36502. extra: 2670/2501,
  36503. bottom: 250/2920
  36504. }
  36505. },
  36506. },
  36507. [
  36508. {
  36509. name: "Normal",
  36510. height: math.unit(8 + 2/12, "feet"),
  36511. default: true
  36512. },
  36513. ]
  36514. ))
  36515. characterMakers.push(() => makeCharacter(
  36516. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36517. {
  36518. front: {
  36519. height: math.unit(7 + 2/12, "feet"),
  36520. name: "Front",
  36521. image: {
  36522. source: "./media/characters/xoltol/front.svg",
  36523. extra: 2212/2124,
  36524. bottom: 84/2296
  36525. }
  36526. },
  36527. side: {
  36528. height: math.unit(7 + 2/12, "feet"),
  36529. name: "Side",
  36530. image: {
  36531. source: "./media/characters/xoltol/side.svg",
  36532. extra: 2273/2197,
  36533. bottom: 26/2299
  36534. }
  36535. },
  36536. hand: {
  36537. height: math.unit(2.5, "feet"),
  36538. name: "Hand",
  36539. image: {
  36540. source: "./media/characters/xoltol/hand.svg"
  36541. }
  36542. },
  36543. },
  36544. [
  36545. {
  36546. name: "Small-ish",
  36547. height: math.unit(5 + 11/12, "feet")
  36548. },
  36549. {
  36550. name: "Normal",
  36551. height: math.unit(7 + 2/12, "feet")
  36552. },
  36553. {
  36554. name: "\"Macro\"",
  36555. height: math.unit(14 + 9/12, "feet"),
  36556. default: true
  36557. },
  36558. {
  36559. name: "Alternate Height",
  36560. height: math.unit(20, "feet")
  36561. },
  36562. {
  36563. name: "Actually Macro",
  36564. height: math.unit(100, "feet")
  36565. },
  36566. ]
  36567. ))
  36568. characterMakers.push(() => makeCharacter(
  36569. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36570. {
  36571. front: {
  36572. height: math.unit(5 + 2/12, "feet"),
  36573. name: "Front",
  36574. image: {
  36575. source: "./media/characters/kotetsu-redwood/front.svg",
  36576. extra: 1053/942,
  36577. bottom: 60/1113
  36578. }
  36579. },
  36580. },
  36581. [
  36582. {
  36583. name: "Normal",
  36584. height: math.unit(5 + 2/12, "feet"),
  36585. default: true
  36586. },
  36587. ]
  36588. ))
  36589. characterMakers.push(() => makeCharacter(
  36590. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36591. {
  36592. front: {
  36593. height: math.unit(2.4, "meters"),
  36594. weight: math.unit(125, "kg"),
  36595. name: "Front",
  36596. image: {
  36597. source: "./media/characters/lilith/front.svg",
  36598. extra: 1590/1513,
  36599. bottom: 203/1793
  36600. }
  36601. },
  36602. },
  36603. [
  36604. {
  36605. name: "Humanoid",
  36606. height: math.unit(2.4, "meters")
  36607. },
  36608. {
  36609. name: "Normal",
  36610. height: math.unit(6, "meters"),
  36611. default: true
  36612. },
  36613. {
  36614. name: "Largest",
  36615. height: math.unit(55, "meters")
  36616. },
  36617. ]
  36618. ))
  36619. characterMakers.push(() => makeCharacter(
  36620. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36621. {
  36622. front: {
  36623. height: math.unit(8 + 4/12, "feet"),
  36624. weight: math.unit(535, "lb"),
  36625. name: "Front",
  36626. image: {
  36627. source: "./media/characters/beh'kah-bolger/front.svg",
  36628. extra: 1660/1603,
  36629. bottom: 37/1697
  36630. }
  36631. },
  36632. },
  36633. [
  36634. {
  36635. name: "Normal",
  36636. height: math.unit(8 + 4/12, "feet"),
  36637. default: true
  36638. },
  36639. {
  36640. name: "Kaiju",
  36641. height: math.unit(250, "feet")
  36642. },
  36643. {
  36644. name: "Still Growing",
  36645. height: math.unit(10, "miles")
  36646. },
  36647. {
  36648. name: "Continental",
  36649. height: math.unit(5000, "miles")
  36650. },
  36651. {
  36652. name: "Final Form",
  36653. height: math.unit(2500000, "miles")
  36654. },
  36655. ]
  36656. ))
  36657. characterMakers.push(() => makeCharacter(
  36658. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36659. {
  36660. front: {
  36661. height: math.unit(7 + 2/12, "feet"),
  36662. weight: math.unit(230, "kg"),
  36663. name: "Front",
  36664. image: {
  36665. source: "./media/characters/tatyana-milewska/front.svg",
  36666. extra: 1199/1150,
  36667. bottom: 86/1285
  36668. }
  36669. },
  36670. },
  36671. [
  36672. {
  36673. name: "Normal",
  36674. height: math.unit(7 + 2/12, "feet"),
  36675. default: true
  36676. },
  36677. {
  36678. name: "Big",
  36679. height: math.unit(12, "feet")
  36680. },
  36681. {
  36682. name: "Minimacro",
  36683. height: math.unit(20, "feet")
  36684. },
  36685. {
  36686. name: "Macro",
  36687. height: math.unit(120, "feet")
  36688. },
  36689. ]
  36690. ))
  36691. characterMakers.push(() => makeCharacter(
  36692. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36693. {
  36694. front: {
  36695. height: math.unit(7 + 8/12, "feet"),
  36696. weight: math.unit(152, "kg"),
  36697. name: "Front",
  36698. image: {
  36699. source: "./media/characters/helen-arri/front.svg",
  36700. extra: 440/423,
  36701. bottom: 14/454
  36702. }
  36703. },
  36704. back: {
  36705. height: math.unit(7 + 8/12, "feet"),
  36706. weight: math.unit(152, "kg"),
  36707. name: "Back",
  36708. image: {
  36709. source: "./media/characters/helen-arri/back.svg",
  36710. extra: 443/426,
  36711. bottom: 8/451
  36712. }
  36713. },
  36714. },
  36715. [
  36716. {
  36717. name: "Normal",
  36718. height: math.unit(7 + 8/12, "feet"),
  36719. default: true
  36720. },
  36721. {
  36722. name: "Big",
  36723. height: math.unit(14, "feet")
  36724. },
  36725. {
  36726. name: "Minimacro",
  36727. height: math.unit(24, "feet")
  36728. },
  36729. {
  36730. name: "Macro",
  36731. height: math.unit(140, "feet")
  36732. },
  36733. ]
  36734. ))
  36735. characterMakers.push(() => makeCharacter(
  36736. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36737. {
  36738. front: {
  36739. height: math.unit(6, "meters"),
  36740. name: "Front",
  36741. image: {
  36742. source: "./media/characters/ehanu-rehu/front.svg",
  36743. extra: 1800/1800,
  36744. bottom: 59/1859
  36745. }
  36746. },
  36747. },
  36748. [
  36749. {
  36750. name: "Normal",
  36751. height: math.unit(6, "meters"),
  36752. default: true
  36753. },
  36754. ]
  36755. ))
  36756. characterMakers.push(() => makeCharacter(
  36757. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36758. {
  36759. front: {
  36760. height: math.unit(7 + 3/12, "feet"),
  36761. name: "Front",
  36762. image: {
  36763. source: "./media/characters/renholder/front.svg",
  36764. extra: 3096/2960,
  36765. bottom: 250/3346
  36766. }
  36767. },
  36768. },
  36769. [
  36770. {
  36771. name: "Normal Bat",
  36772. height: math.unit(7 + 3/12, "feet"),
  36773. default: true
  36774. },
  36775. {
  36776. name: "Slightly Tall Bat",
  36777. height: math.unit(100, "feet")
  36778. },
  36779. {
  36780. name: "Big Bat",
  36781. height: math.unit(1000, "feet")
  36782. },
  36783. {
  36784. name: "City-Sized Bat",
  36785. height: math.unit(200000, "feet")
  36786. },
  36787. {
  36788. name: "Bigger Bat",
  36789. height: math.unit(10000, "miles")
  36790. },
  36791. {
  36792. name: "Solar Sized Bat",
  36793. height: math.unit(100, "AU")
  36794. },
  36795. {
  36796. name: "Galactic Bat",
  36797. height: math.unit(200000, "lightyears")
  36798. },
  36799. {
  36800. name: "Universally Known Bat",
  36801. height: math.unit(1, "universe")
  36802. },
  36803. ]
  36804. ))
  36805. characterMakers.push(() => makeCharacter(
  36806. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36807. {
  36808. front: {
  36809. height: math.unit(6 + 11/12, "feet"),
  36810. weight: math.unit(250, "lb"),
  36811. name: "Front",
  36812. image: {
  36813. source: "./media/characters/cookiecat/front.svg",
  36814. extra: 893/827,
  36815. bottom: 14/907
  36816. }
  36817. },
  36818. },
  36819. [
  36820. {
  36821. name: "Micro",
  36822. height: math.unit(3, "inches")
  36823. },
  36824. {
  36825. name: "Normal",
  36826. height: math.unit(6 + 11/12, "feet"),
  36827. default: true
  36828. },
  36829. {
  36830. name: "Macro",
  36831. height: math.unit(100, "feet")
  36832. },
  36833. {
  36834. name: "Macro+",
  36835. height: math.unit(404, "feet")
  36836. },
  36837. {
  36838. name: "Megamacro",
  36839. height: math.unit(165, "miles")
  36840. },
  36841. {
  36842. name: "Planetary",
  36843. height: math.unit(4600, "miles")
  36844. },
  36845. ]
  36846. ))
  36847. characterMakers.push(() => makeCharacter(
  36848. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36849. {
  36850. front: {
  36851. height: math.unit(10 + 3/12, "feet"),
  36852. weight: math.unit(1500, "lb"),
  36853. name: "Front",
  36854. image: {
  36855. source: "./media/characters/tux-kusanagi/front.svg",
  36856. extra: 944/840,
  36857. bottom: 39/983
  36858. }
  36859. },
  36860. back: {
  36861. height: math.unit(10 + 3/12, "feet"),
  36862. weight: math.unit(1500, "lb"),
  36863. name: "Back",
  36864. image: {
  36865. source: "./media/characters/tux-kusanagi/back.svg",
  36866. extra: 941/842,
  36867. bottom: 28/969
  36868. }
  36869. },
  36870. rump: {
  36871. height: math.unit(5.25, "feet"),
  36872. name: "Rump",
  36873. image: {
  36874. source: "./media/characters/tux-kusanagi/rump.svg"
  36875. }
  36876. },
  36877. beak: {
  36878. height: math.unit(1.54, "feet"),
  36879. name: "Beak",
  36880. image: {
  36881. source: "./media/characters/tux-kusanagi/beak.svg"
  36882. }
  36883. },
  36884. },
  36885. [
  36886. {
  36887. name: "Normal",
  36888. height: math.unit(10 + 3/12, "feet"),
  36889. default: true
  36890. },
  36891. ]
  36892. ))
  36893. characterMakers.push(() => makeCharacter(
  36894. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36895. {
  36896. front: {
  36897. height: math.unit(58, "feet"),
  36898. weight: math.unit(200, "tons"),
  36899. name: "Front",
  36900. image: {
  36901. source: "./media/characters/uzarmazari/front.svg",
  36902. extra: 1575/1455,
  36903. bottom: 152/1727
  36904. }
  36905. },
  36906. back: {
  36907. height: math.unit(58, "feet"),
  36908. weight: math.unit(200, "tons"),
  36909. name: "Back",
  36910. image: {
  36911. source: "./media/characters/uzarmazari/back.svg",
  36912. extra: 1585/1510,
  36913. bottom: 157/1742
  36914. }
  36915. },
  36916. head: {
  36917. height: math.unit(26, "feet"),
  36918. name: "Head",
  36919. image: {
  36920. source: "./media/characters/uzarmazari/head.svg"
  36921. }
  36922. },
  36923. },
  36924. [
  36925. {
  36926. name: "Normal",
  36927. height: math.unit(58, "feet"),
  36928. default: true
  36929. },
  36930. ]
  36931. ))
  36932. characterMakers.push(() => makeCharacter(
  36933. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36934. {
  36935. side: {
  36936. height: math.unit(15, "feet"),
  36937. name: "Side",
  36938. image: {
  36939. source: "./media/characters/akitu/side.svg",
  36940. extra: 1421/1321,
  36941. bottom: 157/1578
  36942. }
  36943. },
  36944. front: {
  36945. height: math.unit(15, "feet"),
  36946. name: "Front",
  36947. image: {
  36948. source: "./media/characters/akitu/front.svg",
  36949. extra: 1435/1326,
  36950. bottom: 232/1667
  36951. }
  36952. },
  36953. },
  36954. [
  36955. {
  36956. name: "Normal",
  36957. height: math.unit(15, "feet"),
  36958. default: true
  36959. },
  36960. ]
  36961. ))
  36962. characterMakers.push(() => makeCharacter(
  36963. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36964. {
  36965. front: {
  36966. height: math.unit(10 + 8/12, "feet"),
  36967. name: "Front",
  36968. image: {
  36969. source: "./media/characters/azalie-croixland/front.svg",
  36970. extra: 1972/1856,
  36971. bottom: 31/2003
  36972. }
  36973. },
  36974. },
  36975. [
  36976. {
  36977. name: "Original Height",
  36978. height: math.unit(5 + 4/12, "feet")
  36979. },
  36980. {
  36981. name: "Normal Height",
  36982. height: math.unit(10 + 8/12, "feet"),
  36983. default: true
  36984. },
  36985. ]
  36986. ))
  36987. characterMakers.push(() => makeCharacter(
  36988. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36989. {
  36990. side: {
  36991. height: math.unit(7 + 1/12, "feet"),
  36992. weight: math.unit(245, "lb"),
  36993. name: "Side",
  36994. image: {
  36995. source: "./media/characters/kavus-kazian/side.svg",
  36996. extra: 349/342,
  36997. bottom: 15/364
  36998. }
  36999. },
  37000. },
  37001. [
  37002. {
  37003. name: "Normal",
  37004. height: math.unit(7 + 1/12, "feet"),
  37005. default: true
  37006. },
  37007. ]
  37008. ))
  37009. characterMakers.push(() => makeCharacter(
  37010. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37011. {
  37012. normalFront: {
  37013. height: math.unit(5 + 11/12, "feet"),
  37014. name: "Front",
  37015. image: {
  37016. source: "./media/characters/moonlight-rose/normal-front.svg",
  37017. extra: 1980/1825,
  37018. bottom: 18/1998
  37019. },
  37020. form: "normal",
  37021. default: true
  37022. },
  37023. normalBack: {
  37024. height: math.unit(5 + 11/12, "feet"),
  37025. name: "Back",
  37026. image: {
  37027. source: "./media/characters/moonlight-rose/normal-back.svg",
  37028. extra: 2010/1839,
  37029. bottom: 10/2020
  37030. },
  37031. form: "normal"
  37032. },
  37033. demonFront: {
  37034. height: math.unit(1.5, "earths"),
  37035. name: "Front",
  37036. image: {
  37037. source: "./media/characters/moonlight-rose/demon.svg",
  37038. extra: 1400/1294,
  37039. bottom: 45/1445
  37040. },
  37041. form: "demon",
  37042. default: true
  37043. },
  37044. terraFront: {
  37045. height: math.unit(1.5, "earths"),
  37046. name: "Front",
  37047. image: {
  37048. source: "./media/characters/moonlight-rose/terra.svg"
  37049. },
  37050. form: "terra",
  37051. default: true
  37052. },
  37053. jupiterFront: {
  37054. height: math.unit(69911*2, "km"),
  37055. name: "Front",
  37056. image: {
  37057. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37058. extra: 1367/1286,
  37059. bottom: 55/1422
  37060. },
  37061. form: "jupiter",
  37062. default: true
  37063. },
  37064. neptuneFront: {
  37065. height: math.unit(24622*2, "feet"),
  37066. name: "Front",
  37067. image: {
  37068. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37069. extra: 1851/1712,
  37070. bottom: 0/1851
  37071. },
  37072. form: "neptune",
  37073. default: true
  37074. },
  37075. },
  37076. [
  37077. {
  37078. name: "\"Natural\" Height",
  37079. height: math.unit(5 + 11/12, "feet"),
  37080. form: "normal"
  37081. },
  37082. {
  37083. name: "Smallest comfortable size",
  37084. height: math.unit(40, "meters"),
  37085. form: "normal"
  37086. },
  37087. {
  37088. name: "Common size",
  37089. height: math.unit(50, "km"),
  37090. form: "normal",
  37091. default: true
  37092. },
  37093. {
  37094. name: "Normal",
  37095. height: math.unit(1.5, "earths"),
  37096. form: "demon",
  37097. default: true
  37098. },
  37099. {
  37100. name: "Universal",
  37101. height: math.unit(15, "universes"),
  37102. form: "demon"
  37103. },
  37104. {
  37105. name: "Earth",
  37106. height: math.unit(1.5, "earths"),
  37107. form: "terra",
  37108. default: true
  37109. },
  37110. {
  37111. name: "Super Earth",
  37112. height: math.unit(67.5, "earths"),
  37113. form: "terra"
  37114. },
  37115. {
  37116. name: "Doesn't fit in a solar system...",
  37117. height: math.unit(1, "galaxy"),
  37118. form: "terra"
  37119. },
  37120. {
  37121. name: "Saturn",
  37122. height: math.unit(58232*2, "km"),
  37123. form: "jupiter"
  37124. },
  37125. {
  37126. name: "Jupiter",
  37127. height: math.unit(69911*2, "km"),
  37128. form: "jupiter",
  37129. default: true
  37130. },
  37131. {
  37132. name: "HD 100546 b",
  37133. height: math.unit(482938, "km"),
  37134. form: "jupiter"
  37135. },
  37136. {
  37137. name: "Enceladus",
  37138. height: math.unit(513*2, "km"),
  37139. form: "neptune"
  37140. },
  37141. {
  37142. name: "Europe",
  37143. height: math.unit(1560*2, "km"),
  37144. form: "neptune"
  37145. },
  37146. {
  37147. name: "Neptune",
  37148. height: math.unit(24622*2, "km"),
  37149. form: "neptune",
  37150. default: true
  37151. },
  37152. {
  37153. name: "CoRoT-9b",
  37154. height: math.unit(75067*2, "km"),
  37155. form: "neptune"
  37156. },
  37157. ],
  37158. {
  37159. "normal": {
  37160. name: "Normal",
  37161. default: true
  37162. },
  37163. "demon": {
  37164. name: "Demon"
  37165. },
  37166. "terra": {
  37167. name: "Terra"
  37168. },
  37169. "jupiter": {
  37170. name: "Jupiter"
  37171. },
  37172. "neptune": {
  37173. name: "Neptune"
  37174. }
  37175. }
  37176. ))
  37177. characterMakers.push(() => makeCharacter(
  37178. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37179. {
  37180. front: {
  37181. height: math.unit(16, "feet"),
  37182. weight: math.unit(610, "kg"),
  37183. name: "Front",
  37184. image: {
  37185. source: "./media/characters/huckle/front.svg",
  37186. extra: 1731/1625,
  37187. bottom: 33/1764
  37188. }
  37189. },
  37190. back: {
  37191. height: math.unit(16, "feet"),
  37192. weight: math.unit(610, "kg"),
  37193. name: "Back",
  37194. image: {
  37195. source: "./media/characters/huckle/back.svg",
  37196. extra: 1738/1651,
  37197. bottom: 37/1775
  37198. }
  37199. },
  37200. laughing: {
  37201. height: math.unit(3.75, "feet"),
  37202. name: "Laughing",
  37203. image: {
  37204. source: "./media/characters/huckle/laughing.svg"
  37205. }
  37206. },
  37207. angry: {
  37208. height: math.unit(4.15, "feet"),
  37209. name: "Angry",
  37210. image: {
  37211. source: "./media/characters/huckle/angry.svg"
  37212. }
  37213. },
  37214. },
  37215. [
  37216. {
  37217. name: "Normal",
  37218. height: math.unit(16, "feet"),
  37219. default: true
  37220. },
  37221. {
  37222. name: "Mini Macro",
  37223. height: math.unit(463, "feet")
  37224. },
  37225. {
  37226. name: "Macro",
  37227. height: math.unit(1680, "meters")
  37228. },
  37229. {
  37230. name: "Mega Macro",
  37231. height: math.unit(175, "km")
  37232. },
  37233. {
  37234. name: "Terra Macro",
  37235. height: math.unit(32, "gigameters")
  37236. },
  37237. {
  37238. name: "Multiverse+",
  37239. height: math.unit(2.56e23, "yottameters")
  37240. },
  37241. ]
  37242. ))
  37243. characterMakers.push(() => makeCharacter(
  37244. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37245. {
  37246. front: {
  37247. height: math.unit(6 + 9/12, "feet"),
  37248. weight: math.unit(280, "lb"),
  37249. name: "Front",
  37250. image: {
  37251. source: "./media/characters/candy/front.svg",
  37252. extra: 234/217,
  37253. bottom: 11/245
  37254. }
  37255. },
  37256. },
  37257. [
  37258. {
  37259. name: "Really Small",
  37260. height: math.unit(0.1, "nm")
  37261. },
  37262. {
  37263. name: "Micro",
  37264. height: math.unit(2, "inches")
  37265. },
  37266. {
  37267. name: "Normal",
  37268. height: math.unit(6 + 9/12, "feet"),
  37269. default: true
  37270. },
  37271. {
  37272. name: "Small Macro",
  37273. height: math.unit(69, "feet")
  37274. },
  37275. {
  37276. name: "Macro",
  37277. height: math.unit(160, "feet")
  37278. },
  37279. {
  37280. name: "Megamacro",
  37281. height: math.unit(22000, "miles")
  37282. },
  37283. {
  37284. name: "Gigamacro",
  37285. height: math.unit(50000, "miles")
  37286. },
  37287. ]
  37288. ))
  37289. characterMakers.push(() => makeCharacter(
  37290. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37291. {
  37292. front: {
  37293. height: math.unit(4, "feet"),
  37294. weight: math.unit(90, "lb"),
  37295. name: "Front",
  37296. image: {
  37297. source: "./media/characters/joey-mcdonald/front.svg",
  37298. extra: 1059/852,
  37299. bottom: 33/1092
  37300. }
  37301. },
  37302. back: {
  37303. height: math.unit(4, "feet"),
  37304. weight: math.unit(90, "lb"),
  37305. name: "Back",
  37306. image: {
  37307. source: "./media/characters/joey-mcdonald/back.svg",
  37308. extra: 1077/879,
  37309. bottom: 5/1082
  37310. }
  37311. },
  37312. frontKobold: {
  37313. height: math.unit(4, "feet"),
  37314. weight: math.unit(100, "lb"),
  37315. name: "Front-kobold",
  37316. image: {
  37317. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37318. extra: 1480/1367,
  37319. bottom: 0/1480
  37320. }
  37321. },
  37322. backKobold: {
  37323. height: math.unit(4, "feet"),
  37324. weight: math.unit(100, "lb"),
  37325. name: "Back-kobold",
  37326. image: {
  37327. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37328. extra: 1449/1361,
  37329. bottom: 0/1449
  37330. }
  37331. },
  37332. },
  37333. [
  37334. {
  37335. name: "Normal",
  37336. height: math.unit(4, "feet"),
  37337. default: true
  37338. },
  37339. ]
  37340. ))
  37341. characterMakers.push(() => makeCharacter(
  37342. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37343. {
  37344. front: {
  37345. height: math.unit(12 + 6/12, "feet"),
  37346. name: "Front",
  37347. image: {
  37348. source: "./media/characters/kass-lockheed/front.svg",
  37349. extra: 354/343,
  37350. bottom: 9/363
  37351. }
  37352. },
  37353. back: {
  37354. height: math.unit(12 + 6/12, "feet"),
  37355. name: "Back",
  37356. image: {
  37357. source: "./media/characters/kass-lockheed/back.svg",
  37358. extra: 364/352,
  37359. bottom: 3/367
  37360. }
  37361. },
  37362. dick: {
  37363. height: math.unit(3.12, "feet"),
  37364. name: "Dick",
  37365. image: {
  37366. source: "./media/characters/kass-lockheed/dick.svg"
  37367. }
  37368. },
  37369. head: {
  37370. height: math.unit(2.6, "feet"),
  37371. name: "Head",
  37372. image: {
  37373. source: "./media/characters/kass-lockheed/head.svg"
  37374. }
  37375. },
  37376. bleh: {
  37377. height: math.unit(2.85, "feet"),
  37378. name: "Bleh",
  37379. image: {
  37380. source: "./media/characters/kass-lockheed/bleh.svg"
  37381. }
  37382. },
  37383. smug: {
  37384. height: math.unit(2.85, "feet"),
  37385. name: "Smug",
  37386. image: {
  37387. source: "./media/characters/kass-lockheed/smug.svg"
  37388. }
  37389. },
  37390. },
  37391. [
  37392. {
  37393. name: "Normal",
  37394. height: math.unit(12 + 6/12, "feet"),
  37395. default: true
  37396. },
  37397. ]
  37398. ))
  37399. characterMakers.push(() => makeCharacter(
  37400. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37401. {
  37402. front: {
  37403. height: math.unit(6 + 2/12, "feet"),
  37404. name: "Front",
  37405. image: {
  37406. source: "./media/characters/taylor/front.svg",
  37407. extra: 639/495,
  37408. bottom: 12/651
  37409. }
  37410. },
  37411. },
  37412. [
  37413. {
  37414. name: "Normal",
  37415. height: math.unit(6 + 2/12, "feet"),
  37416. default: true
  37417. },
  37418. {
  37419. name: "Big",
  37420. height: math.unit(15, "feet")
  37421. },
  37422. {
  37423. name: "Lorg",
  37424. height: math.unit(80, "feet")
  37425. },
  37426. {
  37427. name: "Too Lorg",
  37428. height: math.unit(120, "feet")
  37429. },
  37430. ]
  37431. ))
  37432. characterMakers.push(() => makeCharacter(
  37433. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37434. {
  37435. front: {
  37436. height: math.unit(15, "feet"),
  37437. name: "Front",
  37438. image: {
  37439. source: "./media/characters/kaizer/front.svg",
  37440. extra: 1612/1436,
  37441. bottom: 43/1655
  37442. }
  37443. },
  37444. },
  37445. [
  37446. {
  37447. name: "Normal",
  37448. height: math.unit(15, "feet"),
  37449. default: true
  37450. },
  37451. ]
  37452. ))
  37453. characterMakers.push(() => makeCharacter(
  37454. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37455. {
  37456. front: {
  37457. height: math.unit(2, "feet"),
  37458. weight: math.unit(30, "lb"),
  37459. name: "Front",
  37460. image: {
  37461. source: "./media/characters/sandy/front.svg",
  37462. extra: 1439/1307,
  37463. bottom: 194/1633
  37464. }
  37465. },
  37466. },
  37467. [
  37468. {
  37469. name: "Normal",
  37470. height: math.unit(2, "feet"),
  37471. default: true
  37472. },
  37473. ]
  37474. ))
  37475. characterMakers.push(() => makeCharacter(
  37476. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37477. {
  37478. front: {
  37479. height: math.unit(3, "feet"),
  37480. name: "Front",
  37481. image: {
  37482. source: "./media/characters/mellvi/front.svg",
  37483. extra: 1831/1630,
  37484. bottom: 58/1889
  37485. }
  37486. },
  37487. },
  37488. [
  37489. {
  37490. name: "Normal",
  37491. height: math.unit(3, "feet"),
  37492. default: true
  37493. },
  37494. ]
  37495. ))
  37496. characterMakers.push(() => makeCharacter(
  37497. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37498. {
  37499. front: {
  37500. height: math.unit(5 + 11/12, "feet"),
  37501. weight: math.unit(200, "lb"),
  37502. name: "Front",
  37503. image: {
  37504. source: "./media/characters/shirou/front.svg",
  37505. extra: 2491/2383,
  37506. bottom: 189/2680
  37507. }
  37508. },
  37509. back: {
  37510. height: math.unit(5 + 11/12, "feet"),
  37511. weight: math.unit(200, "lb"),
  37512. name: "Back",
  37513. image: {
  37514. source: "./media/characters/shirou/back.svg",
  37515. extra: 2554/2450,
  37516. bottom: 76/2630
  37517. }
  37518. },
  37519. },
  37520. [
  37521. {
  37522. name: "Normal",
  37523. height: math.unit(5 + 11/12, "feet"),
  37524. default: true
  37525. },
  37526. ]
  37527. ))
  37528. characterMakers.push(() => makeCharacter(
  37529. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37530. {
  37531. front: {
  37532. height: math.unit(6 + 3/12, "feet"),
  37533. weight: math.unit(177, "lb"),
  37534. name: "Front",
  37535. image: {
  37536. source: "./media/characters/noryu/front.svg",
  37537. extra: 973/885,
  37538. bottom: 10/983
  37539. }
  37540. },
  37541. },
  37542. [
  37543. {
  37544. name: "Normal",
  37545. height: math.unit(6 + 3/12, "feet"),
  37546. default: true
  37547. },
  37548. ]
  37549. ))
  37550. characterMakers.push(() => makeCharacter(
  37551. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37552. {
  37553. front: {
  37554. height: math.unit(5 + 6/12, "feet"),
  37555. weight: math.unit(170, "lb"),
  37556. name: "Front",
  37557. image: {
  37558. source: "./media/characters/mevolas-rubenido/front.svg",
  37559. extra: 2109/1901,
  37560. bottom: 96/2205
  37561. }
  37562. },
  37563. },
  37564. [
  37565. {
  37566. name: "Normal",
  37567. height: math.unit(5 + 6/12, "feet"),
  37568. default: true
  37569. },
  37570. ]
  37571. ))
  37572. characterMakers.push(() => makeCharacter(
  37573. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37574. {
  37575. front: {
  37576. height: math.unit(100, "feet"),
  37577. name: "Front",
  37578. image: {
  37579. source: "./media/characters/dee/front.svg",
  37580. extra: 2153/2036,
  37581. bottom: 59/2212
  37582. }
  37583. },
  37584. back: {
  37585. height: math.unit(100, "feet"),
  37586. name: "Back",
  37587. image: {
  37588. source: "./media/characters/dee/back.svg",
  37589. extra: 2183/2058,
  37590. bottom: 75/2258
  37591. }
  37592. },
  37593. foot: {
  37594. height: math.unit(19.43, "feet"),
  37595. name: "Foot",
  37596. image: {
  37597. source: "./media/characters/dee/foot.svg"
  37598. }
  37599. },
  37600. hoof: {
  37601. height: math.unit(20.6, "feet"),
  37602. name: "Hoof",
  37603. image: {
  37604. source: "./media/characters/dee/hoof.svg"
  37605. }
  37606. },
  37607. },
  37608. [
  37609. {
  37610. name: "Macro",
  37611. height: math.unit(100, "feet"),
  37612. default: true
  37613. },
  37614. ]
  37615. ))
  37616. characterMakers.push(() => makeCharacter(
  37617. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37618. {
  37619. front: {
  37620. height: math.unit(5 + 6/12, "feet"),
  37621. name: "Front",
  37622. image: {
  37623. source: "./media/characters/teh/front.svg",
  37624. extra: 1002/847,
  37625. bottom: 62/1064
  37626. }
  37627. },
  37628. },
  37629. [
  37630. {
  37631. name: "Normal",
  37632. height: math.unit(5 + 6/12, "feet"),
  37633. default: true
  37634. },
  37635. ]
  37636. ))
  37637. characterMakers.push(() => makeCharacter(
  37638. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37639. {
  37640. side: {
  37641. height: math.unit(6 + 1/12, "feet"),
  37642. weight: math.unit(204, "lb"),
  37643. name: "Side",
  37644. image: {
  37645. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37646. extra: 974/775,
  37647. bottom: 169/1143
  37648. }
  37649. },
  37650. sitting: {
  37651. height: math.unit(6 + 2/12, "feet"),
  37652. weight: math.unit(204, "lb"),
  37653. name: "Sitting",
  37654. image: {
  37655. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37656. extra: 1175/964,
  37657. bottom: 378/1553
  37658. }
  37659. },
  37660. },
  37661. [
  37662. {
  37663. name: "Normal",
  37664. height: math.unit(6 + 1/12, "feet"),
  37665. default: true
  37666. },
  37667. ]
  37668. ))
  37669. characterMakers.push(() => makeCharacter(
  37670. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37671. {
  37672. front: {
  37673. height: math.unit(6, "inches"),
  37674. name: "Front",
  37675. image: {
  37676. source: "./media/characters/tululi/front.svg",
  37677. extra: 1997/1876,
  37678. bottom: 20/2017
  37679. }
  37680. },
  37681. },
  37682. [
  37683. {
  37684. name: "Normal",
  37685. height: math.unit(6, "inches"),
  37686. default: true
  37687. },
  37688. ]
  37689. ))
  37690. characterMakers.push(() => makeCharacter(
  37691. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37692. {
  37693. front: {
  37694. height: math.unit(4 + 1/12, "feet"),
  37695. name: "Front",
  37696. image: {
  37697. source: "./media/characters/star/front.svg",
  37698. extra: 1493/1189,
  37699. bottom: 48/1541
  37700. }
  37701. },
  37702. },
  37703. [
  37704. {
  37705. name: "Normal",
  37706. height: math.unit(4 + 1/12, "feet"),
  37707. default: true
  37708. },
  37709. ]
  37710. ))
  37711. characterMakers.push(() => makeCharacter(
  37712. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37713. {
  37714. front: {
  37715. height: math.unit(6 + 3/12, "feet"),
  37716. name: "Front",
  37717. image: {
  37718. source: "./media/characters/comet/front.svg",
  37719. extra: 1681/1462,
  37720. bottom: 26/1707
  37721. }
  37722. },
  37723. },
  37724. [
  37725. {
  37726. name: "Normal",
  37727. height: math.unit(6 + 3/12, "feet"),
  37728. default: true
  37729. },
  37730. ]
  37731. ))
  37732. characterMakers.push(() => makeCharacter(
  37733. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37734. {
  37735. front: {
  37736. height: math.unit(950, "feet"),
  37737. name: "Front",
  37738. image: {
  37739. source: "./media/characters/vortex/front.svg",
  37740. extra: 1497/1434,
  37741. bottom: 56/1553
  37742. }
  37743. },
  37744. maw: {
  37745. height: math.unit(285, "feet"),
  37746. name: "Maw",
  37747. image: {
  37748. source: "./media/characters/vortex/maw.svg"
  37749. }
  37750. },
  37751. },
  37752. [
  37753. {
  37754. name: "Macro",
  37755. height: math.unit(950, "feet"),
  37756. default: true
  37757. },
  37758. ]
  37759. ))
  37760. characterMakers.push(() => makeCharacter(
  37761. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37762. {
  37763. front: {
  37764. height: math.unit(600, "feet"),
  37765. weight: math.unit(0.02, "grams"),
  37766. name: "Front",
  37767. image: {
  37768. source: "./media/characters/doodle/front.svg",
  37769. extra: 1578/1413,
  37770. bottom: 37/1615
  37771. }
  37772. },
  37773. },
  37774. [
  37775. {
  37776. name: "Macro",
  37777. height: math.unit(600, "feet"),
  37778. default: true
  37779. },
  37780. ]
  37781. ))
  37782. characterMakers.push(() => makeCharacter(
  37783. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37784. {
  37785. front: {
  37786. height: math.unit(6 + 6/12, "feet"),
  37787. name: "Front",
  37788. image: {
  37789. source: "./media/characters/jai/front.svg",
  37790. extra: 1645/1534,
  37791. bottom: 115/1760
  37792. }
  37793. },
  37794. },
  37795. [
  37796. {
  37797. name: "Normal",
  37798. height: math.unit(6 + 6/12, "feet"),
  37799. default: true
  37800. },
  37801. ]
  37802. ))
  37803. characterMakers.push(() => makeCharacter(
  37804. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37805. {
  37806. front: {
  37807. height: math.unit(6 + 8/12, "feet"),
  37808. name: "Front",
  37809. image: {
  37810. source: "./media/characters/pixel/front.svg",
  37811. extra: 1900/1735,
  37812. bottom: 63/1963
  37813. }
  37814. },
  37815. },
  37816. [
  37817. {
  37818. name: "Normal",
  37819. height: math.unit(6 + 8/12, "feet"),
  37820. default: true
  37821. },
  37822. ]
  37823. ))
  37824. characterMakers.push(() => makeCharacter(
  37825. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37826. {
  37827. back: {
  37828. height: math.unit(4 + 1/12, "feet"),
  37829. weight: math.unit(75, "lb"),
  37830. name: "Back",
  37831. image: {
  37832. source: "./media/characters/rhett/back.svg",
  37833. extra: 930/878,
  37834. bottom: 25/955
  37835. }
  37836. },
  37837. front: {
  37838. height: math.unit(4 + 1/12, "feet"),
  37839. weight: math.unit(75, "lb"),
  37840. name: "Front",
  37841. image: {
  37842. source: "./media/characters/rhett/front.svg",
  37843. extra: 1682/1586,
  37844. bottom: 92/1774
  37845. }
  37846. },
  37847. },
  37848. [
  37849. {
  37850. name: "Micro",
  37851. height: math.unit(8, "inches")
  37852. },
  37853. {
  37854. name: "Tiny",
  37855. height: math.unit(2, "feet")
  37856. },
  37857. {
  37858. name: "Normal",
  37859. height: math.unit(4 + 1/12, "feet"),
  37860. default: true
  37861. },
  37862. ]
  37863. ))
  37864. characterMakers.push(() => makeCharacter(
  37865. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37866. {
  37867. front: {
  37868. height: math.unit(3 + 3/12, "feet"),
  37869. name: "Front",
  37870. image: {
  37871. source: "./media/characters/penny/front.svg",
  37872. extra: 1406/1311,
  37873. bottom: 26/1432
  37874. }
  37875. },
  37876. },
  37877. [
  37878. {
  37879. name: "Normal",
  37880. height: math.unit(3 + 3/12, "feet"),
  37881. default: true
  37882. },
  37883. ]
  37884. ))
  37885. characterMakers.push(() => makeCharacter(
  37886. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37887. {
  37888. front: {
  37889. height: math.unit(4 + 11/12, "feet"),
  37890. name: "Front",
  37891. image: {
  37892. source: "./media/characters/monty/front.svg",
  37893. extra: 1479/1209,
  37894. bottom: 0/1479
  37895. }
  37896. },
  37897. },
  37898. [
  37899. {
  37900. name: "Normal",
  37901. height: math.unit(4 + 11/12, "feet"),
  37902. default: true
  37903. },
  37904. ]
  37905. ))
  37906. characterMakers.push(() => makeCharacter(
  37907. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37908. {
  37909. front: {
  37910. height: math.unit(8 + 4/12, "feet"),
  37911. name: "Front",
  37912. image: {
  37913. source: "./media/characters/sterling/front.svg",
  37914. extra: 1420/1236,
  37915. bottom: 27/1447
  37916. }
  37917. },
  37918. },
  37919. [
  37920. {
  37921. name: "Normal",
  37922. height: math.unit(8 + 4/12, "feet"),
  37923. default: true
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37929. {
  37930. front: {
  37931. height: math.unit(15, "feet"),
  37932. name: "Front",
  37933. image: {
  37934. source: "./media/characters/marble/front.svg",
  37935. extra: 973/937,
  37936. bottom: 32/1005
  37937. }
  37938. },
  37939. },
  37940. [
  37941. {
  37942. name: "Normal",
  37943. height: math.unit(15, "feet"),
  37944. default: true
  37945. },
  37946. ]
  37947. ))
  37948. characterMakers.push(() => makeCharacter(
  37949. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37950. {
  37951. front: {
  37952. height: math.unit(3, "inches"),
  37953. name: "Front",
  37954. image: {
  37955. source: "./media/characters/powder/front.svg",
  37956. extra: 1504/1334,
  37957. bottom: 518/2022
  37958. }
  37959. },
  37960. },
  37961. [
  37962. {
  37963. name: "Normal",
  37964. height: math.unit(3, "inches"),
  37965. default: true
  37966. },
  37967. ]
  37968. ))
  37969. characterMakers.push(() => makeCharacter(
  37970. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37971. {
  37972. front: {
  37973. height: math.unit(4 + 5/12, "feet"),
  37974. name: "Front",
  37975. image: {
  37976. source: "./media/characters/joey-raccoon/front.svg",
  37977. extra: 1273/1197,
  37978. bottom: 0/1273
  37979. }
  37980. },
  37981. },
  37982. [
  37983. {
  37984. name: "Normal",
  37985. height: math.unit(4 + 5/12, "feet"),
  37986. default: true
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37992. {
  37993. front: {
  37994. height: math.unit(8 + 4/12, "feet"),
  37995. name: "Front",
  37996. image: {
  37997. source: "./media/characters/vick/front.svg",
  37998. extra: 2187/2118,
  37999. bottom: 47/2234
  38000. }
  38001. },
  38002. },
  38003. [
  38004. {
  38005. name: "Normal",
  38006. height: math.unit(8 + 4/12, "feet"),
  38007. default: true
  38008. },
  38009. ]
  38010. ))
  38011. characterMakers.push(() => makeCharacter(
  38012. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38013. {
  38014. front: {
  38015. height: math.unit(5 + 5/12, "feet"),
  38016. name: "Front",
  38017. image: {
  38018. source: "./media/characters/mitsy/front.svg",
  38019. extra: 1842/1695,
  38020. bottom: 0/1842
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "Normal",
  38027. height: math.unit(5 + 5/12, "feet"),
  38028. default: true
  38029. },
  38030. ]
  38031. ))
  38032. characterMakers.push(() => makeCharacter(
  38033. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38034. {
  38035. front: {
  38036. height: math.unit(6 + 3/12, "feet"),
  38037. name: "Front",
  38038. image: {
  38039. source: "./media/characters/silvy/front.svg",
  38040. extra: 1995/1836,
  38041. bottom: 225/2220
  38042. }
  38043. },
  38044. },
  38045. [
  38046. {
  38047. name: "Normal",
  38048. height: math.unit(6 + 3/12, "feet"),
  38049. default: true
  38050. },
  38051. ]
  38052. ))
  38053. characterMakers.push(() => makeCharacter(
  38054. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38055. {
  38056. front: {
  38057. height: math.unit(3 + 8/12, "feet"),
  38058. name: "Front",
  38059. image: {
  38060. source: "./media/characters/rodney/front.svg",
  38061. extra: 1956/1747,
  38062. bottom: 31/1987
  38063. }
  38064. },
  38065. frontDressed: {
  38066. height: math.unit(2.9, "feet"),
  38067. name: "Front (Dressed)",
  38068. image: {
  38069. source: "./media/characters/rodney/front-dressed.svg",
  38070. extra: 1382/1241,
  38071. bottom: 385/1767
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Normal",
  38078. height: math.unit(3 + 8/12, "feet"),
  38079. default: true
  38080. },
  38081. ]
  38082. ))
  38083. characterMakers.push(() => makeCharacter(
  38084. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38085. {
  38086. front: {
  38087. height: math.unit(5 + 9/12, "feet"),
  38088. weight: math.unit(194, "lbs"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/zakail-sudekai/front.svg",
  38092. extra: 2696/2533,
  38093. bottom: 248/2944
  38094. }
  38095. },
  38096. maw: {
  38097. height: math.unit(1.35, "feet"),
  38098. name: "Maw",
  38099. image: {
  38100. source: "./media/characters/zakail-sudekai/maw.svg"
  38101. }
  38102. },
  38103. },
  38104. [
  38105. {
  38106. name: "Normal",
  38107. height: math.unit(5 + 9/12, "feet"),
  38108. default: true
  38109. },
  38110. ]
  38111. ))
  38112. characterMakers.push(() => makeCharacter(
  38113. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38114. {
  38115. front: {
  38116. height: math.unit(8 + 4/12, "feet"),
  38117. weight: math.unit(1200, "lb"),
  38118. name: "Front",
  38119. image: {
  38120. source: "./media/characters/eleanor/front.svg",
  38121. extra: 1226/1192,
  38122. bottom: 52/1278
  38123. }
  38124. },
  38125. back: {
  38126. height: math.unit(8 + 4/12, "feet"),
  38127. weight: math.unit(1200, "lb"),
  38128. name: "Back",
  38129. image: {
  38130. source: "./media/characters/eleanor/back.svg",
  38131. extra: 1242/1184,
  38132. bottom: 60/1302
  38133. }
  38134. },
  38135. head: {
  38136. height: math.unit(2.62, "feet"),
  38137. name: "Head",
  38138. image: {
  38139. source: "./media/characters/eleanor/head.svg"
  38140. }
  38141. },
  38142. },
  38143. [
  38144. {
  38145. name: "Normal",
  38146. height: math.unit(8 + 4/12, "feet"),
  38147. default: true
  38148. },
  38149. ]
  38150. ))
  38151. characterMakers.push(() => makeCharacter(
  38152. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38153. {
  38154. front: {
  38155. height: math.unit(8 + 4/12, "feet"),
  38156. weight: math.unit(750, "lb"),
  38157. name: "Front",
  38158. image: {
  38159. source: "./media/characters/tanya/front.svg",
  38160. extra: 1749/1615,
  38161. bottom: 33/1782
  38162. }
  38163. },
  38164. },
  38165. [
  38166. {
  38167. name: "Normal",
  38168. height: math.unit(8 + 4/12, "feet"),
  38169. default: true
  38170. },
  38171. ]
  38172. ))
  38173. characterMakers.push(() => makeCharacter(
  38174. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38175. {
  38176. front: {
  38177. height: math.unit(5, "feet"),
  38178. weight: math.unit(225, "lb"),
  38179. name: "Front",
  38180. image: {
  38181. source: "./media/characters/cindy/front.svg",
  38182. extra: 1320/1250,
  38183. bottom: 42/1362
  38184. }
  38185. },
  38186. frontDressed: {
  38187. height: math.unit(5, "feet"),
  38188. weight: math.unit(225, "lb"),
  38189. name: "Front (Dressed)",
  38190. image: {
  38191. source: "./media/characters/cindy/front-dressed.svg",
  38192. extra: 1320/1250,
  38193. bottom: 42/1362
  38194. }
  38195. },
  38196. back: {
  38197. height: math.unit(5, "feet"),
  38198. weight: math.unit(225, "lb"),
  38199. name: "Back",
  38200. image: {
  38201. source: "./media/characters/cindy/back.svg",
  38202. extra: 1384/1346,
  38203. bottom: 14/1398
  38204. }
  38205. },
  38206. },
  38207. [
  38208. {
  38209. name: "Normal",
  38210. height: math.unit(5, "feet"),
  38211. default: true
  38212. },
  38213. ]
  38214. ))
  38215. characterMakers.push(() => makeCharacter(
  38216. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38217. {
  38218. front: {
  38219. height: math.unit(6 + 9/12, "feet"),
  38220. weight: math.unit(440, "lb"),
  38221. name: "Front",
  38222. image: {
  38223. source: "./media/characters/wilbur-owen/front.svg",
  38224. extra: 1575/1448,
  38225. bottom: 72/1647
  38226. }
  38227. },
  38228. back: {
  38229. height: math.unit(6 + 9/12, "feet"),
  38230. weight: math.unit(440, "lb"),
  38231. name: "Back",
  38232. image: {
  38233. source: "./media/characters/wilbur-owen/back.svg",
  38234. extra: 1578/1445,
  38235. bottom: 36/1614
  38236. }
  38237. },
  38238. },
  38239. [
  38240. {
  38241. name: "Normal",
  38242. height: math.unit(6 + 9/12, "feet"),
  38243. default: true
  38244. },
  38245. ]
  38246. ))
  38247. characterMakers.push(() => makeCharacter(
  38248. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38249. {
  38250. front: {
  38251. height: math.unit(6 + 5/12, "feet"),
  38252. weight: math.unit(650, "lb"),
  38253. name: "Front",
  38254. image: {
  38255. source: "./media/characters/keegan/front.svg",
  38256. extra: 2387/2198,
  38257. bottom: 33/2420
  38258. }
  38259. },
  38260. side: {
  38261. height: math.unit(6 + 5/12, "feet"),
  38262. weight: math.unit(650, "lb"),
  38263. name: "Side",
  38264. image: {
  38265. source: "./media/characters/keegan/side.svg",
  38266. extra: 2390/2202,
  38267. bottom: 47/2437
  38268. }
  38269. },
  38270. back: {
  38271. height: math.unit(6 + 5/12, "feet"),
  38272. weight: math.unit(650, "lb"),
  38273. name: "Back",
  38274. image: {
  38275. source: "./media/characters/keegan/back.svg",
  38276. extra: 2418/2268,
  38277. bottom: 15/2433
  38278. }
  38279. },
  38280. frontSfw: {
  38281. height: math.unit(6 + 5/12, "feet"),
  38282. weight: math.unit(650, "lb"),
  38283. name: "Front (SFW)",
  38284. image: {
  38285. source: "./media/characters/keegan/front-sfw.svg",
  38286. extra: 2387/2198,
  38287. bottom: 33/2420
  38288. }
  38289. },
  38290. beans: {
  38291. height: math.unit(1.85, "feet"),
  38292. name: "Beans",
  38293. image: {
  38294. source: "./media/characters/keegan/beans.svg"
  38295. }
  38296. },
  38297. },
  38298. [
  38299. {
  38300. name: "Normal",
  38301. height: math.unit(6 + 5/12, "feet"),
  38302. default: true
  38303. },
  38304. ]
  38305. ))
  38306. characterMakers.push(() => makeCharacter(
  38307. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38308. {
  38309. front: {
  38310. height: math.unit(9, "feet"),
  38311. name: "Front",
  38312. image: {
  38313. source: "./media/characters/colton/front.svg",
  38314. extra: 1589/1326,
  38315. bottom: 139/1728
  38316. }
  38317. },
  38318. },
  38319. [
  38320. {
  38321. name: "Normal",
  38322. height: math.unit(9, "feet"),
  38323. default: true
  38324. },
  38325. ]
  38326. ))
  38327. characterMakers.push(() => makeCharacter(
  38328. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38329. {
  38330. front: {
  38331. height: math.unit(2 + 9/12, "feet"),
  38332. name: "Front",
  38333. image: {
  38334. source: "./media/characters/bora/front.svg",
  38335. extra: 1265/1250,
  38336. bottom: 24/1289
  38337. }
  38338. },
  38339. },
  38340. [
  38341. {
  38342. name: "Normal",
  38343. height: math.unit(2 + 9/12, "feet"),
  38344. default: true
  38345. },
  38346. ]
  38347. ))
  38348. characterMakers.push(() => makeCharacter(
  38349. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38350. {
  38351. front: {
  38352. height: math.unit(8, "feet"),
  38353. name: "Front",
  38354. image: {
  38355. source: "./media/characters/myu-myu/front.svg",
  38356. extra: 1949/1857,
  38357. bottom: 90/2039
  38358. }
  38359. },
  38360. },
  38361. [
  38362. {
  38363. name: "Normal",
  38364. height: math.unit(8, "feet"),
  38365. default: true
  38366. },
  38367. {
  38368. name: "Big",
  38369. height: math.unit(15, "feet")
  38370. },
  38371. {
  38372. name: "BIG",
  38373. height: math.unit(25, "feet")
  38374. },
  38375. ]
  38376. ))
  38377. characterMakers.push(() => makeCharacter(
  38378. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38379. {
  38380. side: {
  38381. height: math.unit(7 + 5/12, "feet"),
  38382. weight: math.unit(2800, "lb"),
  38383. name: "Side",
  38384. image: {
  38385. source: "./media/characters/haloren/side.svg",
  38386. extra: 1793/409,
  38387. bottom: 59/1852
  38388. }
  38389. },
  38390. frontPaw: {
  38391. height: math.unit(2.36, "feet"),
  38392. name: "Front paw",
  38393. image: {
  38394. source: "./media/characters/haloren/front-paw.svg"
  38395. }
  38396. },
  38397. hindPaw: {
  38398. height: math.unit(3.18, "feet"),
  38399. name: "Hind paw",
  38400. image: {
  38401. source: "./media/characters/haloren/hind-paw.svg"
  38402. }
  38403. },
  38404. maw: {
  38405. height: math.unit(5.05, "feet"),
  38406. name: "Maw",
  38407. image: {
  38408. source: "./media/characters/haloren/maw.svg"
  38409. }
  38410. },
  38411. dick: {
  38412. height: math.unit(2.90, "feet"),
  38413. name: "Dick",
  38414. image: {
  38415. source: "./media/characters/haloren/dick.svg"
  38416. }
  38417. },
  38418. },
  38419. [
  38420. {
  38421. name: "Normal",
  38422. height: math.unit(7 + 5/12, "feet"),
  38423. default: true
  38424. },
  38425. {
  38426. name: "Enhanced",
  38427. height: math.unit(14 + 3/12, "feet")
  38428. },
  38429. ]
  38430. ))
  38431. characterMakers.push(() => makeCharacter(
  38432. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38433. {
  38434. front: {
  38435. height: math.unit(171, "cm"),
  38436. name: "Front",
  38437. image: {
  38438. source: "./media/characters/kimmy/front.svg",
  38439. extra: 1491/1435,
  38440. bottom: 53/1544
  38441. }
  38442. },
  38443. },
  38444. [
  38445. {
  38446. name: "Small",
  38447. height: math.unit(9, "cm")
  38448. },
  38449. {
  38450. name: "Normal",
  38451. height: math.unit(171, "cm"),
  38452. default: true
  38453. },
  38454. ]
  38455. ))
  38456. characterMakers.push(() => makeCharacter(
  38457. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38458. {
  38459. front: {
  38460. height: math.unit(8, "feet"),
  38461. weight: math.unit(300, "lb"),
  38462. name: "Front",
  38463. image: {
  38464. source: "./media/characters/galeboomer/front.svg",
  38465. extra: 4651/4415,
  38466. bottom: 162/4813
  38467. }
  38468. },
  38469. back: {
  38470. height: math.unit(8, "feet"),
  38471. weight: math.unit(300, "lb"),
  38472. name: "Back",
  38473. image: {
  38474. source: "./media/characters/galeboomer/back.svg",
  38475. extra: 4544/4314,
  38476. bottom: 16/4560
  38477. }
  38478. },
  38479. frontAlt: {
  38480. height: math.unit(8, "feet"),
  38481. weight: math.unit(300, "lb"),
  38482. name: "Front (Alt)",
  38483. image: {
  38484. source: "./media/characters/galeboomer/front-alt.svg",
  38485. extra: 4458/4228,
  38486. bottom: 68/4526
  38487. }
  38488. },
  38489. maw: {
  38490. height: math.unit(1.2, "feet"),
  38491. name: "Maw",
  38492. image: {
  38493. source: "./media/characters/galeboomer/maw.svg"
  38494. }
  38495. },
  38496. },
  38497. [
  38498. {
  38499. name: "Normal",
  38500. height: math.unit(8, "feet"),
  38501. default: true
  38502. },
  38503. ]
  38504. ))
  38505. characterMakers.push(() => makeCharacter(
  38506. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38507. {
  38508. front: {
  38509. height: math.unit(5 + 9/12, "feet"),
  38510. weight: math.unit(120, "lb"),
  38511. name: "Front",
  38512. image: {
  38513. source: "./media/characters/chyr/front.svg",
  38514. extra: 1323/1254,
  38515. bottom: 63/1386
  38516. }
  38517. },
  38518. back: {
  38519. height: math.unit(5 + 9/12, "feet"),
  38520. weight: math.unit(120, "lb"),
  38521. name: "Back",
  38522. image: {
  38523. source: "./media/characters/chyr/back.svg",
  38524. extra: 1323/1252,
  38525. bottom: 48/1371
  38526. }
  38527. },
  38528. },
  38529. [
  38530. {
  38531. name: "Normal",
  38532. height: math.unit(5 + 9/12, "feet"),
  38533. default: true
  38534. },
  38535. ]
  38536. ))
  38537. characterMakers.push(() => makeCharacter(
  38538. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38539. {
  38540. front: {
  38541. height: math.unit(7, "feet"),
  38542. weight: math.unit(310, "lb"),
  38543. name: "Front",
  38544. image: {
  38545. source: "./media/characters/solarus/front.svg",
  38546. extra: 2415/2021,
  38547. bottom: 103/2518
  38548. }
  38549. },
  38550. back: {
  38551. height: math.unit(7, "feet"),
  38552. weight: math.unit(310, "lb"),
  38553. name: "Back",
  38554. image: {
  38555. source: "./media/characters/solarus/back.svg",
  38556. extra: 2463/2089,
  38557. bottom: 79/2542
  38558. }
  38559. },
  38560. },
  38561. [
  38562. {
  38563. name: "Normal",
  38564. height: math.unit(7, "feet"),
  38565. default: true
  38566. },
  38567. ]
  38568. ))
  38569. characterMakers.push(() => makeCharacter(
  38570. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38571. {
  38572. front: {
  38573. height: math.unit(16, "feet"),
  38574. name: "Front",
  38575. image: {
  38576. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38577. extra: 1844/1780,
  38578. bottom: 58/1902
  38579. }
  38580. },
  38581. winterCoat: {
  38582. height: math.unit(16, "feet"),
  38583. name: "Winter Coat",
  38584. image: {
  38585. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38586. extra: 1807/1775,
  38587. bottom: 69/1876
  38588. }
  38589. },
  38590. },
  38591. [
  38592. {
  38593. name: "Normal",
  38594. height: math.unit(16, "feet"),
  38595. default: true
  38596. },
  38597. {
  38598. name: "Chicago Size",
  38599. height: math.unit(560, "feet")
  38600. },
  38601. ]
  38602. ))
  38603. characterMakers.push(() => makeCharacter(
  38604. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38605. {
  38606. front: {
  38607. height: math.unit(11 + 6/12, "feet"),
  38608. weight: math.unit(1366, "lb"),
  38609. name: "Front",
  38610. image: {
  38611. source: "./media/characters/lexor/front.svg",
  38612. extra: 1560/1481,
  38613. bottom: 211/1771
  38614. }
  38615. },
  38616. back: {
  38617. height: math.unit(11 + 6/12, "feet"),
  38618. weight: math.unit(1366, "lb"),
  38619. name: "Back",
  38620. image: {
  38621. source: "./media/characters/lexor/back.svg",
  38622. extra: 1614/1533,
  38623. bottom: 76/1690
  38624. }
  38625. },
  38626. maw: {
  38627. height: math.unit(3, "feet"),
  38628. name: "Maw",
  38629. image: {
  38630. source: "./media/characters/lexor/maw.svg"
  38631. }
  38632. },
  38633. dick: {
  38634. height: math.unit(2.59, "feet"),
  38635. name: "Dick",
  38636. image: {
  38637. source: "./media/characters/lexor/dick.svg"
  38638. }
  38639. },
  38640. },
  38641. [
  38642. {
  38643. name: "Normal",
  38644. height: math.unit(11 + 6/12, "feet"),
  38645. default: true
  38646. },
  38647. ]
  38648. ))
  38649. characterMakers.push(() => makeCharacter(
  38650. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38651. {
  38652. front: {
  38653. height: math.unit(5 + 8/12, "feet"),
  38654. name: "Front",
  38655. image: {
  38656. source: "./media/characters/magnum/front.svg",
  38657. extra: 942/855,
  38658. bottom: 26/968
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Normal",
  38665. height: math.unit(5 + 8/12, "feet"),
  38666. default: true
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(18 + 4/12, "feet"),
  38675. weight: math.unit(1500, "kg"),
  38676. name: "Front",
  38677. image: {
  38678. source: "./media/characters/solas-sharpsman/front.svg",
  38679. extra: 1698/1589,
  38680. bottom: 0/1698
  38681. }
  38682. },
  38683. },
  38684. [
  38685. {
  38686. name: "Normal",
  38687. height: math.unit(18 + 4/12, "feet"),
  38688. default: true
  38689. },
  38690. ]
  38691. ))
  38692. characterMakers.push(() => makeCharacter(
  38693. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38694. {
  38695. front: {
  38696. height: math.unit(5 + 5/12, "feet"),
  38697. weight: math.unit(180, "lb"),
  38698. name: "Front",
  38699. image: {
  38700. source: "./media/characters/october/front.svg",
  38701. extra: 1800/1650,
  38702. bottom: 0/1800
  38703. }
  38704. },
  38705. frontNsfw: {
  38706. height: math.unit(5 + 5/12, "feet"),
  38707. weight: math.unit(180, "lb"),
  38708. name: "Front (NSFW)",
  38709. image: {
  38710. source: "./media/characters/october/front-nsfw.svg",
  38711. extra: 1392/1307,
  38712. bottom: 42/1434
  38713. }
  38714. },
  38715. },
  38716. [
  38717. {
  38718. name: "Normal",
  38719. height: math.unit(5 + 5/12, "feet"),
  38720. default: true
  38721. },
  38722. ]
  38723. ))
  38724. characterMakers.push(() => makeCharacter(
  38725. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38726. {
  38727. front: {
  38728. height: math.unit(8 + 6/12, "feet"),
  38729. name: "Front",
  38730. image: {
  38731. source: "./media/characters/essynkardi/front.svg",
  38732. extra: 1914/1846,
  38733. bottom: 22/1936
  38734. }
  38735. },
  38736. },
  38737. [
  38738. {
  38739. name: "Normal",
  38740. height: math.unit(8 + 6/12, "feet"),
  38741. default: true
  38742. },
  38743. ]
  38744. ))
  38745. characterMakers.push(() => makeCharacter(
  38746. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38747. {
  38748. front: {
  38749. height: math.unit(6 + 6/12, "feet"),
  38750. weight: math.unit(7, "lb"),
  38751. name: "Front",
  38752. image: {
  38753. source: "./media/characters/icky/front.svg",
  38754. extra: 813/782,
  38755. bottom: 66/879
  38756. }
  38757. },
  38758. back: {
  38759. height: math.unit(6 + 6/12, "feet"),
  38760. weight: math.unit(7, "lb"),
  38761. name: "Back",
  38762. image: {
  38763. source: "./media/characters/icky/back.svg",
  38764. extra: 754/735,
  38765. bottom: 56/810
  38766. }
  38767. },
  38768. },
  38769. [
  38770. {
  38771. name: "Normal",
  38772. height: math.unit(6 + 6/12, "feet"),
  38773. default: true
  38774. },
  38775. ]
  38776. ))
  38777. characterMakers.push(() => makeCharacter(
  38778. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38779. {
  38780. front: {
  38781. height: math.unit(15, "feet"),
  38782. name: "Front",
  38783. image: {
  38784. source: "./media/characters/rojas/front.svg",
  38785. extra: 1462/1408,
  38786. bottom: 95/1557
  38787. }
  38788. },
  38789. back: {
  38790. height: math.unit(15, "feet"),
  38791. name: "Back",
  38792. image: {
  38793. source: "./media/characters/rojas/back.svg",
  38794. extra: 1023/954,
  38795. bottom: 28/1051
  38796. }
  38797. },
  38798. },
  38799. [
  38800. {
  38801. name: "Normal",
  38802. height: math.unit(15, "feet"),
  38803. default: true
  38804. },
  38805. ]
  38806. ))
  38807. characterMakers.push(() => makeCharacter(
  38808. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38809. {
  38810. frontHuman: {
  38811. height: math.unit(5 + 7/12, "feet"),
  38812. name: "Front (Human)",
  38813. image: {
  38814. source: "./media/characters/alek-dryagan/front-human.svg",
  38815. extra: 1687/1667,
  38816. bottom: 69/1756
  38817. }
  38818. },
  38819. backHuman: {
  38820. height: math.unit(5 + 7/12, "feet"),
  38821. name: "Back (Human)",
  38822. image: {
  38823. source: "./media/characters/alek-dryagan/back-human.svg",
  38824. extra: 1670/1649,
  38825. bottom: 65/1735
  38826. }
  38827. },
  38828. frontDemi: {
  38829. height: math.unit(65, "feet"),
  38830. name: "Front (Demi)",
  38831. image: {
  38832. source: "./media/characters/alek-dryagan/front-demi.svg",
  38833. extra: 1669/1642,
  38834. bottom: 49/1718
  38835. }
  38836. },
  38837. backDemi: {
  38838. height: math.unit(65, "feet"),
  38839. name: "Back (Demi)",
  38840. image: {
  38841. source: "./media/characters/alek-dryagan/back-demi.svg",
  38842. extra: 1658/1637,
  38843. bottom: 40/1698
  38844. }
  38845. },
  38846. mawHuman: {
  38847. height: math.unit(0.3, "feet"),
  38848. name: "Maw (Human)",
  38849. image: {
  38850. source: "./media/characters/alek-dryagan/maw-human.svg"
  38851. }
  38852. },
  38853. mawDemi: {
  38854. height: math.unit(3.8, "feet"),
  38855. name: "Maw (Demi)",
  38856. image: {
  38857. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38858. }
  38859. },
  38860. },
  38861. [
  38862. {
  38863. name: "Normal",
  38864. height: math.unit(5 + 7/12, "feet"),
  38865. default: true
  38866. },
  38867. ]
  38868. ))
  38869. characterMakers.push(() => makeCharacter(
  38870. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38871. {
  38872. frontHuman: {
  38873. height: math.unit(5 + 2/12, "feet"),
  38874. name: "Front (Human)",
  38875. image: {
  38876. source: "./media/characters/gen/front-human.svg",
  38877. extra: 1627/1538,
  38878. bottom: 71/1698
  38879. }
  38880. },
  38881. backHuman: {
  38882. height: math.unit(5 + 2/12, "feet"),
  38883. name: "Back (Human)",
  38884. image: {
  38885. source: "./media/characters/gen/back-human.svg",
  38886. extra: 1638/1548,
  38887. bottom: 69/1707
  38888. }
  38889. },
  38890. frontDemi: {
  38891. height: math.unit(5 + 2/12, "feet"),
  38892. name: "Front (Demi)",
  38893. image: {
  38894. source: "./media/characters/gen/front-demi.svg",
  38895. extra: 1627/1538,
  38896. bottom: 71/1698
  38897. }
  38898. },
  38899. backDemi: {
  38900. height: math.unit(5 + 2/12, "feet"),
  38901. name: "Back (Demi)",
  38902. image: {
  38903. source: "./media/characters/gen/back-demi.svg",
  38904. extra: 1638/1548,
  38905. bottom: 69/1707
  38906. }
  38907. },
  38908. },
  38909. [
  38910. {
  38911. name: "Normal",
  38912. height: math.unit(5 + 2/12, "feet"),
  38913. default: true
  38914. },
  38915. ]
  38916. ))
  38917. characterMakers.push(() => makeCharacter(
  38918. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38919. {
  38920. frontImp: {
  38921. height: math.unit(1 + 11/12, "feet"),
  38922. name: "Front (Imp)",
  38923. image: {
  38924. source: "./media/characters/max-kobold/front-imp.svg",
  38925. extra: 1238/1134,
  38926. bottom: 81/1319
  38927. }
  38928. },
  38929. backImp: {
  38930. height: math.unit(1 + 11/12, "feet"),
  38931. name: "Back (Imp)",
  38932. image: {
  38933. source: "./media/characters/max-kobold/back-imp.svg",
  38934. extra: 1334/1175,
  38935. bottom: 34/1368
  38936. }
  38937. },
  38938. frontDemi: {
  38939. height: math.unit(5 + 9/12, "feet"),
  38940. name: "Front (Demi)",
  38941. image: {
  38942. source: "./media/characters/max-kobold/front-demi.svg",
  38943. extra: 1715/1685,
  38944. bottom: 54/1769
  38945. }
  38946. },
  38947. backDemi: {
  38948. height: math.unit(5 + 9/12, "feet"),
  38949. name: "Back (Demi)",
  38950. image: {
  38951. source: "./media/characters/max-kobold/back-demi.svg",
  38952. extra: 1752/1729,
  38953. bottom: 41/1793
  38954. }
  38955. },
  38956. handImp: {
  38957. height: math.unit(0.45, "feet"),
  38958. name: "Hand (Imp)",
  38959. image: {
  38960. source: "./media/characters/max-kobold/hand.svg"
  38961. }
  38962. },
  38963. pawImp: {
  38964. height: math.unit(0.46, "feet"),
  38965. name: "Paw (Imp)",
  38966. image: {
  38967. source: "./media/characters/max-kobold/paw.svg"
  38968. }
  38969. },
  38970. handDemi: {
  38971. height: math.unit(0.80, "feet"),
  38972. name: "Hand (Demi)",
  38973. image: {
  38974. source: "./media/characters/max-kobold/hand.svg"
  38975. }
  38976. },
  38977. pawDemi: {
  38978. height: math.unit(1.1, "feet"),
  38979. name: "Paw (Demi)",
  38980. image: {
  38981. source: "./media/characters/max-kobold/paw.svg"
  38982. }
  38983. },
  38984. headImp: {
  38985. height: math.unit(1.33, "feet"),
  38986. name: "Head (Imp)",
  38987. image: {
  38988. source: "./media/characters/max-kobold/head-imp.svg"
  38989. }
  38990. },
  38991. mawImp: {
  38992. height: math.unit(0.75, "feet"),
  38993. name: "Maw (Imp)",
  38994. image: {
  38995. source: "./media/characters/max-kobold/maw-imp.svg"
  38996. }
  38997. },
  38998. mawDemi: {
  38999. height: math.unit(0.42, "feet"),
  39000. name: "Maw (Demi)",
  39001. image: {
  39002. source: "./media/characters/max-kobold/maw-demi.svg"
  39003. }
  39004. },
  39005. },
  39006. [
  39007. {
  39008. name: "Normal",
  39009. height: math.unit(1 + 11/12, "feet"),
  39010. default: true
  39011. },
  39012. ]
  39013. ))
  39014. characterMakers.push(() => makeCharacter(
  39015. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39016. {
  39017. front: {
  39018. height: math.unit(7 + 5/12, "feet"),
  39019. name: "Front",
  39020. image: {
  39021. source: "./media/characters/carbon/front.svg",
  39022. extra: 1754/1689,
  39023. bottom: 65/1819
  39024. }
  39025. },
  39026. back: {
  39027. height: math.unit(7 + 5/12, "feet"),
  39028. name: "Back",
  39029. image: {
  39030. source: "./media/characters/carbon/back.svg",
  39031. extra: 1762/1695,
  39032. bottom: 24/1786
  39033. }
  39034. },
  39035. frontGigantamax: {
  39036. height: math.unit(150, "feet"),
  39037. name: "Front (Gigantamax)",
  39038. image: {
  39039. source: "./media/characters/carbon/front-gigantamax.svg",
  39040. extra: 1826/1669,
  39041. bottom: 59/1885
  39042. }
  39043. },
  39044. backGigantamax: {
  39045. height: math.unit(150, "feet"),
  39046. name: "Back (Gigantamax)",
  39047. image: {
  39048. source: "./media/characters/carbon/back-gigantamax.svg",
  39049. extra: 1796/1653,
  39050. bottom: 53/1849
  39051. }
  39052. },
  39053. maw: {
  39054. height: math.unit(0.48, "feet"),
  39055. name: "Maw",
  39056. image: {
  39057. source: "./media/characters/carbon/maw.svg"
  39058. }
  39059. },
  39060. mawGigantamax: {
  39061. height: math.unit(7.5, "feet"),
  39062. name: "Maw (Gigantamax)",
  39063. image: {
  39064. source: "./media/characters/carbon/maw-gigantamax.svg"
  39065. }
  39066. },
  39067. },
  39068. [
  39069. {
  39070. name: "Normal",
  39071. height: math.unit(7 + 5/12, "feet"),
  39072. default: true
  39073. },
  39074. ]
  39075. ))
  39076. characterMakers.push(() => makeCharacter(
  39077. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39078. {
  39079. front: {
  39080. height: math.unit(6, "feet"),
  39081. name: "Front",
  39082. image: {
  39083. source: "./media/characters/maverick/front.svg",
  39084. extra: 1672/1661,
  39085. bottom: 85/1757
  39086. }
  39087. },
  39088. back: {
  39089. height: math.unit(6, "feet"),
  39090. name: "Back",
  39091. image: {
  39092. source: "./media/characters/maverick/back.svg",
  39093. extra: 1642/1631,
  39094. bottom: 38/1680
  39095. }
  39096. },
  39097. },
  39098. [
  39099. {
  39100. name: "Normal",
  39101. height: math.unit(6, "feet"),
  39102. default: true
  39103. },
  39104. ]
  39105. ))
  39106. characterMakers.push(() => makeCharacter(
  39107. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39108. {
  39109. front: {
  39110. height: math.unit(15, "feet"),
  39111. weight: math.unit(615, "lb"),
  39112. name: "Front",
  39113. image: {
  39114. source: "./media/characters/grockle/front.svg",
  39115. extra: 1535/1427,
  39116. bottom: 56/1591
  39117. }
  39118. },
  39119. },
  39120. [
  39121. {
  39122. name: "Normal",
  39123. height: math.unit(15, "feet"),
  39124. default: true
  39125. },
  39126. {
  39127. name: "Large",
  39128. height: math.unit(150, "feet")
  39129. },
  39130. {
  39131. name: "Macro",
  39132. height: math.unit(1876, "feet")
  39133. },
  39134. {
  39135. name: "Mega Macro",
  39136. height: math.unit(121940, "feet")
  39137. },
  39138. {
  39139. name: "Giga Macro",
  39140. height: math.unit(750, "km")
  39141. },
  39142. {
  39143. name: "Tera Macro",
  39144. height: math.unit(750000, "km")
  39145. },
  39146. {
  39147. name: "Galactic",
  39148. height: math.unit(1.4e5, "km")
  39149. },
  39150. {
  39151. name: "Godlike",
  39152. height: math.unit(9.8e280, "galaxies")
  39153. },
  39154. ]
  39155. ))
  39156. characterMakers.push(() => makeCharacter(
  39157. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39158. {
  39159. front: {
  39160. height: math.unit(11, "meters"),
  39161. weight: math.unit(20, "tonnes"),
  39162. name: "Front",
  39163. image: {
  39164. source: "./media/characters/alistair/front.svg",
  39165. extra: 1265/1009,
  39166. bottom: 93/1358
  39167. }
  39168. },
  39169. },
  39170. [
  39171. {
  39172. name: "Normal",
  39173. height: math.unit(11, "meters"),
  39174. default: true
  39175. },
  39176. ]
  39177. ))
  39178. characterMakers.push(() => makeCharacter(
  39179. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39180. {
  39181. front: {
  39182. height: math.unit(5 + 8/12, "feet"),
  39183. name: "Front",
  39184. image: {
  39185. source: "./media/characters/haruka/front.svg",
  39186. extra: 2012/1952,
  39187. bottom: 0/2012
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Normal",
  39194. height: math.unit(5 + 8/12, "feet"),
  39195. default: true
  39196. },
  39197. ]
  39198. ))
  39199. characterMakers.push(() => makeCharacter(
  39200. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39201. {
  39202. back: {
  39203. height: math.unit(9, "feet"),
  39204. name: "Back",
  39205. image: {
  39206. source: "./media/characters/vivian-sylveon/back.svg",
  39207. extra: 1853/1714,
  39208. bottom: 0/1853
  39209. }
  39210. },
  39211. },
  39212. [
  39213. {
  39214. name: "Normal",
  39215. height: math.unit(9, "feet"),
  39216. default: true
  39217. },
  39218. {
  39219. name: "Macro",
  39220. height: math.unit(500, "feet")
  39221. },
  39222. {
  39223. name: "Megamacro",
  39224. height: math.unit(600, "miles")
  39225. },
  39226. {
  39227. name: "Gigamacro",
  39228. height: math.unit(30000, "miles")
  39229. },
  39230. ]
  39231. ))
  39232. characterMakers.push(() => makeCharacter(
  39233. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39234. {
  39235. anthro: {
  39236. height: math.unit(5 + 10/12, "feet"),
  39237. weight: math.unit(100, "lb"),
  39238. name: "Anthro",
  39239. image: {
  39240. source: "./media/characters/daiki/anthro.svg",
  39241. extra: 1115/1027,
  39242. bottom: 69/1184
  39243. }
  39244. },
  39245. feral: {
  39246. height: math.unit(200, "feet"),
  39247. name: "Feral",
  39248. image: {
  39249. source: "./media/characters/daiki/feral.svg",
  39250. extra: 1256/313,
  39251. bottom: 39/1295
  39252. }
  39253. },
  39254. feralHead: {
  39255. height: math.unit(171, "feet"),
  39256. name: "Feral Head",
  39257. image: {
  39258. source: "./media/characters/daiki/feral-head.svg"
  39259. }
  39260. },
  39261. manaDragon: {
  39262. height: math.unit(170, "meters"),
  39263. name: "Mana-dragon",
  39264. image: {
  39265. source: "./media/characters/daiki/mana-dragon.svg",
  39266. extra: 763/420,
  39267. bottom: 97/860
  39268. }
  39269. },
  39270. },
  39271. [
  39272. {
  39273. name: "Normal",
  39274. height: math.unit(5 + 10/12, "feet"),
  39275. default: true
  39276. },
  39277. ]
  39278. ))
  39279. characterMakers.push(() => makeCharacter(
  39280. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39281. {
  39282. fullyEquippedFront: {
  39283. height: math.unit(3 + 1/12, "feet"),
  39284. weight: math.unit(24, "lb"),
  39285. name: "Fully Equipped (Front)",
  39286. image: {
  39287. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39288. extra: 687/605,
  39289. bottom: 18/705
  39290. }
  39291. },
  39292. fullyEquippedBack: {
  39293. height: math.unit(3 + 1/12, "feet"),
  39294. weight: math.unit(24, "lb"),
  39295. name: "Fully Equipped (Back)",
  39296. image: {
  39297. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39298. extra: 689/590,
  39299. bottom: 18/707
  39300. }
  39301. },
  39302. dailyWear: {
  39303. height: math.unit(3 + 1/12, "feet"),
  39304. weight: math.unit(24, "lb"),
  39305. name: "Daily Wear",
  39306. image: {
  39307. source: "./media/characters/tea-spot/daily-wear.svg",
  39308. extra: 701/620,
  39309. bottom: 21/722
  39310. }
  39311. },
  39312. maidWork: {
  39313. height: math.unit(3 + 1/12, "feet"),
  39314. weight: math.unit(24, "lb"),
  39315. name: "Maid Work",
  39316. image: {
  39317. source: "./media/characters/tea-spot/maid-work.svg",
  39318. extra: 693/609,
  39319. bottom: 15/708
  39320. }
  39321. },
  39322. },
  39323. [
  39324. {
  39325. name: "Normal",
  39326. height: math.unit(3 + 1/12, "feet"),
  39327. default: true
  39328. },
  39329. ]
  39330. ))
  39331. characterMakers.push(() => makeCharacter(
  39332. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39333. {
  39334. front: {
  39335. height: math.unit(175, "cm"),
  39336. weight: math.unit(75, "kg"),
  39337. name: "Front",
  39338. image: {
  39339. source: "./media/characters/chee/front.svg",
  39340. extra: 1796/1740,
  39341. bottom: 40/1836
  39342. }
  39343. },
  39344. },
  39345. [
  39346. {
  39347. name: "Micro-Micro",
  39348. height: math.unit(1, "nm")
  39349. },
  39350. {
  39351. name: "Micro-erst",
  39352. height: math.unit(1, "micrometer")
  39353. },
  39354. {
  39355. name: "Micro-er",
  39356. height: math.unit(1, "cm")
  39357. },
  39358. {
  39359. name: "Normal",
  39360. height: math.unit(175, "cm"),
  39361. default: true
  39362. },
  39363. {
  39364. name: "Macro",
  39365. height: math.unit(100, "m")
  39366. },
  39367. {
  39368. name: "Macro-er",
  39369. height: math.unit(1, "km")
  39370. },
  39371. {
  39372. name: "Macro-erst",
  39373. height: math.unit(10, "km")
  39374. },
  39375. {
  39376. name: "Macro-Macro",
  39377. height: math.unit(100, "km")
  39378. },
  39379. ]
  39380. ))
  39381. characterMakers.push(() => makeCharacter(
  39382. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39383. {
  39384. front: {
  39385. height: math.unit(11 + 9/12, "feet"),
  39386. weight: math.unit(935, "lb"),
  39387. name: "Front",
  39388. image: {
  39389. source: "./media/characters/kingsley/front.svg",
  39390. extra: 1803/1674,
  39391. bottom: 127/1930
  39392. }
  39393. },
  39394. frontNude: {
  39395. height: math.unit(11 + 9/12, "feet"),
  39396. weight: math.unit(935, "lb"),
  39397. name: "Front (Nude)",
  39398. image: {
  39399. source: "./media/characters/kingsley/front-nude.svg",
  39400. extra: 1803/1674,
  39401. bottom: 127/1930
  39402. }
  39403. },
  39404. },
  39405. [
  39406. {
  39407. name: "Normal",
  39408. height: math.unit(11 + 9/12, "feet"),
  39409. default: true
  39410. },
  39411. ]
  39412. ))
  39413. characterMakers.push(() => makeCharacter(
  39414. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39415. {
  39416. side: {
  39417. height: math.unit(9, "feet"),
  39418. name: "Side",
  39419. image: {
  39420. source: "./media/characters/rymel/side.svg",
  39421. extra: 792/469,
  39422. bottom: 121/913
  39423. }
  39424. },
  39425. maw: {
  39426. height: math.unit(2.4, "meters"),
  39427. name: "Maw",
  39428. image: {
  39429. source: "./media/characters/rymel/maw.svg"
  39430. }
  39431. },
  39432. },
  39433. [
  39434. {
  39435. name: "House Drake",
  39436. height: math.unit(2, "feet")
  39437. },
  39438. {
  39439. name: "Reduced",
  39440. height: math.unit(4.5, "feet")
  39441. },
  39442. {
  39443. name: "Normal",
  39444. height: math.unit(9, "feet"),
  39445. default: true
  39446. },
  39447. ]
  39448. ))
  39449. characterMakers.push(() => makeCharacter(
  39450. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39451. {
  39452. front: {
  39453. height: math.unit(1.74, "meters"),
  39454. weight: math.unit(55, "kg"),
  39455. name: "Front",
  39456. image: {
  39457. source: "./media/characters/rubus/front.svg",
  39458. extra: 1894/1742,
  39459. bottom: 44/1938
  39460. }
  39461. },
  39462. },
  39463. [
  39464. {
  39465. name: "Normal",
  39466. height: math.unit(1.74, "meters"),
  39467. default: true
  39468. },
  39469. ]
  39470. ))
  39471. characterMakers.push(() => makeCharacter(
  39472. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39473. {
  39474. front: {
  39475. height: math.unit(5 + 2/12, "feet"),
  39476. weight: math.unit(112, "lb"),
  39477. name: "Front",
  39478. image: {
  39479. source: "./media/characters/cassie-kingston/front.svg",
  39480. extra: 1438/1390,
  39481. bottom: 47/1485
  39482. }
  39483. },
  39484. },
  39485. [
  39486. {
  39487. name: "Normal",
  39488. height: math.unit(5 + 2/12, "feet"),
  39489. default: true
  39490. },
  39491. {
  39492. name: "Macro",
  39493. height: math.unit(128, "feet")
  39494. },
  39495. {
  39496. name: "Megamacro",
  39497. height: math.unit(2.56, "miles")
  39498. },
  39499. ]
  39500. ))
  39501. characterMakers.push(() => makeCharacter(
  39502. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39503. {
  39504. front: {
  39505. height: math.unit(7, "feet"),
  39506. name: "Front",
  39507. image: {
  39508. source: "./media/characters/fox/front.svg",
  39509. extra: 1798/1703,
  39510. bottom: 55/1853
  39511. }
  39512. },
  39513. back: {
  39514. height: math.unit(7, "feet"),
  39515. name: "Back",
  39516. image: {
  39517. source: "./media/characters/fox/back.svg",
  39518. extra: 1748/1649,
  39519. bottom: 32/1780
  39520. }
  39521. },
  39522. head: {
  39523. height: math.unit(1.95, "feet"),
  39524. name: "Head",
  39525. image: {
  39526. source: "./media/characters/fox/head.svg"
  39527. }
  39528. },
  39529. dick: {
  39530. height: math.unit(1.33, "feet"),
  39531. name: "Dick",
  39532. image: {
  39533. source: "./media/characters/fox/dick.svg"
  39534. }
  39535. },
  39536. foot: {
  39537. height: math.unit(1, "feet"),
  39538. name: "Foot",
  39539. image: {
  39540. source: "./media/characters/fox/foot.svg"
  39541. }
  39542. },
  39543. paw: {
  39544. height: math.unit(0.92, "feet"),
  39545. name: "Paw",
  39546. image: {
  39547. source: "./media/characters/fox/paw.svg"
  39548. }
  39549. },
  39550. },
  39551. [
  39552. {
  39553. name: "Small",
  39554. height: math.unit(3, "inches")
  39555. },
  39556. {
  39557. name: "\"Realistic\"",
  39558. height: math.unit(7, "feet")
  39559. },
  39560. {
  39561. name: "Normal",
  39562. height: math.unit(150, "feet"),
  39563. default: true
  39564. },
  39565. {
  39566. name: "BIG",
  39567. height: math.unit(1200, "feet")
  39568. },
  39569. {
  39570. name: "👀",
  39571. height: math.unit(5, "miles")
  39572. },
  39573. {
  39574. name: "👀👀👀",
  39575. height: math.unit(64, "miles")
  39576. },
  39577. ]
  39578. ))
  39579. characterMakers.push(() => makeCharacter(
  39580. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39581. {
  39582. front: {
  39583. height: math.unit(625, "feet"),
  39584. name: "Front",
  39585. image: {
  39586. source: "./media/characters/asonja-rossa/front.svg",
  39587. extra: 1833/1686,
  39588. bottom: 24/1857
  39589. }
  39590. },
  39591. back: {
  39592. height: math.unit(625, "feet"),
  39593. name: "Back",
  39594. image: {
  39595. source: "./media/characters/asonja-rossa/back.svg",
  39596. extra: 1852/1753,
  39597. bottom: 26/1878
  39598. }
  39599. },
  39600. },
  39601. [
  39602. {
  39603. name: "Macro",
  39604. height: math.unit(625, "feet"),
  39605. default: true
  39606. },
  39607. ]
  39608. ))
  39609. characterMakers.push(() => makeCharacter(
  39610. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39611. {
  39612. side: {
  39613. height: math.unit(8, "feet"),
  39614. name: "Side",
  39615. image: {
  39616. source: "./media/characters/rezukii/side.svg",
  39617. extra: 979/542,
  39618. bottom: 87/1066
  39619. }
  39620. },
  39621. sitting: {
  39622. height: math.unit(14.6, "feet"),
  39623. name: "Sitting",
  39624. image: {
  39625. source: "./media/characters/rezukii/sitting.svg",
  39626. extra: 1023/813,
  39627. bottom: 45/1068
  39628. }
  39629. },
  39630. },
  39631. [
  39632. {
  39633. name: "Tiny",
  39634. height: math.unit(2, "feet")
  39635. },
  39636. {
  39637. name: "Smol",
  39638. height: math.unit(4, "feet")
  39639. },
  39640. {
  39641. name: "Normal",
  39642. height: math.unit(8, "feet"),
  39643. default: true
  39644. },
  39645. {
  39646. name: "Big",
  39647. height: math.unit(12, "feet")
  39648. },
  39649. {
  39650. name: "Macro",
  39651. height: math.unit(30, "feet")
  39652. },
  39653. ]
  39654. ))
  39655. characterMakers.push(() => makeCharacter(
  39656. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39657. {
  39658. front: {
  39659. height: math.unit(14, "feet"),
  39660. weight: math.unit(9.5, "tonnes"),
  39661. name: "Front",
  39662. image: {
  39663. source: "./media/characters/dawnheart/front.svg",
  39664. extra: 2792/2675,
  39665. bottom: 64/2856
  39666. }
  39667. },
  39668. },
  39669. [
  39670. {
  39671. name: "Normal",
  39672. height: math.unit(14, "feet"),
  39673. default: true
  39674. },
  39675. ]
  39676. ))
  39677. characterMakers.push(() => makeCharacter(
  39678. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39679. {
  39680. front: {
  39681. height: math.unit(1.7, "m"),
  39682. name: "Front",
  39683. image: {
  39684. source: "./media/characters/gladi/front.svg",
  39685. extra: 1460/1362,
  39686. bottom: 19/1479
  39687. }
  39688. },
  39689. back: {
  39690. height: math.unit(1.7, "m"),
  39691. name: "Back",
  39692. image: {
  39693. source: "./media/characters/gladi/back.svg",
  39694. extra: 1459/1357,
  39695. bottom: 12/1471
  39696. }
  39697. },
  39698. feral: {
  39699. height: math.unit(2.05, "m"),
  39700. name: "Feral",
  39701. image: {
  39702. source: "./media/characters/gladi/feral.svg",
  39703. extra: 821/557,
  39704. bottom: 91/912
  39705. }
  39706. },
  39707. },
  39708. [
  39709. {
  39710. name: "Shortest",
  39711. height: math.unit(70, "cm")
  39712. },
  39713. {
  39714. name: "Normal",
  39715. height: math.unit(1.7, "m")
  39716. },
  39717. {
  39718. name: "Macro",
  39719. height: math.unit(10, "m"),
  39720. default: true
  39721. },
  39722. {
  39723. name: "Tallest",
  39724. height: math.unit(200, "m")
  39725. },
  39726. ]
  39727. ))
  39728. characterMakers.push(() => makeCharacter(
  39729. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39730. {
  39731. front: {
  39732. height: math.unit(5 + 7/12, "feet"),
  39733. weight: math.unit(2, "tons"),
  39734. name: "Front",
  39735. image: {
  39736. source: "./media/characters/erdno/front.svg",
  39737. extra: 1234/1129,
  39738. bottom: 35/1269
  39739. }
  39740. },
  39741. angled: {
  39742. height: math.unit(5 + 7/12, "feet"),
  39743. weight: math.unit(2, "tons"),
  39744. name: "Angled",
  39745. image: {
  39746. source: "./media/characters/erdno/angled.svg",
  39747. extra: 1185/1139,
  39748. bottom: 36/1221
  39749. }
  39750. },
  39751. side: {
  39752. height: math.unit(5 + 7/12, "feet"),
  39753. weight: math.unit(2, "tons"),
  39754. name: "Side",
  39755. image: {
  39756. source: "./media/characters/erdno/side.svg",
  39757. extra: 1191/1144,
  39758. bottom: 40/1231
  39759. }
  39760. },
  39761. back: {
  39762. height: math.unit(5 + 7/12, "feet"),
  39763. weight: math.unit(2, "tons"),
  39764. name: "Back",
  39765. image: {
  39766. source: "./media/characters/erdno/back.svg",
  39767. extra: 1202/1146,
  39768. bottom: 17/1219
  39769. }
  39770. },
  39771. frontNsfw: {
  39772. height: math.unit(5 + 7/12, "feet"),
  39773. weight: math.unit(2, "tons"),
  39774. name: "Front (NSFW)",
  39775. image: {
  39776. source: "./media/characters/erdno/front-nsfw.svg",
  39777. extra: 1234/1129,
  39778. bottom: 35/1269
  39779. }
  39780. },
  39781. angledNsfw: {
  39782. height: math.unit(5 + 7/12, "feet"),
  39783. weight: math.unit(2, "tons"),
  39784. name: "Angled (NSFW)",
  39785. image: {
  39786. source: "./media/characters/erdno/angled-nsfw.svg",
  39787. extra: 1185/1139,
  39788. bottom: 36/1221
  39789. }
  39790. },
  39791. sideNsfw: {
  39792. height: math.unit(5 + 7/12, "feet"),
  39793. weight: math.unit(2, "tons"),
  39794. name: "Side (NSFW)",
  39795. image: {
  39796. source: "./media/characters/erdno/side-nsfw.svg",
  39797. extra: 1191/1144,
  39798. bottom: 40/1231
  39799. }
  39800. },
  39801. backNsfw: {
  39802. height: math.unit(5 + 7/12, "feet"),
  39803. weight: math.unit(2, "tons"),
  39804. name: "Back (NSFW)",
  39805. image: {
  39806. source: "./media/characters/erdno/back-nsfw.svg",
  39807. extra: 1202/1146,
  39808. bottom: 17/1219
  39809. }
  39810. },
  39811. frontHyper: {
  39812. height: math.unit(5 + 7/12, "feet"),
  39813. weight: math.unit(2, "tons"),
  39814. name: "Front (Hyper)",
  39815. image: {
  39816. source: "./media/characters/erdno/front-hyper.svg",
  39817. extra: 1298/1136,
  39818. bottom: 35/1333
  39819. }
  39820. },
  39821. },
  39822. [
  39823. {
  39824. name: "Normal",
  39825. height: math.unit(5 + 7/12, "feet"),
  39826. default: true
  39827. },
  39828. {
  39829. name: "Big",
  39830. height: math.unit(5.7, "meters")
  39831. },
  39832. {
  39833. name: "Macro",
  39834. height: math.unit(5.7, "kilometers")
  39835. },
  39836. {
  39837. name: "Megamacro",
  39838. height: math.unit(5.7, "earths")
  39839. },
  39840. ]
  39841. ))
  39842. characterMakers.push(() => makeCharacter(
  39843. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39844. {
  39845. front: {
  39846. height: math.unit(5 + 10/12, "feet"),
  39847. weight: math.unit(150, "lb"),
  39848. name: "Front",
  39849. image: {
  39850. source: "./media/characters/jamie/front.svg",
  39851. extra: 1908/1768,
  39852. bottom: 19/1927
  39853. }
  39854. },
  39855. },
  39856. [
  39857. {
  39858. name: "Minimum",
  39859. height: math.unit(2, "cm")
  39860. },
  39861. {
  39862. name: "Micro",
  39863. height: math.unit(3, "inches")
  39864. },
  39865. {
  39866. name: "Normal",
  39867. height: math.unit(5 + 10/12, "feet"),
  39868. default: true
  39869. },
  39870. {
  39871. name: "Macro",
  39872. height: math.unit(150, "feet")
  39873. },
  39874. {
  39875. name: "Megamacro",
  39876. height: math.unit(10000, "m")
  39877. },
  39878. ]
  39879. ))
  39880. characterMakers.push(() => makeCharacter(
  39881. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39882. {
  39883. front: {
  39884. height: math.unit(2, "meters"),
  39885. weight: math.unit(100, "kg"),
  39886. name: "Front",
  39887. image: {
  39888. source: "./media/characters/shiron/front.svg",
  39889. extra: 2103/1985,
  39890. bottom: 98/2201
  39891. }
  39892. },
  39893. back: {
  39894. height: math.unit(2, "meters"),
  39895. weight: math.unit(100, "kg"),
  39896. name: "Back",
  39897. image: {
  39898. source: "./media/characters/shiron/back.svg",
  39899. extra: 2110/2015,
  39900. bottom: 89/2199
  39901. }
  39902. },
  39903. hand: {
  39904. height: math.unit(0.96, "feet"),
  39905. name: "Hand",
  39906. image: {
  39907. source: "./media/characters/shiron/hand.svg"
  39908. }
  39909. },
  39910. foot: {
  39911. height: math.unit(1.464, "feet"),
  39912. name: "Foot",
  39913. image: {
  39914. source: "./media/characters/shiron/foot.svg"
  39915. }
  39916. },
  39917. },
  39918. [
  39919. {
  39920. name: "Normal",
  39921. height: math.unit(2, "meters")
  39922. },
  39923. {
  39924. name: "Macro",
  39925. height: math.unit(500, "meters"),
  39926. default: true
  39927. },
  39928. {
  39929. name: "Megamacro",
  39930. height: math.unit(20, "km")
  39931. },
  39932. ]
  39933. ))
  39934. characterMakers.push(() => makeCharacter(
  39935. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39936. {
  39937. front: {
  39938. height: math.unit(6, "feet"),
  39939. name: "Front",
  39940. image: {
  39941. source: "./media/characters/sam/front.svg",
  39942. extra: 849/826,
  39943. bottom: 19/868
  39944. }
  39945. },
  39946. },
  39947. [
  39948. {
  39949. name: "Normal",
  39950. height: math.unit(6, "feet"),
  39951. default: true
  39952. },
  39953. ]
  39954. ))
  39955. characterMakers.push(() => makeCharacter(
  39956. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39957. {
  39958. front: {
  39959. height: math.unit(8 + 4/12, "feet"),
  39960. weight: math.unit(122, "kg"),
  39961. name: "Front",
  39962. image: {
  39963. source: "./media/characters/namori-kurogawa/front.svg",
  39964. extra: 1894/1576,
  39965. bottom: 34/1928
  39966. }
  39967. },
  39968. },
  39969. [
  39970. {
  39971. name: "Normal",
  39972. height: math.unit(8 + 4/12, "feet"),
  39973. default: true
  39974. },
  39975. ]
  39976. ))
  39977. characterMakers.push(() => makeCharacter(
  39978. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39979. {
  39980. front: {
  39981. height: math.unit(9, "feet"),
  39982. weight: math.unit(621, "lb"),
  39983. name: "Front",
  39984. image: {
  39985. source: "./media/characters/unmru/front.svg",
  39986. extra: 1853/1747,
  39987. bottom: 73/1926
  39988. }
  39989. },
  39990. side: {
  39991. height: math.unit(9, "feet"),
  39992. weight: math.unit(621, "lb"),
  39993. name: "Side",
  39994. image: {
  39995. source: "./media/characters/unmru/side.svg",
  39996. extra: 1781/1671,
  39997. bottom: 127/1908
  39998. }
  39999. },
  40000. back: {
  40001. height: math.unit(9, "feet"),
  40002. weight: math.unit(621, "lb"),
  40003. name: "Back",
  40004. image: {
  40005. source: "./media/characters/unmru/back.svg",
  40006. extra: 1894/1765,
  40007. bottom: 75/1969
  40008. }
  40009. },
  40010. dick: {
  40011. height: math.unit(3, "feet"),
  40012. weight: math.unit(35, "lb"),
  40013. name: "Dick",
  40014. image: {
  40015. source: "./media/characters/unmru/dick.svg"
  40016. }
  40017. },
  40018. },
  40019. [
  40020. {
  40021. name: "Normal",
  40022. height: math.unit(9, "feet")
  40023. },
  40024. {
  40025. name: "Natural",
  40026. height: math.unit(27, "feet"),
  40027. default: true
  40028. },
  40029. {
  40030. name: "Giant",
  40031. height: math.unit(90, "feet")
  40032. },
  40033. {
  40034. name: "Kaiju",
  40035. height: math.unit(270, "feet")
  40036. },
  40037. {
  40038. name: "Macro",
  40039. height: math.unit(900, "feet")
  40040. },
  40041. {
  40042. name: "Macro+",
  40043. height: math.unit(2700, "feet")
  40044. },
  40045. {
  40046. name: "Megamacro",
  40047. height: math.unit(9000, "feet")
  40048. },
  40049. {
  40050. name: "City-Crushing",
  40051. height: math.unit(27000, "feet")
  40052. },
  40053. {
  40054. name: "Mountain-Mashing",
  40055. height: math.unit(90000, "feet")
  40056. },
  40057. {
  40058. name: "Earth-Eclipsing",
  40059. height: math.unit(2.7e8, "feet")
  40060. },
  40061. {
  40062. name: "Sol-Swallowing",
  40063. height: math.unit(9e10, "feet")
  40064. },
  40065. {
  40066. name: "Majoris-Munching",
  40067. height: math.unit(2.7e13, "feet")
  40068. },
  40069. ]
  40070. ))
  40071. characterMakers.push(() => makeCharacter(
  40072. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40073. {
  40074. front: {
  40075. height: math.unit(1, "inch"),
  40076. name: "Front",
  40077. image: {
  40078. source: "./media/characters/squeaks-mouse/front.svg",
  40079. extra: 352/308,
  40080. bottom: 25/377
  40081. }
  40082. },
  40083. },
  40084. [
  40085. {
  40086. name: "Micro",
  40087. height: math.unit(1, "inch"),
  40088. default: true
  40089. },
  40090. ]
  40091. ))
  40092. characterMakers.push(() => makeCharacter(
  40093. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40094. {
  40095. side: {
  40096. height: math.unit(35, "feet"),
  40097. name: "Side",
  40098. image: {
  40099. source: "./media/characters/sayko/side.svg",
  40100. extra: 1697/1021,
  40101. bottom: 82/1779
  40102. }
  40103. },
  40104. head: {
  40105. height: math.unit(16, "feet"),
  40106. name: "Head",
  40107. image: {
  40108. source: "./media/characters/sayko/head.svg"
  40109. }
  40110. },
  40111. forepaw: {
  40112. height: math.unit(7.85, "feet"),
  40113. name: "Forepaw",
  40114. image: {
  40115. source: "./media/characters/sayko/forepaw.svg"
  40116. }
  40117. },
  40118. hindpaw: {
  40119. height: math.unit(8.8, "feet"),
  40120. name: "Hindpaw",
  40121. image: {
  40122. source: "./media/characters/sayko/hindpaw.svg"
  40123. }
  40124. },
  40125. },
  40126. [
  40127. {
  40128. name: "Normal",
  40129. height: math.unit(35, "feet"),
  40130. default: true
  40131. },
  40132. {
  40133. name: "Colossus",
  40134. height: math.unit(100, "meters")
  40135. },
  40136. {
  40137. name: "\"Small\" Deity",
  40138. height: math.unit(1, "km")
  40139. },
  40140. {
  40141. name: "\"Large\" Deity",
  40142. height: math.unit(15, "km")
  40143. },
  40144. ]
  40145. ))
  40146. characterMakers.push(() => makeCharacter(
  40147. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40148. {
  40149. front: {
  40150. height: math.unit(6, "feet"),
  40151. weight: math.unit(250, "lb"),
  40152. name: "Front",
  40153. image: {
  40154. source: "./media/characters/mukiro/front.svg",
  40155. extra: 1368/1310,
  40156. bottom: 34/1402
  40157. }
  40158. },
  40159. },
  40160. [
  40161. {
  40162. name: "Normal",
  40163. height: math.unit(6, "feet"),
  40164. default: true
  40165. },
  40166. ]
  40167. ))
  40168. characterMakers.push(() => makeCharacter(
  40169. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40170. {
  40171. front: {
  40172. height: math.unit(12 + 4/12, "feet"),
  40173. name: "Front",
  40174. image: {
  40175. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40176. extra: 1346/1311,
  40177. bottom: 65/1411
  40178. }
  40179. },
  40180. },
  40181. [
  40182. {
  40183. name: "Base",
  40184. height: math.unit(12 + 4/12, "feet"),
  40185. default: true
  40186. },
  40187. {
  40188. name: "Macro",
  40189. height: math.unit(150, "feet")
  40190. },
  40191. {
  40192. name: "Mega",
  40193. height: math.unit(2, "miles")
  40194. },
  40195. {
  40196. name: "Demi God",
  40197. height: math.unit(4, "AU")
  40198. },
  40199. {
  40200. name: "God Size",
  40201. height: math.unit(1, "universe")
  40202. },
  40203. ]
  40204. ))
  40205. characterMakers.push(() => makeCharacter(
  40206. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40207. {
  40208. front: {
  40209. height: math.unit(3 + 3/12, "feet"),
  40210. weight: math.unit(88, "lb"),
  40211. name: "Front",
  40212. image: {
  40213. source: "./media/characters/trey/front.svg",
  40214. extra: 1815/1509,
  40215. bottom: 60/1875
  40216. }
  40217. },
  40218. },
  40219. [
  40220. {
  40221. name: "Normal",
  40222. height: math.unit(3 + 3/12, "feet"),
  40223. default: true
  40224. },
  40225. ]
  40226. ))
  40227. characterMakers.push(() => makeCharacter(
  40228. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40229. {
  40230. front: {
  40231. height: math.unit(4, "meters"),
  40232. name: "Front",
  40233. image: {
  40234. source: "./media/characters/adelonda/front.svg",
  40235. extra: 1077/982,
  40236. bottom: 39/1116
  40237. }
  40238. },
  40239. back: {
  40240. height: math.unit(4, "meters"),
  40241. name: "Back",
  40242. image: {
  40243. source: "./media/characters/adelonda/back.svg",
  40244. extra: 1105/1003,
  40245. bottom: 25/1130
  40246. }
  40247. },
  40248. feral: {
  40249. height: math.unit(40/1.5, "meters"),
  40250. name: "Feral",
  40251. image: {
  40252. source: "./media/characters/adelonda/feral.svg",
  40253. extra: 597/271,
  40254. bottom: 387/984
  40255. }
  40256. },
  40257. },
  40258. [
  40259. {
  40260. name: "Normal",
  40261. height: math.unit(4, "meters"),
  40262. default: true
  40263. },
  40264. ]
  40265. ))
  40266. characterMakers.push(() => makeCharacter(
  40267. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40268. {
  40269. front: {
  40270. height: math.unit(8 + 4/12, "feet"),
  40271. weight: math.unit(670, "lb"),
  40272. name: "Front",
  40273. image: {
  40274. source: "./media/characters/acadiel/front.svg",
  40275. extra: 1901/1595,
  40276. bottom: 142/2043
  40277. }
  40278. },
  40279. },
  40280. [
  40281. {
  40282. name: "Normal",
  40283. height: math.unit(8 + 4/12, "feet"),
  40284. default: true
  40285. },
  40286. {
  40287. name: "Macro",
  40288. height: math.unit(200, "feet")
  40289. },
  40290. ]
  40291. ))
  40292. characterMakers.push(() => makeCharacter(
  40293. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40294. {
  40295. front: {
  40296. height: math.unit(6 + 2/12, "feet"),
  40297. weight: math.unit(185, "lb"),
  40298. name: "Front",
  40299. image: {
  40300. source: "./media/characters/kayne-ein/front.svg",
  40301. extra: 1780/1560,
  40302. bottom: 81/1861
  40303. }
  40304. },
  40305. },
  40306. [
  40307. {
  40308. name: "Normal",
  40309. height: math.unit(6 + 2/12, "feet"),
  40310. default: true
  40311. },
  40312. {
  40313. name: "Transformation Stage",
  40314. height: math.unit(15, "feet")
  40315. },
  40316. {
  40317. name: "Macro",
  40318. height: math.unit(150, "feet")
  40319. },
  40320. {
  40321. name: "Earth's Shadow",
  40322. height: math.unit(6200, "miles")
  40323. },
  40324. {
  40325. name: "Universal Demon",
  40326. height: math.unit(28e9, "parsecs")
  40327. },
  40328. {
  40329. name: "Multiverse God",
  40330. height: math.unit(3, "multiverses")
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40336. {
  40337. front: {
  40338. height: math.unit(5 + 5/12, "feet"),
  40339. name: "Front",
  40340. image: {
  40341. source: "./media/characters/fawn/front.svg",
  40342. extra: 1873/1731,
  40343. bottom: 95/1968
  40344. }
  40345. },
  40346. back: {
  40347. height: math.unit(5 + 5/12, "feet"),
  40348. name: "Back",
  40349. image: {
  40350. source: "./media/characters/fawn/back.svg",
  40351. extra: 1813/1700,
  40352. bottom: 14/1827
  40353. }
  40354. },
  40355. hoof: {
  40356. height: math.unit(1.45, "feet"),
  40357. name: "Hoof",
  40358. image: {
  40359. source: "./media/characters/fawn/hoof.svg"
  40360. }
  40361. },
  40362. },
  40363. [
  40364. {
  40365. name: "Normal",
  40366. height: math.unit(5 + 5/12, "feet"),
  40367. default: true
  40368. },
  40369. ]
  40370. ))
  40371. characterMakers.push(() => makeCharacter(
  40372. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40373. {
  40374. front: {
  40375. height: math.unit(2 + 5/12, "feet"),
  40376. name: "Front",
  40377. image: {
  40378. source: "./media/characters/orion/front.svg",
  40379. extra: 1366/1304,
  40380. bottom: 43/1409
  40381. }
  40382. },
  40383. paw: {
  40384. height: math.unit(0.52, "feet"),
  40385. name: "Paw",
  40386. image: {
  40387. source: "./media/characters/orion/paw.svg"
  40388. }
  40389. },
  40390. },
  40391. [
  40392. {
  40393. name: "Normal",
  40394. height: math.unit(2 + 5/12, "feet"),
  40395. default: true
  40396. },
  40397. ]
  40398. ))
  40399. characterMakers.push(() => makeCharacter(
  40400. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40401. {
  40402. front: {
  40403. height: math.unit(5 + 10/12, "feet"),
  40404. name: "Front",
  40405. image: {
  40406. source: "./media/characters/vera/front.svg",
  40407. extra: 1680/1575,
  40408. bottom: 49/1729
  40409. }
  40410. },
  40411. back: {
  40412. height: math.unit(5 + 10/12, "feet"),
  40413. name: "Back",
  40414. image: {
  40415. source: "./media/characters/vera/back.svg",
  40416. extra: 1700/1588,
  40417. bottom: 18/1718
  40418. }
  40419. },
  40420. arcanine: {
  40421. height: math.unit(6 + 8/12, "feet"),
  40422. name: "Arcanine",
  40423. image: {
  40424. source: "./media/characters/vera/arcanine.svg",
  40425. extra: 1590/1511,
  40426. bottom: 71/1661
  40427. }
  40428. },
  40429. maw: {
  40430. height: math.unit(0.82, "feet"),
  40431. name: "Maw",
  40432. image: {
  40433. source: "./media/characters/vera/maw.svg"
  40434. }
  40435. },
  40436. mawArcanine: {
  40437. height: math.unit(0.97, "feet"),
  40438. name: "Maw (Arcanine)",
  40439. image: {
  40440. source: "./media/characters/vera/maw-arcanine.svg"
  40441. }
  40442. },
  40443. paw: {
  40444. height: math.unit(0.75, "feet"),
  40445. name: "Paw",
  40446. image: {
  40447. source: "./media/characters/vera/paw.svg"
  40448. }
  40449. },
  40450. pawprint: {
  40451. height: math.unit(0.52, "feet"),
  40452. name: "Pawprint",
  40453. image: {
  40454. source: "./media/characters/vera/pawprint.svg"
  40455. }
  40456. },
  40457. },
  40458. [
  40459. {
  40460. name: "Normal",
  40461. height: math.unit(5 + 10/12, "feet"),
  40462. default: true
  40463. },
  40464. {
  40465. name: "Macro",
  40466. height: math.unit(75, "feet")
  40467. },
  40468. ]
  40469. ))
  40470. characterMakers.push(() => makeCharacter(
  40471. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40472. {
  40473. front: {
  40474. height: math.unit(4, "feet"),
  40475. weight: math.unit(40, "lb"),
  40476. name: "Front",
  40477. image: {
  40478. source: "./media/characters/orvan-rabbit/front.svg",
  40479. extra: 1896/1642,
  40480. bottom: 29/1925
  40481. }
  40482. },
  40483. },
  40484. [
  40485. {
  40486. name: "Normal",
  40487. height: math.unit(4, "feet"),
  40488. default: true
  40489. },
  40490. ]
  40491. ))
  40492. characterMakers.push(() => makeCharacter(
  40493. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40494. {
  40495. front: {
  40496. height: math.unit(6, "feet"),
  40497. weight: math.unit(168, "lb"),
  40498. name: "Front",
  40499. image: {
  40500. source: "./media/characters/lisa/front.svg",
  40501. extra: 2065/1867,
  40502. bottom: 46/2111
  40503. }
  40504. },
  40505. back: {
  40506. height: math.unit(6, "feet"),
  40507. weight: math.unit(168, "lb"),
  40508. name: "Back",
  40509. image: {
  40510. source: "./media/characters/lisa/back.svg",
  40511. extra: 1982/1838,
  40512. bottom: 29/2011
  40513. }
  40514. },
  40515. maw: {
  40516. height: math.unit(0.81, "feet"),
  40517. name: "Maw",
  40518. image: {
  40519. source: "./media/characters/lisa/maw.svg"
  40520. }
  40521. },
  40522. paw: {
  40523. height: math.unit(0.9, "feet"),
  40524. name: "Paw",
  40525. image: {
  40526. source: "./media/characters/lisa/paw.svg"
  40527. }
  40528. },
  40529. caribousune: {
  40530. height: math.unit(7 + 2/12, "feet"),
  40531. weight: math.unit(268, "lb"),
  40532. name: "Caribousune",
  40533. image: {
  40534. source: "./media/characters/lisa/caribousune.svg",
  40535. extra: 1843/1633,
  40536. bottom: 29/1872
  40537. }
  40538. },
  40539. frontCaribousune: {
  40540. height: math.unit(7 + 2/12, "feet"),
  40541. weight: math.unit(268, "lb"),
  40542. name: "Front (Caribousune)",
  40543. image: {
  40544. source: "./media/characters/lisa/front-caribousune.svg",
  40545. extra: 1818/1638,
  40546. bottom: 52/1870
  40547. }
  40548. },
  40549. sideCaribousune: {
  40550. height: math.unit(7 + 2/12, "feet"),
  40551. weight: math.unit(268, "lb"),
  40552. name: "Side (Caribousune)",
  40553. image: {
  40554. source: "./media/characters/lisa/side-caribousune.svg",
  40555. extra: 1851/1635,
  40556. bottom: 16/1867
  40557. }
  40558. },
  40559. backCaribousune: {
  40560. height: math.unit(7 + 2/12, "feet"),
  40561. weight: math.unit(268, "lb"),
  40562. name: "Back (Caribousune)",
  40563. image: {
  40564. source: "./media/characters/lisa/back-caribousune.svg",
  40565. extra: 1801/1604,
  40566. bottom: 44/1845
  40567. }
  40568. },
  40569. caribou: {
  40570. height: math.unit(7 + 2/12, "feet"),
  40571. weight: math.unit(268, "lb"),
  40572. name: "Caribou",
  40573. image: {
  40574. source: "./media/characters/lisa/caribou.svg",
  40575. extra: 1843/1633,
  40576. bottom: 29/1872
  40577. }
  40578. },
  40579. frontCaribou: {
  40580. height: math.unit(7 + 2/12, "feet"),
  40581. weight: math.unit(268, "lb"),
  40582. name: "Front (Caribou)",
  40583. image: {
  40584. source: "./media/characters/lisa/front-caribou.svg",
  40585. extra: 1818/1638,
  40586. bottom: 52/1870
  40587. }
  40588. },
  40589. sideCaribou: {
  40590. height: math.unit(7 + 2/12, "feet"),
  40591. weight: math.unit(268, "lb"),
  40592. name: "Side (Caribou)",
  40593. image: {
  40594. source: "./media/characters/lisa/side-caribou.svg",
  40595. extra: 1851/1635,
  40596. bottom: 16/1867
  40597. }
  40598. },
  40599. backCaribou: {
  40600. height: math.unit(7 + 2/12, "feet"),
  40601. weight: math.unit(268, "lb"),
  40602. name: "Back (Caribou)",
  40603. image: {
  40604. source: "./media/characters/lisa/back-caribou.svg",
  40605. extra: 1801/1604,
  40606. bottom: 44/1845
  40607. }
  40608. },
  40609. mawCaribou: {
  40610. height: math.unit(1.45, "feet"),
  40611. name: "Maw (Caribou)",
  40612. image: {
  40613. source: "./media/characters/lisa/maw-caribou.svg"
  40614. }
  40615. },
  40616. mawCaribousune: {
  40617. height: math.unit(1.45, "feet"),
  40618. name: "Maw (Caribousune)",
  40619. image: {
  40620. source: "./media/characters/lisa/maw-caribousune.svg"
  40621. }
  40622. },
  40623. pawCaribousune: {
  40624. height: math.unit(1.61, "feet"),
  40625. name: "Paw (Caribou)",
  40626. image: {
  40627. source: "./media/characters/lisa/paw-caribousune.svg"
  40628. }
  40629. },
  40630. },
  40631. [
  40632. {
  40633. name: "Normal",
  40634. height: math.unit(6, "feet")
  40635. },
  40636. {
  40637. name: "God Size",
  40638. height: math.unit(72, "feet"),
  40639. default: true
  40640. },
  40641. {
  40642. name: "Towering",
  40643. height: math.unit(288, "feet")
  40644. },
  40645. {
  40646. name: "City Size",
  40647. height: math.unit(48384, "feet")
  40648. },
  40649. {
  40650. name: "Continental",
  40651. height: math.unit(4200, "miles")
  40652. },
  40653. {
  40654. name: "Planet Eater",
  40655. height: math.unit(42, "earths")
  40656. },
  40657. {
  40658. name: "Star Swallower",
  40659. height: math.unit(42, "solarradii")
  40660. },
  40661. {
  40662. name: "System Swallower",
  40663. height: math.unit(84000, "AU")
  40664. },
  40665. {
  40666. name: "Galaxy Gobbler",
  40667. height: math.unit(42, "galaxies")
  40668. },
  40669. {
  40670. name: "Universe Devourer",
  40671. height: math.unit(42, "universes")
  40672. },
  40673. {
  40674. name: "Multiverse Muncher",
  40675. height: math.unit(42, "multiverses")
  40676. },
  40677. ]
  40678. ))
  40679. characterMakers.push(() => makeCharacter(
  40680. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40681. {
  40682. front: {
  40683. height: math.unit(36, "feet"),
  40684. name: "Front",
  40685. image: {
  40686. source: "./media/characters/shadow-rat/front.svg",
  40687. extra: 1845/1758,
  40688. bottom: 83/1928
  40689. }
  40690. },
  40691. },
  40692. [
  40693. {
  40694. name: "Macro",
  40695. height: math.unit(36, "feet"),
  40696. default: true
  40697. },
  40698. ]
  40699. ))
  40700. characterMakers.push(() => makeCharacter(
  40701. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40702. {
  40703. side: {
  40704. height: math.unit(8, "feet"),
  40705. weight: math.unit(2630, "lb"),
  40706. name: "Side",
  40707. image: {
  40708. source: "./media/characters/torallia/side.svg",
  40709. extra: 2164/2021,
  40710. bottom: 371/2535
  40711. }
  40712. },
  40713. },
  40714. [
  40715. {
  40716. name: "Mortal Interaction",
  40717. height: math.unit(8, "feet")
  40718. },
  40719. {
  40720. name: "Natural",
  40721. height: math.unit(24, "feet"),
  40722. default: true
  40723. },
  40724. {
  40725. name: "Giant",
  40726. height: math.unit(80, "feet")
  40727. },
  40728. {
  40729. name: "Kaiju",
  40730. height: math.unit(240, "feet")
  40731. },
  40732. {
  40733. name: "Macro",
  40734. height: math.unit(800, "feet")
  40735. },
  40736. {
  40737. name: "Macro+",
  40738. height: math.unit(2400, "feet")
  40739. },
  40740. {
  40741. name: "Macro++",
  40742. height: math.unit(8000, "feet")
  40743. },
  40744. {
  40745. name: "City-Crushing",
  40746. height: math.unit(24000, "feet")
  40747. },
  40748. {
  40749. name: "Mountain-Mashing",
  40750. height: math.unit(80000, "feet")
  40751. },
  40752. {
  40753. name: "District Demolisher",
  40754. height: math.unit(240000, "feet")
  40755. },
  40756. {
  40757. name: "Tri-County Terror",
  40758. height: math.unit(800000, "feet")
  40759. },
  40760. {
  40761. name: "State Smasher",
  40762. height: math.unit(2.4e6, "feet")
  40763. },
  40764. {
  40765. name: "Nation Nemesis",
  40766. height: math.unit(8e6, "feet")
  40767. },
  40768. {
  40769. name: "Continent Cracker",
  40770. height: math.unit(2.4e7, "feet")
  40771. },
  40772. {
  40773. name: "Planet-Pillaging",
  40774. height: math.unit(8e7, "feet")
  40775. },
  40776. {
  40777. name: "Earth-Eclipsing",
  40778. height: math.unit(2.4e8, "feet")
  40779. },
  40780. {
  40781. name: "Jovian-Jostling",
  40782. height: math.unit(8e8, "feet")
  40783. },
  40784. {
  40785. name: "Gas Giant Gulper",
  40786. height: math.unit(2.4e9, "feet")
  40787. },
  40788. {
  40789. name: "Astral Annihilator",
  40790. height: math.unit(8e9, "feet")
  40791. },
  40792. {
  40793. name: "Celestial Conqueror",
  40794. height: math.unit(2.4e10, "feet")
  40795. },
  40796. {
  40797. name: "Sol-Swallowing",
  40798. height: math.unit(8e10, "feet")
  40799. },
  40800. {
  40801. name: "Hunter of the Heavens",
  40802. height: math.unit(2.4e13, "feet")
  40803. },
  40804. ]
  40805. ))
  40806. characterMakers.push(() => makeCharacter(
  40807. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40808. {
  40809. front: {
  40810. height: math.unit(6 + 8/12, "feet"),
  40811. weight: math.unit(250, "kilograms"),
  40812. volume: math.unit(28, "liters"),
  40813. name: "Front",
  40814. image: {
  40815. source: "./media/characters/rebecca-pawlson/front.svg",
  40816. extra: 1737/1596,
  40817. bottom: 107/1844
  40818. }
  40819. },
  40820. back: {
  40821. height: math.unit(6 + 8/12, "feet"),
  40822. weight: math.unit(250, "kilograms"),
  40823. volume: math.unit(28, "liters"),
  40824. name: "Back",
  40825. image: {
  40826. source: "./media/characters/rebecca-pawlson/back.svg",
  40827. extra: 1702/1523,
  40828. bottom: 86/1788
  40829. }
  40830. },
  40831. },
  40832. [
  40833. {
  40834. name: "Normal",
  40835. height: math.unit(6 + 8/12, "feet")
  40836. },
  40837. {
  40838. name: "Mini Macro",
  40839. height: math.unit(10, "feet"),
  40840. default: true
  40841. },
  40842. {
  40843. name: "Macro",
  40844. height: math.unit(100, "feet")
  40845. },
  40846. {
  40847. name: "Mega Macro",
  40848. height: math.unit(2500, "feet")
  40849. },
  40850. {
  40851. name: "Giga Macro",
  40852. height: math.unit(50, "miles")
  40853. },
  40854. ]
  40855. ))
  40856. characterMakers.push(() => makeCharacter(
  40857. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40858. {
  40859. front: {
  40860. height: math.unit(7 + 6/12, "feet"),
  40861. weight: math.unit(600, "lb"),
  40862. name: "Front",
  40863. image: {
  40864. source: "./media/characters/moxie-nova/front.svg",
  40865. extra: 1734/1652,
  40866. bottom: 41/1775
  40867. }
  40868. },
  40869. },
  40870. [
  40871. {
  40872. name: "Normal",
  40873. height: math.unit(7 + 6/12, "feet"),
  40874. default: true
  40875. },
  40876. ]
  40877. ))
  40878. characterMakers.push(() => makeCharacter(
  40879. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40880. {
  40881. goat: {
  40882. height: math.unit(4, "feet"),
  40883. weight: math.unit(180, "lb"),
  40884. name: "Goat",
  40885. image: {
  40886. source: "./media/characters/tiffany/goat.svg",
  40887. extra: 1845/1595,
  40888. bottom: 106/1951
  40889. }
  40890. },
  40891. front: {
  40892. height: math.unit(5, "feet"),
  40893. weight: math.unit(150, "lb"),
  40894. name: "Foxcoon",
  40895. image: {
  40896. source: "./media/characters/tiffany/foxcoon.svg",
  40897. extra: 1941/1845,
  40898. bottom: 58/1999
  40899. }
  40900. },
  40901. },
  40902. [
  40903. {
  40904. name: "Normal",
  40905. height: math.unit(5, "feet"),
  40906. default: true
  40907. },
  40908. ]
  40909. ))
  40910. characterMakers.push(() => makeCharacter(
  40911. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40912. {
  40913. front: {
  40914. height: math.unit(8, "feet"),
  40915. weight: math.unit(300, "lb"),
  40916. name: "Front",
  40917. image: {
  40918. source: "./media/characters/raxinath/front.svg",
  40919. extra: 1407/1309,
  40920. bottom: 39/1446
  40921. }
  40922. },
  40923. back: {
  40924. height: math.unit(8, "feet"),
  40925. weight: math.unit(300, "lb"),
  40926. name: "Back",
  40927. image: {
  40928. source: "./media/characters/raxinath/back.svg",
  40929. extra: 1405/1315,
  40930. bottom: 9/1414
  40931. }
  40932. },
  40933. },
  40934. [
  40935. {
  40936. name: "Speck",
  40937. height: math.unit(0.5, "nm")
  40938. },
  40939. {
  40940. name: "Micro",
  40941. height: math.unit(3, "inches")
  40942. },
  40943. {
  40944. name: "Kobold",
  40945. height: math.unit(3, "feet")
  40946. },
  40947. {
  40948. name: "Normal",
  40949. height: math.unit(8, "feet"),
  40950. default: true
  40951. },
  40952. {
  40953. name: "Giant",
  40954. height: math.unit(50, "feet")
  40955. },
  40956. {
  40957. name: "Macro",
  40958. height: math.unit(1000, "feet")
  40959. },
  40960. {
  40961. name: "Megamacro",
  40962. height: math.unit(1, "mile")
  40963. },
  40964. ]
  40965. ))
  40966. characterMakers.push(() => makeCharacter(
  40967. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40968. {
  40969. front: {
  40970. height: math.unit(10, "feet"),
  40971. weight: math.unit(1442, "lb"),
  40972. name: "Front",
  40973. image: {
  40974. source: "./media/characters/mal-dragon/front.svg",
  40975. extra: 1515/1444,
  40976. bottom: 113/1628
  40977. }
  40978. },
  40979. back: {
  40980. height: math.unit(10, "feet"),
  40981. weight: math.unit(1442, "lb"),
  40982. name: "Back",
  40983. image: {
  40984. source: "./media/characters/mal-dragon/back.svg",
  40985. extra: 1527/1434,
  40986. bottom: 25/1552
  40987. }
  40988. },
  40989. },
  40990. [
  40991. {
  40992. name: "Mortal Interaction",
  40993. height: math.unit(10, "feet"),
  40994. default: true
  40995. },
  40996. {
  40997. name: "Large",
  40998. height: math.unit(30, "feet")
  40999. },
  41000. {
  41001. name: "Kaiju",
  41002. height: math.unit(300, "feet")
  41003. },
  41004. {
  41005. name: "Megamacro",
  41006. height: math.unit(10000, "feet")
  41007. },
  41008. {
  41009. name: "Continent Cracker",
  41010. height: math.unit(30000000, "feet")
  41011. },
  41012. {
  41013. name: "Sol-Swallowing",
  41014. height: math.unit(1e11, "feet")
  41015. },
  41016. {
  41017. name: "Light Universal",
  41018. height: math.unit(5, "universes")
  41019. },
  41020. {
  41021. name: "Universe Atoms",
  41022. height: math.unit(1.829e9, "universes")
  41023. },
  41024. {
  41025. name: "Light Multiversal",
  41026. height: math.unit(5, "multiverses")
  41027. },
  41028. {
  41029. name: "Multiverse Atoms",
  41030. height: math.unit(1.829e9, "multiverses")
  41031. },
  41032. {
  41033. name: "Fabric of Time",
  41034. height: math.unit(1e262, "multiverses")
  41035. },
  41036. ]
  41037. ))
  41038. characterMakers.push(() => makeCharacter(
  41039. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41040. {
  41041. front: {
  41042. height: math.unit(9, "feet"),
  41043. weight: math.unit(1050, "lb"),
  41044. name: "Front",
  41045. image: {
  41046. source: "./media/characters/tabitha/front.svg",
  41047. extra: 2083/1994,
  41048. bottom: 68/2151
  41049. }
  41050. },
  41051. },
  41052. [
  41053. {
  41054. name: "Baseline",
  41055. height: math.unit(9, "feet"),
  41056. default: true
  41057. },
  41058. {
  41059. name: "Giant",
  41060. height: math.unit(90, "feet")
  41061. },
  41062. {
  41063. name: "Macro",
  41064. height: math.unit(900, "feet")
  41065. },
  41066. {
  41067. name: "Megamacro",
  41068. height: math.unit(9000, "feet")
  41069. },
  41070. {
  41071. name: "City-Crushing",
  41072. height: math.unit(27000, "feet")
  41073. },
  41074. {
  41075. name: "Mountain-Mashing",
  41076. height: math.unit(90000, "feet")
  41077. },
  41078. {
  41079. name: "Nation Nemesis",
  41080. height: math.unit(9e6, "feet")
  41081. },
  41082. {
  41083. name: "Continent Cracker",
  41084. height: math.unit(27e6, "feet")
  41085. },
  41086. {
  41087. name: "Earth-Eclipsing",
  41088. height: math.unit(2.7e8, "feet")
  41089. },
  41090. {
  41091. name: "Gas Giant Gulper",
  41092. height: math.unit(2.7e9, "feet")
  41093. },
  41094. {
  41095. name: "Sol-Swallowing",
  41096. height: math.unit(9e10, "feet")
  41097. },
  41098. {
  41099. name: "Galaxy Gulper",
  41100. height: math.unit(9, "galaxies")
  41101. },
  41102. {
  41103. name: "Cosmos Churner",
  41104. height: math.unit(9, "universes")
  41105. },
  41106. ]
  41107. ))
  41108. characterMakers.push(() => makeCharacter(
  41109. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41110. {
  41111. front: {
  41112. height: math.unit(160, "cm"),
  41113. weight: math.unit(55, "kg"),
  41114. name: "Front",
  41115. image: {
  41116. source: "./media/characters/tow/front.svg",
  41117. extra: 1751/1722,
  41118. bottom: 74/1825
  41119. }
  41120. },
  41121. },
  41122. [
  41123. {
  41124. name: "Norm",
  41125. height: math.unit(160, "cm")
  41126. },
  41127. {
  41128. name: "Casual",
  41129. height: math.unit(3200, "m"),
  41130. default: true
  41131. },
  41132. {
  41133. name: "Show-Off",
  41134. height: math.unit(160, "km")
  41135. },
  41136. ]
  41137. ))
  41138. characterMakers.push(() => makeCharacter(
  41139. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41140. {
  41141. front: {
  41142. height: math.unit(7 + 11/12, "feet"),
  41143. weight: math.unit(342.8, "lb"),
  41144. name: "Front",
  41145. image: {
  41146. source: "./media/characters/vivian-orca-dragon/front.svg",
  41147. extra: 1890/1865,
  41148. bottom: 28/1918
  41149. }
  41150. },
  41151. },
  41152. [
  41153. {
  41154. name: "Micro",
  41155. height: math.unit(5, "inches")
  41156. },
  41157. {
  41158. name: "Normal",
  41159. height: math.unit(7 + 11/12, "feet"),
  41160. default: true
  41161. },
  41162. {
  41163. name: "Macro",
  41164. height: math.unit(395 + 7/12, "feet")
  41165. },
  41166. ]
  41167. ))
  41168. characterMakers.push(() => makeCharacter(
  41169. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41170. {
  41171. side: {
  41172. height: math.unit(10, "feet"),
  41173. weight: math.unit(1442, "lb"),
  41174. name: "Side",
  41175. image: {
  41176. source: "./media/characters/lotherakon/side.svg",
  41177. extra: 1604/1497,
  41178. bottom: 89/1693
  41179. }
  41180. },
  41181. },
  41182. [
  41183. {
  41184. name: "Mortal Interaction",
  41185. height: math.unit(10, "feet")
  41186. },
  41187. {
  41188. name: "Large",
  41189. height: math.unit(30, "feet"),
  41190. default: true
  41191. },
  41192. {
  41193. name: "Giant",
  41194. height: math.unit(100, "feet")
  41195. },
  41196. {
  41197. name: "Kaiju",
  41198. height: math.unit(300, "feet")
  41199. },
  41200. {
  41201. name: "Macro",
  41202. height: math.unit(1000, "feet")
  41203. },
  41204. {
  41205. name: "Macro+",
  41206. height: math.unit(3000, "feet")
  41207. },
  41208. {
  41209. name: "Megamacro",
  41210. height: math.unit(10000, "feet")
  41211. },
  41212. {
  41213. name: "City-Crushing",
  41214. height: math.unit(30000, "feet")
  41215. },
  41216. {
  41217. name: "Continent Cracker",
  41218. height: math.unit(30e6, "feet")
  41219. },
  41220. {
  41221. name: "Earth Eclipsing",
  41222. height: math.unit(3e8, "feet")
  41223. },
  41224. {
  41225. name: "Gas Giant Gulper",
  41226. height: math.unit(3e9, "feet")
  41227. },
  41228. {
  41229. name: "Sol-Swallowing",
  41230. height: math.unit(1e11, "feet")
  41231. },
  41232. {
  41233. name: "System Swallower",
  41234. height: math.unit(3e14, "feet")
  41235. },
  41236. {
  41237. name: "Galaxy Gulper",
  41238. height: math.unit(10, "galaxies")
  41239. },
  41240. {
  41241. name: "Light Universal",
  41242. height: math.unit(5, "universes")
  41243. },
  41244. {
  41245. name: "Universe Palm",
  41246. height: math.unit(20, "universes")
  41247. },
  41248. {
  41249. name: "Light Multiversal",
  41250. height: math.unit(5, "multiverses")
  41251. },
  41252. {
  41253. name: "Multiverse Palm",
  41254. height: math.unit(20, "multiverses")
  41255. },
  41256. {
  41257. name: "Inferno Incarnate",
  41258. height: math.unit(1e7, "multiverses")
  41259. },
  41260. ]
  41261. ))
  41262. characterMakers.push(() => makeCharacter(
  41263. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41264. {
  41265. front: {
  41266. height: math.unit(8, "feet"),
  41267. weight: math.unit(1200, "lb"),
  41268. name: "Front",
  41269. image: {
  41270. source: "./media/characters/malithee/front.svg",
  41271. extra: 1675/1640,
  41272. bottom: 162/1837
  41273. }
  41274. },
  41275. },
  41276. [
  41277. {
  41278. name: "Mortal Interaction",
  41279. height: math.unit(8, "feet"),
  41280. default: true
  41281. },
  41282. {
  41283. name: "Large",
  41284. height: math.unit(24, "feet")
  41285. },
  41286. {
  41287. name: "Kaiju",
  41288. height: math.unit(240, "feet")
  41289. },
  41290. {
  41291. name: "Megamacro",
  41292. height: math.unit(8000, "feet")
  41293. },
  41294. {
  41295. name: "Continent Cracker",
  41296. height: math.unit(24e6, "feet")
  41297. },
  41298. {
  41299. name: "Earth-Eclipsing",
  41300. height: math.unit(2.4e8, "feet")
  41301. },
  41302. {
  41303. name: "Sol-Swallowing",
  41304. height: math.unit(8e10, "feet")
  41305. },
  41306. {
  41307. name: "Galaxy Gulper",
  41308. height: math.unit(8, "galaxies")
  41309. },
  41310. {
  41311. name: "Light Universal",
  41312. height: math.unit(4, "universes")
  41313. },
  41314. {
  41315. name: "Universe Atoms",
  41316. height: math.unit(1.829e9, "universes")
  41317. },
  41318. {
  41319. name: "Light Multiversal",
  41320. height: math.unit(4, "multiverses")
  41321. },
  41322. {
  41323. name: "Multiverse Atoms",
  41324. height: math.unit(1.829e9, "multiverses")
  41325. },
  41326. {
  41327. name: "Nigh-Omnipresence",
  41328. height: math.unit(8e261, "multiverses")
  41329. },
  41330. ]
  41331. ))
  41332. characterMakers.push(() => makeCharacter(
  41333. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41334. {
  41335. front: {
  41336. height: math.unit(10, "feet"),
  41337. weight: math.unit(1500, "lb"),
  41338. name: "Front",
  41339. image: {
  41340. source: "./media/characters/miles-thestia/front.svg",
  41341. extra: 1812/1727,
  41342. bottom: 86/1898
  41343. }
  41344. },
  41345. back: {
  41346. height: math.unit(10, "feet"),
  41347. weight: math.unit(1500, "lb"),
  41348. name: "Back",
  41349. image: {
  41350. source: "./media/characters/miles-thestia/back.svg",
  41351. extra: 1799/1690,
  41352. bottom: 47/1846
  41353. }
  41354. },
  41355. frontNsfw: {
  41356. height: math.unit(10, "feet"),
  41357. weight: math.unit(1500, "lb"),
  41358. name: "Front (NSFW)",
  41359. image: {
  41360. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41361. extra: 1812/1727,
  41362. bottom: 86/1898
  41363. }
  41364. },
  41365. },
  41366. [
  41367. {
  41368. name: "Mini-Macro",
  41369. height: math.unit(10, "feet"),
  41370. default: true
  41371. },
  41372. ]
  41373. ))
  41374. characterMakers.push(() => makeCharacter(
  41375. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41376. {
  41377. front: {
  41378. height: math.unit(25, "feet"),
  41379. name: "Front",
  41380. image: {
  41381. source: "./media/characters/titan-s-wulf/front.svg",
  41382. extra: 1560/1484,
  41383. bottom: 76/1636
  41384. }
  41385. },
  41386. },
  41387. [
  41388. {
  41389. name: "Smallest",
  41390. height: math.unit(25, "feet"),
  41391. default: true
  41392. },
  41393. {
  41394. name: "Normal",
  41395. height: math.unit(200, "feet")
  41396. },
  41397. {
  41398. name: "Macro",
  41399. height: math.unit(200000, "feet")
  41400. },
  41401. {
  41402. name: "Multiversal Original",
  41403. height: math.unit(10000, "multiverses")
  41404. },
  41405. ]
  41406. ))
  41407. characterMakers.push(() => makeCharacter(
  41408. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41409. {
  41410. front: {
  41411. height: math.unit(8, "feet"),
  41412. weight: math.unit(553, "lb"),
  41413. name: "Front",
  41414. image: {
  41415. source: "./media/characters/tawendeh/front.svg",
  41416. extra: 2365/2268,
  41417. bottom: 83/2448
  41418. }
  41419. },
  41420. frontClothed: {
  41421. height: math.unit(8, "feet"),
  41422. weight: math.unit(553, "lb"),
  41423. name: "Front (Clothed)",
  41424. image: {
  41425. source: "./media/characters/tawendeh/front-clothed.svg",
  41426. extra: 2365/2268,
  41427. bottom: 83/2448
  41428. }
  41429. },
  41430. back: {
  41431. height: math.unit(8, "feet"),
  41432. weight: math.unit(553, "lb"),
  41433. name: "Back",
  41434. image: {
  41435. source: "./media/characters/tawendeh/back.svg",
  41436. extra: 2397/2294,
  41437. bottom: 42/2439
  41438. }
  41439. },
  41440. },
  41441. [
  41442. {
  41443. name: "Mortal Interaction",
  41444. height: math.unit(8, "feet"),
  41445. default: true
  41446. },
  41447. {
  41448. name: "Giant",
  41449. height: math.unit(80, "feet")
  41450. },
  41451. {
  41452. name: "Macro",
  41453. height: math.unit(800, "feet")
  41454. },
  41455. {
  41456. name: "Megamacro",
  41457. height: math.unit(8000, "feet")
  41458. },
  41459. {
  41460. name: "City-Crushing",
  41461. height: math.unit(24000, "feet")
  41462. },
  41463. {
  41464. name: "Mountain-Mashing",
  41465. height: math.unit(80000, "feet")
  41466. },
  41467. {
  41468. name: "Nation Nemesis",
  41469. height: math.unit(8e6, "feet")
  41470. },
  41471. {
  41472. name: "Continent Cracker",
  41473. height: math.unit(24e6, "feet")
  41474. },
  41475. {
  41476. name: "Earth-Eclipsing",
  41477. height: math.unit(2.4e8, "feet")
  41478. },
  41479. {
  41480. name: "Gas Giant Gulper",
  41481. height: math.unit(2.4e9, "feet")
  41482. },
  41483. {
  41484. name: "Sol-Swallowing",
  41485. height: math.unit(8e10, "feet")
  41486. },
  41487. {
  41488. name: "Galaxy Gulper",
  41489. height: math.unit(8, "galaxies")
  41490. },
  41491. {
  41492. name: "Cosmos Churner",
  41493. height: math.unit(8, "universes")
  41494. },
  41495. {
  41496. name: "Omnipotent Otter",
  41497. height: math.unit(80, "universes")
  41498. },
  41499. ]
  41500. ))
  41501. characterMakers.push(() => makeCharacter(
  41502. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41503. {
  41504. front: {
  41505. height: math.unit(2.6, "meters"),
  41506. weight: math.unit(900, "kg"),
  41507. name: "Front",
  41508. image: {
  41509. source: "./media/characters/neesha/front.svg",
  41510. extra: 1803/1653,
  41511. bottom: 128/1931
  41512. }
  41513. },
  41514. },
  41515. [
  41516. {
  41517. name: "Normal",
  41518. height: math.unit(2.6, "meters"),
  41519. default: true
  41520. },
  41521. {
  41522. name: "Macro",
  41523. height: math.unit(50, "meters")
  41524. },
  41525. ]
  41526. ))
  41527. characterMakers.push(() => makeCharacter(
  41528. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41529. {
  41530. front: {
  41531. height: math.unit(5, "feet"),
  41532. weight: math.unit(185, "lb"),
  41533. name: "Front",
  41534. image: {
  41535. source: "./media/characters/kyera/front.svg",
  41536. extra: 1875/1790,
  41537. bottom: 96/1971
  41538. }
  41539. },
  41540. },
  41541. [
  41542. {
  41543. name: "Normal",
  41544. height: math.unit(5, "feet"),
  41545. default: true
  41546. },
  41547. ]
  41548. ))
  41549. characterMakers.push(() => makeCharacter(
  41550. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41551. {
  41552. front: {
  41553. height: math.unit(7 + 6/12, "feet"),
  41554. weight: math.unit(540, "lb"),
  41555. name: "Front",
  41556. image: {
  41557. source: "./media/characters/yuko/front.svg",
  41558. extra: 1282/1222,
  41559. bottom: 101/1383
  41560. }
  41561. },
  41562. frontClothed: {
  41563. height: math.unit(7 + 6/12, "feet"),
  41564. weight: math.unit(540, "lb"),
  41565. name: "Front (Clothed)",
  41566. image: {
  41567. source: "./media/characters/yuko/front-clothed.svg",
  41568. extra: 1282/1222,
  41569. bottom: 101/1383
  41570. }
  41571. },
  41572. },
  41573. [
  41574. {
  41575. name: "Normal",
  41576. height: math.unit(7 + 6/12, "feet"),
  41577. default: true
  41578. },
  41579. {
  41580. name: "Macro",
  41581. height: math.unit(26 + 9/12, "feet")
  41582. },
  41583. {
  41584. name: "Megamacro",
  41585. height: math.unit(300, "feet")
  41586. },
  41587. {
  41588. name: "Gigamacro",
  41589. height: math.unit(5000, "feet")
  41590. },
  41591. {
  41592. name: "Planetary",
  41593. height: math.unit(10000, "miles")
  41594. },
  41595. ]
  41596. ))
  41597. characterMakers.push(() => makeCharacter(
  41598. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41599. {
  41600. front: {
  41601. height: math.unit(8 + 2/12, "feet"),
  41602. weight: math.unit(600, "lb"),
  41603. name: "Front",
  41604. image: {
  41605. source: "./media/characters/deam-nitrel/front.svg",
  41606. extra: 1308/1234,
  41607. bottom: 125/1433
  41608. }
  41609. },
  41610. },
  41611. [
  41612. {
  41613. name: "Normal",
  41614. height: math.unit(8 + 2/12, "feet"),
  41615. default: true
  41616. },
  41617. ]
  41618. ))
  41619. characterMakers.push(() => makeCharacter(
  41620. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41621. {
  41622. front: {
  41623. height: math.unit(6.1, "feet"),
  41624. weight: math.unit(180, "lb"),
  41625. name: "Front",
  41626. image: {
  41627. source: "./media/characters/skyress/front.svg",
  41628. extra: 1045/915,
  41629. bottom: 28/1073
  41630. }
  41631. },
  41632. maw: {
  41633. height: math.unit(1, "feet"),
  41634. name: "Maw",
  41635. image: {
  41636. source: "./media/characters/skyress/maw.svg"
  41637. }
  41638. },
  41639. },
  41640. [
  41641. {
  41642. name: "Normal",
  41643. height: math.unit(6.1, "feet"),
  41644. default: true
  41645. },
  41646. {
  41647. name: "Macro",
  41648. height: math.unit(200, "feet")
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41654. {
  41655. front: {
  41656. height: math.unit(4 + 2/12, "feet"),
  41657. weight: math.unit(40, "kg"),
  41658. name: "Front",
  41659. image: {
  41660. source: "./media/characters/amethyst-jones/front.svg",
  41661. extra: 1220/1150,
  41662. bottom: 101/1321
  41663. }
  41664. },
  41665. },
  41666. [
  41667. {
  41668. name: "Normal",
  41669. height: math.unit(4 + 2/12, "feet"),
  41670. default: true
  41671. },
  41672. ]
  41673. ))
  41674. characterMakers.push(() => makeCharacter(
  41675. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41676. {
  41677. front: {
  41678. height: math.unit(1.7, "m"),
  41679. weight: math.unit(135, "lb"),
  41680. name: "Front",
  41681. image: {
  41682. source: "./media/characters/jade/front.svg",
  41683. extra: 1818/1767,
  41684. bottom: 32/1850
  41685. }
  41686. },
  41687. back: {
  41688. height: math.unit(1.7, "m"),
  41689. weight: math.unit(135, "lb"),
  41690. name: "Back",
  41691. image: {
  41692. source: "./media/characters/jade/back.svg",
  41693. extra: 1869/1809,
  41694. bottom: 35/1904
  41695. }
  41696. },
  41697. hand: {
  41698. height: math.unit(0.24, "m"),
  41699. name: "Hand",
  41700. image: {
  41701. source: "./media/characters/jade/hand.svg"
  41702. }
  41703. },
  41704. foot: {
  41705. height: math.unit(0.263, "m"),
  41706. name: "Foot",
  41707. image: {
  41708. source: "./media/characters/jade/foot.svg"
  41709. }
  41710. },
  41711. dick: {
  41712. height: math.unit(0.47, "m"),
  41713. name: "Dick",
  41714. image: {
  41715. source: "./media/characters/jade/dick.svg"
  41716. }
  41717. },
  41718. },
  41719. [
  41720. {
  41721. name: "Micro",
  41722. height: math.unit(22, "cm")
  41723. },
  41724. {
  41725. name: "Normal",
  41726. height: math.unit(1.7, "m"),
  41727. default: true
  41728. },
  41729. {
  41730. name: "Macro",
  41731. height: math.unit(152, "m")
  41732. },
  41733. ]
  41734. ))
  41735. characterMakers.push(() => makeCharacter(
  41736. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41737. {
  41738. front: {
  41739. height: math.unit(100, "miles"),
  41740. weight: math.unit(20000, "tons"),
  41741. name: "Front",
  41742. image: {
  41743. source: "./media/characters/cookie/front.svg",
  41744. extra: 1125/1070,
  41745. bottom: 30/1155
  41746. }
  41747. },
  41748. },
  41749. [
  41750. {
  41751. name: "Big",
  41752. height: math.unit(50, "feet")
  41753. },
  41754. {
  41755. name: "Macro",
  41756. height: math.unit(100, "miles"),
  41757. default: true
  41758. },
  41759. {
  41760. name: "Megamacro",
  41761. height: math.unit(90000, "miles")
  41762. },
  41763. ]
  41764. ))
  41765. characterMakers.push(() => makeCharacter(
  41766. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41767. {
  41768. front: {
  41769. height: math.unit(6, "feet"),
  41770. weight: math.unit(145, "lb"),
  41771. name: "Front",
  41772. image: {
  41773. source: "./media/characters/farzian/front.svg",
  41774. extra: 1902/1693,
  41775. bottom: 108/2010
  41776. }
  41777. },
  41778. },
  41779. [
  41780. {
  41781. name: "Macro",
  41782. height: math.unit(500, "feet"),
  41783. default: true
  41784. },
  41785. ]
  41786. ))
  41787. characterMakers.push(() => makeCharacter(
  41788. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41789. {
  41790. front: {
  41791. height: math.unit(3 + 6/12, "feet"),
  41792. weight: math.unit(50, "lb"),
  41793. name: "Front",
  41794. image: {
  41795. source: "./media/characters/kimberly-tilson/front.svg",
  41796. extra: 1400/1322,
  41797. bottom: 36/1436
  41798. }
  41799. },
  41800. back: {
  41801. height: math.unit(3 + 6/12, "feet"),
  41802. weight: math.unit(50, "lb"),
  41803. name: "Back",
  41804. image: {
  41805. source: "./media/characters/kimberly-tilson/back.svg",
  41806. extra: 1370/1307,
  41807. bottom: 20/1390
  41808. }
  41809. },
  41810. },
  41811. [
  41812. {
  41813. name: "Normal",
  41814. height: math.unit(3 + 6/12, "feet"),
  41815. default: true
  41816. },
  41817. ]
  41818. ))
  41819. characterMakers.push(() => makeCharacter(
  41820. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41821. {
  41822. front: {
  41823. height: math.unit(1148, "feet"),
  41824. weight: math.unit(34057, "lb"),
  41825. name: "Front",
  41826. image: {
  41827. source: "./media/characters/harthos/front.svg",
  41828. extra: 1391/1339,
  41829. bottom: 13/1404
  41830. }
  41831. },
  41832. },
  41833. [
  41834. {
  41835. name: "Macro",
  41836. height: math.unit(1148, "feet"),
  41837. default: true
  41838. },
  41839. ]
  41840. ))
  41841. characterMakers.push(() => makeCharacter(
  41842. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41843. {
  41844. front: {
  41845. height: math.unit(15, "feet"),
  41846. name: "Front",
  41847. image: {
  41848. source: "./media/characters/hypatia/front.svg",
  41849. extra: 1653/1591,
  41850. bottom: 79/1732
  41851. }
  41852. },
  41853. },
  41854. [
  41855. {
  41856. name: "Normal",
  41857. height: math.unit(15, "feet")
  41858. },
  41859. {
  41860. name: "Small",
  41861. height: math.unit(300, "feet")
  41862. },
  41863. {
  41864. name: "Macro",
  41865. height: math.unit(2500, "feet"),
  41866. default: true
  41867. },
  41868. {
  41869. name: "Mega Macro",
  41870. height: math.unit(1500, "miles")
  41871. },
  41872. {
  41873. name: "Giga Macro",
  41874. height: math.unit(1.5e6, "miles")
  41875. },
  41876. ]
  41877. ))
  41878. characterMakers.push(() => makeCharacter(
  41879. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41880. {
  41881. front: {
  41882. height: math.unit(6, "feet"),
  41883. weight: math.unit(200, "lb"),
  41884. name: "Front",
  41885. image: {
  41886. source: "./media/characters/wulver/front.svg",
  41887. extra: 1724/1632,
  41888. bottom: 130/1854
  41889. }
  41890. },
  41891. frontNsfw: {
  41892. height: math.unit(6, "feet"),
  41893. weight: math.unit(200, "lb"),
  41894. name: "Front (NSFW)",
  41895. image: {
  41896. source: "./media/characters/wulver/front-nsfw.svg",
  41897. extra: 1724/1632,
  41898. bottom: 130/1854
  41899. }
  41900. },
  41901. },
  41902. [
  41903. {
  41904. name: "Human-Sized",
  41905. height: math.unit(6, "feet")
  41906. },
  41907. {
  41908. name: "Normal",
  41909. height: math.unit(4, "meters"),
  41910. default: true
  41911. },
  41912. {
  41913. name: "Large",
  41914. height: math.unit(6, "m")
  41915. },
  41916. ]
  41917. ))
  41918. characterMakers.push(() => makeCharacter(
  41919. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41920. {
  41921. front: {
  41922. height: math.unit(7, "feet"),
  41923. name: "Front",
  41924. image: {
  41925. source: "./media/characters/maru/front.svg",
  41926. extra: 1595/1570,
  41927. bottom: 0/1595
  41928. }
  41929. },
  41930. },
  41931. [
  41932. {
  41933. name: "Normal",
  41934. height: math.unit(7, "feet"),
  41935. default: true
  41936. },
  41937. {
  41938. name: "Macro",
  41939. height: math.unit(700, "feet")
  41940. },
  41941. {
  41942. name: "Mega Macro",
  41943. height: math.unit(25, "miles")
  41944. },
  41945. ]
  41946. ))
  41947. characterMakers.push(() => makeCharacter(
  41948. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41949. {
  41950. front: {
  41951. height: math.unit(6, "feet"),
  41952. weight: math.unit(170, "lb"),
  41953. name: "Front",
  41954. image: {
  41955. source: "./media/characters/xenon/front.svg",
  41956. extra: 1376/1305,
  41957. bottom: 56/1432
  41958. }
  41959. },
  41960. back: {
  41961. height: math.unit(6, "feet"),
  41962. weight: math.unit(170, "lb"),
  41963. name: "Back",
  41964. image: {
  41965. source: "./media/characters/xenon/back.svg",
  41966. extra: 1328/1259,
  41967. bottom: 95/1423
  41968. }
  41969. },
  41970. maw: {
  41971. height: math.unit(0.52, "feet"),
  41972. name: "Maw",
  41973. image: {
  41974. source: "./media/characters/xenon/maw.svg"
  41975. }
  41976. },
  41977. handLeft: {
  41978. height: math.unit(0.82 * 169 / 153, "feet"),
  41979. name: "Hand (Left)",
  41980. image: {
  41981. source: "./media/characters/xenon/hand-left.svg"
  41982. }
  41983. },
  41984. handRight: {
  41985. height: math.unit(0.82, "feet"),
  41986. name: "Hand (Right)",
  41987. image: {
  41988. source: "./media/characters/xenon/hand-right.svg"
  41989. }
  41990. },
  41991. footLeft: {
  41992. height: math.unit(1.13, "feet"),
  41993. name: "Foot (Left)",
  41994. image: {
  41995. source: "./media/characters/xenon/foot-left.svg"
  41996. }
  41997. },
  41998. footRight: {
  41999. height: math.unit(1.13 * 194 / 196, "feet"),
  42000. name: "Foot (Right)",
  42001. image: {
  42002. source: "./media/characters/xenon/foot-right.svg"
  42003. }
  42004. },
  42005. },
  42006. [
  42007. {
  42008. name: "Micro",
  42009. height: math.unit(0.8, "inches")
  42010. },
  42011. {
  42012. name: "Normal",
  42013. height: math.unit(6, "feet")
  42014. },
  42015. {
  42016. name: "Macro",
  42017. height: math.unit(50, "feet"),
  42018. default: true
  42019. },
  42020. {
  42021. name: "Macro+",
  42022. height: math.unit(250, "feet")
  42023. },
  42024. {
  42025. name: "Megamacro",
  42026. height: math.unit(1500, "feet")
  42027. },
  42028. ]
  42029. ))
  42030. characterMakers.push(() => makeCharacter(
  42031. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42032. {
  42033. front: {
  42034. height: math.unit(7 + 5/12, "feet"),
  42035. name: "Front",
  42036. image: {
  42037. source: "./media/characters/zane/front.svg",
  42038. extra: 1260/1203,
  42039. bottom: 94/1354
  42040. }
  42041. },
  42042. back: {
  42043. height: math.unit(5.05, "feet"),
  42044. name: "Back",
  42045. image: {
  42046. source: "./media/characters/zane/back.svg",
  42047. extra: 893/829,
  42048. bottom: 30/923
  42049. }
  42050. },
  42051. werewolf: {
  42052. height: math.unit(11, "feet"),
  42053. name: "Werewolf",
  42054. image: {
  42055. source: "./media/characters/zane/werewolf.svg",
  42056. extra: 1383/1323,
  42057. bottom: 89/1472
  42058. }
  42059. },
  42060. foot: {
  42061. height: math.unit(1.46, "feet"),
  42062. name: "Foot",
  42063. image: {
  42064. source: "./media/characters/zane/foot.svg"
  42065. }
  42066. },
  42067. footFront: {
  42068. height: math.unit(0.784, "feet"),
  42069. name: "Foot (Front)",
  42070. image: {
  42071. source: "./media/characters/zane/foot-front.svg"
  42072. }
  42073. },
  42074. dick: {
  42075. height: math.unit(1.95, "feet"),
  42076. name: "Dick",
  42077. image: {
  42078. source: "./media/characters/zane/dick.svg"
  42079. }
  42080. },
  42081. dickWerewolf: {
  42082. height: math.unit(3.77, "feet"),
  42083. name: "Dick (Werewolf)",
  42084. image: {
  42085. source: "./media/characters/zane/dick.svg"
  42086. }
  42087. },
  42088. },
  42089. [
  42090. {
  42091. name: "Normal",
  42092. height: math.unit(7 + 5/12, "feet"),
  42093. default: true
  42094. },
  42095. ]
  42096. ))
  42097. characterMakers.push(() => makeCharacter(
  42098. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42099. {
  42100. front: {
  42101. height: math.unit(6 + 2/12, "feet"),
  42102. weight: math.unit(284, "lb"),
  42103. name: "Front",
  42104. image: {
  42105. source: "./media/characters/benni-desparque/front.svg",
  42106. extra: 1353/1126,
  42107. bottom: 69/1422
  42108. }
  42109. },
  42110. },
  42111. [
  42112. {
  42113. name: "Civilian",
  42114. height: math.unit(6 + 2/12, "feet")
  42115. },
  42116. {
  42117. name: "Normal",
  42118. height: math.unit(98, "feet"),
  42119. default: true
  42120. },
  42121. {
  42122. name: "Kaiju Fighter",
  42123. height: math.unit(268, "feet")
  42124. },
  42125. ]
  42126. ))
  42127. characterMakers.push(() => makeCharacter(
  42128. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42129. {
  42130. front: {
  42131. height: math.unit(5, "feet"),
  42132. weight: math.unit(105, "lb"),
  42133. name: "Front",
  42134. image: {
  42135. source: "./media/characters/maxine/front.svg",
  42136. extra: 1386/1250,
  42137. bottom: 71/1457
  42138. }
  42139. },
  42140. },
  42141. [
  42142. {
  42143. name: "Normal",
  42144. height: math.unit(5, "feet"),
  42145. default: true
  42146. },
  42147. ]
  42148. ))
  42149. characterMakers.push(() => makeCharacter(
  42150. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42151. {
  42152. front: {
  42153. height: math.unit(11 + 7/12, "feet"),
  42154. weight: math.unit(9576, "lb"),
  42155. name: "Front",
  42156. image: {
  42157. source: "./media/characters/scaly/front.svg",
  42158. extra: 888/867,
  42159. bottom: 36/924
  42160. }
  42161. },
  42162. },
  42163. [
  42164. {
  42165. name: "Normal",
  42166. height: math.unit(11 + 7/12, "feet"),
  42167. default: true
  42168. },
  42169. ]
  42170. ))
  42171. characterMakers.push(() => makeCharacter(
  42172. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42173. {
  42174. front: {
  42175. height: math.unit(6 + 3/12, "feet"),
  42176. name: "Front",
  42177. image: {
  42178. source: "./media/characters/saelria/front.svg",
  42179. extra: 1243/1138,
  42180. bottom: 46/1289
  42181. }
  42182. },
  42183. },
  42184. [
  42185. {
  42186. name: "Micro",
  42187. height: math.unit(6, "inches"),
  42188. },
  42189. {
  42190. name: "Normal",
  42191. height: math.unit(6 + 3/12, "feet"),
  42192. default: true
  42193. },
  42194. {
  42195. name: "Macro",
  42196. height: math.unit(25, "feet")
  42197. },
  42198. ]
  42199. ))
  42200. characterMakers.push(() => makeCharacter(
  42201. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42202. {
  42203. front: {
  42204. height: math.unit(80, "meters"),
  42205. weight: math.unit(7000, "tonnes"),
  42206. name: "Front",
  42207. image: {
  42208. source: "./media/characters/tef/front.svg",
  42209. extra: 2036/1991,
  42210. bottom: 54/2090
  42211. }
  42212. },
  42213. back: {
  42214. height: math.unit(80, "meters"),
  42215. weight: math.unit(7000, "tonnes"),
  42216. name: "Back",
  42217. image: {
  42218. source: "./media/characters/tef/back.svg",
  42219. extra: 2036/1991,
  42220. bottom: 54/2090
  42221. }
  42222. },
  42223. },
  42224. [
  42225. {
  42226. name: "Macro",
  42227. height: math.unit(80, "meters"),
  42228. default: true
  42229. },
  42230. ]
  42231. ))
  42232. characterMakers.push(() => makeCharacter(
  42233. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42234. {
  42235. front: {
  42236. height: math.unit(13, "feet"),
  42237. weight: math.unit(6, "tons"),
  42238. name: "Front",
  42239. image: {
  42240. source: "./media/characters/rover/front.svg",
  42241. extra: 1233/1156,
  42242. bottom: 50/1283
  42243. }
  42244. },
  42245. back: {
  42246. height: math.unit(13, "feet"),
  42247. weight: math.unit(6, "tons"),
  42248. name: "Back",
  42249. image: {
  42250. source: "./media/characters/rover/back.svg",
  42251. extra: 1327/1258,
  42252. bottom: 39/1366
  42253. }
  42254. },
  42255. },
  42256. [
  42257. {
  42258. name: "Normal",
  42259. height: math.unit(13, "feet"),
  42260. default: true
  42261. },
  42262. {
  42263. name: "Macro",
  42264. height: math.unit(1300, "feet")
  42265. },
  42266. {
  42267. name: "Megamacro",
  42268. height: math.unit(1300, "miles")
  42269. },
  42270. {
  42271. name: "Gigamacro",
  42272. height: math.unit(1300000, "miles")
  42273. },
  42274. ]
  42275. ))
  42276. characterMakers.push(() => makeCharacter(
  42277. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42278. {
  42279. front: {
  42280. height: math.unit(6, "feet"),
  42281. weight: math.unit(150, "lb"),
  42282. name: "Front",
  42283. image: {
  42284. source: "./media/characters/ariz/front.svg",
  42285. extra: 1401/1346,
  42286. bottom: 5/1406
  42287. }
  42288. },
  42289. },
  42290. [
  42291. {
  42292. name: "Normal",
  42293. height: math.unit(10, "feet"),
  42294. default: true
  42295. },
  42296. ]
  42297. ))
  42298. characterMakers.push(() => makeCharacter(
  42299. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42300. {
  42301. front: {
  42302. height: math.unit(6, "feet"),
  42303. weight: math.unit(140, "lb"),
  42304. name: "Front",
  42305. image: {
  42306. source: "./media/characters/sigrun/front.svg",
  42307. extra: 1418/1359,
  42308. bottom: 27/1445
  42309. }
  42310. },
  42311. },
  42312. [
  42313. {
  42314. name: "Macro",
  42315. height: math.unit(35, "feet"),
  42316. default: true
  42317. },
  42318. ]
  42319. ))
  42320. characterMakers.push(() => makeCharacter(
  42321. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42322. {
  42323. front: {
  42324. height: math.unit(6, "feet"),
  42325. weight: math.unit(150, "lb"),
  42326. name: "Front",
  42327. image: {
  42328. source: "./media/characters/numin/front.svg",
  42329. extra: 1433/1388,
  42330. bottom: 12/1445
  42331. }
  42332. },
  42333. },
  42334. [
  42335. {
  42336. name: "Macro",
  42337. height: math.unit(21.5, "km"),
  42338. default: true
  42339. },
  42340. ]
  42341. ))
  42342. characterMakers.push(() => makeCharacter(
  42343. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42344. {
  42345. front: {
  42346. height: math.unit(6, "feet"),
  42347. weight: math.unit(463, "lb"),
  42348. name: "Front",
  42349. image: {
  42350. source: "./media/characters/melwa/front.svg",
  42351. extra: 1307/1248,
  42352. bottom: 93/1400
  42353. }
  42354. },
  42355. },
  42356. [
  42357. {
  42358. name: "Macro",
  42359. height: math.unit(50, "meters"),
  42360. default: true
  42361. },
  42362. ]
  42363. ))
  42364. characterMakers.push(() => makeCharacter(
  42365. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42366. {
  42367. front: {
  42368. height: math.unit(325, "feet"),
  42369. name: "Front",
  42370. image: {
  42371. source: "./media/characters/zorkaiju/front.svg",
  42372. extra: 1955/1814,
  42373. bottom: 40/1995
  42374. }
  42375. },
  42376. frontExtended: {
  42377. height: math.unit(325, "feet"),
  42378. name: "Front (Extended)",
  42379. image: {
  42380. source: "./media/characters/zorkaiju/front-extended.svg",
  42381. extra: 1955/1814,
  42382. bottom: 40/1995
  42383. }
  42384. },
  42385. side: {
  42386. height: math.unit(325, "feet"),
  42387. name: "Side",
  42388. image: {
  42389. source: "./media/characters/zorkaiju/side.svg",
  42390. extra: 1495/1396,
  42391. bottom: 17/1512
  42392. }
  42393. },
  42394. sideExtended: {
  42395. height: math.unit(325, "feet"),
  42396. name: "Side (Extended)",
  42397. image: {
  42398. source: "./media/characters/zorkaiju/side-extended.svg",
  42399. extra: 1495/1396,
  42400. bottom: 17/1512
  42401. }
  42402. },
  42403. back: {
  42404. height: math.unit(325, "feet"),
  42405. name: "Back",
  42406. image: {
  42407. source: "./media/characters/zorkaiju/back.svg",
  42408. extra: 1959/1821,
  42409. bottom: 31/1990
  42410. }
  42411. },
  42412. backExtended: {
  42413. height: math.unit(325, "feet"),
  42414. name: "Back (Extended)",
  42415. image: {
  42416. source: "./media/characters/zorkaiju/back-extended.svg",
  42417. extra: 1959/1821,
  42418. bottom: 31/1990
  42419. }
  42420. },
  42421. hand: {
  42422. height: math.unit(58.4, "feet"),
  42423. name: "Hand",
  42424. image: {
  42425. source: "./media/characters/zorkaiju/hand.svg"
  42426. }
  42427. },
  42428. handExtended: {
  42429. height: math.unit(61.4, "feet"),
  42430. name: "Hand (Extended)",
  42431. image: {
  42432. source: "./media/characters/zorkaiju/hand-extended.svg"
  42433. }
  42434. },
  42435. foot: {
  42436. height: math.unit(95, "feet"),
  42437. name: "Foot",
  42438. image: {
  42439. source: "./media/characters/zorkaiju/foot.svg"
  42440. }
  42441. },
  42442. leftArm: {
  42443. height: math.unit(59, "feet"),
  42444. name: "Left Arm",
  42445. image: {
  42446. source: "./media/characters/zorkaiju/left-arm.svg"
  42447. }
  42448. },
  42449. rightArm: {
  42450. height: math.unit(59, "feet"),
  42451. name: "Right Arm",
  42452. image: {
  42453. source: "./media/characters/zorkaiju/right-arm.svg"
  42454. }
  42455. },
  42456. leftArmExtended: {
  42457. height: math.unit(59 * 1.033546, "feet"),
  42458. name: "Left Arm (Extended)",
  42459. image: {
  42460. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42461. }
  42462. },
  42463. rightArmExtended: {
  42464. height: math.unit(59 * 1.0496, "feet"),
  42465. name: "Right Arm (Extended)",
  42466. image: {
  42467. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42468. }
  42469. },
  42470. tail: {
  42471. height: math.unit(104, "feet"),
  42472. name: "Tail",
  42473. image: {
  42474. source: "./media/characters/zorkaiju/tail.svg"
  42475. }
  42476. },
  42477. tailExtended: {
  42478. height: math.unit(104, "feet"),
  42479. name: "Tail (Extended)",
  42480. image: {
  42481. source: "./media/characters/zorkaiju/tail-extended.svg"
  42482. }
  42483. },
  42484. tailBottom: {
  42485. height: math.unit(104, "feet"),
  42486. name: "Tail Bottom",
  42487. image: {
  42488. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42489. }
  42490. },
  42491. crystal: {
  42492. height: math.unit(27.54, "feet"),
  42493. name: "Crystal",
  42494. image: {
  42495. source: "./media/characters/zorkaiju/crystal.svg"
  42496. }
  42497. },
  42498. },
  42499. [
  42500. {
  42501. name: "Kaiju",
  42502. height: math.unit(325, "feet"),
  42503. default: true
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42509. {
  42510. front: {
  42511. height: math.unit(6 + 1/12, "feet"),
  42512. weight: math.unit(115, "lb"),
  42513. name: "Front",
  42514. image: {
  42515. source: "./media/characters/bailey-belfry/front.svg",
  42516. extra: 1240/1121,
  42517. bottom: 101/1341
  42518. }
  42519. },
  42520. },
  42521. [
  42522. {
  42523. name: "Normal",
  42524. height: math.unit(6 + 1/12, "feet"),
  42525. default: true
  42526. },
  42527. ]
  42528. ))
  42529. characterMakers.push(() => makeCharacter(
  42530. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42531. {
  42532. side: {
  42533. height: math.unit(4, "meters"),
  42534. weight: math.unit(250, "kg"),
  42535. name: "Side",
  42536. image: {
  42537. source: "./media/characters/blacky/side.svg",
  42538. extra: 1027/919,
  42539. bottom: 43/1070
  42540. }
  42541. },
  42542. maw: {
  42543. height: math.unit(1, "meters"),
  42544. name: "Maw",
  42545. image: {
  42546. source: "./media/characters/blacky/maw.svg"
  42547. }
  42548. },
  42549. paw: {
  42550. height: math.unit(1, "meters"),
  42551. name: "Paw",
  42552. image: {
  42553. source: "./media/characters/blacky/paw.svg"
  42554. }
  42555. },
  42556. },
  42557. [
  42558. {
  42559. name: "Normal",
  42560. height: math.unit(4, "meters"),
  42561. default: true
  42562. },
  42563. ]
  42564. ))
  42565. characterMakers.push(() => makeCharacter(
  42566. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42567. {
  42568. front: {
  42569. height: math.unit(170, "cm"),
  42570. weight: math.unit(66, "kg"),
  42571. name: "Front",
  42572. image: {
  42573. source: "./media/characters/thux-ei/front.svg",
  42574. extra: 1109/1011,
  42575. bottom: 8/1117
  42576. }
  42577. },
  42578. },
  42579. [
  42580. {
  42581. name: "Normal",
  42582. height: math.unit(170, "cm"),
  42583. default: true
  42584. },
  42585. ]
  42586. ))
  42587. characterMakers.push(() => makeCharacter(
  42588. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42589. {
  42590. front: {
  42591. height: math.unit(5, "feet"),
  42592. weight: math.unit(120, "lb"),
  42593. name: "Front",
  42594. image: {
  42595. source: "./media/characters/roxanne-voltaire/front.svg",
  42596. extra: 1901/1779,
  42597. bottom: 53/1954
  42598. }
  42599. },
  42600. },
  42601. [
  42602. {
  42603. name: "Normal",
  42604. height: math.unit(5, "feet"),
  42605. default: true
  42606. },
  42607. {
  42608. name: "Giant",
  42609. height: math.unit(50, "feet")
  42610. },
  42611. {
  42612. name: "Titan",
  42613. height: math.unit(500, "feet")
  42614. },
  42615. {
  42616. name: "Macro",
  42617. height: math.unit(5000, "feet")
  42618. },
  42619. {
  42620. name: "Megamacro",
  42621. height: math.unit(50000, "feet")
  42622. },
  42623. {
  42624. name: "Gigamacro",
  42625. height: math.unit(500000, "feet")
  42626. },
  42627. {
  42628. name: "Teramacro",
  42629. height: math.unit(5e6, "feet")
  42630. },
  42631. ]
  42632. ))
  42633. characterMakers.push(() => makeCharacter(
  42634. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42635. {
  42636. front: {
  42637. height: math.unit(6 + 2/12, "feet"),
  42638. name: "Front",
  42639. image: {
  42640. source: "./media/characters/squeaks/front.svg",
  42641. extra: 1823/1768,
  42642. bottom: 138/1961
  42643. }
  42644. },
  42645. },
  42646. [
  42647. {
  42648. name: "Micro",
  42649. height: math.unit(0.5, "inches")
  42650. },
  42651. {
  42652. name: "Normal",
  42653. height: math.unit(6 + 2/12, "feet"),
  42654. default: true
  42655. },
  42656. {
  42657. name: "Macro",
  42658. height: math.unit(600, "feet")
  42659. },
  42660. ]
  42661. ))
  42662. characterMakers.push(() => makeCharacter(
  42663. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42664. {
  42665. front: {
  42666. height: math.unit(1.72, "meters"),
  42667. name: "Front",
  42668. image: {
  42669. source: "./media/characters/archinger/front.svg",
  42670. extra: 1861/1675,
  42671. bottom: 125/1986
  42672. }
  42673. },
  42674. back: {
  42675. height: math.unit(1.72, "meters"),
  42676. name: "Back",
  42677. image: {
  42678. source: "./media/characters/archinger/back.svg",
  42679. extra: 1844/1701,
  42680. bottom: 104/1948
  42681. }
  42682. },
  42683. cock: {
  42684. height: math.unit(0.59, "feet"),
  42685. name: "Cock",
  42686. image: {
  42687. source: "./media/characters/archinger/cock.svg"
  42688. }
  42689. },
  42690. },
  42691. [
  42692. {
  42693. name: "Normal",
  42694. height: math.unit(1.72, "meters"),
  42695. default: true
  42696. },
  42697. {
  42698. name: "Macro",
  42699. height: math.unit(84, "meters")
  42700. },
  42701. {
  42702. name: "Macro+",
  42703. height: math.unit(112, "meters")
  42704. },
  42705. {
  42706. name: "Macro++",
  42707. height: math.unit(960, "meters")
  42708. },
  42709. {
  42710. name: "Macro+++",
  42711. height: math.unit(4, "km")
  42712. },
  42713. {
  42714. name: "Macro++++",
  42715. height: math.unit(48, "km")
  42716. },
  42717. {
  42718. name: "Macro+++++",
  42719. height: math.unit(4500, "km")
  42720. },
  42721. ]
  42722. ))
  42723. characterMakers.push(() => makeCharacter(
  42724. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42725. {
  42726. front: {
  42727. height: math.unit(5 + 5/12, "feet"),
  42728. name: "Front",
  42729. image: {
  42730. source: "./media/characters/alsnapz/front.svg",
  42731. extra: 1157/1065,
  42732. bottom: 42/1199
  42733. }
  42734. },
  42735. },
  42736. [
  42737. {
  42738. name: "Normal",
  42739. height: math.unit(5 + 5/12, "feet"),
  42740. default: true
  42741. },
  42742. ]
  42743. ))
  42744. characterMakers.push(() => makeCharacter(
  42745. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42746. {
  42747. side: {
  42748. height: math.unit(3.2, "earths"),
  42749. name: "Side",
  42750. image: {
  42751. source: "./media/characters/mag/side.svg",
  42752. extra: 1331/1008,
  42753. bottom: 52/1383
  42754. }
  42755. },
  42756. wing: {
  42757. height: math.unit(1.94, "earths"),
  42758. name: "Wing",
  42759. image: {
  42760. source: "./media/characters/mag/wing.svg"
  42761. }
  42762. },
  42763. dick: {
  42764. height: math.unit(1.8, "earths"),
  42765. name: "Dick",
  42766. image: {
  42767. source: "./media/characters/mag/dick.svg"
  42768. }
  42769. },
  42770. ass: {
  42771. height: math.unit(1.33, "earths"),
  42772. name: "Ass",
  42773. image: {
  42774. source: "./media/characters/mag/ass.svg"
  42775. }
  42776. },
  42777. head: {
  42778. height: math.unit(1.1, "earths"),
  42779. name: "Head",
  42780. image: {
  42781. source: "./media/characters/mag/head.svg"
  42782. }
  42783. },
  42784. maw: {
  42785. height: math.unit(1.62, "earths"),
  42786. name: "Maw",
  42787. image: {
  42788. source: "./media/characters/mag/maw.svg"
  42789. }
  42790. },
  42791. },
  42792. [
  42793. {
  42794. name: "Small",
  42795. height: math.unit(162, "feet")
  42796. },
  42797. {
  42798. name: "Normal",
  42799. height: math.unit(3.2, "earths"),
  42800. default: true
  42801. },
  42802. ]
  42803. ))
  42804. characterMakers.push(() => makeCharacter(
  42805. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42806. {
  42807. front: {
  42808. height: math.unit(512, "feet"),
  42809. weight: math.unit(63509, "tonnes"),
  42810. name: "Front",
  42811. image: {
  42812. source: "./media/characters/vorrel-harroc/front.svg",
  42813. extra: 1075/1063,
  42814. bottom: 62/1137
  42815. }
  42816. },
  42817. },
  42818. [
  42819. {
  42820. name: "Normal",
  42821. height: math.unit(10, "feet")
  42822. },
  42823. {
  42824. name: "Macro",
  42825. height: math.unit(512, "feet"),
  42826. default: true
  42827. },
  42828. {
  42829. name: "Megamacro",
  42830. height: math.unit(256, "miles")
  42831. },
  42832. {
  42833. name: "Gigamacro",
  42834. height: math.unit(4096, "miles")
  42835. },
  42836. ]
  42837. ))
  42838. characterMakers.push(() => makeCharacter(
  42839. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42840. {
  42841. side: {
  42842. height: math.unit(50, "feet"),
  42843. name: "Side",
  42844. image: {
  42845. source: "./media/characters/froimar/side.svg",
  42846. extra: 855/638,
  42847. bottom: 99/954
  42848. }
  42849. },
  42850. },
  42851. [
  42852. {
  42853. name: "Macro",
  42854. height: math.unit(50, "feet"),
  42855. default: true
  42856. },
  42857. ]
  42858. ))
  42859. characterMakers.push(() => makeCharacter(
  42860. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42861. {
  42862. front: {
  42863. height: math.unit(210, "miles"),
  42864. name: "Front",
  42865. image: {
  42866. source: "./media/characters/timothy/front.svg",
  42867. extra: 1007/943,
  42868. bottom: 62/1069
  42869. }
  42870. },
  42871. frontSkirt: {
  42872. height: math.unit(210, "miles"),
  42873. name: "Front (Skirt)",
  42874. image: {
  42875. source: "./media/characters/timothy/front-skirt.svg",
  42876. extra: 1007/943,
  42877. bottom: 62/1069
  42878. }
  42879. },
  42880. frontCoat: {
  42881. height: math.unit(210, "miles"),
  42882. name: "Front (Coat)",
  42883. image: {
  42884. source: "./media/characters/timothy/front-coat.svg",
  42885. extra: 1007/943,
  42886. bottom: 62/1069
  42887. }
  42888. },
  42889. },
  42890. [
  42891. {
  42892. name: "Macro",
  42893. height: math.unit(210, "miles"),
  42894. default: true
  42895. },
  42896. {
  42897. name: "Megamacro",
  42898. height: math.unit(210000, "miles")
  42899. },
  42900. ]
  42901. ))
  42902. characterMakers.push(() => makeCharacter(
  42903. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42904. {
  42905. front: {
  42906. height: math.unit(188, "feet"),
  42907. name: "Front",
  42908. image: {
  42909. source: "./media/characters/pyotr/front.svg",
  42910. extra: 1912/1826,
  42911. bottom: 18/1930
  42912. }
  42913. },
  42914. },
  42915. [
  42916. {
  42917. name: "Macro",
  42918. height: math.unit(188, "feet"),
  42919. default: true
  42920. },
  42921. {
  42922. name: "Megamacro",
  42923. height: math.unit(8, "miles")
  42924. },
  42925. ]
  42926. ))
  42927. characterMakers.push(() => makeCharacter(
  42928. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42929. {
  42930. side: {
  42931. height: math.unit(10, "feet"),
  42932. weight: math.unit(4500, "lb"),
  42933. name: "Side",
  42934. image: {
  42935. source: "./media/characters/ackart/side.svg",
  42936. extra: 1776/1668,
  42937. bottom: 116/1892
  42938. }
  42939. },
  42940. },
  42941. [
  42942. {
  42943. name: "Normal",
  42944. height: math.unit(10, "feet"),
  42945. default: true
  42946. },
  42947. ]
  42948. ))
  42949. characterMakers.push(() => makeCharacter(
  42950. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42951. {
  42952. side: {
  42953. height: math.unit(21, "feet"),
  42954. name: "Side",
  42955. image: {
  42956. source: "./media/characters/nolow/side.svg",
  42957. extra: 1484/1434,
  42958. bottom: 85/1569
  42959. }
  42960. },
  42961. sideErect: {
  42962. height: math.unit(21, "feet"),
  42963. name: "Side-erect",
  42964. image: {
  42965. source: "./media/characters/nolow/side-erect.svg",
  42966. extra: 1484/1434,
  42967. bottom: 85/1569
  42968. }
  42969. },
  42970. },
  42971. [
  42972. {
  42973. name: "Regular",
  42974. height: math.unit(12, "feet")
  42975. },
  42976. {
  42977. name: "Big Chee",
  42978. height: math.unit(21, "feet"),
  42979. default: true
  42980. },
  42981. ]
  42982. ))
  42983. characterMakers.push(() => makeCharacter(
  42984. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42985. {
  42986. front: {
  42987. height: math.unit(7, "feet"),
  42988. weight: math.unit(250, "lb"),
  42989. name: "Front",
  42990. image: {
  42991. source: "./media/characters/nines/front.svg",
  42992. extra: 1741/1607,
  42993. bottom: 41/1782
  42994. }
  42995. },
  42996. side: {
  42997. height: math.unit(7, "feet"),
  42998. weight: math.unit(250, "lb"),
  42999. name: "Side",
  43000. image: {
  43001. source: "./media/characters/nines/side.svg",
  43002. extra: 1854/1735,
  43003. bottom: 93/1947
  43004. }
  43005. },
  43006. back: {
  43007. height: math.unit(7, "feet"),
  43008. weight: math.unit(250, "lb"),
  43009. name: "Back",
  43010. image: {
  43011. source: "./media/characters/nines/back.svg",
  43012. extra: 1748/1615,
  43013. bottom: 20/1768
  43014. }
  43015. },
  43016. },
  43017. [
  43018. {
  43019. name: "Megamacro",
  43020. height: math.unit(99, "km"),
  43021. default: true
  43022. },
  43023. ]
  43024. ))
  43025. characterMakers.push(() => makeCharacter(
  43026. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43027. {
  43028. front: {
  43029. height: math.unit(5 + 10/12, "feet"),
  43030. weight: math.unit(210, "lb"),
  43031. name: "Front",
  43032. image: {
  43033. source: "./media/characters/zenith/front.svg",
  43034. extra: 1531/1452,
  43035. bottom: 198/1729
  43036. }
  43037. },
  43038. back: {
  43039. height: math.unit(5 + 10/12, "feet"),
  43040. weight: math.unit(210, "lb"),
  43041. name: "Back",
  43042. image: {
  43043. source: "./media/characters/zenith/back.svg",
  43044. extra: 1571/1487,
  43045. bottom: 75/1646
  43046. }
  43047. },
  43048. },
  43049. [
  43050. {
  43051. name: "Normal",
  43052. height: math.unit(5 + 10/12, "feet"),
  43053. default: true
  43054. }
  43055. ]
  43056. ))
  43057. characterMakers.push(() => makeCharacter(
  43058. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43059. {
  43060. front: {
  43061. height: math.unit(4, "feet"),
  43062. weight: math.unit(60, "lb"),
  43063. name: "Front",
  43064. image: {
  43065. source: "./media/characters/jasper/front.svg",
  43066. extra: 1450/1379,
  43067. bottom: 19/1469
  43068. }
  43069. },
  43070. },
  43071. [
  43072. {
  43073. name: "Normal",
  43074. height: math.unit(4, "feet"),
  43075. default: true
  43076. },
  43077. ]
  43078. ))
  43079. characterMakers.push(() => makeCharacter(
  43080. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43081. {
  43082. front: {
  43083. height: math.unit(6 + 5/12, "feet"),
  43084. weight: math.unit(290, "lb"),
  43085. name: "Front",
  43086. image: {
  43087. source: "./media/characters/tiberius-thyben/front.svg",
  43088. extra: 757/739,
  43089. bottom: 39/796
  43090. }
  43091. },
  43092. },
  43093. [
  43094. {
  43095. name: "Micro",
  43096. height: math.unit(1.5, "inches")
  43097. },
  43098. {
  43099. name: "Normal",
  43100. height: math.unit(6 + 5/12, "feet"),
  43101. default: true
  43102. },
  43103. {
  43104. name: "Macro",
  43105. height: math.unit(300, "feet")
  43106. },
  43107. ]
  43108. ))
  43109. characterMakers.push(() => makeCharacter(
  43110. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43111. {
  43112. front: {
  43113. height: math.unit(5 + 6/12, "feet"),
  43114. weight: math.unit(60, "kg"),
  43115. name: "Front",
  43116. image: {
  43117. source: "./media/characters/sabre/front.svg",
  43118. extra: 738/671,
  43119. bottom: 27/765
  43120. }
  43121. },
  43122. },
  43123. [
  43124. {
  43125. name: "Teeny",
  43126. height: math.unit(2, "inches")
  43127. },
  43128. {
  43129. name: "Smol",
  43130. height: math.unit(8, "inches")
  43131. },
  43132. {
  43133. name: "Normal",
  43134. height: math.unit(5 + 6/12, "feet"),
  43135. default: true
  43136. },
  43137. {
  43138. name: "Mini-Macro",
  43139. height: math.unit(15, "feet")
  43140. },
  43141. {
  43142. name: "Macro",
  43143. height: math.unit(50, "feet")
  43144. },
  43145. ]
  43146. ))
  43147. characterMakers.push(() => makeCharacter(
  43148. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43149. {
  43150. front: {
  43151. height: math.unit(6 + 4/12, "feet"),
  43152. weight: math.unit(170, "lb"),
  43153. name: "Front",
  43154. image: {
  43155. source: "./media/characters/charlie/front.svg",
  43156. extra: 1348/1228,
  43157. bottom: 15/1363
  43158. }
  43159. },
  43160. },
  43161. [
  43162. {
  43163. name: "Macro",
  43164. height: math.unit(1700, "meters"),
  43165. default: true
  43166. },
  43167. {
  43168. name: "MegaMacro",
  43169. height: math.unit(20400, "meters")
  43170. },
  43171. ]
  43172. ))
  43173. characterMakers.push(() => makeCharacter(
  43174. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43175. {
  43176. front: {
  43177. height: math.unit(6 + 3/12, "feet"),
  43178. weight: math.unit(185, "lb"),
  43179. name: "Front",
  43180. image: {
  43181. source: "./media/characters/susan-grant/front.svg",
  43182. extra: 1351/1327,
  43183. bottom: 26/1377
  43184. }
  43185. },
  43186. },
  43187. [
  43188. {
  43189. name: "Normal",
  43190. height: math.unit(6 + 3/12, "feet"),
  43191. default: true
  43192. },
  43193. {
  43194. name: "Macro",
  43195. height: math.unit(225, "feet")
  43196. },
  43197. {
  43198. name: "Macro+",
  43199. height: math.unit(900, "feet")
  43200. },
  43201. {
  43202. name: "MegaMacro",
  43203. height: math.unit(14400, "feet")
  43204. },
  43205. ]
  43206. ))
  43207. characterMakers.push(() => makeCharacter(
  43208. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43209. {
  43210. front: {
  43211. height: math.unit(5 + 4/12, "feet"),
  43212. weight: math.unit(110, "lb"),
  43213. name: "Front",
  43214. image: {
  43215. source: "./media/characters/axel-isanov/front.svg",
  43216. extra: 1096/1065,
  43217. bottom: 13/1109
  43218. }
  43219. },
  43220. },
  43221. [
  43222. {
  43223. name: "Normal",
  43224. height: math.unit(5 + 4/12, "feet"),
  43225. default: true
  43226. },
  43227. ]
  43228. ))
  43229. characterMakers.push(() => makeCharacter(
  43230. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43231. {
  43232. front: {
  43233. height: math.unit(9, "feet"),
  43234. weight: math.unit(467, "lb"),
  43235. name: "Front",
  43236. image: {
  43237. source: "./media/characters/necahual/front.svg",
  43238. extra: 920/873,
  43239. bottom: 26/946
  43240. }
  43241. },
  43242. back: {
  43243. height: math.unit(9, "feet"),
  43244. weight: math.unit(467, "lb"),
  43245. name: "Back",
  43246. image: {
  43247. source: "./media/characters/necahual/back.svg",
  43248. extra: 930/884,
  43249. bottom: 16/946
  43250. }
  43251. },
  43252. frontUnderwear: {
  43253. height: math.unit(9, "feet"),
  43254. weight: math.unit(467, "lb"),
  43255. name: "Front (Underwear)",
  43256. image: {
  43257. source: "./media/characters/necahual/front-underwear.svg",
  43258. extra: 920/873,
  43259. bottom: 26/946
  43260. }
  43261. },
  43262. frontDressed: {
  43263. height: math.unit(9, "feet"),
  43264. weight: math.unit(467, "lb"),
  43265. name: "Front (Dressed)",
  43266. image: {
  43267. source: "./media/characters/necahual/front-dressed.svg",
  43268. extra: 920/873,
  43269. bottom: 26/946
  43270. }
  43271. },
  43272. },
  43273. [
  43274. {
  43275. name: "Comprsesed",
  43276. height: math.unit(9, "feet")
  43277. },
  43278. {
  43279. name: "Natural",
  43280. height: math.unit(15, "feet"),
  43281. default: true
  43282. },
  43283. {
  43284. name: "Boosted",
  43285. height: math.unit(50, "feet")
  43286. },
  43287. {
  43288. name: "Boosted+",
  43289. height: math.unit(150, "feet")
  43290. },
  43291. {
  43292. name: "Max",
  43293. height: math.unit(500, "feet")
  43294. },
  43295. ]
  43296. ))
  43297. characterMakers.push(() => makeCharacter(
  43298. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43299. {
  43300. front: {
  43301. height: math.unit(22 + 1/12, "feet"),
  43302. weight: math.unit(3200, "lb"),
  43303. name: "Front",
  43304. image: {
  43305. source: "./media/characters/theo-acacia/front.svg",
  43306. extra: 1796/1741,
  43307. bottom: 83/1879
  43308. }
  43309. },
  43310. frontUnderwear: {
  43311. height: math.unit(22 + 1/12, "feet"),
  43312. weight: math.unit(3200, "lb"),
  43313. name: "Front (Underwear)",
  43314. image: {
  43315. source: "./media/characters/theo-acacia/front-underwear.svg",
  43316. extra: 1796/1741,
  43317. bottom: 83/1879
  43318. }
  43319. },
  43320. frontNude: {
  43321. height: math.unit(22 + 1/12, "feet"),
  43322. weight: math.unit(3200, "lb"),
  43323. name: "Front (Nude)",
  43324. image: {
  43325. source: "./media/characters/theo-acacia/front-nude.svg",
  43326. extra: 1796/1741,
  43327. bottom: 83/1879
  43328. }
  43329. },
  43330. },
  43331. [
  43332. {
  43333. name: "Normal",
  43334. height: math.unit(22 + 1/12, "feet"),
  43335. default: true
  43336. },
  43337. ]
  43338. ))
  43339. characterMakers.push(() => makeCharacter(
  43340. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43341. {
  43342. front: {
  43343. height: math.unit(20, "feet"),
  43344. name: "Front",
  43345. image: {
  43346. source: "./media/characters/astra/front.svg",
  43347. extra: 1850/1714,
  43348. bottom: 106/1956
  43349. }
  43350. },
  43351. frontUndressed: {
  43352. height: math.unit(20, "feet"),
  43353. name: "Front (Undressed)",
  43354. image: {
  43355. source: "./media/characters/astra/front-undressed.svg",
  43356. extra: 1926/1749,
  43357. bottom: 0/1926
  43358. }
  43359. },
  43360. hand: {
  43361. height: math.unit(1.53, "feet"),
  43362. name: "Hand",
  43363. image: {
  43364. source: "./media/characters/astra/hand.svg"
  43365. }
  43366. },
  43367. paw: {
  43368. height: math.unit(1.53, "feet"),
  43369. name: "Paw",
  43370. image: {
  43371. source: "./media/characters/astra/paw.svg"
  43372. }
  43373. },
  43374. },
  43375. [
  43376. {
  43377. name: "Smallest",
  43378. height: math.unit(20, "feet")
  43379. },
  43380. {
  43381. name: "Normal",
  43382. height: math.unit(1e9, "miles"),
  43383. default: true
  43384. },
  43385. {
  43386. name: "Larger",
  43387. height: math.unit(5, "multiverses")
  43388. },
  43389. {
  43390. name: "Largest",
  43391. height: math.unit(1e9, "multiverses")
  43392. },
  43393. ]
  43394. ))
  43395. characterMakers.push(() => makeCharacter(
  43396. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43397. {
  43398. front: {
  43399. height: math.unit(8, "feet"),
  43400. name: "Front",
  43401. image: {
  43402. source: "./media/characters/breanna/front.svg",
  43403. extra: 1912/1632,
  43404. bottom: 33/1945
  43405. }
  43406. },
  43407. },
  43408. [
  43409. {
  43410. name: "Smallest",
  43411. height: math.unit(8, "feet")
  43412. },
  43413. {
  43414. name: "Normal",
  43415. height: math.unit(1, "mile"),
  43416. default: true
  43417. },
  43418. {
  43419. name: "Maximum",
  43420. height: math.unit(1500000000000, "lightyears")
  43421. },
  43422. ]
  43423. ))
  43424. characterMakers.push(() => makeCharacter(
  43425. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43426. {
  43427. front: {
  43428. height: math.unit(5 + 11/12, "feet"),
  43429. weight: math.unit(155, "lb"),
  43430. name: "Front",
  43431. image: {
  43432. source: "./media/characters/cai/front.svg",
  43433. extra: 1823/1702,
  43434. bottom: 32/1855
  43435. }
  43436. },
  43437. back: {
  43438. height: math.unit(5 + 11/12, "feet"),
  43439. weight: math.unit(155, "lb"),
  43440. name: "Back",
  43441. image: {
  43442. source: "./media/characters/cai/back.svg",
  43443. extra: 1809/1708,
  43444. bottom: 31/1840
  43445. }
  43446. },
  43447. },
  43448. [
  43449. {
  43450. name: "Normal",
  43451. height: math.unit(5 + 11/12, "feet"),
  43452. default: true
  43453. },
  43454. {
  43455. name: "Big",
  43456. height: math.unit(15, "feet")
  43457. },
  43458. {
  43459. name: "Macro",
  43460. height: math.unit(200, "feet")
  43461. },
  43462. ]
  43463. ))
  43464. characterMakers.push(() => makeCharacter(
  43465. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43466. {
  43467. front: {
  43468. height: math.unit(5 + 6/12, "feet"),
  43469. weight: math.unit(160, "lb"),
  43470. name: "Front",
  43471. image: {
  43472. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43473. extra: 1227/1174,
  43474. bottom: 37/1264
  43475. }
  43476. },
  43477. },
  43478. [
  43479. {
  43480. name: "Macro",
  43481. height: math.unit(444, "meters"),
  43482. default: true
  43483. },
  43484. ]
  43485. ))
  43486. characterMakers.push(() => makeCharacter(
  43487. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43488. {
  43489. front: {
  43490. height: math.unit(18 + 7/12, "feet"),
  43491. name: "Front",
  43492. image: {
  43493. source: "./media/characters/rex/front.svg",
  43494. extra: 1941/1807,
  43495. bottom: 66/2007
  43496. }
  43497. },
  43498. back: {
  43499. height: math.unit(18 + 7/12, "feet"),
  43500. name: "Back",
  43501. image: {
  43502. source: "./media/characters/rex/back.svg",
  43503. extra: 1937/1822,
  43504. bottom: 42/1979
  43505. }
  43506. },
  43507. boot: {
  43508. height: math.unit(3.45, "feet"),
  43509. name: "Boot",
  43510. image: {
  43511. source: "./media/characters/rex/boot.svg"
  43512. }
  43513. },
  43514. paw: {
  43515. height: math.unit(4.17, "feet"),
  43516. name: "Paw",
  43517. image: {
  43518. source: "./media/characters/rex/paw.svg"
  43519. }
  43520. },
  43521. head: {
  43522. height: math.unit(6.728, "feet"),
  43523. name: "Head",
  43524. image: {
  43525. source: "./media/characters/rex/head.svg"
  43526. }
  43527. },
  43528. },
  43529. [
  43530. {
  43531. name: "Nano",
  43532. height: math.unit(18 + 7/12, "feet")
  43533. },
  43534. {
  43535. name: "Micro",
  43536. height: math.unit(1.5, "megameters")
  43537. },
  43538. {
  43539. name: "Normal",
  43540. height: math.unit(440, "megameters"),
  43541. default: true
  43542. },
  43543. {
  43544. name: "Macro",
  43545. height: math.unit(2.5, "gigameters")
  43546. },
  43547. {
  43548. name: "Gigamacro",
  43549. height: math.unit(2, "galaxies")
  43550. },
  43551. ]
  43552. ))
  43553. characterMakers.push(() => makeCharacter(
  43554. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43555. {
  43556. side: {
  43557. height: math.unit(32, "feet"),
  43558. weight: math.unit(250000, "lb"),
  43559. name: "Side",
  43560. image: {
  43561. source: "./media/characters/silverwing/side.svg",
  43562. extra: 1100/1019,
  43563. bottom: 204/1304
  43564. }
  43565. },
  43566. },
  43567. [
  43568. {
  43569. name: "Normal",
  43570. height: math.unit(32, "feet"),
  43571. default: true
  43572. },
  43573. ]
  43574. ))
  43575. characterMakers.push(() => makeCharacter(
  43576. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43577. {
  43578. front: {
  43579. height: math.unit(6 + 6/12, "feet"),
  43580. weight: math.unit(350, "lb"),
  43581. name: "Front",
  43582. image: {
  43583. source: "./media/characters/tristan-hawthorne/front.svg",
  43584. extra: 1159/1124,
  43585. bottom: 37/1196
  43586. },
  43587. form: "labrador",
  43588. default: true
  43589. },
  43590. skunkFront: {
  43591. height: math.unit(4 + 6/12, "feet"),
  43592. weight: math.unit(120, "lb"),
  43593. name: "Front",
  43594. image: {
  43595. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43596. extra: 1609/1551,
  43597. bottom: 169/1778
  43598. },
  43599. form: "skunk",
  43600. default: true
  43601. },
  43602. },
  43603. [
  43604. {
  43605. name: "Normal",
  43606. height: math.unit(6 + 6/12, "feet"),
  43607. form: "labrador",
  43608. default: true
  43609. },
  43610. {
  43611. name: "Normal",
  43612. height: math.unit(4 + 6/12, "feet"),
  43613. form: "skunk",
  43614. default: true
  43615. },
  43616. ],
  43617. {
  43618. "labrador": {
  43619. name: "Labrador",
  43620. default: true
  43621. },
  43622. "skunk": {
  43623. name: "Skunk"
  43624. }
  43625. }
  43626. ))
  43627. characterMakers.push(() => makeCharacter(
  43628. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43629. {
  43630. front: {
  43631. height: math.unit(5 + 11/12, "feet"),
  43632. weight: math.unit(190, "lb"),
  43633. name: "Front",
  43634. image: {
  43635. source: "./media/characters/mizu/front.svg",
  43636. extra: 1988/1788,
  43637. bottom: 14/2002
  43638. }
  43639. },
  43640. },
  43641. [
  43642. {
  43643. name: "Normal",
  43644. height: math.unit(5 + 11/12, "feet"),
  43645. default: true
  43646. },
  43647. ]
  43648. ))
  43649. characterMakers.push(() => makeCharacter(
  43650. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43651. {
  43652. front: {
  43653. height: math.unit(1.7, "feet"),
  43654. weight: math.unit(50, "lb"),
  43655. name: "Front",
  43656. image: {
  43657. source: "./media/characters/dechroma/front.svg",
  43658. extra: 1095/859,
  43659. bottom: 64/1159
  43660. }
  43661. },
  43662. },
  43663. [
  43664. {
  43665. name: "Normal",
  43666. height: math.unit(1.7, "feet"),
  43667. default: true
  43668. },
  43669. ]
  43670. ))
  43671. characterMakers.push(() => makeCharacter(
  43672. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43673. {
  43674. side: {
  43675. height: math.unit(30, "feet"),
  43676. name: "Side",
  43677. image: {
  43678. source: "./media/characters/veluren-thanazel/side.svg",
  43679. extra: 1611/633,
  43680. bottom: 118/1729
  43681. }
  43682. },
  43683. front: {
  43684. height: math.unit(30, "feet"),
  43685. name: "Front",
  43686. image: {
  43687. source: "./media/characters/veluren-thanazel/front.svg",
  43688. extra: 1486/636,
  43689. bottom: 238/1724
  43690. }
  43691. },
  43692. head: {
  43693. height: math.unit(21.4, "feet"),
  43694. name: "Head",
  43695. image: {
  43696. source: "./media/characters/veluren-thanazel/head.svg"
  43697. }
  43698. },
  43699. genitals: {
  43700. height: math.unit(19.4, "feet"),
  43701. name: "Genitals",
  43702. image: {
  43703. source: "./media/characters/veluren-thanazel/genitals.svg"
  43704. }
  43705. },
  43706. },
  43707. [
  43708. {
  43709. name: "Social",
  43710. height: math.unit(6, "feet")
  43711. },
  43712. {
  43713. name: "Play",
  43714. height: math.unit(12, "feet")
  43715. },
  43716. {
  43717. name: "True",
  43718. height: math.unit(30, "feet"),
  43719. default: true
  43720. },
  43721. ]
  43722. ))
  43723. characterMakers.push(() => makeCharacter(
  43724. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43725. {
  43726. front: {
  43727. height: math.unit(7 + 6/12, "feet"),
  43728. weight: math.unit(500, "kg"),
  43729. name: "Front",
  43730. image: {
  43731. source: "./media/characters/arcturas/front.svg",
  43732. extra: 1700/1500,
  43733. bottom: 145/1845
  43734. }
  43735. },
  43736. },
  43737. [
  43738. {
  43739. name: "Normal",
  43740. height: math.unit(7 + 6/12, "feet"),
  43741. default: true
  43742. },
  43743. ]
  43744. ))
  43745. characterMakers.push(() => makeCharacter(
  43746. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43747. {
  43748. side: {
  43749. height: math.unit(6, "feet"),
  43750. weight: math.unit(2, "tons"),
  43751. name: "Side",
  43752. image: {
  43753. source: "./media/characters/vitaen/side.svg",
  43754. extra: 1157/617,
  43755. bottom: 122/1279
  43756. }
  43757. },
  43758. },
  43759. [
  43760. {
  43761. name: "Normal",
  43762. height: math.unit(6, "feet"),
  43763. default: true
  43764. },
  43765. ]
  43766. ))
  43767. characterMakers.push(() => makeCharacter(
  43768. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43769. {
  43770. front: {
  43771. height: math.unit(19, "feet"),
  43772. name: "Front",
  43773. image: {
  43774. source: "./media/characters/fia-dreamweaver/front.svg",
  43775. extra: 1630/1504,
  43776. bottom: 25/1655
  43777. }
  43778. },
  43779. },
  43780. [
  43781. {
  43782. name: "Normal",
  43783. height: math.unit(19, "feet"),
  43784. default: true
  43785. },
  43786. ]
  43787. ))
  43788. characterMakers.push(() => makeCharacter(
  43789. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43790. {
  43791. front: {
  43792. height: math.unit(5 + 4/12, "feet"),
  43793. name: "Front",
  43794. image: {
  43795. source: "./media/characters/artan/front.svg",
  43796. extra: 1618/1535,
  43797. bottom: 46/1664
  43798. }
  43799. },
  43800. back: {
  43801. height: math.unit(5 + 4/12, "feet"),
  43802. name: "Back",
  43803. image: {
  43804. source: "./media/characters/artan/back.svg",
  43805. extra: 1618/1543,
  43806. bottom: 31/1649
  43807. }
  43808. },
  43809. },
  43810. [
  43811. {
  43812. name: "Normal",
  43813. height: math.unit(5 + 4/12, "feet"),
  43814. default: true
  43815. },
  43816. ]
  43817. ))
  43818. characterMakers.push(() => makeCharacter(
  43819. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43820. {
  43821. side: {
  43822. height: math.unit(182, "cm"),
  43823. weight: math.unit(1000, "lb"),
  43824. name: "Side",
  43825. image: {
  43826. source: "./media/characters/silver-dragon/side.svg",
  43827. extra: 710/287,
  43828. bottom: 88/798
  43829. }
  43830. },
  43831. },
  43832. [
  43833. {
  43834. name: "Normal",
  43835. height: math.unit(182, "cm"),
  43836. default: true
  43837. },
  43838. ]
  43839. ))
  43840. characterMakers.push(() => makeCharacter(
  43841. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43842. {
  43843. side: {
  43844. height: math.unit(6 + 6/12, "feet"),
  43845. weight: math.unit(1.5, "tons"),
  43846. name: "Side",
  43847. image: {
  43848. source: "./media/characters/zephyr/side.svg",
  43849. extra: 1433/586,
  43850. bottom: 109/1542
  43851. }
  43852. },
  43853. },
  43854. [
  43855. {
  43856. name: "Normal",
  43857. height: math.unit(6 + 6/12, "feet"),
  43858. default: true
  43859. },
  43860. ]
  43861. ))
  43862. characterMakers.push(() => makeCharacter(
  43863. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43864. {
  43865. side: {
  43866. height: math.unit(1, "feet"),
  43867. name: "Side",
  43868. image: {
  43869. source: "./media/characters/vixye/side.svg",
  43870. extra: 632/541,
  43871. bottom: 0/632
  43872. }
  43873. },
  43874. },
  43875. [
  43876. {
  43877. name: "Normal",
  43878. height: math.unit(1, "feet"),
  43879. default: true
  43880. },
  43881. {
  43882. name: "True",
  43883. height: math.unit(1e15, "multiverses")
  43884. },
  43885. ]
  43886. ))
  43887. characterMakers.push(() => makeCharacter(
  43888. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43889. {
  43890. front: {
  43891. height: math.unit(8 + 2/12, "feet"),
  43892. weight: math.unit(650, "lb"),
  43893. name: "Front",
  43894. image: {
  43895. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43896. extra: 1174/1137,
  43897. bottom: 82/1256
  43898. }
  43899. },
  43900. back: {
  43901. height: math.unit(8 + 2/12, "feet"),
  43902. weight: math.unit(650, "lb"),
  43903. name: "Back",
  43904. image: {
  43905. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43906. extra: 1204/1157,
  43907. bottom: 46/1250
  43908. }
  43909. },
  43910. },
  43911. [
  43912. {
  43913. name: "Wildform",
  43914. height: math.unit(8 + 2/12, "feet"),
  43915. default: true
  43916. },
  43917. ]
  43918. ))
  43919. characterMakers.push(() => makeCharacter(
  43920. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43921. {
  43922. front: {
  43923. height: math.unit(18, "feet"),
  43924. name: "Front",
  43925. image: {
  43926. source: "./media/characters/cyphin/front.svg",
  43927. extra: 970/886,
  43928. bottom: 42/1012
  43929. }
  43930. },
  43931. back: {
  43932. height: math.unit(18, "feet"),
  43933. name: "Back",
  43934. image: {
  43935. source: "./media/characters/cyphin/back.svg",
  43936. extra: 1009/894,
  43937. bottom: 24/1033
  43938. }
  43939. },
  43940. head: {
  43941. height: math.unit(5.05, "feet"),
  43942. name: "Head",
  43943. image: {
  43944. source: "./media/characters/cyphin/head.svg"
  43945. }
  43946. },
  43947. tailbud: {
  43948. height: math.unit(5, "feet"),
  43949. name: "Tailbud",
  43950. image: {
  43951. source: "./media/characters/cyphin/tailbud.svg"
  43952. }
  43953. },
  43954. },
  43955. [
  43956. ]
  43957. ))
  43958. characterMakers.push(() => makeCharacter(
  43959. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43960. {
  43961. side: {
  43962. height: math.unit(10, "feet"),
  43963. weight: math.unit(6, "tons"),
  43964. name: "Side",
  43965. image: {
  43966. source: "./media/characters/raijin/side.svg",
  43967. extra: 1529/613,
  43968. bottom: 337/1866
  43969. }
  43970. },
  43971. },
  43972. [
  43973. {
  43974. name: "Normal",
  43975. height: math.unit(10, "feet"),
  43976. default: true
  43977. },
  43978. ]
  43979. ))
  43980. characterMakers.push(() => makeCharacter(
  43981. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43982. {
  43983. side: {
  43984. height: math.unit(9, "feet"),
  43985. name: "Side",
  43986. image: {
  43987. source: "./media/characters/nilghais/side.svg",
  43988. extra: 1047/744,
  43989. bottom: 91/1138
  43990. }
  43991. },
  43992. head: {
  43993. height: math.unit(3.14, "feet"),
  43994. name: "Head",
  43995. image: {
  43996. source: "./media/characters/nilghais/head.svg"
  43997. }
  43998. },
  43999. mouth: {
  44000. height: math.unit(4.6, "feet"),
  44001. name: "Mouth",
  44002. image: {
  44003. source: "./media/characters/nilghais/mouth.svg"
  44004. }
  44005. },
  44006. wings: {
  44007. height: math.unit(24, "feet"),
  44008. name: "Wings",
  44009. image: {
  44010. source: "./media/characters/nilghais/wings.svg"
  44011. }
  44012. },
  44013. ass: {
  44014. height: math.unit(6.12, "feet"),
  44015. name: "Ass",
  44016. image: {
  44017. source: "./media/characters/nilghais/ass.svg"
  44018. }
  44019. },
  44020. },
  44021. [
  44022. {
  44023. name: "Normal",
  44024. height: math.unit(9, "feet"),
  44025. default: true
  44026. },
  44027. ]
  44028. ))
  44029. characterMakers.push(() => makeCharacter(
  44030. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44031. {
  44032. regular: {
  44033. height: math.unit(16 + 2/12, "feet"),
  44034. weight: math.unit(2300, "lb"),
  44035. name: "Regular",
  44036. image: {
  44037. source: "./media/characters/zolgar/regular.svg",
  44038. extra: 1246/1004,
  44039. bottom: 124/1370
  44040. }
  44041. },
  44042. boxers: {
  44043. height: math.unit(16 + 2/12, "feet"),
  44044. weight: math.unit(2300, "lb"),
  44045. name: "Boxers",
  44046. image: {
  44047. source: "./media/characters/zolgar/boxers.svg",
  44048. extra: 1246/1004,
  44049. bottom: 124/1370
  44050. }
  44051. },
  44052. armored: {
  44053. height: math.unit(16 + 2/12, "feet"),
  44054. weight: math.unit(2300, "lb"),
  44055. name: "Armored",
  44056. image: {
  44057. source: "./media/characters/zolgar/armored.svg",
  44058. extra: 1246/1004,
  44059. bottom: 124/1370
  44060. }
  44061. },
  44062. goth: {
  44063. height: math.unit(16 + 2/12, "feet"),
  44064. weight: math.unit(2300, "lb"),
  44065. name: "Goth",
  44066. image: {
  44067. source: "./media/characters/zolgar/goth.svg",
  44068. extra: 1246/1004,
  44069. bottom: 124/1370
  44070. }
  44071. },
  44072. },
  44073. [
  44074. {
  44075. name: "Shrunken Down",
  44076. height: math.unit(9 + 2/12, "feet")
  44077. },
  44078. {
  44079. name: "Normal",
  44080. height: math.unit(16 + 2/12, "feet"),
  44081. default: true
  44082. },
  44083. ]
  44084. ))
  44085. characterMakers.push(() => makeCharacter(
  44086. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44087. {
  44088. front: {
  44089. height: math.unit(6, "feet"),
  44090. weight: math.unit(168, "lb"),
  44091. name: "Front",
  44092. image: {
  44093. source: "./media/characters/luca/front.svg",
  44094. extra: 841/667,
  44095. bottom: 102/943
  44096. }
  44097. },
  44098. },
  44099. [
  44100. {
  44101. name: "Normal",
  44102. height: math.unit(6, "feet"),
  44103. default: true
  44104. },
  44105. ]
  44106. ))
  44107. characterMakers.push(() => makeCharacter(
  44108. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44109. {
  44110. side: {
  44111. height: math.unit(7 + 3/12, "feet"),
  44112. weight: math.unit(312, "lb"),
  44113. name: "Side",
  44114. image: {
  44115. source: "./media/characters/zezo/side.svg",
  44116. extra: 1192/1067,
  44117. bottom: 63/1255
  44118. }
  44119. },
  44120. },
  44121. [
  44122. {
  44123. name: "Normal",
  44124. height: math.unit(7 + 3/12, "feet"),
  44125. default: true
  44126. },
  44127. ]
  44128. ))
  44129. characterMakers.push(() => makeCharacter(
  44130. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44131. {
  44132. front: {
  44133. height: math.unit(5 + 5/12, "feet"),
  44134. weight: math.unit(170, "lb"),
  44135. name: "Front",
  44136. image: {
  44137. source: "./media/characters/mayso/front.svg",
  44138. extra: 1215/1108,
  44139. bottom: 16/1231
  44140. }
  44141. },
  44142. },
  44143. [
  44144. {
  44145. name: "Normal",
  44146. height: math.unit(5 + 5/12, "feet"),
  44147. default: true
  44148. },
  44149. ]
  44150. ))
  44151. characterMakers.push(() => makeCharacter(
  44152. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44153. {
  44154. front: {
  44155. height: math.unit(4 + 3/12, "feet"),
  44156. weight: math.unit(80, "lb"),
  44157. name: "Front",
  44158. image: {
  44159. source: "./media/characters/hess/front.svg",
  44160. extra: 1200/1123,
  44161. bottom: 16/1216
  44162. }
  44163. },
  44164. },
  44165. [
  44166. {
  44167. name: "Normal",
  44168. height: math.unit(4 + 3/12, "feet"),
  44169. default: true
  44170. },
  44171. ]
  44172. ))
  44173. characterMakers.push(() => makeCharacter(
  44174. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44175. {
  44176. front: {
  44177. height: math.unit(1.9, "meters"),
  44178. name: "Front",
  44179. image: {
  44180. source: "./media/characters/ashgar/front.svg",
  44181. extra: 1177/1146,
  44182. bottom: 99/1276
  44183. }
  44184. },
  44185. back: {
  44186. height: math.unit(1.9, "meters"),
  44187. name: "Back",
  44188. image: {
  44189. source: "./media/characters/ashgar/back.svg",
  44190. extra: 1201/1183,
  44191. bottom: 53/1254
  44192. }
  44193. },
  44194. feral: {
  44195. height: math.unit(1.4, "meters"),
  44196. name: "Feral",
  44197. image: {
  44198. source: "./media/characters/ashgar/feral.svg",
  44199. extra: 370/345,
  44200. bottom: 45/415
  44201. }
  44202. },
  44203. },
  44204. [
  44205. {
  44206. name: "Normal",
  44207. height: math.unit(1.9, "meters"),
  44208. default: true
  44209. },
  44210. ]
  44211. ))
  44212. characterMakers.push(() => makeCharacter(
  44213. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44214. {
  44215. regular: {
  44216. height: math.unit(6, "feet"),
  44217. weight: math.unit(220, "lb"),
  44218. name: "Regular",
  44219. image: {
  44220. source: "./media/characters/phillip/regular.svg",
  44221. extra: 1373/1277,
  44222. bottom: 75/1448
  44223. }
  44224. },
  44225. dressed: {
  44226. height: math.unit(6, "feet"),
  44227. weight: math.unit(220, "lb"),
  44228. name: "Dressed",
  44229. image: {
  44230. source: "./media/characters/phillip/dressed.svg",
  44231. extra: 1373/1277,
  44232. bottom: 75/1448
  44233. }
  44234. },
  44235. paw: {
  44236. height: math.unit(1.44, "feet"),
  44237. name: "Paw",
  44238. image: {
  44239. source: "./media/characters/phillip/paw.svg"
  44240. }
  44241. },
  44242. },
  44243. [
  44244. {
  44245. name: "Normal",
  44246. height: math.unit(6, "feet"),
  44247. default: true
  44248. },
  44249. ]
  44250. ))
  44251. characterMakers.push(() => makeCharacter(
  44252. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44253. {
  44254. side: {
  44255. height: math.unit(42, "feet"),
  44256. name: "Side",
  44257. image: {
  44258. source: "./media/characters/uvula/side.svg",
  44259. extra: 683/586,
  44260. bottom: 60/743
  44261. }
  44262. },
  44263. front: {
  44264. height: math.unit(42, "feet"),
  44265. name: "Front",
  44266. image: {
  44267. source: "./media/characters/uvula/front.svg",
  44268. extra: 705/613,
  44269. bottom: 54/759
  44270. }
  44271. },
  44272. maw: {
  44273. height: math.unit(23.5, "feet"),
  44274. name: "Maw",
  44275. image: {
  44276. source: "./media/characters/uvula/maw.svg"
  44277. }
  44278. },
  44279. },
  44280. [
  44281. {
  44282. name: "Original Size",
  44283. height: math.unit(14, "inches")
  44284. },
  44285. {
  44286. name: "Human Size",
  44287. height: math.unit(6, "feet")
  44288. },
  44289. {
  44290. name: "Big",
  44291. height: math.unit(42, "feet"),
  44292. default: true
  44293. },
  44294. {
  44295. name: "Bigger",
  44296. height: math.unit(100, "feet")
  44297. },
  44298. ]
  44299. ))
  44300. characterMakers.push(() => makeCharacter(
  44301. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44302. {
  44303. front: {
  44304. height: math.unit(5 + 11/12, "feet"),
  44305. name: "Front",
  44306. image: {
  44307. source: "./media/characters/lannah/front.svg",
  44308. extra: 1208/1113,
  44309. bottom: 97/1305
  44310. }
  44311. },
  44312. },
  44313. [
  44314. {
  44315. name: "Normal",
  44316. height: math.unit(5 + 11/12, "feet"),
  44317. default: true
  44318. },
  44319. ]
  44320. ))
  44321. characterMakers.push(() => makeCharacter(
  44322. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44323. {
  44324. front: {
  44325. height: math.unit(6 + 3/12, "feet"),
  44326. weight: math.unit(3.5, "tons"),
  44327. name: "Front",
  44328. image: {
  44329. source: "./media/characters/emberflame/front.svg",
  44330. extra: 1198/672,
  44331. bottom: 82/1280
  44332. }
  44333. },
  44334. side: {
  44335. height: math.unit(6 + 3/12, "feet"),
  44336. weight: math.unit(3.5, "tons"),
  44337. name: "Side",
  44338. image: {
  44339. source: "./media/characters/emberflame/side.svg",
  44340. extra: 938/527,
  44341. bottom: 56/994
  44342. }
  44343. },
  44344. },
  44345. [
  44346. {
  44347. name: "Normal",
  44348. height: math.unit(6 + 3/12, "feet"),
  44349. default: true
  44350. },
  44351. ]
  44352. ))
  44353. characterMakers.push(() => makeCharacter(
  44354. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44355. {
  44356. side: {
  44357. height: math.unit(17.5, "feet"),
  44358. weight: math.unit(35, "tons"),
  44359. name: "Side",
  44360. image: {
  44361. source: "./media/characters/sophie-ambrose/side.svg",
  44362. extra: 1573/1242,
  44363. bottom: 71/1644
  44364. }
  44365. },
  44366. maw: {
  44367. height: math.unit(7.4, "feet"),
  44368. name: "Maw",
  44369. image: {
  44370. source: "./media/characters/sophie-ambrose/maw.svg"
  44371. }
  44372. },
  44373. },
  44374. [
  44375. {
  44376. name: "Normal",
  44377. height: math.unit(17.5, "feet"),
  44378. default: true
  44379. },
  44380. ]
  44381. ))
  44382. characterMakers.push(() => makeCharacter(
  44383. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44384. {
  44385. front: {
  44386. height: math.unit(280, "feet"),
  44387. weight: math.unit(550, "tons"),
  44388. name: "Front",
  44389. image: {
  44390. source: "./media/characters/king-mugi/front.svg",
  44391. extra: 1102/947,
  44392. bottom: 104/1206
  44393. }
  44394. },
  44395. },
  44396. [
  44397. {
  44398. name: "King Mugi",
  44399. height: math.unit(280, "feet"),
  44400. default: true
  44401. },
  44402. ]
  44403. ))
  44404. characterMakers.push(() => makeCharacter(
  44405. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44406. {
  44407. front: {
  44408. height: math.unit(64, "meters"),
  44409. name: "Front",
  44410. image: {
  44411. source: "./media/characters/nova-fox/front.svg",
  44412. extra: 1310/1246,
  44413. bottom: 65/1375
  44414. }
  44415. },
  44416. },
  44417. [
  44418. {
  44419. name: "Macro",
  44420. height: math.unit(64, "meters"),
  44421. default: true
  44422. },
  44423. ]
  44424. ))
  44425. characterMakers.push(() => makeCharacter(
  44426. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44427. {
  44428. front: {
  44429. height: math.unit(6 + 3/12, "feet"),
  44430. weight: math.unit(170, "lb"),
  44431. name: "Front",
  44432. image: {
  44433. source: "./media/characters/sam-bat/front.svg",
  44434. extra: 1601/1411,
  44435. bottom: 125/1726
  44436. }
  44437. },
  44438. back: {
  44439. height: math.unit(6 + 3/12, "feet"),
  44440. weight: math.unit(170, "lb"),
  44441. name: "Back",
  44442. image: {
  44443. source: "./media/characters/sam-bat/back.svg",
  44444. extra: 1577/1405,
  44445. bottom: 58/1635
  44446. }
  44447. },
  44448. },
  44449. [
  44450. {
  44451. name: "Normal",
  44452. height: math.unit(6 + 3/12, "feet"),
  44453. default: true
  44454. },
  44455. ]
  44456. ))
  44457. characterMakers.push(() => makeCharacter(
  44458. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44459. {
  44460. front: {
  44461. height: math.unit(59, "feet"),
  44462. weight: math.unit(40000, "lb"),
  44463. name: "Front",
  44464. image: {
  44465. source: "./media/characters/inari/front.svg",
  44466. extra: 1884/1350,
  44467. bottom: 95/1979
  44468. }
  44469. },
  44470. },
  44471. [
  44472. {
  44473. name: "Gigantamax",
  44474. height: math.unit(59, "feet"),
  44475. default: true
  44476. },
  44477. ]
  44478. ))
  44479. characterMakers.push(() => makeCharacter(
  44480. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44481. {
  44482. front: {
  44483. height: math.unit(5 + 8/12, "feet"),
  44484. name: "Front",
  44485. image: {
  44486. source: "./media/characters/elizabeth/front.svg",
  44487. extra: 1395/1298,
  44488. bottom: 54/1449
  44489. }
  44490. },
  44491. mouth: {
  44492. height: math.unit(1.97, "feet"),
  44493. name: "Mouth",
  44494. image: {
  44495. source: "./media/characters/elizabeth/mouth.svg"
  44496. }
  44497. },
  44498. foot: {
  44499. height: math.unit(1.17, "feet"),
  44500. name: "Foot",
  44501. image: {
  44502. source: "./media/characters/elizabeth/foot.svg"
  44503. }
  44504. },
  44505. },
  44506. [
  44507. {
  44508. name: "Normal",
  44509. height: math.unit(5 + 8/12, "feet"),
  44510. default: true
  44511. },
  44512. {
  44513. name: "Minimacro",
  44514. height: math.unit(18, "feet")
  44515. },
  44516. {
  44517. name: "Macro",
  44518. height: math.unit(180, "feet")
  44519. },
  44520. ]
  44521. ))
  44522. characterMakers.push(() => makeCharacter(
  44523. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44524. {
  44525. front: {
  44526. height: math.unit(5 + 2/12, "feet"),
  44527. name: "Front",
  44528. image: {
  44529. source: "./media/characters/october-gossamer/front.svg",
  44530. extra: 505/454,
  44531. bottom: 7/512
  44532. }
  44533. },
  44534. back: {
  44535. height: math.unit(5 + 2/12, "feet"),
  44536. name: "Back",
  44537. image: {
  44538. source: "./media/characters/october-gossamer/back.svg",
  44539. extra: 501/454,
  44540. bottom: 11/512
  44541. }
  44542. },
  44543. },
  44544. [
  44545. {
  44546. name: "Normal",
  44547. height: math.unit(5 + 2/12, "feet"),
  44548. default: true
  44549. },
  44550. ]
  44551. ))
  44552. characterMakers.push(() => makeCharacter(
  44553. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44554. {
  44555. front: {
  44556. height: math.unit(5, "feet"),
  44557. name: "Front",
  44558. image: {
  44559. source: "./media/characters/epiglottis/front.svg",
  44560. extra: 923/849,
  44561. bottom: 17/940
  44562. }
  44563. },
  44564. },
  44565. [
  44566. {
  44567. name: "Original Size",
  44568. height: math.unit(10, "inches")
  44569. },
  44570. {
  44571. name: "Human Size",
  44572. height: math.unit(5, "feet"),
  44573. default: true
  44574. },
  44575. {
  44576. name: "Big",
  44577. height: math.unit(25, "feet")
  44578. },
  44579. {
  44580. name: "Bigger",
  44581. height: math.unit(50, "feet")
  44582. },
  44583. {
  44584. name: "oh lawd",
  44585. height: math.unit(75, "feet")
  44586. },
  44587. ]
  44588. ))
  44589. characterMakers.push(() => makeCharacter(
  44590. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44591. {
  44592. front: {
  44593. height: math.unit(2 + 4/12, "feet"),
  44594. weight: math.unit(60, "lb"),
  44595. name: "Front",
  44596. image: {
  44597. source: "./media/characters/lerm/front.svg",
  44598. extra: 796/790,
  44599. bottom: 79/875
  44600. }
  44601. },
  44602. },
  44603. [
  44604. {
  44605. name: "Normal",
  44606. height: math.unit(2 + 4/12, "feet"),
  44607. default: true
  44608. },
  44609. ]
  44610. ))
  44611. characterMakers.push(() => makeCharacter(
  44612. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44613. {
  44614. front: {
  44615. height: math.unit(5.5, "feet"),
  44616. weight: math.unit(130, "lb"),
  44617. name: "Front",
  44618. image: {
  44619. source: "./media/characters/xena-nebadon/front.svg",
  44620. extra: 1828/1730,
  44621. bottom: 79/1907
  44622. }
  44623. },
  44624. },
  44625. [
  44626. {
  44627. name: "Tiny Puppy",
  44628. height: math.unit(3, "inches")
  44629. },
  44630. {
  44631. name: "Normal",
  44632. height: math.unit(5.5, "feet"),
  44633. default: true
  44634. },
  44635. {
  44636. name: "Lotta Lady",
  44637. height: math.unit(12, "feet")
  44638. },
  44639. {
  44640. name: "Pretty Big",
  44641. height: math.unit(100, "feet")
  44642. },
  44643. {
  44644. name: "Big",
  44645. height: math.unit(500, "feet")
  44646. },
  44647. {
  44648. name: "Skyscraper Toys",
  44649. height: math.unit(2500, "feet")
  44650. },
  44651. {
  44652. name: "Plane Catcher",
  44653. height: math.unit(8, "miles")
  44654. },
  44655. {
  44656. name: "Planet Toys",
  44657. height: math.unit(15, "earths")
  44658. },
  44659. {
  44660. name: "Stardust",
  44661. height: math.unit(0.25, "galaxies")
  44662. },
  44663. {
  44664. name: "Snacks",
  44665. height: math.unit(70, "universes")
  44666. },
  44667. ]
  44668. ))
  44669. characterMakers.push(() => makeCharacter(
  44670. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44671. {
  44672. front: {
  44673. height: math.unit(1.6, "meters"),
  44674. weight: math.unit(60, "kg"),
  44675. name: "Front",
  44676. image: {
  44677. source: "./media/characters/bounty/front.svg",
  44678. extra: 1426/1308,
  44679. bottom: 15/1441
  44680. }
  44681. },
  44682. back: {
  44683. height: math.unit(1.6, "meters"),
  44684. weight: math.unit(60, "kg"),
  44685. name: "Back",
  44686. image: {
  44687. source: "./media/characters/bounty/back.svg",
  44688. extra: 1417/1307,
  44689. bottom: 8/1425
  44690. }
  44691. },
  44692. },
  44693. [
  44694. {
  44695. name: "Normal",
  44696. height: math.unit(1.6, "meters"),
  44697. default: true
  44698. },
  44699. {
  44700. name: "Macro",
  44701. height: math.unit(300, "meters")
  44702. },
  44703. ]
  44704. ))
  44705. characterMakers.push(() => makeCharacter(
  44706. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44707. {
  44708. front: {
  44709. height: math.unit(2 + 8/12, "feet"),
  44710. weight: math.unit(15, "lb"),
  44711. name: "Front",
  44712. image: {
  44713. source: "./media/characters/mochi/front.svg",
  44714. extra: 1022/852,
  44715. bottom: 435/1457
  44716. }
  44717. },
  44718. back: {
  44719. height: math.unit(2 + 8/12, "feet"),
  44720. weight: math.unit(15, "lb"),
  44721. name: "Back",
  44722. image: {
  44723. source: "./media/characters/mochi/back.svg",
  44724. extra: 1335/1119,
  44725. bottom: 39/1374
  44726. }
  44727. },
  44728. bird: {
  44729. height: math.unit(2 + 8/12, "feet"),
  44730. weight: math.unit(15, "lb"),
  44731. name: "Bird",
  44732. image: {
  44733. source: "./media/characters/mochi/bird.svg",
  44734. extra: 1251/1113,
  44735. bottom: 178/1429
  44736. }
  44737. },
  44738. kaiju: {
  44739. height: math.unit(154, "feet"),
  44740. weight: math.unit(1e7, "lb"),
  44741. name: "Kaiju",
  44742. image: {
  44743. source: "./media/characters/mochi/kaiju.svg",
  44744. extra: 460/324,
  44745. bottom: 40/500
  44746. }
  44747. },
  44748. head: {
  44749. height: math.unit(1.21, "feet"),
  44750. name: "Head",
  44751. image: {
  44752. source: "./media/characters/mochi/head.svg"
  44753. }
  44754. },
  44755. alternateTail: {
  44756. height: math.unit(2 + 8/12, "feet"),
  44757. weight: math.unit(45, "lb"),
  44758. name: "Alternate Tail",
  44759. image: {
  44760. source: "./media/characters/mochi/alternate-tail.svg",
  44761. extra: 139/76,
  44762. bottom: 45/184
  44763. }
  44764. },
  44765. },
  44766. [
  44767. {
  44768. name: "Micro",
  44769. height: math.unit(2, "inches")
  44770. },
  44771. {
  44772. name: "Normal",
  44773. height: math.unit(2 + 8/12, "feet"),
  44774. default: true
  44775. },
  44776. {
  44777. name: "Macro",
  44778. height: math.unit(106, "feet")
  44779. },
  44780. ]
  44781. ))
  44782. characterMakers.push(() => makeCharacter(
  44783. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44784. {
  44785. front: {
  44786. height: math.unit(5.67, "feet"),
  44787. weight: math.unit(135, "lb"),
  44788. name: "Front",
  44789. image: {
  44790. source: "./media/characters/sarel/front.svg",
  44791. extra: 865/788,
  44792. bottom: 97/962
  44793. }
  44794. },
  44795. back: {
  44796. height: math.unit(5.67, "feet"),
  44797. weight: math.unit(135, "lb"),
  44798. name: "Back",
  44799. image: {
  44800. source: "./media/characters/sarel/back.svg",
  44801. extra: 857/777,
  44802. bottom: 32/889
  44803. }
  44804. },
  44805. chozoan: {
  44806. height: math.unit(5.67, "feet"),
  44807. weight: math.unit(135, "lb"),
  44808. name: "Chozoan",
  44809. image: {
  44810. source: "./media/characters/sarel/chozoan.svg",
  44811. extra: 865/788,
  44812. bottom: 97/962
  44813. }
  44814. },
  44815. current: {
  44816. height: math.unit(5.67, "feet"),
  44817. weight: math.unit(135, "lb"),
  44818. name: "Current",
  44819. image: {
  44820. source: "./media/characters/sarel/current.svg",
  44821. extra: 865/788,
  44822. bottom: 97/962
  44823. }
  44824. },
  44825. head: {
  44826. height: math.unit(1.77, "feet"),
  44827. name: "Head",
  44828. image: {
  44829. source: "./media/characters/sarel/head.svg"
  44830. }
  44831. },
  44832. claws: {
  44833. height: math.unit(1.8, "feet"),
  44834. name: "Claws",
  44835. image: {
  44836. source: "./media/characters/sarel/claws.svg"
  44837. }
  44838. },
  44839. clawsAlt: {
  44840. height: math.unit(1.8, "feet"),
  44841. name: "Claws-alt",
  44842. image: {
  44843. source: "./media/characters/sarel/claws-alt.svg"
  44844. }
  44845. },
  44846. },
  44847. [
  44848. {
  44849. name: "Normal",
  44850. height: math.unit(5.67, "feet"),
  44851. default: true
  44852. },
  44853. ]
  44854. ))
  44855. characterMakers.push(() => makeCharacter(
  44856. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44857. {
  44858. front: {
  44859. height: math.unit(5500, "feet"),
  44860. name: "Front",
  44861. image: {
  44862. source: "./media/characters/alyonia/front.svg",
  44863. extra: 1200/1135,
  44864. bottom: 29/1229
  44865. }
  44866. },
  44867. back: {
  44868. height: math.unit(5500, "feet"),
  44869. name: "Back",
  44870. image: {
  44871. source: "./media/characters/alyonia/back.svg",
  44872. extra: 1205/1138,
  44873. bottom: 10/1215
  44874. }
  44875. },
  44876. },
  44877. [
  44878. {
  44879. name: "Small",
  44880. height: math.unit(10, "feet")
  44881. },
  44882. {
  44883. name: "Macro",
  44884. height: math.unit(500, "feet")
  44885. },
  44886. {
  44887. name: "Mega Macro",
  44888. height: math.unit(5500, "feet"),
  44889. default: true
  44890. },
  44891. {
  44892. name: "Mega Macro+",
  44893. height: math.unit(500000, "feet")
  44894. },
  44895. {
  44896. name: "Giga Macro",
  44897. height: math.unit(3000, "miles")
  44898. },
  44899. {
  44900. name: "Tera Macro",
  44901. height: math.unit(2.8e6, "miles")
  44902. },
  44903. {
  44904. name: "Galactic",
  44905. height: math.unit(120000, "lightyears")
  44906. },
  44907. ]
  44908. ))
  44909. characterMakers.push(() => makeCharacter(
  44910. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44911. {
  44912. werewolf: {
  44913. height: math.unit(8, "feet"),
  44914. weight: math.unit(425, "lb"),
  44915. name: "Werewolf",
  44916. image: {
  44917. source: "./media/characters/autumn/werewolf.svg",
  44918. extra: 2154/2031,
  44919. bottom: 160/2314
  44920. }
  44921. },
  44922. human: {
  44923. height: math.unit(5 + 8/12, "feet"),
  44924. weight: math.unit(150, "lb"),
  44925. name: "Human",
  44926. image: {
  44927. source: "./media/characters/autumn/human.svg",
  44928. extra: 1200/1149,
  44929. bottom: 30/1230
  44930. }
  44931. },
  44932. },
  44933. [
  44934. {
  44935. name: "Normal",
  44936. height: math.unit(8, "feet"),
  44937. default: true
  44938. },
  44939. ]
  44940. ))
  44941. characterMakers.push(() => makeCharacter(
  44942. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44943. {
  44944. front: {
  44945. height: math.unit(8 + 5/12, "feet"),
  44946. weight: math.unit(825, "lb"),
  44947. name: "Front",
  44948. image: {
  44949. source: "./media/characters/cobalt-charizard/front.svg",
  44950. extra: 1268/1155,
  44951. bottom: 122/1390
  44952. }
  44953. },
  44954. side: {
  44955. height: math.unit(8 + 5/12, "feet"),
  44956. weight: math.unit(825, "lb"),
  44957. name: "Side",
  44958. image: {
  44959. source: "./media/characters/cobalt-charizard/side.svg",
  44960. extra: 1348/1257,
  44961. bottom: 58/1406
  44962. }
  44963. },
  44964. gMax: {
  44965. height: math.unit(134 + 11/12, "feet"),
  44966. name: "G-Max",
  44967. image: {
  44968. source: "./media/characters/cobalt-charizard/g-max.svg",
  44969. extra: 1835/1541,
  44970. bottom: 151/1986
  44971. }
  44972. },
  44973. },
  44974. [
  44975. {
  44976. name: "Normal",
  44977. height: math.unit(8 + 5/12, "feet"),
  44978. default: true
  44979. },
  44980. ]
  44981. ))
  44982. characterMakers.push(() => makeCharacter(
  44983. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44984. {
  44985. front: {
  44986. height: math.unit(6 + 3/12, "feet"),
  44987. weight: math.unit(210, "lb"),
  44988. name: "Front",
  44989. image: {
  44990. source: "./media/characters/stella/front.svg",
  44991. extra: 3549/3335,
  44992. bottom: 51/3600
  44993. }
  44994. },
  44995. },
  44996. [
  44997. {
  44998. name: "Normal",
  44999. height: math.unit(6 + 3/12, "feet"),
  45000. default: true
  45001. },
  45002. ]
  45003. ))
  45004. characterMakers.push(() => makeCharacter(
  45005. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45006. {
  45007. front: {
  45008. height: math.unit(5, "feet"),
  45009. weight: math.unit(90, "lb"),
  45010. name: "Front",
  45011. image: {
  45012. source: "./media/characters/riley-bishop/front.svg",
  45013. extra: 1450/1428,
  45014. bottom: 152/1602
  45015. }
  45016. },
  45017. },
  45018. [
  45019. {
  45020. name: "Normal",
  45021. height: math.unit(5, "feet"),
  45022. default: true
  45023. },
  45024. ]
  45025. ))
  45026. characterMakers.push(() => makeCharacter(
  45027. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45028. {
  45029. side: {
  45030. height: math.unit(8 + 2/12, "feet"),
  45031. weight: math.unit(500, "kg"),
  45032. name: "Side",
  45033. image: {
  45034. source: "./media/characters/theo-arcanine/side.svg",
  45035. extra: 1342/1074,
  45036. bottom: 111/1453
  45037. }
  45038. },
  45039. },
  45040. [
  45041. {
  45042. name: "Normal",
  45043. height: math.unit(8 + 2/12, "feet"),
  45044. default: true
  45045. },
  45046. ]
  45047. ))
  45048. characterMakers.push(() => makeCharacter(
  45049. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45050. {
  45051. front: {
  45052. height: math.unit(4, "feet"),
  45053. name: "Front",
  45054. image: {
  45055. source: "./media/characters/kali/front.svg",
  45056. extra: 1921/1357,
  45057. bottom: 70/1991
  45058. }
  45059. },
  45060. },
  45061. [
  45062. {
  45063. name: "Normal",
  45064. height: math.unit(4, "feet"),
  45065. default: true
  45066. },
  45067. {
  45068. name: "Macro",
  45069. height: math.unit(32, "meters")
  45070. },
  45071. {
  45072. name: "Macro+",
  45073. height: math.unit(150, "meters")
  45074. },
  45075. {
  45076. name: "Megamacro",
  45077. height: math.unit(7500, "meters")
  45078. },
  45079. {
  45080. name: "Megamacro+",
  45081. height: math.unit(80, "kilometers")
  45082. },
  45083. ]
  45084. ))
  45085. characterMakers.push(() => makeCharacter(
  45086. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45087. {
  45088. side: {
  45089. height: math.unit(5 + 11/12, "feet"),
  45090. weight: math.unit(236, "lb"),
  45091. name: "Side",
  45092. image: {
  45093. source: "./media/characters/gapp/side.svg",
  45094. extra: 775/340,
  45095. bottom: 58/833
  45096. }
  45097. },
  45098. mouth: {
  45099. height: math.unit(2.98, "feet"),
  45100. name: "Mouth",
  45101. image: {
  45102. source: "./media/characters/gapp/mouth.svg"
  45103. }
  45104. },
  45105. },
  45106. [
  45107. {
  45108. name: "Normal",
  45109. height: math.unit(5 + 1/12, "feet"),
  45110. default: true
  45111. },
  45112. ]
  45113. ))
  45114. characterMakers.push(() => makeCharacter(
  45115. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45116. {
  45117. front: {
  45118. height: math.unit(6, "feet"),
  45119. name: "Front",
  45120. image: {
  45121. source: "./media/characters/persephone/front.svg",
  45122. extra: 1895/1717,
  45123. bottom: 96/1991
  45124. }
  45125. },
  45126. back: {
  45127. height: math.unit(6, "feet"),
  45128. name: "Back",
  45129. image: {
  45130. source: "./media/characters/persephone/back.svg",
  45131. extra: 1868/1679,
  45132. bottom: 26/1894
  45133. }
  45134. },
  45135. casual: {
  45136. height: math.unit(6, "feet"),
  45137. name: "Casual",
  45138. image: {
  45139. source: "./media/characters/persephone/casual.svg",
  45140. extra: 1713/1541,
  45141. bottom: 76/1789
  45142. }
  45143. },
  45144. },
  45145. [
  45146. {
  45147. name: "Human Size",
  45148. height: math.unit(6, "feet")
  45149. },
  45150. {
  45151. name: "Big Steppy",
  45152. height: math.unit(600, "meters"),
  45153. default: true
  45154. },
  45155. {
  45156. name: "Galaxy Brain",
  45157. height: math.unit(1, "zettameter")
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45163. {
  45164. front: {
  45165. height: math.unit(1.85, "meters"),
  45166. name: "Front",
  45167. image: {
  45168. source: "./media/characters/riley-foxthing/front.svg",
  45169. extra: 1495/1354,
  45170. bottom: 122/1617
  45171. }
  45172. },
  45173. frontAlt: {
  45174. height: math.unit(1.85, "meters"),
  45175. name: "Front (Alt)",
  45176. image: {
  45177. source: "./media/characters/riley-foxthing/front-alt.svg",
  45178. extra: 1572/1389,
  45179. bottom: 116/1688
  45180. }
  45181. },
  45182. },
  45183. [
  45184. {
  45185. name: "Normal Sized",
  45186. height: math.unit(1.85, "meters"),
  45187. default: true
  45188. },
  45189. {
  45190. name: "Quite Sizable",
  45191. height: math.unit(5, "meters")
  45192. },
  45193. {
  45194. name: "Rather Large",
  45195. height: math.unit(20, "meters")
  45196. },
  45197. {
  45198. name: "Macro",
  45199. height: math.unit(450, "meters")
  45200. },
  45201. {
  45202. name: "Giga",
  45203. height: math.unit(5, "km")
  45204. },
  45205. ]
  45206. ))
  45207. characterMakers.push(() => makeCharacter(
  45208. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45209. {
  45210. front: {
  45211. height: math.unit(6, "feet"),
  45212. weight: math.unit(200, "lb"),
  45213. name: "Front",
  45214. image: {
  45215. source: "./media/characters/blizzard/front.svg",
  45216. extra: 1136/990,
  45217. bottom: 136/1272
  45218. }
  45219. },
  45220. back: {
  45221. height: math.unit(6, "feet"),
  45222. weight: math.unit(200, "lb"),
  45223. name: "Back",
  45224. image: {
  45225. source: "./media/characters/blizzard/back.svg",
  45226. extra: 1175/1034,
  45227. bottom: 97/1272
  45228. }
  45229. },
  45230. sitting: {
  45231. height: math.unit(3.725, "feet"),
  45232. weight: math.unit(200, "lb"),
  45233. name: "Sitting",
  45234. image: {
  45235. source: "./media/characters/blizzard/sitting.svg",
  45236. extra: 581/485,
  45237. bottom: 90/671
  45238. }
  45239. },
  45240. frontWizard: {
  45241. height: math.unit(7.9, "feet"),
  45242. weight: math.unit(200, "lb"),
  45243. name: "Front (Wizard)",
  45244. image: {
  45245. source: "./media/characters/blizzard/front-wizard.svg"
  45246. }
  45247. },
  45248. backWizard: {
  45249. height: math.unit(7.9, "feet"),
  45250. weight: math.unit(200, "lb"),
  45251. name: "Back (Wizard)",
  45252. image: {
  45253. source: "./media/characters/blizzard/back-wizard.svg"
  45254. }
  45255. },
  45256. frontNsfw: {
  45257. height: math.unit(6, "feet"),
  45258. weight: math.unit(200, "lb"),
  45259. name: "Front (NSFW)",
  45260. image: {
  45261. source: "./media/characters/blizzard/front-nsfw.svg",
  45262. extra: 1136/990,
  45263. bottom: 136/1272
  45264. }
  45265. },
  45266. backNsfw: {
  45267. height: math.unit(6, "feet"),
  45268. weight: math.unit(200, "lb"),
  45269. name: "Back (NSFW)",
  45270. image: {
  45271. source: "./media/characters/blizzard/back-nsfw.svg",
  45272. extra: 1175/1034,
  45273. bottom: 97/1272
  45274. }
  45275. },
  45276. sittingNsfw: {
  45277. height: math.unit(3.725, "feet"),
  45278. weight: math.unit(200, "lb"),
  45279. name: "Sitting (NSFW)",
  45280. image: {
  45281. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45282. extra: 581/485,
  45283. bottom: 90/671
  45284. }
  45285. },
  45286. wizardFrontNsfw: {
  45287. height: math.unit(7.9, "feet"),
  45288. weight: math.unit(200, "lb"),
  45289. name: "Wizard (Front, NSFW)",
  45290. image: {
  45291. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45292. }
  45293. },
  45294. },
  45295. [
  45296. {
  45297. name: "Normal",
  45298. height: math.unit(6, "feet"),
  45299. default: true
  45300. },
  45301. ]
  45302. ))
  45303. characterMakers.push(() => makeCharacter(
  45304. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45305. {
  45306. front: {
  45307. height: math.unit(5 + 2/12, "feet"),
  45308. name: "Front",
  45309. image: {
  45310. source: "./media/characters/lumi/front.svg",
  45311. extra: 1328/1268,
  45312. bottom: 103/1431
  45313. }
  45314. },
  45315. back: {
  45316. height: math.unit(5 + 2/12, "feet"),
  45317. name: "Back",
  45318. image: {
  45319. source: "./media/characters/lumi/back.svg",
  45320. extra: 1381/1327,
  45321. bottom: 43/1424
  45322. }
  45323. },
  45324. },
  45325. [
  45326. {
  45327. name: "Normal",
  45328. height: math.unit(5 + 2/12, "feet"),
  45329. default: true
  45330. },
  45331. ]
  45332. ))
  45333. characterMakers.push(() => makeCharacter(
  45334. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45335. {
  45336. front: {
  45337. height: math.unit(5 + 9/12, "feet"),
  45338. name: "Front",
  45339. image: {
  45340. source: "./media/characters/aliya-cotton/front.svg",
  45341. extra: 577/564,
  45342. bottom: 29/606
  45343. }
  45344. },
  45345. },
  45346. [
  45347. {
  45348. name: "Normal",
  45349. height: math.unit(5 + 9/12, "feet"),
  45350. default: true
  45351. },
  45352. ]
  45353. ))
  45354. characterMakers.push(() => makeCharacter(
  45355. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45356. {
  45357. front: {
  45358. height: math.unit(2.7, "meters"),
  45359. weight: math.unit(25000, "lb"),
  45360. name: "Front",
  45361. image: {
  45362. source: "./media/characters/noah-luxray/front.svg",
  45363. extra: 1644/825,
  45364. bottom: 339/1983
  45365. }
  45366. },
  45367. side: {
  45368. height: math.unit(2.97, "meters"),
  45369. weight: math.unit(25000, "lb"),
  45370. name: "Side",
  45371. image: {
  45372. source: "./media/characters/noah-luxray/side.svg",
  45373. extra: 1319/650,
  45374. bottom: 163/1482
  45375. }
  45376. },
  45377. dick: {
  45378. height: math.unit(7.4, "feet"),
  45379. weight: math.unit(2500, "lb"),
  45380. name: "Dick",
  45381. image: {
  45382. source: "./media/characters/noah-luxray/dick.svg"
  45383. }
  45384. },
  45385. dickAlt: {
  45386. height: math.unit(10.83, "feet"),
  45387. weight: math.unit(2500, "lb"),
  45388. name: "Dick-alt",
  45389. image: {
  45390. source: "./media/characters/noah-luxray/dick-alt.svg"
  45391. }
  45392. },
  45393. },
  45394. [
  45395. {
  45396. name: "BIG",
  45397. height: math.unit(2.7, "meters"),
  45398. default: true
  45399. },
  45400. ]
  45401. ))
  45402. characterMakers.push(() => makeCharacter(
  45403. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45404. {
  45405. standing: {
  45406. height: math.unit(183, "cm"),
  45407. weight: math.unit(68, "kg"),
  45408. name: "Standing",
  45409. image: {
  45410. source: "./media/characters/arion/standing.svg",
  45411. extra: 1869/1807,
  45412. bottom: 93/1962
  45413. }
  45414. },
  45415. reclining: {
  45416. height: math.unit(70.5, "cm"),
  45417. weight: math.unit(68, "lb"),
  45418. name: "Reclining",
  45419. image: {
  45420. source: "./media/characters/arion/reclining.svg",
  45421. extra: 937/870,
  45422. bottom: 63/1000
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Colossus Size, Low",
  45429. height: math.unit(33, "meters"),
  45430. default: true
  45431. },
  45432. {
  45433. name: "Colossus Size, Mid",
  45434. height: math.unit(52, "meters")
  45435. },
  45436. {
  45437. name: "Colossus Size, High",
  45438. height: math.unit(60, "meters")
  45439. },
  45440. {
  45441. name: "Titan Size, Low",
  45442. height: math.unit(91, "meters"),
  45443. },
  45444. {
  45445. name: "Titan Size, Mid",
  45446. height: math.unit(122, "meters")
  45447. },
  45448. {
  45449. name: "Titan Size, High",
  45450. height: math.unit(162, "meters")
  45451. },
  45452. ]
  45453. ))
  45454. characterMakers.push(() => makeCharacter(
  45455. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45456. {
  45457. front: {
  45458. height: math.unit(53, "meters"),
  45459. name: "Front",
  45460. image: {
  45461. source: "./media/characters/stellar-marbey/front.svg",
  45462. extra: 1913/1805,
  45463. bottom: 92/2005
  45464. }
  45465. },
  45466. back: {
  45467. height: math.unit(53, "meters"),
  45468. name: "Back",
  45469. image: {
  45470. source: "./media/characters/stellar-marbey/back.svg",
  45471. extra: 1960/1851,
  45472. bottom: 28/1988
  45473. }
  45474. },
  45475. mouth: {
  45476. height: math.unit(3.5, "meters"),
  45477. name: "Mouth",
  45478. image: {
  45479. source: "./media/characters/stellar-marbey/mouth.svg"
  45480. }
  45481. },
  45482. },
  45483. [
  45484. {
  45485. name: "Macro",
  45486. height: math.unit(53, "meters"),
  45487. default: true
  45488. },
  45489. ]
  45490. ))
  45491. characterMakers.push(() => makeCharacter(
  45492. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45493. {
  45494. front: {
  45495. height: math.unit(8 + 1/12, "feet"),
  45496. weight: math.unit(233, "lb"),
  45497. name: "Front",
  45498. image: {
  45499. source: "./media/characters/matsu/front.svg",
  45500. extra: 832/772,
  45501. bottom: 40/872
  45502. }
  45503. },
  45504. back: {
  45505. height: math.unit(8 + 1/12, "feet"),
  45506. weight: math.unit(233, "lb"),
  45507. name: "Back",
  45508. image: {
  45509. source: "./media/characters/matsu/back.svg",
  45510. extra: 839/780,
  45511. bottom: 47/886
  45512. }
  45513. },
  45514. },
  45515. [
  45516. {
  45517. name: "Normal",
  45518. height: math.unit(8 + 1/12, "feet"),
  45519. default: true
  45520. },
  45521. ]
  45522. ))
  45523. characterMakers.push(() => makeCharacter(
  45524. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45525. {
  45526. front: {
  45527. height: math.unit(4, "feet"),
  45528. weight: math.unit(148, "lb"),
  45529. name: "Front",
  45530. image: {
  45531. source: "./media/characters/thiz/front.svg",
  45532. extra: 1913/1748,
  45533. bottom: 62/1975
  45534. }
  45535. },
  45536. },
  45537. [
  45538. {
  45539. name: "Normal",
  45540. height: math.unit(4, "feet"),
  45541. default: true
  45542. },
  45543. ]
  45544. ))
  45545. characterMakers.push(() => makeCharacter(
  45546. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45547. {
  45548. front: {
  45549. height: math.unit(7 + 6/12, "feet"),
  45550. weight: math.unit(267, "lb"),
  45551. name: "Front",
  45552. image: {
  45553. source: "./media/characters/marcel/front.svg",
  45554. extra: 1221/1096,
  45555. bottom: 76/1297
  45556. }
  45557. },
  45558. },
  45559. [
  45560. {
  45561. name: "Normal",
  45562. height: math.unit(7 + 6/12, "feet"),
  45563. default: true
  45564. },
  45565. ]
  45566. ))
  45567. characterMakers.push(() => makeCharacter(
  45568. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45569. {
  45570. side: {
  45571. height: math.unit(42, "meters"),
  45572. name: "Side",
  45573. image: {
  45574. source: "./media/characters/flake/side.svg",
  45575. extra: 1525/1306,
  45576. bottom: 209/1734
  45577. }
  45578. },
  45579. },
  45580. [
  45581. {
  45582. name: "Normal",
  45583. height: math.unit(42, "meters"),
  45584. default: true
  45585. },
  45586. ]
  45587. ))
  45588. characterMakers.push(() => makeCharacter(
  45589. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45590. {
  45591. dressed: {
  45592. height: math.unit(6 + 4/12, "feet"),
  45593. weight: math.unit(520, "lb"),
  45594. name: "Dressed",
  45595. image: {
  45596. source: "./media/characters/someonne/dressed.svg",
  45597. extra: 1020/1010,
  45598. bottom: 178/1198
  45599. }
  45600. },
  45601. undressed: {
  45602. height: math.unit(6 + 4/12, "feet"),
  45603. weight: math.unit(520, "lb"),
  45604. name: "Undressed",
  45605. image: {
  45606. source: "./media/characters/someonne/undressed.svg",
  45607. extra: 1019/1014,
  45608. bottom: 169/1188
  45609. }
  45610. },
  45611. },
  45612. [
  45613. {
  45614. name: "Normal",
  45615. height: math.unit(6 + 4/12, "feet"),
  45616. default: true
  45617. },
  45618. ]
  45619. ))
  45620. characterMakers.push(() => makeCharacter(
  45621. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45622. {
  45623. front: {
  45624. height: math.unit(3, "feet"),
  45625. weight: math.unit(30, "lb"),
  45626. name: "Front",
  45627. image: {
  45628. source: "./media/characters/till/front.svg",
  45629. extra: 892/823,
  45630. bottom: 55/947
  45631. }
  45632. },
  45633. },
  45634. [
  45635. {
  45636. name: "Normal",
  45637. height: math.unit(3, "feet"),
  45638. default: true
  45639. },
  45640. ]
  45641. ))
  45642. characterMakers.push(() => makeCharacter(
  45643. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45644. {
  45645. front: {
  45646. height: math.unit(9 + 8/12, "feet"),
  45647. weight: math.unit(800, "lb"),
  45648. name: "Front",
  45649. image: {
  45650. source: "./media/characters/sydney-heki/front.svg",
  45651. extra: 1360/1300,
  45652. bottom: 22/1382
  45653. }
  45654. },
  45655. back: {
  45656. height: math.unit(9 + 8/12, "feet"),
  45657. weight: math.unit(800, "lb"),
  45658. name: "Back",
  45659. image: {
  45660. source: "./media/characters/sydney-heki/back.svg",
  45661. extra: 1356/1293,
  45662. bottom: 12/1368
  45663. }
  45664. },
  45665. frontDressed: {
  45666. height: math.unit(9 + 8/12, "feet"),
  45667. weight: math.unit(800, "lb"),
  45668. name: "Front-dressed",
  45669. image: {
  45670. source: "./media/characters/sydney-heki/front-dressed.svg",
  45671. extra: 1360/1300,
  45672. bottom: 22/1382
  45673. }
  45674. },
  45675. },
  45676. [
  45677. {
  45678. name: "Normal",
  45679. height: math.unit(9 + 8/12, "feet"),
  45680. default: true
  45681. },
  45682. {
  45683. name: "Macro",
  45684. height: math.unit(500, "feet")
  45685. },
  45686. {
  45687. name: "Megamacro",
  45688. height: math.unit(3.6, "miles")
  45689. },
  45690. ]
  45691. ))
  45692. characterMakers.push(() => makeCharacter(
  45693. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45694. {
  45695. front: {
  45696. height: math.unit(200, "cm"),
  45697. weight: math.unit(250, "lb"),
  45698. name: "Front",
  45699. image: {
  45700. source: "./media/characters/fowler-karlsson/front.svg",
  45701. extra: 897/845,
  45702. bottom: 123/1020
  45703. }
  45704. },
  45705. back: {
  45706. height: math.unit(200, "cm"),
  45707. weight: math.unit(250, "lb"),
  45708. name: "Back",
  45709. image: {
  45710. source: "./media/characters/fowler-karlsson/back.svg",
  45711. extra: 999/944,
  45712. bottom: 26/1025
  45713. }
  45714. },
  45715. dick: {
  45716. height: math.unit(1.92, "feet"),
  45717. weight: math.unit(150, "lb"),
  45718. name: "Dick",
  45719. image: {
  45720. source: "./media/characters/fowler-karlsson/dick.svg"
  45721. }
  45722. },
  45723. },
  45724. [
  45725. {
  45726. name: "Normal",
  45727. height: math.unit(200, "cm"),
  45728. default: true
  45729. },
  45730. {
  45731. name: "Smaller Macro",
  45732. height: math.unit(90, "m")
  45733. },
  45734. {
  45735. name: "Macro",
  45736. height: math.unit(150, "m")
  45737. },
  45738. {
  45739. name: "Bigger Macro",
  45740. height: math.unit(300, "m")
  45741. },
  45742. ]
  45743. ))
  45744. characterMakers.push(() => makeCharacter(
  45745. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45746. {
  45747. side: {
  45748. height: math.unit(8 + 2/12, "feet"),
  45749. weight: math.unit(1, "tonne"),
  45750. name: "Side",
  45751. image: {
  45752. source: "./media/characters/rylide/side.svg",
  45753. extra: 1318/1034,
  45754. bottom: 106/1424
  45755. }
  45756. },
  45757. sitting: {
  45758. height: math.unit(303, "cm"),
  45759. weight: math.unit(1, "tonne"),
  45760. name: "Sitting",
  45761. image: {
  45762. source: "./media/characters/rylide/sitting.svg",
  45763. extra: 1303/1103,
  45764. bottom: 36/1339
  45765. }
  45766. },
  45767. },
  45768. [
  45769. {
  45770. name: "Normal",
  45771. height: math.unit(8 + 2/12, "feet"),
  45772. default: true
  45773. },
  45774. ]
  45775. ))
  45776. characterMakers.push(() => makeCharacter(
  45777. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45778. {
  45779. front: {
  45780. height: math.unit(5 + 10/12, "feet"),
  45781. weight: math.unit(160, "lb"),
  45782. name: "Front",
  45783. image: {
  45784. source: "./media/characters/pudask/front.svg",
  45785. extra: 1616/1590,
  45786. bottom: 161/1777
  45787. }
  45788. },
  45789. },
  45790. [
  45791. {
  45792. name: "Ferret Height",
  45793. height: math.unit(2 + 5/12, "feet")
  45794. },
  45795. {
  45796. name: "Canon Height",
  45797. height: math.unit(5 + 10/12, "feet"),
  45798. default: true
  45799. },
  45800. ]
  45801. ))
  45802. characterMakers.push(() => makeCharacter(
  45803. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45804. {
  45805. front: {
  45806. height: math.unit(3 + 6/12, "feet"),
  45807. weight: math.unit(60, "lb"),
  45808. name: "Front",
  45809. image: {
  45810. source: "./media/characters/ramita/front.svg",
  45811. extra: 1402/1232,
  45812. bottom: 62/1464
  45813. }
  45814. },
  45815. dressed: {
  45816. height: math.unit(3 + 6/12, "feet"),
  45817. weight: math.unit(60, "lb"),
  45818. name: "Dressed",
  45819. image: {
  45820. source: "./media/characters/ramita/dressed.svg",
  45821. extra: 1534/1249,
  45822. bottom: 50/1584
  45823. }
  45824. },
  45825. },
  45826. [
  45827. {
  45828. name: "Normal",
  45829. height: math.unit(3 + 6/12, "feet"),
  45830. default: true
  45831. },
  45832. ]
  45833. ))
  45834. characterMakers.push(() => makeCharacter(
  45835. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45836. {
  45837. front: {
  45838. height: math.unit(8, "feet"),
  45839. name: "Front",
  45840. image: {
  45841. source: "./media/characters/ark/front.svg",
  45842. extra: 772/693,
  45843. bottom: 45/817
  45844. }
  45845. },
  45846. },
  45847. [
  45848. {
  45849. name: "Normal",
  45850. height: math.unit(8, "feet"),
  45851. default: true
  45852. },
  45853. ]
  45854. ))
  45855. characterMakers.push(() => makeCharacter(
  45856. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45857. {
  45858. front: {
  45859. height: math.unit(6, "feet"),
  45860. weight: math.unit(250, "lb"),
  45861. volume: math.unit(5/8, "gallons"),
  45862. name: "Front",
  45863. image: {
  45864. source: "./media/characters/ludwig-horn/front.svg",
  45865. extra: 1782/1635,
  45866. bottom: 96/1878
  45867. }
  45868. },
  45869. back: {
  45870. height: math.unit(6, "feet"),
  45871. weight: math.unit(250, "lb"),
  45872. volume: math.unit(5/8, "gallons"),
  45873. name: "Back",
  45874. image: {
  45875. source: "./media/characters/ludwig-horn/back.svg",
  45876. extra: 1874/1729,
  45877. bottom: 27/1901
  45878. }
  45879. },
  45880. dick: {
  45881. height: math.unit(1.05, "feet"),
  45882. weight: math.unit(15, "lb"),
  45883. volume: math.unit(5/8, "gallons"),
  45884. name: "Dick",
  45885. image: {
  45886. source: "./media/characters/ludwig-horn/dick.svg"
  45887. }
  45888. },
  45889. },
  45890. [
  45891. {
  45892. name: "Small",
  45893. height: math.unit(6, "feet")
  45894. },
  45895. {
  45896. name: "Typical",
  45897. height: math.unit(12, "feet"),
  45898. default: true
  45899. },
  45900. {
  45901. name: "Building",
  45902. height: math.unit(80, "feet")
  45903. },
  45904. {
  45905. name: "Town",
  45906. height: math.unit(800, "feet")
  45907. },
  45908. {
  45909. name: "Kingdom",
  45910. height: math.unit(80000, "feet")
  45911. },
  45912. {
  45913. name: "Planet",
  45914. height: math.unit(8000000, "feet")
  45915. },
  45916. {
  45917. name: "Universe",
  45918. height: math.unit(8000000000, "feet")
  45919. },
  45920. {
  45921. name: "Transcended",
  45922. height: math.unit(8e27, "feet")
  45923. },
  45924. ]
  45925. ))
  45926. characterMakers.push(() => makeCharacter(
  45927. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45928. {
  45929. front: {
  45930. height: math.unit(5, "feet"),
  45931. weight: math.unit(50, "kg"),
  45932. name: "Front",
  45933. image: {
  45934. source: "./media/characters/biot-avery/front.svg",
  45935. extra: 1295/1232,
  45936. bottom: 86/1381
  45937. }
  45938. },
  45939. },
  45940. [
  45941. {
  45942. name: "Normal",
  45943. height: math.unit(5, "feet"),
  45944. default: true
  45945. },
  45946. ]
  45947. ))
  45948. characterMakers.push(() => makeCharacter(
  45949. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45950. {
  45951. front: {
  45952. height: math.unit(6, "feet"),
  45953. name: "Front",
  45954. image: {
  45955. source: "./media/characters/kitsune-kiro/front.svg",
  45956. extra: 1270/1158,
  45957. bottom: 42/1312
  45958. }
  45959. },
  45960. frontAlt: {
  45961. height: math.unit(6, "feet"),
  45962. name: "Front-alt",
  45963. image: {
  45964. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45965. extra: 1130/1081,
  45966. bottom: 36/1166
  45967. }
  45968. },
  45969. },
  45970. [
  45971. {
  45972. name: "Smol",
  45973. height: math.unit(3, "feet")
  45974. },
  45975. {
  45976. name: "Normal",
  45977. height: math.unit(6, "feet"),
  45978. default: true
  45979. },
  45980. ]
  45981. ))
  45982. characterMakers.push(() => makeCharacter(
  45983. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45984. {
  45985. front: {
  45986. height: math.unit(6, "feet"),
  45987. weight: math.unit(125, "lb"),
  45988. name: "Front",
  45989. image: {
  45990. source: "./media/characters/jack-thatcher/front.svg",
  45991. extra: 1474/1370,
  45992. bottom: 26/1500
  45993. }
  45994. },
  45995. back: {
  45996. height: math.unit(6, "feet"),
  45997. weight: math.unit(125, "lb"),
  45998. name: "Back",
  45999. image: {
  46000. source: "./media/characters/jack-thatcher/back.svg",
  46001. extra: 1489/1384,
  46002. bottom: 18/1507
  46003. }
  46004. },
  46005. },
  46006. [
  46007. {
  46008. name: "Normal",
  46009. height: math.unit(6, "feet"),
  46010. default: true
  46011. },
  46012. {
  46013. name: "Macro",
  46014. height: math.unit(75, "feet")
  46015. },
  46016. {
  46017. name: "Macro-er",
  46018. height: math.unit(250, "feet")
  46019. },
  46020. ]
  46021. ))
  46022. characterMakers.push(() => makeCharacter(
  46023. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46024. {
  46025. front: {
  46026. height: math.unit(7, "feet"),
  46027. weight: math.unit(110, "kg"),
  46028. name: "Front",
  46029. image: {
  46030. source: "./media/characters/max-hyper/front.svg",
  46031. extra: 1969/1881,
  46032. bottom: 49/2018
  46033. }
  46034. },
  46035. },
  46036. [
  46037. {
  46038. name: "Normal",
  46039. height: math.unit(7, "feet"),
  46040. default: true
  46041. },
  46042. ]
  46043. ))
  46044. characterMakers.push(() => makeCharacter(
  46045. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46046. {
  46047. front: {
  46048. height: math.unit(5 + 5/12, "feet"),
  46049. weight: math.unit(160, "lb"),
  46050. name: "Front",
  46051. image: {
  46052. source: "./media/characters/spook/front.svg",
  46053. extra: 794/791,
  46054. bottom: 54/848
  46055. }
  46056. },
  46057. back: {
  46058. height: math.unit(5 + 5/12, "feet"),
  46059. weight: math.unit(160, "lb"),
  46060. name: "Back",
  46061. image: {
  46062. source: "./media/characters/spook/back.svg",
  46063. extra: 812/798,
  46064. bottom: 32/844
  46065. }
  46066. },
  46067. },
  46068. [
  46069. {
  46070. name: "Normal",
  46071. height: math.unit(5 + 5/12, "feet"),
  46072. default: true
  46073. },
  46074. ]
  46075. ))
  46076. characterMakers.push(() => makeCharacter(
  46077. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46078. {
  46079. front: {
  46080. height: math.unit(18, "feet"),
  46081. name: "Front",
  46082. image: {
  46083. source: "./media/characters/xeaduulix/front.svg",
  46084. extra: 1380/1166,
  46085. bottom: 110/1490
  46086. }
  46087. },
  46088. back: {
  46089. height: math.unit(18, "feet"),
  46090. name: "Back",
  46091. image: {
  46092. source: "./media/characters/xeaduulix/back.svg",
  46093. extra: 1592/1170,
  46094. bottom: 128/1720
  46095. }
  46096. },
  46097. frontNsfw: {
  46098. height: math.unit(18, "feet"),
  46099. name: "Front (NSFW)",
  46100. image: {
  46101. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46102. extra: 1380/1166,
  46103. bottom: 110/1490
  46104. }
  46105. },
  46106. backNsfw: {
  46107. height: math.unit(18, "feet"),
  46108. name: "Back (NSFW)",
  46109. image: {
  46110. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46111. extra: 1592/1170,
  46112. bottom: 128/1720
  46113. }
  46114. },
  46115. },
  46116. [
  46117. {
  46118. name: "Normal",
  46119. height: math.unit(18, "feet"),
  46120. default: true
  46121. },
  46122. ]
  46123. ))
  46124. characterMakers.push(() => makeCharacter(
  46125. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46126. {
  46127. spreadWings: {
  46128. height: math.unit(20, "feet"),
  46129. name: "Spread Wings",
  46130. image: {
  46131. source: "./media/characters/fledge/spread-wings.svg",
  46132. extra: 693/635,
  46133. bottom: 26/719
  46134. }
  46135. },
  46136. front: {
  46137. height: math.unit(20, "feet"),
  46138. name: "Front",
  46139. image: {
  46140. source: "./media/characters/fledge/front.svg",
  46141. extra: 684/637,
  46142. bottom: 18/702
  46143. }
  46144. },
  46145. frontAlt: {
  46146. height: math.unit(20, "feet"),
  46147. name: "Front (Alt)",
  46148. image: {
  46149. source: "./media/characters/fledge/front-alt.svg",
  46150. extra: 708/664,
  46151. bottom: 13/721
  46152. }
  46153. },
  46154. back: {
  46155. height: math.unit(20, "feet"),
  46156. name: "Back",
  46157. image: {
  46158. source: "./media/characters/fledge/back.svg",
  46159. extra: 718/634,
  46160. bottom: 22/740
  46161. }
  46162. },
  46163. head: {
  46164. height: math.unit(5.55, "feet"),
  46165. name: "Head",
  46166. image: {
  46167. source: "./media/characters/fledge/head.svg"
  46168. }
  46169. },
  46170. headAlt: {
  46171. height: math.unit(5.1, "feet"),
  46172. name: "Head (Alt)",
  46173. image: {
  46174. source: "./media/characters/fledge/head-alt.svg"
  46175. }
  46176. },
  46177. },
  46178. [
  46179. {
  46180. name: "Small",
  46181. height: math.unit(6 + 2/12, "feet")
  46182. },
  46183. {
  46184. name: "Big",
  46185. height: math.unit(20, "feet"),
  46186. default: true
  46187. },
  46188. {
  46189. name: "Giant",
  46190. height: math.unit(100, "feet")
  46191. },
  46192. {
  46193. name: "Macro",
  46194. height: math.unit(200, "feet")
  46195. },
  46196. ]
  46197. ))
  46198. characterMakers.push(() => makeCharacter(
  46199. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46200. {
  46201. front: {
  46202. height: math.unit(1, "meter"),
  46203. name: "Front",
  46204. image: {
  46205. source: "./media/characters/atlas-morenai/front.svg",
  46206. extra: 1275/1043,
  46207. bottom: 19/1294
  46208. }
  46209. },
  46210. back: {
  46211. height: math.unit(1, "meter"),
  46212. name: "Back",
  46213. image: {
  46214. source: "./media/characters/atlas-morenai/back.svg",
  46215. extra: 1141/1001,
  46216. bottom: 25/1166
  46217. }
  46218. },
  46219. },
  46220. [
  46221. {
  46222. name: "Normal",
  46223. height: math.unit(1, "meter"),
  46224. default: true
  46225. },
  46226. {
  46227. name: "Magic-Infused",
  46228. height: math.unit(5, "meters")
  46229. },
  46230. ]
  46231. ))
  46232. characterMakers.push(() => makeCharacter(
  46233. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46234. {
  46235. front: {
  46236. height: math.unit(5, "meters"),
  46237. name: "Front",
  46238. image: {
  46239. source: "./media/characters/cintia/front.svg",
  46240. extra: 1312/1228,
  46241. bottom: 38/1350
  46242. }
  46243. },
  46244. back: {
  46245. height: math.unit(5, "meters"),
  46246. name: "Back",
  46247. image: {
  46248. source: "./media/characters/cintia/back.svg",
  46249. extra: 1260/1166,
  46250. bottom: 98/1358
  46251. }
  46252. },
  46253. frontDick: {
  46254. height: math.unit(5, "meters"),
  46255. name: "Front (Dick)",
  46256. image: {
  46257. source: "./media/characters/cintia/front-dick.svg",
  46258. extra: 1312/1228,
  46259. bottom: 38/1350
  46260. }
  46261. },
  46262. backDick: {
  46263. height: math.unit(5, "meters"),
  46264. name: "Back (Dick)",
  46265. image: {
  46266. source: "./media/characters/cintia/back-dick.svg",
  46267. extra: 1260/1166,
  46268. bottom: 98/1358
  46269. }
  46270. },
  46271. bust: {
  46272. height: math.unit(1.97, "meters"),
  46273. name: "Bust",
  46274. image: {
  46275. source: "./media/characters/cintia/bust.svg",
  46276. extra: 617/565,
  46277. bottom: 0/617
  46278. }
  46279. },
  46280. },
  46281. [
  46282. {
  46283. name: "Normal",
  46284. height: math.unit(5, "meters"),
  46285. default: true
  46286. },
  46287. ]
  46288. ))
  46289. characterMakers.push(() => makeCharacter(
  46290. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46291. {
  46292. side: {
  46293. height: math.unit(100, "feet"),
  46294. name: "Side",
  46295. image: {
  46296. source: "./media/characters/denora/side.svg",
  46297. extra: 875/803,
  46298. bottom: 9/884
  46299. }
  46300. },
  46301. },
  46302. [
  46303. {
  46304. name: "Standard",
  46305. height: math.unit(100, "feet"),
  46306. default: true
  46307. },
  46308. {
  46309. name: "Grand",
  46310. height: math.unit(1000, "feet")
  46311. },
  46312. {
  46313. name: "Conquering",
  46314. height: math.unit(10000, "feet")
  46315. },
  46316. ]
  46317. ))
  46318. characterMakers.push(() => makeCharacter(
  46319. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46320. {
  46321. dressed: {
  46322. height: math.unit(8 + 5/12, "feet"),
  46323. weight: math.unit(700, "lb"),
  46324. name: "Dressed",
  46325. image: {
  46326. source: "./media/characters/kiva/dressed.svg",
  46327. extra: 1102/1055,
  46328. bottom: 60/1162
  46329. }
  46330. },
  46331. nude: {
  46332. height: math.unit(8 + 5/12, "feet"),
  46333. weight: math.unit(700, "lb"),
  46334. name: "Nude",
  46335. image: {
  46336. source: "./media/characters/kiva/nude.svg",
  46337. extra: 1102/1055,
  46338. bottom: 60/1162
  46339. }
  46340. },
  46341. },
  46342. [
  46343. {
  46344. name: "Base Height",
  46345. height: math.unit(8 + 5/12, "feet"),
  46346. default: true
  46347. },
  46348. {
  46349. name: "Macro",
  46350. height: math.unit(100, "feet")
  46351. },
  46352. {
  46353. name: "Max",
  46354. height: math.unit(3280, "feet")
  46355. },
  46356. ]
  46357. ))
  46358. characterMakers.push(() => makeCharacter(
  46359. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46360. {
  46361. front: {
  46362. height: math.unit(6 + 8/12, "feet"),
  46363. weight: math.unit(250, "lb"),
  46364. name: "Front",
  46365. image: {
  46366. source: "./media/characters/ztragon/front.svg",
  46367. extra: 1825/1684,
  46368. bottom: 98/1923
  46369. }
  46370. },
  46371. },
  46372. [
  46373. {
  46374. name: "Normal",
  46375. height: math.unit(6 + 8/12, "feet"),
  46376. default: true
  46377. },
  46378. {
  46379. name: "Macro",
  46380. height: math.unit(80, "feet")
  46381. },
  46382. ]
  46383. ))
  46384. characterMakers.push(() => makeCharacter(
  46385. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46386. {
  46387. front: {
  46388. height: math.unit(10.4, "feet"),
  46389. weight: math.unit(2, "tons"),
  46390. name: "Front",
  46391. image: {
  46392. source: "./media/characters/yesenia/front.svg",
  46393. extra: 1479/1474,
  46394. bottom: 233/1712
  46395. }
  46396. },
  46397. },
  46398. [
  46399. {
  46400. name: "Normal",
  46401. height: math.unit(10.4, "feet"),
  46402. default: true
  46403. },
  46404. ]
  46405. ))
  46406. characterMakers.push(() => makeCharacter(
  46407. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46408. {
  46409. normal: {
  46410. height: math.unit(6 + 1/12, "feet"),
  46411. weight: math.unit(180, "lb"),
  46412. name: "Normal",
  46413. image: {
  46414. source: "./media/characters/leanne-lycheborne/normal.svg",
  46415. extra: 1748/1660,
  46416. bottom: 98/1846
  46417. }
  46418. },
  46419. were: {
  46420. height: math.unit(12, "feet"),
  46421. weight: math.unit(1600, "lb"),
  46422. name: "Were",
  46423. image: {
  46424. source: "./media/characters/leanne-lycheborne/were.svg",
  46425. extra: 1485/1432,
  46426. bottom: 66/1551
  46427. }
  46428. },
  46429. },
  46430. [
  46431. {
  46432. name: "Normal",
  46433. height: math.unit(6 + 1/12, "feet"),
  46434. default: true
  46435. },
  46436. ]
  46437. ))
  46438. characterMakers.push(() => makeCharacter(
  46439. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46440. {
  46441. side: {
  46442. height: math.unit(13, "feet"),
  46443. name: "Side",
  46444. image: {
  46445. source: "./media/characters/kira-tyler/side.svg",
  46446. extra: 693/393,
  46447. bottom: 58/751
  46448. }
  46449. },
  46450. },
  46451. [
  46452. {
  46453. name: "Normal",
  46454. height: math.unit(13, "feet"),
  46455. default: true
  46456. },
  46457. ]
  46458. ))
  46459. characterMakers.push(() => makeCharacter(
  46460. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46461. {
  46462. front: {
  46463. height: math.unit(10.3, "feet"),
  46464. weight: math.unit(150, "lb"),
  46465. name: "Front",
  46466. image: {
  46467. source: "./media/characters/blaze/front.svg",
  46468. extra: 1378/1286,
  46469. bottom: 172/1550
  46470. }
  46471. },
  46472. },
  46473. [
  46474. {
  46475. name: "Normal",
  46476. height: math.unit(10.3, "feet"),
  46477. default: true
  46478. },
  46479. ]
  46480. ))
  46481. characterMakers.push(() => makeCharacter(
  46482. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46483. {
  46484. side: {
  46485. height: math.unit(2, "meters"),
  46486. weight: math.unit(400, "kg"),
  46487. name: "Side",
  46488. image: {
  46489. source: "./media/characters/anu/side.svg",
  46490. extra: 506/394,
  46491. bottom: 18/524
  46492. }
  46493. },
  46494. },
  46495. [
  46496. {
  46497. name: "Humanoid",
  46498. height: math.unit(2, "meters")
  46499. },
  46500. {
  46501. name: "Normal",
  46502. height: math.unit(5, "meters"),
  46503. default: true
  46504. },
  46505. ]
  46506. ))
  46507. characterMakers.push(() => makeCharacter(
  46508. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46509. {
  46510. front: {
  46511. height: math.unit(5 + 5/12, "feet"),
  46512. weight: math.unit(170, "lb"),
  46513. name: "Front",
  46514. image: {
  46515. source: "./media/characters/synx-the-lynx/front.svg",
  46516. extra: 1893/1745,
  46517. bottom: 17/1910
  46518. }
  46519. },
  46520. side: {
  46521. height: math.unit(5 + 5/12, "feet"),
  46522. weight: math.unit(170, "lb"),
  46523. name: "Side",
  46524. image: {
  46525. source: "./media/characters/synx-the-lynx/side.svg",
  46526. extra: 1884/1740,
  46527. bottom: 39/1923
  46528. }
  46529. },
  46530. back: {
  46531. height: math.unit(5 + 5/12, "feet"),
  46532. weight: math.unit(170, "lb"),
  46533. name: "Back",
  46534. image: {
  46535. source: "./media/characters/synx-the-lynx/back.svg",
  46536. extra: 1903/1755,
  46537. bottom: 14/1917
  46538. }
  46539. },
  46540. },
  46541. [
  46542. {
  46543. name: "Normal",
  46544. height: math.unit(5 + 5/12, "feet"),
  46545. default: true
  46546. },
  46547. ]
  46548. ))
  46549. characterMakers.push(() => makeCharacter(
  46550. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46551. {
  46552. back: {
  46553. height: math.unit(15, "feet"),
  46554. name: "Back",
  46555. image: {
  46556. source: "./media/characters/nadezda-fex/back.svg",
  46557. extra: 1695/1481,
  46558. bottom: 25/1720
  46559. }
  46560. },
  46561. },
  46562. [
  46563. {
  46564. name: "Normal",
  46565. height: math.unit(15, "feet"),
  46566. default: true
  46567. },
  46568. {
  46569. name: "Macro",
  46570. height: math.unit(2.5, "miles")
  46571. },
  46572. {
  46573. name: "Goddess",
  46574. height: math.unit(2, "multiverses")
  46575. },
  46576. ]
  46577. ))
  46578. characterMakers.push(() => makeCharacter(
  46579. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46580. {
  46581. front: {
  46582. height: math.unit(216, "cm"),
  46583. name: "Front",
  46584. image: {
  46585. source: "./media/characters/lev/front.svg",
  46586. extra: 1728/1670,
  46587. bottom: 82/1810
  46588. }
  46589. },
  46590. back: {
  46591. height: math.unit(216, "cm"),
  46592. name: "Back",
  46593. image: {
  46594. source: "./media/characters/lev/back.svg",
  46595. extra: 1738/1675,
  46596. bottom: 24/1762
  46597. }
  46598. },
  46599. dressed: {
  46600. height: math.unit(216, "cm"),
  46601. name: "Dressed",
  46602. image: {
  46603. source: "./media/characters/lev/dressed.svg",
  46604. extra: 1397/1351,
  46605. bottom: 73/1470
  46606. }
  46607. },
  46608. head: {
  46609. height: math.unit(0.51, "meter"),
  46610. name: "Head",
  46611. image: {
  46612. source: "./media/characters/lev/head.svg"
  46613. }
  46614. },
  46615. },
  46616. [
  46617. {
  46618. name: "Normal",
  46619. height: math.unit(216, "cm"),
  46620. default: true
  46621. },
  46622. {
  46623. name: "Relatively Macro",
  46624. height: math.unit(80, "meters")
  46625. },
  46626. {
  46627. name: "Megamacro",
  46628. height: math.unit(21600, "meters")
  46629. },
  46630. {
  46631. name: "Megamacro+",
  46632. height: math.unit(64800, "meters")
  46633. },
  46634. ]
  46635. ))
  46636. characterMakers.push(() => makeCharacter(
  46637. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46638. {
  46639. front: {
  46640. height: math.unit(2, "meters"),
  46641. weight: math.unit(80, "kg"),
  46642. name: "Front",
  46643. image: {
  46644. source: "./media/characters/moka/front.svg",
  46645. extra: 1337/1255,
  46646. bottom: 58/1395
  46647. }
  46648. },
  46649. },
  46650. [
  46651. {
  46652. name: "Micro",
  46653. height: math.unit(15, "cm")
  46654. },
  46655. {
  46656. name: "Normal",
  46657. height: math.unit(2, "meters"),
  46658. default: true
  46659. },
  46660. {
  46661. name: "Macro",
  46662. height: math.unit(20, "meters"),
  46663. },
  46664. ]
  46665. ))
  46666. characterMakers.push(() => makeCharacter(
  46667. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46668. {
  46669. front: {
  46670. height: math.unit(9, "feet"),
  46671. weight: math.unit(240, "lb"),
  46672. name: "Front",
  46673. image: {
  46674. source: "./media/characters/kuzco/front.svg",
  46675. extra: 1593/1487,
  46676. bottom: 32/1625
  46677. }
  46678. },
  46679. side: {
  46680. height: math.unit(9, "feet"),
  46681. weight: math.unit(240, "lb"),
  46682. name: "Side",
  46683. image: {
  46684. source: "./media/characters/kuzco/side.svg",
  46685. extra: 1575/1485,
  46686. bottom: 30/1605
  46687. }
  46688. },
  46689. back: {
  46690. height: math.unit(9, "feet"),
  46691. weight: math.unit(240, "lb"),
  46692. name: "Back",
  46693. image: {
  46694. source: "./media/characters/kuzco/back.svg",
  46695. extra: 1603/1514,
  46696. bottom: 14/1617
  46697. }
  46698. },
  46699. },
  46700. [
  46701. {
  46702. name: "Normal",
  46703. height: math.unit(9, "feet"),
  46704. default: true
  46705. },
  46706. ]
  46707. ))
  46708. characterMakers.push(() => makeCharacter(
  46709. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46710. {
  46711. side: {
  46712. height: math.unit(2, "meters"),
  46713. weight: math.unit(300, "kg"),
  46714. name: "Side",
  46715. image: {
  46716. source: "./media/characters/ceruleus/side.svg",
  46717. extra: 1068/974,
  46718. bottom: 126/1194
  46719. }
  46720. },
  46721. maw: {
  46722. height: math.unit(0.8125, "meter"),
  46723. name: "Maw",
  46724. image: {
  46725. source: "./media/characters/ceruleus/maw.svg"
  46726. }
  46727. },
  46728. },
  46729. [
  46730. {
  46731. name: "Normal",
  46732. height: math.unit(16, "meters"),
  46733. default: true
  46734. },
  46735. ]
  46736. ))
  46737. characterMakers.push(() => makeCharacter(
  46738. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46739. {
  46740. front: {
  46741. height: math.unit(9, "feet"),
  46742. weight: math.unit(500, "kg"),
  46743. name: "Front",
  46744. image: {
  46745. source: "./media/characters/acouya/front.svg",
  46746. extra: 1660/1473,
  46747. bottom: 28/1688
  46748. }
  46749. },
  46750. },
  46751. [
  46752. {
  46753. name: "Normal",
  46754. height: math.unit(9, "feet"),
  46755. default: true
  46756. },
  46757. ]
  46758. ))
  46759. characterMakers.push(() => makeCharacter(
  46760. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46761. {
  46762. front: {
  46763. height: math.unit(5 + 6/12, "feet"),
  46764. weight: math.unit(195, "lb"),
  46765. name: "Front",
  46766. image: {
  46767. source: "./media/characters/vant/front.svg",
  46768. extra: 1396/1320,
  46769. bottom: 20/1416
  46770. }
  46771. },
  46772. back: {
  46773. height: math.unit(5 + 6/12, "feet"),
  46774. weight: math.unit(195, "lb"),
  46775. name: "Back",
  46776. image: {
  46777. source: "./media/characters/vant/back.svg",
  46778. extra: 1396/1320,
  46779. bottom: 20/1416
  46780. }
  46781. },
  46782. maw: {
  46783. height: math.unit(0.75, "feet"),
  46784. name: "Maw",
  46785. image: {
  46786. source: "./media/characters/vant/maw.svg"
  46787. }
  46788. },
  46789. paw: {
  46790. height: math.unit(1.07, "feet"),
  46791. name: "Paw",
  46792. image: {
  46793. source: "./media/characters/vant/paw.svg"
  46794. }
  46795. },
  46796. },
  46797. [
  46798. {
  46799. name: "Micro",
  46800. height: math.unit(0.25, "inches")
  46801. },
  46802. {
  46803. name: "Normal",
  46804. height: math.unit(5 + 6/12, "feet"),
  46805. default: true
  46806. },
  46807. {
  46808. name: "Macro",
  46809. height: math.unit(75, "feet")
  46810. },
  46811. ]
  46812. ))
  46813. characterMakers.push(() => makeCharacter(
  46814. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46815. {
  46816. front: {
  46817. height: math.unit(30, "meters"),
  46818. weight: math.unit(363, "tons"),
  46819. name: "Front",
  46820. image: {
  46821. source: "./media/characters/ahra/front.svg",
  46822. extra: 1914/1814,
  46823. bottom: 46/1960
  46824. }
  46825. },
  46826. },
  46827. [
  46828. {
  46829. name: "Macro",
  46830. height: math.unit(30, "meters"),
  46831. default: true
  46832. },
  46833. ]
  46834. ))
  46835. characterMakers.push(() => makeCharacter(
  46836. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46837. {
  46838. undressed: {
  46839. height: math.unit(2, "m"),
  46840. weight: math.unit(250, "kg"),
  46841. name: "Undressed",
  46842. image: {
  46843. source: "./media/characters/coriander/undressed.svg",
  46844. extra: 1757/1606,
  46845. bottom: 107/1864
  46846. }
  46847. },
  46848. dressed: {
  46849. height: math.unit(2, "m"),
  46850. weight: math.unit(250, "kg"),
  46851. name: "Dressed",
  46852. image: {
  46853. source: "./media/characters/coriander/dressed.svg",
  46854. extra: 1757/1606,
  46855. bottom: 107/1864
  46856. }
  46857. },
  46858. },
  46859. [
  46860. {
  46861. name: "Normal",
  46862. height: math.unit(4, "meters"),
  46863. default: true
  46864. },
  46865. {
  46866. name: "XL",
  46867. height: math.unit(6, "meters")
  46868. },
  46869. {
  46870. name: "XXL",
  46871. height: math.unit(8, "meters")
  46872. },
  46873. ]
  46874. ))
  46875. characterMakers.push(() => makeCharacter(
  46876. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46877. {
  46878. front: {
  46879. height: math.unit(6, "feet"),
  46880. name: "Front",
  46881. image: {
  46882. source: "./media/characters/syrinx/front.svg",
  46883. extra: 1557/1259,
  46884. bottom: 171/1728
  46885. }
  46886. },
  46887. },
  46888. [
  46889. {
  46890. name: "Normal",
  46891. height: math.unit(6 + 3/12, "feet"),
  46892. default: true
  46893. },
  46894. ]
  46895. ))
  46896. characterMakers.push(() => makeCharacter(
  46897. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46898. {
  46899. front: {
  46900. height: math.unit(11 + 6/12, "feet"),
  46901. weight: math.unit(1.5, "tons"),
  46902. name: "Front",
  46903. image: {
  46904. source: "./media/characters/bor/front.svg",
  46905. extra: 1189/1109,
  46906. bottom: 170/1359
  46907. }
  46908. },
  46909. },
  46910. [
  46911. {
  46912. name: "Normal",
  46913. height: math.unit(11 + 6/12, "feet"),
  46914. default: true
  46915. },
  46916. {
  46917. name: "Macro",
  46918. height: math.unit(32 + 9/12, "feet")
  46919. },
  46920. ]
  46921. ))
  46922. characterMakers.push(() => makeCharacter(
  46923. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46924. {
  46925. anthro: {
  46926. height: math.unit(9, "feet"),
  46927. weight: math.unit(2076, "lb"),
  46928. name: "Anthro",
  46929. image: {
  46930. source: "./media/characters/abacus/anthro.svg",
  46931. extra: 1540/1494,
  46932. bottom: 233/1773
  46933. }
  46934. },
  46935. pigeon: {
  46936. height: math.unit(1, "feet"),
  46937. name: "Pigeon",
  46938. image: {
  46939. source: "./media/characters/abacus/pigeon.svg",
  46940. extra: 528/525,
  46941. bottom: 46/574
  46942. }
  46943. },
  46944. },
  46945. [
  46946. {
  46947. name: "Normal",
  46948. height: math.unit(9, "feet"),
  46949. default: true
  46950. },
  46951. ]
  46952. ))
  46953. characterMakers.push(() => makeCharacter(
  46954. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46955. {
  46956. side: {
  46957. height: math.unit(6, "feet"),
  46958. name: "Side",
  46959. image: {
  46960. source: "./media/characters/delkhan/side.svg",
  46961. extra: 1884/1786,
  46962. bottom: 308/2192
  46963. }
  46964. },
  46965. head: {
  46966. height: math.unit(3.38, "feet"),
  46967. name: "Head",
  46968. image: {
  46969. source: "./media/characters/delkhan/head.svg"
  46970. }
  46971. },
  46972. },
  46973. [
  46974. {
  46975. name: "Normal",
  46976. height: math.unit(72, "feet"),
  46977. default: true
  46978. },
  46979. {
  46980. name: "Giant",
  46981. height: math.unit(172, "feet")
  46982. },
  46983. ]
  46984. ))
  46985. characterMakers.push(() => makeCharacter(
  46986. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46987. {
  46988. standing: {
  46989. height: math.unit(6, "feet"),
  46990. name: "Standing",
  46991. image: {
  46992. source: "./media/characters/euchidat/standing.svg",
  46993. extra: 1612/1553,
  46994. bottom: 116/1728
  46995. }
  46996. },
  46997. leaning: {
  46998. height: math.unit(6, "feet"),
  46999. name: "Leaning",
  47000. image: {
  47001. source: "./media/characters/euchidat/leaning.svg",
  47002. extra: 1719/1674,
  47003. bottom: 27/1746
  47004. }
  47005. },
  47006. },
  47007. [
  47008. {
  47009. name: "Normal",
  47010. height: math.unit(175, "feet"),
  47011. default: true
  47012. },
  47013. {
  47014. name: "Megamacro",
  47015. height: math.unit(190, "miles")
  47016. },
  47017. {
  47018. name: "Gigamacro",
  47019. height: math.unit(190000, "miles")
  47020. },
  47021. ]
  47022. ))
  47023. characterMakers.push(() => makeCharacter(
  47024. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47025. {
  47026. front: {
  47027. height: math.unit(6, "feet"),
  47028. weight: math.unit(150, "lb"),
  47029. name: "Front",
  47030. image: {
  47031. source: "./media/characters/rebecca-stack/front.svg",
  47032. extra: 1256/1201,
  47033. bottom: 18/1274
  47034. }
  47035. },
  47036. },
  47037. [
  47038. {
  47039. name: "Normal",
  47040. height: math.unit(5 + 8/12, "feet"),
  47041. default: true
  47042. },
  47043. {
  47044. name: "Demolitionist",
  47045. height: math.unit(200, "feet")
  47046. },
  47047. {
  47048. name: "Out of Control",
  47049. height: math.unit(2, "miles")
  47050. },
  47051. {
  47052. name: "Giga",
  47053. height: math.unit(7200, "miles")
  47054. },
  47055. ]
  47056. ))
  47057. characterMakers.push(() => makeCharacter(
  47058. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47059. {
  47060. front: {
  47061. height: math.unit(6, "feet"),
  47062. weight: math.unit(150, "lb"),
  47063. name: "Front",
  47064. image: {
  47065. source: "./media/characters/jenny-cartwright/front.svg",
  47066. extra: 1384/1376,
  47067. bottom: 58/1442
  47068. }
  47069. },
  47070. },
  47071. [
  47072. {
  47073. name: "Normal",
  47074. height: math.unit(6 + 7/12, "feet"),
  47075. default: true
  47076. },
  47077. {
  47078. name: "Librarian",
  47079. height: math.unit(55, "feet")
  47080. },
  47081. {
  47082. name: "Sightseer",
  47083. height: math.unit(50, "miles")
  47084. },
  47085. {
  47086. name: "Giga",
  47087. height: math.unit(30000, "miles")
  47088. },
  47089. ]
  47090. ))
  47091. characterMakers.push(() => makeCharacter(
  47092. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47093. {
  47094. nude: {
  47095. height: math.unit(8, "feet"),
  47096. weight: math.unit(225, "lb"),
  47097. name: "Nude",
  47098. image: {
  47099. source: "./media/characters/marvy/nude.svg",
  47100. extra: 1900/1683,
  47101. bottom: 89/1989
  47102. }
  47103. },
  47104. dressed: {
  47105. height: math.unit(8, "feet"),
  47106. weight: math.unit(225, "lb"),
  47107. name: "Dressed",
  47108. image: {
  47109. source: "./media/characters/marvy/dressed.svg",
  47110. extra: 1900/1683,
  47111. bottom: 89/1989
  47112. }
  47113. },
  47114. head: {
  47115. height: math.unit(2.85, "feet"),
  47116. name: "Head",
  47117. image: {
  47118. source: "./media/characters/marvy/head.svg"
  47119. }
  47120. },
  47121. },
  47122. [
  47123. {
  47124. name: "Normal",
  47125. height: math.unit(8, "feet"),
  47126. default: true
  47127. },
  47128. ]
  47129. ))
  47130. characterMakers.push(() => makeCharacter(
  47131. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47132. {
  47133. front: {
  47134. height: math.unit(8, "feet"),
  47135. weight: math.unit(250, "lb"),
  47136. name: "Front",
  47137. image: {
  47138. source: "./media/characters/leah/front.svg",
  47139. extra: 1257/1149,
  47140. bottom: 109/1366
  47141. }
  47142. },
  47143. },
  47144. [
  47145. {
  47146. name: "Normal",
  47147. height: math.unit(8, "feet"),
  47148. default: true
  47149. },
  47150. {
  47151. name: "Minimacro",
  47152. height: math.unit(40, "feet")
  47153. },
  47154. {
  47155. name: "Macro",
  47156. height: math.unit(124, "feet")
  47157. },
  47158. {
  47159. name: "Megamacro",
  47160. height: math.unit(850, "feet")
  47161. },
  47162. ]
  47163. ))
  47164. characterMakers.push(() => makeCharacter(
  47165. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47166. {
  47167. side: {
  47168. height: math.unit(13 + 6/12, "feet"),
  47169. weight: math.unit(3200, "lb"),
  47170. name: "Side",
  47171. image: {
  47172. source: "./media/characters/alvir/side.svg",
  47173. extra: 896/589,
  47174. bottom: 26/922
  47175. }
  47176. },
  47177. },
  47178. [
  47179. {
  47180. name: "Normal",
  47181. height: math.unit(13 + 6/12, "feet"),
  47182. default: true
  47183. },
  47184. ]
  47185. ))
  47186. characterMakers.push(() => makeCharacter(
  47187. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47188. {
  47189. front: {
  47190. height: math.unit(5 + 4/12, "feet"),
  47191. weight: math.unit(236, "lb"),
  47192. name: "Front",
  47193. image: {
  47194. source: "./media/characters/zaina-khalil/front.svg",
  47195. extra: 1533/1485,
  47196. bottom: 94/1627
  47197. }
  47198. },
  47199. side: {
  47200. height: math.unit(5 + 4/12, "feet"),
  47201. weight: math.unit(236, "lb"),
  47202. name: "Side",
  47203. image: {
  47204. source: "./media/characters/zaina-khalil/side.svg",
  47205. extra: 1537/1498,
  47206. bottom: 66/1603
  47207. }
  47208. },
  47209. back: {
  47210. height: math.unit(5 + 4/12, "feet"),
  47211. weight: math.unit(236, "lb"),
  47212. name: "Back",
  47213. image: {
  47214. source: "./media/characters/zaina-khalil/back.svg",
  47215. extra: 1546/1494,
  47216. bottom: 89/1635
  47217. }
  47218. },
  47219. },
  47220. [
  47221. {
  47222. name: "Normal",
  47223. height: math.unit(5 + 4/12, "feet"),
  47224. default: true
  47225. },
  47226. ]
  47227. ))
  47228. characterMakers.push(() => makeCharacter(
  47229. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47230. {
  47231. side: {
  47232. height: math.unit(12, "feet"),
  47233. weight: math.unit(4000, "lb"),
  47234. name: "Side",
  47235. image: {
  47236. source: "./media/characters/terry/side.svg",
  47237. extra: 1518/1439,
  47238. bottom: 149/1667
  47239. }
  47240. },
  47241. },
  47242. [
  47243. {
  47244. name: "Normal",
  47245. height: math.unit(12, "feet"),
  47246. default: true
  47247. },
  47248. ]
  47249. ))
  47250. characterMakers.push(() => makeCharacter(
  47251. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47252. {
  47253. front: {
  47254. height: math.unit(12, "feet"),
  47255. weight: math.unit(1500, "lb"),
  47256. name: "Front",
  47257. image: {
  47258. source: "./media/characters/kahea/front.svg",
  47259. extra: 1722/1617,
  47260. bottom: 179/1901
  47261. }
  47262. },
  47263. },
  47264. [
  47265. {
  47266. name: "Normal",
  47267. height: math.unit(12, "feet"),
  47268. default: true
  47269. },
  47270. ]
  47271. ))
  47272. characterMakers.push(() => makeCharacter(
  47273. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47274. {
  47275. demonFront: {
  47276. height: math.unit(36, "feet"),
  47277. name: "Front",
  47278. image: {
  47279. source: "./media/characters/alex-xuria/demon-front.svg",
  47280. extra: 1705/1673,
  47281. bottom: 198/1903
  47282. },
  47283. form: "demon",
  47284. default: true
  47285. },
  47286. demonBack: {
  47287. height: math.unit(36, "feet"),
  47288. name: "Back",
  47289. image: {
  47290. source: "./media/characters/alex-xuria/demon-back.svg",
  47291. extra: 1725/1693,
  47292. bottom: 70/1795
  47293. },
  47294. form: "demon"
  47295. },
  47296. demonHead: {
  47297. height: math.unit(2.14, "meters"),
  47298. name: "Head",
  47299. image: {
  47300. source: "./media/characters/alex-xuria/demon-head.svg"
  47301. },
  47302. form: "demon"
  47303. },
  47304. demonHand: {
  47305. height: math.unit(1.61, "meters"),
  47306. name: "Hand",
  47307. image: {
  47308. source: "./media/characters/alex-xuria/demon-hand.svg"
  47309. },
  47310. form: "demon"
  47311. },
  47312. demonPaw: {
  47313. height: math.unit(1.35, "meters"),
  47314. name: "Paw",
  47315. image: {
  47316. source: "./media/characters/alex-xuria/demon-paw.svg"
  47317. },
  47318. form: "demon"
  47319. },
  47320. demonFoot: {
  47321. height: math.unit(2.2, "meters"),
  47322. name: "Foot",
  47323. image: {
  47324. source: "./media/characters/alex-xuria/demon-foot.svg"
  47325. },
  47326. form: "demon"
  47327. },
  47328. demonCock: {
  47329. height: math.unit(1.74, "meters"),
  47330. name: "Cock",
  47331. image: {
  47332. source: "./media/characters/alex-xuria/demon-cock.svg"
  47333. },
  47334. form: "demon"
  47335. },
  47336. demonTailClosed: {
  47337. height: math.unit(1.47, "meters"),
  47338. name: "Tail (Closed)",
  47339. image: {
  47340. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47341. },
  47342. form: "demon"
  47343. },
  47344. demonTailOpen: {
  47345. height: math.unit(2.85, "meters"),
  47346. name: "Tail (Open)",
  47347. image: {
  47348. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47349. },
  47350. form: "demon"
  47351. },
  47352. incubusFront: {
  47353. height: math.unit(12, "feet"),
  47354. name: "Front",
  47355. image: {
  47356. source: "./media/characters/alex-xuria/incubus-front.svg",
  47357. extra: 1754/1677,
  47358. bottom: 125/1879
  47359. },
  47360. form: "incubus",
  47361. default: true
  47362. },
  47363. incubusBack: {
  47364. height: math.unit(12, "feet"),
  47365. name: "Back",
  47366. image: {
  47367. source: "./media/characters/alex-xuria/incubus-back.svg",
  47368. extra: 1702/1647,
  47369. bottom: 30/1732
  47370. },
  47371. form: "incubus"
  47372. },
  47373. incubusHead: {
  47374. height: math.unit(3.45, "feet"),
  47375. name: "Head",
  47376. image: {
  47377. source: "./media/characters/alex-xuria/incubus-head.svg"
  47378. },
  47379. form: "incubus"
  47380. },
  47381. rabbitFront: {
  47382. height: math.unit(6, "feet"),
  47383. name: "Front",
  47384. image: {
  47385. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47386. extra: 1369/1349,
  47387. bottom: 45/1414
  47388. },
  47389. form: "rabbit",
  47390. default: true
  47391. },
  47392. rabbitSide: {
  47393. height: math.unit(6, "feet"),
  47394. name: "Side",
  47395. image: {
  47396. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47397. extra: 1370/1356,
  47398. bottom: 37/1407
  47399. },
  47400. form: "rabbit"
  47401. },
  47402. rabbitBack: {
  47403. height: math.unit(6, "feet"),
  47404. name: "Back",
  47405. image: {
  47406. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47407. extra: 1375/1358,
  47408. bottom: 43/1418
  47409. },
  47410. form: "rabbit"
  47411. },
  47412. },
  47413. [
  47414. {
  47415. name: "Normal",
  47416. height: math.unit(6, "feet"),
  47417. default: true,
  47418. form: "rabbit"
  47419. },
  47420. {
  47421. name: "Incubus",
  47422. height: math.unit(12, "feet"),
  47423. default: true,
  47424. form: "incubus"
  47425. },
  47426. {
  47427. name: "Demon",
  47428. height: math.unit(36, "feet"),
  47429. default: true,
  47430. form: "demon"
  47431. }
  47432. ],
  47433. {
  47434. "demon": {
  47435. name: "Demon",
  47436. default: true
  47437. },
  47438. "incubus": {
  47439. name: "Incubus",
  47440. },
  47441. "rabbit": {
  47442. name: "Rabbit"
  47443. }
  47444. }
  47445. ))
  47446. characterMakers.push(() => makeCharacter(
  47447. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47448. {
  47449. front: {
  47450. height: math.unit(7 + 5/12, "feet"),
  47451. weight: math.unit(510, "lb"),
  47452. name: "Front",
  47453. image: {
  47454. source: "./media/characters/syrup/front.svg",
  47455. extra: 932/916,
  47456. bottom: 26/958
  47457. }
  47458. },
  47459. },
  47460. [
  47461. {
  47462. name: "Normal",
  47463. height: math.unit(7 + 5/12, "feet"),
  47464. default: true
  47465. },
  47466. {
  47467. name: "Big",
  47468. height: math.unit(50, "feet")
  47469. },
  47470. {
  47471. name: "Macro",
  47472. height: math.unit(300, "feet")
  47473. },
  47474. {
  47475. name: "Megamacro",
  47476. height: math.unit(1, "mile")
  47477. },
  47478. ]
  47479. ))
  47480. characterMakers.push(() => makeCharacter(
  47481. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47482. {
  47483. front: {
  47484. height: math.unit(6 + 9/12, "feet"),
  47485. name: "Front",
  47486. image: {
  47487. source: "./media/characters/zeimne/front.svg",
  47488. extra: 1969/1806,
  47489. bottom: 53/2022
  47490. }
  47491. },
  47492. },
  47493. [
  47494. {
  47495. name: "Normal",
  47496. height: math.unit(6 + 9/12, "feet"),
  47497. default: true
  47498. },
  47499. {
  47500. name: "Giant",
  47501. height: math.unit(550, "feet")
  47502. },
  47503. {
  47504. name: "Mega",
  47505. height: math.unit(3, "miles")
  47506. },
  47507. {
  47508. name: "Giga",
  47509. height: math.unit(250, "miles")
  47510. },
  47511. {
  47512. name: "Tera",
  47513. height: math.unit(1, "AU")
  47514. },
  47515. ]
  47516. ))
  47517. characterMakers.push(() => makeCharacter(
  47518. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47519. {
  47520. front: {
  47521. height: math.unit(5 + 2/12, "feet"),
  47522. name: "Front",
  47523. image: {
  47524. source: "./media/characters/grar/front.svg",
  47525. extra: 1331/1119,
  47526. bottom: 60/1391
  47527. }
  47528. },
  47529. back: {
  47530. height: math.unit(5 + 2/12, "feet"),
  47531. name: "Back",
  47532. image: {
  47533. source: "./media/characters/grar/back.svg",
  47534. extra: 1385/1169,
  47535. bottom: 23/1408
  47536. }
  47537. },
  47538. },
  47539. [
  47540. {
  47541. name: "Normal",
  47542. height: math.unit(5 + 2/12, "feet"),
  47543. default: true
  47544. },
  47545. ]
  47546. ))
  47547. characterMakers.push(() => makeCharacter(
  47548. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47549. {
  47550. front: {
  47551. height: math.unit(13 + 7/12, "feet"),
  47552. weight: math.unit(2200, "lb"),
  47553. name: "Front",
  47554. image: {
  47555. source: "./media/characters/endraya/front.svg",
  47556. extra: 1289/1215,
  47557. bottom: 50/1339
  47558. }
  47559. },
  47560. nude: {
  47561. height: math.unit(13 + 7/12, "feet"),
  47562. weight: math.unit(2200, "lb"),
  47563. name: "Nude",
  47564. image: {
  47565. source: "./media/characters/endraya/nude.svg",
  47566. extra: 1247/1171,
  47567. bottom: 40/1287
  47568. }
  47569. },
  47570. head: {
  47571. height: math.unit(2.6, "feet"),
  47572. name: "Head",
  47573. image: {
  47574. source: "./media/characters/endraya/head.svg"
  47575. }
  47576. },
  47577. slit: {
  47578. height: math.unit(3.4, "feet"),
  47579. name: "Slit",
  47580. image: {
  47581. source: "./media/characters/endraya/slit.svg"
  47582. }
  47583. },
  47584. },
  47585. [
  47586. {
  47587. name: "Normal",
  47588. height: math.unit(13 + 7/12, "feet"),
  47589. default: true
  47590. },
  47591. {
  47592. name: "Macro",
  47593. height: math.unit(200, "feet")
  47594. },
  47595. ]
  47596. ))
  47597. characterMakers.push(() => makeCharacter(
  47598. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47599. {
  47600. front: {
  47601. height: math.unit(1.81, "meters"),
  47602. weight: math.unit(69, "kg"),
  47603. name: "Front",
  47604. image: {
  47605. source: "./media/characters/rodryana/front.svg",
  47606. extra: 2002/1921,
  47607. bottom: 53/2055
  47608. }
  47609. },
  47610. back: {
  47611. height: math.unit(1.81, "meters"),
  47612. weight: math.unit(69, "kg"),
  47613. name: "Back",
  47614. image: {
  47615. source: "./media/characters/rodryana/back.svg",
  47616. extra: 1993/1926,
  47617. bottom: 48/2041
  47618. }
  47619. },
  47620. maw: {
  47621. height: math.unit(0.19769417475, "meters"),
  47622. name: "Maw",
  47623. image: {
  47624. source: "./media/characters/rodryana/maw.svg"
  47625. }
  47626. },
  47627. slit: {
  47628. height: math.unit(0.31631067961, "meters"),
  47629. name: "Slit",
  47630. image: {
  47631. source: "./media/characters/rodryana/slit.svg"
  47632. }
  47633. },
  47634. },
  47635. [
  47636. {
  47637. name: "Normal",
  47638. height: math.unit(1.81, "meters")
  47639. },
  47640. {
  47641. name: "Mini Macro",
  47642. height: math.unit(181, "meters")
  47643. },
  47644. {
  47645. name: "Macro",
  47646. height: math.unit(452, "meters"),
  47647. default: true
  47648. },
  47649. {
  47650. name: "Mega Macro",
  47651. height: math.unit(1.375, "km")
  47652. },
  47653. {
  47654. name: "Giga Macro",
  47655. height: math.unit(13.575, "km")
  47656. },
  47657. ]
  47658. ))
  47659. characterMakers.push(() => makeCharacter(
  47660. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47661. {
  47662. front: {
  47663. height: math.unit(6, "feet"),
  47664. weight: math.unit(1000, "lb"),
  47665. name: "Front",
  47666. image: {
  47667. source: "./media/characters/asaya/front.svg",
  47668. extra: 1460/1200,
  47669. bottom: 71/1531
  47670. }
  47671. },
  47672. },
  47673. [
  47674. {
  47675. name: "Normal",
  47676. height: math.unit(8, "km"),
  47677. default: true
  47678. },
  47679. ]
  47680. ))
  47681. characterMakers.push(() => makeCharacter(
  47682. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47683. {
  47684. front: {
  47685. height: math.unit(3.5, "meters"),
  47686. name: "Front",
  47687. image: {
  47688. source: "./media/characters/sarzu-and-israz/front.svg",
  47689. extra: 1570/1558,
  47690. bottom: 150/1720
  47691. },
  47692. },
  47693. back: {
  47694. height: math.unit(3.5, "meters"),
  47695. name: "Back",
  47696. image: {
  47697. source: "./media/characters/sarzu-and-israz/back.svg",
  47698. extra: 1523/1509,
  47699. bottom: 132/1655
  47700. },
  47701. },
  47702. frontFemale: {
  47703. height: math.unit(3.5, "meters"),
  47704. name: "Front (Female)",
  47705. image: {
  47706. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47707. extra: 1570/1558,
  47708. bottom: 150/1720
  47709. },
  47710. },
  47711. frontHerm: {
  47712. height: math.unit(3.5, "meters"),
  47713. name: "Front (Herm)",
  47714. image: {
  47715. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47716. extra: 1570/1558,
  47717. bottom: 150/1720
  47718. },
  47719. },
  47720. },
  47721. [
  47722. {
  47723. name: "Normal",
  47724. height: math.unit(3.5, "meters"),
  47725. default: true,
  47726. },
  47727. {
  47728. name: "Macro",
  47729. height: math.unit(65.5, "meters"),
  47730. },
  47731. ],
  47732. ))
  47733. characterMakers.push(() => makeCharacter(
  47734. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47735. {
  47736. front: {
  47737. height: math.unit(6, "feet"),
  47738. weight: math.unit(250, "lb"),
  47739. name: "Front",
  47740. image: {
  47741. source: "./media/characters/zenimma/front.svg",
  47742. extra: 1346/1320,
  47743. bottom: 58/1404
  47744. }
  47745. },
  47746. back: {
  47747. height: math.unit(6, "feet"),
  47748. weight: math.unit(250, "lb"),
  47749. name: "Back",
  47750. image: {
  47751. source: "./media/characters/zenimma/back.svg",
  47752. extra: 1324/1308,
  47753. bottom: 44/1368
  47754. }
  47755. },
  47756. dick: {
  47757. height: math.unit(1.44, "feet"),
  47758. name: "Dick",
  47759. image: {
  47760. source: "./media/characters/zenimma/dick.svg"
  47761. }
  47762. },
  47763. },
  47764. [
  47765. {
  47766. name: "Canon Height",
  47767. height: math.unit(66, "miles"),
  47768. default: true
  47769. },
  47770. ]
  47771. ))
  47772. characterMakers.push(() => makeCharacter(
  47773. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47774. {
  47775. nude: {
  47776. height: math.unit(6, "feet"),
  47777. weight: math.unit(150, "lb"),
  47778. name: "Nude",
  47779. image: {
  47780. source: "./media/characters/shavon/nude.svg",
  47781. extra: 1242/1096,
  47782. bottom: 98/1340
  47783. }
  47784. },
  47785. dressed: {
  47786. height: math.unit(6, "feet"),
  47787. weight: math.unit(150, "lb"),
  47788. name: "Dressed",
  47789. image: {
  47790. source: "./media/characters/shavon/dressed.svg",
  47791. extra: 1242/1096,
  47792. bottom: 98/1340
  47793. }
  47794. },
  47795. },
  47796. [
  47797. {
  47798. name: "Macro",
  47799. height: math.unit(255, "feet"),
  47800. default: true
  47801. },
  47802. ]
  47803. ))
  47804. characterMakers.push(() => makeCharacter(
  47805. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47806. {
  47807. front: {
  47808. height: math.unit(6, "feet"),
  47809. name: "Front",
  47810. image: {
  47811. source: "./media/characters/steph/front.svg",
  47812. extra: 1430/1330,
  47813. bottom: 54/1484
  47814. }
  47815. },
  47816. },
  47817. [
  47818. {
  47819. name: "Normal",
  47820. height: math.unit(6, "feet"),
  47821. default: true
  47822. },
  47823. ]
  47824. ))
  47825. characterMakers.push(() => makeCharacter(
  47826. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47827. {
  47828. front: {
  47829. height: math.unit(9, "feet"),
  47830. weight: math.unit(400, "lb"),
  47831. name: "Front",
  47832. image: {
  47833. source: "./media/characters/kil'aman/front.svg",
  47834. extra: 1210/1159,
  47835. bottom: 109/1319
  47836. }
  47837. },
  47838. head: {
  47839. height: math.unit(2.14, "feet"),
  47840. name: "Head",
  47841. image: {
  47842. source: "./media/characters/kil'aman/head.svg"
  47843. }
  47844. },
  47845. maw: {
  47846. height: math.unit(1.21, "feet"),
  47847. name: "Maw",
  47848. image: {
  47849. source: "./media/characters/kil'aman/maw.svg"
  47850. }
  47851. },
  47852. foot: {
  47853. height: math.unit(1.7, "feet"),
  47854. name: "Foot",
  47855. image: {
  47856. source: "./media/characters/kil'aman/foot.svg"
  47857. }
  47858. },
  47859. dick: {
  47860. height: math.unit(2.1, "feet"),
  47861. name: "Dick",
  47862. image: {
  47863. source: "./media/characters/kil'aman/dick.svg"
  47864. }
  47865. },
  47866. },
  47867. [
  47868. {
  47869. name: "Normal",
  47870. height: math.unit(9, "feet")
  47871. },
  47872. {
  47873. name: "Canon Height",
  47874. height: math.unit(10, "miles"),
  47875. default: true
  47876. },
  47877. {
  47878. name: "Maximum",
  47879. height: math.unit(6e9, "miles")
  47880. },
  47881. ]
  47882. ))
  47883. characterMakers.push(() => makeCharacter(
  47884. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47885. {
  47886. front: {
  47887. height: math.unit(90, "feet"),
  47888. weight: math.unit(675000, "lb"),
  47889. name: "Front",
  47890. image: {
  47891. source: "./media/characters/qadan/front.svg",
  47892. extra: 1012/1004,
  47893. bottom: 78/1090
  47894. }
  47895. },
  47896. back: {
  47897. height: math.unit(90, "feet"),
  47898. weight: math.unit(675000, "lb"),
  47899. name: "Back",
  47900. image: {
  47901. source: "./media/characters/qadan/back.svg",
  47902. extra: 1042/1031,
  47903. bottom: 55/1097
  47904. }
  47905. },
  47906. armored: {
  47907. height: math.unit(90, "feet"),
  47908. weight: math.unit(675000, "lb"),
  47909. name: "Armored",
  47910. image: {
  47911. source: "./media/characters/qadan/armored.svg",
  47912. extra: 1047/1037,
  47913. bottom: 48/1095
  47914. }
  47915. },
  47916. },
  47917. [
  47918. {
  47919. name: "Normal",
  47920. height: math.unit(90, "feet"),
  47921. default: true
  47922. },
  47923. ]
  47924. ))
  47925. characterMakers.push(() => makeCharacter(
  47926. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47927. {
  47928. front: {
  47929. height: math.unit(6, "feet"),
  47930. weight: math.unit(225, "lb"),
  47931. name: "Front",
  47932. image: {
  47933. source: "./media/characters/brooke/front.svg",
  47934. extra: 1050/1010,
  47935. bottom: 66/1116
  47936. }
  47937. },
  47938. back: {
  47939. height: math.unit(6, "feet"),
  47940. weight: math.unit(225, "lb"),
  47941. name: "Back",
  47942. image: {
  47943. source: "./media/characters/brooke/back.svg",
  47944. extra: 1053/1013,
  47945. bottom: 41/1094
  47946. }
  47947. },
  47948. dressed: {
  47949. height: math.unit(6, "feet"),
  47950. weight: math.unit(225, "lb"),
  47951. name: "Dressed",
  47952. image: {
  47953. source: "./media/characters/brooke/dressed.svg",
  47954. extra: 1050/1010,
  47955. bottom: 66/1116
  47956. }
  47957. },
  47958. },
  47959. [
  47960. {
  47961. name: "Canon Height",
  47962. height: math.unit(500, "miles"),
  47963. default: true
  47964. },
  47965. ]
  47966. ))
  47967. characterMakers.push(() => makeCharacter(
  47968. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47969. {
  47970. front: {
  47971. height: math.unit(6 + 2/12, "feet"),
  47972. weight: math.unit(210, "lb"),
  47973. name: "Front",
  47974. image: {
  47975. source: "./media/characters/wubs/front.svg",
  47976. extra: 1345/1325,
  47977. bottom: 70/1415
  47978. }
  47979. },
  47980. back: {
  47981. height: math.unit(6 + 2/12, "feet"),
  47982. weight: math.unit(210, "lb"),
  47983. name: "Back",
  47984. image: {
  47985. source: "./media/characters/wubs/back.svg",
  47986. extra: 1296/1275,
  47987. bottom: 58/1354
  47988. }
  47989. },
  47990. },
  47991. [
  47992. {
  47993. name: "Normal",
  47994. height: math.unit(6 + 2/12, "feet"),
  47995. default: true
  47996. },
  47997. {
  47998. name: "Macro",
  47999. height: math.unit(1000, "feet")
  48000. },
  48001. {
  48002. name: "Megamacro",
  48003. height: math.unit(1, "mile")
  48004. },
  48005. ]
  48006. ))
  48007. characterMakers.push(() => makeCharacter(
  48008. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48009. {
  48010. front: {
  48011. height: math.unit(4, "feet"),
  48012. weight: math.unit(120, "lb"),
  48013. name: "Front",
  48014. image: {
  48015. source: "./media/characters/blue/front.svg",
  48016. extra: 1636/1525,
  48017. bottom: 43/1679
  48018. }
  48019. },
  48020. back: {
  48021. height: math.unit(4, "feet"),
  48022. weight: math.unit(120, "lb"),
  48023. name: "Back",
  48024. image: {
  48025. source: "./media/characters/blue/back.svg",
  48026. extra: 1660/1560,
  48027. bottom: 57/1717
  48028. }
  48029. },
  48030. paws: {
  48031. height: math.unit(0.826, "feet"),
  48032. name: "Paws",
  48033. image: {
  48034. source: "./media/characters/blue/paws.svg"
  48035. }
  48036. },
  48037. },
  48038. [
  48039. {
  48040. name: "Micro",
  48041. height: math.unit(3, "inches")
  48042. },
  48043. {
  48044. name: "Normal",
  48045. height: math.unit(4, "feet"),
  48046. default: true
  48047. },
  48048. {
  48049. name: "Femenine Form",
  48050. height: math.unit(14, "feet")
  48051. },
  48052. {
  48053. name: "Werebat Form",
  48054. height: math.unit(18, "feet")
  48055. },
  48056. ]
  48057. ))
  48058. characterMakers.push(() => makeCharacter(
  48059. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48060. {
  48061. female: {
  48062. height: math.unit(7 + 4/12, "feet"),
  48063. weight: math.unit(243, "lb"),
  48064. name: "Female",
  48065. image: {
  48066. source: "./media/characters/kaya/female.svg",
  48067. extra: 975/898,
  48068. bottom: 34/1009
  48069. }
  48070. },
  48071. herm: {
  48072. height: math.unit(7 + 4/12, "feet"),
  48073. weight: math.unit(243, "lb"),
  48074. name: "Herm",
  48075. image: {
  48076. source: "./media/characters/kaya/herm.svg",
  48077. extra: 975/898,
  48078. bottom: 34/1009
  48079. }
  48080. },
  48081. },
  48082. [
  48083. {
  48084. name: "Normal",
  48085. height: math.unit(7 + 4/12, "feet"),
  48086. default: true
  48087. },
  48088. ]
  48089. ))
  48090. characterMakers.push(() => makeCharacter(
  48091. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48092. {
  48093. female: {
  48094. height: math.unit(9 + 4/12, "feet"),
  48095. weight: math.unit(398, "lb"),
  48096. name: "Female",
  48097. image: {
  48098. source: "./media/characters/kassandra/female.svg",
  48099. extra: 908/839,
  48100. bottom: 61/969
  48101. }
  48102. },
  48103. intersex: {
  48104. height: math.unit(9 + 4/12, "feet"),
  48105. weight: math.unit(398, "lb"),
  48106. name: "Intersex",
  48107. image: {
  48108. source: "./media/characters/kassandra/intersex.svg",
  48109. extra: 908/839,
  48110. bottom: 61/969
  48111. }
  48112. },
  48113. },
  48114. [
  48115. {
  48116. name: "Normal",
  48117. height: math.unit(9 + 4/12, "feet"),
  48118. default: true
  48119. },
  48120. ]
  48121. ))
  48122. characterMakers.push(() => makeCharacter(
  48123. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48124. {
  48125. front: {
  48126. height: math.unit(3, "meters"),
  48127. name: "Front",
  48128. image: {
  48129. source: "./media/characters/amy/front.svg",
  48130. extra: 1380/1343,
  48131. bottom: 70/1450
  48132. }
  48133. },
  48134. back: {
  48135. height: math.unit(3, "meters"),
  48136. name: "Back",
  48137. image: {
  48138. source: "./media/characters/amy/back.svg",
  48139. extra: 1380/1347,
  48140. bottom: 66/1446
  48141. }
  48142. },
  48143. },
  48144. [
  48145. {
  48146. name: "Normal",
  48147. height: math.unit(3, "meters"),
  48148. default: true
  48149. },
  48150. ]
  48151. ))
  48152. characterMakers.push(() => makeCharacter(
  48153. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48154. {
  48155. side: {
  48156. height: math.unit(47, "cm"),
  48157. weight: math.unit(10.8, "kg"),
  48158. name: "Side",
  48159. image: {
  48160. source: "./media/characters/alphaschakal/side.svg",
  48161. extra: 1058/568,
  48162. bottom: 62/1120
  48163. }
  48164. },
  48165. back: {
  48166. height: math.unit(78, "cm"),
  48167. weight: math.unit(10.8, "kg"),
  48168. name: "Back",
  48169. image: {
  48170. source: "./media/characters/alphaschakal/back.svg",
  48171. extra: 1102/942,
  48172. bottom: 185/1287
  48173. }
  48174. },
  48175. head: {
  48176. height: math.unit(28, "cm"),
  48177. name: "Head",
  48178. image: {
  48179. source: "./media/characters/alphaschakal/head.svg",
  48180. extra: 696/508,
  48181. bottom: 0/696
  48182. }
  48183. },
  48184. paw: {
  48185. height: math.unit(16, "cm"),
  48186. name: "Paw",
  48187. image: {
  48188. source: "./media/characters/alphaschakal/paw.svg"
  48189. }
  48190. },
  48191. },
  48192. [
  48193. {
  48194. name: "Normal",
  48195. height: math.unit(47, "cm"),
  48196. default: true
  48197. },
  48198. {
  48199. name: "Macro",
  48200. height: math.unit(340, "cm")
  48201. },
  48202. ]
  48203. ))
  48204. characterMakers.push(() => makeCharacter(
  48205. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48206. {
  48207. front: {
  48208. height: math.unit(36, "earths"),
  48209. name: "Front",
  48210. image: {
  48211. source: "./media/characters/ecobyss/front.svg",
  48212. extra: 1282/1215,
  48213. bottom: 11/1293
  48214. }
  48215. },
  48216. back: {
  48217. height: math.unit(36, "earths"),
  48218. name: "Back",
  48219. image: {
  48220. source: "./media/characters/ecobyss/back.svg",
  48221. extra: 1291/1222,
  48222. bottom: 8/1299
  48223. }
  48224. },
  48225. },
  48226. [
  48227. {
  48228. name: "Normal",
  48229. height: math.unit(36, "earths"),
  48230. default: true
  48231. },
  48232. ]
  48233. ))
  48234. characterMakers.push(() => makeCharacter(
  48235. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48236. {
  48237. front: {
  48238. height: math.unit(12, "feet"),
  48239. name: "Front",
  48240. image: {
  48241. source: "./media/characters/vasuk/front.svg",
  48242. extra: 1326/1207,
  48243. bottom: 64/1390
  48244. }
  48245. },
  48246. },
  48247. [
  48248. {
  48249. name: "Normal",
  48250. height: math.unit(12, "feet"),
  48251. default: true
  48252. },
  48253. ]
  48254. ))
  48255. characterMakers.push(() => makeCharacter(
  48256. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48257. {
  48258. side: {
  48259. height: math.unit(100, "feet"),
  48260. name: "Side",
  48261. image: {
  48262. source: "./media/characters/linneaus/side.svg",
  48263. extra: 987/807,
  48264. bottom: 47/1034
  48265. }
  48266. },
  48267. },
  48268. [
  48269. {
  48270. name: "Macro",
  48271. height: math.unit(100, "feet"),
  48272. default: true
  48273. },
  48274. ]
  48275. ))
  48276. characterMakers.push(() => makeCharacter(
  48277. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48278. {
  48279. front: {
  48280. height: math.unit(8, "feet"),
  48281. weight: math.unit(1200, "lb"),
  48282. name: "Front",
  48283. image: {
  48284. source: "./media/characters/nyterious-daligdig/front.svg",
  48285. extra: 1284/1094,
  48286. bottom: 84/1368
  48287. }
  48288. },
  48289. back: {
  48290. height: math.unit(8, "feet"),
  48291. weight: math.unit(1200, "lb"),
  48292. name: "Back",
  48293. image: {
  48294. source: "./media/characters/nyterious-daligdig/back.svg",
  48295. extra: 1301/1121,
  48296. bottom: 129/1430
  48297. }
  48298. },
  48299. mouth: {
  48300. height: math.unit(1.464, "feet"),
  48301. name: "Mouth",
  48302. image: {
  48303. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48304. }
  48305. },
  48306. },
  48307. [
  48308. {
  48309. name: "Small",
  48310. height: math.unit(8, "feet"),
  48311. default: true
  48312. },
  48313. {
  48314. name: "Normal",
  48315. height: math.unit(15, "feet")
  48316. },
  48317. {
  48318. name: "Macro",
  48319. height: math.unit(90, "feet")
  48320. },
  48321. ]
  48322. ))
  48323. characterMakers.push(() => makeCharacter(
  48324. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48325. {
  48326. front: {
  48327. height: math.unit(7 + 4/12, "feet"),
  48328. weight: math.unit(252, "lb"),
  48329. name: "Front",
  48330. image: {
  48331. source: "./media/characters/bandel/front.svg",
  48332. extra: 1946/1775,
  48333. bottom: 26/1972
  48334. }
  48335. },
  48336. back: {
  48337. height: math.unit(7 + 4/12, "feet"),
  48338. weight: math.unit(252, "lb"),
  48339. name: "Back",
  48340. image: {
  48341. source: "./media/characters/bandel/back.svg",
  48342. extra: 1940/1770,
  48343. bottom: 25/1965
  48344. }
  48345. },
  48346. maw: {
  48347. height: math.unit(2.15, "feet"),
  48348. name: "Maw",
  48349. image: {
  48350. source: "./media/characters/bandel/maw.svg"
  48351. }
  48352. },
  48353. stomach: {
  48354. height: math.unit(1.95, "feet"),
  48355. name: "Stomach",
  48356. image: {
  48357. source: "./media/characters/bandel/stomach.svg"
  48358. }
  48359. },
  48360. },
  48361. [
  48362. {
  48363. name: "Normal",
  48364. height: math.unit(7 + 4/12, "feet"),
  48365. default: true
  48366. },
  48367. ]
  48368. ))
  48369. characterMakers.push(() => makeCharacter(
  48370. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48371. {
  48372. front: {
  48373. height: math.unit(10 + 5/12, "feet"),
  48374. weight: math.unit(773.5, "kg"),
  48375. name: "Front",
  48376. image: {
  48377. source: "./media/characters/zed/front.svg",
  48378. extra: 987/941,
  48379. bottom: 52/1039
  48380. }
  48381. },
  48382. },
  48383. [
  48384. {
  48385. name: "Short",
  48386. height: math.unit(5 + 4/12, "feet")
  48387. },
  48388. {
  48389. name: "Average",
  48390. height: math.unit(10 + 5/12, "feet"),
  48391. default: true
  48392. },
  48393. {
  48394. name: "Mini-Macro",
  48395. height: math.unit(24 + 9/12, "feet")
  48396. },
  48397. {
  48398. name: "Macro",
  48399. height: math.unit(249, "feet")
  48400. },
  48401. {
  48402. name: "Mega-Macro",
  48403. height: math.unit(12490, "feet")
  48404. },
  48405. {
  48406. name: "Giga-Macro",
  48407. height: math.unit(24.9, "miles")
  48408. },
  48409. {
  48410. name: "Tera-Macro",
  48411. height: math.unit(24900, "miles")
  48412. },
  48413. {
  48414. name: "Cosmic Scale",
  48415. height: math.unit(38.9, "lightyears")
  48416. },
  48417. {
  48418. name: "Universal Scale",
  48419. height: math.unit(138e12, "lightyears")
  48420. },
  48421. ]
  48422. ))
  48423. characterMakers.push(() => makeCharacter(
  48424. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48425. {
  48426. front: {
  48427. height: math.unit(1561, "inches"),
  48428. name: "Front",
  48429. image: {
  48430. source: "./media/characters/ivan/front.svg",
  48431. extra: 1126/1071,
  48432. bottom: 26/1152
  48433. }
  48434. },
  48435. back: {
  48436. height: math.unit(1561, "inches"),
  48437. name: "Back",
  48438. image: {
  48439. source: "./media/characters/ivan/back.svg",
  48440. extra: 1134/1079,
  48441. bottom: 30/1164
  48442. }
  48443. },
  48444. },
  48445. [
  48446. {
  48447. name: "Normal",
  48448. height: math.unit(1561, "inches"),
  48449. default: true
  48450. },
  48451. ]
  48452. ))
  48453. characterMakers.push(() => makeCharacter(
  48454. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48455. {
  48456. front: {
  48457. height: math.unit(5 + 7/12, "feet"),
  48458. weight: math.unit(150, "lb"),
  48459. name: "Front",
  48460. image: {
  48461. source: "./media/characters/robin-arctic-hare/front.svg",
  48462. extra: 1148/974,
  48463. bottom: 20/1168
  48464. }
  48465. },
  48466. },
  48467. [
  48468. {
  48469. name: "Normal",
  48470. height: math.unit(5 + 7/12, "feet"),
  48471. default: true
  48472. },
  48473. ]
  48474. ))
  48475. characterMakers.push(() => makeCharacter(
  48476. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48477. {
  48478. side: {
  48479. height: math.unit(5, "feet"),
  48480. name: "Side",
  48481. image: {
  48482. source: "./media/characters/birch/side.svg",
  48483. extra: 985/796,
  48484. bottom: 111/1096
  48485. }
  48486. },
  48487. },
  48488. [
  48489. {
  48490. name: "Normal",
  48491. height: math.unit(5, "feet"),
  48492. default: true
  48493. },
  48494. ]
  48495. ))
  48496. characterMakers.push(() => makeCharacter(
  48497. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48498. {
  48499. front: {
  48500. height: math.unit(4, "feet"),
  48501. name: "Front",
  48502. image: {
  48503. source: "./media/characters/rasp/front.svg",
  48504. extra: 561/478,
  48505. bottom: 74/635
  48506. }
  48507. },
  48508. },
  48509. [
  48510. {
  48511. name: "Normal",
  48512. height: math.unit(4, "feet"),
  48513. default: true
  48514. },
  48515. ]
  48516. ))
  48517. characterMakers.push(() => makeCharacter(
  48518. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48519. {
  48520. front: {
  48521. height: math.unit(4 + 6/12, "feet"),
  48522. name: "Front",
  48523. image: {
  48524. source: "./media/characters/agatha/front.svg",
  48525. extra: 947/933,
  48526. bottom: 42/989
  48527. }
  48528. },
  48529. back: {
  48530. height: math.unit(4 + 6/12, "feet"),
  48531. name: "Back",
  48532. image: {
  48533. source: "./media/characters/agatha/back.svg",
  48534. extra: 935/922,
  48535. bottom: 48/983
  48536. }
  48537. },
  48538. },
  48539. [
  48540. {
  48541. name: "Normal",
  48542. height: math.unit(4 + 6 /12, "feet"),
  48543. default: true
  48544. },
  48545. {
  48546. name: "Max Size",
  48547. height: math.unit(500, "feet")
  48548. },
  48549. ]
  48550. ))
  48551. characterMakers.push(() => makeCharacter(
  48552. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48553. {
  48554. side: {
  48555. height: math.unit(30, "feet"),
  48556. name: "Side",
  48557. image: {
  48558. source: "./media/characters/roggy/side.svg",
  48559. extra: 909/643,
  48560. bottom: 63/972
  48561. }
  48562. },
  48563. lounging: {
  48564. height: math.unit(20, "feet"),
  48565. name: "Lounging",
  48566. image: {
  48567. source: "./media/characters/roggy/lounging.svg",
  48568. extra: 643/479,
  48569. bottom: 145/788
  48570. }
  48571. },
  48572. handpaw: {
  48573. height: math.unit(13.1, "feet"),
  48574. name: "Handpaw",
  48575. image: {
  48576. source: "./media/characters/roggy/handpaw.svg"
  48577. }
  48578. },
  48579. footpaw: {
  48580. height: math.unit(15.8, "feet"),
  48581. name: "Footpaw",
  48582. image: {
  48583. source: "./media/characters/roggy/footpaw.svg"
  48584. }
  48585. },
  48586. },
  48587. [
  48588. {
  48589. name: "Menacing",
  48590. height: math.unit(30, "feet"),
  48591. default: true
  48592. },
  48593. ]
  48594. ))
  48595. characterMakers.push(() => makeCharacter(
  48596. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48597. {
  48598. front: {
  48599. height: math.unit(5 + 7/12, "feet"),
  48600. weight: math.unit(135, "lb"),
  48601. name: "Front",
  48602. image: {
  48603. source: "./media/characters/naomi/front.svg",
  48604. extra: 1209/1154,
  48605. bottom: 129/1338
  48606. }
  48607. },
  48608. back: {
  48609. height: math.unit(5 + 7/12, "feet"),
  48610. weight: math.unit(135, "lb"),
  48611. name: "Back",
  48612. image: {
  48613. source: "./media/characters/naomi/back.svg",
  48614. extra: 1252/1190,
  48615. bottom: 23/1275
  48616. }
  48617. },
  48618. },
  48619. [
  48620. {
  48621. name: "Normal",
  48622. height: math.unit(5 + 7 /12, "feet"),
  48623. default: true
  48624. },
  48625. ]
  48626. ))
  48627. characterMakers.push(() => makeCharacter(
  48628. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48629. {
  48630. side: {
  48631. height: math.unit(35, "meters"),
  48632. name: "Side",
  48633. image: {
  48634. source: "./media/characters/kimpi/side.svg",
  48635. extra: 419/382,
  48636. bottom: 63/482
  48637. }
  48638. },
  48639. hand: {
  48640. height: math.unit(8.96, "meters"),
  48641. name: "Hand",
  48642. image: {
  48643. source: "./media/characters/kimpi/hand.svg"
  48644. }
  48645. },
  48646. },
  48647. [
  48648. {
  48649. name: "Normal",
  48650. height: math.unit(35, "meters"),
  48651. default: true
  48652. },
  48653. ]
  48654. ))
  48655. characterMakers.push(() => makeCharacter(
  48656. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48657. {
  48658. front: {
  48659. height: math.unit(4 + 4/12, "feet"),
  48660. name: "Front",
  48661. image: {
  48662. source: "./media/characters/pepper-purrloin/front.svg",
  48663. extra: 1141/1024,
  48664. bottom: 21/1162
  48665. }
  48666. },
  48667. },
  48668. [
  48669. {
  48670. name: "Normal",
  48671. height: math.unit(4 + 4/12, "feet"),
  48672. default: true
  48673. },
  48674. ]
  48675. ))
  48676. characterMakers.push(() => makeCharacter(
  48677. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48678. {
  48679. front: {
  48680. height: math.unit(6 + 2/12, "feet"),
  48681. name: "Front",
  48682. image: {
  48683. source: "./media/characters/raphael/front.svg",
  48684. extra: 1101/962,
  48685. bottom: 59/1160
  48686. }
  48687. },
  48688. },
  48689. [
  48690. {
  48691. name: "Normal",
  48692. height: math.unit(6 + 2/12, "feet"),
  48693. default: true
  48694. },
  48695. ]
  48696. ))
  48697. characterMakers.push(() => makeCharacter(
  48698. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48699. {
  48700. front: {
  48701. height: math.unit(6, "feet"),
  48702. weight: math.unit(150, "lb"),
  48703. name: "Front",
  48704. image: {
  48705. source: "./media/characters/victor-williams/front.svg",
  48706. extra: 1894/1825,
  48707. bottom: 67/1961
  48708. }
  48709. },
  48710. },
  48711. [
  48712. {
  48713. name: "Normal",
  48714. height: math.unit(6, "feet"),
  48715. default: true
  48716. },
  48717. ]
  48718. ))
  48719. characterMakers.push(() => makeCharacter(
  48720. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48721. {
  48722. front: {
  48723. height: math.unit(5 + 8/12, "feet"),
  48724. weight: math.unit(150, "lb"),
  48725. name: "Front",
  48726. image: {
  48727. source: "./media/characters/rachel/front.svg",
  48728. extra: 1902/1787,
  48729. bottom: 46/1948
  48730. }
  48731. },
  48732. },
  48733. [
  48734. {
  48735. name: "Base Height",
  48736. height: math.unit(5 + 8/12, "feet"),
  48737. default: true
  48738. },
  48739. {
  48740. name: "Macro",
  48741. height: math.unit(200, "feet")
  48742. },
  48743. {
  48744. name: "Mega Macro",
  48745. height: math.unit(1, "mile")
  48746. },
  48747. {
  48748. name: "Giga Macro",
  48749. height: math.unit(1500, "miles")
  48750. },
  48751. {
  48752. name: "Tera Macro",
  48753. height: math.unit(8000, "miles")
  48754. },
  48755. {
  48756. name: "Tera Macro+",
  48757. height: math.unit(2e5, "miles")
  48758. },
  48759. ]
  48760. ))
  48761. characterMakers.push(() => makeCharacter(
  48762. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48763. {
  48764. front: {
  48765. height: math.unit(6.5, "feet"),
  48766. name: "Front",
  48767. image: {
  48768. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48769. extra: 860/819,
  48770. bottom: 307/1167
  48771. }
  48772. },
  48773. back: {
  48774. height: math.unit(6.5, "feet"),
  48775. name: "Back",
  48776. image: {
  48777. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48778. extra: 880/837,
  48779. bottom: 395/1275
  48780. }
  48781. },
  48782. sleeping: {
  48783. height: math.unit(2.79, "feet"),
  48784. name: "Sleeping",
  48785. image: {
  48786. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48787. extra: 465/383,
  48788. bottom: 263/728
  48789. }
  48790. },
  48791. maw: {
  48792. height: math.unit(2.52, "feet"),
  48793. name: "Maw",
  48794. image: {
  48795. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48796. }
  48797. },
  48798. },
  48799. [
  48800. {
  48801. name: "Normal",
  48802. height: math.unit(6.5, "feet"),
  48803. default: true
  48804. },
  48805. ]
  48806. ))
  48807. characterMakers.push(() => makeCharacter(
  48808. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48809. {
  48810. front: {
  48811. height: math.unit(5, "feet"),
  48812. name: "Front",
  48813. image: {
  48814. source: "./media/characters/nova-nerium/front.svg",
  48815. extra: 1548/1392,
  48816. bottom: 374/1922
  48817. }
  48818. },
  48819. back: {
  48820. height: math.unit(5, "feet"),
  48821. name: "Back",
  48822. image: {
  48823. source: "./media/characters/nova-nerium/back.svg",
  48824. extra: 1658/1468,
  48825. bottom: 257/1915
  48826. }
  48827. },
  48828. },
  48829. [
  48830. {
  48831. name: "Normal",
  48832. height: math.unit(5, "feet"),
  48833. default: true
  48834. },
  48835. ]
  48836. ))
  48837. characterMakers.push(() => makeCharacter(
  48838. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48839. {
  48840. front: {
  48841. height: math.unit(5 + 4/12, "feet"),
  48842. name: "Front",
  48843. image: {
  48844. source: "./media/characters/ashe-pyriph/front.svg",
  48845. extra: 1935/1747,
  48846. bottom: 60/1995
  48847. }
  48848. },
  48849. },
  48850. [
  48851. {
  48852. name: "Normal",
  48853. height: math.unit(5 + 4/12, "feet"),
  48854. default: true
  48855. },
  48856. ]
  48857. ))
  48858. characterMakers.push(() => makeCharacter(
  48859. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48860. {
  48861. front: {
  48862. height: math.unit(8.7, "feet"),
  48863. name: "Front",
  48864. image: {
  48865. source: "./media/characters/flicker-wisp/front.svg",
  48866. extra: 1835/1613,
  48867. bottom: 449/2284
  48868. }
  48869. },
  48870. side: {
  48871. height: math.unit(8.7, "feet"),
  48872. name: "Side",
  48873. image: {
  48874. source: "./media/characters/flicker-wisp/side.svg",
  48875. extra: 1841/1642,
  48876. bottom: 336/2177
  48877. },
  48878. default: true
  48879. },
  48880. maw: {
  48881. height: math.unit(3.35, "feet"),
  48882. name: "Maw",
  48883. image: {
  48884. source: "./media/characters/flicker-wisp/maw.svg",
  48885. extra: 2338/1506,
  48886. bottom: 0/2338
  48887. }
  48888. },
  48889. ovipositor: {
  48890. height: math.unit(4.95, "feet"),
  48891. name: "Ovipositor",
  48892. image: {
  48893. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48894. }
  48895. },
  48896. egg: {
  48897. height: math.unit(0.385, "feet"),
  48898. weight: math.unit(2, "lb"),
  48899. name: "Egg",
  48900. image: {
  48901. source: "./media/characters/flicker-wisp/egg.svg"
  48902. }
  48903. },
  48904. },
  48905. [
  48906. {
  48907. name: "Normal",
  48908. height: math.unit(8.7, "feet"),
  48909. default: true
  48910. },
  48911. ]
  48912. ))
  48913. characterMakers.push(() => makeCharacter(
  48914. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48915. {
  48916. side: {
  48917. height: math.unit(11, "feet"),
  48918. name: "Side",
  48919. image: {
  48920. source: "./media/characters/faefnul/side.svg",
  48921. extra: 1100/1007,
  48922. bottom: 0/1100
  48923. }
  48924. },
  48925. },
  48926. [
  48927. {
  48928. name: "Normal",
  48929. height: math.unit(11, "feet"),
  48930. default: true
  48931. },
  48932. ]
  48933. ))
  48934. characterMakers.push(() => makeCharacter(
  48935. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48936. {
  48937. front: {
  48938. height: math.unit(6 + 2/12, "feet"),
  48939. name: "Front",
  48940. image: {
  48941. source: "./media/characters/shady/front.svg",
  48942. extra: 502/461,
  48943. bottom: 9/511
  48944. }
  48945. },
  48946. kneeling: {
  48947. height: math.unit(4.6, "feet"),
  48948. name: "Kneeling",
  48949. image: {
  48950. source: "./media/characters/shady/kneeling.svg",
  48951. extra: 1328/1219,
  48952. bottom: 117/1445
  48953. }
  48954. },
  48955. maw: {
  48956. height: math.unit(2, "feet"),
  48957. name: "Maw",
  48958. image: {
  48959. source: "./media/characters/shady/maw.svg"
  48960. }
  48961. },
  48962. },
  48963. [
  48964. {
  48965. name: "Nano",
  48966. height: math.unit(1, "mm")
  48967. },
  48968. {
  48969. name: "Micro",
  48970. height: math.unit(12, "mm")
  48971. },
  48972. {
  48973. name: "Tiny",
  48974. height: math.unit(3, "inches")
  48975. },
  48976. {
  48977. name: "Normal",
  48978. height: math.unit(6 + 2/12, "feet"),
  48979. default: true
  48980. },
  48981. {
  48982. name: "Big",
  48983. height: math.unit(15, "feet")
  48984. },
  48985. {
  48986. name: "Macro",
  48987. height: math.unit(150, "feet")
  48988. },
  48989. {
  48990. name: "Titanic",
  48991. height: math.unit(500, "feet")
  48992. },
  48993. ]
  48994. ))
  48995. characterMakers.push(() => makeCharacter(
  48996. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48997. {
  48998. front: {
  48999. height: math.unit(12, "feet"),
  49000. name: "Front",
  49001. image: {
  49002. source: "./media/characters/fenrir/front.svg",
  49003. extra: 968/875,
  49004. bottom: 22/990
  49005. }
  49006. },
  49007. },
  49008. [
  49009. {
  49010. name: "Big",
  49011. height: math.unit(12, "feet"),
  49012. default: true
  49013. },
  49014. ]
  49015. ))
  49016. characterMakers.push(() => makeCharacter(
  49017. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49018. {
  49019. front: {
  49020. height: math.unit(5 + 4/12, "feet"),
  49021. name: "Front",
  49022. image: {
  49023. source: "./media/characters/makar/front.svg",
  49024. extra: 1181/1112,
  49025. bottom: 78/1259
  49026. }
  49027. },
  49028. },
  49029. [
  49030. {
  49031. name: "Normal",
  49032. height: math.unit(5 + 4/12, "feet"),
  49033. default: true
  49034. },
  49035. ]
  49036. ))
  49037. characterMakers.push(() => makeCharacter(
  49038. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49039. {
  49040. front: {
  49041. height: math.unit(5 + 7/12, "feet"),
  49042. name: "Front",
  49043. image: {
  49044. source: "./media/characters/callow/front.svg",
  49045. extra: 1482/1304,
  49046. bottom: 23/1505
  49047. }
  49048. },
  49049. back: {
  49050. height: math.unit(5 + 7/12, "feet"),
  49051. name: "Back",
  49052. image: {
  49053. source: "./media/characters/callow/back.svg",
  49054. extra: 1484/1296,
  49055. bottom: 25/1509
  49056. }
  49057. },
  49058. },
  49059. [
  49060. {
  49061. name: "Micro",
  49062. height: math.unit(3, "inches"),
  49063. default: true
  49064. },
  49065. {
  49066. name: "Normal",
  49067. height: math.unit(5 + 7/12, "feet")
  49068. },
  49069. ]
  49070. ))
  49071. characterMakers.push(() => makeCharacter(
  49072. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49073. {
  49074. front: {
  49075. height: math.unit(6 + 2/12, "feet"),
  49076. name: "Front",
  49077. image: {
  49078. source: "./media/characters/natel/front.svg",
  49079. extra: 1833/1692,
  49080. bottom: 166/1999
  49081. }
  49082. },
  49083. },
  49084. [
  49085. {
  49086. name: "Normal",
  49087. height: math.unit(6 + 2/12, "feet"),
  49088. default: true
  49089. },
  49090. ]
  49091. ))
  49092. characterMakers.push(() => makeCharacter(
  49093. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49094. {
  49095. front: {
  49096. height: math.unit(1.75, "meters"),
  49097. name: "Front",
  49098. image: {
  49099. source: "./media/characters/misu/front.svg",
  49100. extra: 1690/1558,
  49101. bottom: 234/1924
  49102. }
  49103. },
  49104. back: {
  49105. height: math.unit(1.75, "meters"),
  49106. name: "Back",
  49107. image: {
  49108. source: "./media/characters/misu/back.svg",
  49109. extra: 1762/1618,
  49110. bottom: 146/1908
  49111. }
  49112. },
  49113. frontNude: {
  49114. height: math.unit(1.75, "meters"),
  49115. name: "Front (Nude)",
  49116. image: {
  49117. source: "./media/characters/misu/front-nude.svg",
  49118. extra: 1690/1558,
  49119. bottom: 234/1924
  49120. }
  49121. },
  49122. backNude: {
  49123. height: math.unit(1.75, "meters"),
  49124. name: "Back (Nude)",
  49125. image: {
  49126. source: "./media/characters/misu/back-nude.svg",
  49127. extra: 1762/1618,
  49128. bottom: 146/1908
  49129. }
  49130. },
  49131. frontErect: {
  49132. height: math.unit(1.75, "meters"),
  49133. name: "Front (Erect)",
  49134. image: {
  49135. source: "./media/characters/misu/front-erect.svg",
  49136. extra: 1690/1558,
  49137. bottom: 234/1924
  49138. }
  49139. },
  49140. maw: {
  49141. height: math.unit(0.47, "meters"),
  49142. name: "Maw",
  49143. image: {
  49144. source: "./media/characters/misu/maw.svg"
  49145. }
  49146. },
  49147. head: {
  49148. height: math.unit(0.35, "meters"),
  49149. name: "Head",
  49150. image: {
  49151. source: "./media/characters/misu/head.svg"
  49152. }
  49153. },
  49154. rear: {
  49155. height: math.unit(0.47, "meters"),
  49156. name: "Rear",
  49157. image: {
  49158. source: "./media/characters/misu/rear.svg"
  49159. }
  49160. },
  49161. },
  49162. [
  49163. {
  49164. name: "Normal",
  49165. height: math.unit(1.75, "meters")
  49166. },
  49167. {
  49168. name: "Not good for the people",
  49169. height: math.unit(42, "meters")
  49170. },
  49171. {
  49172. name: "Not good for the neighborhood",
  49173. height: math.unit(135, "meters")
  49174. },
  49175. {
  49176. name: "Bit bigger problem",
  49177. height: math.unit(380, "meters"),
  49178. default: true
  49179. },
  49180. {
  49181. name: "Not good for the city",
  49182. height: math.unit(1.5, "km")
  49183. },
  49184. {
  49185. name: "Not good for the county",
  49186. height: math.unit(5.5, "km")
  49187. },
  49188. {
  49189. name: "Not good for the state",
  49190. height: math.unit(25, "km")
  49191. },
  49192. {
  49193. name: "Not good for the country",
  49194. height: math.unit(125, "km")
  49195. },
  49196. {
  49197. name: "Not good for the continent",
  49198. height: math.unit(2100, "km")
  49199. },
  49200. {
  49201. name: "Not good for the planet",
  49202. height: math.unit(35000, "km")
  49203. },
  49204. {
  49205. name: "Just no",
  49206. height: math.unit(8.5e18, "km")
  49207. },
  49208. ]
  49209. ))
  49210. characterMakers.push(() => makeCharacter(
  49211. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49212. {
  49213. front: {
  49214. height: math.unit(6.5, "feet"),
  49215. name: "Front",
  49216. image: {
  49217. source: "./media/characters/poppy/front.svg",
  49218. extra: 1878/1812,
  49219. bottom: 43/1921
  49220. }
  49221. },
  49222. feet: {
  49223. height: math.unit(1.06, "feet"),
  49224. name: "Feet",
  49225. image: {
  49226. source: "./media/characters/poppy/feet.svg",
  49227. extra: 1083/1083,
  49228. bottom: 87/1170
  49229. }
  49230. },
  49231. },
  49232. [
  49233. {
  49234. name: "Human",
  49235. height: math.unit(6.5, "feet")
  49236. },
  49237. {
  49238. name: "Default",
  49239. height: math.unit(300, "feet"),
  49240. default: true
  49241. },
  49242. {
  49243. name: "Huge",
  49244. height: math.unit(850, "feet")
  49245. },
  49246. {
  49247. name: "Mega",
  49248. height: math.unit(8000, "feet")
  49249. },
  49250. {
  49251. name: "Giga",
  49252. height: math.unit(300, "miles")
  49253. },
  49254. ]
  49255. ))
  49256. characterMakers.push(() => makeCharacter(
  49257. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49258. {
  49259. bipedal: {
  49260. height: math.unit(7, "feet"),
  49261. name: "Bipedal",
  49262. image: {
  49263. source: "./media/characters/zener/bipedal.svg",
  49264. extra: 874/805,
  49265. bottom: 109/983
  49266. }
  49267. },
  49268. quadrupedal: {
  49269. height: math.unit(4.64, "feet"),
  49270. name: "Quadrupedal",
  49271. image: {
  49272. source: "./media/characters/zener/quadrupedal.svg",
  49273. extra: 638/507,
  49274. bottom: 190/828
  49275. }
  49276. },
  49277. cock: {
  49278. height: math.unit(18, "inches"),
  49279. name: "Cock",
  49280. image: {
  49281. source: "./media/characters/zener/cock.svg"
  49282. }
  49283. },
  49284. },
  49285. [
  49286. {
  49287. name: "Normal",
  49288. height: math.unit(7, "feet"),
  49289. default: true
  49290. },
  49291. ]
  49292. ))
  49293. characterMakers.push(() => makeCharacter(
  49294. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49295. {
  49296. nude: {
  49297. height: math.unit(5 + 6/12, "feet"),
  49298. name: "Nude",
  49299. image: {
  49300. source: "./media/characters/charlie-dog/nude.svg",
  49301. extra: 768/734,
  49302. bottom: 26/794
  49303. }
  49304. },
  49305. dressed: {
  49306. height: math.unit(5 + 6/12, "feet"),
  49307. name: "Dressed",
  49308. image: {
  49309. source: "./media/characters/charlie-dog/dressed.svg",
  49310. extra: 768/734,
  49311. bottom: 26/794
  49312. }
  49313. },
  49314. },
  49315. [
  49316. {
  49317. name: "Normal",
  49318. height: math.unit(5 + 6/12, "feet"),
  49319. default: true
  49320. },
  49321. ]
  49322. ))
  49323. characterMakers.push(() => makeCharacter(
  49324. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49325. {
  49326. front: {
  49327. height: math.unit(6 + 4/12, "feet"),
  49328. name: "Front",
  49329. image: {
  49330. source: "./media/characters/ir'istrasz/front.svg",
  49331. extra: 1014/977,
  49332. bottom: 65/1079
  49333. }
  49334. },
  49335. back: {
  49336. height: math.unit(6 + 4/12, "feet"),
  49337. name: "Back",
  49338. image: {
  49339. source: "./media/characters/ir'istrasz/back.svg",
  49340. extra: 1024/992,
  49341. bottom: 34/1058
  49342. }
  49343. },
  49344. },
  49345. [
  49346. {
  49347. name: "Normal",
  49348. height: math.unit(6 + 4/12, "feet"),
  49349. default: true
  49350. },
  49351. ]
  49352. ))
  49353. characterMakers.push(() => makeCharacter(
  49354. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49355. {
  49356. front: {
  49357. height: math.unit(5 + 8/12, "feet"),
  49358. name: "Front",
  49359. image: {
  49360. source: "./media/characters/dee-ditto/front.svg",
  49361. extra: 1874/1785,
  49362. bottom: 68/1942
  49363. }
  49364. },
  49365. back: {
  49366. height: math.unit(5 + 8/12, "feet"),
  49367. name: "Back",
  49368. image: {
  49369. source: "./media/characters/dee-ditto/back.svg",
  49370. extra: 1870/1783,
  49371. bottom: 77/1947
  49372. }
  49373. },
  49374. },
  49375. [
  49376. {
  49377. name: "Normal",
  49378. height: math.unit(5 + 8/12, "feet"),
  49379. default: true
  49380. },
  49381. ]
  49382. ))
  49383. characterMakers.push(() => makeCharacter(
  49384. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49385. {
  49386. front: {
  49387. height: math.unit(7 + 6/12, "feet"),
  49388. name: "Front",
  49389. image: {
  49390. source: "./media/characters/fey/front.svg",
  49391. extra: 995/979,
  49392. bottom: 30/1025
  49393. }
  49394. },
  49395. back: {
  49396. height: math.unit(7 + 6/12, "feet"),
  49397. name: "Back",
  49398. image: {
  49399. source: "./media/characters/fey/back.svg",
  49400. extra: 1079/1008,
  49401. bottom: 5/1084
  49402. }
  49403. },
  49404. dressed: {
  49405. height: math.unit(7 + 6/12, "feet"),
  49406. name: "Dressed",
  49407. image: {
  49408. source: "./media/characters/fey/dressed.svg",
  49409. extra: 995/979,
  49410. bottom: 30/1025
  49411. }
  49412. },
  49413. },
  49414. [
  49415. {
  49416. name: "Normal",
  49417. height: math.unit(7 + 6/12, "feet"),
  49418. default: true
  49419. },
  49420. ]
  49421. ))
  49422. characterMakers.push(() => makeCharacter(
  49423. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49424. {
  49425. standing: {
  49426. height: math.unit(17, "feet"),
  49427. name: "Standing",
  49428. image: {
  49429. source: "./media/characters/aster/standing.svg",
  49430. extra: 1798/1598,
  49431. bottom: 117/1915
  49432. }
  49433. },
  49434. },
  49435. [
  49436. {
  49437. name: "Normal",
  49438. height: math.unit(17, "feet"),
  49439. default: true
  49440. },
  49441. {
  49442. name: "Homewrecker",
  49443. height: math.unit(95, "feet")
  49444. },
  49445. {
  49446. name: "Planet Devourer",
  49447. height: math.unit(1008000, "miles")
  49448. },
  49449. ]
  49450. ))
  49451. characterMakers.push(() => makeCharacter(
  49452. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49453. {
  49454. front: {
  49455. height: math.unit(6 + 5/12, "feet"),
  49456. weight: math.unit(265, "lb"),
  49457. name: "Front",
  49458. image: {
  49459. source: "./media/characters/devon-childs/front.svg",
  49460. extra: 1795/1721,
  49461. bottom: 41/1836
  49462. }
  49463. },
  49464. side: {
  49465. height: math.unit(6 + 5/12, "feet"),
  49466. weight: math.unit(265, "lb"),
  49467. name: "Side",
  49468. image: {
  49469. source: "./media/characters/devon-childs/side.svg",
  49470. extra: 1812/1738,
  49471. bottom: 30/1842
  49472. }
  49473. },
  49474. back: {
  49475. height: math.unit(6 + 5/12, "feet"),
  49476. weight: math.unit(265, "lb"),
  49477. name: "Back",
  49478. image: {
  49479. source: "./media/characters/devon-childs/back.svg",
  49480. extra: 1808/1735,
  49481. bottom: 23/1831
  49482. }
  49483. },
  49484. hand: {
  49485. height: math.unit(1.464, "feet"),
  49486. name: "Hand",
  49487. image: {
  49488. source: "./media/characters/devon-childs/hand.svg"
  49489. }
  49490. },
  49491. foot: {
  49492. height: math.unit(1.6, "feet"),
  49493. name: "Foot",
  49494. image: {
  49495. source: "./media/characters/devon-childs/foot.svg"
  49496. }
  49497. },
  49498. },
  49499. [
  49500. {
  49501. name: "Micro",
  49502. height: math.unit(7, "cm")
  49503. },
  49504. {
  49505. name: "Normal",
  49506. height: math.unit(6 + 5/12, "feet"),
  49507. default: true
  49508. },
  49509. {
  49510. name: "Macro",
  49511. height: math.unit(154, "feet")
  49512. },
  49513. ]
  49514. ))
  49515. characterMakers.push(() => makeCharacter(
  49516. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49517. {
  49518. front: {
  49519. height: math.unit(6, "feet"),
  49520. weight: math.unit(180, "lb"),
  49521. name: "Front",
  49522. image: {
  49523. source: "./media/characters/lydemox-vir/front.svg",
  49524. extra: 1632/1435,
  49525. bottom: 58/1690
  49526. }
  49527. },
  49528. frontSFW: {
  49529. height: math.unit(6, "feet"),
  49530. weight: math.unit(180, "lb"),
  49531. name: "Front (SFW)",
  49532. image: {
  49533. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49534. extra: 1632/1435,
  49535. bottom: 58/1690
  49536. }
  49537. },
  49538. back: {
  49539. height: math.unit(6, "feet"),
  49540. weight: math.unit(180, "lb"),
  49541. name: "Back",
  49542. image: {
  49543. source: "./media/characters/lydemox-vir/back.svg",
  49544. extra: 1593/1408,
  49545. bottom: 31/1624
  49546. }
  49547. },
  49548. paw: {
  49549. height: math.unit(1.85, "feet"),
  49550. name: "Paw",
  49551. image: {
  49552. source: "./media/characters/lydemox-vir/paw.svg"
  49553. }
  49554. },
  49555. dick: {
  49556. height: math.unit(1.8, "feet"),
  49557. name: "Dick",
  49558. image: {
  49559. source: "./media/characters/lydemox-vir/dick.svg"
  49560. }
  49561. },
  49562. },
  49563. [
  49564. {
  49565. name: "Macro",
  49566. height: math.unit(100, "feet"),
  49567. default: true
  49568. },
  49569. {
  49570. name: "Teramacro",
  49571. height: math.unit(1, "earth")
  49572. },
  49573. {
  49574. name: "Planetary",
  49575. height: math.unit(20, "earths")
  49576. },
  49577. ]
  49578. ))
  49579. characterMakers.push(() => makeCharacter(
  49580. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49581. {
  49582. front: {
  49583. height: math.unit(15 + 8/12, "feet"),
  49584. weight: math.unit(1237, "kg"),
  49585. name: "Front",
  49586. image: {
  49587. source: "./media/characters/mia/front.svg",
  49588. extra: 1573/1446,
  49589. bottom: 58/1631
  49590. }
  49591. },
  49592. },
  49593. [
  49594. {
  49595. name: "Small",
  49596. height: math.unit(9 + 5/12, "feet")
  49597. },
  49598. {
  49599. name: "Normal",
  49600. height: math.unit(15 + 8/12, "feet"),
  49601. default: true
  49602. },
  49603. ]
  49604. ))
  49605. characterMakers.push(() => makeCharacter(
  49606. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49607. {
  49608. front: {
  49609. height: math.unit(10 + 6/12, "feet"),
  49610. weight: math.unit(1.3, "tons"),
  49611. name: "Front",
  49612. image: {
  49613. source: "./media/characters/mr-graves/front.svg",
  49614. extra: 1779/1695,
  49615. bottom: 198/1977
  49616. }
  49617. },
  49618. },
  49619. [
  49620. {
  49621. name: "Normal",
  49622. height: math.unit(10 + 6 /12, "feet"),
  49623. default: true
  49624. },
  49625. ]
  49626. ))
  49627. characterMakers.push(() => makeCharacter(
  49628. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49629. {
  49630. dressedFront: {
  49631. height: math.unit(5 + 8/12, "feet"),
  49632. weight: math.unit(125, "lb"),
  49633. name: "Dressed (Front)",
  49634. image: {
  49635. source: "./media/characters/jess/dressed-front.svg",
  49636. extra: 1176/1152,
  49637. bottom: 42/1218
  49638. }
  49639. },
  49640. dressedSide: {
  49641. height: math.unit(5 + 8/12, "feet"),
  49642. weight: math.unit(125, "lb"),
  49643. name: "Dressed (Side)",
  49644. image: {
  49645. source: "./media/characters/jess/dressed-side.svg",
  49646. extra: 1204/1190,
  49647. bottom: 6/1210
  49648. }
  49649. },
  49650. nudeFront: {
  49651. height: math.unit(5 + 8/12, "feet"),
  49652. weight: math.unit(125, "lb"),
  49653. name: "Nude (Front)",
  49654. image: {
  49655. source: "./media/characters/jess/nude-front.svg",
  49656. extra: 1176/1152,
  49657. bottom: 42/1218
  49658. }
  49659. },
  49660. nudeSide: {
  49661. height: math.unit(5 + 8/12, "feet"),
  49662. weight: math.unit(125, "lb"),
  49663. name: "Nude (Side)",
  49664. image: {
  49665. source: "./media/characters/jess/nude-side.svg",
  49666. extra: 1204/1190,
  49667. bottom: 6/1210
  49668. }
  49669. },
  49670. organsFront: {
  49671. height: math.unit(2.83799342105, "feet"),
  49672. name: "Organs (Front)",
  49673. image: {
  49674. source: "./media/characters/jess/organs-front.svg"
  49675. }
  49676. },
  49677. organsSide: {
  49678. height: math.unit(2.64225290474, "feet"),
  49679. name: "Organs (Side)",
  49680. image: {
  49681. source: "./media/characters/jess/organs-side.svg"
  49682. }
  49683. },
  49684. digestiveTractFront: {
  49685. height: math.unit(2.8106580871, "feet"),
  49686. name: "Digestive Tract (Front)",
  49687. image: {
  49688. source: "./media/characters/jess/digestive-tract-front.svg"
  49689. }
  49690. },
  49691. digestiveTractSide: {
  49692. height: math.unit(2.54365045014, "feet"),
  49693. name: "Digestive Tract (Side)",
  49694. image: {
  49695. source: "./media/characters/jess/digestive-tract-side.svg"
  49696. }
  49697. },
  49698. respiratorySystemFront: {
  49699. height: math.unit(1.11196233456, "feet"),
  49700. name: "Respiratory System (Front)",
  49701. image: {
  49702. source: "./media/characters/jess/respiratory-system-front.svg"
  49703. }
  49704. },
  49705. respiratorySystemSide: {
  49706. height: math.unit(0.89327966297, "feet"),
  49707. name: "Respiratory System (Side)",
  49708. image: {
  49709. source: "./media/characters/jess/respiratory-system-side.svg"
  49710. }
  49711. },
  49712. urinaryTractFront: {
  49713. height: math.unit(1.16126356186, "feet"),
  49714. name: "Urinary Tract (Front)",
  49715. image: {
  49716. source: "./media/characters/jess/urinary-tract-front.svg"
  49717. }
  49718. },
  49719. urinaryTractSide: {
  49720. height: math.unit(1.20910039627, "feet"),
  49721. name: "Urinary Tract (Side)",
  49722. image: {
  49723. source: "./media/characters/jess/urinary-tract-side.svg"
  49724. }
  49725. },
  49726. reproductiveOrgansFront: {
  49727. height: math.unit(0.48422591566, "feet"),
  49728. name: "Reproductive Organs (Front)",
  49729. image: {
  49730. source: "./media/characters/jess/reproductive-organs-front.svg"
  49731. }
  49732. },
  49733. reproductiveOrgansSide: {
  49734. height: math.unit(0.61553314481, "feet"),
  49735. name: "Reproductive Organs (Side)",
  49736. image: {
  49737. source: "./media/characters/jess/reproductive-organs-side.svg"
  49738. }
  49739. },
  49740. breastsFront: {
  49741. height: math.unit(0.47690395121, "feet"),
  49742. name: "Breasts (Front)",
  49743. image: {
  49744. source: "./media/characters/jess/breasts-front.svg"
  49745. }
  49746. },
  49747. breastsSide: {
  49748. height: math.unit(0.30556998307, "feet"),
  49749. name: "Breasts (Side)",
  49750. image: {
  49751. source: "./media/characters/jess/breasts-side.svg"
  49752. }
  49753. },
  49754. heartFront: {
  49755. height: math.unit(0.53011022622, "feet"),
  49756. name: "Heart (Front)",
  49757. image: {
  49758. source: "./media/characters/jess/heart-front.svg"
  49759. }
  49760. },
  49761. heartSide: {
  49762. height: math.unit(0.51790695213, "feet"),
  49763. name: "Heart (Side)",
  49764. image: {
  49765. source: "./media/characters/jess/heart-side.svg"
  49766. }
  49767. },
  49768. earsAndNoseFront: {
  49769. height: math.unit(0.29385483995, "feet"),
  49770. name: "Ears and Nose (Front)",
  49771. image: {
  49772. source: "./media/characters/jess/ears-and-nose-front.svg"
  49773. }
  49774. },
  49775. earsAndNoseSide: {
  49776. height: math.unit(0.18109658741, "feet"),
  49777. name: "Ears and Nose (Side)",
  49778. image: {
  49779. source: "./media/characters/jess/ears-and-nose-side.svg"
  49780. }
  49781. },
  49782. },
  49783. [
  49784. {
  49785. name: "Normal",
  49786. height: math.unit(5 + 8/12, "feet"),
  49787. default: true
  49788. },
  49789. ]
  49790. ))
  49791. characterMakers.push(() => makeCharacter(
  49792. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49793. {
  49794. front: {
  49795. height: math.unit(6, "feet"),
  49796. weight: math.unit(6.64467e-7, "grams"),
  49797. name: "Front",
  49798. image: {
  49799. source: "./media/characters/wimpering/front.svg",
  49800. extra: 597/587,
  49801. bottom: 34/631
  49802. }
  49803. },
  49804. },
  49805. [
  49806. {
  49807. name: "Micro",
  49808. height: math.unit(0.4, "mm"),
  49809. default: true
  49810. },
  49811. ]
  49812. ))
  49813. characterMakers.push(() => makeCharacter(
  49814. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49815. {
  49816. front: {
  49817. height: math.unit(5 + 2/12, "feet"),
  49818. weight: math.unit(110, "lb"),
  49819. name: "Front",
  49820. image: {
  49821. source: "./media/characters/keltre/front.svg",
  49822. extra: 1099/1057,
  49823. bottom: 22/1121
  49824. }
  49825. },
  49826. back: {
  49827. height: math.unit(5 + 2/12, "feet"),
  49828. weight: math.unit(110, "lb"),
  49829. name: "Back",
  49830. image: {
  49831. source: "./media/characters/keltre/back.svg",
  49832. extra: 1095/1053,
  49833. bottom: 17/1112
  49834. }
  49835. },
  49836. dressed: {
  49837. height: math.unit(5 + 2/12, "feet"),
  49838. weight: math.unit(110, "lb"),
  49839. name: "Dressed",
  49840. image: {
  49841. source: "./media/characters/keltre/dressed.svg",
  49842. extra: 1099/1057,
  49843. bottom: 22/1121
  49844. }
  49845. },
  49846. winter: {
  49847. height: math.unit(5 + 2/12, "feet"),
  49848. weight: math.unit(110, "lb"),
  49849. name: "Winter",
  49850. image: {
  49851. source: "./media/characters/keltre/winter.svg",
  49852. extra: 1099/1057,
  49853. bottom: 22/1121
  49854. }
  49855. },
  49856. head: {
  49857. height: math.unit(1.61 * 0.86, "feet"),
  49858. name: "Head",
  49859. image: {
  49860. source: "./media/characters/keltre/head.svg",
  49861. extra: 534/421,
  49862. bottom: 0/534
  49863. }
  49864. },
  49865. hand: {
  49866. height: math.unit(1.3 * 0.86, "feet"),
  49867. name: "Hand",
  49868. image: {
  49869. source: "./media/characters/keltre/hand.svg"
  49870. }
  49871. },
  49872. foot: {
  49873. height: math.unit(1.8 * 0.86, "feet"),
  49874. name: "Foot",
  49875. image: {
  49876. source: "./media/characters/keltre/foot.svg"
  49877. }
  49878. },
  49879. },
  49880. [
  49881. {
  49882. name: "Fine",
  49883. height: math.unit(1, "inch")
  49884. },
  49885. {
  49886. name: "Dimnutive",
  49887. height: math.unit(4, "inches")
  49888. },
  49889. {
  49890. name: "Tiny",
  49891. height: math.unit(1, "foot")
  49892. },
  49893. {
  49894. name: "Small",
  49895. height: math.unit(3, "feet")
  49896. },
  49897. {
  49898. name: "Normal",
  49899. height: math.unit(5 + 2/12, "feet"),
  49900. default: true
  49901. },
  49902. ]
  49903. ))
  49904. characterMakers.push(() => makeCharacter(
  49905. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49906. {
  49907. front: {
  49908. height: math.unit(6 + 2/12, "feet"),
  49909. name: "Front",
  49910. image: {
  49911. source: "./media/characters/nox/front.svg",
  49912. extra: 1917/1830,
  49913. bottom: 74/1991
  49914. }
  49915. },
  49916. back: {
  49917. height: math.unit(6 + 2/12, "feet"),
  49918. name: "Back",
  49919. image: {
  49920. source: "./media/characters/nox/back.svg",
  49921. extra: 1896/1815,
  49922. bottom: 21/1917
  49923. }
  49924. },
  49925. head: {
  49926. height: math.unit(1.1, "feet"),
  49927. name: "Head",
  49928. image: {
  49929. source: "./media/characters/nox/head.svg",
  49930. extra: 874/704,
  49931. bottom: 0/874
  49932. }
  49933. },
  49934. tattoo: {
  49935. height: math.unit(0.729, "feet"),
  49936. name: "Tattoo",
  49937. image: {
  49938. source: "./media/characters/nox/tattoo.svg"
  49939. }
  49940. },
  49941. },
  49942. [
  49943. {
  49944. name: "Normal",
  49945. height: math.unit(6 + 2/12, "feet")
  49946. },
  49947. {
  49948. name: "Gigamacro",
  49949. height: math.unit(2, "earths"),
  49950. default: true
  49951. },
  49952. {
  49953. name: "Cosmic",
  49954. height: math.unit(867, "yottameters")
  49955. },
  49956. ]
  49957. ))
  49958. characterMakers.push(() => makeCharacter(
  49959. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49960. {
  49961. front: {
  49962. height: math.unit(6, "feet"),
  49963. weight: math.unit(150, "lb"),
  49964. name: "Front",
  49965. image: {
  49966. source: "./media/characters/caspian/front.svg",
  49967. extra: 1443/1359,
  49968. bottom: 0/1443
  49969. }
  49970. },
  49971. back: {
  49972. height: math.unit(6, "feet"),
  49973. weight: math.unit(150, "lb"),
  49974. name: "Back",
  49975. image: {
  49976. source: "./media/characters/caspian/back.svg",
  49977. extra: 1379/1309,
  49978. bottom: 0/1379
  49979. }
  49980. },
  49981. head: {
  49982. height: math.unit(0.9, "feet"),
  49983. name: "Head",
  49984. image: {
  49985. source: "./media/characters/caspian/head.svg",
  49986. extra: 692/492,
  49987. bottom: 0/692
  49988. }
  49989. },
  49990. headAlt: {
  49991. height: math.unit(0.95, "feet"),
  49992. name: "Head (Alt)",
  49993. image: {
  49994. source: "./media/characters/caspian/head-alt.svg",
  49995. extra: 668/508,
  49996. bottom: 0/668
  49997. }
  49998. },
  49999. hand: {
  50000. height: math.unit(0.8, "feet"),
  50001. name: "Hand",
  50002. image: {
  50003. source: "./media/characters/caspian/hand.svg"
  50004. }
  50005. },
  50006. paw: {
  50007. height: math.unit(0.95, "feet"),
  50008. name: "Paw",
  50009. image: {
  50010. source: "./media/characters/caspian/paw.svg"
  50011. }
  50012. },
  50013. },
  50014. [
  50015. {
  50016. name: "Normal",
  50017. height: math.unit(162, "feet"),
  50018. default: true
  50019. },
  50020. ]
  50021. ))
  50022. characterMakers.push(() => makeCharacter(
  50023. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50024. {
  50025. front: {
  50026. height: math.unit(6, "feet"),
  50027. name: "Front",
  50028. image: {
  50029. source: "./media/characters/myra-aisling/front.svg",
  50030. extra: 1268/1166,
  50031. bottom: 73/1341
  50032. }
  50033. },
  50034. back: {
  50035. height: math.unit(6, "feet"),
  50036. name: "Back",
  50037. image: {
  50038. source: "./media/characters/myra-aisling/back.svg",
  50039. extra: 1249/1149,
  50040. bottom: 79/1328
  50041. }
  50042. },
  50043. dressed: {
  50044. height: math.unit(6, "feet"),
  50045. name: "Dressed",
  50046. image: {
  50047. source: "./media/characters/myra-aisling/dressed.svg",
  50048. extra: 1290/1189,
  50049. bottom: 47/1337
  50050. }
  50051. },
  50052. hand: {
  50053. height: math.unit(1.1, "feet"),
  50054. name: "Hand",
  50055. image: {
  50056. source: "./media/characters/myra-aisling/hand.svg"
  50057. }
  50058. },
  50059. paw: {
  50060. height: math.unit(1.23, "feet"),
  50061. name: "Paw",
  50062. image: {
  50063. source: "./media/characters/myra-aisling/paw.svg"
  50064. }
  50065. },
  50066. },
  50067. [
  50068. {
  50069. name: "Normal",
  50070. height: math.unit(160, "feet"),
  50071. default: true
  50072. },
  50073. ]
  50074. ))
  50075. characterMakers.push(() => makeCharacter(
  50076. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50077. {
  50078. front: {
  50079. height: math.unit(6, "feet"),
  50080. name: "Front",
  50081. image: {
  50082. source: "./media/characters/tenley-sidero/front.svg",
  50083. extra: 1365/1276,
  50084. bottom: 47/1412
  50085. }
  50086. },
  50087. back: {
  50088. height: math.unit(6, "feet"),
  50089. name: "Back",
  50090. image: {
  50091. source: "./media/characters/tenley-sidero/back.svg",
  50092. extra: 1383/1283,
  50093. bottom: 35/1418
  50094. }
  50095. },
  50096. dressed: {
  50097. height: math.unit(6, "feet"),
  50098. name: "Dressed",
  50099. image: {
  50100. source: "./media/characters/tenley-sidero/dressed.svg",
  50101. extra: 1364/1275,
  50102. bottom: 42/1406
  50103. }
  50104. },
  50105. head: {
  50106. height: math.unit(1.47, "feet"),
  50107. name: "Head",
  50108. image: {
  50109. source: "./media/characters/tenley-sidero/head.svg",
  50110. extra: 610/490,
  50111. bottom: 0/610
  50112. }
  50113. },
  50114. },
  50115. [
  50116. {
  50117. name: "Normal",
  50118. height: math.unit(154, "feet"),
  50119. default: true
  50120. },
  50121. ]
  50122. ))
  50123. characterMakers.push(() => makeCharacter(
  50124. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50125. {
  50126. front: {
  50127. height: math.unit(5, "inches"),
  50128. name: "Front",
  50129. image: {
  50130. source: "./media/characters/mallory/front.svg",
  50131. extra: 1919/1678,
  50132. bottom: 29/1948
  50133. }
  50134. },
  50135. hand: {
  50136. height: math.unit(0.73, "inches"),
  50137. name: "Hand",
  50138. image: {
  50139. source: "./media/characters/mallory/hand.svg"
  50140. }
  50141. },
  50142. paw: {
  50143. height: math.unit(0.68, "inches"),
  50144. name: "Paw",
  50145. image: {
  50146. source: "./media/characters/mallory/paw.svg"
  50147. }
  50148. },
  50149. },
  50150. [
  50151. {
  50152. name: "Small",
  50153. height: math.unit(5, "inches"),
  50154. default: true
  50155. },
  50156. ]
  50157. ))
  50158. characterMakers.push(() => makeCharacter(
  50159. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50160. {
  50161. naked: {
  50162. height: math.unit(6, "feet"),
  50163. name: "Naked",
  50164. image: {
  50165. source: "./media/characters/mab/naked.svg",
  50166. extra: 1855/1757,
  50167. bottom: 208/2063
  50168. }
  50169. },
  50170. outside: {
  50171. height: math.unit(6, "feet"),
  50172. name: "Outside",
  50173. image: {
  50174. source: "./media/characters/mab/outside.svg",
  50175. extra: 1855/1757,
  50176. bottom: 208/2063
  50177. }
  50178. },
  50179. party: {
  50180. height: math.unit(6, "feet"),
  50181. name: "Party",
  50182. image: {
  50183. source: "./media/characters/mab/party.svg",
  50184. extra: 1855/1757,
  50185. bottom: 208/2063
  50186. }
  50187. },
  50188. },
  50189. [
  50190. {
  50191. name: "Normal",
  50192. height: math.unit(165, "feet"),
  50193. default: true
  50194. },
  50195. ]
  50196. ))
  50197. characterMakers.push(() => makeCharacter(
  50198. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50199. {
  50200. feral: {
  50201. height: math.unit(12, "feet"),
  50202. weight: math.unit(20000, "lb"),
  50203. name: "Side",
  50204. image: {
  50205. source: "./media/characters/winter/feral.svg",
  50206. extra: 1286/943,
  50207. bottom: 112/1398
  50208. },
  50209. form: "feral",
  50210. default: true
  50211. },
  50212. feralNsfw: {
  50213. height: math.unit(12, "feet"),
  50214. weight: math.unit(20000, "lb"),
  50215. name: "Side (NSFW)",
  50216. image: {
  50217. source: "./media/characters/winter/feral-nsfw.svg",
  50218. extra: 1286/943,
  50219. bottom: 112/1398
  50220. },
  50221. form: "feral"
  50222. },
  50223. dick: {
  50224. height: math.unit(3.79, "feet"),
  50225. name: "Dick",
  50226. image: {
  50227. source: "./media/characters/winter/dick.svg"
  50228. },
  50229. form: "feral"
  50230. },
  50231. anthro: {
  50232. height: math.unit(12, "feet"),
  50233. weight: math.unit(10, "tons"),
  50234. name: "Anthro",
  50235. image: {
  50236. source: "./media/characters/winter/anthro.svg",
  50237. extra: 1701/1553,
  50238. bottom: 64/1765
  50239. },
  50240. form: "anthro",
  50241. default: true
  50242. },
  50243. },
  50244. [
  50245. {
  50246. name: "Big",
  50247. height: math.unit(12, "feet"),
  50248. default: true,
  50249. form: "feral"
  50250. },
  50251. {
  50252. name: "Big",
  50253. height: math.unit(12, "feet"),
  50254. default: true,
  50255. form: "anthro"
  50256. },
  50257. ],
  50258. {
  50259. "feral": {
  50260. name: "Feral",
  50261. default: true
  50262. },
  50263. "anthro": {
  50264. name: "Anthro"
  50265. }
  50266. }
  50267. ))
  50268. characterMakers.push(() => makeCharacter(
  50269. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50270. {
  50271. front: {
  50272. height: math.unit(4.1, "inches"),
  50273. name: "Front",
  50274. image: {
  50275. source: "./media/characters/alto/front.svg",
  50276. extra: 736/627,
  50277. bottom: 90/826
  50278. }
  50279. },
  50280. },
  50281. [
  50282. {
  50283. name: "Normal",
  50284. height: math.unit(4.1, "inches"),
  50285. default: true
  50286. },
  50287. ]
  50288. ))
  50289. characterMakers.push(() => makeCharacter(
  50290. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50291. {
  50292. sitting: {
  50293. height: math.unit(3, "feet"),
  50294. name: "Sitting",
  50295. image: {
  50296. source: "./media/characters/ratstrid-v/sitting.svg",
  50297. extra: 355/310,
  50298. bottom: 136/491
  50299. }
  50300. },
  50301. },
  50302. [
  50303. {
  50304. name: "Normal",
  50305. height: math.unit(3, "feet"),
  50306. default: true
  50307. },
  50308. ]
  50309. ))
  50310. characterMakers.push(() => makeCharacter(
  50311. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50312. {
  50313. back: {
  50314. height: math.unit(6, "feet"),
  50315. weight: math.unit(450, "lb"),
  50316. name: "Back",
  50317. image: {
  50318. source: "./media/characters/siz/back.svg",
  50319. extra: 1449/1274,
  50320. bottom: 13/1462
  50321. }
  50322. },
  50323. },
  50324. [
  50325. {
  50326. name: "Smallest",
  50327. height: math.unit(18 + 3/12, "feet")
  50328. },
  50329. {
  50330. name: "Modest",
  50331. height: math.unit(56 + 8/12, "feet"),
  50332. default: true
  50333. },
  50334. {
  50335. name: "Largest",
  50336. height: math.unit(3590, "feet")
  50337. },
  50338. ]
  50339. ))
  50340. characterMakers.push(() => makeCharacter(
  50341. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50342. {
  50343. front: {
  50344. height: math.unit(5 + 9/12, "feet"),
  50345. weight: math.unit(150, "lb"),
  50346. name: "Front",
  50347. image: {
  50348. source: "./media/characters/ven/front.svg",
  50349. extra: 1372/1320,
  50350. bottom: 73/1445
  50351. }
  50352. },
  50353. side: {
  50354. height: math.unit(5 + 9/12, "feet"),
  50355. weight: math.unit(1150, "lb"),
  50356. name: "Side",
  50357. image: {
  50358. source: "./media/characters/ven/side.svg",
  50359. extra: 1119/1070,
  50360. bottom: 42/1161
  50361. },
  50362. default: true
  50363. },
  50364. },
  50365. [
  50366. {
  50367. name: "Normal",
  50368. height: math.unit(5 + 9/12, "feet"),
  50369. default: true
  50370. },
  50371. ]
  50372. ))
  50373. characterMakers.push(() => makeCharacter(
  50374. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50375. {
  50376. front: {
  50377. height: math.unit(12, "feet"),
  50378. weight: math.unit(1000, "kg"),
  50379. name: "Front",
  50380. image: {
  50381. source: "./media/characters/maple/front.svg",
  50382. extra: 1193/1081,
  50383. bottom: 22/1215
  50384. }
  50385. },
  50386. },
  50387. [
  50388. {
  50389. name: "Compressed",
  50390. height: math.unit(7, "feet")
  50391. },
  50392. {
  50393. name: "Normal",
  50394. height: math.unit(12, "feet"),
  50395. default: true
  50396. },
  50397. ]
  50398. ))
  50399. characterMakers.push(() => makeCharacter(
  50400. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50401. {
  50402. front: {
  50403. height: math.unit(9, "feet"),
  50404. weight: math.unit(1500, "lb"),
  50405. name: "Front",
  50406. image: {
  50407. source: "./media/characters/nora/front.svg",
  50408. extra: 1348/1286,
  50409. bottom: 218/1566
  50410. }
  50411. },
  50412. erect: {
  50413. height: math.unit(9, "feet"),
  50414. weight: math.unit(11500, "lb"),
  50415. name: "Erect",
  50416. image: {
  50417. source: "./media/characters/nora/erect.svg",
  50418. extra: 1488/1433,
  50419. bottom: 133/1621
  50420. }
  50421. },
  50422. },
  50423. [
  50424. {
  50425. name: "Normal",
  50426. height: math.unit(9, "feet"),
  50427. default: true
  50428. },
  50429. ]
  50430. ))
  50431. characterMakers.push(() => makeCharacter(
  50432. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50433. {
  50434. front: {
  50435. height: math.unit(25, "feet"),
  50436. weight: math.unit(27500, "lb"),
  50437. name: "Front",
  50438. image: {
  50439. source: "./media/characters/north-caudin/front.svg",
  50440. extra: 1184/1082,
  50441. bottom: 23/1207
  50442. }
  50443. },
  50444. },
  50445. [
  50446. {
  50447. name: "Compressed",
  50448. height: math.unit(10, "feet")
  50449. },
  50450. {
  50451. name: "Normal",
  50452. height: math.unit(25, "feet"),
  50453. default: true
  50454. },
  50455. ]
  50456. ))
  50457. characterMakers.push(() => makeCharacter(
  50458. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50459. {
  50460. front: {
  50461. height: math.unit(9, "feet"),
  50462. weight: math.unit(1250, "lb"),
  50463. name: "Front",
  50464. image: {
  50465. source: "./media/characters/merrian/front.svg",
  50466. extra: 2393/2304,
  50467. bottom: 40/2433
  50468. }
  50469. },
  50470. },
  50471. [
  50472. {
  50473. name: "Normal",
  50474. height: math.unit(9, "feet"),
  50475. default: true
  50476. },
  50477. ]
  50478. ))
  50479. characterMakers.push(() => makeCharacter(
  50480. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50481. {
  50482. front: {
  50483. height: math.unit(9, "feet"),
  50484. weight: math.unit(1000, "lb"),
  50485. name: "Front",
  50486. image: {
  50487. source: "./media/characters/hazel/front.svg",
  50488. extra: 2351/2298,
  50489. bottom: 38/2389
  50490. }
  50491. },
  50492. },
  50493. [
  50494. {
  50495. name: "Normal",
  50496. height: math.unit(9, "feet"),
  50497. default: true
  50498. },
  50499. ]
  50500. ))
  50501. characterMakers.push(() => makeCharacter(
  50502. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50503. {
  50504. front: {
  50505. height: math.unit(13, "feet"),
  50506. weight: math.unit(3200, "lb"),
  50507. name: "Front",
  50508. image: {
  50509. source: "./media/characters/emma/front.svg",
  50510. extra: 2263/2029,
  50511. bottom: 68/2331
  50512. }
  50513. },
  50514. },
  50515. [
  50516. {
  50517. name: "Normal",
  50518. height: math.unit(13, "feet"),
  50519. default: true
  50520. },
  50521. ]
  50522. ))
  50523. characterMakers.push(() => makeCharacter(
  50524. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50525. {
  50526. front: {
  50527. height: math.unit(11 + 9/12, "feet"),
  50528. weight: math.unit(2500, "lb"),
  50529. name: "Front",
  50530. image: {
  50531. source: "./media/characters/ilumina/front.svg",
  50532. extra: 2248/2209,
  50533. bottom: 164/2412
  50534. }
  50535. },
  50536. },
  50537. [
  50538. {
  50539. name: "Normal",
  50540. height: math.unit(11 + 9/12, "feet"),
  50541. default: true
  50542. },
  50543. ]
  50544. ))
  50545. characterMakers.push(() => makeCharacter(
  50546. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50547. {
  50548. front: {
  50549. height: math.unit(8 + 10/12, "feet"),
  50550. weight: math.unit(1350, "lb"),
  50551. name: "Front",
  50552. image: {
  50553. source: "./media/characters/moonshine/front.svg",
  50554. extra: 2395/2288,
  50555. bottom: 40/2435
  50556. }
  50557. },
  50558. },
  50559. [
  50560. {
  50561. name: "Normal",
  50562. height: math.unit(8 + 10/12, "feet"),
  50563. default: true
  50564. },
  50565. ]
  50566. ))
  50567. characterMakers.push(() => makeCharacter(
  50568. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50569. {
  50570. front: {
  50571. height: math.unit(14, "feet"),
  50572. weight: math.unit(3400, "lb"),
  50573. name: "Front",
  50574. image: {
  50575. source: "./media/characters/aletia/front.svg",
  50576. extra: 1185/1052,
  50577. bottom: 21/1206
  50578. }
  50579. },
  50580. },
  50581. [
  50582. {
  50583. name: "Compressed",
  50584. height: math.unit(8, "feet")
  50585. },
  50586. {
  50587. name: "Normal",
  50588. height: math.unit(14, "feet"),
  50589. default: true
  50590. },
  50591. ]
  50592. ))
  50593. characterMakers.push(() => makeCharacter(
  50594. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50595. {
  50596. front: {
  50597. height: math.unit(17, "feet"),
  50598. weight: math.unit(6500, "lb"),
  50599. name: "Front",
  50600. image: {
  50601. source: "./media/characters/deidra/front.svg",
  50602. extra: 1201/1081,
  50603. bottom: 16/1217
  50604. }
  50605. },
  50606. },
  50607. [
  50608. {
  50609. name: "Compressed",
  50610. height: math.unit(9 + 6/12, "feet")
  50611. },
  50612. {
  50613. name: "Normal",
  50614. height: math.unit(17, "feet"),
  50615. default: true
  50616. },
  50617. ]
  50618. ))
  50619. characterMakers.push(() => makeCharacter(
  50620. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50621. {
  50622. front: {
  50623. height: math.unit(7 + 4/12, "feet"),
  50624. weight: math.unit(280, "lb"),
  50625. name: "Front",
  50626. image: {
  50627. source: "./media/characters/freki-yrmori/front.svg",
  50628. extra: 1286/1182,
  50629. bottom: 29/1315
  50630. }
  50631. },
  50632. maw: {
  50633. height: math.unit(0.9, "feet"),
  50634. name: "Maw",
  50635. image: {
  50636. source: "./media/characters/freki-yrmori/maw.svg"
  50637. }
  50638. },
  50639. },
  50640. [
  50641. {
  50642. name: "Normal",
  50643. height: math.unit(7 + 4/12, "feet"),
  50644. default: true
  50645. },
  50646. {
  50647. name: "Macro",
  50648. height: math.unit(38.5, "meters")
  50649. },
  50650. ]
  50651. ))
  50652. characterMakers.push(() => makeCharacter(
  50653. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50654. {
  50655. side: {
  50656. height: math.unit(47.2, "meters"),
  50657. weight: math.unit(10000, "tons"),
  50658. name: "Side",
  50659. image: {
  50660. source: "./media/characters/aetherios/side.svg",
  50661. extra: 2363/642,
  50662. bottom: 221/2584
  50663. }
  50664. },
  50665. top: {
  50666. height: math.unit(240, "meters"),
  50667. weight: math.unit(10000, "tons"),
  50668. name: "Top",
  50669. image: {
  50670. source: "./media/characters/aetherios/top.svg"
  50671. }
  50672. },
  50673. bottom: {
  50674. height: math.unit(240, "meters"),
  50675. weight: math.unit(10000, "tons"),
  50676. name: "Bottom",
  50677. image: {
  50678. source: "./media/characters/aetherios/bottom.svg"
  50679. }
  50680. },
  50681. head: {
  50682. height: math.unit(38.6, "meters"),
  50683. name: "Head",
  50684. image: {
  50685. source: "./media/characters/aetherios/head.svg",
  50686. extra: 1335/1112,
  50687. bottom: 0/1335
  50688. }
  50689. },
  50690. front: {
  50691. height: math.unit(29, "meters"),
  50692. name: "Front",
  50693. image: {
  50694. source: "./media/characters/aetherios/front.svg",
  50695. extra: 1266/953,
  50696. bottom: 158/1424
  50697. }
  50698. },
  50699. maw: {
  50700. height: math.unit(16.37, "meters"),
  50701. name: "Maw",
  50702. image: {
  50703. source: "./media/characters/aetherios/maw.svg",
  50704. extra: 748/637,
  50705. bottom: 0/748
  50706. },
  50707. extraAttributes: {
  50708. preyCapacity: {
  50709. name: "Capacity",
  50710. power: 3,
  50711. type: "volume",
  50712. base: math.unit(1000, "people")
  50713. },
  50714. tongueSize: {
  50715. name: "Tongue Size",
  50716. power: 2,
  50717. type: "area",
  50718. base: math.unit(21, "m^2")
  50719. }
  50720. }
  50721. },
  50722. forepaw: {
  50723. height: math.unit(18, "meters"),
  50724. name: "Forepaw",
  50725. image: {
  50726. source: "./media/characters/aetherios/forepaw.svg"
  50727. }
  50728. },
  50729. hindpaw: {
  50730. height: math.unit(23, "meters"),
  50731. name: "Hindpaw",
  50732. image: {
  50733. source: "./media/characters/aetherios/hindpaw.svg"
  50734. }
  50735. },
  50736. genitals: {
  50737. height: math.unit(42, "meters"),
  50738. name: "Genitals",
  50739. image: {
  50740. source: "./media/characters/aetherios/genitals.svg"
  50741. }
  50742. },
  50743. },
  50744. [
  50745. {
  50746. name: "Normal",
  50747. height: math.unit(47.2, "meters"),
  50748. default: true
  50749. },
  50750. {
  50751. name: "Macro",
  50752. height: math.unit(160, "meters")
  50753. },
  50754. {
  50755. name: "Mega",
  50756. height: math.unit(1.87, "km")
  50757. },
  50758. {
  50759. name: "Giga",
  50760. height: math.unit(40000, "km")
  50761. },
  50762. {
  50763. name: "Stellar",
  50764. height: math.unit(158000000, "km")
  50765. },
  50766. {
  50767. name: "Cosmic",
  50768. height: math.unit(9.46e12, "km")
  50769. },
  50770. ]
  50771. ))
  50772. characterMakers.push(() => makeCharacter(
  50773. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50774. {
  50775. front: {
  50776. height: math.unit(5 + 4/12, "feet"),
  50777. weight: math.unit(80, "lb"),
  50778. name: "Front",
  50779. image: {
  50780. source: "./media/characters/mizu-gieeg/front.svg",
  50781. extra: 850/709,
  50782. bottom: 52/902
  50783. }
  50784. },
  50785. back: {
  50786. height: math.unit(5 + 4/12, "feet"),
  50787. weight: math.unit(80, "lb"),
  50788. name: "Back",
  50789. image: {
  50790. source: "./media/characters/mizu-gieeg/back.svg",
  50791. extra: 882/745,
  50792. bottom: 25/907
  50793. }
  50794. },
  50795. },
  50796. [
  50797. {
  50798. name: "Normal",
  50799. height: math.unit(5 + 4/12, "feet"),
  50800. default: true
  50801. },
  50802. ]
  50803. ))
  50804. characterMakers.push(() => makeCharacter(
  50805. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50806. {
  50807. front: {
  50808. height: math.unit(6, "feet"),
  50809. name: "Front",
  50810. image: {
  50811. source: "./media/characters/roselle-st-papier/front.svg",
  50812. extra: 1430/1280,
  50813. bottom: 37/1467
  50814. }
  50815. },
  50816. back: {
  50817. height: math.unit(6, "feet"),
  50818. name: "Back",
  50819. image: {
  50820. source: "./media/characters/roselle-st-papier/back.svg",
  50821. extra: 1491/1296,
  50822. bottom: 23/1514
  50823. }
  50824. },
  50825. ear: {
  50826. height: math.unit(1.26, "feet"),
  50827. name: "Ear",
  50828. image: {
  50829. source: "./media/characters/roselle-st-papier/ear.svg"
  50830. }
  50831. },
  50832. },
  50833. [
  50834. {
  50835. name: "Normal",
  50836. height: math.unit(150, "feet"),
  50837. default: true
  50838. },
  50839. ]
  50840. ))
  50841. characterMakers.push(() => makeCharacter(
  50842. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50843. {
  50844. front: {
  50845. height: math.unit(1, "inches"),
  50846. name: "Front",
  50847. image: {
  50848. source: "./media/characters/valargent/front.svg",
  50849. extra: 1825/1694,
  50850. bottom: 62/1887
  50851. }
  50852. },
  50853. back: {
  50854. height: math.unit(1, "inches"),
  50855. name: "Back",
  50856. image: {
  50857. source: "./media/characters/valargent/back.svg",
  50858. extra: 1775/1682,
  50859. bottom: 88/1863
  50860. }
  50861. },
  50862. },
  50863. [
  50864. {
  50865. name: "Micro",
  50866. height: math.unit(1, "inch"),
  50867. default: true
  50868. },
  50869. ]
  50870. ))
  50871. characterMakers.push(() => makeCharacter(
  50872. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50873. {
  50874. front: {
  50875. height: math.unit(3.4, "meters"),
  50876. name: "Front",
  50877. image: {
  50878. source: "./media/characters/zarina/front.svg",
  50879. extra: 1733/1425,
  50880. bottom: 93/1826
  50881. }
  50882. },
  50883. squatting: {
  50884. height: math.unit(2.14, "meters"),
  50885. name: "Squatting",
  50886. image: {
  50887. source: "./media/characters/zarina/squatting.svg",
  50888. extra: 1073/788,
  50889. bottom: 63/1136
  50890. }
  50891. },
  50892. back: {
  50893. height: math.unit(2.14, "meters"),
  50894. name: "Back",
  50895. image: {
  50896. source: "./media/characters/zarina/back.svg",
  50897. extra: 1128/885,
  50898. bottom: 0/1128
  50899. }
  50900. },
  50901. },
  50902. [
  50903. {
  50904. name: "Normal",
  50905. height: math.unit(3.4, "meters"),
  50906. default: true
  50907. },
  50908. {
  50909. name: "Big",
  50910. height: math.unit(5, "meters")
  50911. },
  50912. {
  50913. name: "Macro",
  50914. height: math.unit(110, "meters")
  50915. },
  50916. ]
  50917. ))
  50918. characterMakers.push(() => makeCharacter(
  50919. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50920. {
  50921. front: {
  50922. height: math.unit(7, "feet"),
  50923. name: "Front",
  50924. image: {
  50925. source: "./media/characters/ventus-astro-fox/front.svg",
  50926. extra: 1792/1623,
  50927. bottom: 28/1820
  50928. }
  50929. },
  50930. back: {
  50931. height: math.unit(7, "feet"),
  50932. name: "Back",
  50933. image: {
  50934. source: "./media/characters/ventus-astro-fox/back.svg",
  50935. extra: 1789/1620,
  50936. bottom: 31/1820
  50937. }
  50938. },
  50939. outfit: {
  50940. height: math.unit(7, "feet"),
  50941. name: "Outfit",
  50942. image: {
  50943. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50944. extra: 1054/925,
  50945. bottom: 15/1069
  50946. }
  50947. },
  50948. head: {
  50949. height: math.unit(1.12, "feet"),
  50950. name: "Head",
  50951. image: {
  50952. source: "./media/characters/ventus-astro-fox/head.svg",
  50953. extra: 866/504,
  50954. bottom: 0/866
  50955. }
  50956. },
  50957. hand: {
  50958. height: math.unit(1, "feet"),
  50959. name: "Hand",
  50960. image: {
  50961. source: "./media/characters/ventus-astro-fox/hand.svg"
  50962. }
  50963. },
  50964. paw: {
  50965. height: math.unit(1.5, "feet"),
  50966. name: "Paw",
  50967. image: {
  50968. source: "./media/characters/ventus-astro-fox/paw.svg"
  50969. }
  50970. },
  50971. },
  50972. [
  50973. {
  50974. name: "Normal",
  50975. height: math.unit(7, "feet"),
  50976. default: true
  50977. },
  50978. {
  50979. name: "Macro",
  50980. height: math.unit(200, "feet")
  50981. },
  50982. {
  50983. name: "Cosmic",
  50984. height: math.unit(3, "universes")
  50985. },
  50986. ]
  50987. ))
  50988. characterMakers.push(() => makeCharacter(
  50989. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50990. {
  50991. front: {
  50992. height: math.unit(3, "meters"),
  50993. weight: math.unit(7000, "lb"),
  50994. name: "Front",
  50995. image: {
  50996. source: "./media/characters/core-t/front.svg",
  50997. extra: 5729/4941,
  50998. bottom: 1129/6858
  50999. }
  51000. },
  51001. },
  51002. [
  51003. {
  51004. name: "Big",
  51005. height: math.unit(3, "meters"),
  51006. default: true
  51007. },
  51008. ]
  51009. ))
  51010. characterMakers.push(() => makeCharacter(
  51011. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51012. {
  51013. normal: {
  51014. height: math.unit(6 + 6/12, "feet"),
  51015. weight: math.unit(275, "lb"),
  51016. name: "Front",
  51017. image: {
  51018. source: "./media/characters/cadbunny/normal.svg",
  51019. extra: 1129/947,
  51020. bottom: 93/1222
  51021. },
  51022. default: true,
  51023. form: "normal"
  51024. },
  51025. gigantamax: {
  51026. height: math.unit(26, "feet"),
  51027. weight: math.unit(16000, "lb"),
  51028. name: "Front",
  51029. image: {
  51030. source: "./media/characters/cadbunny/gigantamax.svg",
  51031. extra: 1133/944,
  51032. bottom: 90/1223
  51033. },
  51034. default: true,
  51035. form: "gigantamax"
  51036. },
  51037. },
  51038. [
  51039. {
  51040. name: "Normal",
  51041. height: math.unit(6 + 6/12, "feet"),
  51042. default: true,
  51043. form: "normal"
  51044. },
  51045. {
  51046. name: "Small",
  51047. height: math.unit(26, "feet"),
  51048. default: true,
  51049. form: "gigantamax"
  51050. },
  51051. {
  51052. name: "Large",
  51053. height: math.unit(78, "feet"),
  51054. form: "gigantamax"
  51055. },
  51056. ],
  51057. {
  51058. "normal": {
  51059. name: "Normal",
  51060. default: true
  51061. },
  51062. "gigantamax": {
  51063. name: "Gigantamax"
  51064. }
  51065. }
  51066. ))
  51067. characterMakers.push(() => makeCharacter(
  51068. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51069. {
  51070. anthroFront: {
  51071. height: math.unit(8, "feet"),
  51072. weight: math.unit(300, "lb"),
  51073. name: "Front",
  51074. image: {
  51075. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51076. extra: 1272/1176,
  51077. bottom: 53/1325
  51078. },
  51079. form: "anthro",
  51080. default: true
  51081. },
  51082. feralSide: {
  51083. height: math.unit(4, "feet"),
  51084. weight: math.unit(250, "lb"),
  51085. name: "Side",
  51086. image: {
  51087. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51088. extra: 731/621,
  51089. bottom: 0/731
  51090. },
  51091. form: "feral",
  51092. default: true
  51093. },
  51094. },
  51095. [
  51096. {
  51097. name: "Regular",
  51098. height: math.unit(8, "feet"),
  51099. form: "anthro"
  51100. },
  51101. {
  51102. name: "Macro",
  51103. height: math.unit(250, "feet"),
  51104. form: "anthro",
  51105. default: true
  51106. },
  51107. {
  51108. name: "Regular",
  51109. height: math.unit(4, "feet"),
  51110. form: "feral"
  51111. },
  51112. {
  51113. name: "Macro",
  51114. height: math.unit(125, "feet"),
  51115. form: "feral",
  51116. default: true
  51117. },
  51118. ],
  51119. {
  51120. "anthro": {
  51121. name: "Anthro",
  51122. default: true
  51123. },
  51124. "feral": {
  51125. name: "Feral",
  51126. },
  51127. }
  51128. ))
  51129. characterMakers.push(() => makeCharacter(
  51130. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51131. {
  51132. front: {
  51133. height: math.unit(11 + 10/12, "feet"),
  51134. weight: math.unit(1587, "kg"),
  51135. name: "Front",
  51136. image: {
  51137. source: "./media/characters/maple-javira-dragon/front.svg",
  51138. extra: 1136/744,
  51139. bottom: 73/1209
  51140. }
  51141. },
  51142. side: {
  51143. height: math.unit(11 + 10/12, "feet"),
  51144. weight: math.unit(1587, "kg"),
  51145. name: "Side",
  51146. image: {
  51147. source: "./media/characters/maple-javira-dragon/side.svg",
  51148. extra: 712/505,
  51149. bottom: 17/729
  51150. }
  51151. },
  51152. head: {
  51153. height: math.unit(8.05, "feet"),
  51154. name: "Head",
  51155. image: {
  51156. source: "./media/characters/maple-javira-dragon/head.svg",
  51157. extra: 1420/1344,
  51158. bottom: 0/1420
  51159. }
  51160. },
  51161. },
  51162. [
  51163. {
  51164. name: "Normal",
  51165. height: math.unit(11 + 10/12, "feet"),
  51166. default: true
  51167. },
  51168. ]
  51169. ))
  51170. characterMakers.push(() => makeCharacter(
  51171. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51172. {
  51173. front: {
  51174. height: math.unit(117, "cm"),
  51175. weight: math.unit(50, "kg"),
  51176. name: "Front",
  51177. image: {
  51178. source: "./media/characters/sonia-wyverntail/front.svg",
  51179. extra: 708/592,
  51180. bottom: 25/733
  51181. }
  51182. },
  51183. },
  51184. [
  51185. {
  51186. name: "Normal",
  51187. height: math.unit(117, "cm"),
  51188. default: true
  51189. },
  51190. ]
  51191. ))
  51192. characterMakers.push(() => makeCharacter(
  51193. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51194. {
  51195. front: {
  51196. height: math.unit(6 + 5/12, "feet"),
  51197. name: "Front",
  51198. image: {
  51199. source: "./media/characters/micah/front.svg",
  51200. extra: 1758/1546,
  51201. bottom: 214/1972
  51202. }
  51203. },
  51204. },
  51205. [
  51206. {
  51207. name: "Normal",
  51208. height: math.unit(6 + 5/12, "feet"),
  51209. default: true
  51210. },
  51211. ]
  51212. ))
  51213. characterMakers.push(() => makeCharacter(
  51214. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51215. {
  51216. front: {
  51217. height: math.unit(1.75, "meters"),
  51218. weight: math.unit(100, "kg"),
  51219. name: "Front",
  51220. image: {
  51221. source: "./media/characters/zarya/front.svg",
  51222. extra: 741/735,
  51223. bottom: 44/785
  51224. },
  51225. extraAttributes: {
  51226. "tailLength": {
  51227. name: "Tail Length",
  51228. power: 1,
  51229. type: "length",
  51230. base: math.unit(180, "cm")
  51231. },
  51232. "pawLength": {
  51233. name: "Paw Length",
  51234. power: 1,
  51235. type: "length",
  51236. base: math.unit(31, "cm")
  51237. },
  51238. }
  51239. },
  51240. side: {
  51241. height: math.unit(1.75, "meters"),
  51242. weight: math.unit(100, "kg"),
  51243. name: "Side",
  51244. image: {
  51245. source: "./media/characters/zarya/side.svg",
  51246. extra: 776/770,
  51247. bottom: 17/793
  51248. },
  51249. extraAttributes: {
  51250. "tailLength": {
  51251. name: "Tail Length",
  51252. power: 1,
  51253. type: "length",
  51254. base: math.unit(180, "cm")
  51255. },
  51256. "pawLength": {
  51257. name: "Paw Length",
  51258. power: 1,
  51259. type: "length",
  51260. base: math.unit(31, "cm")
  51261. },
  51262. }
  51263. },
  51264. back: {
  51265. height: math.unit(1.75, "meters"),
  51266. weight: math.unit(100, "kg"),
  51267. name: "Back",
  51268. image: {
  51269. source: "./media/characters/zarya/back.svg",
  51270. extra: 741/735,
  51271. bottom: 44/785
  51272. },
  51273. extraAttributes: {
  51274. "tailLength": {
  51275. name: "Tail Length",
  51276. power: 1,
  51277. type: "length",
  51278. base: math.unit(180, "cm")
  51279. },
  51280. "pawLength": {
  51281. name: "Paw Length",
  51282. power: 1,
  51283. type: "length",
  51284. base: math.unit(31, "cm")
  51285. },
  51286. }
  51287. },
  51288. frontNoTail: {
  51289. height: math.unit(1.75, "meters"),
  51290. weight: math.unit(100, "kg"),
  51291. name: "Front (No Tail)",
  51292. image: {
  51293. source: "./media/characters/zarya/front-no-tail.svg",
  51294. extra: 741/735,
  51295. bottom: 44/785
  51296. },
  51297. extraAttributes: {
  51298. "tailLength": {
  51299. name: "Tail Length",
  51300. power: 1,
  51301. type: "length",
  51302. base: math.unit(180, "cm")
  51303. },
  51304. "pawLength": {
  51305. name: "Paw Length",
  51306. power: 1,
  51307. type: "length",
  51308. base: math.unit(31, "cm")
  51309. },
  51310. }
  51311. },
  51312. dressed: {
  51313. height: math.unit(1.75, "meters"),
  51314. weight: math.unit(100, "kg"),
  51315. name: "Dressed",
  51316. image: {
  51317. source: "./media/characters/zarya/dressed.svg",
  51318. extra: 683/672,
  51319. bottom: 79/762
  51320. },
  51321. extraAttributes: {
  51322. "tailLength": {
  51323. name: "Tail Length",
  51324. power: 1,
  51325. type: "length",
  51326. base: math.unit(180, "cm")
  51327. },
  51328. "pawLength": {
  51329. name: "Paw Length",
  51330. power: 1,
  51331. type: "length",
  51332. base: math.unit(31, "cm")
  51333. },
  51334. }
  51335. },
  51336. },
  51337. [
  51338. {
  51339. name: "Micro",
  51340. height: math.unit(5, "cm")
  51341. },
  51342. {
  51343. name: "Normal",
  51344. height: math.unit(1.75, "meters"),
  51345. default: true
  51346. },
  51347. {
  51348. name: "Macro",
  51349. height: math.unit(122, "meters")
  51350. },
  51351. ]
  51352. ))
  51353. characterMakers.push(() => makeCharacter(
  51354. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51355. {
  51356. front: {
  51357. height: math.unit(7.5, "feet"),
  51358. name: "Front",
  51359. image: {
  51360. source: "./media/characters/sven-hatisson/front.svg",
  51361. extra: 917/857,
  51362. bottom: 42/959
  51363. }
  51364. },
  51365. back: {
  51366. height: math.unit(7.5, "feet"),
  51367. name: "Back",
  51368. image: {
  51369. source: "./media/characters/sven-hatisson/back.svg",
  51370. extra: 903/856,
  51371. bottom: 15/918
  51372. }
  51373. },
  51374. },
  51375. [
  51376. {
  51377. name: "Base Height",
  51378. height: math.unit(7.5, "feet")
  51379. },
  51380. {
  51381. name: "Usual Height",
  51382. height: math.unit(13.5, "feet"),
  51383. default: true
  51384. },
  51385. {
  51386. name: "Smaller Macro",
  51387. height: math.unit(85, "feet")
  51388. },
  51389. {
  51390. name: "Moderate Macro",
  51391. height: math.unit(320, "feet")
  51392. },
  51393. {
  51394. name: "Large Macro",
  51395. height: math.unit(1000, "feet")
  51396. },
  51397. {
  51398. name: "Largest Size",
  51399. height: math.unit(2, "miles")
  51400. },
  51401. ]
  51402. ))
  51403. characterMakers.push(() => makeCharacter(
  51404. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51405. {
  51406. side: {
  51407. height: math.unit(1.8, "meters"),
  51408. weight: math.unit(275, "kg"),
  51409. name: "Side",
  51410. image: {
  51411. source: "./media/characters/terra/side.svg",
  51412. extra: 1273/1147,
  51413. bottom: 0/1273
  51414. }
  51415. },
  51416. },
  51417. [
  51418. {
  51419. name: "Normal",
  51420. height: math.unit(16.2, "meters"),
  51421. default: true
  51422. },
  51423. ]
  51424. ))
  51425. characterMakers.push(() => makeCharacter(
  51426. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51427. {
  51428. borzoiFront: {
  51429. height: math.unit(6 + 9/12, "feet"),
  51430. name: "Front",
  51431. image: {
  51432. source: "./media/characters/rae/borzoi-front.svg",
  51433. extra: 1161/1098,
  51434. bottom: 31/1192
  51435. },
  51436. form: "borzoi",
  51437. default: true
  51438. },
  51439. werewolfFront: {
  51440. height: math.unit(8 + 7/12, "feet"),
  51441. name: "Front",
  51442. image: {
  51443. source: "./media/characters/rae/werewolf-front.svg",
  51444. extra: 1411/1334,
  51445. bottom: 127/1538
  51446. },
  51447. form: "werewolf",
  51448. default: true
  51449. },
  51450. },
  51451. [
  51452. {
  51453. name: "Normal",
  51454. height: math.unit(6 + 9/12, "feet"),
  51455. default: true,
  51456. form: "borzoi"
  51457. },
  51458. {
  51459. name: "Normal",
  51460. height: math.unit(8 + 7/12, "feet"),
  51461. default: true,
  51462. form: "werewolf"
  51463. },
  51464. ],
  51465. {
  51466. "borzoi": {
  51467. name: "Borzoi",
  51468. default: true
  51469. },
  51470. "werewolf": {
  51471. name: "Werewolf",
  51472. },
  51473. }
  51474. ))
  51475. characterMakers.push(() => makeCharacter(
  51476. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51477. {
  51478. front: {
  51479. height: math.unit(8 + 7/12, "feet"),
  51480. weight: math.unit(482, "lb"),
  51481. name: "Front",
  51482. image: {
  51483. source: "./media/characters/kit/front.svg",
  51484. extra: 1247/1103,
  51485. bottom: 41/1288
  51486. }
  51487. },
  51488. back: {
  51489. height: math.unit(8 + 7/12, "feet"),
  51490. weight: math.unit(482, "lb"),
  51491. name: "Back",
  51492. image: {
  51493. source: "./media/characters/kit/back.svg",
  51494. extra: 1252/1123,
  51495. bottom: 21/1273
  51496. }
  51497. },
  51498. paw: {
  51499. height: math.unit(1.46, "feet"),
  51500. name: "Paw",
  51501. image: {
  51502. source: "./media/characters/kit/paw.svg"
  51503. }
  51504. },
  51505. },
  51506. [
  51507. {
  51508. name: "Normal",
  51509. height: math.unit(2.61, "meters"),
  51510. default: true
  51511. },
  51512. {
  51513. name: "\"Tall\"",
  51514. height: math.unit(8.21, "meters")
  51515. },
  51516. {
  51517. name: "Tall",
  51518. height: math.unit(19.6, "meters")
  51519. },
  51520. {
  51521. name: "Very Tall",
  51522. height: math.unit(57.91, "meters")
  51523. },
  51524. {
  51525. name: "Semi-Macro",
  51526. height: math.unit(138.64, "meters")
  51527. },
  51528. {
  51529. name: "Macro",
  51530. height: math.unit(831.99, "meters")
  51531. },
  51532. {
  51533. name: "EX-Macro",
  51534. height: math.unit(96451121, "meters")
  51535. },
  51536. {
  51537. name: "S1-Omnipotent",
  51538. height: math.unit(4.42074e+9, "meters")
  51539. },
  51540. {
  51541. name: "S2-Omnipotent",
  51542. height: math.unit(9.42074e+17, "meters")
  51543. },
  51544. {
  51545. name: "Omnipotent",
  51546. height: math.unit(4.23112e+24, "meters")
  51547. },
  51548. {
  51549. name: "Hypergod",
  51550. height: math.unit(5.05176e+27, "meters")
  51551. },
  51552. {
  51553. name: "Hypergod-EX",
  51554. height: math.unit(9.45532e+49, "meters")
  51555. },
  51556. {
  51557. name: "Hypergod-SP",
  51558. height: math.unit(9.45532e+195, "meters")
  51559. },
  51560. ]
  51561. ))
  51562. characterMakers.push(() => makeCharacter(
  51563. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51564. {
  51565. side: {
  51566. height: math.unit(0.6, "meters"),
  51567. weight: math.unit(24, "kg"),
  51568. name: "Side",
  51569. image: {
  51570. source: "./media/characters/celeste/side.svg",
  51571. extra: 810/517,
  51572. bottom: 53/863
  51573. }
  51574. },
  51575. },
  51576. [
  51577. {
  51578. name: "Velociraptor",
  51579. height: math.unit(0.6, "meters"),
  51580. default: true
  51581. },
  51582. {
  51583. name: "Utahraptor",
  51584. height: math.unit(1.8, "meters")
  51585. },
  51586. {
  51587. name: "Gallimimus",
  51588. height: math.unit(4.0, "meters")
  51589. },
  51590. {
  51591. name: "Large",
  51592. height: math.unit(20, "meters")
  51593. },
  51594. {
  51595. name: "Planetary",
  51596. height: math.unit(50, "megameters")
  51597. },
  51598. {
  51599. name: "Stellar",
  51600. height: math.unit(1.5, "gigameters")
  51601. },
  51602. {
  51603. name: "Galactic",
  51604. height: math.unit(100, "exameters")
  51605. },
  51606. ]
  51607. ))
  51608. characterMakers.push(() => makeCharacter(
  51609. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51610. {
  51611. front: {
  51612. height: math.unit(6, "feet"),
  51613. weight: math.unit(210, "lb"),
  51614. name: "Front",
  51615. image: {
  51616. source: "./media/characters/glacia/front.svg",
  51617. extra: 958/901,
  51618. bottom: 45/1003
  51619. }
  51620. },
  51621. },
  51622. [
  51623. {
  51624. name: "Macro",
  51625. height: math.unit(1000, "meters"),
  51626. default: true
  51627. },
  51628. ]
  51629. ))
  51630. characterMakers.push(() => makeCharacter(
  51631. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51632. {
  51633. front: {
  51634. height: math.unit(4, "meters"),
  51635. name: "Front",
  51636. image: {
  51637. source: "./media/characters/giri/front.svg",
  51638. extra: 966/894,
  51639. bottom: 21/987
  51640. }
  51641. },
  51642. },
  51643. [
  51644. {
  51645. name: "Normal",
  51646. height: math.unit(4, "meters"),
  51647. default: true
  51648. },
  51649. ]
  51650. ))
  51651. characterMakers.push(() => makeCharacter(
  51652. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51653. {
  51654. back: {
  51655. height: math.unit(4, "feet"),
  51656. weight: math.unit(37, "lb"),
  51657. name: "Back",
  51658. image: {
  51659. source: "./media/characters/tin/back.svg",
  51660. extra: 845/780,
  51661. bottom: 28/873
  51662. }
  51663. },
  51664. },
  51665. [
  51666. {
  51667. name: "Normal",
  51668. height: math.unit(4, "feet"),
  51669. default: true
  51670. },
  51671. ]
  51672. ))
  51673. characterMakers.push(() => makeCharacter(
  51674. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51675. {
  51676. front: {
  51677. height: math.unit(25, "feet"),
  51678. name: "Front",
  51679. image: {
  51680. source: "./media/characters/cadenza-vivace/front.svg",
  51681. extra: 1842/1578,
  51682. bottom: 30/1872
  51683. }
  51684. },
  51685. },
  51686. [
  51687. {
  51688. name: "Macro",
  51689. height: math.unit(25, "feet"),
  51690. default: true
  51691. },
  51692. ]
  51693. ))
  51694. characterMakers.push(() => makeCharacter(
  51695. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51696. {
  51697. front: {
  51698. height: math.unit(10, "feet"),
  51699. weight: math.unit(625, "kg"),
  51700. name: "Front",
  51701. image: {
  51702. source: "./media/characters/zain/front.svg",
  51703. extra: 1682/1498,
  51704. bottom: 223/1905
  51705. }
  51706. },
  51707. back: {
  51708. height: math.unit(10, "feet"),
  51709. weight: math.unit(625, "kg"),
  51710. name: "Back",
  51711. image: {
  51712. source: "./media/characters/zain/back.svg",
  51713. extra: 1814/1657,
  51714. bottom: 152/1966
  51715. }
  51716. },
  51717. head: {
  51718. height: math.unit(10, "feet"),
  51719. weight: math.unit(625, "kg"),
  51720. name: "Head",
  51721. image: {
  51722. source: "./media/characters/zain/head.svg",
  51723. extra: 1059/762,
  51724. bottom: 0/1059
  51725. }
  51726. },
  51727. },
  51728. [
  51729. {
  51730. name: "Normal",
  51731. height: math.unit(10, "feet"),
  51732. default: true
  51733. },
  51734. ]
  51735. ))
  51736. characterMakers.push(() => makeCharacter(
  51737. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51738. {
  51739. front: {
  51740. height: math.unit(6 + 5/12, "feet"),
  51741. weight: math.unit(750, "lb"),
  51742. name: "Front",
  51743. image: {
  51744. source: "./media/characters/ruchex/front.svg",
  51745. extra: 877/820,
  51746. bottom: 17/894
  51747. },
  51748. extraAttributes: {
  51749. "width": {
  51750. name: "Width",
  51751. power: 1,
  51752. type: "length",
  51753. base: math.unit(4.757, "feet")
  51754. },
  51755. }
  51756. },
  51757. },
  51758. [
  51759. {
  51760. name: "Normal",
  51761. height: math.unit(6 + 5/12, "feet"),
  51762. default: true
  51763. },
  51764. ]
  51765. ))
  51766. characterMakers.push(() => makeCharacter(
  51767. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51768. {
  51769. dressedFront: {
  51770. height: math.unit(191, "cm"),
  51771. weight: math.unit(80, "kg"),
  51772. name: "Front",
  51773. image: {
  51774. source: "./media/characters/buster/dressed-front.svg",
  51775. extra: 1022/973,
  51776. bottom: 69/1091
  51777. }
  51778. },
  51779. dressedBack: {
  51780. height: math.unit(191, "cm"),
  51781. weight: math.unit(80, "kg"),
  51782. name: "Back",
  51783. image: {
  51784. source: "./media/characters/buster/dressed-back.svg",
  51785. extra: 1018/970,
  51786. bottom: 55/1073
  51787. }
  51788. },
  51789. nudeFront: {
  51790. height: math.unit(191, "cm"),
  51791. weight: math.unit(80, "kg"),
  51792. name: "Front (Nude)",
  51793. image: {
  51794. source: "./media/characters/buster/nude-front.svg",
  51795. extra: 1022/973,
  51796. bottom: 69/1091
  51797. }
  51798. },
  51799. nudeBack: {
  51800. height: math.unit(191, "cm"),
  51801. weight: math.unit(80, "kg"),
  51802. name: "Back (Nude)",
  51803. image: {
  51804. source: "./media/characters/buster/nude-back.svg",
  51805. extra: 1018/970,
  51806. bottom: 55/1073
  51807. }
  51808. },
  51809. dick: {
  51810. height: math.unit(2.59, "feet"),
  51811. name: "Dick",
  51812. image: {
  51813. source: "./media/characters/buster/dick.svg"
  51814. }
  51815. },
  51816. ass: {
  51817. height: math.unit(1.2, "feet"),
  51818. name: "Ass",
  51819. image: {
  51820. source: "./media/characters/buster/ass.svg"
  51821. }
  51822. },
  51823. },
  51824. [
  51825. {
  51826. name: "Normal",
  51827. height: math.unit(191, "cm"),
  51828. default: true
  51829. },
  51830. ]
  51831. ))
  51832. characterMakers.push(() => makeCharacter(
  51833. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51834. {
  51835. side: {
  51836. height: math.unit(8.1, "feet"),
  51837. weight: math.unit(3500, "lb"),
  51838. name: "Side",
  51839. image: {
  51840. source: "./media/characters/sonya/side.svg",
  51841. extra: 1730/1317,
  51842. bottom: 86/1816
  51843. }
  51844. },
  51845. },
  51846. [
  51847. {
  51848. name: "Normal",
  51849. height: math.unit(8.1, "feet"),
  51850. default: true
  51851. },
  51852. ]
  51853. ))
  51854. characterMakers.push(() => makeCharacter(
  51855. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51856. {
  51857. front: {
  51858. height: math.unit(6, "feet"),
  51859. weight: math.unit(150, "lb"),
  51860. name: "Front",
  51861. image: {
  51862. source: "./media/characters/cadence-andrysiak/front.svg",
  51863. extra: 1164/1121,
  51864. bottom: 60/1224
  51865. }
  51866. },
  51867. back: {
  51868. height: math.unit(6, "feet"),
  51869. weight: math.unit(150, "lb"),
  51870. name: "Back",
  51871. image: {
  51872. source: "./media/characters/cadence-andrysiak/back.svg",
  51873. extra: 1200/1165,
  51874. bottom: 9/1209
  51875. }
  51876. },
  51877. dressed: {
  51878. height: math.unit(6, "feet"),
  51879. weight: math.unit(150, "lb"),
  51880. name: "Dressed",
  51881. image: {
  51882. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51883. extra: 1164/1121,
  51884. bottom: 60/1224
  51885. }
  51886. },
  51887. },
  51888. [
  51889. {
  51890. name: "Micro",
  51891. height: math.unit(1, "mm")
  51892. },
  51893. {
  51894. name: "Normal",
  51895. height: math.unit(6, "feet"),
  51896. default: true
  51897. },
  51898. ]
  51899. ))
  51900. characterMakers.push(() => makeCharacter(
  51901. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51902. {
  51903. front: {
  51904. height: math.unit(60, "inches"),
  51905. weight: math.unit(16, "lb"),
  51906. preyCapacity: math.unit(80, "liters"),
  51907. name: "Front",
  51908. image: {
  51909. source: "./media/characters/penny-lynx/front.svg",
  51910. extra: 1959/1769,
  51911. bottom: 49/2008
  51912. }
  51913. },
  51914. },
  51915. [
  51916. {
  51917. name: "Nokia",
  51918. height: math.unit(2, "inches")
  51919. },
  51920. {
  51921. name: "Desktop",
  51922. height: math.unit(24, "inches")
  51923. },
  51924. {
  51925. name: "TV",
  51926. height: math.unit(60, "inches")
  51927. },
  51928. {
  51929. name: "Jumbotron",
  51930. height: math.unit(12, "feet")
  51931. },
  51932. {
  51933. name: "Billboard",
  51934. height: math.unit(48, "feet"),
  51935. default: true
  51936. },
  51937. {
  51938. name: "IMAX",
  51939. height: math.unit(96, "feet")
  51940. },
  51941. {
  51942. name: "SINGULARITY",
  51943. height: math.unit(864938, "miles")
  51944. },
  51945. ]
  51946. ))
  51947. characterMakers.push(() => makeCharacter(
  51948. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51949. {
  51950. front: {
  51951. height: math.unit(5 + 4/12, "feet"),
  51952. weight: math.unit(230, "lb"),
  51953. name: "Front",
  51954. image: {
  51955. source: "./media/characters/sukebe/front.svg",
  51956. extra: 2130/2038,
  51957. bottom: 90/2220
  51958. }
  51959. },
  51960. back: {
  51961. height: math.unit(3.48, "feet"),
  51962. weight: math.unit(230, "lb"),
  51963. name: "Back",
  51964. image: {
  51965. source: "./media/characters/sukebe/back.svg",
  51966. extra: 1670/1604,
  51967. bottom: 0/1670
  51968. }
  51969. },
  51970. },
  51971. [
  51972. {
  51973. name: "Normal",
  51974. height: math.unit(5 + 4/12, "feet"),
  51975. default: true
  51976. },
  51977. ]
  51978. ))
  51979. characterMakers.push(() => makeCharacter(
  51980. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51981. {
  51982. front: {
  51983. height: math.unit(6, "feet"),
  51984. name: "Front",
  51985. image: {
  51986. source: "./media/characters/nylla/front.svg",
  51987. extra: 1868/1699,
  51988. bottom: 97/1965
  51989. }
  51990. },
  51991. back: {
  51992. height: math.unit(6, "feet"),
  51993. name: "Back",
  51994. image: {
  51995. source: "./media/characters/nylla/back.svg",
  51996. extra: 1889/1712,
  51997. bottom: 93/1982
  51998. }
  51999. },
  52000. frontNsfw: {
  52001. height: math.unit(6, "feet"),
  52002. name: "Front (NSFW)",
  52003. image: {
  52004. source: "./media/characters/nylla/front-nsfw.svg",
  52005. extra: 1868/1699,
  52006. bottom: 97/1965
  52007. },
  52008. extraAttributes: {
  52009. "dickLength": {
  52010. name: "Dick Length",
  52011. power: 1,
  52012. type: "length",
  52013. base: math.unit(1.4, "feet")
  52014. },
  52015. "cumVolume": {
  52016. name: "Cum Volume",
  52017. power: 3,
  52018. type: "volume",
  52019. base: math.unit(100, "mL")
  52020. },
  52021. }
  52022. },
  52023. backNsfw: {
  52024. height: math.unit(6, "feet"),
  52025. name: "Back (NSFW)",
  52026. image: {
  52027. source: "./media/characters/nylla/back-nsfw.svg",
  52028. extra: 1889/1712,
  52029. bottom: 93/1982
  52030. }
  52031. },
  52032. maw: {
  52033. height: math.unit(2.10, "feet"),
  52034. name: "Maw",
  52035. image: {
  52036. source: "./media/characters/nylla/maw.svg"
  52037. }
  52038. },
  52039. paws: {
  52040. height: math.unit(2.06, "feet"),
  52041. name: "Paws",
  52042. image: {
  52043. source: "./media/characters/nylla/paws.svg"
  52044. }
  52045. },
  52046. muzzle: {
  52047. height: math.unit(0.61, "feet"),
  52048. name: "Muzzle",
  52049. image: {
  52050. source: "./media/characters/nylla/muzzle.svg"
  52051. }
  52052. },
  52053. sheath: {
  52054. height: math.unit(1.305, "feet"),
  52055. name: "Sheath",
  52056. image: {
  52057. source: "./media/characters/nylla/sheath.svg"
  52058. }
  52059. },
  52060. },
  52061. [
  52062. {
  52063. name: "Micro",
  52064. height: math.unit(7.5, "inches")
  52065. },
  52066. {
  52067. name: "Normal",
  52068. height: math.unit(7, "feet"),
  52069. default: true
  52070. },
  52071. {
  52072. name: "Macro",
  52073. height: math.unit(60, "feet")
  52074. },
  52075. {
  52076. name: "Mega",
  52077. height: math.unit(200, "feet")
  52078. },
  52079. ]
  52080. ))
  52081. characterMakers.push(() => makeCharacter(
  52082. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52083. {
  52084. front: {
  52085. height: math.unit(10, "feet"),
  52086. weight: math.unit(2300, "lb"),
  52087. name: "Front",
  52088. image: {
  52089. source: "./media/characters/hunt3r/front.svg",
  52090. extra: 1909/1742,
  52091. bottom: 46/1955
  52092. }
  52093. },
  52094. },
  52095. [
  52096. {
  52097. name: "Normal",
  52098. height: math.unit(10, "feet"),
  52099. default: true
  52100. },
  52101. ]
  52102. ))
  52103. characterMakers.push(() => makeCharacter(
  52104. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52105. {
  52106. dressed: {
  52107. height: math.unit(11, "feet"),
  52108. weight: math.unit(18500, "lb"),
  52109. preyCapacity: math.unit(9, "people"),
  52110. name: "Dressed",
  52111. image: {
  52112. source: "./media/characters/cylphis/dressed.svg",
  52113. extra: 1028/1003,
  52114. bottom: 75/1103
  52115. },
  52116. },
  52117. undressed: {
  52118. height: math.unit(11, "feet"),
  52119. weight: math.unit(18500, "lb"),
  52120. preyCapacity: math.unit(9, "people"),
  52121. name: "Undressed",
  52122. image: {
  52123. source: "./media/characters/cylphis/undressed.svg",
  52124. extra: 1028/1003,
  52125. bottom: 75/1103
  52126. }
  52127. },
  52128. full: {
  52129. height: math.unit(11, "feet"),
  52130. weight: math.unit(18500 + 150*9, "lb"),
  52131. preyCapacity: math.unit(9, "people"),
  52132. name: "Full",
  52133. image: {
  52134. source: "./media/characters/cylphis/full.svg",
  52135. extra: 1028/1003,
  52136. bottom: 75/1103
  52137. }
  52138. },
  52139. },
  52140. [
  52141. {
  52142. name: "Small",
  52143. height: math.unit(8, "feet")
  52144. },
  52145. {
  52146. name: "Normal",
  52147. height: math.unit(11, "feet"),
  52148. default: true
  52149. },
  52150. ]
  52151. ))
  52152. characterMakers.push(() => makeCharacter(
  52153. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52154. {
  52155. front: {
  52156. height: math.unit(2 + 7/12, "feet"),
  52157. name: "Front",
  52158. image: {
  52159. source: "./media/characters/orishan/front.svg",
  52160. extra: 1058/1023,
  52161. bottom: 23/1081
  52162. }
  52163. },
  52164. back: {
  52165. height: math.unit(2 + 7/12, "feet"),
  52166. name: "Back",
  52167. image: {
  52168. source: "./media/characters/orishan/back.svg",
  52169. extra: 1058/1023,
  52170. bottom: 23/1081
  52171. }
  52172. },
  52173. },
  52174. [
  52175. {
  52176. name: "Micro",
  52177. height: math.unit(2, "cm")
  52178. },
  52179. {
  52180. name: "Normal",
  52181. height: math.unit(2 + 7/12, "feet"),
  52182. default: true
  52183. },
  52184. ]
  52185. ))
  52186. characterMakers.push(() => makeCharacter(
  52187. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52188. {
  52189. front: {
  52190. height: math.unit(3, "meters"),
  52191. weight: math.unit(508, "kg"),
  52192. name: "Front",
  52193. image: {
  52194. source: "./media/characters/seranis/front.svg",
  52195. extra: 1478/1454,
  52196. bottom: 41/1519
  52197. }
  52198. },
  52199. },
  52200. [
  52201. {
  52202. name: "Normal",
  52203. height: math.unit(3, "meters"),
  52204. default: true
  52205. },
  52206. {
  52207. name: "Macro",
  52208. height: math.unit(108, "meters")
  52209. },
  52210. {
  52211. name: "Megamacro",
  52212. height: math.unit(1250, "meters")
  52213. },
  52214. ]
  52215. ))
  52216. characterMakers.push(() => makeCharacter(
  52217. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52218. {
  52219. undressed: {
  52220. height: math.unit(5 + 3/12, "feet"),
  52221. name: "Undressed",
  52222. image: {
  52223. source: "./media/characters/ankou/undressed.svg",
  52224. extra: 1301/1213,
  52225. bottom: 87/1388
  52226. }
  52227. },
  52228. dressed: {
  52229. height: math.unit(5 + 3/12, "feet"),
  52230. name: "Dressed",
  52231. image: {
  52232. source: "./media/characters/ankou/dressed.svg",
  52233. extra: 1301/1213,
  52234. bottom: 87/1388
  52235. }
  52236. },
  52237. head: {
  52238. height: math.unit(1.61, "feet"),
  52239. name: "Head",
  52240. image: {
  52241. source: "./media/characters/ankou/head.svg"
  52242. }
  52243. },
  52244. },
  52245. [
  52246. {
  52247. name: "Normal",
  52248. height: math.unit(5 + 3/12, "feet"),
  52249. default: true
  52250. },
  52251. ]
  52252. ))
  52253. characterMakers.push(() => makeCharacter(
  52254. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52255. {
  52256. side: {
  52257. height: math.unit(6 + 3/12, "feet"),
  52258. weight: math.unit(200, "kg"),
  52259. name: "Side",
  52260. image: {
  52261. source: "./media/characters/juniper-skunktaur/side.svg",
  52262. extra: 1574/1229,
  52263. bottom: 38/1612
  52264. }
  52265. },
  52266. front: {
  52267. height: math.unit(6 + 3/12, "feet"),
  52268. weight: math.unit(200, "kg"),
  52269. name: "Front",
  52270. image: {
  52271. source: "./media/characters/juniper-skunktaur/front.svg",
  52272. extra: 1337/1278,
  52273. bottom: 22/1359
  52274. }
  52275. },
  52276. back: {
  52277. height: math.unit(6 + 3/12, "feet"),
  52278. weight: math.unit(200, "kg"),
  52279. name: "Back",
  52280. image: {
  52281. source: "./media/characters/juniper-skunktaur/back.svg",
  52282. extra: 1618/1273,
  52283. bottom: 13/1631
  52284. }
  52285. },
  52286. top: {
  52287. height: math.unit(2.62, "feet"),
  52288. weight: math.unit(200, "kg"),
  52289. name: "Top",
  52290. image: {
  52291. source: "./media/characters/juniper-skunktaur/top.svg"
  52292. }
  52293. },
  52294. },
  52295. [
  52296. {
  52297. name: "Normal",
  52298. height: math.unit(6 + 3/12, "feet"),
  52299. default: true
  52300. },
  52301. ]
  52302. ))
  52303. characterMakers.push(() => makeCharacter(
  52304. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52305. {
  52306. front: {
  52307. height: math.unit(20.5, "feet"),
  52308. name: "Front",
  52309. image: {
  52310. source: "./media/characters/rei/front.svg",
  52311. extra: 1349/1195,
  52312. bottom: 31/1380
  52313. }
  52314. },
  52315. back: {
  52316. height: math.unit(20.5, "feet"),
  52317. name: "Back",
  52318. image: {
  52319. source: "./media/characters/rei/back.svg",
  52320. extra: 1358/1204,
  52321. bottom: 22/1380
  52322. }
  52323. },
  52324. pawsDigi: {
  52325. height: math.unit(3.45, "feet"),
  52326. name: "Paws (Digi)",
  52327. image: {
  52328. source: "./media/characters/rei/paws-digi.svg"
  52329. }
  52330. },
  52331. pawsPlanti: {
  52332. height: math.unit(3.45, "feet"),
  52333. name: "Paws (Planti)",
  52334. image: {
  52335. source: "./media/characters/rei/paws-planti.svg"
  52336. }
  52337. },
  52338. },
  52339. [
  52340. {
  52341. name: "Normal",
  52342. height: math.unit(20.5, "feet"),
  52343. default: true
  52344. },
  52345. ]
  52346. ))
  52347. characterMakers.push(() => makeCharacter(
  52348. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52349. {
  52350. front: {
  52351. height: math.unit(5 + 11/12, "feet"),
  52352. name: "Front",
  52353. image: {
  52354. source: "./media/characters/carina/front.svg",
  52355. extra: 1720/1449,
  52356. bottom: 14/1734
  52357. }
  52358. },
  52359. back: {
  52360. height: math.unit(5 + 11/12, "feet"),
  52361. name: "Back",
  52362. image: {
  52363. source: "./media/characters/carina/back.svg",
  52364. extra: 1493/1445,
  52365. bottom: 17/1510
  52366. }
  52367. },
  52368. paw: {
  52369. height: math.unit(0.92, "feet"),
  52370. name: "Paw",
  52371. image: {
  52372. source: "./media/characters/carina/paw.svg"
  52373. }
  52374. },
  52375. },
  52376. [
  52377. {
  52378. name: "Normal",
  52379. height: math.unit(5 + 11/12, "feet"),
  52380. default: true
  52381. },
  52382. ]
  52383. ))
  52384. characterMakers.push(() => makeCharacter(
  52385. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52386. {
  52387. front: {
  52388. height: math.unit(4.88, "meters"),
  52389. name: "Front",
  52390. image: {
  52391. source: "./media/characters/maya/front.svg",
  52392. extra: 1222/1145,
  52393. bottom: 57/1279
  52394. }
  52395. },
  52396. },
  52397. [
  52398. {
  52399. name: "Normal",
  52400. height: math.unit(4.88, "meters"),
  52401. default: true
  52402. },
  52403. {
  52404. name: "Macro",
  52405. height: math.unit(38.1, "meters")
  52406. },
  52407. {
  52408. name: "Macro+",
  52409. height: math.unit(152.4, "meters")
  52410. },
  52411. {
  52412. name: "Macro++",
  52413. height: math.unit(16.09, "km")
  52414. },
  52415. {
  52416. name: "Mega-macro",
  52417. height: math.unit(700, "megameters")
  52418. },
  52419. ]
  52420. ))
  52421. characterMakers.push(() => makeCharacter(
  52422. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52423. {
  52424. front: {
  52425. height: math.unit(6 + 2/12, "feet"),
  52426. weight: math.unit(500, "lb"),
  52427. preyCapacity: math.unit(4, "people"),
  52428. name: "Front",
  52429. image: {
  52430. source: "./media/characters/yepir/front.svg"
  52431. }
  52432. },
  52433. side: {
  52434. height: math.unit(6 + 2/12, "feet"),
  52435. weight: math.unit(500, "lb"),
  52436. preyCapacity: math.unit(4, "people"),
  52437. name: "Side",
  52438. image: {
  52439. source: "./media/characters/yepir/side.svg"
  52440. }
  52441. },
  52442. paw: {
  52443. height: math.unit(1.05, "feet"),
  52444. name: "Paw",
  52445. image: {
  52446. source: "./media/characters/yepir/paw.svg"
  52447. }
  52448. },
  52449. },
  52450. [
  52451. {
  52452. name: "Normal",
  52453. height: math.unit(6 + 2/12, "feet"),
  52454. default: true
  52455. },
  52456. ]
  52457. ))
  52458. characterMakers.push(() => makeCharacter(
  52459. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52460. {
  52461. front: {
  52462. height: math.unit(5 + 4/12, "feet"),
  52463. name: "Front",
  52464. image: {
  52465. source: "./media/characters/russec/front.svg",
  52466. extra: 1926/1626,
  52467. bottom: 72/1998
  52468. }
  52469. },
  52470. back: {
  52471. height: math.unit(5 + 4/12, "feet"),
  52472. name: "Back",
  52473. image: {
  52474. source: "./media/characters/russec/back.svg",
  52475. extra: 1910/1591,
  52476. bottom: 48/1958
  52477. }
  52478. },
  52479. },
  52480. [
  52481. {
  52482. name: "Small",
  52483. height: math.unit(5 + 4/12, "feet")
  52484. },
  52485. {
  52486. name: "Normal",
  52487. height: math.unit(72, "feet"),
  52488. default: true
  52489. },
  52490. ]
  52491. ))
  52492. characterMakers.push(() => makeCharacter(
  52493. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52494. {
  52495. side: {
  52496. height: math.unit(12, "feet"),
  52497. name: "Side",
  52498. image: {
  52499. source: "./media/characters/cianus/side.svg",
  52500. extra: 808/526,
  52501. bottom: 61/869
  52502. }
  52503. },
  52504. },
  52505. [
  52506. {
  52507. name: "Normal",
  52508. height: math.unit(12, "feet"),
  52509. default: true
  52510. },
  52511. ]
  52512. ))
  52513. characterMakers.push(() => makeCharacter(
  52514. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52515. {
  52516. front: {
  52517. height: math.unit(9 + 6/12, "feet"),
  52518. weight: math.unit(300, "lb"),
  52519. name: "Front",
  52520. image: {
  52521. source: "./media/characters/ahab/front.svg",
  52522. extra: 1897/1868,
  52523. bottom: 121/2018
  52524. }
  52525. },
  52526. frontNsfw: {
  52527. height: math.unit(9 + 6/12, "feet"),
  52528. weight: math.unit(300, "lb"),
  52529. name: "Front-nsfw",
  52530. image: {
  52531. source: "./media/characters/ahab/front-nsfw.svg",
  52532. extra: 1897/1868,
  52533. bottom: 121/2018
  52534. }
  52535. },
  52536. },
  52537. [
  52538. {
  52539. name: "Normal",
  52540. height: math.unit(9 + 6/12, "feet")
  52541. },
  52542. {
  52543. name: "Macro",
  52544. height: math.unit(657, "feet"),
  52545. default: true
  52546. },
  52547. ]
  52548. ))
  52549. characterMakers.push(() => makeCharacter(
  52550. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52551. {
  52552. front: {
  52553. height: math.unit(2.69, "meters"),
  52554. weight: math.unit(132, "kg"),
  52555. name: "Front",
  52556. image: {
  52557. source: "./media/characters/aarkus/front.svg",
  52558. extra: 1400/1231,
  52559. bottom: 34/1434
  52560. }
  52561. },
  52562. back: {
  52563. height: math.unit(2.69, "meters"),
  52564. weight: math.unit(132, "kg"),
  52565. name: "Back",
  52566. image: {
  52567. source: "./media/characters/aarkus/back.svg",
  52568. extra: 1381/1218,
  52569. bottom: 30/1411
  52570. }
  52571. },
  52572. frontNsfw: {
  52573. height: math.unit(2.69, "meters"),
  52574. weight: math.unit(132, "kg"),
  52575. name: "Front (NSFW)",
  52576. image: {
  52577. source: "./media/characters/aarkus/front-nsfw.svg",
  52578. extra: 1400/1231,
  52579. bottom: 34/1434
  52580. }
  52581. },
  52582. foot: {
  52583. height: math.unit(1.45, "feet"),
  52584. name: "Foot",
  52585. image: {
  52586. source: "./media/characters/aarkus/foot.svg"
  52587. }
  52588. },
  52589. head: {
  52590. height: math.unit(2.85, "feet"),
  52591. name: "Head",
  52592. image: {
  52593. source: "./media/characters/aarkus/head.svg"
  52594. }
  52595. },
  52596. headAlt: {
  52597. height: math.unit(3.07, "feet"),
  52598. name: "Head (Alt)",
  52599. image: {
  52600. source: "./media/characters/aarkus/head-alt.svg"
  52601. }
  52602. },
  52603. mouth: {
  52604. height: math.unit(1.25, "feet"),
  52605. name: "Mouth",
  52606. image: {
  52607. source: "./media/characters/aarkus/mouth.svg"
  52608. }
  52609. },
  52610. dick: {
  52611. height: math.unit(1.77, "feet"),
  52612. name: "Dick",
  52613. image: {
  52614. source: "./media/characters/aarkus/dick.svg"
  52615. }
  52616. },
  52617. },
  52618. [
  52619. {
  52620. name: "Normal",
  52621. height: math.unit(2.69, "meters"),
  52622. default: true
  52623. },
  52624. {
  52625. name: "Macro",
  52626. height: math.unit(269, "meters")
  52627. },
  52628. {
  52629. name: "Macro+",
  52630. height: math.unit(672.5, "meters")
  52631. },
  52632. {
  52633. name: "Megamacro",
  52634. height: math.unit(2.017, "km")
  52635. },
  52636. ]
  52637. ))
  52638. characterMakers.push(() => makeCharacter(
  52639. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52640. {
  52641. front: {
  52642. height: math.unit(23.47, "cm"),
  52643. weight: math.unit(600, "grams"),
  52644. name: "Front",
  52645. image: {
  52646. source: "./media/characters/diode/front.svg",
  52647. extra: 1778/1396,
  52648. bottom: 95/1873
  52649. }
  52650. },
  52651. side: {
  52652. height: math.unit(23.47, "cm"),
  52653. weight: math.unit(600, "grams"),
  52654. name: "Side",
  52655. image: {
  52656. source: "./media/characters/diode/side.svg",
  52657. extra: 1831/1404,
  52658. bottom: 86/1917
  52659. }
  52660. },
  52661. wings: {
  52662. height: math.unit(0.683, "feet"),
  52663. name: "Wings",
  52664. image: {
  52665. source: "./media/characters/diode/wings.svg"
  52666. }
  52667. },
  52668. },
  52669. [
  52670. {
  52671. name: "Normal",
  52672. height: math.unit(23.47, "cm"),
  52673. default: true
  52674. },
  52675. ]
  52676. ))
  52677. characterMakers.push(() => makeCharacter(
  52678. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52679. {
  52680. front: {
  52681. height: math.unit(6 + 3/12, "feet"),
  52682. weight: math.unit(250, "lb"),
  52683. name: "Front",
  52684. image: {
  52685. source: "./media/characters/reika/front.svg",
  52686. extra: 1120/1078,
  52687. bottom: 86/1206
  52688. }
  52689. },
  52690. },
  52691. [
  52692. {
  52693. name: "Normal",
  52694. height: math.unit(6 + 3/12, "feet"),
  52695. default: true
  52696. },
  52697. ]
  52698. ))
  52699. characterMakers.push(() => makeCharacter(
  52700. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52701. {
  52702. front: {
  52703. height: math.unit(16 + 8/12, "feet"),
  52704. weight: math.unit(9000, "lb"),
  52705. name: "Front",
  52706. image: {
  52707. source: "./media/characters/lokuto-takama/front.svg",
  52708. extra: 1774/1632,
  52709. bottom: 147/1921
  52710. },
  52711. extraAttributes: {
  52712. "bustWidth": {
  52713. name: "Bust Width",
  52714. power: 1,
  52715. type: "length",
  52716. base: math.unit(2.4, "meters")
  52717. },
  52718. "breastWeight": {
  52719. name: "Breast Weight",
  52720. power: 3,
  52721. type: "mass",
  52722. base: math.unit(1000, "kg")
  52723. },
  52724. }
  52725. },
  52726. },
  52727. [
  52728. {
  52729. name: "Normal",
  52730. height: math.unit(16 + 8/12, "feet"),
  52731. default: true
  52732. },
  52733. ]
  52734. ))
  52735. characterMakers.push(() => makeCharacter(
  52736. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52737. {
  52738. front: {
  52739. height: math.unit(10, "cm"),
  52740. weight: math.unit(850, "grams"),
  52741. name: "Front",
  52742. image: {
  52743. source: "./media/characters/owak-bone/front.svg",
  52744. extra: 1965/1801,
  52745. bottom: 31/1996
  52746. }
  52747. },
  52748. },
  52749. [
  52750. {
  52751. name: "Normal",
  52752. height: math.unit(10, "cm"),
  52753. default: true
  52754. },
  52755. ]
  52756. ))
  52757. characterMakers.push(() => makeCharacter(
  52758. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52759. {
  52760. front: {
  52761. height: math.unit(2 + 6/12, "feet"),
  52762. weight: math.unit(9, "lb"),
  52763. name: "Front",
  52764. image: {
  52765. source: "./media/characters/muffin/front.svg",
  52766. extra: 1220/1195,
  52767. bottom: 84/1304
  52768. }
  52769. },
  52770. },
  52771. [
  52772. {
  52773. name: "Normal",
  52774. height: math.unit(2 + 6/12, "feet"),
  52775. default: true
  52776. },
  52777. ]
  52778. ))
  52779. characterMakers.push(() => makeCharacter(
  52780. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52781. {
  52782. front: {
  52783. height: math.unit(7, "feet"),
  52784. name: "Front",
  52785. image: {
  52786. source: "./media/characters/chimera/front.svg",
  52787. extra: 1752/1614,
  52788. bottom: 68/1820
  52789. }
  52790. },
  52791. },
  52792. [
  52793. {
  52794. name: "Normal",
  52795. height: math.unit(7, "feet")
  52796. },
  52797. {
  52798. name: "Gigamacro",
  52799. height: math.unit(2.9, "gigameters"),
  52800. default: true
  52801. },
  52802. {
  52803. name: "Universal",
  52804. height: math.unit(1.56e26, "yottameters")
  52805. },
  52806. ]
  52807. ))
  52808. characterMakers.push(() => makeCharacter(
  52809. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52810. {
  52811. front: {
  52812. height: math.unit(3, "feet"),
  52813. weight: math.unit(20, "lb"),
  52814. name: "Front",
  52815. image: {
  52816. source: "./media/characters/kit-fennec-fox/front.svg",
  52817. extra: 1027/932,
  52818. bottom: 16/1043
  52819. }
  52820. },
  52821. back: {
  52822. height: math.unit(3, "feet"),
  52823. weight: math.unit(20, "lb"),
  52824. name: "Back",
  52825. image: {
  52826. source: "./media/characters/kit-fennec-fox/back.svg",
  52827. extra: 1027/932,
  52828. bottom: 16/1043
  52829. }
  52830. },
  52831. },
  52832. [
  52833. {
  52834. name: "Normal",
  52835. height: math.unit(3, "feet"),
  52836. default: true
  52837. },
  52838. ]
  52839. ))
  52840. characterMakers.push(() => makeCharacter(
  52841. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52842. {
  52843. front: {
  52844. height: math.unit(167, "cm"),
  52845. name: "Front",
  52846. image: {
  52847. source: "./media/characters/blue-otter/front.svg",
  52848. extra: 1951/1920,
  52849. bottom: 31/1982
  52850. }
  52851. },
  52852. },
  52853. [
  52854. {
  52855. name: "Otter-Sized",
  52856. height: math.unit(100, "cm")
  52857. },
  52858. {
  52859. name: "Normal",
  52860. height: math.unit(167, "cm"),
  52861. default: true
  52862. },
  52863. ]
  52864. ))
  52865. characterMakers.push(() => makeCharacter(
  52866. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52867. {
  52868. front: {
  52869. height: math.unit(4 + 4/12, "feet"),
  52870. name: "Front",
  52871. image: {
  52872. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52873. extra: 1072/1067,
  52874. bottom: 117/1189
  52875. }
  52876. },
  52877. back: {
  52878. height: math.unit(4 + 4/12, "feet"),
  52879. name: "Back",
  52880. image: {
  52881. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52882. extra: 1135/1129,
  52883. bottom: 57/1192
  52884. }
  52885. },
  52886. head: {
  52887. height: math.unit(1.77, "feet"),
  52888. name: "Head",
  52889. image: {
  52890. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52891. }
  52892. },
  52893. },
  52894. [
  52895. {
  52896. name: "Normal",
  52897. height: math.unit(4 + 4/12, "feet"),
  52898. default: true
  52899. },
  52900. ]
  52901. ))
  52902. characterMakers.push(() => makeCharacter(
  52903. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52904. {
  52905. front: {
  52906. height: math.unit(2, "inches"),
  52907. name: "Front",
  52908. image: {
  52909. source: "./media/characters/carley-hartford/front.svg",
  52910. extra: 1035/988,
  52911. bottom: 23/1058
  52912. }
  52913. },
  52914. back: {
  52915. height: math.unit(2, "inches"),
  52916. name: "Back",
  52917. image: {
  52918. source: "./media/characters/carley-hartford/back.svg",
  52919. extra: 1035/988,
  52920. bottom: 23/1058
  52921. }
  52922. },
  52923. dressed: {
  52924. height: math.unit(2, "inches"),
  52925. name: "Dressed",
  52926. image: {
  52927. source: "./media/characters/carley-hartford/dressed.svg",
  52928. extra: 651/620,
  52929. bottom: 0/651
  52930. }
  52931. },
  52932. },
  52933. [
  52934. {
  52935. name: "Micro",
  52936. height: math.unit(2, "inches"),
  52937. default: true
  52938. },
  52939. {
  52940. name: "Macro",
  52941. height: math.unit(6 + 3/12, "feet")
  52942. },
  52943. ]
  52944. ))
  52945. characterMakers.push(() => makeCharacter(
  52946. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52947. {
  52948. front: {
  52949. height: math.unit(2 + 3/12, "feet"),
  52950. weight: math.unit(15 + 7/16, "lb"),
  52951. name: "Front",
  52952. image: {
  52953. source: "./media/characters/duke/front.svg",
  52954. extra: 910/815,
  52955. bottom: 30/940
  52956. }
  52957. },
  52958. },
  52959. [
  52960. {
  52961. name: "Normal",
  52962. height: math.unit(2 + 3/12, "feet"),
  52963. default: true
  52964. },
  52965. ]
  52966. ))
  52967. characterMakers.push(() => makeCharacter(
  52968. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52969. {
  52970. front: {
  52971. height: math.unit(5 + 4/12, "feet"),
  52972. weight: math.unit(156, "lb"),
  52973. name: "Front",
  52974. image: {
  52975. source: "./media/characters/dein/front.svg",
  52976. extra: 855/815,
  52977. bottom: 48/903
  52978. }
  52979. },
  52980. side: {
  52981. height: math.unit(5 + 4/12, "feet"),
  52982. weight: math.unit(156, "lb"),
  52983. name: "side",
  52984. image: {
  52985. source: "./media/characters/dein/side.svg",
  52986. extra: 846/803,
  52987. bottom: 25/871
  52988. }
  52989. },
  52990. maw: {
  52991. height: math.unit(1.45, "feet"),
  52992. name: "Maw",
  52993. image: {
  52994. source: "./media/characters/dein/maw.svg"
  52995. }
  52996. },
  52997. },
  52998. [
  52999. {
  53000. name: "Ferret Sized",
  53001. height: math.unit(2 + 5/12, "feet")
  53002. },
  53003. {
  53004. name: "Normal",
  53005. height: math.unit(5 + 4/12, "feet"),
  53006. default: true
  53007. },
  53008. ]
  53009. ))
  53010. characterMakers.push(() => makeCharacter(
  53011. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53012. {
  53013. front: {
  53014. height: math.unit(84 + 8/12, "feet"),
  53015. weight: math.unit(942180, "lb"),
  53016. name: "Front",
  53017. image: {
  53018. source: "./media/characters/daurine-arima/front.svg",
  53019. extra: 1989/1782,
  53020. bottom: 37/2026
  53021. }
  53022. },
  53023. side: {
  53024. height: math.unit(84 + 8/12, "feet"),
  53025. weight: math.unit(942180, "lb"),
  53026. name: "Side",
  53027. image: {
  53028. source: "./media/characters/daurine-arima/side.svg",
  53029. extra: 1997/1790,
  53030. bottom: 21/2018
  53031. }
  53032. },
  53033. back: {
  53034. height: math.unit(84 + 8/12, "feet"),
  53035. weight: math.unit(942180, "lb"),
  53036. name: "Back",
  53037. image: {
  53038. source: "./media/characters/daurine-arima/back.svg",
  53039. extra: 1992/1800,
  53040. bottom: 12/2004
  53041. }
  53042. },
  53043. head: {
  53044. height: math.unit(15.5, "feet"),
  53045. name: "Head",
  53046. image: {
  53047. source: "./media/characters/daurine-arima/head.svg"
  53048. }
  53049. },
  53050. headAlt: {
  53051. height: math.unit(19.19, "feet"),
  53052. name: "Head (Alt)",
  53053. image: {
  53054. source: "./media/characters/daurine-arima/head-alt.svg"
  53055. }
  53056. },
  53057. },
  53058. [
  53059. {
  53060. name: "Minimum height",
  53061. height: math.unit(8 + 10/12, "feet")
  53062. },
  53063. {
  53064. name: "Comfort height",
  53065. height: math.unit(19 + 6 /12, "feet")
  53066. },
  53067. {
  53068. name: "\"Normal\" height",
  53069. height: math.unit(28 + 10/12, "feet")
  53070. },
  53071. {
  53072. name: "Base height",
  53073. height: math.unit(84 + 8/12, "feet"),
  53074. default: true
  53075. },
  53076. {
  53077. name: "Mini-macro",
  53078. height: math.unit(2360, "feet")
  53079. },
  53080. {
  53081. name: "Macro",
  53082. height: math.unit(10, "miles")
  53083. },
  53084. {
  53085. name: "Goddess",
  53086. height: math.unit(9.99e40, "yottameters")
  53087. },
  53088. ]
  53089. ))
  53090. characterMakers.push(() => makeCharacter(
  53091. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53092. {
  53093. front: {
  53094. height: math.unit(2.3, "meters"),
  53095. name: "Front",
  53096. image: {
  53097. source: "./media/characters/cilenomon/front.svg",
  53098. extra: 1963/1778,
  53099. bottom: 54/2017
  53100. }
  53101. },
  53102. },
  53103. [
  53104. {
  53105. name: "Normal",
  53106. height: math.unit(2.3, "meters"),
  53107. default: true
  53108. },
  53109. {
  53110. name: "Big",
  53111. height: math.unit(5, "meters")
  53112. },
  53113. {
  53114. name: "Macro",
  53115. height: math.unit(30, "meters")
  53116. },
  53117. {
  53118. name: "True",
  53119. height: math.unit(1, "universe")
  53120. },
  53121. ]
  53122. ))
  53123. characterMakers.push(() => makeCharacter(
  53124. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53125. {
  53126. front: {
  53127. height: math.unit(5, "feet"),
  53128. name: "Front",
  53129. image: {
  53130. source: "./media/characters/sen-mink/front.svg",
  53131. extra: 1727/1675,
  53132. bottom: 35/1762
  53133. }
  53134. },
  53135. },
  53136. [
  53137. {
  53138. name: "Normal",
  53139. height: math.unit(5, "feet"),
  53140. default: true
  53141. },
  53142. ]
  53143. ))
  53144. characterMakers.push(() => makeCharacter(
  53145. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53146. {
  53147. front: {
  53148. height: math.unit(5.42999, "feet"),
  53149. weight: math.unit(100, "lb"),
  53150. name: "Front",
  53151. image: {
  53152. source: "./media/characters/ophois/front.svg",
  53153. extra: 1429/1286,
  53154. bottom: 60/1489
  53155. }
  53156. },
  53157. },
  53158. [
  53159. {
  53160. name: "Normal",
  53161. height: math.unit(5.42999, "feet"),
  53162. default: true
  53163. },
  53164. ]
  53165. ))
  53166. characterMakers.push(() => makeCharacter(
  53167. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53168. {
  53169. front: {
  53170. height: math.unit(2, "meters"),
  53171. name: "Front",
  53172. image: {
  53173. source: "./media/characters/riley/front.svg",
  53174. extra: 1779/1754,
  53175. bottom: 139/1918
  53176. }
  53177. },
  53178. },
  53179. [
  53180. {
  53181. name: "Normal",
  53182. height: math.unit(2, "meters"),
  53183. default: true
  53184. },
  53185. ]
  53186. ))
  53187. characterMakers.push(() => makeCharacter(
  53188. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53189. {
  53190. front: {
  53191. height: math.unit(6 + 2/12, "feet"),
  53192. weight: math.unit(195, "lb"),
  53193. preyCapacity: math.unit(6, "people"),
  53194. name: "Front",
  53195. image: {
  53196. source: "./media/characters/shuken-flash/front.svg",
  53197. extra: 1905/1739,
  53198. bottom: 65/1970
  53199. }
  53200. },
  53201. back: {
  53202. height: math.unit(6 + 2/12, "feet"),
  53203. weight: math.unit(195, "lb"),
  53204. preyCapacity: math.unit(6, "people"),
  53205. name: "Back",
  53206. image: {
  53207. source: "./media/characters/shuken-flash/back.svg",
  53208. extra: 1912/1751,
  53209. bottom: 13/1925
  53210. }
  53211. },
  53212. },
  53213. [
  53214. {
  53215. name: "Normal",
  53216. height: math.unit(6 + 2/12, "feet"),
  53217. default: true
  53218. },
  53219. ]
  53220. ))
  53221. characterMakers.push(() => makeCharacter(
  53222. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53223. {
  53224. front: {
  53225. height: math.unit(5 + 9/12, "feet"),
  53226. weight: math.unit(150, "lb"),
  53227. name: "Front",
  53228. image: {
  53229. source: "./media/characters/plat/front.svg",
  53230. extra: 1816/1703,
  53231. bottom: 43/1859
  53232. }
  53233. },
  53234. side: {
  53235. height: math.unit(5 + 9/12, "feet"),
  53236. weight: math.unit(300, "lb"),
  53237. name: "Side",
  53238. image: {
  53239. source: "./media/characters/plat/side.svg",
  53240. extra: 1824/1699,
  53241. bottom: 18/1842
  53242. }
  53243. },
  53244. },
  53245. [
  53246. {
  53247. name: "Normal",
  53248. height: math.unit(5 + 9/12, "feet"),
  53249. default: true
  53250. },
  53251. ]
  53252. ))
  53253. characterMakers.push(() => makeCharacter(
  53254. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53255. {
  53256. front: {
  53257. height: math.unit(9, "feet"),
  53258. weight: math.unit(1800, "lb"),
  53259. name: "Front",
  53260. image: {
  53261. source: "./media/characters/elaine/front.svg",
  53262. extra: 1833/1354,
  53263. bottom: 25/1858
  53264. }
  53265. },
  53266. back: {
  53267. height: math.unit(8.8, "feet"),
  53268. weight: math.unit(1800, "lb"),
  53269. name: "Back",
  53270. image: {
  53271. source: "./media/characters/elaine/back.svg",
  53272. extra: 1641/1233,
  53273. bottom: 53/1694
  53274. }
  53275. },
  53276. },
  53277. [
  53278. {
  53279. name: "Normal",
  53280. height: math.unit(9, "feet"),
  53281. default: true
  53282. },
  53283. ]
  53284. ))
  53285. characterMakers.push(() => makeCharacter(
  53286. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53287. {
  53288. front: {
  53289. height: math.unit(17 + 9/12, "feet"),
  53290. weight: math.unit(8000, "lb"),
  53291. name: "Front",
  53292. image: {
  53293. source: "./media/characters/vera-raven/front.svg",
  53294. extra: 1457/1412,
  53295. bottom: 121/1578
  53296. }
  53297. },
  53298. side: {
  53299. height: math.unit(17 + 9/12, "feet"),
  53300. weight: math.unit(8000, "lb"),
  53301. name: "Side",
  53302. image: {
  53303. source: "./media/characters/vera-raven/side.svg",
  53304. extra: 1510/1464,
  53305. bottom: 54/1564
  53306. }
  53307. },
  53308. },
  53309. [
  53310. {
  53311. name: "Normal",
  53312. height: math.unit(17 + 9/12, "feet"),
  53313. default: true
  53314. },
  53315. ]
  53316. ))
  53317. characterMakers.push(() => makeCharacter(
  53318. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53319. {
  53320. dressed: {
  53321. height: math.unit(6 + 9/12, "feet"),
  53322. name: "Dressed",
  53323. image: {
  53324. source: "./media/characters/nakisha/dressed.svg",
  53325. extra: 1909/1757,
  53326. bottom: 48/1957
  53327. }
  53328. },
  53329. nude: {
  53330. height: math.unit(6 + 9/12, "feet"),
  53331. name: "Nude",
  53332. image: {
  53333. source: "./media/characters/nakisha/nude.svg",
  53334. extra: 1917/1765,
  53335. bottom: 34/1951
  53336. }
  53337. },
  53338. },
  53339. [
  53340. {
  53341. name: "Normal",
  53342. height: math.unit(6 + 9/12, "feet"),
  53343. default: true
  53344. },
  53345. ]
  53346. ))
  53347. characterMakers.push(() => makeCharacter(
  53348. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53349. {
  53350. front: {
  53351. height: math.unit(87, "meters"),
  53352. name: "Front",
  53353. image: {
  53354. source: "./media/characters/serafin/front.svg",
  53355. extra: 1919/1776,
  53356. bottom: 65/1984
  53357. }
  53358. },
  53359. },
  53360. [
  53361. {
  53362. name: "Normal",
  53363. height: math.unit(87, "meters"),
  53364. default: true
  53365. },
  53366. ]
  53367. ))
  53368. characterMakers.push(() => makeCharacter(
  53369. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53370. {
  53371. front: {
  53372. height: math.unit(6, "feet"),
  53373. weight: math.unit(200, "lb"),
  53374. name: "Front",
  53375. image: {
  53376. source: "./media/characters/poptart/front.svg",
  53377. extra: 615/583,
  53378. bottom: 23/638
  53379. }
  53380. },
  53381. back: {
  53382. height: math.unit(6, "feet"),
  53383. weight: math.unit(200, "lb"),
  53384. name: "Back",
  53385. image: {
  53386. source: "./media/characters/poptart/back.svg",
  53387. extra: 617/584,
  53388. bottom: 22/639
  53389. }
  53390. },
  53391. frontNsfw: {
  53392. height: math.unit(6, "feet"),
  53393. weight: math.unit(200, "lb"),
  53394. name: "Front (NSFW)",
  53395. image: {
  53396. source: "./media/characters/poptart/front-nsfw.svg",
  53397. extra: 615/583,
  53398. bottom: 23/638
  53399. }
  53400. },
  53401. backNsfw: {
  53402. height: math.unit(6, "feet"),
  53403. weight: math.unit(200, "lb"),
  53404. name: "Back (NSFW)",
  53405. image: {
  53406. source: "./media/characters/poptart/back-nsfw.svg",
  53407. extra: 617/584,
  53408. bottom: 22/639
  53409. }
  53410. },
  53411. hand: {
  53412. height: math.unit(1.14, "feet"),
  53413. name: "Hand",
  53414. image: {
  53415. source: "./media/characters/poptart/hand.svg"
  53416. }
  53417. },
  53418. foot: {
  53419. height: math.unit(1.5, "feet"),
  53420. name: "Foot",
  53421. image: {
  53422. source: "./media/characters/poptart/foot.svg"
  53423. }
  53424. },
  53425. },
  53426. [
  53427. {
  53428. name: "Normal",
  53429. height: math.unit(6, "feet"),
  53430. default: true
  53431. },
  53432. {
  53433. name: "Grande",
  53434. height: math.unit(350, "feet")
  53435. },
  53436. {
  53437. name: "Massif",
  53438. height: math.unit(967, "feet")
  53439. },
  53440. ]
  53441. ))
  53442. characterMakers.push(() => makeCharacter(
  53443. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53444. {
  53445. hyenaSide: {
  53446. height: math.unit(120, "cm"),
  53447. weight: math.unit(120, "lb"),
  53448. name: "Side",
  53449. image: {
  53450. source: "./media/characters/trance/hyena-side.svg",
  53451. extra: 998/904,
  53452. bottom: 76/1074
  53453. }
  53454. },
  53455. },
  53456. [
  53457. {
  53458. name: "Normal",
  53459. height: math.unit(120, "cm"),
  53460. default: true
  53461. },
  53462. {
  53463. name: "Dire",
  53464. height: math.unit(230, "cm")
  53465. },
  53466. {
  53467. name: "Macro",
  53468. height: math.unit(37, "feet")
  53469. },
  53470. ]
  53471. ))
  53472. characterMakers.push(() => makeCharacter(
  53473. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53474. {
  53475. front: {
  53476. height: math.unit(6 + 3/12, "feet"),
  53477. name: "Front",
  53478. image: {
  53479. source: "./media/characters/michael-berretta/front.svg",
  53480. extra: 515/494,
  53481. bottom: 20/535
  53482. }
  53483. },
  53484. back: {
  53485. height: math.unit(6 + 3/12, "feet"),
  53486. name: "Back",
  53487. image: {
  53488. source: "./media/characters/michael-berretta/back.svg",
  53489. extra: 520/497,
  53490. bottom: 21/541
  53491. }
  53492. },
  53493. frontNsfw: {
  53494. height: math.unit(6 + 3/12, "feet"),
  53495. name: "Front (NSFW)",
  53496. image: {
  53497. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53498. extra: 515/494,
  53499. bottom: 20/535
  53500. }
  53501. },
  53502. dick: {
  53503. height: math.unit(1, "feet"),
  53504. name: "Dick",
  53505. image: {
  53506. source: "./media/characters/michael-berretta/dick.svg"
  53507. }
  53508. },
  53509. },
  53510. [
  53511. {
  53512. name: "Normal",
  53513. height: math.unit(6 + 3/12, "feet"),
  53514. default: true
  53515. },
  53516. {
  53517. name: "Big",
  53518. height: math.unit(12, "feet")
  53519. },
  53520. {
  53521. name: "Macro",
  53522. height: math.unit(187.5, "feet")
  53523. },
  53524. ]
  53525. ))
  53526. characterMakers.push(() => makeCharacter(
  53527. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53528. {
  53529. front: {
  53530. height: math.unit(9 + 9/12, "feet"),
  53531. weight: math.unit(1244, "lb"),
  53532. name: "Front",
  53533. image: {
  53534. source: "./media/characters/stella-edgecomb/front.svg",
  53535. extra: 1835/1706,
  53536. bottom: 49/1884
  53537. }
  53538. },
  53539. pen: {
  53540. height: math.unit(0.95, "feet"),
  53541. name: "Pen",
  53542. image: {
  53543. source: "./media/characters/stella-edgecomb/pen.svg"
  53544. }
  53545. },
  53546. },
  53547. [
  53548. {
  53549. name: "Cozy Bear",
  53550. height: math.unit(0.5, "inches")
  53551. },
  53552. {
  53553. name: "Normal",
  53554. height: math.unit(9 + 9/12, "feet"),
  53555. default: true
  53556. },
  53557. {
  53558. name: "Giga Bear",
  53559. height: math.unit(1, "mile")
  53560. },
  53561. {
  53562. name: "Great Bear",
  53563. height: math.unit(53, "miles")
  53564. },
  53565. {
  53566. name: "Goddess Bear",
  53567. height: math.unit(40000, "miles")
  53568. },
  53569. {
  53570. name: "Sun Bear",
  53571. height: math.unit(900000, "miles")
  53572. },
  53573. ]
  53574. ))
  53575. characterMakers.push(() => makeCharacter(
  53576. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53577. {
  53578. anthroFront: {
  53579. height: math.unit(556, "cm"),
  53580. weight: math.unit(2650, "kg"),
  53581. preyCapacity: math.unit(3, "people"),
  53582. name: "Front",
  53583. image: {
  53584. source: "./media/characters/ash´iika/front.svg",
  53585. extra: 710/673,
  53586. bottom: 15/725
  53587. },
  53588. form: "anthro",
  53589. default: true
  53590. },
  53591. anthroSide: {
  53592. height: math.unit(556, "cm"),
  53593. weight: math.unit(2650, "kg"),
  53594. preyCapacity: math.unit(3, "people"),
  53595. name: "Side",
  53596. image: {
  53597. source: "./media/characters/ash´iika/side.svg",
  53598. extra: 696/676,
  53599. bottom: 13/709
  53600. },
  53601. form: "anthro"
  53602. },
  53603. anthroDressed: {
  53604. height: math.unit(556, "cm"),
  53605. weight: math.unit(2650, "kg"),
  53606. preyCapacity: math.unit(3, "people"),
  53607. name: "Dressed",
  53608. image: {
  53609. source: "./media/characters/ash´iika/dressed.svg",
  53610. extra: 710/673,
  53611. bottom: 15/725
  53612. },
  53613. form: "anthro"
  53614. },
  53615. anthroHead: {
  53616. height: math.unit(3.5, "feet"),
  53617. name: "Head",
  53618. image: {
  53619. source: "./media/characters/ash´iika/head.svg",
  53620. extra: 348/291,
  53621. bottom: 45/393
  53622. },
  53623. form: "anthro"
  53624. },
  53625. feralSide: {
  53626. height: math.unit(870, "cm"),
  53627. weight: math.unit(17500, "kg"),
  53628. preyCapacity: math.unit(15, "people"),
  53629. name: "Side",
  53630. image: {
  53631. source: "./media/characters/ash´iika/feral.svg",
  53632. extra: 595/199,
  53633. bottom: 7/602
  53634. },
  53635. form: "feral",
  53636. default: true,
  53637. },
  53638. },
  53639. [
  53640. {
  53641. name: "Normal",
  53642. height: math.unit(556, "cm"),
  53643. default: true,
  53644. form: "anthro"
  53645. },
  53646. {
  53647. name: "Macro",
  53648. height: math.unit(88, "meters"),
  53649. form: "anthro"
  53650. },
  53651. {
  53652. name: "Normal",
  53653. height: math.unit(870, "cm"),
  53654. default: true,
  53655. form: "feral"
  53656. },
  53657. {
  53658. name: "Large",
  53659. height: math.unit(25, "meters"),
  53660. form: "feral"
  53661. },
  53662. ],
  53663. {
  53664. "anthro": {
  53665. name: "Anthro",
  53666. default: true
  53667. },
  53668. "feral": {
  53669. name: "Feral",
  53670. },
  53671. }
  53672. ))
  53673. characterMakers.push(() => makeCharacter(
  53674. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53675. {
  53676. front: {
  53677. height: math.unit(10, "feet"),
  53678. weight: math.unit(800, "lb"),
  53679. name: "Front",
  53680. image: {
  53681. source: "./media/characters/yen/front.svg",
  53682. extra: 443/411,
  53683. bottom: 6/449
  53684. }
  53685. },
  53686. sleeping: {
  53687. height: math.unit(10, "feet"),
  53688. weight: math.unit(800, "lb"),
  53689. name: "Sleeping",
  53690. image: {
  53691. source: "./media/characters/yen/sleeping.svg",
  53692. extra: 470/422,
  53693. bottom: 0/470
  53694. }
  53695. },
  53696. head: {
  53697. height: math.unit(2.2, "feet"),
  53698. name: "Head",
  53699. image: {
  53700. source: "./media/characters/yen/head.svg"
  53701. }
  53702. },
  53703. headAlt: {
  53704. height: math.unit(2.1, "feet"),
  53705. name: "Head (Alt)",
  53706. image: {
  53707. source: "./media/characters/yen/head-alt.svg"
  53708. }
  53709. },
  53710. },
  53711. [
  53712. {
  53713. name: "Normal",
  53714. height: math.unit(10, "feet"),
  53715. default: true
  53716. },
  53717. ]
  53718. ))
  53719. characterMakers.push(() => makeCharacter(
  53720. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53721. {
  53722. front: {
  53723. height: math.unit(12, "feet"),
  53724. name: "Front",
  53725. image: {
  53726. source: "./media/characters/citra/front.svg",
  53727. extra: 1950/1710,
  53728. bottom: 47/1997
  53729. }
  53730. },
  53731. },
  53732. [
  53733. {
  53734. name: "Normal",
  53735. height: math.unit(12, "feet"),
  53736. default: true
  53737. },
  53738. ]
  53739. ))
  53740. characterMakers.push(() => makeCharacter(
  53741. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53742. {
  53743. side: {
  53744. height: math.unit(7 + 10/12, "feet"),
  53745. name: "Side",
  53746. image: {
  53747. source: "./media/characters/sholstim/side.svg",
  53748. extra: 786/682,
  53749. bottom: 40/826
  53750. }
  53751. },
  53752. },
  53753. [
  53754. {
  53755. name: "Normal",
  53756. height: math.unit(7 + 10/12, "feet"),
  53757. default: true
  53758. },
  53759. ]
  53760. ))
  53761. characterMakers.push(() => makeCharacter(
  53762. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53763. {
  53764. front: {
  53765. height: math.unit(3.10, "meters"),
  53766. name: "Front",
  53767. image: {
  53768. source: "./media/characters/aggyn/front.svg",
  53769. extra: 1188/963,
  53770. bottom: 24/1212
  53771. }
  53772. },
  53773. },
  53774. [
  53775. {
  53776. name: "Normal",
  53777. height: math.unit(3.10, "meters"),
  53778. default: true
  53779. },
  53780. ]
  53781. ))
  53782. characterMakers.push(() => makeCharacter(
  53783. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53784. {
  53785. front: {
  53786. height: math.unit(7 + 5/12, "feet"),
  53787. weight: math.unit(687, "lb"),
  53788. name: "Front",
  53789. image: {
  53790. source: "./media/characters/alsandair-hergenroether/front.svg",
  53791. extra: 1251/1186,
  53792. bottom: 75/1326
  53793. }
  53794. },
  53795. back: {
  53796. height: math.unit(7 + 5/12, "feet"),
  53797. weight: math.unit(687, "lb"),
  53798. name: "Back",
  53799. image: {
  53800. source: "./media/characters/alsandair-hergenroether/back.svg",
  53801. extra: 1290/1229,
  53802. bottom: 17/1307
  53803. }
  53804. },
  53805. },
  53806. [
  53807. {
  53808. name: "Max Compression",
  53809. height: math.unit(7 + 5/12, "feet"),
  53810. default: true
  53811. },
  53812. {
  53813. name: "\"Normal\"",
  53814. height: math.unit(2, "universes")
  53815. },
  53816. ]
  53817. ))
  53818. characterMakers.push(() => makeCharacter(
  53819. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53820. {
  53821. front: {
  53822. height: math.unit(4 + 1/12, "feet"),
  53823. weight: math.unit(92, "lb"),
  53824. name: "Front",
  53825. image: {
  53826. source: "./media/characters/ie/front.svg",
  53827. extra: 1585/1352,
  53828. bottom: 91/1676
  53829. }
  53830. },
  53831. },
  53832. [
  53833. {
  53834. name: "Normal",
  53835. height: math.unit(4 + 1/12, "feet"),
  53836. default: true
  53837. },
  53838. ]
  53839. ))
  53840. characterMakers.push(() => makeCharacter(
  53841. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53842. {
  53843. anthro: {
  53844. height: math.unit(6, "feet"),
  53845. weight: math.unit(150, "lb"),
  53846. name: "Front",
  53847. image: {
  53848. source: "./media/characters/willow/anthro.svg",
  53849. extra: 1073/986,
  53850. bottom: 34/1107
  53851. },
  53852. form: "anthro",
  53853. default: true
  53854. },
  53855. taur: {
  53856. height: math.unit(6, "feet"),
  53857. weight: math.unit(150, "lb"),
  53858. name: "Side",
  53859. image: {
  53860. source: "./media/characters/willow/taur.svg",
  53861. extra: 647/512,
  53862. bottom: 136/783
  53863. },
  53864. form: "taur",
  53865. default: true
  53866. },
  53867. },
  53868. [
  53869. {
  53870. name: "Humanoid",
  53871. height: math.unit(2.7, "meters"),
  53872. form: "anthro"
  53873. },
  53874. {
  53875. name: "Normal",
  53876. height: math.unit(9, "meters"),
  53877. form: "anthro",
  53878. default: true
  53879. },
  53880. {
  53881. name: "Humanoid",
  53882. height: math.unit(2.1, "meters"),
  53883. form: "taur"
  53884. },
  53885. {
  53886. name: "Normal",
  53887. height: math.unit(7, "meters"),
  53888. form: "taur",
  53889. default: true
  53890. },
  53891. ],
  53892. {
  53893. "anthro": {
  53894. name: "Anthro",
  53895. default: true
  53896. },
  53897. "taur": {
  53898. name: "Taur",
  53899. },
  53900. }
  53901. ))
  53902. characterMakers.push(() => makeCharacter(
  53903. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53904. {
  53905. front: {
  53906. height: math.unit(2 + 5/12, "feet"),
  53907. name: "Front",
  53908. image: {
  53909. source: "./media/characters/kyan/front.svg",
  53910. extra: 460/334,
  53911. bottom: 23/483
  53912. },
  53913. extraAttributes: {
  53914. "toeLength": {
  53915. name: "Toe Length",
  53916. power: 1,
  53917. type: "length",
  53918. base: math.unit(7, "cm")
  53919. },
  53920. "toeclawLength": {
  53921. name: "Toeclaw Length",
  53922. power: 1,
  53923. type: "length",
  53924. base: math.unit(4.7, "cm")
  53925. },
  53926. "earHeight": {
  53927. name: "Ear Height",
  53928. power: 1,
  53929. type: "length",
  53930. base: math.unit(14.1, "cm")
  53931. },
  53932. }
  53933. },
  53934. paws: {
  53935. height: math.unit(0.45, "feet"),
  53936. name: "Paws",
  53937. image: {
  53938. source: "./media/characters/kyan/paws.svg",
  53939. extra: 581/581,
  53940. bottom: 114/695
  53941. }
  53942. },
  53943. },
  53944. [
  53945. {
  53946. name: "Normal",
  53947. height: math.unit(2 + 5/12, "feet"),
  53948. default: true
  53949. },
  53950. ]
  53951. ))
  53952. characterMakers.push(() => makeCharacter(
  53953. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53954. {
  53955. front: {
  53956. height: math.unit(2 + 2/3, "feet"),
  53957. name: "Front",
  53958. image: {
  53959. source: "./media/characters/xazzon/front.svg",
  53960. extra: 1109/984,
  53961. bottom: 42/1151
  53962. }
  53963. },
  53964. back: {
  53965. height: math.unit(2 + 2/3, "feet"),
  53966. name: "Back",
  53967. image: {
  53968. source: "./media/characters/xazzon/back.svg",
  53969. extra: 1095/971,
  53970. bottom: 23/1118
  53971. }
  53972. },
  53973. },
  53974. [
  53975. {
  53976. name: "Normal",
  53977. height: math.unit(2 + 2/3, "feet"),
  53978. default: true
  53979. },
  53980. ]
  53981. ))
  53982. characterMakers.push(() => makeCharacter(
  53983. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53984. {
  53985. dressed: {
  53986. height: math.unit(5 + 7/12, "feet"),
  53987. weight: math.unit(173, "lb"),
  53988. name: "Dressed",
  53989. image: {
  53990. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53991. extra: 3262/2862,
  53992. bottom: 188/3450
  53993. }
  53994. },
  53995. undressed: {
  53996. height: math.unit(5 + 7/12, "feet"),
  53997. weight: math.unit(173, "lb"),
  53998. name: "Undressed",
  53999. image: {
  54000. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54001. extra: 3262/2862,
  54002. bottom: 188/3450
  54003. }
  54004. },
  54005. },
  54006. [
  54007. {
  54008. name: "The void",
  54009. height: math.unit(7.29193e-34, "angstroms")
  54010. },
  54011. {
  54012. name: "Uh-Oh.",
  54013. height: math.unit(5.734e-7, "angstroms")
  54014. },
  54015. {
  54016. name: "Pico",
  54017. height: math.unit(0.876, "angstroms")
  54018. },
  54019. {
  54020. name: "Nano",
  54021. height: math.unit(0.000134200, "mm")
  54022. },
  54023. {
  54024. name: "Micro",
  54025. height: math.unit(0.0673020, "mm")
  54026. },
  54027. {
  54028. name: "Tiny",
  54029. height: math.unit(2.4, "mm")
  54030. },
  54031. {
  54032. name: "Actual Normal",
  54033. height: math.unit(3, "inches"),
  54034. default: true
  54035. },
  54036. {
  54037. name: "Normal",
  54038. height: math.unit(5 + 8/12, "feet")
  54039. },
  54040. {
  54041. name: "Giant",
  54042. height: math.unit(12, "feet")
  54043. },
  54044. {
  54045. name: "City Ruler",
  54046. height: math.unit(270, "meters")
  54047. },
  54048. {
  54049. name: "Giga",
  54050. height: math.unit(1117.6, "km")
  54051. },
  54052. {
  54053. name: "All-Powerful Queen",
  54054. height: math.unit(70.8, "gigameters")
  54055. },
  54056. {
  54057. name: "'Goddess'",
  54058. height: math.unit(600, "yottameters")
  54059. },
  54060. {
  54061. name: "Biggest!",
  54062. height: math.unit(4.23e5, "yottameters")
  54063. },
  54064. ]
  54065. ))
  54066. characterMakers.push(() => makeCharacter(
  54067. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54068. {
  54069. front: {
  54070. height: math.unit(8, "feet"),
  54071. weight: math.unit(300, "lb"),
  54072. name: "Front",
  54073. image: {
  54074. source: "./media/characters/khyla-shadowsong/front.svg",
  54075. extra: 861/798,
  54076. bottom: 32/893
  54077. }
  54078. },
  54079. side: {
  54080. height: math.unit(8, "feet"),
  54081. weight: math.unit(300, "lb"),
  54082. name: "Side",
  54083. image: {
  54084. source: "./media/characters/khyla-shadowsong/side.svg",
  54085. extra: 790/750,
  54086. bottom: 87/877
  54087. }
  54088. },
  54089. back: {
  54090. height: math.unit(8, "feet"),
  54091. weight: math.unit(300, "lb"),
  54092. name: "Back",
  54093. image: {
  54094. source: "./media/characters/khyla-shadowsong/back.svg",
  54095. extra: 855/808,
  54096. bottom: 14/869
  54097. }
  54098. },
  54099. head: {
  54100. height: math.unit(2.7, "feet"),
  54101. name: "Head",
  54102. image: {
  54103. source: "./media/characters/khyla-shadowsong/head.svg"
  54104. }
  54105. },
  54106. },
  54107. [
  54108. {
  54109. name: "Micro",
  54110. height: math.unit(6, "inches")
  54111. },
  54112. {
  54113. name: "Normal",
  54114. height: math.unit(8, "feet"),
  54115. default: true
  54116. },
  54117. ]
  54118. ))
  54119. characterMakers.push(() => makeCharacter(
  54120. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54121. {
  54122. hyperFront: {
  54123. height: math.unit(9 + 4/12, "feet"),
  54124. weight: math.unit(2000, "lb"),
  54125. name: "Front",
  54126. image: {
  54127. source: "./media/characters/tiden/hyper-front.svg",
  54128. extra: 400/382,
  54129. bottom: 6/406
  54130. },
  54131. form: "hyper",
  54132. },
  54133. regularFront: {
  54134. height: math.unit(7 + 10/12, "feet"),
  54135. weight: math.unit(470, "lb"),
  54136. name: "Front",
  54137. image: {
  54138. source: "./media/characters/tiden/regular-front.svg",
  54139. extra: 468/442,
  54140. bottom: 6/474
  54141. },
  54142. form: "regular",
  54143. },
  54144. },
  54145. [
  54146. {
  54147. name: "Normal",
  54148. height: math.unit(9 + 4/12, "feet"),
  54149. default: true,
  54150. form: "hyper"
  54151. },
  54152. {
  54153. name: "Normal",
  54154. height: math.unit(7 + 10/12, "feet"),
  54155. default: true,
  54156. form: "regular"
  54157. },
  54158. ],
  54159. {
  54160. "hyper": {
  54161. name: "Hyper",
  54162. default: true
  54163. },
  54164. "regular": {
  54165. name: "Regular",
  54166. },
  54167. }
  54168. ))
  54169. characterMakers.push(() => makeCharacter(
  54170. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54171. {
  54172. side: {
  54173. height: math.unit(6, "feet"),
  54174. weight: math.unit(150, "lb"),
  54175. name: "Side",
  54176. image: {
  54177. source: "./media/characters/jason-crowe/side.svg",
  54178. extra: 1771/766,
  54179. bottom: 219/1990
  54180. }
  54181. },
  54182. },
  54183. [
  54184. {
  54185. name: "Pocket Gryphon",
  54186. height: math.unit(6, "cm")
  54187. },
  54188. {
  54189. name: "Raven",
  54190. height: math.unit(60, "cm")
  54191. },
  54192. {
  54193. name: "Normal",
  54194. height: math.unit(1, "meter"),
  54195. default: true
  54196. },
  54197. ]
  54198. ))
  54199. characterMakers.push(() => makeCharacter(
  54200. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54201. {
  54202. front: {
  54203. height: math.unit(9 + 6/12, "feet"),
  54204. weight: math.unit(1100, "lb"),
  54205. name: "Front",
  54206. image: {
  54207. source: "./media/characters/django/front.svg",
  54208. extra: 1231/1136,
  54209. bottom: 34/1265
  54210. }
  54211. },
  54212. side: {
  54213. height: math.unit(9 + 6/12, "feet"),
  54214. weight: math.unit(1100, "lb"),
  54215. name: "Side",
  54216. image: {
  54217. source: "./media/characters/django/side.svg",
  54218. extra: 1267/1174,
  54219. bottom: 9/1276
  54220. }
  54221. },
  54222. },
  54223. [
  54224. {
  54225. name: "Normal",
  54226. height: math.unit(9 + 6/12, "feet"),
  54227. default: true
  54228. },
  54229. {
  54230. name: "Macro 1",
  54231. height: math.unit(50, "feet")
  54232. },
  54233. {
  54234. name: "Macro 2",
  54235. height: math.unit(500, "feet")
  54236. },
  54237. {
  54238. name: "Mega Macro",
  54239. height: math.unit(5300, "feet")
  54240. },
  54241. ]
  54242. ))
  54243. characterMakers.push(() => makeCharacter(
  54244. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54245. {
  54246. frontSfw: {
  54247. height: math.unit(120, "cm"),
  54248. weight: math.unit(15, "kg"),
  54249. name: "Front (SFW)",
  54250. image: {
  54251. source: "./media/characters/eri/front-sfw.svg",
  54252. extra: 1014/939,
  54253. bottom: 37/1051
  54254. },
  54255. form: "moth",
  54256. },
  54257. frontNsfw: {
  54258. height: math.unit(120, "cm"),
  54259. weight: math.unit(15, "kg"),
  54260. name: "Front (NSFW)",
  54261. image: {
  54262. source: "./media/characters/eri/front-nsfw.svg",
  54263. extra: 1014/939,
  54264. bottom: 37/1051
  54265. },
  54266. form: "moth",
  54267. default: true
  54268. },
  54269. egg: {
  54270. height: math.unit(10, "cm"),
  54271. name: "Egg",
  54272. image: {
  54273. source: "./media/characters/eri/egg.svg"
  54274. },
  54275. form: "egg",
  54276. default: true
  54277. },
  54278. },
  54279. [
  54280. {
  54281. name: "Normal",
  54282. height: math.unit(120, "cm"),
  54283. default: true,
  54284. form: "moth"
  54285. },
  54286. {
  54287. name: "Normal",
  54288. height: math.unit(10, "cm"),
  54289. default: true,
  54290. form: "egg"
  54291. },
  54292. ],
  54293. {
  54294. "moth": {
  54295. name: "Moth",
  54296. default: true
  54297. },
  54298. "egg": {
  54299. name: "Egg",
  54300. },
  54301. }
  54302. ))
  54303. characterMakers.push(() => makeCharacter(
  54304. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54305. {
  54306. front: {
  54307. height: math.unit(200, "feet"),
  54308. name: "Front",
  54309. image: {
  54310. source: "./media/characters/bishop-dowser/front.svg",
  54311. extra: 933/868,
  54312. bottom: 106/1039
  54313. }
  54314. },
  54315. },
  54316. [
  54317. {
  54318. name: "Giant",
  54319. height: math.unit(200, "feet"),
  54320. default: true
  54321. },
  54322. ]
  54323. ))
  54324. characterMakers.push(() => makeCharacter(
  54325. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54326. {
  54327. front: {
  54328. height: math.unit(2, "meters"),
  54329. preyCapacity: math.unit(3, "people"),
  54330. name: "Front",
  54331. image: {
  54332. source: "./media/characters/fryra/front.svg",
  54333. extra: 1025/948,
  54334. bottom: 30/1055
  54335. },
  54336. extraAttributes: {
  54337. "breastVolume": {
  54338. name: "Breast Volume",
  54339. power: 3,
  54340. type: "volume",
  54341. base: math.unit(8, "liters")
  54342. },
  54343. }
  54344. },
  54345. back: {
  54346. height: math.unit(2, "meters"),
  54347. preyCapacity: math.unit(3, "people"),
  54348. name: "Back",
  54349. image: {
  54350. source: "./media/characters/fryra/back.svg",
  54351. extra: 993/938,
  54352. bottom: 38/1031
  54353. },
  54354. extraAttributes: {
  54355. "breastVolume": {
  54356. name: "Breast Volume",
  54357. power: 3,
  54358. type: "volume",
  54359. base: math.unit(8, "liters")
  54360. },
  54361. }
  54362. },
  54363. head: {
  54364. height: math.unit(1.33, "feet"),
  54365. name: "Head",
  54366. image: {
  54367. source: "./media/characters/fryra/head.svg"
  54368. }
  54369. },
  54370. maw: {
  54371. height: math.unit(0.56, "feet"),
  54372. name: "Maw",
  54373. image: {
  54374. source: "./media/characters/fryra/maw.svg"
  54375. }
  54376. },
  54377. },
  54378. [
  54379. {
  54380. name: "Micro",
  54381. height: math.unit(5, "cm")
  54382. },
  54383. {
  54384. name: "Normal",
  54385. height: math.unit(2, "meters"),
  54386. default: true
  54387. },
  54388. {
  54389. name: "Small Macro",
  54390. height: math.unit(8, "meters")
  54391. },
  54392. {
  54393. name: "Macro",
  54394. height: math.unit(50, "meters")
  54395. },
  54396. {
  54397. name: "Megamacro",
  54398. height: math.unit(1, "km")
  54399. },
  54400. {
  54401. name: "Planetary",
  54402. height: math.unit(300000, "km")
  54403. },
  54404. {
  54405. name: "Universal",
  54406. height: math.unit(250, "lightyears")
  54407. },
  54408. {
  54409. name: "Fabric of Reality",
  54410. height: math.unit(1000, "multiverses")
  54411. },
  54412. ]
  54413. ))
  54414. characterMakers.push(() => makeCharacter(
  54415. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54416. {
  54417. frontDressed: {
  54418. height: math.unit(6 + 2/12, "feet"),
  54419. name: "Front (Dressed)",
  54420. image: {
  54421. source: "./media/characters/fiera/front-dressed.svg",
  54422. extra: 1883/1793,
  54423. bottom: 70/1953
  54424. }
  54425. },
  54426. backDressed: {
  54427. height: math.unit(6 + 2/12, "feet"),
  54428. name: "Back (Dressed)",
  54429. image: {
  54430. source: "./media/characters/fiera/back-dressed.svg",
  54431. extra: 1847/1780,
  54432. bottom: 70/1917
  54433. }
  54434. },
  54435. frontNude: {
  54436. height: math.unit(6 + 2/12, "feet"),
  54437. name: "Front (Nude)",
  54438. image: {
  54439. source: "./media/characters/fiera/front-nude.svg",
  54440. extra: 1875/1785,
  54441. bottom: 66/1941
  54442. }
  54443. },
  54444. backNude: {
  54445. height: math.unit(6 + 2/12, "feet"),
  54446. name: "Back (Nude)",
  54447. image: {
  54448. source: "./media/characters/fiera/back-nude.svg",
  54449. extra: 1855/1788,
  54450. bottom: 44/1899
  54451. }
  54452. },
  54453. maw: {
  54454. height: math.unit(1.3, "feet"),
  54455. name: "Maw",
  54456. image: {
  54457. source: "./media/characters/fiera/maw.svg"
  54458. }
  54459. },
  54460. paw: {
  54461. height: math.unit(1, "feet"),
  54462. name: "Paw",
  54463. image: {
  54464. source: "./media/characters/fiera/paw.svg"
  54465. }
  54466. },
  54467. shoe: {
  54468. height: math.unit(1.05, "feet"),
  54469. name: "Shoe",
  54470. image: {
  54471. source: "./media/characters/fiera/shoe.svg"
  54472. }
  54473. },
  54474. },
  54475. [
  54476. {
  54477. name: "Normal",
  54478. height: math.unit(6 + 2/12, "feet"),
  54479. default: true
  54480. },
  54481. {
  54482. name: "Size Difference",
  54483. height: math.unit(13, "feet")
  54484. },
  54485. {
  54486. name: "Macro",
  54487. height: math.unit(60, "feet")
  54488. },
  54489. {
  54490. name: "Mega Macro",
  54491. height: math.unit(200, "feet")
  54492. },
  54493. ]
  54494. ))
  54495. characterMakers.push(() => makeCharacter(
  54496. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54497. {
  54498. back: {
  54499. height: math.unit(6, "feet"),
  54500. name: "Back",
  54501. image: {
  54502. source: "./media/characters/flare/back.svg",
  54503. extra: 1883/1765,
  54504. bottom: 32/1915
  54505. }
  54506. },
  54507. },
  54508. [
  54509. {
  54510. name: "Normal",
  54511. height: math.unit(6 + 2/12, "feet"),
  54512. default: true
  54513. },
  54514. {
  54515. name: "Size Difference",
  54516. height: math.unit(13, "feet")
  54517. },
  54518. {
  54519. name: "Macro",
  54520. height: math.unit(60, "feet")
  54521. },
  54522. {
  54523. name: "Macro 2",
  54524. height: math.unit(100, "feet")
  54525. },
  54526. {
  54527. name: "Mega Macro",
  54528. height: math.unit(200, "feet")
  54529. },
  54530. ]
  54531. ))
  54532. characterMakers.push(() => makeCharacter(
  54533. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54534. {
  54535. front: {
  54536. height: math.unit(2.2, "m"),
  54537. weight: math.unit(300, "kg"),
  54538. name: "Front",
  54539. image: {
  54540. source: "./media/characters/hanna/front.svg",
  54541. extra: 1696/1502,
  54542. bottom: 206/1902
  54543. }
  54544. },
  54545. },
  54546. [
  54547. {
  54548. name: "Humanoid",
  54549. height: math.unit(2.2, "meters")
  54550. },
  54551. {
  54552. name: "Normal",
  54553. height: math.unit(4.8, "meters"),
  54554. default: true
  54555. },
  54556. ]
  54557. ))
  54558. characterMakers.push(() => makeCharacter(
  54559. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54560. {
  54561. front: {
  54562. height: math.unit(2.8, "meters"),
  54563. name: "Front",
  54564. image: {
  54565. source: "./media/characters/argo/front.svg",
  54566. extra: 731/518,
  54567. bottom: 84/815
  54568. }
  54569. },
  54570. },
  54571. [
  54572. {
  54573. name: "Normal",
  54574. height: math.unit(3, "meters"),
  54575. default: true
  54576. },
  54577. ]
  54578. ))
  54579. characterMakers.push(() => makeCharacter(
  54580. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54581. {
  54582. side: {
  54583. height: math.unit(3.8, "meters"),
  54584. name: "Side",
  54585. image: {
  54586. source: "./media/characters/sybil/side.svg",
  54587. extra: 382/361,
  54588. bottom: 25/407
  54589. }
  54590. },
  54591. },
  54592. [
  54593. {
  54594. name: "Normal",
  54595. height: math.unit(3.8, "meters"),
  54596. default: true
  54597. },
  54598. ]
  54599. ))
  54600. characterMakers.push(() => makeCharacter(
  54601. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54602. {
  54603. side: {
  54604. height: math.unit(6, "meters"),
  54605. name: "Side",
  54606. image: {
  54607. source: "./media/characters/plum/side.svg",
  54608. extra: 858/755,
  54609. bottom: 45/903
  54610. },
  54611. form: "taur",
  54612. default: true
  54613. },
  54614. back: {
  54615. height: math.unit(6.3, "meters"),
  54616. name: "Back",
  54617. image: {
  54618. source: "./media/characters/plum/back.svg",
  54619. extra: 887/813,
  54620. bottom: 32/919
  54621. },
  54622. form: "taur",
  54623. },
  54624. feral: {
  54625. height: math.unit(5.5, "meter"),
  54626. name: "Front",
  54627. image: {
  54628. source: "./media/characters/plum/feral.svg",
  54629. extra: 568/403,
  54630. bottom: 51/619
  54631. },
  54632. form: "feral",
  54633. default: true
  54634. },
  54635. head: {
  54636. height: math.unit(1.46, "meter"),
  54637. name: "Head",
  54638. image: {
  54639. source: "./media/characters/plum/head.svg"
  54640. },
  54641. form: "taur"
  54642. },
  54643. tailTop: {
  54644. height: math.unit(5.6, "meter"),
  54645. name: "Tail (Top)",
  54646. image: {
  54647. source: "./media/characters/plum/tail-top.svg"
  54648. },
  54649. form: "taur",
  54650. },
  54651. tailBottom: {
  54652. height: math.unit(5.6, "meter"),
  54653. name: "Tail (Bottom)",
  54654. image: {
  54655. source: "./media/characters/plum/tail-bottom.svg"
  54656. },
  54657. form: "taur",
  54658. },
  54659. feralHead: {
  54660. height: math.unit(2.56549521, "meter"),
  54661. name: "Head",
  54662. image: {
  54663. source: "./media/characters/plum/head.svg"
  54664. },
  54665. form: "feral"
  54666. },
  54667. feralTailTop: {
  54668. height: math.unit(5.44728435, "meter"),
  54669. name: "Tail (Top)",
  54670. image: {
  54671. source: "./media/characters/plum/tail-top.svg"
  54672. },
  54673. form: "feral",
  54674. },
  54675. feralTailBottom: {
  54676. height: math.unit(5.44728435, "meter"),
  54677. name: "Tail (Bottom)",
  54678. image: {
  54679. source: "./media/characters/plum/tail-bottom.svg"
  54680. },
  54681. form: "feral",
  54682. },
  54683. },
  54684. [
  54685. {
  54686. name: "Normal",
  54687. height: math.unit(6, "meters"),
  54688. default: true,
  54689. form: "taur"
  54690. },
  54691. {
  54692. name: "Normal",
  54693. height: math.unit(5.5, "meters"),
  54694. default: true,
  54695. form: "feral"
  54696. },
  54697. ],
  54698. {
  54699. "taur": {
  54700. name: "Taur",
  54701. default: true
  54702. },
  54703. "feral": {
  54704. name: "Feral",
  54705. },
  54706. }
  54707. ))
  54708. characterMakers.push(() => makeCharacter(
  54709. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54710. {
  54711. front: {
  54712. height: math.unit(6, "feet"),
  54713. weight: math.unit(115, "lb"),
  54714. name: "Front",
  54715. image: {
  54716. source: "./media/characters/celeste-kitsune/front.svg",
  54717. extra: 393/366,
  54718. bottom: 7/400
  54719. }
  54720. },
  54721. side: {
  54722. height: math.unit(6, "feet"),
  54723. weight: math.unit(115, "lb"),
  54724. name: "Side",
  54725. image: {
  54726. source: "./media/characters/celeste-kitsune/side.svg",
  54727. extra: 818/765,
  54728. bottom: 40/858
  54729. }
  54730. },
  54731. },
  54732. [
  54733. {
  54734. name: "Megamacro",
  54735. height: math.unit(1500, "miles"),
  54736. default: true
  54737. },
  54738. ]
  54739. ))
  54740. characterMakers.push(() => makeCharacter(
  54741. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54742. {
  54743. front: {
  54744. height: math.unit(8, "meters"),
  54745. name: "Front",
  54746. image: {
  54747. source: "./media/characters/io/front.svg",
  54748. extra: 865/722,
  54749. bottom: 58/923
  54750. }
  54751. },
  54752. back: {
  54753. height: math.unit(8, "meters"),
  54754. name: "Back",
  54755. image: {
  54756. source: "./media/characters/io/back.svg",
  54757. extra: 920/776,
  54758. bottom: 42/962
  54759. }
  54760. },
  54761. head: {
  54762. height: math.unit(5.09, "meters"),
  54763. name: "Head",
  54764. image: {
  54765. source: "./media/characters/io/head.svg"
  54766. }
  54767. },
  54768. hand: {
  54769. height: math.unit(1.6, "meters"),
  54770. name: "Hand",
  54771. image: {
  54772. source: "./media/characters/io/hand.svg"
  54773. }
  54774. },
  54775. foot: {
  54776. height: math.unit(2.4, "meters"),
  54777. name: "Foot",
  54778. image: {
  54779. source: "./media/characters/io/foot.svg"
  54780. }
  54781. },
  54782. },
  54783. [
  54784. {
  54785. name: "Normal",
  54786. height: math.unit(8, "meters"),
  54787. default: true
  54788. },
  54789. ]
  54790. ))
  54791. characterMakers.push(() => makeCharacter(
  54792. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54793. {
  54794. side: {
  54795. height: math.unit(6 + 3/12, "feet"),
  54796. weight: math.unit(225, "lb"),
  54797. name: "Side",
  54798. image: {
  54799. source: "./media/characters/silas/side.svg",
  54800. extra: 703/653,
  54801. bottom: 23/726
  54802. },
  54803. extraAttributes: {
  54804. "pawLength": {
  54805. name: "Paw Length",
  54806. power: 1,
  54807. type: "length",
  54808. base: math.unit(12, "inches")
  54809. },
  54810. "pawWidth": {
  54811. name: "Paw Width",
  54812. power: 1,
  54813. type: "length",
  54814. base: math.unit(4.5, "inches")
  54815. },
  54816. "pawArea": {
  54817. name: "Paw Area",
  54818. power: 2,
  54819. type: "area",
  54820. base: math.unit(12 * 4.5, "inches^2")
  54821. },
  54822. }
  54823. },
  54824. },
  54825. [
  54826. {
  54827. name: "Normal",
  54828. height: math.unit(6 + 3/12, "feet"),
  54829. default: true
  54830. },
  54831. ]
  54832. ))
  54833. characterMakers.push(() => makeCharacter(
  54834. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54835. {
  54836. back: {
  54837. height: math.unit(1.6, "meters"),
  54838. weight: math.unit(150, "lb"),
  54839. name: "Back",
  54840. image: {
  54841. source: "./media/characters/zari/back.svg",
  54842. extra: 424/411,
  54843. bottom: 32/456
  54844. },
  54845. extraAttributes: {
  54846. "bladderCapacity": {
  54847. name: "Bladder Size",
  54848. power: 3,
  54849. type: "volume",
  54850. base: math.unit(500, "mL")
  54851. },
  54852. "bladderFlow": {
  54853. name: "Flow Rate",
  54854. power: 3,
  54855. type: "volume",
  54856. base: math.unit(25, "mL")
  54857. },
  54858. }
  54859. },
  54860. },
  54861. [
  54862. {
  54863. name: "Normal",
  54864. height: math.unit(1.6, "meters"),
  54865. default: true
  54866. },
  54867. ]
  54868. ))
  54869. characterMakers.push(() => makeCharacter(
  54870. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54871. {
  54872. front: {
  54873. height: math.unit(25, "feet"),
  54874. weight: math.unit(5, "tons"),
  54875. name: "Front",
  54876. image: {
  54877. source: "./media/characters/charlie-human/front.svg",
  54878. extra: 1870/1740,
  54879. bottom: 102/1972
  54880. },
  54881. extraAttributes: {
  54882. "dickLength": {
  54883. name: "Dick Length",
  54884. power: 1,
  54885. type: "length",
  54886. base: math.unit(9, "feet")
  54887. },
  54888. }
  54889. },
  54890. back: {
  54891. height: math.unit(25, "feet"),
  54892. weight: math.unit(5, "tons"),
  54893. name: "Back",
  54894. image: {
  54895. source: "./media/characters/charlie-human/back.svg",
  54896. extra: 1858/1733,
  54897. bottom: 105/1963
  54898. },
  54899. extraAttributes: {
  54900. "dickLength": {
  54901. name: "Dick Length",
  54902. power: 1,
  54903. type: "length",
  54904. base: math.unit(9, "feet")
  54905. },
  54906. }
  54907. },
  54908. },
  54909. [
  54910. {
  54911. name: "\"Normal\"",
  54912. height: math.unit(6 + 4/12, "feet")
  54913. },
  54914. {
  54915. name: "Big",
  54916. height: math.unit(25, "feet"),
  54917. default: true
  54918. },
  54919. ]
  54920. ))
  54921. characterMakers.push(() => makeCharacter(
  54922. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54923. {
  54924. front: {
  54925. height: math.unit(6 + 4/12, "feet"),
  54926. weight: math.unit(320, "lb"),
  54927. name: "Front",
  54928. image: {
  54929. source: "./media/characters/ookitsu/front.svg",
  54930. extra: 1160/976,
  54931. bottom: 38/1198
  54932. }
  54933. },
  54934. frontNsfw: {
  54935. height: math.unit(6 + 4/12, "feet"),
  54936. weight: math.unit(320, "lb"),
  54937. name: "Front (NSFW)",
  54938. image: {
  54939. source: "./media/characters/ookitsu/front-nsfw.svg",
  54940. extra: 1160/976,
  54941. bottom: 38/1198
  54942. }
  54943. },
  54944. back: {
  54945. height: math.unit(6 + 4/12, "feet"),
  54946. weight: math.unit(320, "lb"),
  54947. name: "Back",
  54948. image: {
  54949. source: "./media/characters/ookitsu/back.svg",
  54950. extra: 1030/975,
  54951. bottom: 70/1100
  54952. }
  54953. },
  54954. head: {
  54955. height: math.unit(1.79, "feet"),
  54956. name: "Head",
  54957. image: {
  54958. source: "./media/characters/ookitsu/head.svg"
  54959. }
  54960. },
  54961. hand: {
  54962. height: math.unit(0.92, "feet"),
  54963. name: "Hand",
  54964. image: {
  54965. source: "./media/characters/ookitsu/hand.svg"
  54966. }
  54967. },
  54968. tails: {
  54969. height: math.unit(3.3, "feet"),
  54970. name: "Tails",
  54971. image: {
  54972. source: "./media/characters/ookitsu/tails.svg"
  54973. }
  54974. },
  54975. dick: {
  54976. height: math.unit(1.10833, "feet"),
  54977. name: "Dick",
  54978. image: {
  54979. source: "./media/characters/ookitsu/dick.svg"
  54980. }
  54981. },
  54982. },
  54983. [
  54984. {
  54985. name: "Normal",
  54986. height: math.unit(6 + 4/12, "feet"),
  54987. default: true
  54988. },
  54989. {
  54990. name: "Macro",
  54991. height: math.unit(30, "feet")
  54992. },
  54993. ]
  54994. ))
  54995. characterMakers.push(() => makeCharacter(
  54996. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54997. {
  54998. anthroFront: {
  54999. height: math.unit(6, "feet"),
  55000. weight: math.unit(250, "lb"),
  55001. name: "Front",
  55002. image: {
  55003. source: "./media/characters/jhusky/anthro-front.svg",
  55004. extra: 474/439,
  55005. bottom: 7/481
  55006. },
  55007. form: "anthro",
  55008. default: true
  55009. },
  55010. taurSideSfw: {
  55011. height: math.unit(6 + 4/12, "feet"),
  55012. weight: math.unit(500, "lb"),
  55013. name: "Side (SFW)",
  55014. image: {
  55015. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55016. extra: 1741/1629,
  55017. bottom: 196/1937
  55018. },
  55019. form: "taur",
  55020. default: true
  55021. },
  55022. taurSideNsfw: {
  55023. height: math.unit(6 + 4/12, "feet"),
  55024. weight: math.unit(500, "lb"),
  55025. name: "Taur (NSFW)",
  55026. image: {
  55027. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55028. extra: 1741/1629,
  55029. bottom: 196/1937
  55030. },
  55031. form: "taur",
  55032. },
  55033. },
  55034. [
  55035. {
  55036. name: "Huge",
  55037. height: math.unit(500, "feet"),
  55038. form: "anthro"
  55039. },
  55040. {
  55041. name: "Macro",
  55042. height: math.unit(1000, "feet"),
  55043. default: true,
  55044. form: "anthro"
  55045. },
  55046. {
  55047. name: "Megamacro",
  55048. height: math.unit(10000, "feet"),
  55049. form: "anthro"
  55050. },
  55051. {
  55052. name: "Huge",
  55053. height: math.unit(528, "feet"),
  55054. form: "taur"
  55055. },
  55056. {
  55057. name: "Macro",
  55058. height: math.unit(1056, "feet"),
  55059. default: true,
  55060. form: "taur"
  55061. },
  55062. {
  55063. name: "Megamacro",
  55064. height: math.unit(10556, "feet"),
  55065. form: "taur"
  55066. },
  55067. ],
  55068. {
  55069. "anthro": {
  55070. name: "Anthro",
  55071. default: true
  55072. },
  55073. "taur": {
  55074. name: "Taur",
  55075. },
  55076. }
  55077. ))
  55078. characterMakers.push(() => makeCharacter(
  55079. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55080. {
  55081. front: {
  55082. height: math.unit(8, "feet"),
  55083. weight: math.unit(500, "lb"),
  55084. name: "Front",
  55085. image: {
  55086. source: "./media/characters/armail/front.svg",
  55087. extra: 1753/1669,
  55088. bottom: 155/1908
  55089. }
  55090. },
  55091. back: {
  55092. height: math.unit(8, "feet"),
  55093. weight: math.unit(500, "lb"),
  55094. name: "Back",
  55095. image: {
  55096. source: "./media/characters/armail/back.svg",
  55097. extra: 1872/1803,
  55098. bottom: 63/1935
  55099. }
  55100. },
  55101. },
  55102. [
  55103. {
  55104. name: "Micro",
  55105. height: math.unit(0.25, "feet")
  55106. },
  55107. {
  55108. name: "Normal",
  55109. height: math.unit(8, "feet"),
  55110. default: true
  55111. },
  55112. {
  55113. name: "Mini-macro",
  55114. height: math.unit(30, "feet")
  55115. },
  55116. {
  55117. name: "Macro",
  55118. height: math.unit(400, "feet")
  55119. },
  55120. {
  55121. name: "Mega-macro",
  55122. height: math.unit(6000, "feet")
  55123. },
  55124. ]
  55125. ))
  55126. characterMakers.push(() => makeCharacter(
  55127. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55128. {
  55129. front: {
  55130. height: math.unit(6 + 7/12, "feet"),
  55131. weight: math.unit(210, "lb"),
  55132. name: "Front",
  55133. image: {
  55134. source: "./media/characters/wilfred-t-buxton/front.svg",
  55135. extra: 1068/882,
  55136. bottom: 28/1096
  55137. }
  55138. },
  55139. },
  55140. [
  55141. {
  55142. name: "Normal",
  55143. height: math.unit(6 + 7/12, "feet"),
  55144. default: true
  55145. },
  55146. ]
  55147. ))
  55148. characterMakers.push(() => makeCharacter(
  55149. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55150. {
  55151. front: {
  55152. height: math.unit(5 + 2/12, "feet"),
  55153. weight: math.unit(120, "lb"),
  55154. name: "Front",
  55155. image: {
  55156. source: "./media/characters/leighton-marrow/front.svg",
  55157. extra: 441/409,
  55158. bottom: 37/478
  55159. }
  55160. },
  55161. },
  55162. [
  55163. {
  55164. name: "Normal",
  55165. height: math.unit(5 + 2/12, "feet"),
  55166. default: true
  55167. },
  55168. ]
  55169. ))
  55170. characterMakers.push(() => makeCharacter(
  55171. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55172. {
  55173. front: {
  55174. height: math.unit(4, "meters"),
  55175. weight: math.unit(1200, "kg"),
  55176. name: "Front",
  55177. image: {
  55178. source: "./media/characters/licos/front.svg",
  55179. extra: 1727/1604,
  55180. bottom: 101/1828
  55181. },
  55182. form: "anthro",
  55183. default: true
  55184. },
  55185. taur_side: {
  55186. height: math.unit(20, "meters"),
  55187. weight: math.unit(1100000, "kg"),
  55188. name: "Side",
  55189. image: {
  55190. source: "./media/characters/licos/taur.svg",
  55191. extra: 1158/1091,
  55192. bottom: 80/1238
  55193. },
  55194. form: "taur",
  55195. default: true
  55196. },
  55197. },
  55198. [
  55199. {
  55200. name: "Normal",
  55201. height: math.unit(4, "meters"),
  55202. default: true,
  55203. form: "anthro"
  55204. },
  55205. {
  55206. name: "Normal",
  55207. height: math.unit(20, "meters"),
  55208. default: true,
  55209. form: "taur"
  55210. },
  55211. ],
  55212. {
  55213. "anthro": {
  55214. name: "Anthro",
  55215. default: true
  55216. },
  55217. "taur": {
  55218. name: "Taur",
  55219. },
  55220. }
  55221. ))
  55222. characterMakers.push(() => makeCharacter(
  55223. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55224. {
  55225. front: {
  55226. height: math.unit(10 + 3/12, "feet"),
  55227. name: "Front",
  55228. image: {
  55229. source: "./media/characters/theo-monkey/front.svg",
  55230. extra: 1735/1658,
  55231. bottom: 73/1808
  55232. }
  55233. },
  55234. back: {
  55235. height: math.unit(10 + 3/12, "feet"),
  55236. name: "Back",
  55237. image: {
  55238. source: "./media/characters/theo-monkey/back.svg",
  55239. extra: 1742/1664,
  55240. bottom: 33/1775
  55241. }
  55242. },
  55243. head: {
  55244. height: math.unit(2.29, "feet"),
  55245. name: "Head",
  55246. image: {
  55247. source: "./media/characters/theo-monkey/head.svg"
  55248. }
  55249. },
  55250. handPalm: {
  55251. height: math.unit(1.73, "feet"),
  55252. name: "Hand (Palm)",
  55253. image: {
  55254. source: "./media/characters/theo-monkey/hand-palm.svg"
  55255. }
  55256. },
  55257. handBack: {
  55258. height: math.unit(1.63, "feet"),
  55259. name: "Hand (Back)",
  55260. image: {
  55261. source: "./media/characters/theo-monkey/hand-back.svg"
  55262. }
  55263. },
  55264. footSole: {
  55265. height: math.unit(2.15, "feet"),
  55266. name: "Foot (Sole)",
  55267. image: {
  55268. source: "./media/characters/theo-monkey/foot-sole.svg"
  55269. }
  55270. },
  55271. footSide: {
  55272. height: math.unit(1.6, "feet"),
  55273. name: "Foot (Side)",
  55274. image: {
  55275. source: "./media/characters/theo-monkey/foot-side.svg"
  55276. }
  55277. },
  55278. },
  55279. [
  55280. {
  55281. name: "Normal",
  55282. height: math.unit(10 + 3/12, "feet"),
  55283. default: true
  55284. },
  55285. ]
  55286. ))
  55287. characterMakers.push(() => makeCharacter(
  55288. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55289. {
  55290. front: {
  55291. height: math.unit(11, "feet"),
  55292. weight: math.unit(3000, "lb"),
  55293. preyCapacity: math.unit(10, "people"),
  55294. name: "Front",
  55295. image: {
  55296. source: "./media/characters/brook/front.svg",
  55297. extra: 909/835,
  55298. bottom: 108/1017
  55299. }
  55300. },
  55301. back: {
  55302. height: math.unit(11, "feet"),
  55303. weight: math.unit(3000, "lb"),
  55304. preyCapacity: math.unit(10, "people"),
  55305. name: "Back",
  55306. image: {
  55307. source: "./media/characters/brook/back.svg",
  55308. extra: 976/916,
  55309. bottom: 34/1010
  55310. }
  55311. },
  55312. backAlt: {
  55313. height: math.unit(11, "feet"),
  55314. weight: math.unit(3000, "lb"),
  55315. preyCapacity: math.unit(10, "people"),
  55316. name: "Back (Alt)",
  55317. image: {
  55318. source: "./media/characters/brook/back-alt.svg",
  55319. extra: 1283/1213,
  55320. bottom: 35/1318
  55321. }
  55322. },
  55323. bust: {
  55324. height: math.unit(9.0859030837, "feet"),
  55325. weight: math.unit(3000, "lb"),
  55326. preyCapacity: math.unit(10, "people"),
  55327. name: "Bust",
  55328. image: {
  55329. source: "./media/characters/brook/bust.svg",
  55330. extra: 2043/1923,
  55331. bottom: 0/2043
  55332. }
  55333. },
  55334. },
  55335. [
  55336. {
  55337. name: "Small",
  55338. height: math.unit(11, "feet"),
  55339. default: true
  55340. },
  55341. {
  55342. name: "Towering",
  55343. height: math.unit(5, "km")
  55344. },
  55345. {
  55346. name: "Enormous",
  55347. height: math.unit(25, "earths")
  55348. },
  55349. ]
  55350. ))
  55351. characterMakers.push(() => makeCharacter(
  55352. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55353. {
  55354. front: {
  55355. height: math.unit(4, "feet"),
  55356. weight: math.unit(150, "lb"),
  55357. name: "Front",
  55358. image: {
  55359. source: "./media/characters/squishi/front.svg",
  55360. extra: 1428/1271,
  55361. bottom: 30/1458
  55362. },
  55363. extraAttributes: {
  55364. "pawSize": {
  55365. name: "Paw Size",
  55366. power: 1,
  55367. type: "length",
  55368. base: math.unit(14, "ShoeSizeMensUS"),
  55369. defaultUnit: "ShoeSizeMensUS"
  55370. },
  55371. }
  55372. },
  55373. side: {
  55374. height: math.unit(4, "feet"),
  55375. weight: math.unit(150, "lb"),
  55376. name: "Side",
  55377. image: {
  55378. source: "./media/characters/squishi/side.svg",
  55379. extra: 1428/1271,
  55380. bottom: 30/1458
  55381. },
  55382. extraAttributes: {
  55383. "pawSize": {
  55384. name: "Paw Size",
  55385. power: 1,
  55386. type: "length",
  55387. base: math.unit(14, "ShoeSizeMensUS"),
  55388. defaultUnit: "ShoeSizeMensUS"
  55389. },
  55390. }
  55391. },
  55392. back: {
  55393. height: math.unit(4, "feet"),
  55394. weight: math.unit(150, "lb"),
  55395. name: "Back",
  55396. image: {
  55397. source: "./media/characters/squishi/back.svg",
  55398. extra: 1428/1271,
  55399. bottom: 30/1458
  55400. },
  55401. extraAttributes: {
  55402. "pawSize": {
  55403. name: "Paw Size",
  55404. power: 1,
  55405. type: "length",
  55406. base: math.unit(14, "ShoeSizeMensUS"),
  55407. defaultUnit: "ShoeSizeMensUS"
  55408. },
  55409. }
  55410. },
  55411. },
  55412. [
  55413. {
  55414. name: "Normal",
  55415. height: math.unit(4, "feet"),
  55416. default: true
  55417. },
  55418. ]
  55419. ))
  55420. characterMakers.push(() => makeCharacter(
  55421. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55422. {
  55423. front: {
  55424. height: math.unit(7 + 8/12, "feet"),
  55425. weight: math.unit(333, "lb"),
  55426. name: "Front",
  55427. image: {
  55428. source: "./media/characters/vincent-vasroc/front.svg",
  55429. extra: 1962/1860,
  55430. bottom: 41/2003
  55431. }
  55432. },
  55433. back: {
  55434. height: math.unit(7 + 8/12, "feet"),
  55435. weight: math.unit(333, "lb"),
  55436. name: "Back",
  55437. image: {
  55438. source: "./media/characters/vincent-vasroc/back.svg",
  55439. extra: 1952/1815,
  55440. bottom: 33/1985
  55441. }
  55442. },
  55443. paw: {
  55444. height: math.unit(1.24, "feet"),
  55445. name: "Paw",
  55446. image: {
  55447. source: "./media/characters/vincent-vasroc/paw.svg"
  55448. }
  55449. },
  55450. ear: {
  55451. height: math.unit(0.75, "feet"),
  55452. name: "Ear",
  55453. image: {
  55454. source: "./media/characters/vincent-vasroc/ear.svg"
  55455. }
  55456. },
  55457. },
  55458. [
  55459. {
  55460. name: "Nano",
  55461. height: math.unit(92, "micrometers")
  55462. },
  55463. {
  55464. name: "Normal",
  55465. height: math.unit(7 + 8/12, "feet"),
  55466. default: true
  55467. },
  55468. ]
  55469. ))
  55470. characterMakers.push(() => makeCharacter(
  55471. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55472. {
  55473. frontNsfw: {
  55474. height: math.unit(40, "feet"),
  55475. weight: math.unit(58, "tons"),
  55476. name: "Front (NSFW)",
  55477. image: {
  55478. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55479. extra: 1265/965,
  55480. bottom: 155/1420
  55481. }
  55482. },
  55483. frontSfw: {
  55484. height: math.unit(40, "feet"),
  55485. weight: math.unit(58, "tons"),
  55486. name: "Front (SFW)",
  55487. image: {
  55488. source: "./media/characters/ru-kahn/front-sfw.svg",
  55489. extra: 1265/965,
  55490. bottom: 80/1345
  55491. }
  55492. },
  55493. },
  55494. [
  55495. {
  55496. name: "Small",
  55497. height: math.unit(4, "feet")
  55498. },
  55499. {
  55500. name: "Normal",
  55501. height: math.unit(40, "feet"),
  55502. default: true
  55503. },
  55504. {
  55505. name: "Macro",
  55506. height: math.unit(400, "feet")
  55507. },
  55508. ]
  55509. ))
  55510. characterMakers.push(() => makeCharacter(
  55511. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55512. {
  55513. frontNude: {
  55514. height: math.unit(6 + 5/12, "feet"),
  55515. name: "Front (Nude)",
  55516. image: {
  55517. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55518. extra: 1369/1366,
  55519. bottom: 68/1437
  55520. }
  55521. },
  55522. frontDressed: {
  55523. height: math.unit(6 + 5/12, "feet"),
  55524. name: "Front (Dressed)",
  55525. image: {
  55526. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55527. extra: 1369/1366,
  55528. bottom: 68/1437
  55529. }
  55530. },
  55531. },
  55532. [
  55533. {
  55534. name: "Normal",
  55535. height: math.unit(6 + 5/12, "feet"),
  55536. default: true
  55537. },
  55538. {
  55539. name: "Maximum",
  55540. height: math.unit(1930, "feet")
  55541. },
  55542. ]
  55543. ))
  55544. characterMakers.push(() => makeCharacter(
  55545. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55546. {
  55547. front: {
  55548. height: math.unit(5 + 6/12, "feet"),
  55549. name: "Front",
  55550. image: {
  55551. source: "./media/characters/kaja/front.svg",
  55552. extra: 1874/1514,
  55553. bottom: 117/1991
  55554. }
  55555. },
  55556. },
  55557. [
  55558. {
  55559. name: "Normal",
  55560. height: math.unit(5 + 6/12, "feet"),
  55561. default: true
  55562. },
  55563. ]
  55564. ))
  55565. characterMakers.push(() => makeCharacter(
  55566. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55567. {
  55568. front: {
  55569. height: math.unit(5 + 9/12, "feet"),
  55570. weight: math.unit(200, "lb"),
  55571. name: "Front",
  55572. image: {
  55573. source: "./media/characters/mark-smith/front.svg",
  55574. extra: 1004/943,
  55575. bottom: 58/1062
  55576. }
  55577. },
  55578. back: {
  55579. height: math.unit(5 + 9/12, "feet"),
  55580. weight: math.unit(200, "lb"),
  55581. name: "Back",
  55582. image: {
  55583. source: "./media/characters/mark-smith/back.svg",
  55584. extra: 1023/953,
  55585. bottom: 24/1047
  55586. }
  55587. },
  55588. head: {
  55589. height: math.unit(1.82, "feet"),
  55590. name: "Head",
  55591. image: {
  55592. source: "./media/characters/mark-smith/head.svg"
  55593. }
  55594. },
  55595. hand: {
  55596. height: math.unit(1.4, "feet"),
  55597. name: "Hand",
  55598. image: {
  55599. source: "./media/characters/mark-smith/hand.svg"
  55600. }
  55601. },
  55602. paw: {
  55603. height: math.unit(1.69, "feet"),
  55604. name: "Paw",
  55605. image: {
  55606. source: "./media/characters/mark-smith/paw.svg"
  55607. }
  55608. },
  55609. },
  55610. [
  55611. {
  55612. name: "Micro",
  55613. height: math.unit(0.25, "inches")
  55614. },
  55615. {
  55616. name: "Normal",
  55617. height: math.unit(5 + 9/12, "feet"),
  55618. default: true
  55619. },
  55620. {
  55621. name: "Macro",
  55622. height: math.unit(500, "feet")
  55623. },
  55624. ]
  55625. ))
  55626. characterMakers.push(() => makeCharacter(
  55627. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55628. {
  55629. frontNude: {
  55630. height: math.unit(6, "feet"),
  55631. name: "Front (Nude)",
  55632. image: {
  55633. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55634. extra: 1384/1321,
  55635. bottom: 57/1441
  55636. }
  55637. },
  55638. frontDressed: {
  55639. height: math.unit(6, "feet"),
  55640. name: "Front (Dressed)",
  55641. image: {
  55642. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55643. extra: 1384/1321,
  55644. bottom: 57/1441
  55645. }
  55646. },
  55647. },
  55648. [
  55649. {
  55650. name: "Normal",
  55651. height: math.unit(6, "feet"),
  55652. default: true
  55653. },
  55654. {
  55655. name: "Maximum",
  55656. height: math.unit(1776, "feet")
  55657. },
  55658. ]
  55659. ))
  55660. characterMakers.push(() => makeCharacter(
  55661. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55662. {
  55663. front: {
  55664. height: math.unit(2 + 4/12, "feet"),
  55665. weight: math.unit(350, "lb"),
  55666. name: "Front",
  55667. image: {
  55668. source: "./media/characters/devos/front.svg",
  55669. extra: 958/852,
  55670. bottom: 143/1101
  55671. }
  55672. },
  55673. },
  55674. [
  55675. {
  55676. name: "Base",
  55677. height: math.unit(2 + 4/12, "feet"),
  55678. default: true
  55679. },
  55680. ]
  55681. ))
  55682. characterMakers.push(() => makeCharacter(
  55683. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55684. {
  55685. front: {
  55686. height: math.unit(9 + 2/12, "feet"),
  55687. name: "Front",
  55688. image: {
  55689. source: "./media/characters/hiveheart/front.svg",
  55690. extra: 394/364,
  55691. bottom: 65/459
  55692. }
  55693. },
  55694. back: {
  55695. height: math.unit(9 + 2/12, "feet"),
  55696. name: "Back",
  55697. image: {
  55698. source: "./media/characters/hiveheart/back.svg",
  55699. extra: 374/357,
  55700. bottom: 63/437
  55701. }
  55702. },
  55703. },
  55704. [
  55705. {
  55706. name: "Base",
  55707. height: math.unit(9 + 2/12, "feet"),
  55708. default: true
  55709. },
  55710. ]
  55711. ))
  55712. characterMakers.push(() => makeCharacter(
  55713. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55714. {
  55715. front: {
  55716. height: math.unit(2.5, "inches"),
  55717. weight: math.unit(0.6, "oz"),
  55718. name: "Front",
  55719. image: {
  55720. source: "./media/characters/bryn/front.svg",
  55721. extra: 1480/1205,
  55722. bottom: 27/1507
  55723. }
  55724. },
  55725. back: {
  55726. height: math.unit(2.5, "inches"),
  55727. weight: math.unit(0.6, "oz"),
  55728. name: "Back",
  55729. image: {
  55730. source: "./media/characters/bryn/back.svg",
  55731. extra: 1475/1201,
  55732. bottom: 39/1514
  55733. }
  55734. },
  55735. foot: {
  55736. height: math.unit(0.4, "inches"),
  55737. name: "Foot",
  55738. image: {
  55739. source: "./media/characters/bryn/foot.svg"
  55740. }
  55741. },
  55742. },
  55743. [
  55744. {
  55745. name: "Normal",
  55746. height: math.unit(2.5, "inches"),
  55747. default: true
  55748. },
  55749. ]
  55750. ))
  55751. characterMakers.push(() => makeCharacter(
  55752. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55753. {
  55754. side: {
  55755. height: math.unit(7, "feet"),
  55756. weight: math.unit(657, "kg"),
  55757. name: "Side",
  55758. image: {
  55759. source: "./media/characters/delta/side.svg",
  55760. extra: 781/212,
  55761. bottom: 7/788
  55762. },
  55763. extraAttributes: {
  55764. "wingspan": {
  55765. name: "Wingspan",
  55766. power: 1,
  55767. type: "length",
  55768. base: math.unit(48, "feet")
  55769. },
  55770. "length": {
  55771. name: "Length",
  55772. power: 1,
  55773. type: "length",
  55774. base: math.unit(21, "feet")
  55775. },
  55776. "pawSize": {
  55777. name: "Paw Size",
  55778. power: 2,
  55779. type: "area",
  55780. base: math.unit(1.5*1.4, "feet^2")
  55781. },
  55782. }
  55783. },
  55784. },
  55785. [
  55786. {
  55787. name: "Normal",
  55788. height: math.unit(6, "feet"),
  55789. default: true
  55790. },
  55791. ]
  55792. ))
  55793. characterMakers.push(() => makeCharacter(
  55794. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55795. {
  55796. front: {
  55797. height: math.unit(6, "feet"),
  55798. name: "Front",
  55799. image: {
  55800. source: "./media/characters/pyrow/front.svg",
  55801. extra: 513/486,
  55802. bottom: 14/527
  55803. }
  55804. },
  55805. frontWing: {
  55806. height: math.unit(6, "feet"),
  55807. name: "Front (Wing)",
  55808. image: {
  55809. source: "./media/characters/pyrow/front-wing.svg",
  55810. extra: 539/383,
  55811. bottom: 20/559
  55812. }
  55813. },
  55814. back: {
  55815. height: math.unit(6, "feet"),
  55816. name: "Back",
  55817. image: {
  55818. source: "./media/characters/pyrow/back.svg",
  55819. extra: 500/473,
  55820. bottom: 9/509
  55821. }
  55822. },
  55823. },
  55824. [
  55825. {
  55826. name: "Normal",
  55827. height: math.unit(6, "feet"),
  55828. default: true
  55829. },
  55830. ]
  55831. ))
  55832. characterMakers.push(() => makeCharacter(
  55833. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55834. {
  55835. front: {
  55836. height: math.unit(5, "meters"),
  55837. weight: math.unit(3, "tonnes"),
  55838. name: "Front",
  55839. image: {
  55840. source: "./media/characters/velikan/front.svg",
  55841. extra: 867/744,
  55842. bottom: 71/938
  55843. },
  55844. extraAttributes: {
  55845. "shoeSize": {
  55846. name: "Shoe Size",
  55847. power: 1,
  55848. type: "length",
  55849. base: math.unit(135, "ShoeSizeUK"),
  55850. defaultUnit: "ShoeSizeUK"
  55851. },
  55852. }
  55853. },
  55854. },
  55855. [
  55856. {
  55857. name: "Normal",
  55858. height: math.unit(5, "meters"),
  55859. default: true
  55860. },
  55861. {
  55862. name: "Macro",
  55863. height: math.unit(1, "km")
  55864. },
  55865. {
  55866. name: "Mega Macro",
  55867. height: math.unit(100, "km")
  55868. },
  55869. {
  55870. name: "Giga Macro",
  55871. height: math.unit(2, "megameters")
  55872. },
  55873. {
  55874. name: "Planetary",
  55875. height: math.unit(22, "megameters")
  55876. },
  55877. {
  55878. name: "Solar",
  55879. height: math.unit(8, "gigameters")
  55880. },
  55881. {
  55882. name: "Cosmic",
  55883. height: math.unit(10, "zettameters")
  55884. },
  55885. {
  55886. name: "Omni",
  55887. height: math.unit(9e260, "multiverses")
  55888. },
  55889. ]
  55890. ))
  55891. characterMakers.push(() => makeCharacter(
  55892. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55893. {
  55894. front: {
  55895. height: math.unit(4 + 3/12, "feet"),
  55896. weight: math.unit(90, "lb"),
  55897. name: "Front",
  55898. image: {
  55899. source: "./media/characters/sabiki/front.svg",
  55900. extra: 1662/1423,
  55901. bottom: 65/1727
  55902. }
  55903. },
  55904. },
  55905. [
  55906. {
  55907. name: "Normal",
  55908. height: math.unit(4 + 3/12, "feet"),
  55909. default: true
  55910. },
  55911. ]
  55912. ))
  55913. characterMakers.push(() => makeCharacter(
  55914. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55915. {
  55916. frontSfw: {
  55917. height: math.unit(2, "mm"),
  55918. name: "Front (SFW)",
  55919. image: {
  55920. source: "./media/characters/carmel/front-sfw.svg",
  55921. extra: 1131/1006,
  55922. bottom: 66/1197
  55923. }
  55924. },
  55925. frontNsfw: {
  55926. height: math.unit(2, "mm"),
  55927. name: "Front (NSFW)",
  55928. image: {
  55929. source: "./media/characters/carmel/front-nsfw.svg",
  55930. extra: 1131/1006,
  55931. bottom: 66/1197
  55932. }
  55933. },
  55934. foot: {
  55935. height: math.unit(0.3, "mm"),
  55936. name: "Foot",
  55937. image: {
  55938. source: "./media/characters/carmel/foot.svg"
  55939. }
  55940. },
  55941. tongue: {
  55942. height: math.unit(0.71, "mm"),
  55943. name: "Tongue",
  55944. image: {
  55945. source: "./media/characters/carmel/tongue.svg"
  55946. }
  55947. },
  55948. dick: {
  55949. height: math.unit(0.085, "mm"),
  55950. name: "Dick",
  55951. image: {
  55952. source: "./media/characters/carmel/dick.svg"
  55953. }
  55954. },
  55955. },
  55956. [
  55957. {
  55958. name: "Micro",
  55959. height: math.unit(2, "mm"),
  55960. default: true
  55961. },
  55962. {
  55963. name: "Normal",
  55964. height: math.unit(4 + 8/12, "feet")
  55965. },
  55966. {
  55967. name: "Mega Macro",
  55968. height: math.unit(250, "feet")
  55969. },
  55970. {
  55971. name: "BIGGER",
  55972. height: math.unit(1000, "feet")
  55973. },
  55974. {
  55975. name: "BIGGEST",
  55976. height: math.unit(2, "miles")
  55977. },
  55978. ]
  55979. ))
  55980. characterMakers.push(() => makeCharacter(
  55981. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55982. {
  55983. front: {
  55984. height: math.unit(6.5, "feet"),
  55985. weight: math.unit(198, "lb"),
  55986. name: "Front",
  55987. image: {
  55988. source: "./media/characters/tamani/anthro.svg",
  55989. extra: 930/890,
  55990. bottom: 34/964
  55991. },
  55992. form: "anthro",
  55993. default: true
  55994. },
  55995. side: {
  55996. height: math.unit(6, "feet"),
  55997. weight: math.unit(198*2, "lb"),
  55998. name: "Side",
  55999. image: {
  56000. source: "./media/characters/tamani/feral.svg",
  56001. extra: 559/519,
  56002. bottom: 43/602
  56003. },
  56004. form: "feral"
  56005. },
  56006. },
  56007. [
  56008. {
  56009. name: "Normal",
  56010. height: math.unit(6.5, "feet"),
  56011. default: true,
  56012. form: "anthro"
  56013. },
  56014. {
  56015. name: "Normal",
  56016. height: math.unit(6, "feet"),
  56017. default: true,
  56018. form: "feral"
  56019. },
  56020. ],
  56021. {
  56022. "anthro": {
  56023. name: "Anthro",
  56024. default: true
  56025. },
  56026. "feral": {
  56027. name: "Feral",
  56028. },
  56029. }
  56030. ))
  56031. characterMakers.push(() => makeCharacter(
  56032. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56033. {
  56034. front: {
  56035. height: math.unit(4 + 1/12, "feet"),
  56036. weight: math.unit(114, "lb"),
  56037. name: "Front",
  56038. image: {
  56039. source: "./media/characters/dex/front.svg",
  56040. extra: 787/680,
  56041. bottom: 18/805
  56042. }
  56043. },
  56044. side: {
  56045. height: math.unit(4 + 1/12, "feet"),
  56046. weight: math.unit(114, "lb"),
  56047. name: "Side",
  56048. image: {
  56049. source: "./media/characters/dex/side.svg",
  56050. extra: 785/680,
  56051. bottom: 12/797
  56052. }
  56053. },
  56054. back: {
  56055. height: math.unit(4 + 1/12, "feet"),
  56056. weight: math.unit(114, "lb"),
  56057. name: "Back",
  56058. image: {
  56059. source: "./media/characters/dex/back.svg",
  56060. extra: 785/681,
  56061. bottom: 17/802
  56062. }
  56063. },
  56064. loungewear: {
  56065. height: math.unit(4 + 1/12, "feet"),
  56066. weight: math.unit(114, "lb"),
  56067. name: "Loungewear",
  56068. image: {
  56069. source: "./media/characters/dex/loungewear.svg",
  56070. extra: 787/680,
  56071. bottom: 18/805
  56072. }
  56073. },
  56074. workout: {
  56075. height: math.unit(4 + 1/12, "feet"),
  56076. weight: math.unit(114, "lb"),
  56077. name: "Workout",
  56078. image: {
  56079. source: "./media/characters/dex/workout.svg",
  56080. extra: 787/680,
  56081. bottom: 18/805
  56082. }
  56083. },
  56084. schoolUniform: {
  56085. height: math.unit(4 + 1/12, "feet"),
  56086. weight: math.unit(114, "lb"),
  56087. name: "School-uniform",
  56088. image: {
  56089. source: "./media/characters/dex/school-uniform.svg",
  56090. extra: 787/680,
  56091. bottom: 18/805
  56092. }
  56093. },
  56094. maw: {
  56095. height: math.unit(0.55, "feet"),
  56096. name: "Maw",
  56097. image: {
  56098. source: "./media/characters/dex/maw.svg"
  56099. }
  56100. },
  56101. paw: {
  56102. height: math.unit(0.87, "feet"),
  56103. name: "Paw",
  56104. image: {
  56105. source: "./media/characters/dex/paw.svg"
  56106. }
  56107. },
  56108. bust: {
  56109. height: math.unit(1.67, "feet"),
  56110. name: "Bust",
  56111. image: {
  56112. source: "./media/characters/dex/bust.svg"
  56113. }
  56114. },
  56115. },
  56116. [
  56117. {
  56118. name: "Normal",
  56119. height: math.unit(4 + 1/12, "feet"),
  56120. default: true
  56121. },
  56122. ]
  56123. ))
  56124. characterMakers.push(() => makeCharacter(
  56125. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56126. {
  56127. front: {
  56128. height: math.unit(4 + 3/12, "feet"),
  56129. weight: math.unit(60, "lb"),
  56130. name: "Front",
  56131. image: {
  56132. source: "./media/characters/silke/front.svg",
  56133. extra: 1334/1122,
  56134. bottom: 21/1355
  56135. }
  56136. },
  56137. back: {
  56138. height: math.unit(4 + 3/12, "feet"),
  56139. weight: math.unit(60, "lb"),
  56140. name: "Back",
  56141. image: {
  56142. source: "./media/characters/silke/back.svg",
  56143. extra: 1328/1092,
  56144. bottom: 16/1344
  56145. }
  56146. },
  56147. dressed: {
  56148. height: math.unit(4 + 3/12, "feet"),
  56149. weight: math.unit(60, "lb"),
  56150. name: "Dressed",
  56151. image: {
  56152. source: "./media/characters/silke/dressed.svg",
  56153. extra: 1334/1122,
  56154. bottom: 43/1377
  56155. }
  56156. },
  56157. },
  56158. [
  56159. {
  56160. name: "Normal",
  56161. height: math.unit(4 + 3/12, "feet"),
  56162. default: true
  56163. },
  56164. ]
  56165. ))
  56166. characterMakers.push(() => makeCharacter(
  56167. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56168. {
  56169. front: {
  56170. height: math.unit(1.58, "meters"),
  56171. weight: math.unit(47, "kg"),
  56172. name: "Front",
  56173. image: {
  56174. source: "./media/characters/wireshark/front.svg",
  56175. extra: 883/838,
  56176. bottom: 66/949
  56177. }
  56178. },
  56179. },
  56180. [
  56181. {
  56182. name: "Normal",
  56183. height: math.unit(1.58, "meters"),
  56184. default: true
  56185. },
  56186. ]
  56187. ))
  56188. characterMakers.push(() => makeCharacter(
  56189. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56190. {
  56191. front: {
  56192. height: math.unit(6, "meters"),
  56193. weight: math.unit(15000, "kg"),
  56194. name: "Front",
  56195. image: {
  56196. source: "./media/characters/gallagher/front.svg",
  56197. extra: 532/493,
  56198. bottom: 0/532
  56199. }
  56200. },
  56201. },
  56202. [
  56203. {
  56204. name: "Normal",
  56205. height: math.unit(6, "meters"),
  56206. default: true
  56207. },
  56208. ]
  56209. ))
  56210. characterMakers.push(() => makeCharacter(
  56211. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56212. {
  56213. front: {
  56214. height: math.unit(2.4, "meters"),
  56215. weight: math.unit(270, "kg"),
  56216. name: "Front",
  56217. image: {
  56218. source: "./media/characters/alice/front.svg",
  56219. extra: 950/900,
  56220. bottom: 36/986
  56221. }
  56222. },
  56223. side: {
  56224. height: math.unit(2.4, "meters"),
  56225. weight: math.unit(270, "kg"),
  56226. name: "Side",
  56227. image: {
  56228. source: "./media/characters/alice/side.svg",
  56229. extra: 921/876,
  56230. bottom: 19/940
  56231. }
  56232. },
  56233. dressed: {
  56234. height: math.unit(2.4, "meters"),
  56235. weight: math.unit(270, "kg"),
  56236. name: "Dressed",
  56237. image: {
  56238. source: "./media/characters/alice/dressed.svg",
  56239. extra: 905/850,
  56240. bottom: 81/986
  56241. }
  56242. },
  56243. fishnet: {
  56244. height: math.unit(2.4, "meters"),
  56245. weight: math.unit(270, "kg"),
  56246. name: "Fishnet",
  56247. image: {
  56248. source: "./media/characters/alice/fishnet.svg",
  56249. extra: 905/850,
  56250. bottom: 81/986
  56251. }
  56252. },
  56253. },
  56254. [
  56255. {
  56256. name: "Normal",
  56257. height: math.unit(2.4, "meters"),
  56258. default: true
  56259. },
  56260. ]
  56261. ))
  56262. characterMakers.push(() => makeCharacter(
  56263. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56264. {
  56265. front: {
  56266. height: math.unit(175.25, "feet"),
  56267. name: "Front",
  56268. image: {
  56269. source: "./media/characters/fio/front.svg",
  56270. extra: 1883/1591,
  56271. bottom: 34/1917
  56272. }
  56273. },
  56274. },
  56275. [
  56276. {
  56277. name: "Normal",
  56278. height: math.unit(175.25, "cm"),
  56279. default: true
  56280. },
  56281. ]
  56282. ))
  56283. characterMakers.push(() => makeCharacter(
  56284. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56285. {
  56286. side: {
  56287. height: math.unit(6, "meters"),
  56288. weight: math.unit(3400, "kg"),
  56289. preyCapacity: math.unit(1700, "liters"),
  56290. name: "Side",
  56291. image: {
  56292. source: "./media/characters/hass/side.svg",
  56293. extra: 1058/997,
  56294. bottom: 177/1235
  56295. }
  56296. },
  56297. feeding: {
  56298. height: math.unit(6*0.63, "meters"),
  56299. weight: math.unit(3400, "kg"),
  56300. preyCapacity: math.unit(1700, "liters"),
  56301. name: "Feeding",
  56302. image: {
  56303. source: "./media/characters/hass/feeding.svg",
  56304. extra: 689/579,
  56305. bottom: 146/835
  56306. }
  56307. },
  56308. guts: {
  56309. height: math.unit(6, "meters"),
  56310. weight: math.unit(3400, "kg"),
  56311. name: "Guts",
  56312. image: {
  56313. source: "./media/characters/hass/guts.svg",
  56314. extra: 1223/1198,
  56315. bottom: 182/1405
  56316. }
  56317. },
  56318. dickFront: {
  56319. height: math.unit(1.4, "meters"),
  56320. name: "Dick (Front)",
  56321. image: {
  56322. source: "./media/characters/hass/dick-front.svg"
  56323. }
  56324. },
  56325. dickSide: {
  56326. height: math.unit(1.3, "meters"),
  56327. name: "Dick (Side)",
  56328. image: {
  56329. source: "./media/characters/hass/dick-side.svg"
  56330. }
  56331. },
  56332. dickBack: {
  56333. height: math.unit(1.4, "meters"),
  56334. name: "Dick (Back)",
  56335. image: {
  56336. source: "./media/characters/hass/dick-back.svg"
  56337. }
  56338. },
  56339. },
  56340. [
  56341. {
  56342. name: "Normal",
  56343. height: math.unit(6, "meters"),
  56344. default: true
  56345. },
  56346. ]
  56347. ))
  56348. characterMakers.push(() => makeCharacter(
  56349. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56350. {
  56351. front: {
  56352. height: math.unit(4, "feet"),
  56353. weight: math.unit(60, "lb"),
  56354. name: "Front",
  56355. image: {
  56356. source: "./media/characters/hickory-finnegan/front.svg",
  56357. extra: 444/411,
  56358. bottom: 10/454
  56359. }
  56360. },
  56361. side: {
  56362. height: math.unit(4, "feet"),
  56363. weight: math.unit(60, "lb"),
  56364. name: "Side",
  56365. image: {
  56366. source: "./media/characters/hickory-finnegan/side.svg",
  56367. extra: 444/411,
  56368. bottom: 10/454
  56369. }
  56370. },
  56371. back: {
  56372. height: math.unit(4, "feet"),
  56373. weight: math.unit(60, "lb"),
  56374. name: "Back",
  56375. image: {
  56376. source: "./media/characters/hickory-finnegan/back.svg",
  56377. extra: 444/411,
  56378. bottom: 10/454
  56379. }
  56380. },
  56381. },
  56382. [
  56383. {
  56384. name: "Normal",
  56385. height: math.unit(4, "feet"),
  56386. default: true
  56387. },
  56388. ]
  56389. ))
  56390. characterMakers.push(() => makeCharacter(
  56391. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56392. {
  56393. snivy_front: {
  56394. height: math.unit(2, "feet"),
  56395. weight: math.unit(17.9, "lb"),
  56396. name: "Front",
  56397. image: {
  56398. source: "./media/characters/robin-phox/snivy-front.svg",
  56399. extra: 569/504,
  56400. bottom: 33/602
  56401. },
  56402. form: "snivy",
  56403. default: true
  56404. },
  56405. snivy_frontNsfw: {
  56406. height: math.unit(2, "feet"),
  56407. weight: math.unit(17.9, "lb"),
  56408. name: "Front (NSFW)",
  56409. image: {
  56410. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56411. extra: 569/504,
  56412. bottom: 33/602
  56413. },
  56414. form: "snivy",
  56415. },
  56416. snivy_back: {
  56417. height: math.unit(2, "feet"),
  56418. weight: math.unit(17.9, "lb"),
  56419. name: "Back",
  56420. image: {
  56421. source: "./media/characters/robin-phox/snivy-back.svg",
  56422. extra: 577/508,
  56423. bottom: 21/598
  56424. },
  56425. form: "snivy",
  56426. },
  56427. snivy_foot: {
  56428. height: math.unit(0.68, "feet"),
  56429. name: "Foot",
  56430. image: {
  56431. source: "./media/characters/robin-phox/snivy-foot.svg"
  56432. },
  56433. form: "snivy",
  56434. },
  56435. snivy_sole: {
  56436. height: math.unit(0.68, "feet"),
  56437. name: "Sole",
  56438. image: {
  56439. source: "./media/characters/robin-phox/snivy-sole.svg"
  56440. },
  56441. form: "snivy",
  56442. },
  56443. yoshi_front: {
  56444. height: math.unit(6, "feet"),
  56445. weight: math.unit(150, "lb"),
  56446. name: "Front",
  56447. image: {
  56448. source: "./media/characters/robin-phox/yoshi-front.svg",
  56449. extra: 890/792,
  56450. bottom: 29/919
  56451. },
  56452. form: "yoshi",
  56453. default: true
  56454. },
  56455. yoshi_frontNsfw: {
  56456. height: math.unit(6, "feet"),
  56457. weight: math.unit(150, "lb"),
  56458. name: "Front (NSFW)",
  56459. image: {
  56460. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56461. extra: 890/792,
  56462. bottom: 29/919
  56463. },
  56464. form: "yoshi",
  56465. },
  56466. yoshi_back: {
  56467. height: math.unit(6, "feet"),
  56468. weight: math.unit(150, "lb"),
  56469. name: "Back",
  56470. image: {
  56471. source: "./media/characters/robin-phox/yoshi-back.svg",
  56472. extra: 890/792,
  56473. bottom: 29/919
  56474. },
  56475. form: "yoshi",
  56476. },
  56477. yoshi_foot: {
  56478. height: math.unit(1.5, "feet"),
  56479. name: "Foot",
  56480. image: {
  56481. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56482. },
  56483. form: "yoshi",
  56484. },
  56485. delphox_front: {
  56486. height: math.unit(4 + 11/12, "feet"),
  56487. weight: math.unit(86, "lb"),
  56488. name: "Front",
  56489. image: {
  56490. source: "./media/characters/robin-phox/delphox-front.svg",
  56491. extra: 1266/1069,
  56492. bottom: 32/1298
  56493. },
  56494. form: "delphox",
  56495. default: true
  56496. },
  56497. delphox_frontNsfw: {
  56498. height: math.unit(4 + 11/12, "feet"),
  56499. weight: math.unit(86, "lb"),
  56500. name: "Front (NSFW)",
  56501. image: {
  56502. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56503. extra: 1266/1069,
  56504. bottom: 32/1298
  56505. },
  56506. form: "delphox",
  56507. },
  56508. delphox_back: {
  56509. height: math.unit(4 + 11/12, "feet"),
  56510. weight: math.unit(86, "lb"),
  56511. name: "Back",
  56512. image: {
  56513. source: "./media/characters/robin-phox/delphox-back.svg",
  56514. extra: 1269/1083,
  56515. bottom: 15/1284
  56516. },
  56517. form: "delphox",
  56518. },
  56519. mienshao_front: {
  56520. height: math.unit(4 + 7/12, "feet"),
  56521. weight: math.unit(78.3, "lb"),
  56522. name: "Front",
  56523. image: {
  56524. source: "./media/characters/robin-phox/mienshao-front.svg",
  56525. extra: 1052/970,
  56526. bottom: 108/1160
  56527. },
  56528. form: "mienshao",
  56529. default: true
  56530. },
  56531. mienshao_frontNsfw: {
  56532. height: math.unit(4 + 7/12, "feet"),
  56533. weight: math.unit(78.3, "lb"),
  56534. name: "Front (NSFW)",
  56535. image: {
  56536. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56537. extra: 1052/970,
  56538. bottom: 108/1160
  56539. },
  56540. form: "mienshao",
  56541. },
  56542. mienshao_back: {
  56543. height: math.unit(4 + 7/12, "feet"),
  56544. weight: math.unit(78.3, "lb"),
  56545. name: "Back",
  56546. image: {
  56547. source: "./media/characters/robin-phox/mienshao-back.svg",
  56548. extra: 1102/982,
  56549. bottom: 32/1134
  56550. },
  56551. form: "mienshao",
  56552. },
  56553. inteleon_front: {
  56554. height: math.unit(6 + 3/12, "feet"),
  56555. weight: math.unit(99.6, "lb"),
  56556. name: "Front",
  56557. image: {
  56558. source: "./media/characters/robin-phox/inteleon-front.svg",
  56559. extra: 910/799,
  56560. bottom: 76/986
  56561. },
  56562. form: "inteleon",
  56563. default: true
  56564. },
  56565. inteleon_frontNsfw: {
  56566. height: math.unit(6 + 3/12, "feet"),
  56567. weight: math.unit(99.6, "lb"),
  56568. name: "Front (NSFW)",
  56569. image: {
  56570. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56571. extra: 910/799,
  56572. bottom: 76/986
  56573. },
  56574. form: "inteleon",
  56575. },
  56576. inteleon_back: {
  56577. height: math.unit(6 + 3/12, "feet"),
  56578. weight: math.unit(99.6, "lb"),
  56579. name: "Back",
  56580. image: {
  56581. source: "./media/characters/robin-phox/inteleon-back.svg",
  56582. extra: 907/796,
  56583. bottom: 25/932
  56584. },
  56585. form: "inteleon",
  56586. },
  56587. reshiram_front: {
  56588. height: math.unit(10 + 6/12, "feet"),
  56589. weight: math.unit(727.5, "lb"),
  56590. name: "Front",
  56591. image: {
  56592. source: "./media/characters/robin-phox/reshiram-front.svg",
  56593. extra: 1198/940,
  56594. bottom: 123/1321
  56595. },
  56596. form: "reshiram",
  56597. },
  56598. reshiram_frontNsfw: {
  56599. height: math.unit(10 + 6/12, "feet"),
  56600. weight: math.unit(727.5, "lb"),
  56601. name: "Front-nsfw",
  56602. image: {
  56603. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56604. extra: 1198/940,
  56605. bottom: 123/1321
  56606. },
  56607. form: "reshiram",
  56608. },
  56609. reshiram_back: {
  56610. height: math.unit(10 + 6/12, "feet"),
  56611. weight: math.unit(727.5, "lb"),
  56612. name: "Back",
  56613. image: {
  56614. source: "./media/characters/robin-phox/reshiram-back.svg",
  56615. extra: 1024/904,
  56616. bottom: 85/1109
  56617. },
  56618. form: "reshiram",
  56619. },
  56620. samurott_front: {
  56621. height: math.unit(8, "feet"),
  56622. weight: math.unit(208.6, "lb"),
  56623. name: "Front",
  56624. image: {
  56625. source: "./media/characters/robin-phox/samurott-front.svg",
  56626. extra: 1048/984,
  56627. bottom: 100/1148
  56628. },
  56629. form: "samurott",
  56630. },
  56631. samurott_frontNsfw: {
  56632. height: math.unit(8, "feet"),
  56633. weight: math.unit(208.6, "lb"),
  56634. name: "Front-nsfw",
  56635. image: {
  56636. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56637. extra: 1048/984,
  56638. bottom: 100/1148
  56639. },
  56640. form: "samurott",
  56641. },
  56642. samurott_back: {
  56643. height: math.unit(8, "feet"),
  56644. weight: math.unit(208.6, "lb"),
  56645. name: "Back",
  56646. image: {
  56647. source: "./media/characters/robin-phox/samurott-back.svg",
  56648. extra: 1110/1042,
  56649. bottom: 12/1122
  56650. },
  56651. form: "samurott",
  56652. },
  56653. samurott_feral: {
  56654. height: math.unit(4 + 11/12, "feet"),
  56655. weight: math.unit(208.6, "lb"),
  56656. name: "Feral",
  56657. image: {
  56658. source: "./media/characters/robin-phox/samurott-feral.svg",
  56659. extra: 766/681,
  56660. bottom: 108/874
  56661. },
  56662. form: "samurott",
  56663. },
  56664. },
  56665. [
  56666. {
  56667. name: "Normal",
  56668. height: math.unit(2, "feet"),
  56669. default: true,
  56670. form: "snivy"
  56671. },
  56672. {
  56673. name: "Normal",
  56674. height: math.unit(6, "feet"),
  56675. default: true,
  56676. form: "yoshi"
  56677. },
  56678. {
  56679. name: "Normal",
  56680. height: math.unit(4 + 11/12, "feet"),
  56681. default: true,
  56682. form: "delphox"
  56683. },
  56684. {
  56685. name: "Normal",
  56686. height: math.unit(4 + 7/12, "feet"),
  56687. default: true,
  56688. form: "mienshao"
  56689. },
  56690. {
  56691. name: "Normal",
  56692. height: math.unit(6 + 3/12, "feet"),
  56693. default: true,
  56694. form: "inteleon"
  56695. },
  56696. {
  56697. name: "Normal",
  56698. height: math.unit(10 + 6/12, "feet"),
  56699. default: true,
  56700. form: "reshiram"
  56701. },
  56702. {
  56703. name: "Normal",
  56704. height: math.unit(8, "feet"),
  56705. default: true,
  56706. form: "samurott"
  56707. },
  56708. {
  56709. name: "Macro",
  56710. height: math.unit(500, "feet"),
  56711. allForms: true
  56712. },
  56713. {
  56714. name: "Mega Macro",
  56715. height: math.unit(10, "earths"),
  56716. allForms: true
  56717. },
  56718. {
  56719. name: "Giga Macro",
  56720. height: math.unit(1, "galaxy"),
  56721. allForms: true
  56722. },
  56723. {
  56724. name: "Godly Macro",
  56725. height: math.unit(1e10, "multiverses"),
  56726. allForms: true
  56727. },
  56728. ],
  56729. {
  56730. "snivy": {
  56731. name: "Snivy",
  56732. default: true
  56733. },
  56734. "yoshi": {
  56735. name: "Yoshi",
  56736. },
  56737. "delphox": {
  56738. name: "Delphox",
  56739. },
  56740. "mienshao": {
  56741. name: "Mienshao",
  56742. },
  56743. "inteleon": {
  56744. name: "Inteleon",
  56745. },
  56746. "reshiram": {
  56747. name: "Reshiram",
  56748. },
  56749. "samurott": {
  56750. name: "Samurott",
  56751. },
  56752. }
  56753. ))
  56754. characterMakers.push(() => makeCharacter(
  56755. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56756. {
  56757. front: {
  56758. height: math.unit(4, "feet"),
  56759. name: "Front",
  56760. image: {
  56761. source: "./media/characters/ash-leung/front.svg",
  56762. extra: 1916/1792,
  56763. bottom: 50/1966
  56764. }
  56765. },
  56766. },
  56767. [
  56768. {
  56769. name: "Atomic",
  56770. height: math.unit(1, "angstrom")
  56771. },
  56772. {
  56773. name: "Microscopic",
  56774. height: math.unit(4000, "angstroms")
  56775. },
  56776. {
  56777. name: "Speck",
  56778. height: math.unit(1, "mm")
  56779. },
  56780. {
  56781. name: "Small",
  56782. height: math.unit(1, "inch")
  56783. },
  56784. {
  56785. name: "Normal",
  56786. height: math.unit(4, "feet"),
  56787. default: true
  56788. },
  56789. ]
  56790. ))
  56791. characterMakers.push(() => makeCharacter(
  56792. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56793. {
  56794. frontDressed: {
  56795. height: math.unit(2.08, "meters"),
  56796. weight: math.unit(175, "lb"),
  56797. name: "Front (Dressed)",
  56798. image: {
  56799. source: "./media/characters/carie/front-dressed.svg",
  56800. extra: 456/417,
  56801. bottom: 7/463
  56802. }
  56803. },
  56804. backDressed: {
  56805. height: math.unit(2.08, "meters"),
  56806. weight: math.unit(175, "lb"),
  56807. name: "Back (Dressed)",
  56808. image: {
  56809. source: "./media/characters/carie/back-dressed.svg",
  56810. extra: 455/414,
  56811. bottom: 11/466
  56812. }
  56813. },
  56814. front: {
  56815. height: math.unit(2, "meters"),
  56816. weight: math.unit(175, "lb"),
  56817. name: "Front",
  56818. image: {
  56819. source: "./media/characters/carie/front.svg",
  56820. extra: 438/399,
  56821. bottom: 12/450
  56822. }
  56823. },
  56824. back: {
  56825. height: math.unit(2, "meters"),
  56826. weight: math.unit(175, "lb"),
  56827. name: "Back",
  56828. image: {
  56829. source: "./media/characters/carie/back.svg",
  56830. extra: 438/397,
  56831. bottom: 7/445
  56832. }
  56833. },
  56834. },
  56835. [
  56836. {
  56837. name: "Normal",
  56838. height: math.unit(2.08, "meters"),
  56839. default: true
  56840. },
  56841. {
  56842. name: "Macro",
  56843. height: math.unit(2.08e3, "meters")
  56844. },
  56845. {
  56846. name: "Mega Macro",
  56847. height: math.unit(2.08e6, "meters")
  56848. },
  56849. {
  56850. name: "Giga Macro",
  56851. height: math.unit(2.08e9, "meters")
  56852. },
  56853. {
  56854. name: "Tera Macro",
  56855. height: math.unit(2.08e12, "meters")
  56856. },
  56857. {
  56858. name: "Peta Macro",
  56859. height: math.unit(2.08e15, "meters")
  56860. },
  56861. {
  56862. name: "Exa Macro",
  56863. height: math.unit(2.08e18, "meters")
  56864. },
  56865. {
  56866. name: "Zetta Macro",
  56867. height: math.unit(2.08e21, "meters")
  56868. },
  56869. {
  56870. name: "Yotta Macro",
  56871. height: math.unit(2.08e24, "meters")
  56872. },
  56873. ]
  56874. ))
  56875. characterMakers.push(() => makeCharacter(
  56876. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  56877. {
  56878. front: {
  56879. height: math.unit(5 + 2/12, "feet"),
  56880. weight: math.unit(120, "lb"),
  56881. name: "Front",
  56882. image: {
  56883. source: "./media/characters/sai-bree/front.svg",
  56884. extra: 1843/1702,
  56885. bottom: 91/1934
  56886. }
  56887. },
  56888. back: {
  56889. height: math.unit(5 + 2/12, "feet"),
  56890. weight: math.unit(120, "lb"),
  56891. name: "Back",
  56892. image: {
  56893. source: "./media/characters/sai-bree/back.svg",
  56894. extra: 1809/1637,
  56895. bottom: 56/1865
  56896. }
  56897. },
  56898. },
  56899. [
  56900. {
  56901. name: "Normal",
  56902. height: math.unit(5 + 2/12, "feet"),
  56903. default: true
  56904. },
  56905. {
  56906. name: "Macro",
  56907. height: math.unit(500, "feet")
  56908. },
  56909. ]
  56910. ))
  56911. characterMakers.push(() => makeCharacter(
  56912. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  56913. {
  56914. side: {
  56915. height: math.unit(0.77, "meters"),
  56916. weight: math.unit(120, "lb"),
  56917. name: "Side",
  56918. image: {
  56919. source: "./media/characters/davwyn/side.svg",
  56920. extra: 1557/1225,
  56921. bottom: 131/1688
  56922. }
  56923. },
  56924. front: {
  56925. height: math.unit(0.835410, "meters"),
  56926. weight: math.unit(120, "lb"),
  56927. name: "Front",
  56928. image: {
  56929. source: "./media/characters/davwyn/front.svg",
  56930. extra: 870/843,
  56931. bottom: 175/1045
  56932. }
  56933. },
  56934. },
  56935. [
  56936. {
  56937. name: "Minidrake",
  56938. height: math.unit(0.77/4, "meters")
  56939. },
  56940. {
  56941. name: "Normal",
  56942. height: math.unit(0.77, "meters"),
  56943. default: true
  56944. },
  56945. ]
  56946. ))
  56947. characterMakers.push(() => makeCharacter(
  56948. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  56949. {
  56950. front: {
  56951. height: math.unit(10 + 3/12, "feet"),
  56952. weight: math.unit(2857, "lb"),
  56953. name: "Front",
  56954. image: {
  56955. source: "./media/characters/balans/front.svg",
  56956. extra: 427/402,
  56957. bottom: 26/453
  56958. }
  56959. },
  56960. side: {
  56961. height: math.unit(10 + 3/12, "feet"),
  56962. weight: math.unit(2857, "lb"),
  56963. name: "Side",
  56964. image: {
  56965. source: "./media/characters/balans/side.svg",
  56966. extra: 397/371,
  56967. bottom: 17/414
  56968. }
  56969. },
  56970. back: {
  56971. height: math.unit(10 + 3/12, "feet"),
  56972. weight: math.unit(2857, "lb"),
  56973. name: "Back",
  56974. image: {
  56975. source: "./media/characters/balans/back.svg",
  56976. extra: 408/381,
  56977. bottom: 14/422
  56978. }
  56979. },
  56980. hand: {
  56981. height: math.unit(1.15, "feet"),
  56982. name: "Hand",
  56983. image: {
  56984. source: "./media/characters/balans/hand.svg"
  56985. }
  56986. },
  56987. footRest: {
  56988. height: math.unit(3.1, "feet"),
  56989. name: "Foot (Rest)",
  56990. image: {
  56991. source: "./media/characters/balans/foot-rest.svg"
  56992. }
  56993. },
  56994. footActive: {
  56995. height: math.unit(3.5, "feet"),
  56996. name: "Foot (Active)",
  56997. image: {
  56998. source: "./media/characters/balans/foot-active.svg"
  56999. }
  57000. },
  57001. },
  57002. [
  57003. {
  57004. name: "Normal",
  57005. height: math.unit(10 + 3/12, "feet"),
  57006. default: true
  57007. },
  57008. ]
  57009. ))
  57010. characterMakers.push(() => makeCharacter(
  57011. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57012. {
  57013. side: {
  57014. height: math.unit(9, "meters"),
  57015. weight: math.unit(114, "tonnes"),
  57016. name: "Side",
  57017. image: {
  57018. source: "./media/characters/eldkveikir/side.svg",
  57019. extra: 1927/338,
  57020. bottom: 42/1969
  57021. }
  57022. },
  57023. sitting: {
  57024. height: math.unit(13.4, "meters"),
  57025. weight: math.unit(114, "tonnes"),
  57026. name: "Sitting",
  57027. image: {
  57028. source: "./media/characters/eldkveikir/sitting.svg",
  57029. extra: 1108/963,
  57030. bottom: 610/1718
  57031. }
  57032. },
  57033. maw: {
  57034. height: math.unit(8.36, "meters"),
  57035. name: "Maw",
  57036. image: {
  57037. source: "./media/characters/eldkveikir/maw.svg"
  57038. }
  57039. },
  57040. hand: {
  57041. height: math.unit(4.84, "meters"),
  57042. name: "Hand",
  57043. image: {
  57044. source: "./media/characters/eldkveikir/hand.svg"
  57045. }
  57046. },
  57047. foot: {
  57048. height: math.unit(6.9, "meters"),
  57049. name: "Foot",
  57050. image: {
  57051. source: "./media/characters/eldkveikir/foot.svg"
  57052. }
  57053. },
  57054. genitals: {
  57055. height: math.unit(9.6, "meters"),
  57056. name: "Genitals",
  57057. image: {
  57058. source: "./media/characters/eldkveikir/genitals.svg"
  57059. }
  57060. },
  57061. },
  57062. [
  57063. {
  57064. name: "Normal",
  57065. height: math.unit(9, "meters"),
  57066. default: true
  57067. },
  57068. ]
  57069. ))
  57070. characterMakers.push(() => makeCharacter(
  57071. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57072. {
  57073. front: {
  57074. height: math.unit(14, "feet"),
  57075. weight: math.unit(4100, "lb"),
  57076. name: "Front",
  57077. image: {
  57078. source: "./media/characters/arrow/front.svg",
  57079. extra: 330/318,
  57080. bottom: 56/386
  57081. }
  57082. },
  57083. },
  57084. [
  57085. {
  57086. name: "Normal",
  57087. height: math.unit(14, "feet"),
  57088. default: true
  57089. },
  57090. {
  57091. name: "Minimacro",
  57092. height: math.unit(63, "feet")
  57093. },
  57094. {
  57095. name: "Macro",
  57096. height: math.unit(630, "feet")
  57097. },
  57098. {
  57099. name: "Megamacro",
  57100. height: math.unit(12600, "feet")
  57101. },
  57102. {
  57103. name: "Gigamacro",
  57104. height: math.unit(18000, "miles")
  57105. },
  57106. ]
  57107. ))
  57108. characterMakers.push(() => makeCharacter(
  57109. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57110. {
  57111. front: {
  57112. height: math.unit(10, "feet"),
  57113. weight: math.unit(2.4, "tons"),
  57114. name: "Front",
  57115. image: {
  57116. source: "./media/characters/3yk-k0-unit/front.svg",
  57117. extra: 573/561,
  57118. bottom: 33/606
  57119. }
  57120. },
  57121. back: {
  57122. height: math.unit(10, "feet"),
  57123. weight: math.unit(2.4, "tons"),
  57124. name: "Back",
  57125. image: {
  57126. source: "./media/characters/3yk-k0-unit/back.svg",
  57127. extra: 614/573,
  57128. bottom: 32/646
  57129. }
  57130. },
  57131. maw: {
  57132. height: math.unit(2.15, "feet"),
  57133. name: "Maw",
  57134. image: {
  57135. source: "./media/characters/3yk-k0-unit/maw.svg"
  57136. }
  57137. },
  57138. },
  57139. [
  57140. {
  57141. name: "Normal",
  57142. height: math.unit(10, "feet"),
  57143. default: true
  57144. },
  57145. ]
  57146. ))
  57147. characterMakers.push(() => makeCharacter(
  57148. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57149. {
  57150. front: {
  57151. height: math.unit(8 + 8/12, "feet"),
  57152. name: "Front",
  57153. image: {
  57154. source: "./media/characters/nemo/front.svg",
  57155. extra: 1308/1217,
  57156. bottom: 57/1365
  57157. }
  57158. },
  57159. },
  57160. [
  57161. {
  57162. name: "Normal",
  57163. height: math.unit(8 + 8/12, "feet"),
  57164. default: true
  57165. },
  57166. ]
  57167. ))
  57168. characterMakers.push(() => makeCharacter(
  57169. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57170. {
  57171. front: {
  57172. height: math.unit(8, "feet"),
  57173. weight: math.unit(760, "lb"),
  57174. name: "Front",
  57175. image: {
  57176. source: "./media/characters/rexx/front.svg",
  57177. extra: 786/750,
  57178. bottom: 17/803
  57179. },
  57180. extraAttributes: {
  57181. "pawLength": {
  57182. name: "Paw Length",
  57183. power: 1,
  57184. type: "length",
  57185. base: math.unit(27, "inches")
  57186. },
  57187. }
  57188. },
  57189. },
  57190. [
  57191. {
  57192. name: "Micro",
  57193. height: math.unit(2, "inches")
  57194. },
  57195. {
  57196. name: "Normal",
  57197. height: math.unit(8, "feet"),
  57198. default: true
  57199. },
  57200. {
  57201. name: "Macro",
  57202. height: math.unit(150, "feet")
  57203. },
  57204. ]
  57205. ))
  57206. characterMakers.push(() => makeCharacter(
  57207. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57208. {
  57209. front: {
  57210. height: math.unit(18, "feet"),
  57211. weight: math.unit(1975, "lb"),
  57212. name: "Front",
  57213. image: {
  57214. source: "./media/characters/draco/front.svg",
  57215. extra: 1325/1241,
  57216. bottom: 83/1408
  57217. }
  57218. },
  57219. back: {
  57220. height: math.unit(18, "feet"),
  57221. weight: math.unit(1975, "lb"),
  57222. name: "Back",
  57223. image: {
  57224. source: "./media/characters/draco/back.svg",
  57225. extra: 1332/1250,
  57226. bottom: 43/1375
  57227. }
  57228. },
  57229. dick: {
  57230. height: math.unit(7.5, "feet"),
  57231. name: "Dick",
  57232. image: {
  57233. source: "./media/characters/draco/dick.svg"
  57234. }
  57235. },
  57236. },
  57237. [
  57238. {
  57239. name: "Normal",
  57240. height: math.unit(18, "feet"),
  57241. default: true
  57242. },
  57243. ]
  57244. ))
  57245. characterMakers.push(() => makeCharacter(
  57246. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57247. {
  57248. front: {
  57249. height: math.unit(3.2, "meters"),
  57250. name: "Front",
  57251. image: {
  57252. source: "./media/characters/harriett/front.svg",
  57253. extra: 1966/1915,
  57254. bottom: 9/1975
  57255. }
  57256. },
  57257. },
  57258. [
  57259. {
  57260. name: "Normal",
  57261. height: math.unit(3.2, "meters"),
  57262. default: true
  57263. },
  57264. ]
  57265. ))
  57266. characterMakers.push(() => makeCharacter(
  57267. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57268. {
  57269. sitting: {
  57270. height: math.unit(0.8, "meter"),
  57271. name: "Sitting",
  57272. image: {
  57273. source: "./media/characters/serpentus/sitting.svg",
  57274. extra: 293/290,
  57275. bottom: 140/433
  57276. }
  57277. },
  57278. },
  57279. [
  57280. {
  57281. name: "Normal",
  57282. height: math.unit(0.8, "meter"),
  57283. default: true
  57284. },
  57285. ]
  57286. ))
  57287. characterMakers.push(() => makeCharacter(
  57288. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57289. {
  57290. front: {
  57291. height: math.unit(5.7174385736, "feet"),
  57292. name: "Front",
  57293. image: {
  57294. source: "./media/characters/nova-polecat/front.svg",
  57295. extra: 1317/1216,
  57296. bottom: 92/1409
  57297. }
  57298. },
  57299. },
  57300. [
  57301. {
  57302. name: "Normal",
  57303. height: math.unit(5.7174385736, "feet"),
  57304. default: true
  57305. },
  57306. ]
  57307. ))
  57308. //characters
  57309. function makeCharacters() {
  57310. const results = [];
  57311. characterMakers.forEach(character => {
  57312. results.push(character());
  57313. });
  57314. return results;
  57315. }