less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

58591 строка
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: ["mustelid"]
  1800. },
  1801. "teshari": {
  1802. name: "Teshari",
  1803. parents: ["avian", "raptor"]
  1804. },
  1805. "alicorn": {
  1806. name: "Alicorn",
  1807. parents: ["horse"]
  1808. },
  1809. "atlas-moth": {
  1810. name: "Atlas Moth",
  1811. parents: ["moth"]
  1812. },
  1813. "owlbear": {
  1814. name: "Owlbear",
  1815. parents: ["owl", "bear", "monster"]
  1816. },
  1817. "owl": {
  1818. name: "Owl",
  1819. parents: ["avian"]
  1820. },
  1821. "silvertongue": {
  1822. name: "Silvertongue",
  1823. parents: ["reptile"]
  1824. },
  1825. "ahuizotl": {
  1826. name: "Ahuizotl",
  1827. parents: ["monster"]
  1828. },
  1829. "ender-dragon": {
  1830. name: "Ender Dragon",
  1831. parents: ["dragon"]
  1832. },
  1833. "bruhathkayosaurus": {
  1834. name: "Bruhathkayosaurus",
  1835. parents: ["sauropod"]
  1836. },
  1837. "sauropod": {
  1838. name: "Sauropod",
  1839. parents: ["dinosaur"]
  1840. },
  1841. "black-sable-antelope": {
  1842. name: "Black Sable Antelope",
  1843. parents: ["antelope"]
  1844. },
  1845. "slime": {
  1846. name: "Slime",
  1847. parents: ["goo"]
  1848. },
  1849. "utahraptor": {
  1850. name: "Utahraptor",
  1851. parents: ["raptor"]
  1852. },
  1853. "indian-giant-squirrel": {
  1854. name: "Indian Giant Squirrel",
  1855. parents: ["squirrel"]
  1856. },
  1857. "golden-retriever": {
  1858. name: "Golden Retriever",
  1859. parents: ["dog"]
  1860. },
  1861. "triceratops": {
  1862. name: "Triceratops",
  1863. parents: ["dinosaur"]
  1864. },
  1865. "drake": {
  1866. name: "Drake",
  1867. parents: ["dragon"]
  1868. },
  1869. "okapi": {
  1870. name: "Okapi",
  1871. parents: ["giraffe"]
  1872. },
  1873. "arctic-hare": {
  1874. name: "Arctic Hare",
  1875. parents: ["hare"]
  1876. },
  1877. "hare": {
  1878. name: "Hare",
  1879. parents: ["leporidae"]
  1880. },
  1881. "leporidae": {
  1882. name: "Leporidae",
  1883. parents: ["mammal"]
  1884. },
  1885. "leopard-gecko": {
  1886. name: "Leopard Gecko",
  1887. parents: ["gecko"]
  1888. },
  1889. "dreamspawn": {
  1890. name: "Dreamspawn",
  1891. parents: ["illusion"]
  1892. },
  1893. "illusion": {
  1894. name: "Illusion",
  1895. parents: []
  1896. },
  1897. "purrloin": {
  1898. name: "Purrloin",
  1899. parents: ["cat", "pokemon"]
  1900. },
  1901. "noivern": {
  1902. name: "Noivern",
  1903. parents: ["bat", "dragon", "pokemon"]
  1904. },
  1905. "hedgehog": {
  1906. name: "Hedgehog",
  1907. parents: ["mammal"]
  1908. },
  1909. "liger": {
  1910. name: "Liger",
  1911. parents: ["lion", "tiger", "hybrid"]
  1912. },
  1913. "hybrid": {
  1914. name: "Hybrid",
  1915. parents: []
  1916. },
  1917. "drider": {
  1918. name: "Drider",
  1919. parents: ["spider"]
  1920. },
  1921. "sabresune": {
  1922. name: "Sabresune",
  1923. parents: ["kitsune", "sabertooth-tiger"]
  1924. },
  1925. "ditto": {
  1926. name: "Ditto",
  1927. parents: ["pokemon", "goo"]
  1928. },
  1929. "amogus": {
  1930. name: "Amogus",
  1931. parents: ["deity"]
  1932. },
  1933. "ferret": {
  1934. name: "Ferret",
  1935. parents: ["mustelid"]
  1936. },
  1937. "guinea-pig": {
  1938. name: "Guinea Pig",
  1939. parents: ["rodent"]
  1940. },
  1941. "viper": {
  1942. name: "Viper",
  1943. parents: ["snake"]
  1944. },
  1945. "cinderace": {
  1946. name: "Cinderace",
  1947. parents: ["pokemon", "rabbit"]
  1948. },
  1949. "caudin": {
  1950. name: "Caudin",
  1951. parents: ["dragon"]
  1952. },
  1953. "red-winged-blackbird": {
  1954. name: "Red-Winged Blackbird",
  1955. parents: ["avian"]
  1956. },
  1957. "hooded-wheater": {
  1958. name: "Hooded Wheater",
  1959. parents: ["passerine"]
  1960. },
  1961. "passerine": {
  1962. name: "Passerine",
  1963. parents: ["avian"]
  1964. },
  1965. "gieeg": {
  1966. name: "Gieeg",
  1967. parents: ["alien"]
  1968. },
  1969. "ringtail": {
  1970. name: "Ringtail",
  1971. parents: ["raccoon"]
  1972. },
  1973. "hisuian-zoroark": {
  1974. name: "Hisuian Zoroark",
  1975. parents: ["zoroark", "hisuian"]
  1976. },
  1977. "hisuian": {
  1978. name: "Hisuian",
  1979. parents: ["regional-pokemon"]
  1980. },
  1981. "regional-pokemon": {
  1982. name: "Regional Pokemon",
  1983. parents: ["pokemon"]
  1984. },
  1985. "cybeast": {
  1986. name: "Cybeast",
  1987. parents: ["computer-virus"]
  1988. },
  1989. "javira-dragon": {
  1990. name: "Javira Dragon",
  1991. parents: ["dragon"]
  1992. },
  1993. "koopew": {
  1994. name: "Koopew",
  1995. parents: ["dragon", "alien"]
  1996. },
  1997. "nevrean": {
  1998. name: "Nevrean",
  1999. parents: ["avian", "vilous"]
  2000. },
  2001. "vilous": {
  2002. name: "Vilous Species",
  2003. parents: []
  2004. },
  2005. "titanoboa": {
  2006. name: "Titanoboa",
  2007. parents: ["snake"]
  2008. },
  2009. "raichu": {
  2010. name: "Raichu",
  2011. parents: ["pikachu"]
  2012. },
  2013. "taur": {
  2014. name: "Taur",
  2015. parents: []
  2016. },
  2017. "continental-giant-rabbit": {
  2018. name: "Continental Giant Rabbit",
  2019. parents: ["rabbit"]
  2020. },
  2021. "demigryph": {
  2022. name: "Demigryph",
  2023. parents: ["lion", "eagle"]
  2024. },
  2025. "bald-eagle": {
  2026. name: "Bald Eagle",
  2027. parents: ["eagle"]
  2028. },
  2029. "kestrel": {
  2030. name: "Kestrel",
  2031. parents: ["falcon"]
  2032. },
  2033. "mockingbird": {
  2034. name: "Mockingbird",
  2035. parents: ["songbird"]
  2036. },
  2037. "songbird": {
  2038. name: "Songbird",
  2039. parents: ["avian"]
  2040. },
  2041. "bird-of-prey": {
  2042. name: "Bird of Prey",
  2043. parents: ["avian"]
  2044. },
  2045. "marowak": {
  2046. name: "Marowak",
  2047. parents: ["pokemon", "reptile"]
  2048. },
  2049. "joltik": {
  2050. name: "Joltik",
  2051. parents: ["pokemon", "insect"]
  2052. },
  2053. "mink": {
  2054. name: "Mink",
  2055. parents: ["mustelid"]
  2056. },
  2057. "sandcat": {
  2058. name: "Sandcat",
  2059. parents: ["cat"]
  2060. },
  2061. "hrothgar": {
  2062. name: "Hrothgar",
  2063. parents: ["cat"]
  2064. },
  2065. "garchomp": {
  2066. name: "Garchomp",
  2067. parents: ["dragon", "pokemon"]
  2068. },
  2069. "nargacuga": {
  2070. name: "Nargacuga",
  2071. parents: ["monster-hunter"]
  2072. },
  2073. "sable": {
  2074. name: "Sable",
  2075. parents: ["marten"]
  2076. },
  2077. "deino": {
  2078. name: "Deino",
  2079. parents: ["pokemon", "dinosaur"]
  2080. },
  2081. "housecat": {
  2082. name: "Housecat",
  2083. parents: ["cat"]
  2084. },
  2085. "bombay-cat": {
  2086. name: "Bombay Cat",
  2087. parents: ["housecat"]
  2088. },
  2089. "maine-coon": {
  2090. name: "Maine Coon",
  2091. parents: ["housecat"]
  2092. },
  2093. "coelacanth": {
  2094. name: "Coelacanth",
  2095. parents: ["fish"]
  2096. },
  2097. "silvally": {
  2098. name: "Silvally",
  2099. parents: ["legendary-pokemon"]
  2100. },
  2101. "legendary-pokemon": {
  2102. name: "Legendary Pokemon",
  2103. parents: ["pokemon"]
  2104. },
  2105. "great-maccao": {
  2106. name: "Great Maccao",
  2107. parents: ["monster-hunter", "raptor"]
  2108. },
  2109. "shapeshifter": {
  2110. name: "shapeshifter",
  2111. parents: []
  2112. },
  2113. "obstagoon": {
  2114. name: "Obstagoon",
  2115. parents: ["zigzagoon"]
  2116. },
  2117. "thomsons-gazelle": {
  2118. name: "Thomsons Gazelle",
  2119. parents: ["gazelle"]
  2120. },
  2121. "gazelle": {
  2122. name: "Gazelle",
  2123. parents: ["antelope"]
  2124. },
  2125. "monkey": {
  2126. name: "Monkey",
  2127. parents: ["mammal"]
  2128. },
  2129. "serval": {
  2130. name: "Serval",
  2131. parents: ["cat"]
  2132. },
  2133. "swampert": {
  2134. name: "Swampert",
  2135. parents: ["pokemon"]
  2136. },
  2137. "red-fox": {
  2138. name: "Red Fox",
  2139. parents: ["fox"]
  2140. },
  2141. "sliver": {
  2142. name: "Sliver",
  2143. parents: ["alien"]
  2144. },
  2145. "sergix": {
  2146. name: "Sergix",
  2147. parents: ["demon", "sergal", "phoenix"]
  2148. },
  2149. "behemoth": {
  2150. name: "Behemoth",
  2151. parents: ["monster", "dragon", "final-fantasy"]
  2152. },
  2153. "final-fantasy": {
  2154. name: "Final Fantasy",
  2155. parents: ["video-games"]
  2156. },
  2157. "video-games": {
  2158. name: "Video Games",
  2159. parents: []
  2160. },
  2161. "eastern-cottontail-rabbit": {
  2162. name: "Eastern Cottontail Rabbit",
  2163. parents: ["rabbit"]
  2164. },
  2165. "thresher-shark": {
  2166. name: "Thresher Shark",
  2167. parents: ["shark"]
  2168. },
  2169. "ai": {
  2170. name: "AI",
  2171. parents: []
  2172. },
  2173. "black-tip-reef-shark": {
  2174. name: "Black Tip Reef Shark",
  2175. parents: ["shark"]
  2176. },
  2177. "quetzalcoatlus-northropi": {
  2178. name: "Quetzalcoatlus Northropi",
  2179. parents: ["dinosaur"]
  2180. },
  2181. "snivy": {
  2182. name: "Snivy",
  2183. parents: ["pokemon", "snake"]
  2184. },
  2185. }
  2186. //species
  2187. function getSpeciesInfo(speciesList) {
  2188. let result = new Set();
  2189. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2190. result.add(entry)
  2191. });
  2192. return Array.from(result);
  2193. };
  2194. function getSpeciesInfoHelper(species) {
  2195. if (!speciesData[species]) {
  2196. console.warn(species + " doesn't exist");
  2197. return [];
  2198. }
  2199. if (speciesData[species].parents) {
  2200. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2201. } else {
  2202. return [species];
  2203. }
  2204. }
  2205. characterMakers.push(() => makeCharacter(
  2206. {
  2207. name: "Fen",
  2208. species: ["crux"],
  2209. description: {
  2210. title: "Bio",
  2211. text: "Very furry. Sheds on everything."
  2212. },
  2213. tags: [
  2214. "anthro",
  2215. "goo"
  2216. ]
  2217. },
  2218. {
  2219. front: {
  2220. height: math.unit(12, "feet"),
  2221. weight: math.unit(2400, "lb"),
  2222. preyCapacity: math.unit(1, "people"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/fen/front.svg",
  2226. extra: 1804/1562,
  2227. bottom: 205/2009
  2228. },
  2229. extraAttributes: {
  2230. pawSize: {
  2231. name: "Paw Size",
  2232. power: 2,
  2233. type: "area",
  2234. base: math.unit(0.35, "m^2")
  2235. }
  2236. }
  2237. },
  2238. diving: {
  2239. height: math.unit(4.9, "meters"),
  2240. weight: math.unit(2400, "lb"),
  2241. name: "Diving",
  2242. image: {
  2243. source: "./media/characters/fen/diving.svg"
  2244. }
  2245. },
  2246. sleeby: {
  2247. height: math.unit(3.45, "meters"),
  2248. weight: math.unit(2400, "lb"),
  2249. name: "Sleeby",
  2250. image: {
  2251. source: "./media/characters/fen/sleeby.svg"
  2252. }
  2253. },
  2254. goo: {
  2255. height: math.unit(12, "feet"),
  2256. weight: math.unit(3600, "lb"),
  2257. volume: math.unit(1000, "liters"),
  2258. preyCapacity: math.unit(6, "people"),
  2259. name: "Goo",
  2260. image: {
  2261. source: "./media/characters/fen/goo.svg",
  2262. extra: 1307/1071,
  2263. bottom: 134/1441
  2264. }
  2265. },
  2266. gooNsfw: {
  2267. height: math.unit(12, "feet"),
  2268. weight: math.unit(3750, "lb"),
  2269. volume: math.unit(1000, "liters"),
  2270. preyCapacity: math.unit(6, "people"),
  2271. name: "Goo (NSFW)",
  2272. image: {
  2273. source: "./media/characters/fen/goo-nsfw.svg",
  2274. extra: 1875/1734,
  2275. bottom: 122/1997
  2276. }
  2277. },
  2278. maw: {
  2279. height: math.unit(5.03, "feet"),
  2280. name: "Maw",
  2281. image: {
  2282. source: "./media/characters/fen/maw.svg"
  2283. }
  2284. },
  2285. gooCeiling: {
  2286. height: math.unit(6.6, "feet"),
  2287. weight: math.unit(3000, "lb"),
  2288. volume: math.unit(1000, "liters"),
  2289. preyCapacity: math.unit(6, "people"),
  2290. name: "Goo (Ceiling)",
  2291. image: {
  2292. source: "./media/characters/fen/goo-ceiling.svg"
  2293. }
  2294. },
  2295. paw: {
  2296. height: math.unit(3.77, "feet"),
  2297. name: "Paw",
  2298. image: {
  2299. source: "./media/characters/fen/paw.svg"
  2300. },
  2301. extraAttributes: {
  2302. "toeSize": {
  2303. name: "Toe Size",
  2304. power: 2,
  2305. type: "area",
  2306. base: math.unit(0.02875, "m^2")
  2307. },
  2308. "pawSize": {
  2309. name: "Paw Size",
  2310. power: 2,
  2311. type: "area",
  2312. base: math.unit(0.378, "m^2")
  2313. },
  2314. }
  2315. },
  2316. tail: {
  2317. height: math.unit(12.1, "feet"),
  2318. name: "Tail",
  2319. image: {
  2320. source: "./media/characters/fen/tail.svg"
  2321. }
  2322. },
  2323. tailFull: {
  2324. height: math.unit(12.1, "feet"),
  2325. name: "Full Tail",
  2326. image: {
  2327. source: "./media/characters/fen/tail-full.svg"
  2328. }
  2329. },
  2330. back: {
  2331. height: math.unit(12, "feet"),
  2332. weight: math.unit(2400, "lb"),
  2333. name: "Back",
  2334. image: {
  2335. source: "./media/characters/fen/back.svg",
  2336. },
  2337. info: {
  2338. description: {
  2339. mode: "append",
  2340. text: "\n\nHe is not currently looking at you."
  2341. }
  2342. }
  2343. },
  2344. full: {
  2345. height: math.unit(1.85, "meter"),
  2346. weight: math.unit(3200, "lb"),
  2347. name: "Full",
  2348. image: {
  2349. source: "./media/characters/fen/full.svg",
  2350. extra: 1133/859,
  2351. bottom: 145/1278
  2352. },
  2353. info: {
  2354. description: {
  2355. mode: "append",
  2356. text: "\n\nMunch."
  2357. }
  2358. }
  2359. },
  2360. gooLounging: {
  2361. height: math.unit(4.53, "feet"),
  2362. weight: math.unit(3000, "lb"),
  2363. preyCapacity: math.unit(6, "people"),
  2364. name: "Goo (Lounging)",
  2365. image: {
  2366. source: "./media/characters/fen/goo-lounging.svg",
  2367. bottom: 116 / 613
  2368. }
  2369. },
  2370. lounging: {
  2371. height: math.unit(10.52, "feet"),
  2372. weight: math.unit(2400, "lb"),
  2373. name: "Lounging",
  2374. image: {
  2375. source: "./media/characters/fen/lounging.svg"
  2376. }
  2377. },
  2378. },
  2379. [
  2380. {
  2381. name: "Small",
  2382. height: math.unit(2.2428, "meter")
  2383. },
  2384. {
  2385. name: "Normal",
  2386. height: math.unit(12, "feet"),
  2387. default: true,
  2388. },
  2389. {
  2390. name: "Big",
  2391. height: math.unit(20, "feet")
  2392. },
  2393. {
  2394. name: "Minimacro",
  2395. height: math.unit(40, "feet"),
  2396. info: {
  2397. description: {
  2398. mode: "append",
  2399. text: "\n\nTOO DAMN BIG"
  2400. }
  2401. }
  2402. },
  2403. {
  2404. name: "Macro",
  2405. height: math.unit(100, "feet"),
  2406. info: {
  2407. description: {
  2408. mode: "append",
  2409. text: "\n\nTOO DAMN BIG"
  2410. }
  2411. }
  2412. },
  2413. {
  2414. name: "Megamacro",
  2415. height: math.unit(2, "miles")
  2416. },
  2417. {
  2418. name: "Gigamacro",
  2419. height: math.unit(10, "earths")
  2420. },
  2421. ]
  2422. ))
  2423. characterMakers.push(() => makeCharacter(
  2424. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2425. {
  2426. front: {
  2427. height: math.unit(183, "cm"),
  2428. weight: math.unit(80, "kg"),
  2429. name: "Front",
  2430. image: {
  2431. source: "./media/characters/sofia-fluttertail/front.svg",
  2432. bottom: 0.01,
  2433. extra: 2154 / 2081
  2434. }
  2435. },
  2436. frontAlt: {
  2437. height: math.unit(183, "cm"),
  2438. weight: math.unit(80, "kg"),
  2439. name: "Front (alt)",
  2440. image: {
  2441. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2442. }
  2443. },
  2444. back: {
  2445. height: math.unit(183, "cm"),
  2446. weight: math.unit(80, "kg"),
  2447. name: "Back",
  2448. image: {
  2449. source: "./media/characters/sofia-fluttertail/back.svg"
  2450. }
  2451. },
  2452. kneeling: {
  2453. height: math.unit(125, "cm"),
  2454. weight: math.unit(80, "kg"),
  2455. name: "Kneeling",
  2456. image: {
  2457. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2458. extra: 1033 / 977,
  2459. bottom: 23.7 / 1057
  2460. }
  2461. },
  2462. maw: {
  2463. height: math.unit(183 / 5, "cm"),
  2464. name: "Maw",
  2465. image: {
  2466. source: "./media/characters/sofia-fluttertail/maw.svg"
  2467. }
  2468. },
  2469. mawcloseup: {
  2470. height: math.unit(183 / 5 * 0.41, "cm"),
  2471. name: "Maw (Closeup)",
  2472. image: {
  2473. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2474. }
  2475. },
  2476. paws: {
  2477. height: math.unit(1.17, "feet"),
  2478. name: "Paws",
  2479. image: {
  2480. source: "./media/characters/sofia-fluttertail/paws.svg",
  2481. extra: 851 / 851,
  2482. bottom: 17 / 868
  2483. }
  2484. },
  2485. },
  2486. [
  2487. {
  2488. name: "Normal",
  2489. height: math.unit(1.83, "meter")
  2490. },
  2491. {
  2492. name: "Size Thief",
  2493. height: math.unit(18, "feet")
  2494. },
  2495. {
  2496. name: "50 Foot Collie",
  2497. height: math.unit(50, "feet")
  2498. },
  2499. {
  2500. name: "Macro",
  2501. height: math.unit(96, "feet"),
  2502. default: true
  2503. },
  2504. {
  2505. name: "Megamerger",
  2506. height: math.unit(650, "feet")
  2507. },
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2512. {
  2513. front: {
  2514. height: math.unit(7, "feet"),
  2515. weight: math.unit(100, "kg"),
  2516. name: "Front",
  2517. image: {
  2518. source: "./media/characters/march/front.svg",
  2519. extra: 1992/1851,
  2520. bottom: 39/2031
  2521. }
  2522. },
  2523. foot: {
  2524. height: math.unit(0.9, "feet"),
  2525. name: "Foot",
  2526. image: {
  2527. source: "./media/characters/march/foot.svg"
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(7.9, "feet")
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(220, "meters")
  2539. },
  2540. {
  2541. name: "Megamacro",
  2542. height: math.unit(2.98, "km"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Gigamacro",
  2547. height: math.unit(15963, "km")
  2548. },
  2549. {
  2550. name: "Teramacro",
  2551. height: math.unit(2980000000, "km")
  2552. },
  2553. {
  2554. name: "Examacro",
  2555. height: math.unit(250, "parsecs")
  2556. },
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(6, "feet"),
  2564. weight: math.unit(60, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/noir/front.svg",
  2568. extra: 1,
  2569. bottom: 0.032
  2570. }
  2571. },
  2572. },
  2573. [
  2574. {
  2575. name: "Normal",
  2576. height: math.unit(6.6, "feet")
  2577. },
  2578. {
  2579. name: "Macro",
  2580. height: math.unit(500, "feet")
  2581. },
  2582. {
  2583. name: "Megamacro",
  2584. height: math.unit(2.5, "km"),
  2585. default: true
  2586. },
  2587. {
  2588. name: "Gigamacro",
  2589. height: math.unit(22500, "km")
  2590. },
  2591. {
  2592. name: "Teramacro",
  2593. height: math.unit(2500000000, "km")
  2594. },
  2595. {
  2596. name: "Examacro",
  2597. height: math.unit(200, "parsecs")
  2598. },
  2599. ]
  2600. ))
  2601. characterMakers.push(() => makeCharacter(
  2602. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2603. {
  2604. front: {
  2605. height: math.unit(7, "feet"),
  2606. weight: math.unit(100, "kg"),
  2607. name: "Front",
  2608. image: {
  2609. source: "./media/characters/okuri/front.svg",
  2610. extra: 739/665,
  2611. bottom: 39/778
  2612. }
  2613. },
  2614. back: {
  2615. height: math.unit(7, "feet"),
  2616. weight: math.unit(100, "kg"),
  2617. name: "Back",
  2618. image: {
  2619. source: "./media/characters/okuri/back.svg",
  2620. extra: 734/653,
  2621. bottom: 13/747
  2622. }
  2623. },
  2624. sitting: {
  2625. height: math.unit(2.95, "feet"),
  2626. weight: math.unit(100, "kg"),
  2627. name: "Sitting",
  2628. image: {
  2629. source: "./media/characters/okuri/sitting.svg",
  2630. extra: 370/318,
  2631. bottom: 99/469
  2632. }
  2633. },
  2634. },
  2635. [
  2636. {
  2637. name: "Smallest",
  2638. height: math.unit(5 + 2/12, "feet")
  2639. },
  2640. {
  2641. name: "Smaller",
  2642. height: math.unit(300, "feet")
  2643. },
  2644. {
  2645. name: "Small",
  2646. height: math.unit(1000, "feet")
  2647. },
  2648. {
  2649. name: "Macro",
  2650. height: math.unit(1, "mile")
  2651. },
  2652. {
  2653. name: "Mega Macro (Small)",
  2654. height: math.unit(20, "km")
  2655. },
  2656. {
  2657. name: "Mega Macro (Large)",
  2658. height: math.unit(600, "km")
  2659. },
  2660. {
  2661. name: "Giga Macro",
  2662. height: math.unit(10000, "km")
  2663. },
  2664. {
  2665. name: "Normal",
  2666. height: math.unit(577560, "km"),
  2667. default: true
  2668. },
  2669. {
  2670. name: "Large",
  2671. height: math.unit(4, "galaxies")
  2672. },
  2673. {
  2674. name: "Largest",
  2675. height: math.unit(15, "multiverses")
  2676. },
  2677. ]
  2678. ))
  2679. characterMakers.push(() => makeCharacter(
  2680. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2681. {
  2682. front: {
  2683. height: math.unit(7, "feet"),
  2684. weight: math.unit(100, "kg"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/manny/front.svg",
  2688. extra: 1,
  2689. bottom: 0.06
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(7, "feet"),
  2694. weight: math.unit(100, "kg"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/manny/back.svg",
  2698. extra: 1,
  2699. bottom: 0.014
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Normal",
  2706. height: math.unit(7, "feet"),
  2707. },
  2708. {
  2709. name: "Macro",
  2710. height: math.unit(78, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Macro+",
  2715. height: math.unit(300, "meters")
  2716. },
  2717. {
  2718. name: "Macro++",
  2719. height: math.unit(2400, "meters")
  2720. },
  2721. {
  2722. name: "Megamacro",
  2723. height: math.unit(5167, "meters")
  2724. },
  2725. {
  2726. name: "Gigamacro",
  2727. height: math.unit(41769, "miles")
  2728. },
  2729. ]
  2730. ))
  2731. characterMakers.push(() => makeCharacter(
  2732. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2733. {
  2734. front: {
  2735. height: math.unit(7, "feet"),
  2736. weight: math.unit(100, "kg"),
  2737. name: "Front",
  2738. image: {
  2739. source: "./media/characters/adake/front-1.svg"
  2740. }
  2741. },
  2742. frontAlt: {
  2743. height: math.unit(7, "feet"),
  2744. weight: math.unit(100, "kg"),
  2745. name: "Front (Alt)",
  2746. image: {
  2747. source: "./media/characters/adake/front-2.svg",
  2748. extra: 1,
  2749. bottom: 0.01
  2750. }
  2751. },
  2752. back: {
  2753. height: math.unit(7, "feet"),
  2754. weight: math.unit(100, "kg"),
  2755. name: "Back",
  2756. image: {
  2757. source: "./media/characters/adake/back.svg",
  2758. }
  2759. },
  2760. kneel: {
  2761. height: math.unit(5.385, "feet"),
  2762. weight: math.unit(100, "kg"),
  2763. name: "Kneeling",
  2764. image: {
  2765. source: "./media/characters/adake/kneel.svg",
  2766. bottom: 0.052
  2767. }
  2768. },
  2769. },
  2770. [
  2771. {
  2772. name: "Normal",
  2773. height: math.unit(7, "feet"),
  2774. },
  2775. {
  2776. name: "Macro",
  2777. height: math.unit(78, "feet"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Macro+",
  2782. height: math.unit(300, "meters")
  2783. },
  2784. {
  2785. name: "Macro++",
  2786. height: math.unit(2400, "meters")
  2787. },
  2788. {
  2789. name: "Megamacro",
  2790. height: math.unit(5167, "meters")
  2791. },
  2792. {
  2793. name: "Gigamacro",
  2794. height: math.unit(41769, "miles")
  2795. },
  2796. ]
  2797. ))
  2798. characterMakers.push(() => makeCharacter(
  2799. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2800. {
  2801. front: {
  2802. height: math.unit(1.65, "meters"),
  2803. weight: math.unit(50, "kg"),
  2804. name: "Front",
  2805. image: {
  2806. source: "./media/characters/elijah/front.svg",
  2807. extra: 858 / 830,
  2808. bottom: 95.5 / 953.8559
  2809. }
  2810. },
  2811. back: {
  2812. height: math.unit(1.65, "meters"),
  2813. weight: math.unit(50, "kg"),
  2814. name: "Back",
  2815. image: {
  2816. source: "./media/characters/elijah/back.svg",
  2817. extra: 895 / 850,
  2818. bottom: 5.3 / 897.956
  2819. }
  2820. },
  2821. frontNsfw: {
  2822. height: math.unit(1.65, "meters"),
  2823. weight: math.unit(50, "kg"),
  2824. name: "Front (NSFW)",
  2825. image: {
  2826. source: "./media/characters/elijah/front-nsfw.svg",
  2827. extra: 858 / 830,
  2828. bottom: 95.5 / 953.8559
  2829. }
  2830. },
  2831. backNsfw: {
  2832. height: math.unit(1.65, "meters"),
  2833. weight: math.unit(50, "kg"),
  2834. name: "Back (NSFW)",
  2835. image: {
  2836. source: "./media/characters/elijah/back-nsfw.svg",
  2837. extra: 895 / 850,
  2838. bottom: 5.3 / 897.956
  2839. }
  2840. },
  2841. dick: {
  2842. height: math.unit(1, "feet"),
  2843. name: "Dick",
  2844. image: {
  2845. source: "./media/characters/elijah/dick.svg"
  2846. }
  2847. },
  2848. beakOpen: {
  2849. height: math.unit(1.25, "feet"),
  2850. name: "Beak (Open)",
  2851. image: {
  2852. source: "./media/characters/elijah/beak-open.svg"
  2853. }
  2854. },
  2855. beakShut: {
  2856. height: math.unit(1.25, "feet"),
  2857. name: "Beak (Shut)",
  2858. image: {
  2859. source: "./media/characters/elijah/beak-shut.svg"
  2860. }
  2861. },
  2862. footFlexing: {
  2863. height: math.unit(1.61, "feet"),
  2864. name: "Foot (Flexing)",
  2865. image: {
  2866. source: "./media/characters/elijah/foot-flexing.svg"
  2867. }
  2868. },
  2869. footStepping: {
  2870. height: math.unit(1.44, "feet"),
  2871. name: "Foot (Stepping)",
  2872. image: {
  2873. source: "./media/characters/elijah/foot-stepping.svg"
  2874. }
  2875. },
  2876. plantigradeLeg: {
  2877. height: math.unit(2.34, "feet"),
  2878. name: "Plantigrade Leg",
  2879. image: {
  2880. source: "./media/characters/elijah/plantigrade-leg.svg"
  2881. }
  2882. },
  2883. plantigradeFootLeft: {
  2884. height: math.unit(0.9, "feet"),
  2885. name: "Plantigrade Foot (Left)",
  2886. image: {
  2887. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2888. }
  2889. },
  2890. plantigradeFootRight: {
  2891. height: math.unit(0.9, "feet"),
  2892. name: "Plantigrade Foot (Right)",
  2893. image: {
  2894. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2895. }
  2896. },
  2897. },
  2898. [
  2899. {
  2900. name: "Normal",
  2901. height: math.unit(1.65, "meters")
  2902. },
  2903. {
  2904. name: "Macro",
  2905. height: math.unit(55, "meters"),
  2906. default: true
  2907. },
  2908. {
  2909. name: "Macro+",
  2910. height: math.unit(105, "meters")
  2911. },
  2912. ]
  2913. ))
  2914. characterMakers.push(() => makeCharacter(
  2915. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2916. {
  2917. front: {
  2918. height: math.unit(7 + 2/12, "feet"),
  2919. weight: math.unit(320, "kg"),
  2920. preyCapacity: math.unit(0.276549935, "people"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/rai/front.svg",
  2924. extra: 1802/1696,
  2925. bottom: 68/1870
  2926. },
  2927. form: "anthro",
  2928. default: true
  2929. },
  2930. frontDressed: {
  2931. height: math.unit(7 + 2/12, "feet"),
  2932. weight: math.unit(320, "kg"),
  2933. preyCapacity: math.unit(0.276549935, "people"),
  2934. name: "Front (Dressed)",
  2935. image: {
  2936. source: "./media/characters/rai/front-dressed.svg",
  2937. extra: 1802/1696,
  2938. bottom: 68/1870
  2939. },
  2940. form: "anthro"
  2941. },
  2942. side: {
  2943. height: math.unit(7 + 2/12, "feet"),
  2944. weight: math.unit(320, "kg"),
  2945. preyCapacity: math.unit(0.276549935, "people"),
  2946. name: "Side",
  2947. image: {
  2948. source: "./media/characters/rai/side.svg",
  2949. extra: 1789/1710,
  2950. bottom: 115/1904
  2951. },
  2952. form: "anthro"
  2953. },
  2954. back: {
  2955. height: math.unit(7 + 2/12, "feet"),
  2956. weight: math.unit(320, "kg"),
  2957. preyCapacity: math.unit(0.276549935, "people"),
  2958. name: "Back",
  2959. image: {
  2960. source: "./media/characters/rai/back.svg",
  2961. extra: 1770/1707,
  2962. bottom: 28/1798
  2963. },
  2964. form: "anthro"
  2965. },
  2966. feral: {
  2967. height: math.unit(9.5, "feet"),
  2968. weight: math.unit(640, "kg"),
  2969. preyCapacity: math.unit(4, "people"),
  2970. name: "Feral",
  2971. image: {
  2972. source: "./media/characters/rai/feral.svg",
  2973. extra: 945/553,
  2974. bottom: 176/1121
  2975. },
  2976. form: "feral",
  2977. default: true
  2978. },
  2979. dragon: {
  2980. height: math.unit(23, "feet"),
  2981. weight: math.unit(50000, "lb"),
  2982. name: "Dragon",
  2983. image: {
  2984. source: "./media/characters/rai/dragon.svg",
  2985. extra: 2498 / 2030,
  2986. bottom: 85.2 / 2584
  2987. },
  2988. form: "dragon",
  2989. default: true
  2990. },
  2991. maw: {
  2992. height: math.unit(1.69, "feet"),
  2993. name: "Maw",
  2994. image: {
  2995. source: "./media/characters/rai/maw.svg"
  2996. },
  2997. form: "anthro"
  2998. },
  2999. },
  3000. [
  3001. {
  3002. name: "Normal",
  3003. height: math.unit(7 + 2/12, "feet"),
  3004. form: "anthro"
  3005. },
  3006. {
  3007. name: "Big",
  3008. height: math.unit(11, "feet"),
  3009. form: "anthro"
  3010. },
  3011. {
  3012. name: "Minimacro",
  3013. height: math.unit(77, "feet"),
  3014. form: "anthro"
  3015. },
  3016. {
  3017. name: "Macro",
  3018. height: math.unit(302, "feet"),
  3019. default: true,
  3020. form: "anthro"
  3021. },
  3022. {
  3023. name: "Normal",
  3024. height: math.unit(9.5, "feet"),
  3025. form: "feral",
  3026. default: true
  3027. },
  3028. {
  3029. name: "Normal",
  3030. height: math.unit(23, "feet"),
  3031. form: "dragon",
  3032. default: true
  3033. }
  3034. ],
  3035. {
  3036. "anthro": {
  3037. name: "Anthro",
  3038. default: true
  3039. },
  3040. "feral": {
  3041. name: "Feral",
  3042. },
  3043. "dragon": {
  3044. name: "Dragon",
  3045. },
  3046. }
  3047. ))
  3048. characterMakers.push(() => makeCharacter(
  3049. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3050. {
  3051. frontDressed: {
  3052. height: math.unit(216, "feet"),
  3053. weight: math.unit(7000000, "lb"),
  3054. preyCapacity: math.unit(1321, "people"),
  3055. name: "Front (Dressed)",
  3056. image: {
  3057. source: "./media/characters/jazzy/front-dressed.svg",
  3058. extra: 2738 / 2651,
  3059. bottom: 41.8 / 2786
  3060. }
  3061. },
  3062. backDressed: {
  3063. height: math.unit(216, "feet"),
  3064. weight: math.unit(7000000, "lb"),
  3065. preyCapacity: math.unit(1321, "people"),
  3066. name: "Back (Dressed)",
  3067. image: {
  3068. source: "./media/characters/jazzy/back-dressed.svg",
  3069. extra: 2775 / 2673,
  3070. bottom: 36.8 / 2817
  3071. }
  3072. },
  3073. front: {
  3074. height: math.unit(216, "feet"),
  3075. weight: math.unit(7000000, "lb"),
  3076. preyCapacity: math.unit(1321, "people"),
  3077. name: "Front",
  3078. image: {
  3079. source: "./media/characters/jazzy/front.svg",
  3080. extra: 2738 / 2651,
  3081. bottom: 41.8 / 2786
  3082. }
  3083. },
  3084. back: {
  3085. height: math.unit(216, "feet"),
  3086. weight: math.unit(7000000, "lb"),
  3087. preyCapacity: math.unit(1321, "people"),
  3088. name: "Back",
  3089. image: {
  3090. source: "./media/characters/jazzy/back.svg",
  3091. extra: 2775 / 2673,
  3092. bottom: 36.8 / 2817
  3093. }
  3094. },
  3095. maw: {
  3096. height: math.unit(20, "feet"),
  3097. name: "Maw",
  3098. image: {
  3099. source: "./media/characters/jazzy/maw.svg"
  3100. }
  3101. },
  3102. paws: {
  3103. height: math.unit(27.5, "feet"),
  3104. name: "Paws",
  3105. image: {
  3106. source: "./media/characters/jazzy/paws.svg"
  3107. }
  3108. },
  3109. eye: {
  3110. height: math.unit(4.4, "feet"),
  3111. name: "Eye",
  3112. image: {
  3113. source: "./media/characters/jazzy/eye.svg"
  3114. }
  3115. },
  3116. droneOffense: {
  3117. height: math.unit(9.5, "inches"),
  3118. name: "Drone (Offense)",
  3119. image: {
  3120. source: "./media/characters/jazzy/drone-offense.svg"
  3121. }
  3122. },
  3123. droneRecon: {
  3124. height: math.unit(9.5, "inches"),
  3125. name: "Drone (Recon)",
  3126. image: {
  3127. source: "./media/characters/jazzy/drone-recon.svg"
  3128. }
  3129. },
  3130. droneDefense: {
  3131. height: math.unit(9.5, "inches"),
  3132. name: "Drone (Defense)",
  3133. image: {
  3134. source: "./media/characters/jazzy/drone-defense.svg"
  3135. }
  3136. },
  3137. },
  3138. [
  3139. {
  3140. name: "Macro",
  3141. height: math.unit(216, "feet"),
  3142. default: true
  3143. },
  3144. ]
  3145. ))
  3146. characterMakers.push(() => makeCharacter(
  3147. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3148. {
  3149. front: {
  3150. height: math.unit(9 + 6/12, "feet"),
  3151. weight: math.unit(700, "lb"),
  3152. name: "Front",
  3153. image: {
  3154. source: "./media/characters/flamm/front.svg",
  3155. extra: 1736/1596,
  3156. bottom: 93/1829
  3157. }
  3158. },
  3159. buff: {
  3160. height: math.unit(9 + 6/12, "feet"),
  3161. weight: math.unit(950, "lb"),
  3162. name: "Buff",
  3163. image: {
  3164. source: "./media/characters/flamm/buff.svg",
  3165. extra: 3018/2874,
  3166. bottom: 221/3239
  3167. }
  3168. },
  3169. },
  3170. [
  3171. {
  3172. name: "Normal",
  3173. height: math.unit(9.5, "feet")
  3174. },
  3175. {
  3176. name: "Macro",
  3177. height: math.unit(200, "feet"),
  3178. default: true
  3179. },
  3180. ]
  3181. ))
  3182. characterMakers.push(() => makeCharacter(
  3183. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3184. {
  3185. front: {
  3186. height: math.unit(5 + 3/12, "feet"),
  3187. weight: math.unit(60, "kg"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/zephiro/front.svg",
  3191. extra: 1873/1761,
  3192. bottom: 147/2020
  3193. }
  3194. },
  3195. side: {
  3196. height: math.unit(5 + 3/12, "feet"),
  3197. weight: math.unit(60, "kg"),
  3198. name: "Side",
  3199. image: {
  3200. source: "./media/characters/zephiro/side.svg",
  3201. extra: 1929/1827,
  3202. bottom: 65/1994
  3203. }
  3204. },
  3205. back: {
  3206. height: math.unit(5 + 3/12, "feet"),
  3207. weight: math.unit(60, "kg"),
  3208. name: "Back",
  3209. image: {
  3210. source: "./media/characters/zephiro/back.svg",
  3211. extra: 1926/1816,
  3212. bottom: 41/1967
  3213. }
  3214. },
  3215. hand: {
  3216. height: math.unit(0.68, "feet"),
  3217. name: "Hand",
  3218. image: {
  3219. source: "./media/characters/zephiro/hand.svg"
  3220. }
  3221. },
  3222. paw: {
  3223. height: math.unit(1, "feet"),
  3224. name: "Paw",
  3225. image: {
  3226. source: "./media/characters/zephiro/paw.svg"
  3227. }
  3228. },
  3229. beans: {
  3230. height: math.unit(0.93, "feet"),
  3231. name: "Beans",
  3232. image: {
  3233. source: "./media/characters/zephiro/beans.svg"
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Micro",
  3240. height: math.unit(3, "inches")
  3241. },
  3242. {
  3243. name: "Normal",
  3244. height: math.unit(5 + 3 / 12, "feet"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Macro",
  3249. height: math.unit(118, "feet")
  3250. },
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3255. {
  3256. front: {
  3257. height: math.unit(5, "feet"),
  3258. weight: math.unit(90, "kg"),
  3259. preyCapacity: math.unit(14, "people"),
  3260. name: "Front",
  3261. image: {
  3262. source: "./media/characters/fory/front.svg",
  3263. extra: 2862 / 2674,
  3264. bottom: 180 / 3043.8
  3265. },
  3266. form: "weaselbun",
  3267. default: true,
  3268. extraAttributes: {
  3269. "pawSize": {
  3270. name: "Paw Size",
  3271. power: 2,
  3272. type: "area",
  3273. base: math.unit(0.1596, "m^2")
  3274. },
  3275. "pawLength": {
  3276. name: "Paw Length",
  3277. power: 1,
  3278. type: "length",
  3279. base: math.unit(0.7, "m")
  3280. }
  3281. }
  3282. },
  3283. back: {
  3284. height: math.unit(5, "feet"),
  3285. weight: math.unit(90, "kg"),
  3286. preyCapacity: math.unit(14, "people"),
  3287. name: "Back",
  3288. image: {
  3289. source: "./media/characters/fory/back.svg",
  3290. extra: 1790/1672,
  3291. bottom: 84/1874
  3292. },
  3293. form: "weaselbun",
  3294. extraAttributes: {
  3295. "pawSize": {
  3296. name: "Paw Size",
  3297. power: 2,
  3298. type: "area",
  3299. base: math.unit(0.1596, "m^2")
  3300. },
  3301. "pawLength": {
  3302. name: "Paw Length",
  3303. power: 1,
  3304. type: "length",
  3305. base: math.unit(0.7, "m")
  3306. }
  3307. }
  3308. },
  3309. paw: {
  3310. height: math.unit(2.14, "feet"),
  3311. name: "Paw",
  3312. image: {
  3313. source: "./media/characters/fory/paw.svg"
  3314. },
  3315. form: "weaselbun",
  3316. extraAttributes: {
  3317. "pawSize": {
  3318. name: "Paw Size",
  3319. power: 2,
  3320. type: "area",
  3321. base: math.unit(0.1596, "m^2")
  3322. },
  3323. "pawLength": {
  3324. name: "Paw Length",
  3325. power: 1,
  3326. type: "length",
  3327. base: math.unit(0.48, "m")
  3328. }
  3329. }
  3330. },
  3331. bunBack: {
  3332. height: math.unit(3, "feet"),
  3333. weight: math.unit(20, "kg"),
  3334. preyCapacity: math.unit(3, "people"),
  3335. name: "Back",
  3336. image: {
  3337. source: "./media/characters/fory/bun-back.svg",
  3338. extra: 1749/1564,
  3339. bottom: 246/1995
  3340. },
  3341. form: "bun",
  3342. default: true,
  3343. extraAttributes: {
  3344. "pawSize": {
  3345. name: "Paw Size",
  3346. power: 2,
  3347. type: "area",
  3348. base: math.unit(0.072, "m^2")
  3349. },
  3350. "pawLength": {
  3351. name: "Paw Length",
  3352. power: 1,
  3353. type: "length",
  3354. base: math.unit(0.45, "m")
  3355. }
  3356. }
  3357. },
  3358. },
  3359. [
  3360. {
  3361. name: "Normal",
  3362. height: math.unit(5, "feet"),
  3363. form: "weaselbun"
  3364. },
  3365. {
  3366. name: "Macro",
  3367. height: math.unit(50, "feet"),
  3368. default: true,
  3369. form: "weaselbun"
  3370. },
  3371. {
  3372. name: "Megamacro",
  3373. height: math.unit(10, "miles"),
  3374. form: "weaselbun"
  3375. },
  3376. {
  3377. name: "Gigamacro",
  3378. height: math.unit(5, "earths"),
  3379. form: "weaselbun"
  3380. },
  3381. {
  3382. name: "Normal",
  3383. height: math.unit(3, "feet"),
  3384. default: true,
  3385. form: "bun"
  3386. },
  3387. {
  3388. name: "Fun-Size",
  3389. height: math.unit(12, "feet"),
  3390. form: "bun"
  3391. },
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(100, "feet"),
  3395. form: "bun"
  3396. },
  3397. {
  3398. name: "Planetary",
  3399. height: math.unit(3, "earths"),
  3400. form: "bun"
  3401. },
  3402. ],
  3403. {
  3404. "weaselbun": {
  3405. name: "Weaselbun",
  3406. default: true
  3407. },
  3408. "bun": {
  3409. name: "Bun",
  3410. },
  3411. }
  3412. ))
  3413. characterMakers.push(() => makeCharacter(
  3414. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3415. {
  3416. front: {
  3417. height: math.unit(7, "feet"),
  3418. weight: math.unit(90, "kg"),
  3419. name: "Front",
  3420. image: {
  3421. source: "./media/characters/kurrikage/front.svg",
  3422. extra: 1845/1733,
  3423. bottom: 119/1964
  3424. }
  3425. },
  3426. back: {
  3427. height: math.unit(7, "feet"),
  3428. weight: math.unit(90, "kg"),
  3429. name: "Back",
  3430. image: {
  3431. source: "./media/characters/kurrikage/back.svg",
  3432. extra: 1790/1677,
  3433. bottom: 61/1851
  3434. }
  3435. },
  3436. dressed: {
  3437. height: math.unit(7, "feet"),
  3438. weight: math.unit(90, "kg"),
  3439. name: "Dressed",
  3440. image: {
  3441. source: "./media/characters/kurrikage/dressed.svg",
  3442. extra: 1845/1733,
  3443. bottom: 119/1964
  3444. }
  3445. },
  3446. foot: {
  3447. height: math.unit(1.5, "feet"),
  3448. name: "Foot",
  3449. image: {
  3450. source: "./media/characters/kurrikage/foot.svg"
  3451. }
  3452. },
  3453. staff: {
  3454. height: math.unit(6.7, "feet"),
  3455. name: "Staff",
  3456. image: {
  3457. source: "./media/characters/kurrikage/staff.svg"
  3458. }
  3459. },
  3460. peek: {
  3461. height: math.unit(1.05, "feet"),
  3462. name: "Peeking",
  3463. image: {
  3464. source: "./media/characters/kurrikage/peek.svg",
  3465. bottom: 0.08
  3466. }
  3467. },
  3468. },
  3469. [
  3470. {
  3471. name: "Normal",
  3472. height: math.unit(12, "feet"),
  3473. default: true
  3474. },
  3475. {
  3476. name: "Big",
  3477. height: math.unit(20, "feet")
  3478. },
  3479. {
  3480. name: "Macro",
  3481. height: math.unit(500, "feet")
  3482. },
  3483. {
  3484. name: "Megamacro",
  3485. height: math.unit(20, "miles")
  3486. },
  3487. ]
  3488. ))
  3489. characterMakers.push(() => makeCharacter(
  3490. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3491. {
  3492. front: {
  3493. height: math.unit(6, "feet"),
  3494. weight: math.unit(75, "kg"),
  3495. name: "Front",
  3496. image: {
  3497. source: "./media/characters/shingo/front.svg",
  3498. extra: 1900/1825,
  3499. bottom: 82/1982
  3500. }
  3501. },
  3502. side: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(75, "kg"),
  3505. name: "Side",
  3506. image: {
  3507. source: "./media/characters/shingo/side.svg",
  3508. extra: 1930/1865,
  3509. bottom: 16/1946
  3510. }
  3511. },
  3512. back: {
  3513. height: math.unit(6, "feet"),
  3514. weight: math.unit(75, "kg"),
  3515. name: "Back",
  3516. image: {
  3517. source: "./media/characters/shingo/back.svg",
  3518. extra: 1922/1852,
  3519. bottom: 16/1938
  3520. }
  3521. },
  3522. frontDressed: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(150, "lb"),
  3525. name: "Front-dressed",
  3526. image: {
  3527. source: "./media/characters/shingo/front-dressed.svg",
  3528. extra: 1900/1825,
  3529. bottom: 82/1982
  3530. }
  3531. },
  3532. paw: {
  3533. height: math.unit(1.29, "feet"),
  3534. name: "Paw",
  3535. image: {
  3536. source: "./media/characters/shingo/paw.svg"
  3537. }
  3538. },
  3539. hand: {
  3540. height: math.unit(1.07, "feet"),
  3541. name: "Hand",
  3542. image: {
  3543. source: "./media/characters/shingo/hand.svg"
  3544. }
  3545. },
  3546. frontAlt: {
  3547. height: math.unit(6, "feet"),
  3548. weight: math.unit(75, "kg"),
  3549. name: "Front (Alt)",
  3550. image: {
  3551. source: "./media/characters/shingo/front-alt.svg",
  3552. extra: 3511 / 3338,
  3553. bottom: 0.005
  3554. }
  3555. },
  3556. frontAlt2: {
  3557. height: math.unit(6, "feet"),
  3558. weight: math.unit(75, "kg"),
  3559. name: "Front (Alt 2)",
  3560. image: {
  3561. source: "./media/characters/shingo/front-alt-2.svg",
  3562. extra: 706/681,
  3563. bottom: 11/717
  3564. }
  3565. },
  3566. pawAlt: {
  3567. height: math.unit(1, "feet"),
  3568. name: "Paw (Alt)",
  3569. image: {
  3570. source: "./media/characters/shingo/paw-alt.svg"
  3571. }
  3572. },
  3573. },
  3574. [
  3575. {
  3576. name: "Micro",
  3577. height: math.unit(4, "inches")
  3578. },
  3579. {
  3580. name: "Normal",
  3581. height: math.unit(6, "feet"),
  3582. default: true
  3583. },
  3584. {
  3585. name: "Macro",
  3586. height: math.unit(108, "feet")
  3587. },
  3588. {
  3589. name: "Macro+",
  3590. height: math.unit(1500, "feet")
  3591. },
  3592. ]
  3593. ))
  3594. characterMakers.push(() => makeCharacter(
  3595. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3596. {
  3597. side: {
  3598. height: math.unit(6, "feet"),
  3599. weight: math.unit(75, "kg"),
  3600. name: "Side",
  3601. image: {
  3602. source: "./media/characters/aigey/side.svg"
  3603. }
  3604. },
  3605. },
  3606. [
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(200, "feet"),
  3610. default: true
  3611. },
  3612. {
  3613. name: "Megamacro",
  3614. height: math.unit(100, "miles")
  3615. },
  3616. ]
  3617. )
  3618. )
  3619. characterMakers.push(() => makeCharacter(
  3620. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3621. {
  3622. front: {
  3623. height: math.unit(5 + 5 / 12, "feet"),
  3624. weight: math.unit(75, "kg"),
  3625. name: "Front",
  3626. image: {
  3627. source: "./media/characters/natasha/front.svg",
  3628. extra: 859 / 824,
  3629. bottom: 23 / 879.6
  3630. }
  3631. },
  3632. frontNsfw: {
  3633. height: math.unit(5 + 5 / 12, "feet"),
  3634. weight: math.unit(75, "kg"),
  3635. name: "Front (NSFW)",
  3636. image: {
  3637. source: "./media/characters/natasha/front-nsfw.svg",
  3638. extra: 859 / 824,
  3639. bottom: 23 / 879.6
  3640. }
  3641. },
  3642. frontErect: {
  3643. height: math.unit(5 + 5 / 12, "feet"),
  3644. weight: math.unit(75, "kg"),
  3645. name: "Front (Erect)",
  3646. image: {
  3647. source: "./media/characters/natasha/front-erect.svg",
  3648. extra: 859 / 824,
  3649. bottom: 23 / 879.6
  3650. }
  3651. },
  3652. back: {
  3653. height: math.unit(5 + 5 / 12, "feet"),
  3654. weight: math.unit(75, "kg"),
  3655. name: "Back",
  3656. image: {
  3657. source: "./media/characters/natasha/back.svg",
  3658. extra: 887.9 / 852.6,
  3659. bottom: 9.7 / 896.4
  3660. }
  3661. },
  3662. backAlt: {
  3663. height: math.unit(5 + 5 / 12, "feet"),
  3664. weight: math.unit(75, "kg"),
  3665. name: "Back (Alt)",
  3666. image: {
  3667. source: "./media/characters/natasha/back-alt.svg",
  3668. extra: 1236.7 / 1192,
  3669. bottom: 22.3 / 1258.2
  3670. }
  3671. },
  3672. dick: {
  3673. height: math.unit(1.772, "feet"),
  3674. name: "Dick",
  3675. image: {
  3676. source: "./media/characters/natasha/dick.svg"
  3677. }
  3678. },
  3679. paw: {
  3680. height: math.unit(0.250, "meters"),
  3681. name: "Paw",
  3682. image: {
  3683. source: "./media/characters/natasha/paw.svg"
  3684. },
  3685. extraAttributes: {
  3686. "toeSize": {
  3687. name: "Toe Size",
  3688. power: 2,
  3689. type: "area",
  3690. base: math.unit(0.0024, "m^2")
  3691. },
  3692. "padSize": {
  3693. name: "Pad Size",
  3694. power: 2,
  3695. type: "area",
  3696. base: math.unit(0.00889, "m^2")
  3697. },
  3698. "pawSize": {
  3699. name: "Paw Size",
  3700. power: 2,
  3701. type: "area",
  3702. base: math.unit(0.023667, "m^2")
  3703. },
  3704. }
  3705. },
  3706. },
  3707. [
  3708. {
  3709. name: "Shortstack",
  3710. height: math.unit(3, "feet"),
  3711. default: true
  3712. },
  3713. {
  3714. name: "Normal",
  3715. height: math.unit(5 + 5 / 12, "feet")
  3716. },
  3717. {
  3718. name: "Large",
  3719. height: math.unit(12, "feet")
  3720. },
  3721. {
  3722. name: "Macro",
  3723. height: math.unit(100, "feet")
  3724. },
  3725. {
  3726. name: "Macro+",
  3727. height: math.unit(260, "feet")
  3728. },
  3729. {
  3730. name: "Macro++",
  3731. height: math.unit(1, "mile")
  3732. },
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3737. {
  3738. front: {
  3739. height: math.unit(6, "feet"),
  3740. weight: math.unit(75, "kg"),
  3741. name: "Front",
  3742. image: {
  3743. source: "./media/characters/malik/front.svg",
  3744. extra: 1750/1561,
  3745. bottom: 80/1830
  3746. },
  3747. extraAttributes: {
  3748. "toeSize": {
  3749. name: "Toe Size",
  3750. power: 2,
  3751. type: "area",
  3752. base: math.unit(0.0159, "m^2")
  3753. },
  3754. "pawSize": {
  3755. name: "Paw Size",
  3756. power: 2,
  3757. type: "area",
  3758. base: math.unit(0.09834, "m^2")
  3759. },
  3760. }
  3761. },
  3762. side: {
  3763. height: math.unit(6, "feet"),
  3764. weight: math.unit(75, "kg"),
  3765. name: "Side",
  3766. image: {
  3767. source: "./media/characters/malik/side.svg",
  3768. extra: 1802/1685,
  3769. bottom: 42/1844
  3770. },
  3771. extraAttributes: {
  3772. "toeSize": {
  3773. name: "Toe Size",
  3774. power: 2,
  3775. type: "area",
  3776. base: math.unit(0.0159, "m^2")
  3777. },
  3778. "pawSize": {
  3779. name: "Paw Size",
  3780. power: 2,
  3781. type: "area",
  3782. base: math.unit(0.09834, "m^2")
  3783. },
  3784. }
  3785. },
  3786. back: {
  3787. height: math.unit(6, "feet"),
  3788. weight: math.unit(75, "kg"),
  3789. name: "Back",
  3790. image: {
  3791. source: "./media/characters/malik/back.svg",
  3792. extra: 1803/1607,
  3793. bottom: 33/1836
  3794. },
  3795. extraAttributes: {
  3796. "toeSize": {
  3797. name: "Toe Size",
  3798. power: 2,
  3799. type: "area",
  3800. base: math.unit(0.0159, "m^2")
  3801. },
  3802. "pawSize": {
  3803. name: "Paw Size",
  3804. power: 2,
  3805. type: "area",
  3806. base: math.unit(0.09834, "m^2")
  3807. },
  3808. }
  3809. },
  3810. },
  3811. [
  3812. {
  3813. name: "Macro",
  3814. height: math.unit(156, "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Macro+",
  3819. height: math.unit(1188, "feet")
  3820. },
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(6, "feet"),
  3828. weight: math.unit(75, "kg"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/sefer/front.svg",
  3832. extra: 848 / 659,
  3833. bottom: 28.3 / 876.442
  3834. }
  3835. },
  3836. back: {
  3837. height: math.unit(6, "feet"),
  3838. weight: math.unit(75, "kg"),
  3839. name: "Back",
  3840. image: {
  3841. source: "./media/characters/sefer/back.svg",
  3842. extra: 864 / 695,
  3843. bottom: 10 / 871
  3844. }
  3845. },
  3846. frontDressed: {
  3847. height: math.unit(6, "feet"),
  3848. weight: math.unit(75, "kg"),
  3849. name: "Dressed",
  3850. image: {
  3851. source: "./media/characters/sefer/dressed.svg",
  3852. extra: 839 / 653,
  3853. bottom: 37.6 / 878
  3854. }
  3855. },
  3856. },
  3857. [
  3858. {
  3859. name: "Normal",
  3860. height: math.unit(6, "feet"),
  3861. default: true
  3862. },
  3863. {
  3864. name: "Big",
  3865. height: math.unit(8, "meters")
  3866. },
  3867. ]
  3868. ))
  3869. characterMakers.push(() => makeCharacter(
  3870. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3871. {
  3872. body: {
  3873. height: math.unit(2.2428, "meter"),
  3874. weight: math.unit(124.738, "kg"),
  3875. name: "Body",
  3876. image: {
  3877. extra: 1225 / 1050,
  3878. source: "./media/characters/north/front.svg"
  3879. }
  3880. }
  3881. },
  3882. [
  3883. {
  3884. name: "Micro",
  3885. height: math.unit(4, "inches")
  3886. },
  3887. {
  3888. name: "Macro",
  3889. height: math.unit(63, "meters")
  3890. },
  3891. {
  3892. name: "Megamacro",
  3893. height: math.unit(101, "miles"),
  3894. default: true
  3895. }
  3896. ]
  3897. ))
  3898. characterMakers.push(() => makeCharacter(
  3899. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3900. {
  3901. angled: {
  3902. height: math.unit(4, "meter"),
  3903. weight: math.unit(150, "kg"),
  3904. name: "Angled",
  3905. image: {
  3906. source: "./media/characters/talan/angled-sfw.svg",
  3907. bottom: 29 / 3734
  3908. }
  3909. },
  3910. angledNsfw: {
  3911. height: math.unit(4, "meter"),
  3912. weight: math.unit(150, "kg"),
  3913. name: "Angled (NSFW)",
  3914. image: {
  3915. source: "./media/characters/talan/angled-nsfw.svg",
  3916. bottom: 29 / 3734
  3917. }
  3918. },
  3919. frontNsfw: {
  3920. height: math.unit(4, "meter"),
  3921. weight: math.unit(150, "kg"),
  3922. name: "Front (NSFW)",
  3923. image: {
  3924. source: "./media/characters/talan/front-nsfw.svg",
  3925. bottom: 29 / 3734
  3926. }
  3927. },
  3928. sideNsfw: {
  3929. height: math.unit(4, "meter"),
  3930. weight: math.unit(150, "kg"),
  3931. name: "Side (NSFW)",
  3932. image: {
  3933. source: "./media/characters/talan/side-nsfw.svg",
  3934. bottom: 29 / 3734
  3935. }
  3936. },
  3937. back: {
  3938. height: math.unit(4, "meter"),
  3939. weight: math.unit(150, "kg"),
  3940. name: "Back",
  3941. image: {
  3942. source: "./media/characters/talan/back.svg"
  3943. }
  3944. },
  3945. dickBottom: {
  3946. height: math.unit(0.621, "meter"),
  3947. name: "Dick (Bottom)",
  3948. image: {
  3949. source: "./media/characters/talan/dick-bottom.svg"
  3950. }
  3951. },
  3952. dickTop: {
  3953. height: math.unit(0.621, "meter"),
  3954. name: "Dick (Top)",
  3955. image: {
  3956. source: "./media/characters/talan/dick-top.svg"
  3957. }
  3958. },
  3959. dickSide: {
  3960. height: math.unit(0.305, "meter"),
  3961. name: "Dick (Side)",
  3962. image: {
  3963. source: "./media/characters/talan/dick-side.svg"
  3964. }
  3965. },
  3966. dickFront: {
  3967. height: math.unit(0.305, "meter"),
  3968. name: "Dick (Front)",
  3969. image: {
  3970. source: "./media/characters/talan/dick-front.svg"
  3971. }
  3972. },
  3973. },
  3974. [
  3975. {
  3976. name: "Normal",
  3977. height: math.unit(4, "meters")
  3978. },
  3979. {
  3980. name: "Macro",
  3981. height: math.unit(100, "meters")
  3982. },
  3983. {
  3984. name: "Megamacro",
  3985. height: math.unit(2, "miles"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Gigamacro",
  3990. height: math.unit(5000, "miles")
  3991. },
  3992. {
  3993. name: "Teramacro",
  3994. height: math.unit(100, "parsecs")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(2, "meter"),
  4003. weight: math.unit(90, "kg"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/gael'rathus/front.svg"
  4007. }
  4008. },
  4009. frontAlt: {
  4010. height: math.unit(2, "meter"),
  4011. weight: math.unit(90, "kg"),
  4012. name: "Front (alt)",
  4013. image: {
  4014. source: "./media/characters/gael'rathus/front-alt.svg"
  4015. }
  4016. },
  4017. frontAlt2: {
  4018. height: math.unit(2, "meter"),
  4019. weight: math.unit(90, "kg"),
  4020. name: "Front (alt 2)",
  4021. image: {
  4022. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4023. }
  4024. }
  4025. },
  4026. [
  4027. {
  4028. name: "Normal",
  4029. height: math.unit(9, "feet"),
  4030. default: true
  4031. },
  4032. {
  4033. name: "Large",
  4034. height: math.unit(25, "feet")
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(0.25, "miles")
  4039. },
  4040. {
  4041. name: "Megamacro",
  4042. height: math.unit(10, "miles")
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4048. {
  4049. side: {
  4050. height: math.unit(2, "meter"),
  4051. weight: math.unit(140, "kg"),
  4052. name: "Side",
  4053. image: {
  4054. source: "./media/characters/sosha/side.svg",
  4055. extra: 1170/1006,
  4056. bottom: 94/1264
  4057. }
  4058. },
  4059. maw: {
  4060. height: math.unit(2.87, "feet"),
  4061. name: "Maw",
  4062. image: {
  4063. source: "./media/characters/sosha/maw.svg",
  4064. extra: 966/865,
  4065. bottom: 0/966
  4066. }
  4067. },
  4068. cooch: {
  4069. height: math.unit(5.6, "feet"),
  4070. name: "Cooch",
  4071. image: {
  4072. source: "./media/characters/sosha/cooch.svg"
  4073. }
  4074. },
  4075. },
  4076. [
  4077. {
  4078. name: "Normal",
  4079. height: math.unit(12, "feet"),
  4080. default: true
  4081. }
  4082. ]
  4083. ))
  4084. characterMakers.push(() => makeCharacter(
  4085. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4086. {
  4087. side: {
  4088. height: math.unit(5 + 5 / 12, "feet"),
  4089. weight: math.unit(170, "kg"),
  4090. name: "Side",
  4091. image: {
  4092. source: "./media/characters/runnola/side.svg",
  4093. extra: 741 / 448,
  4094. bottom: 0.05
  4095. }
  4096. },
  4097. },
  4098. [
  4099. {
  4100. name: "Small",
  4101. height: math.unit(3, "feet")
  4102. },
  4103. {
  4104. name: "Normal",
  4105. height: math.unit(5 + 5 / 12, "feet"),
  4106. default: true
  4107. },
  4108. {
  4109. name: "Big",
  4110. height: math.unit(10, "feet")
  4111. },
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(2, "meter"),
  4119. weight: math.unit(50, "kg"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/kurribird/front.svg",
  4123. bottom: 0.015
  4124. }
  4125. },
  4126. frontAlt: {
  4127. height: math.unit(1.5, "meter"),
  4128. weight: math.unit(50, "kg"),
  4129. name: "Front (Alt)",
  4130. image: {
  4131. source: "./media/characters/kurribird/front-alt.svg",
  4132. extra: 1.45
  4133. }
  4134. },
  4135. },
  4136. [
  4137. {
  4138. name: "Normal",
  4139. height: math.unit(7, "feet")
  4140. },
  4141. {
  4142. name: "Big",
  4143. height: math.unit(12, "feet"),
  4144. default: true
  4145. },
  4146. {
  4147. name: "Macro",
  4148. height: math.unit(1500, "feet")
  4149. },
  4150. {
  4151. name: "Megamacro",
  4152. height: math.unit(2, "miles")
  4153. }
  4154. ]
  4155. ))
  4156. characterMakers.push(() => makeCharacter(
  4157. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4158. {
  4159. front: {
  4160. height: math.unit(2, "meter"),
  4161. weight: math.unit(80, "kg"),
  4162. name: "Front",
  4163. image: {
  4164. source: "./media/characters/elbial/front.svg",
  4165. extra: 1643 / 1556,
  4166. bottom: 60.2 / 1696
  4167. }
  4168. },
  4169. side: {
  4170. height: math.unit(2, "meter"),
  4171. weight: math.unit(80, "kg"),
  4172. name: "Side",
  4173. image: {
  4174. source: "./media/characters/elbial/side.svg",
  4175. extra: 1601/1528,
  4176. bottom: 97/1698
  4177. }
  4178. },
  4179. back: {
  4180. height: math.unit(2, "meter"),
  4181. weight: math.unit(80, "kg"),
  4182. name: "Back",
  4183. image: {
  4184. source: "./media/characters/elbial/back.svg",
  4185. extra: 1653/1569,
  4186. bottom: 20/1673
  4187. }
  4188. },
  4189. frontDressed: {
  4190. height: math.unit(2, "meter"),
  4191. weight: math.unit(80, "kg"),
  4192. name: "Front (Dressed)",
  4193. image: {
  4194. source: "./media/characters/elbial/front-dressed.svg",
  4195. extra: 1638/1569,
  4196. bottom: 70/1708
  4197. }
  4198. },
  4199. genitals: {
  4200. height: math.unit(2 / 3.367, "meter"),
  4201. name: "Genitals",
  4202. image: {
  4203. source: "./media/characters/elbial/genitals.svg"
  4204. }
  4205. },
  4206. },
  4207. [
  4208. {
  4209. name: "Large",
  4210. height: math.unit(100, "feet")
  4211. },
  4212. {
  4213. name: "Macro",
  4214. height: math.unit(500, "feet"),
  4215. default: true
  4216. },
  4217. {
  4218. name: "Megamacro",
  4219. height: math.unit(10, "miles")
  4220. },
  4221. {
  4222. name: "Gigamacro",
  4223. height: math.unit(25000, "miles")
  4224. },
  4225. {
  4226. name: "Full-Size",
  4227. height: math.unit(8000000, "gigaparsecs")
  4228. }
  4229. ]
  4230. ))
  4231. characterMakers.push(() => makeCharacter(
  4232. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4233. {
  4234. front: {
  4235. height: math.unit(2, "meter"),
  4236. weight: math.unit(60, "kg"),
  4237. name: "Front",
  4238. image: {
  4239. source: "./media/characters/noah/front.svg"
  4240. }
  4241. },
  4242. talons: {
  4243. height: math.unit(0.315, "meter"),
  4244. name: "Talons",
  4245. image: {
  4246. source: "./media/characters/noah/talons.svg"
  4247. }
  4248. }
  4249. },
  4250. [
  4251. {
  4252. name: "Large",
  4253. height: math.unit(50, "feet")
  4254. },
  4255. {
  4256. name: "Macro",
  4257. height: math.unit(750, "feet"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Megamacro",
  4262. height: math.unit(50, "miles")
  4263. },
  4264. {
  4265. name: "Gigamacro",
  4266. height: math.unit(100000, "miles")
  4267. },
  4268. {
  4269. name: "Full-Size",
  4270. height: math.unit(3000000000, "miles")
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4276. {
  4277. front: {
  4278. height: math.unit(2, "meter"),
  4279. weight: math.unit(80, "kg"),
  4280. name: "Front",
  4281. image: {
  4282. source: "./media/characters/natalya/front.svg"
  4283. }
  4284. },
  4285. back: {
  4286. height: math.unit(2, "meter"),
  4287. weight: math.unit(80, "kg"),
  4288. name: "Back",
  4289. image: {
  4290. source: "./media/characters/natalya/back.svg"
  4291. }
  4292. }
  4293. },
  4294. [
  4295. {
  4296. name: "Normal",
  4297. height: math.unit(150, "feet"),
  4298. default: true
  4299. },
  4300. {
  4301. name: "Megamacro",
  4302. height: math.unit(5, "miles")
  4303. },
  4304. {
  4305. name: "Full-Size",
  4306. height: math.unit(600, "kiloparsecs")
  4307. }
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4312. {
  4313. front: {
  4314. height: math.unit(2, "meter"),
  4315. weight: math.unit(50, "kg"),
  4316. name: "Front",
  4317. image: {
  4318. source: "./media/characters/erestrebah/front.svg",
  4319. extra: 1262/1162,
  4320. bottom: 96/1358
  4321. }
  4322. },
  4323. back: {
  4324. height: math.unit(2, "meter"),
  4325. weight: math.unit(50, "kg"),
  4326. name: "Back",
  4327. image: {
  4328. source: "./media/characters/erestrebah/back.svg",
  4329. extra: 1257/1139,
  4330. bottom: 13/1270
  4331. }
  4332. },
  4333. wing: {
  4334. height: math.unit(2, "meter"),
  4335. weight: math.unit(50, "kg"),
  4336. name: "Wing",
  4337. image: {
  4338. source: "./media/characters/erestrebah/wing.svg",
  4339. extra: 1262/1162,
  4340. bottom: 96/1358
  4341. }
  4342. },
  4343. mouth: {
  4344. height: math.unit(0.39, "feet"),
  4345. name: "Mouth",
  4346. image: {
  4347. source: "./media/characters/erestrebah/mouth.svg"
  4348. }
  4349. }
  4350. },
  4351. [
  4352. {
  4353. name: "Normal",
  4354. height: math.unit(10, "feet")
  4355. },
  4356. {
  4357. name: "Large",
  4358. height: math.unit(50, "feet"),
  4359. default: true
  4360. },
  4361. {
  4362. name: "Macro",
  4363. height: math.unit(300, "feet")
  4364. },
  4365. {
  4366. name: "Macro+",
  4367. height: math.unit(750, "feet")
  4368. },
  4369. {
  4370. name: "Megamacro",
  4371. height: math.unit(3, "miles")
  4372. }
  4373. ]
  4374. ))
  4375. characterMakers.push(() => makeCharacter(
  4376. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4377. {
  4378. front: {
  4379. height: math.unit(2, "meter"),
  4380. weight: math.unit(80, "kg"),
  4381. name: "Front",
  4382. image: {
  4383. source: "./media/characters/jennifer/front.svg",
  4384. bottom: 0.11,
  4385. extra: 1.16
  4386. }
  4387. },
  4388. frontAlt: {
  4389. height: math.unit(2, "meter"),
  4390. weight: math.unit(80, "kg"),
  4391. name: "Front (Alt)",
  4392. image: {
  4393. source: "./media/characters/jennifer/front-alt.svg"
  4394. }
  4395. }
  4396. },
  4397. [
  4398. {
  4399. name: "Canon Height",
  4400. height: math.unit(120, "feet"),
  4401. default: true
  4402. },
  4403. {
  4404. name: "Macro+",
  4405. height: math.unit(300, "feet")
  4406. },
  4407. {
  4408. name: "Megamacro",
  4409. height: math.unit(20000, "feet")
  4410. }
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4415. {
  4416. front: {
  4417. height: math.unit(2, "meter"),
  4418. weight: math.unit(50, "kg"),
  4419. name: "Front",
  4420. image: {
  4421. source: "./media/characters/kalista/front.svg",
  4422. extra: 1314/1145,
  4423. bottom: 101/1415
  4424. }
  4425. },
  4426. back: {
  4427. height: math.unit(2, "meter"),
  4428. weight: math.unit(50, "kg"),
  4429. name: "Back",
  4430. image: {
  4431. source: "./media/characters/kalista/back.svg",
  4432. extra: 1366 / 1156,
  4433. bottom: 33.9 / 1362.78
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Uncomfortably Small",
  4440. height: math.unit(10, "feet")
  4441. },
  4442. {
  4443. name: "Small",
  4444. height: math.unit(30, "feet")
  4445. },
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(100, "feet"),
  4449. default: true
  4450. },
  4451. {
  4452. name: "Macro+",
  4453. height: math.unit(2000, "feet")
  4454. },
  4455. {
  4456. name: "True Form",
  4457. height: math.unit(8924, "miles")
  4458. }
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4463. {
  4464. front: {
  4465. height: math.unit(2, "meter"),
  4466. weight: math.unit(120, "kg"),
  4467. name: "Front",
  4468. image: {
  4469. source: "./media/characters/ggv/front.svg"
  4470. }
  4471. },
  4472. side: {
  4473. height: math.unit(2, "meter"),
  4474. weight: math.unit(120, "kg"),
  4475. name: "Side",
  4476. image: {
  4477. source: "./media/characters/ggv/side.svg"
  4478. }
  4479. }
  4480. },
  4481. [
  4482. {
  4483. name: "Extremely Puny",
  4484. height: math.unit(9 + 5 / 12, "feet")
  4485. },
  4486. {
  4487. name: "Horribly Small",
  4488. height: math.unit(47.7, "miles"),
  4489. default: true
  4490. },
  4491. {
  4492. name: "Reasonably Sized",
  4493. height: math.unit(25000, "parsecs")
  4494. },
  4495. {
  4496. name: "Slightly Uncompressed",
  4497. height: math.unit(7.77e31, "parsecs")
  4498. },
  4499. {
  4500. name: "Omniversal",
  4501. height: math.unit(1e300, "meters")
  4502. },
  4503. ]
  4504. ))
  4505. characterMakers.push(() => makeCharacter(
  4506. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4507. {
  4508. front: {
  4509. height: math.unit(2, "meter"),
  4510. weight: math.unit(75, "lb"),
  4511. name: "Front",
  4512. image: {
  4513. source: "./media/characters/napalm/front.svg"
  4514. }
  4515. },
  4516. back: {
  4517. height: math.unit(2, "meter"),
  4518. weight: math.unit(75, "lb"),
  4519. name: "Back",
  4520. image: {
  4521. source: "./media/characters/napalm/back.svg"
  4522. }
  4523. }
  4524. },
  4525. [
  4526. {
  4527. name: "Standard",
  4528. height: math.unit(55, "feet"),
  4529. default: true
  4530. }
  4531. ]
  4532. ))
  4533. characterMakers.push(() => makeCharacter(
  4534. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4535. {
  4536. front: {
  4537. height: math.unit(7 + 5 / 6, "feet"),
  4538. weight: math.unit(325, "lb"),
  4539. name: "Front",
  4540. image: {
  4541. source: "./media/characters/asana/front.svg",
  4542. extra: 1133 / 1060,
  4543. bottom: 15.2 / 1148.6
  4544. }
  4545. },
  4546. back: {
  4547. height: math.unit(7 + 5 / 6, "feet"),
  4548. weight: math.unit(325, "lb"),
  4549. name: "Back",
  4550. image: {
  4551. source: "./media/characters/asana/back.svg",
  4552. extra: 1114 / 1043,
  4553. bottom: 5 / 1120
  4554. }
  4555. },
  4556. dressedDark: {
  4557. height: math.unit(7 + 5 / 6, "feet"),
  4558. weight: math.unit(325, "lb"),
  4559. name: "Dressed (Dark)",
  4560. image: {
  4561. source: "./media/characters/asana/dressed-dark.svg",
  4562. extra: 1133 / 1060,
  4563. bottom: 15.2 / 1148.6
  4564. }
  4565. },
  4566. dressedLight: {
  4567. height: math.unit(7 + 5 / 6, "feet"),
  4568. weight: math.unit(325, "lb"),
  4569. name: "Dressed (Light)",
  4570. image: {
  4571. source: "./media/characters/asana/dressed-light.svg",
  4572. extra: 1133 / 1060,
  4573. bottom: 15.2 / 1148.6
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Standard",
  4580. height: math.unit(7 + 5 / 6, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Large",
  4585. height: math.unit(10, "meters")
  4586. },
  4587. {
  4588. name: "Macro",
  4589. height: math.unit(2500, "meters")
  4590. },
  4591. {
  4592. name: "Megamacro",
  4593. height: math.unit(5e6, "meters")
  4594. },
  4595. {
  4596. name: "Examacro",
  4597. height: math.unit(5e12, "lightyears")
  4598. },
  4599. {
  4600. name: "Max Size",
  4601. height: math.unit(1e31, "lightyears")
  4602. }
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4607. {
  4608. front: {
  4609. height: math.unit(2, "meter"),
  4610. weight: math.unit(60, "kg"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/ebony/front.svg",
  4614. bottom: 0.03,
  4615. extra: 1045 / 810 + 0.03
  4616. }
  4617. },
  4618. side: {
  4619. height: math.unit(2, "meter"),
  4620. weight: math.unit(60, "kg"),
  4621. name: "Side",
  4622. image: {
  4623. source: "./media/characters/ebony/side.svg",
  4624. bottom: 0.03,
  4625. extra: 1045 / 810 + 0.03
  4626. }
  4627. },
  4628. back: {
  4629. height: math.unit(2, "meter"),
  4630. weight: math.unit(60, "kg"),
  4631. name: "Back",
  4632. image: {
  4633. source: "./media/characters/ebony/back.svg",
  4634. bottom: 0.01,
  4635. extra: 1045 / 810 + 0.01
  4636. }
  4637. },
  4638. },
  4639. [
  4640. // TODO check why I did this lol
  4641. {
  4642. name: "Standard",
  4643. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4644. default: true
  4645. },
  4646. {
  4647. name: "Macro",
  4648. height: math.unit(200, "feet")
  4649. },
  4650. {
  4651. name: "Gigamacro",
  4652. height: math.unit(13000, "km")
  4653. }
  4654. ]
  4655. ))
  4656. characterMakers.push(() => makeCharacter(
  4657. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4658. {
  4659. front: {
  4660. height: math.unit(6, "feet"),
  4661. weight: math.unit(175, "lb"),
  4662. name: "Front",
  4663. image: {
  4664. source: "./media/characters/mountain/front.svg",
  4665. extra: 972 / 955,
  4666. bottom: 64 / 1036.6
  4667. }
  4668. },
  4669. back: {
  4670. height: math.unit(6, "feet"),
  4671. weight: math.unit(175, "lb"),
  4672. name: "Back",
  4673. image: {
  4674. source: "./media/characters/mountain/back.svg",
  4675. extra: 970 / 950,
  4676. bottom: 28.25 / 999
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "Large",
  4683. height: math.unit(20, "meters")
  4684. },
  4685. {
  4686. name: "Macro",
  4687. height: math.unit(300, "meters")
  4688. },
  4689. {
  4690. name: "Gigamacro",
  4691. height: math.unit(10000, "km"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Examacro",
  4696. height: math.unit(10e9, "lightyears")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(8, "feet"),
  4705. weight: math.unit(500, "lb"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/rick/front.svg"
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Normal",
  4715. height: math.unit(8, "feet"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Macro",
  4720. height: math.unit(5, "km")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(8, "feet"),
  4729. weight: math.unit(120, "lb"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/ona/front.svg"
  4733. }
  4734. },
  4735. frontAlt: {
  4736. height: math.unit(8, "feet"),
  4737. weight: math.unit(120, "lb"),
  4738. name: "Front (Alt)",
  4739. image: {
  4740. source: "./media/characters/ona/front-alt.svg"
  4741. }
  4742. },
  4743. back: {
  4744. height: math.unit(8, "feet"),
  4745. weight: math.unit(120, "lb"),
  4746. name: "Back",
  4747. image: {
  4748. source: "./media/characters/ona/back.svg"
  4749. }
  4750. },
  4751. foot: {
  4752. height: math.unit(1.1, "feet"),
  4753. name: "Foot",
  4754. image: {
  4755. source: "./media/characters/ona/foot.svg"
  4756. }
  4757. }
  4758. },
  4759. [
  4760. {
  4761. name: "Megamacro",
  4762. height: math.unit(70, "km"),
  4763. default: true
  4764. },
  4765. {
  4766. name: "Gigamacro",
  4767. height: math.unit(681818, "miles")
  4768. },
  4769. {
  4770. name: "Examacro",
  4771. height: math.unit(3800000, "lightyears")
  4772. },
  4773. ]
  4774. ))
  4775. characterMakers.push(() => makeCharacter(
  4776. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4777. {
  4778. front: {
  4779. height: math.unit(12, "feet"),
  4780. weight: math.unit(3000, "lb"),
  4781. name: "Front",
  4782. image: {
  4783. source: "./media/characters/mech/front.svg",
  4784. extra: 2900 / 2770,
  4785. bottom: 110 / 3010
  4786. }
  4787. },
  4788. back: {
  4789. height: math.unit(12, "feet"),
  4790. weight: math.unit(3000, "lb"),
  4791. name: "Back",
  4792. image: {
  4793. source: "./media/characters/mech/back.svg",
  4794. extra: 3011 / 2890,
  4795. bottom: 94 / 3105
  4796. }
  4797. },
  4798. maw: {
  4799. height: math.unit(3.07, "feet"),
  4800. name: "Maw",
  4801. image: {
  4802. source: "./media/characters/mech/maw.svg"
  4803. }
  4804. },
  4805. head: {
  4806. height: math.unit(3.07, "feet"),
  4807. name: "Head",
  4808. image: {
  4809. source: "./media/characters/mech/head.svg"
  4810. }
  4811. },
  4812. dick: {
  4813. height: math.unit(1.43, "feet"),
  4814. name: "Dick",
  4815. image: {
  4816. source: "./media/characters/mech/dick.svg"
  4817. }
  4818. },
  4819. },
  4820. [
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(12, "feet")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(300, "feet"),
  4828. default: true
  4829. },
  4830. {
  4831. name: "Macro+",
  4832. height: math.unit(1500, "feet")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(1.3, "meter"),
  4841. weight: math.unit(30, "kg"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/gregory/front.svg",
  4845. }
  4846. }
  4847. },
  4848. [
  4849. {
  4850. name: "Normal",
  4851. height: math.unit(1.3, "meter"),
  4852. default: true
  4853. },
  4854. {
  4855. name: "Macro",
  4856. height: math.unit(20, "meter")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4862. {
  4863. front: {
  4864. height: math.unit(2.8, "meter"),
  4865. weight: math.unit(200, "kg"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/elory/front.svg",
  4869. }
  4870. }
  4871. },
  4872. [
  4873. {
  4874. name: "Normal",
  4875. height: math.unit(2.8, "meter"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Macro",
  4880. height: math.unit(38, "meter")
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4886. {
  4887. front: {
  4888. height: math.unit(470, "feet"),
  4889. weight: math.unit(924, "tons"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/angelpatamon/front.svg",
  4893. }
  4894. }
  4895. },
  4896. [
  4897. {
  4898. name: "Normal",
  4899. height: math.unit(470, "feet"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Deity Size I",
  4904. height: math.unit(28651.2, "km")
  4905. },
  4906. {
  4907. name: "Deity Size II",
  4908. height: math.unit(171907.2, "km")
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4914. {
  4915. side: {
  4916. height: math.unit(7.2, "meter"),
  4917. weight: math.unit(8.2, "tons"),
  4918. name: "Side",
  4919. image: {
  4920. source: "./media/characters/cryae/side.svg",
  4921. extra: 3500 / 1500
  4922. }
  4923. }
  4924. },
  4925. [
  4926. {
  4927. name: "Normal",
  4928. height: math.unit(7.2, "meter"),
  4929. default: true
  4930. }
  4931. ]
  4932. ))
  4933. characterMakers.push(() => makeCharacter(
  4934. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4935. {
  4936. front: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(175, "lb"),
  4939. name: "Front",
  4940. image: {
  4941. source: "./media/characters/xera/front.svg",
  4942. extra: 2377 / 1972,
  4943. bottom: 75.5 / 2452
  4944. }
  4945. },
  4946. side: {
  4947. height: math.unit(6, "feet"),
  4948. weight: math.unit(175, "lb"),
  4949. name: "Side",
  4950. image: {
  4951. source: "./media/characters/xera/side.svg",
  4952. extra: 2345 / 2019,
  4953. bottom: 39.7 / 2384
  4954. }
  4955. },
  4956. back: {
  4957. height: math.unit(6, "feet"),
  4958. weight: math.unit(175, "lb"),
  4959. name: "Back",
  4960. image: {
  4961. source: "./media/characters/xera/back.svg",
  4962. extra: 2095 / 1984,
  4963. bottom: 67 / 2166
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Small",
  4970. height: math.unit(10, "feet")
  4971. },
  4972. {
  4973. name: "Macro",
  4974. height: math.unit(500, "meters"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Macro+",
  4979. height: math.unit(10, "km")
  4980. },
  4981. {
  4982. name: "Gigamacro",
  4983. height: math.unit(25000, "km")
  4984. },
  4985. {
  4986. name: "Teramacro",
  4987. height: math.unit(3e6, "km")
  4988. }
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(6, "feet"),
  4996. weight: math.unit(175, "lb"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/nebula/front.svg",
  5000. extra: 2566 / 2362,
  5001. bottom: 81 / 2644
  5002. }
  5003. }
  5004. },
  5005. [
  5006. {
  5007. name: "Small",
  5008. height: math.unit(4.5, "meters")
  5009. },
  5010. {
  5011. name: "Macro",
  5012. height: math.unit(1500, "meters"),
  5013. default: true
  5014. },
  5015. {
  5016. name: "Megamacro",
  5017. height: math.unit(150, "km")
  5018. },
  5019. {
  5020. name: "Gigamacro",
  5021. height: math.unit(27000, "km")
  5022. }
  5023. ]
  5024. ))
  5025. characterMakers.push(() => makeCharacter(
  5026. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5027. {
  5028. front: {
  5029. height: math.unit(6, "feet"),
  5030. weight: math.unit(225, "lb"),
  5031. name: "Front",
  5032. image: {
  5033. source: "./media/characters/abysgar/front.svg",
  5034. extra: 1739/1614,
  5035. bottom: 71/1810
  5036. }
  5037. },
  5038. frontNsfw: {
  5039. height: math.unit(6, "feet"),
  5040. weight: math.unit(225, "lb"),
  5041. name: "Front (NSFW)",
  5042. image: {
  5043. source: "./media/characters/abysgar/front-nsfw.svg",
  5044. extra: 1739/1614,
  5045. bottom: 71/1810
  5046. }
  5047. },
  5048. back: {
  5049. height: math.unit(4.6, "feet"),
  5050. weight: math.unit(225, "lb"),
  5051. name: "Back",
  5052. image: {
  5053. source: "./media/characters/abysgar/back.svg",
  5054. extra: 1384/1327,
  5055. bottom: 0/1384
  5056. }
  5057. },
  5058. head: {
  5059. height: math.unit(1.25, "feet"),
  5060. name: "Head",
  5061. image: {
  5062. source: "./media/characters/abysgar/head.svg",
  5063. extra: 669/569,
  5064. bottom: 0/669
  5065. }
  5066. },
  5067. },
  5068. [
  5069. {
  5070. name: "Small",
  5071. height: math.unit(4.5, "meters")
  5072. },
  5073. {
  5074. name: "Macro",
  5075. height: math.unit(1250, "meters"),
  5076. default: true
  5077. },
  5078. {
  5079. name: "Megamacro",
  5080. height: math.unit(125, "km")
  5081. },
  5082. {
  5083. name: "Gigamacro",
  5084. height: math.unit(26000, "km")
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(6, "feet"),
  5093. weight: math.unit(180, "lb"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/yakuz/front.svg"
  5097. }
  5098. }
  5099. },
  5100. [
  5101. {
  5102. name: "Small",
  5103. height: math.unit(5, "meters")
  5104. },
  5105. {
  5106. name: "Macro",
  5107. height: math.unit(1500, "meters"),
  5108. default: true
  5109. },
  5110. {
  5111. name: "Megamacro",
  5112. height: math.unit(200, "km")
  5113. },
  5114. {
  5115. name: "Gigamacro",
  5116. height: math.unit(100000, "km")
  5117. }
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5122. {
  5123. front: {
  5124. height: math.unit(6, "feet"),
  5125. weight: math.unit(175, "lb"),
  5126. name: "Front",
  5127. image: {
  5128. source: "./media/characters/mirova/front.svg",
  5129. extra: 3334 / 3071,
  5130. bottom: 42 / 3375.6
  5131. }
  5132. }
  5133. },
  5134. [
  5135. {
  5136. name: "Small",
  5137. height: math.unit(5, "meters")
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(900, "meters"),
  5142. default: true
  5143. },
  5144. {
  5145. name: "Megamacro",
  5146. height: math.unit(135, "km")
  5147. },
  5148. {
  5149. name: "Gigamacro",
  5150. height: math.unit(20000, "km")
  5151. }
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5156. {
  5157. side: {
  5158. height: math.unit(28.35, "feet"),
  5159. weight: math.unit(99.75, "tons"),
  5160. name: "Side",
  5161. image: {
  5162. source: "./media/characters/asana-mech/side.svg",
  5163. extra: 923 / 699,
  5164. bottom: 50 / 975
  5165. }
  5166. },
  5167. chaingun: {
  5168. height: math.unit(7, "feet"),
  5169. weight: math.unit(2400, "lb"),
  5170. name: "Chaingun",
  5171. image: {
  5172. source: "./media/characters/asana-mech/chaingun.svg"
  5173. }
  5174. },
  5175. laser: {
  5176. height: math.unit(7.12, "feet"),
  5177. weight: math.unit(2000, "lb"),
  5178. name: "Laser",
  5179. image: {
  5180. source: "./media/characters/asana-mech/laser.svg"
  5181. }
  5182. },
  5183. },
  5184. [
  5185. {
  5186. name: "Normal",
  5187. height: math.unit(28.35, "feet"),
  5188. default: true
  5189. },
  5190. {
  5191. name: "Macro",
  5192. height: math.unit(2500, "feet")
  5193. },
  5194. {
  5195. name: "Megamacro",
  5196. height: math.unit(25, "miles")
  5197. },
  5198. {
  5199. name: "Examacro",
  5200. height: math.unit(6e8, "lightyears")
  5201. },
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5206. {
  5207. front: {
  5208. height: math.unit(5, "meters"),
  5209. weight: math.unit(1000, "kg"),
  5210. name: "Front",
  5211. image: {
  5212. source: "./media/characters/asche/front.svg",
  5213. extra: 1258 / 1190,
  5214. bottom: 47 / 1305
  5215. }
  5216. },
  5217. frontUnderwear: {
  5218. height: math.unit(5, "meters"),
  5219. weight: math.unit(1000, "kg"),
  5220. name: "Front (Underwear)",
  5221. image: {
  5222. source: "./media/characters/asche/front-underwear.svg",
  5223. extra: 1258 / 1190,
  5224. bottom: 47 / 1305
  5225. }
  5226. },
  5227. frontDressed: {
  5228. height: math.unit(5, "meters"),
  5229. weight: math.unit(1000, "kg"),
  5230. name: "Front (Dressed)",
  5231. image: {
  5232. source: "./media/characters/asche/front-dressed.svg",
  5233. extra: 1258 / 1190,
  5234. bottom: 47 / 1305
  5235. }
  5236. },
  5237. frontArmor: {
  5238. height: math.unit(5, "meters"),
  5239. weight: math.unit(1000, "kg"),
  5240. name: "Front (Armored)",
  5241. image: {
  5242. source: "./media/characters/asche/front-armored.svg",
  5243. extra: 1374 / 1308,
  5244. bottom: 23 / 1397
  5245. }
  5246. },
  5247. mp724: {
  5248. height: math.unit(0.96, "meters"),
  5249. weight: math.unit(38, "kg"),
  5250. name: "H&K MP724",
  5251. image: {
  5252. source: "./media/characters/asche/h&k-mp724.svg"
  5253. }
  5254. },
  5255. side: {
  5256. height: math.unit(5, "meters"),
  5257. weight: math.unit(1000, "kg"),
  5258. name: "Side",
  5259. image: {
  5260. source: "./media/characters/asche/side.svg",
  5261. extra: 1717 / 1609,
  5262. bottom: 0.005
  5263. }
  5264. },
  5265. back: {
  5266. height: math.unit(5, "meters"),
  5267. weight: math.unit(1000, "kg"),
  5268. name: "Back",
  5269. image: {
  5270. source: "./media/characters/asche/back.svg",
  5271. extra: 1570 / 1501
  5272. }
  5273. },
  5274. },
  5275. [
  5276. {
  5277. name: "DEFCON 5",
  5278. height: math.unit(5, "meters")
  5279. },
  5280. {
  5281. name: "DEFCON 4",
  5282. height: math.unit(500, "meters"),
  5283. default: true
  5284. },
  5285. {
  5286. name: "DEFCON 3",
  5287. height: math.unit(5, "km")
  5288. },
  5289. {
  5290. name: "DEFCON 2",
  5291. height: math.unit(500, "km")
  5292. },
  5293. {
  5294. name: "DEFCON 1",
  5295. height: math.unit(500000, "km")
  5296. },
  5297. {
  5298. name: "DEFCON 0",
  5299. height: math.unit(3, "gigaparsecs")
  5300. },
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5305. {
  5306. front: {
  5307. height: math.unit(7, "feet"),
  5308. weight: math.unit(92.7, "kg"),
  5309. name: "Front",
  5310. image: {
  5311. source: "./media/characters/gale/front.svg",
  5312. extra: 977/919,
  5313. bottom: 105/1082
  5314. }
  5315. },
  5316. side: {
  5317. height: math.unit(6.7, "feet"),
  5318. weight: math.unit(92.7, "kg"),
  5319. name: "Side",
  5320. image: {
  5321. source: "./media/characters/gale/side.svg",
  5322. extra: 978/922,
  5323. bottom: 140/1118
  5324. }
  5325. },
  5326. back: {
  5327. height: math.unit(7, "feet"),
  5328. weight: math.unit(92.7, "kg"),
  5329. name: "Back",
  5330. image: {
  5331. source: "./media/characters/gale/back.svg",
  5332. extra: 966/920,
  5333. bottom: 61/1027
  5334. }
  5335. },
  5336. maw: {
  5337. height: math.unit(2.23, "feet"),
  5338. name: "Maw",
  5339. image: {
  5340. source: "./media/characters/gale/maw.svg"
  5341. }
  5342. },
  5343. foot: {
  5344. height: math.unit(2.1, "feet"),
  5345. name: "Foot",
  5346. image: {
  5347. source: "./media/characters/gale/foot.svg"
  5348. }
  5349. },
  5350. },
  5351. [
  5352. {
  5353. name: "Normal",
  5354. height: math.unit(7, "feet")
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(150, "feet"),
  5359. default: true
  5360. },
  5361. {
  5362. name: "Macro+",
  5363. height: math.unit(300, "feet")
  5364. },
  5365. ]
  5366. ))
  5367. characterMakers.push(() => makeCharacter(
  5368. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5369. {
  5370. front: {
  5371. height: math.unit(5 + 10/12, "feet"),
  5372. weight: math.unit(67, "kg"),
  5373. name: "Front",
  5374. image: {
  5375. source: "./media/characters/draylen/front.svg",
  5376. extra: 832/777,
  5377. bottom: 85/917
  5378. }
  5379. }
  5380. },
  5381. [
  5382. {
  5383. name: "Normal",
  5384. height: math.unit(5 + 10/12, "feet")
  5385. },
  5386. {
  5387. name: "Macro",
  5388. height: math.unit(150, "feet"),
  5389. default: true
  5390. }
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5395. {
  5396. front: {
  5397. height: math.unit(7 + 9 / 12, "feet"),
  5398. weight: math.unit(379, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/chez/front.svg"
  5402. }
  5403. },
  5404. side: {
  5405. height: math.unit(7 + 9 / 12, "feet"),
  5406. weight: math.unit(379, "lbs"),
  5407. name: "Side",
  5408. image: {
  5409. source: "./media/characters/chez/side.svg"
  5410. }
  5411. }
  5412. },
  5413. [
  5414. {
  5415. name: "Normal",
  5416. height: math.unit(7 + 9 / 12, "feet"),
  5417. default: true
  5418. },
  5419. {
  5420. name: "God King",
  5421. height: math.unit(9750000, "meters")
  5422. }
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5427. {
  5428. front: {
  5429. height: math.unit(6, "feet"),
  5430. weight: math.unit(275, "lbs"),
  5431. name: "Front",
  5432. image: {
  5433. source: "./media/characters/kaylum/front.svg",
  5434. bottom: 0.01,
  5435. extra: 1166 / 1031
  5436. }
  5437. },
  5438. frontWingless: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(275, "lbs"),
  5441. name: "Front (Wingless)",
  5442. image: {
  5443. source: "./media/characters/kaylum/front-wingless.svg",
  5444. bottom: 0.01,
  5445. extra: 1117 / 1031
  5446. }
  5447. }
  5448. },
  5449. [
  5450. {
  5451. name: "Normal",
  5452. height: math.unit(3.05, "meters")
  5453. },
  5454. {
  5455. name: "Master",
  5456. height: math.unit(5.5, "meters")
  5457. },
  5458. {
  5459. name: "Rampage",
  5460. height: math.unit(19, "meters")
  5461. },
  5462. {
  5463. name: "Macro Lite",
  5464. height: math.unit(37, "meters")
  5465. },
  5466. {
  5467. name: "Hyper Predator",
  5468. height: math.unit(61, "meters")
  5469. },
  5470. {
  5471. name: "Macro",
  5472. height: math.unit(138, "meters"),
  5473. default: true
  5474. }
  5475. ]
  5476. ))
  5477. characterMakers.push(() => makeCharacter(
  5478. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5479. {
  5480. front: {
  5481. height: math.unit(5 + 5 / 12, "feet"),
  5482. weight: math.unit(120, "lbs"),
  5483. name: "Front",
  5484. image: {
  5485. source: "./media/characters/geta/front.svg",
  5486. extra: 1003/933,
  5487. bottom: 21/1024
  5488. }
  5489. },
  5490. paw: {
  5491. height: math.unit(0.35, "feet"),
  5492. name: "Paw",
  5493. image: {
  5494. source: "./media/characters/geta/paw.svg"
  5495. }
  5496. },
  5497. },
  5498. [
  5499. {
  5500. name: "Micro",
  5501. height: math.unit(3, "inches"),
  5502. default: true
  5503. },
  5504. {
  5505. name: "Normal",
  5506. height: math.unit(5 + 5 / 12, "feet")
  5507. }
  5508. ]
  5509. ))
  5510. characterMakers.push(() => makeCharacter(
  5511. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5512. {
  5513. front: {
  5514. height: math.unit(6, "feet"),
  5515. weight: math.unit(300, "lbs"),
  5516. name: "Front",
  5517. image: {
  5518. source: "./media/characters/tyrnn/front.svg"
  5519. }
  5520. }
  5521. },
  5522. [
  5523. {
  5524. name: "Main Height",
  5525. height: math.unit(355, "feet"),
  5526. default: true
  5527. },
  5528. {
  5529. name: "Fave. Height",
  5530. height: math.unit(2400, "feet")
  5531. }
  5532. ]
  5533. ))
  5534. characterMakers.push(() => makeCharacter(
  5535. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5536. {
  5537. front: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(300, "lbs"),
  5540. name: "Front",
  5541. image: {
  5542. source: "./media/characters/appledectomy/front.svg"
  5543. }
  5544. }
  5545. },
  5546. [
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(2500, "feet")
  5550. },
  5551. {
  5552. name: "Megamacro",
  5553. height: math.unit(50, "miles"),
  5554. default: true
  5555. },
  5556. {
  5557. name: "Gigamacro",
  5558. height: math.unit(5000, "miles")
  5559. },
  5560. {
  5561. name: "Teramacro",
  5562. height: math.unit(250000, "miles")
  5563. },
  5564. ]
  5565. ))
  5566. characterMakers.push(() => makeCharacter(
  5567. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5568. {
  5569. front: {
  5570. height: math.unit(6, "feet"),
  5571. weight: math.unit(200, "lbs"),
  5572. name: "Front",
  5573. image: {
  5574. source: "./media/characters/vulpes/front.svg",
  5575. extra: 573 / 543,
  5576. bottom: 0.033
  5577. }
  5578. },
  5579. side: {
  5580. height: math.unit(6, "feet"),
  5581. weight: math.unit(200, "lbs"),
  5582. name: "Side",
  5583. image: {
  5584. source: "./media/characters/vulpes/side.svg",
  5585. extra: 577 / 549,
  5586. bottom: 11 / 588
  5587. }
  5588. },
  5589. back: {
  5590. height: math.unit(6, "feet"),
  5591. weight: math.unit(200, "lbs"),
  5592. name: "Back",
  5593. image: {
  5594. source: "./media/characters/vulpes/back.svg",
  5595. extra: 573 / 549,
  5596. bottom: 20 / 593
  5597. }
  5598. },
  5599. feet: {
  5600. height: math.unit(1.276, "feet"),
  5601. name: "Feet",
  5602. image: {
  5603. source: "./media/characters/vulpes/feet.svg"
  5604. }
  5605. },
  5606. maw: {
  5607. height: math.unit(1.18, "feet"),
  5608. name: "Maw",
  5609. image: {
  5610. source: "./media/characters/vulpes/maw.svg"
  5611. }
  5612. },
  5613. },
  5614. [
  5615. {
  5616. name: "Micro",
  5617. height: math.unit(2, "inches")
  5618. },
  5619. {
  5620. name: "Normal",
  5621. height: math.unit(6.3, "feet")
  5622. },
  5623. {
  5624. name: "Macro",
  5625. height: math.unit(850, "feet")
  5626. },
  5627. {
  5628. name: "Megamacro",
  5629. height: math.unit(7500, "feet"),
  5630. default: true
  5631. },
  5632. {
  5633. name: "Gigamacro",
  5634. height: math.unit(570000, "miles")
  5635. }
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5640. {
  5641. front: {
  5642. height: math.unit(6, "feet"),
  5643. weight: math.unit(210, "lbs"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/rain-fallen/front.svg"
  5647. }
  5648. },
  5649. side: {
  5650. height: math.unit(6, "feet"),
  5651. weight: math.unit(210, "lbs"),
  5652. name: "Side",
  5653. image: {
  5654. source: "./media/characters/rain-fallen/side.svg"
  5655. }
  5656. },
  5657. back: {
  5658. height: math.unit(6, "feet"),
  5659. weight: math.unit(210, "lbs"),
  5660. name: "Back",
  5661. image: {
  5662. source: "./media/characters/rain-fallen/back.svg"
  5663. }
  5664. },
  5665. feral: {
  5666. height: math.unit(9, "feet"),
  5667. weight: math.unit(700, "lbs"),
  5668. name: "Feral",
  5669. image: {
  5670. source: "./media/characters/rain-fallen/feral.svg"
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Meddling with Mortals",
  5677. height: math.unit(8 + 8/12, "feet")
  5678. },
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(5, "meter")
  5682. },
  5683. {
  5684. name: "Macro",
  5685. height: math.unit(150, "meter"),
  5686. default: true
  5687. },
  5688. {
  5689. name: "Megamacro",
  5690. height: math.unit(278e6, "meter")
  5691. },
  5692. {
  5693. name: "Gigamacro",
  5694. height: math.unit(2e9, "meter")
  5695. },
  5696. {
  5697. name: "Teramacro",
  5698. height: math.unit(8e12, "meter")
  5699. },
  5700. {
  5701. name: "Devourer",
  5702. height: math.unit(14, "zettameters")
  5703. },
  5704. {
  5705. name: "Scarlet King",
  5706. height: math.unit(18, "yottameters")
  5707. },
  5708. {
  5709. name: "Void",
  5710. height: math.unit(1e88, "yottameters")
  5711. }
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5716. {
  5717. standing: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(180, "lbs"),
  5720. name: "Standing",
  5721. image: {
  5722. source: "./media/characters/zaakira/standing.svg",
  5723. extra: 1599/1504,
  5724. bottom: 39/1638
  5725. }
  5726. },
  5727. laying: {
  5728. height: math.unit(3.3, "feet"),
  5729. weight: math.unit(180, "lbs"),
  5730. name: "Laying",
  5731. image: {
  5732. source: "./media/characters/zaakira/laying.svg"
  5733. }
  5734. },
  5735. },
  5736. [
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(12, "feet")
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(279, "feet"),
  5744. default: true
  5745. }
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5750. {
  5751. femSfw: {
  5752. height: math.unit(8, "feet"),
  5753. weight: math.unit(350, "lb"),
  5754. name: "Fem",
  5755. image: {
  5756. source: "./media/characters/sigvald/fem-sfw.svg",
  5757. extra: 182 / 164,
  5758. bottom: 8.7 / 190.5
  5759. }
  5760. },
  5761. femNsfw: {
  5762. height: math.unit(8, "feet"),
  5763. weight: math.unit(350, "lb"),
  5764. name: "Fem (NSFW)",
  5765. image: {
  5766. source: "./media/characters/sigvald/fem-nsfw.svg",
  5767. extra: 182 / 164,
  5768. bottom: 8.7 / 190.5
  5769. }
  5770. },
  5771. maleNsfw: {
  5772. height: math.unit(8, "feet"),
  5773. weight: math.unit(350, "lb"),
  5774. name: "Male (NSFW)",
  5775. image: {
  5776. source: "./media/characters/sigvald/male-nsfw.svg",
  5777. extra: 182 / 164,
  5778. bottom: 8.7 / 190.5
  5779. }
  5780. },
  5781. hermNsfw: {
  5782. height: math.unit(8, "feet"),
  5783. weight: math.unit(350, "lb"),
  5784. name: "Herm (NSFW)",
  5785. image: {
  5786. source: "./media/characters/sigvald/herm-nsfw.svg",
  5787. extra: 182 / 164,
  5788. bottom: 8.7 / 190.5
  5789. }
  5790. },
  5791. dick: {
  5792. height: math.unit(2.36, "feet"),
  5793. name: "Dick",
  5794. image: {
  5795. source: "./media/characters/sigvald/dick.svg"
  5796. }
  5797. },
  5798. eye: {
  5799. height: math.unit(0.31, "feet"),
  5800. name: "Eye",
  5801. image: {
  5802. source: "./media/characters/sigvald/eye.svg"
  5803. }
  5804. },
  5805. mouth: {
  5806. height: math.unit(0.92, "feet"),
  5807. name: "Mouth",
  5808. image: {
  5809. source: "./media/characters/sigvald/mouth.svg"
  5810. }
  5811. },
  5812. paws: {
  5813. height: math.unit(2.2, "feet"),
  5814. name: "Paws",
  5815. image: {
  5816. source: "./media/characters/sigvald/paws.svg"
  5817. }
  5818. }
  5819. },
  5820. [
  5821. {
  5822. name: "Normal",
  5823. height: math.unit(8, "feet")
  5824. },
  5825. {
  5826. name: "Large",
  5827. height: math.unit(12, "feet")
  5828. },
  5829. {
  5830. name: "Larger",
  5831. height: math.unit(20, "feet")
  5832. },
  5833. {
  5834. name: "Macro",
  5835. height: math.unit(150, "feet")
  5836. },
  5837. {
  5838. name: "Macro+",
  5839. height: math.unit(200, "feet"),
  5840. default: true
  5841. },
  5842. ]
  5843. ))
  5844. characterMakers.push(() => makeCharacter(
  5845. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5846. {
  5847. side: {
  5848. height: math.unit(12, "feet"),
  5849. weight: math.unit(2000, "kg"),
  5850. name: "Side",
  5851. image: {
  5852. source: "./media/characters/scott/side.svg",
  5853. extra: 754 / 724,
  5854. bottom: 0.069
  5855. }
  5856. },
  5857. upright: {
  5858. height: math.unit(12, "feet"),
  5859. weight: math.unit(2000, "kg"),
  5860. name: "Upright",
  5861. image: {
  5862. source: "./media/characters/scott/upright.svg",
  5863. extra: 3881 / 3722,
  5864. bottom: 0.05
  5865. }
  5866. },
  5867. },
  5868. [
  5869. {
  5870. name: "Normal",
  5871. height: math.unit(12, "feet"),
  5872. default: true
  5873. },
  5874. ]
  5875. ))
  5876. characterMakers.push(() => makeCharacter(
  5877. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5878. {
  5879. side: {
  5880. height: math.unit(8, "meters"),
  5881. weight: math.unit(84755, "lbs"),
  5882. name: "Side",
  5883. image: {
  5884. source: "./media/characters/tobias/side.svg",
  5885. extra: 1474 / 1096,
  5886. bottom: 38.9 / 1513.1235
  5887. }
  5888. },
  5889. },
  5890. [
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(8, "meters"),
  5894. default: true
  5895. },
  5896. ]
  5897. ))
  5898. characterMakers.push(() => makeCharacter(
  5899. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5900. {
  5901. front: {
  5902. height: math.unit(5.5, "feet"),
  5903. weight: math.unit(400, "lbs"),
  5904. name: "Front",
  5905. image: {
  5906. source: "./media/characters/kieran/front.svg",
  5907. extra: 2694 / 2364,
  5908. bottom: 217 / 2908
  5909. }
  5910. },
  5911. side: {
  5912. height: math.unit(5.5, "feet"),
  5913. weight: math.unit(400, "lbs"),
  5914. name: "Side",
  5915. image: {
  5916. source: "./media/characters/kieran/side.svg",
  5917. extra: 875 / 777,
  5918. bottom: 84.6 / 959
  5919. }
  5920. },
  5921. },
  5922. [
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(5.5, "feet"),
  5926. default: true
  5927. },
  5928. ]
  5929. ))
  5930. characterMakers.push(() => makeCharacter(
  5931. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5932. {
  5933. side: {
  5934. height: math.unit(2, "meters"),
  5935. weight: math.unit(70, "kg"),
  5936. name: "Side",
  5937. image: {
  5938. source: "./media/characters/sanya/side.svg",
  5939. bottom: 0.02,
  5940. extra: 1.02
  5941. }
  5942. },
  5943. },
  5944. [
  5945. {
  5946. name: "Small",
  5947. height: math.unit(2, "meters")
  5948. },
  5949. {
  5950. name: "Normal",
  5951. height: math.unit(3, "meters")
  5952. },
  5953. {
  5954. name: "Macro",
  5955. height: math.unit(16, "meters"),
  5956. default: true
  5957. },
  5958. ]
  5959. ))
  5960. characterMakers.push(() => makeCharacter(
  5961. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5962. {
  5963. front: {
  5964. height: math.unit(2, "meters"),
  5965. weight: math.unit(120, "kg"),
  5966. name: "Front",
  5967. image: {
  5968. source: "./media/characters/miranda/front.svg",
  5969. extra: 195 / 185,
  5970. bottom: 10.9 / 206.5
  5971. }
  5972. },
  5973. back: {
  5974. height: math.unit(2, "meters"),
  5975. weight: math.unit(120, "kg"),
  5976. name: "Back",
  5977. image: {
  5978. source: "./media/characters/miranda/back.svg",
  5979. extra: 201 / 193,
  5980. bottom: 2.3 / 203.7
  5981. }
  5982. },
  5983. },
  5984. [
  5985. {
  5986. name: "Normal",
  5987. height: math.unit(10, "feet"),
  5988. default: true
  5989. }
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "James", species: ["deer"], tags: ["anthro"] },
  5994. {
  5995. side: {
  5996. height: math.unit(2, "meters"),
  5997. weight: math.unit(100, "kg"),
  5998. name: "Front",
  5999. image: {
  6000. source: "./media/characters/james/front.svg",
  6001. extra: 10 / 8.5
  6002. }
  6003. },
  6004. },
  6005. [
  6006. {
  6007. name: "Normal",
  6008. height: math.unit(8.5, "feet"),
  6009. default: true
  6010. }
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6015. {
  6016. side: {
  6017. height: math.unit(9.5, "feet"),
  6018. weight: math.unit(2500, "lbs"),
  6019. name: "Side",
  6020. image: {
  6021. source: "./media/characters/heather/side.svg"
  6022. }
  6023. },
  6024. },
  6025. [
  6026. {
  6027. name: "Normal",
  6028. height: math.unit(9.5, "feet"),
  6029. default: true
  6030. }
  6031. ]
  6032. ))
  6033. characterMakers.push(() => makeCharacter(
  6034. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6035. {
  6036. side: {
  6037. height: math.unit(6.5, "feet"),
  6038. weight: math.unit(400, "lbs"),
  6039. name: "Side",
  6040. image: {
  6041. source: "./media/characters/lukas/side.svg",
  6042. extra: 7.25 / 6.5
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(6.5, "feet"),
  6050. default: true
  6051. }
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6056. {
  6057. side: {
  6058. height: math.unit(5, "feet"),
  6059. weight: math.unit(3000, "lbs"),
  6060. name: "Side",
  6061. image: {
  6062. source: "./media/characters/louise/side.svg"
  6063. }
  6064. },
  6065. },
  6066. [
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(5, "feet"),
  6070. default: true
  6071. }
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6076. {
  6077. side: {
  6078. height: math.unit(6, "feet"),
  6079. weight: math.unit(150, "lbs"),
  6080. name: "Side",
  6081. image: {
  6082. source: "./media/characters/ramona/side.svg",
  6083. extra: 871/854,
  6084. bottom: 41/912
  6085. }
  6086. },
  6087. },
  6088. [
  6089. {
  6090. name: "Normal",
  6091. height: math.unit(6 + 4/12, "feet")
  6092. },
  6093. {
  6094. name: "Minimacro",
  6095. height: math.unit(5.3, "meters"),
  6096. default: true
  6097. },
  6098. {
  6099. name: "Macro",
  6100. height: math.unit(20, "stories")
  6101. },
  6102. {
  6103. name: "Macro+",
  6104. height: math.unit(50, "stories")
  6105. },
  6106. ]
  6107. ))
  6108. characterMakers.push(() => makeCharacter(
  6109. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6110. {
  6111. standing: {
  6112. height: math.unit(5.75, "feet"),
  6113. weight: math.unit(160, "lbs"),
  6114. name: "Standing",
  6115. image: {
  6116. source: "./media/characters/deerpuff/standing.svg",
  6117. extra: 682 / 624
  6118. }
  6119. },
  6120. sitting: {
  6121. height: math.unit(5.75 / 1.79, "feet"),
  6122. weight: math.unit(160, "lbs"),
  6123. name: "Sitting",
  6124. image: {
  6125. source: "./media/characters/deerpuff/sitting.svg",
  6126. bottom: 44 / 400,
  6127. extra: 1
  6128. }
  6129. },
  6130. taurLaying: {
  6131. height: math.unit(6, "feet"),
  6132. weight: math.unit(400, "lbs"),
  6133. name: "Taur (Laying)",
  6134. image: {
  6135. source: "./media/characters/deerpuff/taur-laying.svg"
  6136. }
  6137. },
  6138. },
  6139. [
  6140. {
  6141. name: "Puffball",
  6142. height: math.unit(6, "inches")
  6143. },
  6144. {
  6145. name: "Normalpuff",
  6146. height: math.unit(5.75, "feet")
  6147. },
  6148. {
  6149. name: "Macropuff",
  6150. height: math.unit(1500, "feet"),
  6151. default: true
  6152. },
  6153. {
  6154. name: "Megapuff",
  6155. height: math.unit(500, "miles")
  6156. },
  6157. {
  6158. name: "Gigapuff",
  6159. height: math.unit(250000, "miles")
  6160. },
  6161. {
  6162. name: "Omegapuff",
  6163. height: math.unit(1000, "lightyears")
  6164. },
  6165. ]
  6166. ))
  6167. characterMakers.push(() => makeCharacter(
  6168. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6169. {
  6170. stomping: {
  6171. height: math.unit(6, "feet"),
  6172. weight: math.unit(170, "lbs"),
  6173. name: "Stomping",
  6174. image: {
  6175. source: "./media/characters/vivian/stomping.svg"
  6176. }
  6177. },
  6178. sitting: {
  6179. height: math.unit(6 / 1.75, "feet"),
  6180. weight: math.unit(170, "lbs"),
  6181. name: "Sitting",
  6182. image: {
  6183. source: "./media/characters/vivian/sitting.svg",
  6184. bottom: 1 / 6.4,
  6185. extra: 1,
  6186. }
  6187. },
  6188. },
  6189. [
  6190. {
  6191. name: "Normal",
  6192. height: math.unit(7, "feet"),
  6193. default: true
  6194. },
  6195. {
  6196. name: "Macro",
  6197. height: math.unit(10, "stories")
  6198. },
  6199. {
  6200. name: "Macro+",
  6201. height: math.unit(30, "stories")
  6202. },
  6203. {
  6204. name: "Megamacro",
  6205. height: math.unit(10, "miles")
  6206. },
  6207. {
  6208. name: "Megamacro+",
  6209. height: math.unit(2750000, "meters")
  6210. },
  6211. ]
  6212. ))
  6213. characterMakers.push(() => makeCharacter(
  6214. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6215. {
  6216. front: {
  6217. height: math.unit(6, "feet"),
  6218. weight: math.unit(160, "lbs"),
  6219. name: "Front",
  6220. image: {
  6221. source: "./media/characters/prince/front.svg",
  6222. extra: 1938/1682,
  6223. bottom: 45/1983
  6224. }
  6225. },
  6226. back: {
  6227. height: math.unit(6, "feet"),
  6228. weight: math.unit(160, "lbs"),
  6229. name: "Back",
  6230. image: {
  6231. source: "./media/characters/prince/back.svg",
  6232. extra: 1955/1726,
  6233. bottom: 6/1961
  6234. }
  6235. },
  6236. },
  6237. [
  6238. {
  6239. name: "Normal",
  6240. height: math.unit(7.75, "feet"),
  6241. default: true
  6242. },
  6243. {
  6244. name: "Not cute",
  6245. height: math.unit(17, "feet")
  6246. },
  6247. {
  6248. name: "I said NOT",
  6249. height: math.unit(91, "feet")
  6250. },
  6251. {
  6252. name: "Please stop",
  6253. height: math.unit(560, "feet")
  6254. },
  6255. {
  6256. name: "What have you done",
  6257. height: math.unit(2200, "feet")
  6258. },
  6259. {
  6260. name: "Deer God",
  6261. height: math.unit(3.6, "miles")
  6262. },
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6267. {
  6268. standing: {
  6269. height: math.unit(6, "feet"),
  6270. weight: math.unit(300, "lbs"),
  6271. name: "Standing",
  6272. image: {
  6273. source: "./media/characters/psymon/standing.svg",
  6274. extra: 1888 / 1810,
  6275. bottom: 0.05
  6276. }
  6277. },
  6278. slithering: {
  6279. height: math.unit(6, "feet"),
  6280. weight: math.unit(300, "lbs"),
  6281. name: "Slithering",
  6282. image: {
  6283. source: "./media/characters/psymon/slithering.svg",
  6284. extra: 1330 / 1224
  6285. }
  6286. },
  6287. slitheringAlt: {
  6288. height: math.unit(6, "feet"),
  6289. weight: math.unit(300, "lbs"),
  6290. name: "Slithering (Alt)",
  6291. image: {
  6292. source: "./media/characters/psymon/slithering-alt.svg",
  6293. extra: 1330 / 1224
  6294. }
  6295. },
  6296. },
  6297. [
  6298. {
  6299. name: "Normal",
  6300. height: math.unit(11.25, "feet"),
  6301. default: true
  6302. },
  6303. {
  6304. name: "Large",
  6305. height: math.unit(27, "feet")
  6306. },
  6307. {
  6308. name: "Giant",
  6309. height: math.unit(87, "feet")
  6310. },
  6311. {
  6312. name: "Macro",
  6313. height: math.unit(365, "feet")
  6314. },
  6315. {
  6316. name: "Megamacro",
  6317. height: math.unit(3, "miles")
  6318. },
  6319. {
  6320. name: "World Serpent",
  6321. height: math.unit(8000, "miles")
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(6, "feet"),
  6330. weight: math.unit(180, "lbs"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/daimos/front.svg",
  6334. extra: 4160 / 3897,
  6335. bottom: 0.021
  6336. }
  6337. }
  6338. },
  6339. [
  6340. {
  6341. name: "Normal",
  6342. height: math.unit(8, "feet"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Big Dog",
  6347. height: math.unit(22, "feet")
  6348. },
  6349. {
  6350. name: "Macro",
  6351. height: math.unit(127, "feet")
  6352. },
  6353. {
  6354. name: "Megamacro",
  6355. height: math.unit(3600, "feet")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6361. {
  6362. side: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(180, "lbs"),
  6365. name: "Side",
  6366. image: {
  6367. source: "./media/characters/blake/side.svg",
  6368. extra: 1212 / 1120,
  6369. bottom: 0.05
  6370. }
  6371. },
  6372. crouched: {
  6373. height: math.unit(6 * 0.57, "feet"),
  6374. weight: math.unit(180, "lbs"),
  6375. name: "Crouched",
  6376. image: {
  6377. source: "./media/characters/blake/crouched.svg",
  6378. extra: 840 / 587,
  6379. bottom: 0.04
  6380. }
  6381. },
  6382. bent: {
  6383. height: math.unit(6 * 0.75, "feet"),
  6384. weight: math.unit(180, "lbs"),
  6385. name: "Bent",
  6386. image: {
  6387. source: "./media/characters/blake/bent.svg",
  6388. extra: 592 / 544,
  6389. bottom: 0.035
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(8 + 1 / 6, "feet"),
  6397. default: true
  6398. },
  6399. {
  6400. name: "Big Backside",
  6401. height: math.unit(37, "feet")
  6402. },
  6403. {
  6404. name: "Subway Shredder",
  6405. height: math.unit(72, "feet")
  6406. },
  6407. {
  6408. name: "City Carver",
  6409. height: math.unit(1675, "feet")
  6410. },
  6411. {
  6412. name: "Tectonic Tweaker",
  6413. height: math.unit(2300, "miles")
  6414. },
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(180, "lbs"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/guisetto/front.svg",
  6426. extra: 856 / 817,
  6427. bottom: 0.06
  6428. }
  6429. },
  6430. airborne: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(180, "lbs"),
  6433. name: "Airborne",
  6434. image: {
  6435. source: "./media/characters/guisetto/airborne.svg",
  6436. extra: 584 / 525
  6437. }
  6438. },
  6439. },
  6440. [
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(10 + 11 / 12, "feet"),
  6444. default: true
  6445. },
  6446. {
  6447. name: "Large",
  6448. height: math.unit(35, "feet")
  6449. },
  6450. {
  6451. name: "Macro",
  6452. height: math.unit(475, "feet")
  6453. },
  6454. ]
  6455. ))
  6456. characterMakers.push(() => makeCharacter(
  6457. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6458. {
  6459. front: {
  6460. height: math.unit(6, "feet"),
  6461. weight: math.unit(180, "lbs"),
  6462. name: "Front",
  6463. image: {
  6464. source: "./media/characters/luxor/front.svg",
  6465. extra: 2940 / 2152
  6466. }
  6467. },
  6468. back: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(180, "lbs"),
  6471. name: "Back",
  6472. image: {
  6473. source: "./media/characters/luxor/back.svg",
  6474. extra: 1083 / 960
  6475. }
  6476. },
  6477. },
  6478. [
  6479. {
  6480. name: "Normal",
  6481. height: math.unit(5 + 5 / 6, "feet"),
  6482. default: true
  6483. },
  6484. {
  6485. name: "Lamp",
  6486. height: math.unit(50, "feet")
  6487. },
  6488. {
  6489. name: "Lämp",
  6490. height: math.unit(300, "feet")
  6491. },
  6492. {
  6493. name: "The sun is a lamp",
  6494. height: math.unit(250000, "miles")
  6495. },
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6500. {
  6501. front: {
  6502. height: math.unit(6, "feet"),
  6503. weight: math.unit(50, "lbs"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/huoyan/front.svg"
  6507. }
  6508. },
  6509. side: {
  6510. height: math.unit(6, "feet"),
  6511. weight: math.unit(180, "lbs"),
  6512. name: "Side",
  6513. image: {
  6514. source: "./media/characters/huoyan/side.svg"
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Chef",
  6521. height: math.unit(9, "feet")
  6522. },
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(65, "feet"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Macro",
  6530. height: math.unit(780, "feet")
  6531. },
  6532. {
  6533. name: "Flaming Mountain",
  6534. height: math.unit(4.8, "miles")
  6535. },
  6536. {
  6537. name: "Celestial",
  6538. height: math.unit(765000, "miles")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(5 + 3 / 4, "feet"),
  6547. weight: math.unit(120, "lbs"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/tails/front.svg"
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(5 + 3 / 4, "feet"),
  6558. default: true
  6559. }
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(4, "feet"),
  6567. weight: math.unit(50, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/rainy/front.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(800, "feet"),
  6578. default: true
  6579. }
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(150, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/rainier/front.svg"
  6591. }
  6592. }
  6593. },
  6594. [
  6595. {
  6596. name: "Micro",
  6597. height: math.unit(2, "mm"),
  6598. default: true
  6599. }
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(8 + 4/12, "feet"),
  6607. weight: math.unit(450, "kilograms"),
  6608. volume: math.unit(5, "cups"),
  6609. name: "Front",
  6610. image: {
  6611. source: "./media/characters/andy-renard/front.svg",
  6612. extra: 1839/1726,
  6613. bottom: 134/1973
  6614. }
  6615. },
  6616. back: {
  6617. height: math.unit(8 + 4/12, "feet"),
  6618. weight: math.unit(450, "kilograms"),
  6619. volume: math.unit(5, "cups"),
  6620. name: "Back",
  6621. image: {
  6622. source: "./media/characters/andy-renard/back.svg",
  6623. extra: 1838/1710,
  6624. bottom: 105/1943
  6625. }
  6626. },
  6627. },
  6628. [
  6629. {
  6630. name: "Tall",
  6631. height: math.unit(8 + 4/12, "feet")
  6632. },
  6633. {
  6634. name: "Mini Macro",
  6635. height: math.unit(15, "feet"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(100, "feet")
  6641. },
  6642. {
  6643. name: "Mega Macro",
  6644. height: math.unit(1000, "feet")
  6645. },
  6646. {
  6647. name: "Giga Macro",
  6648. height: math.unit(10, "miles")
  6649. },
  6650. {
  6651. name: "God Macro",
  6652. height: math.unit(1, "multiverse")
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6658. {
  6659. front: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(210, "lbs"),
  6662. name: "Front",
  6663. image: {
  6664. source: "./media/characters/cimmaron/front-sfw.svg",
  6665. extra: 701 / 676,
  6666. bottom: 0.046
  6667. }
  6668. },
  6669. back: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(210, "lbs"),
  6672. name: "Back",
  6673. image: {
  6674. source: "./media/characters/cimmaron/back-sfw.svg",
  6675. extra: 701 / 676,
  6676. bottom: 0.046
  6677. }
  6678. },
  6679. frontNsfw: {
  6680. height: math.unit(6, "feet"),
  6681. weight: math.unit(210, "lbs"),
  6682. name: "Front (NSFW)",
  6683. image: {
  6684. source: "./media/characters/cimmaron/front-nsfw.svg",
  6685. extra: 701 / 676,
  6686. bottom: 0.046
  6687. }
  6688. },
  6689. backNsfw: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(210, "lbs"),
  6692. name: "Back (NSFW)",
  6693. image: {
  6694. source: "./media/characters/cimmaron/back-nsfw.svg",
  6695. extra: 701 / 676,
  6696. bottom: 0.046
  6697. }
  6698. },
  6699. dick: {
  6700. height: math.unit(1.714, "feet"),
  6701. name: "Dick",
  6702. image: {
  6703. source: "./media/characters/cimmaron/dick.svg"
  6704. }
  6705. },
  6706. },
  6707. [
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(6, "feet"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Macro Mayor",
  6715. height: math.unit(350, "meters")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(200, "lbs"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/akari/front.svg",
  6728. extra: 962 / 901,
  6729. bottom: 0.04
  6730. }
  6731. }
  6732. },
  6733. [
  6734. {
  6735. name: "Micro",
  6736. height: math.unit(5, "inches"),
  6737. default: true
  6738. },
  6739. {
  6740. name: "Normal",
  6741. height: math.unit(7, "feet")
  6742. },
  6743. ]
  6744. ))
  6745. characterMakers.push(() => makeCharacter(
  6746. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6747. {
  6748. front: {
  6749. height: math.unit(6, "feet"),
  6750. weight: math.unit(140, "lbs"),
  6751. name: "Front",
  6752. image: {
  6753. source: "./media/characters/cynosura/front.svg",
  6754. extra: 437/410,
  6755. bottom: 9/446
  6756. }
  6757. },
  6758. back: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(140, "lbs"),
  6761. name: "Back",
  6762. image: {
  6763. source: "./media/characters/cynosura/back.svg",
  6764. extra: 1304/1160,
  6765. bottom: 71/1375
  6766. }
  6767. },
  6768. },
  6769. [
  6770. {
  6771. name: "Micro",
  6772. height: math.unit(4, "inches")
  6773. },
  6774. {
  6775. name: "Normal",
  6776. height: math.unit(5.75, "feet"),
  6777. default: true
  6778. },
  6779. {
  6780. name: "Tall",
  6781. height: math.unit(10, "feet")
  6782. },
  6783. {
  6784. name: "Big",
  6785. height: math.unit(20, "feet")
  6786. },
  6787. {
  6788. name: "Macro",
  6789. height: math.unit(50, "feet")
  6790. },
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6795. {
  6796. front: {
  6797. height: math.unit(13 + 2/12, "feet"),
  6798. weight: math.unit(800, "kg"),
  6799. name: "Front",
  6800. image: {
  6801. source: "./media/characters/gin/front.svg",
  6802. extra: 1312/1191,
  6803. bottom: 45/1357
  6804. }
  6805. },
  6806. mouth: {
  6807. height: math.unit(2.39 * 1.8, "feet"),
  6808. name: "Mouth",
  6809. image: {
  6810. source: "./media/characters/gin/mouth.svg"
  6811. }
  6812. },
  6813. hand: {
  6814. height: math.unit(1.57 * 2.19, "feet"),
  6815. name: "Hand",
  6816. image: {
  6817. source: "./media/characters/gin/hand.svg"
  6818. }
  6819. },
  6820. foot: {
  6821. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6822. name: "Foot",
  6823. image: {
  6824. source: "./media/characters/gin/foot.svg"
  6825. }
  6826. },
  6827. sole: {
  6828. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6829. name: "Sole",
  6830. image: {
  6831. source: "./media/characters/gin/sole.svg"
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Very Small",
  6838. height: math.unit(13 + 2 / 12, "feet")
  6839. },
  6840. {
  6841. name: "Micro",
  6842. height: math.unit(600, "miles")
  6843. },
  6844. {
  6845. name: "Regular",
  6846. height: math.unit(20, "earths"),
  6847. default: true
  6848. },
  6849. {
  6850. name: "Macro",
  6851. height: math.unit(2.2, "solarradii")
  6852. },
  6853. {
  6854. name: "Teramacro",
  6855. height: math.unit(1.2, "galaxies")
  6856. },
  6857. {
  6858. name: "Omegamacro",
  6859. height: math.unit(200, "universes")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6865. {
  6866. front: {
  6867. height: math.unit(6 + 1 / 6, "feet"),
  6868. weight: math.unit(178, "lbs"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/guy/front.svg"
  6872. }
  6873. }
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(6 + 1 / 6, "feet"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Large",
  6883. height: math.unit(25 + 7 / 12, "feet")
  6884. },
  6885. {
  6886. name: "Macro",
  6887. height: math.unit(60 + 9 / 12, "feet")
  6888. },
  6889. {
  6890. name: "Macro+",
  6891. height: math.unit(246, "feet")
  6892. },
  6893. {
  6894. name: "Macro++",
  6895. height: math.unit(878, "feet")
  6896. }
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(9, "feet"),
  6904. weight: math.unit(800, "lbs"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/tiberius/front.svg",
  6908. extra: 2295 / 2071
  6909. }
  6910. },
  6911. back: {
  6912. height: math.unit(9, "feet"),
  6913. weight: math.unit(800, "lbs"),
  6914. name: "Back",
  6915. image: {
  6916. source: "./media/characters/tiberius/back.svg",
  6917. extra: 2373 / 2160
  6918. }
  6919. },
  6920. },
  6921. [
  6922. {
  6923. name: "Normal",
  6924. height: math.unit(9, "feet"),
  6925. default: true
  6926. }
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6931. {
  6932. front: {
  6933. height: math.unit(6, "feet"),
  6934. weight: math.unit(600, "lbs"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/surgo/front.svg",
  6938. extra: 3591 / 2227
  6939. }
  6940. },
  6941. back: {
  6942. height: math.unit(6, "feet"),
  6943. weight: math.unit(600, "lbs"),
  6944. name: "Back",
  6945. image: {
  6946. source: "./media/characters/surgo/back.svg",
  6947. extra: 3557 / 2228
  6948. }
  6949. },
  6950. laying: {
  6951. height: math.unit(6 * 0.85, "feet"),
  6952. weight: math.unit(600, "lbs"),
  6953. name: "Laying",
  6954. image: {
  6955. source: "./media/characters/surgo/laying.svg"
  6956. }
  6957. },
  6958. },
  6959. [
  6960. {
  6961. name: "Normal",
  6962. height: math.unit(6, "feet"),
  6963. default: true
  6964. }
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6969. {
  6970. side: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(150, "lbs"),
  6973. name: "Side",
  6974. image: {
  6975. source: "./media/characters/cibus/side.svg",
  6976. extra: 800 / 400
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Normal",
  6983. height: math.unit(6, "feet"),
  6984. default: true
  6985. }
  6986. ]
  6987. ))
  6988. characterMakers.push(() => makeCharacter(
  6989. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6990. {
  6991. front: {
  6992. height: math.unit(6, "feet"),
  6993. weight: math.unit(240, "lbs"),
  6994. name: "Front",
  6995. image: {
  6996. source: "./media/characters/nibbles/front.svg"
  6997. }
  6998. },
  6999. side: {
  7000. height: math.unit(6, "feet"),
  7001. weight: math.unit(240, "lbs"),
  7002. name: "Side",
  7003. image: {
  7004. source: "./media/characters/nibbles/side.svg"
  7005. }
  7006. },
  7007. },
  7008. [
  7009. {
  7010. name: "Normal",
  7011. height: math.unit(9, "feet"),
  7012. default: true
  7013. }
  7014. ]
  7015. ))
  7016. characterMakers.push(() => makeCharacter(
  7017. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7018. {
  7019. side: {
  7020. height: math.unit(5 + 1 / 6, "feet"),
  7021. weight: math.unit(130, "lbs"),
  7022. name: "Side",
  7023. image: {
  7024. source: "./media/characters/rikky/side.svg",
  7025. extra: 851 / 801
  7026. }
  7027. },
  7028. },
  7029. [
  7030. {
  7031. name: "Normal",
  7032. height: math.unit(5 + 1 / 6, "feet")
  7033. },
  7034. {
  7035. name: "Macro",
  7036. height: math.unit(152, "feet"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Megamacro",
  7041. height: math.unit(7, "miles")
  7042. }
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7047. {
  7048. side: {
  7049. height: math.unit(370, "cm"),
  7050. weight: math.unit(350, "lbs"),
  7051. name: "Side",
  7052. image: {
  7053. source: "./media/characters/malfressa/side.svg"
  7054. }
  7055. },
  7056. walking: {
  7057. height: math.unit(370, "cm"),
  7058. weight: math.unit(350, "lbs"),
  7059. name: "Walking",
  7060. image: {
  7061. source: "./media/characters/malfressa/walking.svg"
  7062. }
  7063. },
  7064. feral: {
  7065. height: math.unit(2500, "cm"),
  7066. weight: math.unit(100000, "lbs"),
  7067. name: "Feral",
  7068. image: {
  7069. source: "./media/characters/malfressa/feral.svg",
  7070. extra: 2108 / 837,
  7071. bottom: 0.02
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(370, "cm")
  7079. },
  7080. {
  7081. name: "Macro",
  7082. height: math.unit(300, "meters"),
  7083. default: true
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(60, "kg"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/jaro/front.svg",
  7096. extra: 845/817,
  7097. bottom: 45/890
  7098. }
  7099. },
  7100. back: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(60, "kg"),
  7103. name: "Back",
  7104. image: {
  7105. source: "./media/characters/jaro/back.svg",
  7106. extra: 847/817,
  7107. bottom: 34/881
  7108. }
  7109. },
  7110. },
  7111. [
  7112. {
  7113. name: "Micro",
  7114. height: math.unit(7, "inches")
  7115. },
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(5.5, "feet"),
  7119. default: true
  7120. },
  7121. {
  7122. name: "Minimacro",
  7123. height: math.unit(20, "feet")
  7124. },
  7125. {
  7126. name: "Macro",
  7127. height: math.unit(200, "meters")
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(195, "lb"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/rogue/front.svg"
  7140. }
  7141. },
  7142. },
  7143. [
  7144. {
  7145. name: "Macro",
  7146. height: math.unit(90, "feet"),
  7147. default: true
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7153. {
  7154. standing: {
  7155. height: math.unit(5 + 8 / 12, "feet"),
  7156. weight: math.unit(140, "lb"),
  7157. name: "Standing",
  7158. image: {
  7159. source: "./media/characters/piper/standing.svg",
  7160. extra: 1440/1284,
  7161. bottom: 66/1506
  7162. }
  7163. },
  7164. running: {
  7165. height: math.unit(5 + 8 / 12, "feet"),
  7166. weight: math.unit(140, "lb"),
  7167. name: "Running",
  7168. image: {
  7169. source: "./media/characters/piper/running.svg",
  7170. extra: 3948/3655,
  7171. bottom: 0/3948
  7172. }
  7173. },
  7174. sole: {
  7175. height: math.unit(0.81, "feet"),
  7176. weight: math.unit(2, "kg"),
  7177. name: "Sole",
  7178. image: {
  7179. source: "./media/characters/piper/sole.svg"
  7180. }
  7181. },
  7182. nipple: {
  7183. height: math.unit(0.25, "feet"),
  7184. weight: math.unit(1.5, "lb"),
  7185. name: "Nipple",
  7186. image: {
  7187. source: "./media/characters/piper/nipple.svg"
  7188. }
  7189. },
  7190. head: {
  7191. height: math.unit(1.1, "feet"),
  7192. name: "Head",
  7193. image: {
  7194. source: "./media/characters/piper/head.svg"
  7195. }
  7196. },
  7197. },
  7198. [
  7199. {
  7200. name: "Micro",
  7201. height: math.unit(2, "inches")
  7202. },
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(5 + 8 / 12, "feet")
  7206. },
  7207. {
  7208. name: "Macro",
  7209. height: math.unit(250, "feet"),
  7210. default: true
  7211. },
  7212. {
  7213. name: "Megamacro",
  7214. height: math.unit(7, "miles")
  7215. },
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7220. {
  7221. front: {
  7222. height: math.unit(6, "feet"),
  7223. weight: math.unit(220, "lb"),
  7224. name: "Front",
  7225. image: {
  7226. source: "./media/characters/gemini/front.svg"
  7227. }
  7228. },
  7229. back: {
  7230. height: math.unit(6, "feet"),
  7231. weight: math.unit(220, "lb"),
  7232. name: "Back",
  7233. image: {
  7234. source: "./media/characters/gemini/back.svg"
  7235. }
  7236. },
  7237. kneeling: {
  7238. height: math.unit(6 / 1.5, "feet"),
  7239. weight: math.unit(220, "lb"),
  7240. name: "Kneeling",
  7241. image: {
  7242. source: "./media/characters/gemini/kneeling.svg",
  7243. bottom: 0.02
  7244. }
  7245. },
  7246. },
  7247. [
  7248. {
  7249. name: "Macro",
  7250. height: math.unit(300, "meters"),
  7251. default: true
  7252. },
  7253. {
  7254. name: "Megamacro",
  7255. height: math.unit(6900, "meters")
  7256. },
  7257. ]
  7258. ))
  7259. characterMakers.push(() => makeCharacter(
  7260. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7261. {
  7262. anthro: {
  7263. height: math.unit(2.35, "meters"),
  7264. weight: math.unit(73, "kg"),
  7265. name: "Anthro",
  7266. image: {
  7267. source: "./media/characters/alicia/anthro.svg",
  7268. extra: 2571 / 2385,
  7269. bottom: 75 / 2648
  7270. }
  7271. },
  7272. paw: {
  7273. height: math.unit(1.32, "feet"),
  7274. name: "Paw",
  7275. image: {
  7276. source: "./media/characters/alicia/paw.svg"
  7277. }
  7278. },
  7279. feral: {
  7280. height: math.unit(1.69, "meters"),
  7281. weight: math.unit(73, "kg"),
  7282. name: "Feral",
  7283. image: {
  7284. source: "./media/characters/alicia/feral.svg",
  7285. extra: 2123 / 1715,
  7286. bottom: 222 / 2349
  7287. }
  7288. },
  7289. },
  7290. [
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(2.35, "meters")
  7294. },
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(60, "meters"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Megamacro",
  7302. height: math.unit(10000, "kilometers")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(7, "feet"),
  7311. weight: math.unit(250, "lbs"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/archy/front.svg"
  7315. }
  7316. }
  7317. },
  7318. [
  7319. {
  7320. name: "Micro",
  7321. height: math.unit(1, "inch")
  7322. },
  7323. {
  7324. name: "Shorty",
  7325. height: math.unit(5, "feet")
  7326. },
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(7, "feet")
  7330. },
  7331. {
  7332. name: "Macro",
  7333. height: math.unit(600, "meters"),
  7334. default: true
  7335. },
  7336. {
  7337. name: "Megamacro",
  7338. height: math.unit(1, "mile")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(1.65, "meters"),
  7347. weight: math.unit(74, "kg"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/berri/front.svg",
  7351. extra: 857 / 837,
  7352. bottom: 18 / 877
  7353. }
  7354. },
  7355. bum: {
  7356. height: math.unit(1.46, "feet"),
  7357. name: "Bum",
  7358. image: {
  7359. source: "./media/characters/berri/bum.svg"
  7360. }
  7361. },
  7362. mouth: {
  7363. height: math.unit(0.44, "feet"),
  7364. name: "Mouth",
  7365. image: {
  7366. source: "./media/characters/berri/mouth.svg"
  7367. }
  7368. },
  7369. paw: {
  7370. height: math.unit(0.826, "feet"),
  7371. name: "Paw",
  7372. image: {
  7373. source: "./media/characters/berri/paw.svg"
  7374. }
  7375. },
  7376. },
  7377. [
  7378. {
  7379. name: "Normal",
  7380. height: math.unit(1.65, "meters")
  7381. },
  7382. {
  7383. name: "Macro",
  7384. height: math.unit(60, "m"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Megamacro",
  7389. height: math.unit(9.213, "km")
  7390. },
  7391. {
  7392. name: "Planet Eater",
  7393. height: math.unit(489, "megameters")
  7394. },
  7395. {
  7396. name: "Teramacro",
  7397. height: math.unit(2471635000000, "meters")
  7398. },
  7399. {
  7400. name: "Examacro",
  7401. height: math.unit(8.0624e+26, "meters")
  7402. }
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(1.72, "meters"),
  7410. weight: math.unit(68, "kg"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/lexi/front.svg"
  7414. }
  7415. }
  7416. },
  7417. [
  7418. {
  7419. name: "Very Smol",
  7420. height: math.unit(10, "mm")
  7421. },
  7422. {
  7423. name: "Micro",
  7424. height: math.unit(6.8, "cm"),
  7425. default: true
  7426. },
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(1.72, "m")
  7430. }
  7431. ]
  7432. ))
  7433. characterMakers.push(() => makeCharacter(
  7434. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7435. {
  7436. front: {
  7437. height: math.unit(1.69, "meters"),
  7438. weight: math.unit(68, "kg"),
  7439. name: "Front",
  7440. image: {
  7441. source: "./media/characters/martin/front.svg",
  7442. extra: 596 / 581
  7443. }
  7444. }
  7445. },
  7446. [
  7447. {
  7448. name: "Micro",
  7449. height: math.unit(6.85, "cm"),
  7450. default: true
  7451. },
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(1.69, "m")
  7455. }
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(1.69, "meters"),
  7463. weight: math.unit(68, "kg"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/juno/front.svg"
  7467. }
  7468. }
  7469. },
  7470. [
  7471. {
  7472. name: "Micro",
  7473. height: math.unit(7, "cm")
  7474. },
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(1.89, "m")
  7478. },
  7479. {
  7480. name: "Macro",
  7481. height: math.unit(353, "meters"),
  7482. default: true
  7483. }
  7484. ]
  7485. ))
  7486. characterMakers.push(() => makeCharacter(
  7487. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7488. {
  7489. front: {
  7490. height: math.unit(1.93, "meters"),
  7491. weight: math.unit(83, "kg"),
  7492. name: "Front",
  7493. image: {
  7494. source: "./media/characters/samantha/front.svg"
  7495. }
  7496. },
  7497. frontClothed: {
  7498. height: math.unit(1.93, "meters"),
  7499. weight: math.unit(83, "kg"),
  7500. name: "Front (Clothed)",
  7501. image: {
  7502. source: "./media/characters/samantha/front-clothed.svg"
  7503. }
  7504. },
  7505. back: {
  7506. height: math.unit(1.93, "meters"),
  7507. weight: math.unit(83, "kg"),
  7508. name: "Back",
  7509. image: {
  7510. source: "./media/characters/samantha/back.svg"
  7511. }
  7512. },
  7513. },
  7514. [
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(1.93, "m")
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(74, "meters"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Macro+",
  7526. height: math.unit(223, "meters"),
  7527. },
  7528. {
  7529. name: "Megamacro",
  7530. height: math.unit(8381, "meters"),
  7531. },
  7532. {
  7533. name: "Megamacro+",
  7534. height: math.unit(12000, "kilometers")
  7535. },
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7540. {
  7541. front: {
  7542. height: math.unit(1.92, "meters"),
  7543. weight: math.unit(80, "kg"),
  7544. name: "Front",
  7545. image: {
  7546. source: "./media/characters/dr-clay/front.svg"
  7547. }
  7548. },
  7549. frontClothed: {
  7550. height: math.unit(1.92, "meters"),
  7551. weight: math.unit(80, "kg"),
  7552. name: "Front (Clothed)",
  7553. image: {
  7554. source: "./media/characters/dr-clay/front-clothed.svg"
  7555. }
  7556. }
  7557. },
  7558. [
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(1.92, "m")
  7562. },
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(214, "meters"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Macro+",
  7570. height: math.unit(12.237, "meters"),
  7571. },
  7572. {
  7573. name: "Megamacro",
  7574. height: math.unit(557, "megameters"),
  7575. },
  7576. {
  7577. name: "Unimaginable",
  7578. height: math.unit(120e9, "lightyears")
  7579. },
  7580. ]
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7584. {
  7585. front: {
  7586. height: math.unit(2, "meters"),
  7587. weight: math.unit(80, "kg"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7591. }
  7592. }
  7593. },
  7594. [
  7595. {
  7596. name: "Teramacro",
  7597. height: math.unit(500000, "lightyears"),
  7598. default: true
  7599. },
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7604. {
  7605. crux: {
  7606. height: math.unit(2, "meters"),
  7607. weight: math.unit(150, "kg"),
  7608. name: "Crux",
  7609. image: {
  7610. source: "./media/characters/vemus/crux.svg",
  7611. extra: 1074/936,
  7612. bottom: 23/1097
  7613. }
  7614. },
  7615. skunkTanuki: {
  7616. height: math.unit(2, "meters"),
  7617. weight: math.unit(150, "kg"),
  7618. name: "Skunk-Tanuki",
  7619. image: {
  7620. source: "./media/characters/vemus/skunk-tanuki.svg",
  7621. extra: 926/893,
  7622. bottom: 20/946
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(4, "meters"),
  7630. default: true
  7631. },
  7632. {
  7633. name: "Big",
  7634. height: math.unit(8, "meters")
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(100, "meters")
  7639. },
  7640. {
  7641. name: "Macro+",
  7642. height: math.unit(1500, "meters")
  7643. },
  7644. {
  7645. name: "Stellar",
  7646. height: math.unit(14e8, "meters")
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7652. {
  7653. front: {
  7654. height: math.unit(2, "meters"),
  7655. weight: math.unit(70, "kg"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/beherit/front.svg",
  7659. extra: 1234/1109,
  7660. bottom: 55/1289
  7661. }
  7662. }
  7663. },
  7664. [
  7665. {
  7666. name: "Normal",
  7667. height: math.unit(6, "feet")
  7668. },
  7669. {
  7670. name: "Lorg",
  7671. height: math.unit(25, "feet"),
  7672. default: true
  7673. },
  7674. {
  7675. name: "Lorger",
  7676. height: math.unit(75, "feet")
  7677. },
  7678. {
  7679. name: "Macro",
  7680. height: math.unit(200, "meters")
  7681. },
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7686. {
  7687. front: {
  7688. height: math.unit(2, "meters"),
  7689. weight: math.unit(150, "kg"),
  7690. name: "Front",
  7691. image: {
  7692. source: "./media/characters/everett/front.svg",
  7693. extra: 1017/866,
  7694. bottom: 86/1103
  7695. }
  7696. },
  7697. paw: {
  7698. height: math.unit(2 / 3.6, "meters"),
  7699. name: "Paw",
  7700. image: {
  7701. source: "./media/characters/everett/paw.svg"
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(15, "feet"),
  7709. default: true
  7710. },
  7711. {
  7712. name: "Lorg",
  7713. height: math.unit(70, "feet"),
  7714. default: true
  7715. },
  7716. {
  7717. name: "Lorger",
  7718. height: math.unit(250, "feet")
  7719. },
  7720. {
  7721. name: "Macro",
  7722. height: math.unit(500, "meters")
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7728. {
  7729. front: {
  7730. height: math.unit(2, "meters"),
  7731. weight: math.unit(86, "kg"),
  7732. name: "Front",
  7733. image: {
  7734. source: "./media/characters/rose/front.svg",
  7735. extra: 1785/1636,
  7736. bottom: 30/1815
  7737. },
  7738. form: "liom",
  7739. default: true
  7740. },
  7741. frontSporty: {
  7742. height: math.unit(2, "meters"),
  7743. weight: math.unit(86, "kg"),
  7744. name: "Front (Sporty)",
  7745. image: {
  7746. source: "./media/characters/rose/front-sporty.svg",
  7747. extra: 350/335,
  7748. bottom: 10/360
  7749. },
  7750. form: "liom"
  7751. },
  7752. frontAlt: {
  7753. height: math.unit(1.6, "meters"),
  7754. weight: math.unit(86, "kg"),
  7755. name: "Front (Alt)",
  7756. image: {
  7757. source: "./media/characters/rose/front-alt.svg",
  7758. extra: 299/283,
  7759. bottom: 3/302
  7760. },
  7761. form: "liom"
  7762. },
  7763. plush: {
  7764. height: math.unit(2, "meters"),
  7765. weight: math.unit(86/3, "kg"),
  7766. name: "Plush",
  7767. image: {
  7768. source: "./media/characters/rose/plush.svg",
  7769. extra: 361/337,
  7770. bottom: 11/372
  7771. },
  7772. form: "plush",
  7773. default: true
  7774. },
  7775. faeStanding: {
  7776. height: math.unit(10, "cm"),
  7777. weight: math.unit(10, "grams"),
  7778. name: "Standing",
  7779. image: {
  7780. source: "./media/characters/rose/fae-standing.svg",
  7781. extra: 1189/1060,
  7782. bottom: 27/1216
  7783. },
  7784. form: "fae",
  7785. default: true
  7786. },
  7787. faeSitting: {
  7788. height: math.unit(5, "cm"),
  7789. weight: math.unit(10, "grams"),
  7790. name: "Sitting",
  7791. image: {
  7792. source: "./media/characters/rose/fae-sitting.svg",
  7793. extra: 737/577,
  7794. bottom: 356/1093
  7795. },
  7796. form: "fae"
  7797. },
  7798. faePaw: {
  7799. height: math.unit(1.35, "cm"),
  7800. name: "Paw",
  7801. image: {
  7802. source: "./media/characters/rose/fae-paw.svg"
  7803. },
  7804. form: "fae"
  7805. },
  7806. },
  7807. [
  7808. {
  7809. name: "True Micro",
  7810. height: math.unit(9, "cm"),
  7811. form: "liom"
  7812. },
  7813. {
  7814. name: "Micro",
  7815. height: math.unit(16, "cm"),
  7816. form: "liom"
  7817. },
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(1.85, "meters"),
  7821. default: true,
  7822. form: "liom"
  7823. },
  7824. {
  7825. name: "Mini-Macro",
  7826. height: math.unit(5, "meters"),
  7827. form: "liom"
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(15, "meters"),
  7832. form: "liom"
  7833. },
  7834. {
  7835. name: "True Macro",
  7836. height: math.unit(40, "meters"),
  7837. form: "liom"
  7838. },
  7839. {
  7840. name: "City Scale",
  7841. height: math.unit(1, "km"),
  7842. form: "liom"
  7843. },
  7844. {
  7845. name: "Plushie",
  7846. height: math.unit(9, "cm"),
  7847. form: "plush",
  7848. default: true
  7849. },
  7850. {
  7851. name: "Fae",
  7852. height: math.unit(10, "cm"),
  7853. form: "fae",
  7854. default: true
  7855. },
  7856. ],
  7857. {
  7858. "liom": {
  7859. name: "Liom"
  7860. },
  7861. "plush": {
  7862. name: "Plush"
  7863. },
  7864. "fae": {
  7865. name: "Fae Fox",
  7866. default: true
  7867. }
  7868. }
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(2, "meters"),
  7875. weight: math.unit(350, "lbs"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/regal/front.svg"
  7879. }
  7880. },
  7881. back: {
  7882. height: math.unit(2, "meters"),
  7883. weight: math.unit(350, "lbs"),
  7884. name: "Back",
  7885. image: {
  7886. source: "./media/characters/regal/back.svg"
  7887. }
  7888. },
  7889. },
  7890. [
  7891. {
  7892. name: "Macro",
  7893. height: math.unit(350, "feet"),
  7894. default: true
  7895. }
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(4 + 11 / 12, "feet"),
  7903. weight: math.unit(100, "lbs"),
  7904. name: "Front",
  7905. image: {
  7906. source: "./media/characters/opal/front.svg"
  7907. }
  7908. },
  7909. frontAlt: {
  7910. height: math.unit(4 + 11 / 12, "feet"),
  7911. weight: math.unit(100, "lbs"),
  7912. name: "Front (Alt)",
  7913. image: {
  7914. source: "./media/characters/opal/front-alt.svg"
  7915. }
  7916. },
  7917. },
  7918. [
  7919. {
  7920. name: "Small",
  7921. height: math.unit(4 + 11 / 12, "feet")
  7922. },
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(20, "feet"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Macro",
  7930. height: math.unit(120, "feet")
  7931. },
  7932. {
  7933. name: "Megamacro",
  7934. height: math.unit(80, "miles")
  7935. },
  7936. {
  7937. name: "True Size",
  7938. height: math.unit(100000, "lightyears")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(200, "lbs"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/vector-wuff/front.svg"
  7951. }
  7952. }
  7953. },
  7954. [
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(2.8, "meters")
  7958. },
  7959. {
  7960. name: "Macro",
  7961. height: math.unit(450, "meters"),
  7962. default: true
  7963. },
  7964. {
  7965. name: "Megamacro",
  7966. height: math.unit(15, "kilometers")
  7967. }
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(6, "feet"),
  7975. weight: math.unit(256, "lbs"),
  7976. name: "Front",
  7977. image: {
  7978. source: "./media/characters/dannik/front.svg"
  7979. }
  7980. }
  7981. },
  7982. [
  7983. {
  7984. name: "Macro",
  7985. height: math.unit(69.57, "meters"),
  7986. default: true
  7987. },
  7988. ]
  7989. ))
  7990. characterMakers.push(() => makeCharacter(
  7991. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7992. {
  7993. front: {
  7994. height: math.unit(6, "feet"),
  7995. weight: math.unit(120, "lbs"),
  7996. name: "Front",
  7997. image: {
  7998. source: "./media/characters/azura-saharah/front.svg"
  7999. }
  8000. },
  8001. back: {
  8002. height: math.unit(6, "feet"),
  8003. weight: math.unit(120, "lbs"),
  8004. name: "Back",
  8005. image: {
  8006. source: "./media/characters/azura-saharah/back.svg"
  8007. }
  8008. },
  8009. },
  8010. [
  8011. {
  8012. name: "Macro",
  8013. height: math.unit(100, "feet"),
  8014. default: true
  8015. },
  8016. ]
  8017. ))
  8018. characterMakers.push(() => makeCharacter(
  8019. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8020. {
  8021. side: {
  8022. height: math.unit(5 + 4 / 12, "feet"),
  8023. weight: math.unit(163, "lbs"),
  8024. name: "Side",
  8025. image: {
  8026. source: "./media/characters/kennedy/side.svg"
  8027. }
  8028. }
  8029. },
  8030. [
  8031. {
  8032. name: "Standard Doggo",
  8033. height: math.unit(5 + 4 / 12, "feet")
  8034. },
  8035. {
  8036. name: "Big Doggo",
  8037. height: math.unit(25 + 3 / 12, "feet"),
  8038. default: true
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(5 + 5/12, "feet"),
  8047. weight: math.unit(100, "lbs"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/odios-de-lunar/front.svg",
  8051. extra: 1468/1323,
  8052. bottom: 22/1490
  8053. }
  8054. }
  8055. },
  8056. [
  8057. {
  8058. name: "Micro",
  8059. height: math.unit(3, "inches")
  8060. },
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(5.5, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(100, "feet")
  8069. },
  8070. ]
  8071. ))
  8072. characterMakers.push(() => makeCharacter(
  8073. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8074. {
  8075. back: {
  8076. height: math.unit(6, "feet"),
  8077. weight: math.unit(220, "lbs"),
  8078. name: "Back",
  8079. image: {
  8080. source: "./media/characters/mandake/back.svg"
  8081. }
  8082. }
  8083. },
  8084. [
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(7, "feet"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Macro",
  8092. height: math.unit(78, "feet")
  8093. },
  8094. {
  8095. name: "Macro+",
  8096. height: math.unit(300, "meters")
  8097. },
  8098. {
  8099. name: "Macro++",
  8100. height: math.unit(2400, "feet")
  8101. },
  8102. {
  8103. name: "Megamacro",
  8104. height: math.unit(5167, "meters")
  8105. },
  8106. {
  8107. name: "Gigamacro",
  8108. height: math.unit(41769, "miles")
  8109. },
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(120, "lbs"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/yozey/front.svg"
  8121. }
  8122. },
  8123. frontAlt: {
  8124. height: math.unit(6, "feet"),
  8125. weight: math.unit(120, "lbs"),
  8126. name: "Front (Alt)",
  8127. image: {
  8128. source: "./media/characters/yozey/front-alt.svg"
  8129. }
  8130. },
  8131. side: {
  8132. height: math.unit(6, "feet"),
  8133. weight: math.unit(120, "lbs"),
  8134. name: "Side",
  8135. image: {
  8136. source: "./media/characters/yozey/side.svg"
  8137. }
  8138. },
  8139. },
  8140. [
  8141. {
  8142. name: "Micro",
  8143. height: math.unit(3, "inches"),
  8144. default: true
  8145. },
  8146. {
  8147. name: "Normal",
  8148. height: math.unit(6, "feet")
  8149. }
  8150. ]
  8151. ))
  8152. characterMakers.push(() => makeCharacter(
  8153. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8154. {
  8155. front: {
  8156. height: math.unit(6, "feet"),
  8157. weight: math.unit(103, "lbs"),
  8158. name: "Front",
  8159. image: {
  8160. source: "./media/characters/valeska-voss/front.svg"
  8161. }
  8162. }
  8163. },
  8164. [
  8165. {
  8166. name: "Mini-Sized Sub",
  8167. height: math.unit(3.1, "inches")
  8168. },
  8169. {
  8170. name: "Mid-Sized Sub",
  8171. height: math.unit(6.2, "inches")
  8172. },
  8173. {
  8174. name: "Full-Sized Sub",
  8175. height: math.unit(9.3, "inches")
  8176. },
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(5 + 2 / 12, "foot"),
  8180. default: true
  8181. },
  8182. ]
  8183. ))
  8184. characterMakers.push(() => makeCharacter(
  8185. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8186. {
  8187. front: {
  8188. height: math.unit(6, "feet"),
  8189. weight: math.unit(160, "lbs"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/gene-zeta/front.svg",
  8193. extra: 3006 / 2826,
  8194. bottom: 182 / 3188
  8195. }
  8196. }
  8197. },
  8198. [
  8199. {
  8200. name: "Micro",
  8201. height: math.unit(6, "inches")
  8202. },
  8203. {
  8204. name: "Normal",
  8205. height: math.unit(5 + 11 / 12, "foot"),
  8206. default: true
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(140, "feet")
  8211. },
  8212. {
  8213. name: "Supercharged",
  8214. height: math.unit(2500, "feet")
  8215. },
  8216. ]
  8217. ))
  8218. characterMakers.push(() => makeCharacter(
  8219. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8220. {
  8221. front: {
  8222. height: math.unit(6, "feet"),
  8223. weight: math.unit(350, "lbs"),
  8224. name: "Front",
  8225. image: {
  8226. source: "./media/characters/razinox/front.svg",
  8227. extra: 1686 / 1548,
  8228. bottom: 28.2 / 1868
  8229. }
  8230. },
  8231. back: {
  8232. height: math.unit(6, "feet"),
  8233. weight: math.unit(350, "lbs"),
  8234. name: "Back",
  8235. image: {
  8236. source: "./media/characters/razinox/back.svg",
  8237. extra: 1660 / 1590,
  8238. bottom: 15 / 1665
  8239. }
  8240. },
  8241. },
  8242. [
  8243. {
  8244. name: "Normal",
  8245. height: math.unit(10 + 8 / 12, "foot")
  8246. },
  8247. {
  8248. name: "Minimacro",
  8249. height: math.unit(15, "foot")
  8250. },
  8251. {
  8252. name: "Macro",
  8253. height: math.unit(60, "foot"),
  8254. default: true
  8255. },
  8256. {
  8257. name: "Megamacro",
  8258. height: math.unit(5, "miles")
  8259. },
  8260. {
  8261. name: "Gigamacro",
  8262. height: math.unit(6000, "miles")
  8263. },
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8268. {
  8269. front: {
  8270. height: math.unit(6, "feet"),
  8271. weight: math.unit(150, "lbs"),
  8272. name: "Front",
  8273. image: {
  8274. source: "./media/characters/cobalt/front.svg"
  8275. }
  8276. }
  8277. },
  8278. [
  8279. {
  8280. name: "Normal",
  8281. height: math.unit(8 + 1 / 12, "foot")
  8282. },
  8283. {
  8284. name: "Macro",
  8285. height: math.unit(111, "foot"),
  8286. default: true
  8287. },
  8288. {
  8289. name: "Supracosmic",
  8290. height: math.unit(1e42, "feet")
  8291. },
  8292. ]
  8293. ))
  8294. characterMakers.push(() => makeCharacter(
  8295. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8296. {
  8297. front: {
  8298. height: math.unit(5, "inches"),
  8299. name: "Front",
  8300. image: {
  8301. source: "./media/characters/amanda/front.svg",
  8302. extra: 926/791,
  8303. bottom: 38/964
  8304. }
  8305. },
  8306. back: {
  8307. height: math.unit(5, "inches"),
  8308. name: "Back",
  8309. image: {
  8310. source: "./media/characters/amanda/back.svg",
  8311. extra: 909/805,
  8312. bottom: 43/952
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(5, "inches"),
  8320. default: true
  8321. },
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(2.75, "meters"),
  8329. weight: math.unit(1200, "lb"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/teal/front.svg",
  8333. extra: 2463 / 2320,
  8334. bottom: 166 / 2629
  8335. }
  8336. },
  8337. back: {
  8338. height: math.unit(2.75, "meters"),
  8339. weight: math.unit(1200, "lb"),
  8340. name: "Back",
  8341. image: {
  8342. source: "./media/characters/teal/back.svg",
  8343. extra: 2580 / 2489,
  8344. bottom: 151 / 2731
  8345. }
  8346. },
  8347. sitting: {
  8348. height: math.unit(1.9, "meters"),
  8349. weight: math.unit(1200, "lb"),
  8350. name: "Sitting",
  8351. image: {
  8352. source: "./media/characters/teal/sitting.svg",
  8353. extra: 623 / 590,
  8354. bottom: 121 / 744
  8355. }
  8356. },
  8357. standing: {
  8358. height: math.unit(2.75, "meters"),
  8359. weight: math.unit(1200, "lb"),
  8360. name: "Standing",
  8361. image: {
  8362. source: "./media/characters/teal/standing.svg",
  8363. extra: 923 / 893,
  8364. bottom: 60 / 983
  8365. }
  8366. },
  8367. stretching: {
  8368. height: math.unit(3.65, "meters"),
  8369. weight: math.unit(1200, "lb"),
  8370. name: "Stretching",
  8371. image: {
  8372. source: "./media/characters/teal/stretching.svg",
  8373. extra: 1276 / 1244,
  8374. bottom: 0 / 1276
  8375. }
  8376. },
  8377. legged: {
  8378. height: math.unit(1.3, "meters"),
  8379. weight: math.unit(100, "lb"),
  8380. name: "Legged",
  8381. image: {
  8382. source: "./media/characters/teal/legged.svg",
  8383. extra: 462 / 437,
  8384. bottom: 24 / 486
  8385. }
  8386. },
  8387. naga: {
  8388. height: math.unit(5.4, "meters"),
  8389. weight: math.unit(4000, "lb"),
  8390. name: "Naga",
  8391. image: {
  8392. source: "./media/characters/teal/naga.svg",
  8393. extra: 1902 / 1858,
  8394. bottom: 0 / 1902
  8395. }
  8396. },
  8397. hand: {
  8398. height: math.unit(0.52, "meters"),
  8399. name: "Hand",
  8400. image: {
  8401. source: "./media/characters/teal/hand.svg"
  8402. }
  8403. },
  8404. maw: {
  8405. height: math.unit(0.43, "meters"),
  8406. name: "Maw",
  8407. image: {
  8408. source: "./media/characters/teal/maw.svg"
  8409. }
  8410. },
  8411. slit: {
  8412. height: math.unit(0.25, "meters"),
  8413. name: "Slit",
  8414. image: {
  8415. source: "./media/characters/teal/slit.svg"
  8416. }
  8417. },
  8418. },
  8419. [
  8420. {
  8421. name: "Normal",
  8422. height: math.unit(2.75, "meters"),
  8423. default: true
  8424. },
  8425. {
  8426. name: "Macro",
  8427. height: math.unit(300, "feet")
  8428. },
  8429. {
  8430. name: "Macro+",
  8431. height: math.unit(2000, "feet")
  8432. },
  8433. ]
  8434. ))
  8435. characterMakers.push(() => makeCharacter(
  8436. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8437. {
  8438. frontCat: {
  8439. height: math.unit(6, "feet"),
  8440. weight: math.unit(180, "lbs"),
  8441. name: "Front (Cat)",
  8442. image: {
  8443. source: "./media/characters/ravin-amulet/front-cat.svg"
  8444. }
  8445. },
  8446. frontCatAlt: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(180, "lbs"),
  8449. name: "Front (Alt, Cat)",
  8450. image: {
  8451. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8452. }
  8453. },
  8454. frontWerewolf: {
  8455. height: math.unit(6 * 1.2, "feet"),
  8456. weight: math.unit(225, "lbs"),
  8457. name: "Front (Werewolf)",
  8458. image: {
  8459. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8460. }
  8461. },
  8462. backWerewolf: {
  8463. height: math.unit(6 * 1.2, "feet"),
  8464. weight: math.unit(225, "lbs"),
  8465. name: "Back (Werewolf)",
  8466. image: {
  8467. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8468. }
  8469. },
  8470. },
  8471. [
  8472. {
  8473. name: "Nano",
  8474. height: math.unit(1, "micrometer")
  8475. },
  8476. {
  8477. name: "Micro",
  8478. height: math.unit(1, "inch")
  8479. },
  8480. {
  8481. name: "Normal",
  8482. height: math.unit(6, "feet"),
  8483. default: true
  8484. },
  8485. {
  8486. name: "Macro",
  8487. height: math.unit(60, "feet")
  8488. }
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(165, "lbs"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/fluoresce/front.svg"
  8500. }
  8501. }
  8502. },
  8503. [
  8504. {
  8505. name: "Micro",
  8506. height: math.unit(6, "cm")
  8507. },
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(5 + 7 / 12, "feet"),
  8511. default: true
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(56, "feet")
  8516. },
  8517. {
  8518. name: "Megamacro",
  8519. height: math.unit(1.9, "miles")
  8520. },
  8521. ]
  8522. ))
  8523. characterMakers.push(() => makeCharacter(
  8524. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8525. {
  8526. front: {
  8527. height: math.unit(9 + 6 / 12, "feet"),
  8528. weight: math.unit(523, "lbs"),
  8529. name: "Side",
  8530. image: {
  8531. source: "./media/characters/aurora/side.svg",
  8532. extra: 474/393,
  8533. bottom: 5/479
  8534. }
  8535. }
  8536. },
  8537. [
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(9 + 6 / 12, "feet")
  8541. },
  8542. {
  8543. name: "Macro",
  8544. height: math.unit(96, "feet"),
  8545. default: true
  8546. },
  8547. {
  8548. name: "Macro+",
  8549. height: math.unit(243, "feet")
  8550. },
  8551. ]
  8552. ))
  8553. characterMakers.push(() => makeCharacter(
  8554. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8555. {
  8556. front: {
  8557. height: math.unit(194, "cm"),
  8558. weight: math.unit(90, "kg"),
  8559. name: "Front",
  8560. image: {
  8561. source: "./media/characters/ranek/front.svg",
  8562. extra: 1862/1791,
  8563. bottom: 80/1942
  8564. }
  8565. },
  8566. back: {
  8567. height: math.unit(194, "cm"),
  8568. weight: math.unit(90, "kg"),
  8569. name: "Back",
  8570. image: {
  8571. source: "./media/characters/ranek/back.svg",
  8572. extra: 1853/1787,
  8573. bottom: 74/1927
  8574. }
  8575. },
  8576. feral: {
  8577. height: math.unit(30, "cm"),
  8578. weight: math.unit(1.6, "lbs"),
  8579. name: "Feral",
  8580. image: {
  8581. source: "./media/characters/ranek/feral.svg",
  8582. extra: 990/631,
  8583. bottom: 29/1019
  8584. }
  8585. },
  8586. },
  8587. [
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(194, "cm"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(100, "meters")
  8596. },
  8597. ]
  8598. ))
  8599. characterMakers.push(() => makeCharacter(
  8600. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8601. {
  8602. front: {
  8603. height: math.unit(5 + 6 / 12, "feet"),
  8604. weight: math.unit(153, "lbs"),
  8605. name: "Front",
  8606. image: {
  8607. source: "./media/characters/andrew-cooper/front.svg"
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Nano",
  8614. height: math.unit(1, "mm")
  8615. },
  8616. {
  8617. name: "Micro",
  8618. height: math.unit(2, "inches")
  8619. },
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(5 + 6 / 12, "feet"),
  8623. default: true
  8624. }
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8629. {
  8630. front: {
  8631. height: math.unit(6, "feet"),
  8632. weight: math.unit(180, "lbs"),
  8633. name: "Front",
  8634. image: {
  8635. source: "./media/characters/akane-sato/front.svg",
  8636. extra: 1219 / 1140
  8637. }
  8638. },
  8639. back: {
  8640. height: math.unit(6, "feet"),
  8641. weight: math.unit(180, "lbs"),
  8642. name: "Back",
  8643. image: {
  8644. source: "./media/characters/akane-sato/back.svg",
  8645. extra: 1219 / 1170
  8646. }
  8647. },
  8648. },
  8649. [
  8650. {
  8651. name: "Normal",
  8652. height: math.unit(2.5, "meters")
  8653. },
  8654. {
  8655. name: "Macro",
  8656. height: math.unit(250, "meters"),
  8657. default: true
  8658. },
  8659. {
  8660. name: "Megamacro",
  8661. height: math.unit(25, "km")
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(6, "feet"),
  8670. weight: math.unit(65, "kg"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/rook/front.svg",
  8674. extra: 960 / 950
  8675. }
  8676. }
  8677. },
  8678. [
  8679. {
  8680. name: "Normal",
  8681. height: math.unit(8.8, "feet")
  8682. },
  8683. {
  8684. name: "Macro",
  8685. height: math.unit(88, "feet"),
  8686. default: true
  8687. },
  8688. {
  8689. name: "Megamacro",
  8690. height: math.unit(8, "miles")
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(12 + 2 / 12, "feet"),
  8699. weight: math.unit(808, "lbs"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/prodigy/front.svg"
  8703. }
  8704. }
  8705. },
  8706. [
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(12 + 2 / 12, "feet"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Macro",
  8714. height: math.unit(143, "feet")
  8715. },
  8716. {
  8717. name: "Macro+",
  8718. height: math.unit(400, "feet")
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(6, "feet"),
  8727. weight: math.unit(225, "lbs"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/daniel/front.svg"
  8731. }
  8732. },
  8733. leaning: {
  8734. height: math.unit(6, "feet"),
  8735. weight: math.unit(225, "lbs"),
  8736. name: "Leaning",
  8737. image: {
  8738. source: "./media/characters/daniel/leaning.svg"
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(1000, "feet"),
  8746. default: true
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(6, "feet"),
  8755. weight: math.unit(88, "lbs"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/chiros/front.svg",
  8759. extra: 306 / 226
  8760. }
  8761. },
  8762. side: {
  8763. height: math.unit(6, "feet"),
  8764. weight: math.unit(88, "lbs"),
  8765. name: "Side",
  8766. image: {
  8767. source: "./media/characters/chiros/side.svg",
  8768. extra: 306 / 226
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Normal",
  8775. height: math.unit(6, "cm"),
  8776. default: true
  8777. },
  8778. ]
  8779. ))
  8780. characterMakers.push(() => makeCharacter(
  8781. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8782. {
  8783. front: {
  8784. height: math.unit(6, "feet"),
  8785. weight: math.unit(100, "lbs"),
  8786. name: "Front",
  8787. image: {
  8788. source: "./media/characters/selka/front.svg",
  8789. extra: 947 / 887
  8790. }
  8791. }
  8792. },
  8793. [
  8794. {
  8795. name: "Normal",
  8796. height: math.unit(5, "cm"),
  8797. default: true
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(8 + 3 / 12, "feet"),
  8806. weight: math.unit(424, "lbs"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/verin/front.svg",
  8810. extra: 1845 / 1550
  8811. }
  8812. },
  8813. frontArmored: {
  8814. height: math.unit(8 + 3 / 12, "feet"),
  8815. weight: math.unit(424, "lbs"),
  8816. name: "Front (Armored)",
  8817. image: {
  8818. source: "./media/characters/verin/front-armor.svg",
  8819. extra: 1845 / 1550,
  8820. bottom: 0.01
  8821. }
  8822. },
  8823. back: {
  8824. height: math.unit(8 + 3 / 12, "feet"),
  8825. weight: math.unit(424, "lbs"),
  8826. name: "Back",
  8827. image: {
  8828. source: "./media/characters/verin/back.svg",
  8829. bottom: 0.1,
  8830. extra: 1
  8831. }
  8832. },
  8833. foot: {
  8834. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8835. name: "Foot",
  8836. image: {
  8837. source: "./media/characters/verin/foot.svg"
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Normal",
  8844. height: math.unit(8 + 3 / 12, "feet")
  8845. },
  8846. {
  8847. name: "Minimacro",
  8848. height: math.unit(21, "feet"),
  8849. default: true
  8850. },
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(626, "feet")
  8854. },
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8859. {
  8860. front: {
  8861. height: math.unit(2.718, "meters"),
  8862. weight: math.unit(150, "lbs"),
  8863. name: "Front",
  8864. image: {
  8865. source: "./media/characters/sovrim-terraquian/front.svg",
  8866. extra: 1752/1689,
  8867. bottom: 36/1788
  8868. }
  8869. },
  8870. back: {
  8871. height: math.unit(2.718, "meters"),
  8872. weight: math.unit(150, "lbs"),
  8873. name: "Back",
  8874. image: {
  8875. source: "./media/characters/sovrim-terraquian/back.svg",
  8876. extra: 1698/1657,
  8877. bottom: 58/1756
  8878. }
  8879. },
  8880. tongue: {
  8881. height: math.unit(2.865, "feet"),
  8882. name: "Tongue",
  8883. image: {
  8884. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8885. }
  8886. },
  8887. hand: {
  8888. height: math.unit(1.61, "feet"),
  8889. name: "Hand",
  8890. image: {
  8891. source: "./media/characters/sovrim-terraquian/hand.svg"
  8892. }
  8893. },
  8894. foot: {
  8895. height: math.unit(1.05, "feet"),
  8896. name: "Foot",
  8897. image: {
  8898. source: "./media/characters/sovrim-terraquian/foot.svg"
  8899. }
  8900. },
  8901. footAlt: {
  8902. height: math.unit(0.88, "feet"),
  8903. name: "Foot (Alt)",
  8904. image: {
  8905. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8906. }
  8907. },
  8908. },
  8909. [
  8910. {
  8911. name: "Micro",
  8912. height: math.unit(2, "inches")
  8913. },
  8914. {
  8915. name: "Small",
  8916. height: math.unit(1, "meter")
  8917. },
  8918. {
  8919. name: "Normal",
  8920. height: math.unit(Math.E, "meters"),
  8921. default: true
  8922. },
  8923. {
  8924. name: "Macro",
  8925. height: math.unit(20, "meters")
  8926. },
  8927. {
  8928. name: "Macro+",
  8929. height: math.unit(400, "meters")
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8935. {
  8936. front: {
  8937. height: math.unit(7, "feet"),
  8938. weight: math.unit(489, "lbs"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/reece-silvermane/front.svg",
  8942. bottom: 0.02,
  8943. extra: 1
  8944. }
  8945. },
  8946. },
  8947. [
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(1.5, "miles"),
  8951. default: true
  8952. },
  8953. ]
  8954. ))
  8955. characterMakers.push(() => makeCharacter(
  8956. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8957. {
  8958. front: {
  8959. height: math.unit(6, "feet"),
  8960. weight: math.unit(78, "kg"),
  8961. name: "Front",
  8962. image: {
  8963. source: "./media/characters/kane/front.svg",
  8964. extra: 978 / 899
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(2.1, "m"),
  8972. },
  8973. {
  8974. name: "Macro",
  8975. height: math.unit(1, "km"),
  8976. default: true
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8982. {
  8983. front: {
  8984. height: math.unit(6, "feet"),
  8985. weight: math.unit(200, "kg"),
  8986. name: "Front",
  8987. image: {
  8988. source: "./media/characters/tegon/front.svg",
  8989. bottom: 0.01,
  8990. extra: 1
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Micro",
  8997. height: math.unit(1, "inch")
  8998. },
  8999. {
  9000. name: "Normal",
  9001. height: math.unit(6 + 3 / 12, "feet"),
  9002. default: true
  9003. },
  9004. {
  9005. name: "Macro",
  9006. height: math.unit(300, "feet")
  9007. },
  9008. {
  9009. name: "Megamacro",
  9010. height: math.unit(69, "miles")
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9016. {
  9017. side: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(2304, "lbs"),
  9020. name: "Side",
  9021. image: {
  9022. source: "./media/characters/arcturax/side.svg",
  9023. extra: 790 / 376,
  9024. bottom: 0.01
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Micro",
  9031. height: math.unit(2, "inch")
  9032. },
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(6, "feet")
  9036. },
  9037. {
  9038. name: "Macro",
  9039. height: math.unit(39, "feet"),
  9040. default: true
  9041. },
  9042. {
  9043. name: "Megamacro",
  9044. height: math.unit(7, "miles")
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(6, "feet"),
  9053. weight: math.unit(50, "lbs"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/sentri/front.svg",
  9057. extra: 1750 / 1570,
  9058. bottom: 0.025
  9059. }
  9060. },
  9061. frontAlt: {
  9062. height: math.unit(6, "feet"),
  9063. weight: math.unit(50, "lbs"),
  9064. name: "Front (Alt)",
  9065. image: {
  9066. source: "./media/characters/sentri/front-alt.svg",
  9067. extra: 1750 / 1570,
  9068. bottom: 0.025
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Normal",
  9075. height: math.unit(15, "feet"),
  9076. default: true
  9077. },
  9078. {
  9079. name: "Macro",
  9080. height: math.unit(2500, "feet")
  9081. }
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(5 + 8 / 12, "feet"),
  9089. weight: math.unit(130, "lbs"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/corvin/front.svg",
  9093. extra: 1803 / 1629
  9094. }
  9095. },
  9096. frontShirt: {
  9097. height: math.unit(5 + 8 / 12, "feet"),
  9098. weight: math.unit(130, "lbs"),
  9099. name: "Front (Shirt)",
  9100. image: {
  9101. source: "./media/characters/corvin/front-shirt.svg",
  9102. extra: 1803 / 1629
  9103. }
  9104. },
  9105. frontPoncho: {
  9106. height: math.unit(5 + 8 / 12, "feet"),
  9107. weight: math.unit(130, "lbs"),
  9108. name: "Front (Poncho)",
  9109. image: {
  9110. source: "./media/characters/corvin/front-poncho.svg",
  9111. extra: 1803 / 1629
  9112. }
  9113. },
  9114. side: {
  9115. height: math.unit(5 + 8 / 12, "feet"),
  9116. weight: math.unit(130, "lbs"),
  9117. name: "Side",
  9118. image: {
  9119. source: "./media/characters/corvin/side.svg",
  9120. extra: 1012 / 945
  9121. }
  9122. },
  9123. back: {
  9124. height: math.unit(5 + 8 / 12, "feet"),
  9125. weight: math.unit(130, "lbs"),
  9126. name: "Back",
  9127. image: {
  9128. source: "./media/characters/corvin/back.svg",
  9129. extra: 1803 / 1629
  9130. }
  9131. },
  9132. },
  9133. [
  9134. {
  9135. name: "Micro",
  9136. height: math.unit(3, "inches")
  9137. },
  9138. {
  9139. name: "Normal",
  9140. height: math.unit(5 + 8 / 12, "feet")
  9141. },
  9142. {
  9143. name: "Macro",
  9144. height: math.unit(300, "feet"),
  9145. default: true
  9146. },
  9147. {
  9148. name: "Megamacro",
  9149. height: math.unit(500, "miles")
  9150. }
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9155. {
  9156. front: {
  9157. height: math.unit(6, "feet"),
  9158. weight: math.unit(135, "lbs"),
  9159. name: "Front",
  9160. image: {
  9161. source: "./media/characters/q/front.svg",
  9162. extra: 854 / 752,
  9163. bottom: 0.005
  9164. }
  9165. },
  9166. back: {
  9167. height: math.unit(6, "feet"),
  9168. weight: math.unit(130, "lbs"),
  9169. name: "Back",
  9170. image: {
  9171. source: "./media/characters/q/back.svg",
  9172. extra: 854 / 752
  9173. }
  9174. },
  9175. },
  9176. [
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(90, "feet"),
  9180. default: true
  9181. },
  9182. {
  9183. name: "Extra Macro",
  9184. height: math.unit(300, "feet"),
  9185. },
  9186. {
  9187. name: "BIG WALF",
  9188. height: math.unit(750, "feet"),
  9189. },
  9190. ]
  9191. ))
  9192. characterMakers.push(() => makeCharacter(
  9193. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9194. {
  9195. front: {
  9196. height: math.unit(3, "feet"),
  9197. weight: math.unit(28, "lbs"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/citrine/front.svg"
  9201. }
  9202. }
  9203. },
  9204. [
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(3, "feet"),
  9208. default: true
  9209. }
  9210. ]
  9211. ))
  9212. characterMakers.push(() => makeCharacter(
  9213. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9214. {
  9215. front: {
  9216. height: math.unit(14, "feet"),
  9217. weight: math.unit(1450, "kg"),
  9218. preyCapacity: math.unit(15, "people"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/aura-starwind/front.svg",
  9222. extra: 1440/1327,
  9223. bottom: 11/1451
  9224. }
  9225. },
  9226. side: {
  9227. height: math.unit(14, "feet"),
  9228. weight: math.unit(1450, "kg"),
  9229. preyCapacity: math.unit(15, "people"),
  9230. name: "Side",
  9231. image: {
  9232. source: "./media/characters/aura-starwind/side.svg",
  9233. extra: 1654 / 1497
  9234. }
  9235. },
  9236. taur: {
  9237. height: math.unit(18, "feet"),
  9238. weight: math.unit(5500, "kg"),
  9239. preyCapacity: math.unit(50, "people"),
  9240. name: "Taur",
  9241. image: {
  9242. source: "./media/characters/aura-starwind/taur.svg",
  9243. extra: 1760 / 1650
  9244. }
  9245. },
  9246. feral: {
  9247. height: math.unit(46, "feet"),
  9248. weight: math.unit(25000, "kg"),
  9249. preyCapacity: math.unit(120, "people"),
  9250. name: "Feral",
  9251. image: {
  9252. source: "./media/characters/aura-starwind/feral.svg"
  9253. }
  9254. },
  9255. },
  9256. [
  9257. {
  9258. name: "Normal",
  9259. height: math.unit(14, "feet"),
  9260. default: true
  9261. },
  9262. {
  9263. name: "Macro",
  9264. height: math.unit(50, "meters")
  9265. },
  9266. {
  9267. name: "Megamacro",
  9268. height: math.unit(5000, "meters")
  9269. },
  9270. {
  9271. name: "Gigamacro",
  9272. height: math.unit(100000, "kilometers")
  9273. },
  9274. ]
  9275. ))
  9276. characterMakers.push(() => makeCharacter(
  9277. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9278. {
  9279. front: {
  9280. height: math.unit(2 + 7 / 12, "feet"),
  9281. weight: math.unit(32, "lbs"),
  9282. name: "Front",
  9283. image: {
  9284. source: "./media/characters/rivet/front.svg",
  9285. extra: 1716 / 1658,
  9286. bottom: 0.03
  9287. }
  9288. },
  9289. foot: {
  9290. height: math.unit(0.551, "feet"),
  9291. name: "Rivet's Foot",
  9292. image: {
  9293. source: "./media/characters/rivet/foot.svg"
  9294. },
  9295. rename: true
  9296. }
  9297. },
  9298. [
  9299. {
  9300. name: "Micro",
  9301. height: math.unit(1.5, "inches"),
  9302. },
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(2 + 7 / 12, "feet"),
  9306. default: true
  9307. },
  9308. {
  9309. name: "Macro",
  9310. height: math.unit(85, "feet")
  9311. },
  9312. {
  9313. name: "Megamacro",
  9314. height: math.unit(2.2, "km")
  9315. }
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(5 + 9 / 12, "feet"),
  9323. weight: math.unit(150, "lbs"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/coffee/front.svg",
  9327. extra: 946/880,
  9328. bottom: 66/1012
  9329. }
  9330. },
  9331. foot: {
  9332. height: math.unit(1.29, "feet"),
  9333. name: "Foot",
  9334. image: {
  9335. source: "./media/characters/coffee/foot.svg"
  9336. }
  9337. },
  9338. },
  9339. [
  9340. {
  9341. name: "Micro",
  9342. height: math.unit(2, "inches"),
  9343. },
  9344. {
  9345. name: "Normal",
  9346. height: math.unit(5 + 9 / 12, "feet"),
  9347. default: true
  9348. },
  9349. {
  9350. name: "Macro",
  9351. height: math.unit(800, "feet")
  9352. },
  9353. {
  9354. name: "Megamacro",
  9355. height: math.unit(25, "miles")
  9356. }
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(6, "feet"),
  9364. weight: math.unit(200, "lbs"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/chari-gal/front.svg",
  9368. extra: 1568 / 1385,
  9369. bottom: 0.047
  9370. }
  9371. },
  9372. gigantamax: {
  9373. height: math.unit(6 * 16, "feet"),
  9374. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9375. name: "Gigantamax",
  9376. image: {
  9377. source: "./media/characters/chari-gal/gigantamax.svg",
  9378. extra: 1124 / 888,
  9379. bottom: 0.03
  9380. }
  9381. },
  9382. },
  9383. [
  9384. {
  9385. name: "Normal",
  9386. height: math.unit(5 + 7 / 12, "feet")
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(200, "feet"),
  9391. default: true
  9392. }
  9393. ]
  9394. ))
  9395. characterMakers.push(() => makeCharacter(
  9396. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9397. {
  9398. front: {
  9399. height: math.unit(6, "feet"),
  9400. weight: math.unit(150, "lbs"),
  9401. name: "Front",
  9402. image: {
  9403. source: "./media/characters/nova/front.svg",
  9404. extra: 5000 / 4722,
  9405. bottom: 0.02
  9406. }
  9407. }
  9408. },
  9409. [
  9410. {
  9411. name: "Micro-",
  9412. height: math.unit(0.8, "inches")
  9413. },
  9414. {
  9415. name: "Micro",
  9416. height: math.unit(2, "inches"),
  9417. default: true
  9418. },
  9419. ]
  9420. ))
  9421. characterMakers.push(() => makeCharacter(
  9422. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9423. {
  9424. koboldFront: {
  9425. height: math.unit(3 + 1 / 12, "feet"),
  9426. weight: math.unit(21.7, "lbs"),
  9427. name: "Front",
  9428. image: {
  9429. source: "./media/characters/argent/kobold-front.svg",
  9430. extra: 1471 / 1331,
  9431. bottom: 100.8 / 1575.5
  9432. },
  9433. form: "kobold",
  9434. default: true
  9435. },
  9436. dragonFront: {
  9437. height: math.unit(75, "inches"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/argent/dragon-front.svg",
  9441. extra: 1389/1248,
  9442. bottom: 54/1443
  9443. },
  9444. form: "dragon",
  9445. },
  9446. dragonBack: {
  9447. height: math.unit(75, "inches"),
  9448. name: "Back",
  9449. image: {
  9450. source: "./media/characters/argent/dragon-back.svg",
  9451. extra: 1399/1271,
  9452. bottom: 23/1422
  9453. },
  9454. form: "dragon",
  9455. },
  9456. dragonDressed: {
  9457. height: math.unit(75, "inches"),
  9458. name: "Dressed",
  9459. image: {
  9460. source: "./media/characters/argent/dragon-dressed.svg",
  9461. extra: 1350/1215,
  9462. bottom: 26/1376
  9463. },
  9464. form: "dragon"
  9465. },
  9466. dragonHead: {
  9467. height: math.unit(23.5, "inches"),
  9468. name: "Head",
  9469. image: {
  9470. source: "./media/characters/argent/dragon-head.svg"
  9471. },
  9472. form: "dragon",
  9473. },
  9474. },
  9475. [
  9476. {
  9477. name: "Micro",
  9478. height: math.unit(2, "inches"),
  9479. form: "kobold",
  9480. },
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(3 + 1 / 12, "feet"),
  9484. form: "kobold",
  9485. default: true
  9486. },
  9487. {
  9488. name: "Macro",
  9489. height: math.unit(120, "feet"),
  9490. form: "kobold",
  9491. },
  9492. {
  9493. name: "Speck",
  9494. height: math.unit(1, "mm"),
  9495. form: "dragon",
  9496. },
  9497. {
  9498. name: "Tiny",
  9499. height: math.unit(1, "cm"),
  9500. form: "dragon",
  9501. },
  9502. {
  9503. name: "Micro",
  9504. height: math.unit(5, "cm"),
  9505. form: "dragon",
  9506. },
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(75, "inches"),
  9510. form: "dragon",
  9511. default: true
  9512. },
  9513. {
  9514. name: "Extra Tall",
  9515. height: math.unit(9, "feet"),
  9516. form: "dragon",
  9517. },
  9518. {
  9519. name: "Inconvenient",
  9520. height: math.unit(5, "meters"),
  9521. form: "dragon",
  9522. },
  9523. {
  9524. name: "Macro",
  9525. height: math.unit(70, "meters"),
  9526. form: "dragon",
  9527. },
  9528. {
  9529. name: "Macro+",
  9530. height: math.unit(250, "meters"),
  9531. form: "dragon",
  9532. },
  9533. {
  9534. name: "Megamacro",
  9535. height: math.unit(20, "km"),
  9536. form: "dragon",
  9537. },
  9538. {
  9539. name: "Mountainous",
  9540. height: math.unit(100, "km"),
  9541. form: "dragon",
  9542. },
  9543. {
  9544. name: "Continental",
  9545. height: math.unit(2, "megameters"),
  9546. form: "dragon",
  9547. },
  9548. {
  9549. name: "Too Big",
  9550. height: math.unit(900, "megameters"),
  9551. form: "dragon",
  9552. },
  9553. ],
  9554. {
  9555. "kobold": {
  9556. name: "Kobold",
  9557. default: true
  9558. },
  9559. "dragon": {
  9560. name: "Dragon",
  9561. },
  9562. }
  9563. ))
  9564. characterMakers.push(() => makeCharacter(
  9565. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9566. {
  9567. lamp: {
  9568. height: math.unit(7 * 1559 / 989, "feet"),
  9569. name: "Magic Lamp",
  9570. image: {
  9571. source: "./media/characters/mira-al-cul/lamp.svg",
  9572. extra: 1617 / 1559
  9573. }
  9574. },
  9575. front: {
  9576. height: math.unit(7, "feet"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/mira-al-cul/front.svg",
  9580. extra: 1044 / 990
  9581. }
  9582. },
  9583. },
  9584. [
  9585. {
  9586. name: "Heavily Restricted",
  9587. height: math.unit(7 * 1559 / 989, "feet")
  9588. },
  9589. {
  9590. name: "Freshly Freed",
  9591. height: math.unit(50 * 1559 / 989, "feet")
  9592. },
  9593. {
  9594. name: "World Encompassing",
  9595. height: math.unit(10000 * 1559 / 989, "miles")
  9596. },
  9597. {
  9598. name: "Galactic",
  9599. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9600. },
  9601. {
  9602. name: "Palmed Universe",
  9603. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9604. default: true
  9605. },
  9606. {
  9607. name: "Multiversal Matriarch",
  9608. height: math.unit(8.87e10, "yottameters")
  9609. },
  9610. {
  9611. name: "Void Mother",
  9612. height: math.unit(3.14e110, "yottaparsecs")
  9613. },
  9614. {
  9615. name: "Toying with Transcendence",
  9616. height: math.unit(1e307, "meters")
  9617. },
  9618. ]
  9619. ))
  9620. characterMakers.push(() => makeCharacter(
  9621. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9622. {
  9623. front: {
  9624. height: math.unit(17 + 1 / 12, "feet"),
  9625. weight: math.unit(476.2 * 5, "lbs"),
  9626. name: "Front",
  9627. image: {
  9628. source: "./media/characters/kuro-shi-uchū/front.svg",
  9629. extra: 2329 / 1835,
  9630. bottom: 0.02
  9631. }
  9632. },
  9633. },
  9634. [
  9635. {
  9636. name: "Micro",
  9637. height: math.unit(2, "inches")
  9638. },
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(12, "meters")
  9642. },
  9643. {
  9644. name: "Planetary",
  9645. height: math.unit(0.00929, "AU"),
  9646. default: true
  9647. },
  9648. {
  9649. name: "Universal",
  9650. height: math.unit(20, "gigaparsecs")
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(5 + 2 / 12, "feet"),
  9659. weight: math.unit(120, "lbs"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/katherine/front.svg",
  9663. extra: 2075 / 1969
  9664. }
  9665. },
  9666. dress: {
  9667. height: math.unit(5 + 2 / 12, "feet"),
  9668. weight: math.unit(120, "lbs"),
  9669. name: "Dress",
  9670. image: {
  9671. source: "./media/characters/katherine/dress.svg",
  9672. extra: 2258 / 2064
  9673. }
  9674. },
  9675. },
  9676. [
  9677. {
  9678. name: "Micro",
  9679. height: math.unit(1, "inches"),
  9680. default: true
  9681. },
  9682. {
  9683. name: "Normal",
  9684. height: math.unit(5 + 2 / 12, "feet")
  9685. },
  9686. {
  9687. name: "Macro",
  9688. height: math.unit(100, "meters")
  9689. },
  9690. {
  9691. name: "Megamacro",
  9692. height: math.unit(80, "miles")
  9693. },
  9694. ]
  9695. ))
  9696. characterMakers.push(() => makeCharacter(
  9697. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9698. {
  9699. front: {
  9700. height: math.unit(7 + 8 / 12, "feet"),
  9701. weight: math.unit(250, "lbs"),
  9702. name: "Front",
  9703. image: {
  9704. source: "./media/characters/yevis/front.svg",
  9705. extra: 1938 / 1755
  9706. }
  9707. }
  9708. },
  9709. [
  9710. {
  9711. name: "Mortal",
  9712. height: math.unit(7 + 8 / 12, "feet")
  9713. },
  9714. {
  9715. name: "Battle",
  9716. height: math.unit(25 + 11 / 12, "feet")
  9717. },
  9718. {
  9719. name: "Wrath",
  9720. height: math.unit(1654 + 11 / 12, "feet")
  9721. },
  9722. {
  9723. name: "Planet Destroyer",
  9724. height: math.unit(12000, "miles")
  9725. },
  9726. {
  9727. name: "Galaxy Conqueror",
  9728. height: math.unit(1.45, "zettameters"),
  9729. default: true
  9730. },
  9731. {
  9732. name: "Universal War",
  9733. height: math.unit(184, "gigaparsecs")
  9734. },
  9735. {
  9736. name: "Eternity War",
  9737. height: math.unit(1.98e55, "yottaparsecs")
  9738. },
  9739. ]
  9740. ))
  9741. characterMakers.push(() => makeCharacter(
  9742. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9743. {
  9744. front: {
  9745. height: math.unit(5 + 8 / 12, "feet"),
  9746. weight: math.unit(63, "kg"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/xavier/front.svg",
  9750. extra: 944 / 883
  9751. }
  9752. },
  9753. frontStretch: {
  9754. height: math.unit(5 + 8 / 12, "feet"),
  9755. weight: math.unit(63, "kg"),
  9756. name: "Stretching",
  9757. image: {
  9758. source: "./media/characters/xavier/front-stretch.svg",
  9759. extra: 962 / 820
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Normal",
  9766. height: math.unit(5 + 8 / 12, "feet")
  9767. },
  9768. {
  9769. name: "Macro",
  9770. height: math.unit(100, "meters"),
  9771. default: true
  9772. },
  9773. {
  9774. name: "McLargeHuge",
  9775. height: math.unit(10, "miles")
  9776. },
  9777. ]
  9778. ))
  9779. characterMakers.push(() => makeCharacter(
  9780. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9781. {
  9782. front: {
  9783. height: math.unit(5 + 5 / 12, "feet"),
  9784. weight: math.unit(150, "lb"),
  9785. name: "Front",
  9786. image: {
  9787. source: "./media/characters/joshii/front.svg",
  9788. extra: 765 / 653,
  9789. bottom: 51 / 816
  9790. }
  9791. },
  9792. foot: {
  9793. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9794. name: "Foot",
  9795. image: {
  9796. source: "./media/characters/joshii/foot.svg"
  9797. }
  9798. },
  9799. },
  9800. [
  9801. {
  9802. name: "Micro",
  9803. height: math.unit(2, "inches")
  9804. },
  9805. {
  9806. name: "Normal",
  9807. height: math.unit(5 + 5 / 12, "feet")
  9808. },
  9809. {
  9810. name: "Macro",
  9811. height: math.unit(785, "feet"),
  9812. default: true
  9813. },
  9814. {
  9815. name: "Megamacro",
  9816. height: math.unit(24.5, "miles")
  9817. },
  9818. ]
  9819. ))
  9820. characterMakers.push(() => makeCharacter(
  9821. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9822. {
  9823. front: {
  9824. height: math.unit(6, "feet"),
  9825. weight: math.unit(150, "lb"),
  9826. name: "Front",
  9827. image: {
  9828. source: "./media/characters/goddess-elizabeth/front.svg",
  9829. extra: 1800 / 1525,
  9830. bottom: 0.005
  9831. }
  9832. },
  9833. foot: {
  9834. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9835. name: "Foot",
  9836. image: {
  9837. source: "./media/characters/goddess-elizabeth/foot.svg"
  9838. }
  9839. },
  9840. mouth: {
  9841. height: math.unit(6, "feet"),
  9842. name: "Mouth",
  9843. image: {
  9844. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Micro",
  9851. height: math.unit(12, "feet")
  9852. },
  9853. {
  9854. name: "Normal",
  9855. height: math.unit(80, "miles"),
  9856. default: true
  9857. },
  9858. {
  9859. name: "Macro",
  9860. height: math.unit(15000, "parsecs")
  9861. },
  9862. ]
  9863. ))
  9864. characterMakers.push(() => makeCharacter(
  9865. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9866. {
  9867. front: {
  9868. height: math.unit(5 + 9 / 12, "feet"),
  9869. weight: math.unit(144, "lb"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/kara/front.svg"
  9873. }
  9874. },
  9875. feet: {
  9876. height: math.unit(6 / 6.765, "feet"),
  9877. name: "Kara's Feet",
  9878. rename: true,
  9879. image: {
  9880. source: "./media/characters/kara/feet.svg"
  9881. }
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(5 + 9 / 12, "feet")
  9888. },
  9889. {
  9890. name: "Macro",
  9891. height: math.unit(174, "feet"),
  9892. default: true
  9893. },
  9894. ]
  9895. ))
  9896. characterMakers.push(() => makeCharacter(
  9897. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9898. {
  9899. front: {
  9900. height: math.unit(18, "feet"),
  9901. weight: math.unit(4050, "lb"),
  9902. name: "Front",
  9903. image: {
  9904. source: "./media/characters/tyrone/front.svg",
  9905. extra: 2405 / 2270,
  9906. bottom: 182 / 2587
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Normal",
  9913. height: math.unit(18, "feet"),
  9914. default: true
  9915. },
  9916. {
  9917. name: "Macro",
  9918. height: math.unit(300, "feet")
  9919. },
  9920. {
  9921. name: "Megamacro",
  9922. height: math.unit(15, "km")
  9923. },
  9924. {
  9925. name: "Gigamacro",
  9926. height: math.unit(500, "km")
  9927. },
  9928. {
  9929. name: "Teramacro",
  9930. height: math.unit(0.5, "gigameters")
  9931. },
  9932. {
  9933. name: "Omnimacro",
  9934. height: math.unit(1e252, "yottauniverse")
  9935. },
  9936. ]
  9937. ))
  9938. characterMakers.push(() => makeCharacter(
  9939. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9940. {
  9941. front: {
  9942. height: math.unit(7 + 8 / 12, "feet"),
  9943. weight: math.unit(120, "lb"),
  9944. name: "Front",
  9945. image: {
  9946. source: "./media/characters/danny/front.svg",
  9947. extra: 1490 / 1350
  9948. }
  9949. },
  9950. back: {
  9951. height: math.unit(7 + 8 / 12, "feet"),
  9952. weight: math.unit(120, "lb"),
  9953. name: "Back",
  9954. image: {
  9955. source: "./media/characters/danny/back.svg",
  9956. extra: 1490 / 1350
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Normal",
  9963. height: math.unit(7 + 8 / 12, "feet"),
  9964. default: true
  9965. },
  9966. ]
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9970. {
  9971. front: {
  9972. height: math.unit(3.5, "inches"),
  9973. weight: math.unit(19, "grams"),
  9974. name: "Front",
  9975. image: {
  9976. source: "./media/characters/mallow/front.svg",
  9977. extra: 471 / 431
  9978. }
  9979. },
  9980. back: {
  9981. height: math.unit(3.5, "inches"),
  9982. weight: math.unit(19, "grams"),
  9983. name: "Back",
  9984. image: {
  9985. source: "./media/characters/mallow/back.svg",
  9986. extra: 471 / 431
  9987. }
  9988. },
  9989. },
  9990. [
  9991. {
  9992. name: "Normal",
  9993. height: math.unit(3.5, "inches"),
  9994. default: true
  9995. },
  9996. ]
  9997. ))
  9998. characterMakers.push(() => makeCharacter(
  9999. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10000. {
  10001. front: {
  10002. height: math.unit(9, "feet"),
  10003. weight: math.unit(230, "kg"),
  10004. name: "Front",
  10005. image: {
  10006. source: "./media/characters/starry-aqua/front.svg"
  10007. }
  10008. },
  10009. back: {
  10010. height: math.unit(9, "feet"),
  10011. weight: math.unit(230, "kg"),
  10012. name: "Back",
  10013. image: {
  10014. source: "./media/characters/starry-aqua/back.svg"
  10015. }
  10016. },
  10017. hand: {
  10018. height: math.unit(9 * 0.1168, "feet"),
  10019. name: "Hand",
  10020. image: {
  10021. source: "./media/characters/starry-aqua/hand.svg"
  10022. }
  10023. },
  10024. foot: {
  10025. height: math.unit(9 * 0.18, "feet"),
  10026. name: "Foot",
  10027. image: {
  10028. source: "./media/characters/starry-aqua/foot.svg"
  10029. }
  10030. }
  10031. },
  10032. [
  10033. {
  10034. name: "Micro",
  10035. height: math.unit(3, "inches")
  10036. },
  10037. {
  10038. name: "Normal",
  10039. height: math.unit(9, "feet")
  10040. },
  10041. {
  10042. name: "Macro",
  10043. height: math.unit(300, "feet"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Megamacro",
  10048. height: math.unit(3200, "feet")
  10049. }
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10054. {
  10055. front: {
  10056. height: math.unit(15, "feet"),
  10057. weight: math.unit(5026, "lb"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/luka-towers/front.svg",
  10061. extra: 1269/1133,
  10062. bottom: 51/1320
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Normal",
  10069. height: math.unit(15, "feet"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Minimacro",
  10074. height: math.unit(25, "feet")
  10075. },
  10076. {
  10077. name: "Macro",
  10078. height: math.unit(320, "feet")
  10079. },
  10080. {
  10081. name: "Megamacro",
  10082. height: math.unit(35000, "feet")
  10083. },
  10084. {
  10085. name: "Gigamacro",
  10086. height: math.unit(4000, "miles")
  10087. },
  10088. {
  10089. name: "Teramacro",
  10090. height: math.unit(15000, "miles")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(6, "feet"),
  10099. weight: math.unit(150, "lb"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/natalie-nightring/front.svg",
  10103. extra: 1,
  10104. bottom: 0.06
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Uh Oh",
  10111. height: math.unit(0.1, "mm")
  10112. },
  10113. {
  10114. name: "Small",
  10115. height: math.unit(3, "inches")
  10116. },
  10117. {
  10118. name: "Human Scale",
  10119. height: math.unit(6, "feet")
  10120. },
  10121. {
  10122. name: "Librarian",
  10123. height: math.unit(50, "feet"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Immense",
  10128. height: math.unit(200, "miles")
  10129. },
  10130. ]
  10131. ))
  10132. characterMakers.push(() => makeCharacter(
  10133. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10134. {
  10135. front: {
  10136. height: math.unit(6, "feet"),
  10137. weight: math.unit(180, "lbs"),
  10138. name: "Front",
  10139. image: {
  10140. source: "./media/characters/danni-rosie/front.svg",
  10141. extra: 1260 / 1128,
  10142. bottom: 0.022
  10143. }
  10144. },
  10145. },
  10146. [
  10147. {
  10148. name: "Micro",
  10149. height: math.unit(2, "inches"),
  10150. default: true
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(5 + 9 / 12, "feet"),
  10159. weight: math.unit(220, "lb"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/samantha-kruse/front.svg",
  10163. extra: (985 / 935),
  10164. bottom: 0.03
  10165. }
  10166. },
  10167. frontUndressed: {
  10168. height: math.unit(5 + 9 / 12, "feet"),
  10169. weight: math.unit(220, "lb"),
  10170. name: "Front (Undressed)",
  10171. image: {
  10172. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10173. extra: (973 / 923),
  10174. bottom: 0.025
  10175. }
  10176. },
  10177. fat: {
  10178. height: math.unit(5 + 9 / 12, "feet"),
  10179. weight: math.unit(900, "lb"),
  10180. name: "Front (Fat)",
  10181. image: {
  10182. source: "./media/characters/samantha-kruse/fat.svg",
  10183. extra: 2688 / 2561
  10184. }
  10185. },
  10186. },
  10187. [
  10188. {
  10189. name: "Normal",
  10190. height: math.unit(5 + 9 / 12, "feet"),
  10191. default: true
  10192. }
  10193. ]
  10194. ))
  10195. characterMakers.push(() => makeCharacter(
  10196. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10197. {
  10198. back: {
  10199. height: math.unit(5 + 4 / 12, "feet"),
  10200. weight: math.unit(4963, "lb"),
  10201. name: "Back",
  10202. image: {
  10203. source: "./media/characters/amelia-rosie/back.svg",
  10204. extra: 1113 / 963,
  10205. bottom: 0.01
  10206. }
  10207. },
  10208. },
  10209. [
  10210. {
  10211. name: "Level 0",
  10212. height: math.unit(5 + 4 / 12, "feet")
  10213. },
  10214. {
  10215. name: "Level 1",
  10216. height: math.unit(164597, "feet"),
  10217. default: true
  10218. },
  10219. {
  10220. name: "Level 2",
  10221. height: math.unit(956243, "miles")
  10222. },
  10223. {
  10224. name: "Level 3",
  10225. height: math.unit(29421709423, "miles")
  10226. },
  10227. {
  10228. name: "Level 4",
  10229. height: math.unit(154, "lightyears")
  10230. },
  10231. {
  10232. name: "Level 5",
  10233. height: math.unit(4738272, "lightyears")
  10234. },
  10235. {
  10236. name: "Level 6",
  10237. height: math.unit(145787152896, "lightyears")
  10238. },
  10239. ]
  10240. ))
  10241. characterMakers.push(() => makeCharacter(
  10242. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10243. {
  10244. front: {
  10245. height: math.unit(5 + 11 / 12, "feet"),
  10246. weight: math.unit(65, "kg"),
  10247. name: "Front",
  10248. image: {
  10249. source: "./media/characters/rook-kitara/front.svg",
  10250. extra: 1347 / 1274,
  10251. bottom: 0.005
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Totally Unfair",
  10258. height: math.unit(1.8, "mm")
  10259. },
  10260. {
  10261. name: "Lap Rookie",
  10262. height: math.unit(1.4, "feet")
  10263. },
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(5 + 11 / 12, "feet"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "How Did This Happen",
  10271. height: math.unit(80, "miles")
  10272. }
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10277. {
  10278. front: {
  10279. height: math.unit(7, "feet"),
  10280. weight: math.unit(300, "lb"),
  10281. name: "Front",
  10282. image: {
  10283. source: "./media/characters/pisces/front.svg",
  10284. extra: 2255 / 2115,
  10285. bottom: 0.03
  10286. }
  10287. },
  10288. back: {
  10289. height: math.unit(7, "feet"),
  10290. weight: math.unit(300, "lb"),
  10291. name: "Back",
  10292. image: {
  10293. source: "./media/characters/pisces/back.svg",
  10294. extra: 2146 / 2055,
  10295. bottom: 0.04
  10296. }
  10297. },
  10298. },
  10299. [
  10300. {
  10301. name: "Normal",
  10302. height: math.unit(7, "feet"),
  10303. default: true
  10304. },
  10305. {
  10306. name: "Swimming Pool",
  10307. height: math.unit(12.2, "meters")
  10308. },
  10309. {
  10310. name: "Olympic Swimming Pool",
  10311. height: math.unit(56.3, "meters")
  10312. },
  10313. {
  10314. name: "Lake Superior",
  10315. height: math.unit(93900, "meters")
  10316. },
  10317. {
  10318. name: "Mediterranean Sea",
  10319. height: math.unit(644457, "meters")
  10320. },
  10321. {
  10322. name: "World's Oceans",
  10323. height: math.unit(4567491, "meters")
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10329. {
  10330. front: {
  10331. height: math.unit(2.3, "meters"),
  10332. weight: math.unit(120, "kg"),
  10333. name: "Front",
  10334. image: {
  10335. source: "./media/characters/zelas/front.svg"
  10336. }
  10337. },
  10338. side: {
  10339. height: math.unit(2.3, "meters"),
  10340. weight: math.unit(120, "kg"),
  10341. name: "Side",
  10342. image: {
  10343. source: "./media/characters/zelas/side.svg"
  10344. }
  10345. },
  10346. back: {
  10347. height: math.unit(2.3, "meters"),
  10348. weight: math.unit(120, "kg"),
  10349. name: "Back",
  10350. image: {
  10351. source: "./media/characters/zelas/back.svg"
  10352. }
  10353. },
  10354. foot: {
  10355. height: math.unit(1.116, "feet"),
  10356. name: "Foot",
  10357. image: {
  10358. source: "./media/characters/zelas/foot.svg"
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Normal",
  10365. height: math.unit(2.3, "meters")
  10366. },
  10367. {
  10368. name: "Macro",
  10369. height: math.unit(30, "meters"),
  10370. default: true
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10376. {
  10377. front: {
  10378. height: math.unit(1, "inch"),
  10379. weight: math.unit(0.21, "grams"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/talbot/front.svg",
  10383. extra: 594 / 544
  10384. }
  10385. },
  10386. },
  10387. [
  10388. {
  10389. name: "Micro",
  10390. height: math.unit(1, "inch"),
  10391. default: true
  10392. },
  10393. ]
  10394. ))
  10395. characterMakers.push(() => makeCharacter(
  10396. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10397. {
  10398. front: {
  10399. height: math.unit(3 + 3 / 12, "feet"),
  10400. weight: math.unit(51.8, "lb"),
  10401. name: "Front",
  10402. image: {
  10403. source: "./media/characters/fliss/front.svg",
  10404. extra: 840 / 640
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Teeny Tiny",
  10411. height: math.unit(1, "mm")
  10412. },
  10413. {
  10414. name: "Small",
  10415. height: math.unit(1, "inch"),
  10416. default: true
  10417. },
  10418. {
  10419. name: "Standard Sylveon",
  10420. height: math.unit(3 + 3 / 12, "feet")
  10421. },
  10422. {
  10423. name: "Large Nuisance",
  10424. height: math.unit(33, "feet")
  10425. },
  10426. {
  10427. name: "City Filler",
  10428. height: math.unit(3000, "feet")
  10429. },
  10430. {
  10431. name: "New Horizon",
  10432. height: math.unit(6000, "miles")
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(5, "cm"),
  10441. weight: math.unit(1.94, "g"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/fleta/front.svg",
  10445. extra: 835 / 803
  10446. }
  10447. },
  10448. back: {
  10449. height: math.unit(5, "cm"),
  10450. weight: math.unit(1.94, "g"),
  10451. name: "Back",
  10452. image: {
  10453. source: "./media/characters/fleta/back.svg",
  10454. extra: 835 / 803
  10455. }
  10456. },
  10457. },
  10458. [
  10459. {
  10460. name: "Micro",
  10461. height: math.unit(5, "cm"),
  10462. default: true
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10468. {
  10469. front: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(225, "lb"),
  10472. name: "Front",
  10473. image: {
  10474. source: "./media/characters/dominic/front.svg",
  10475. extra: 1770 / 1620,
  10476. bottom: 0.025
  10477. }
  10478. },
  10479. back: {
  10480. height: math.unit(6, "feet"),
  10481. weight: math.unit(225, "lb"),
  10482. name: "Back",
  10483. image: {
  10484. source: "./media/characters/dominic/back.svg",
  10485. extra: 1745 / 1620,
  10486. bottom: 0.065
  10487. }
  10488. },
  10489. },
  10490. [
  10491. {
  10492. name: "Nano",
  10493. height: math.unit(0.1, "mm")
  10494. },
  10495. {
  10496. name: "Micro-",
  10497. height: math.unit(1, "mm")
  10498. },
  10499. {
  10500. name: "Micro",
  10501. height: math.unit(4, "inches")
  10502. },
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(6 + 4 / 12, "feet"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(115, "feet")
  10511. },
  10512. {
  10513. name: "Macro+",
  10514. height: math.unit(955, "feet")
  10515. },
  10516. {
  10517. name: "Megamacro",
  10518. height: math.unit(8990, "feet")
  10519. },
  10520. {
  10521. name: "Gigmacro",
  10522. height: math.unit(9310, "miles")
  10523. },
  10524. {
  10525. name: "Teramacro",
  10526. height: math.unit(1567005010, "miles")
  10527. },
  10528. {
  10529. name: "Examacro",
  10530. height: math.unit(1425, "parsecs")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(400, "feet"),
  10539. weight: math.unit(44444444, "lb"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/major-colonel/front.svg"
  10543. }
  10544. },
  10545. back: {
  10546. height: math.unit(400, "feet"),
  10547. weight: math.unit(44444444, "lb"),
  10548. name: "Back",
  10549. image: {
  10550. source: "./media/characters/major-colonel/back.svg"
  10551. }
  10552. },
  10553. },
  10554. [
  10555. {
  10556. name: "Macro",
  10557. height: math.unit(400, "feet"),
  10558. default: true
  10559. },
  10560. ]
  10561. ))
  10562. characterMakers.push(() => makeCharacter(
  10563. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10564. {
  10565. catFront: {
  10566. height: math.unit(6, "feet"),
  10567. weight: math.unit(120, "lb"),
  10568. name: "Front (Cat Side)",
  10569. image: {
  10570. source: "./media/characters/axel-lycan/cat-front.svg",
  10571. extra: 430 / 402,
  10572. bottom: 43 / 472.35
  10573. }
  10574. },
  10575. catBack: {
  10576. height: math.unit(6, "feet"),
  10577. weight: math.unit(120, "lb"),
  10578. name: "Back (Cat Side)",
  10579. image: {
  10580. source: "./media/characters/axel-lycan/cat-back.svg",
  10581. extra: 447 / 419,
  10582. bottom: 23.3 / 469
  10583. }
  10584. },
  10585. wolfFront: {
  10586. height: math.unit(6, "feet"),
  10587. weight: math.unit(120, "lb"),
  10588. name: "Front (Wolf Side)",
  10589. image: {
  10590. source: "./media/characters/axel-lycan/wolf-front.svg",
  10591. extra: 485 / 456,
  10592. bottom: 19 / 504
  10593. }
  10594. },
  10595. wolfBack: {
  10596. height: math.unit(6, "feet"),
  10597. weight: math.unit(120, "lb"),
  10598. name: "Back (Wolf Side)",
  10599. image: {
  10600. source: "./media/characters/axel-lycan/wolf-back.svg",
  10601. extra: 475 / 438,
  10602. bottom: 39.2 / 514
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Macro",
  10609. height: math.unit(1, "km"),
  10610. default: true
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(5 + 9 / 12, "feet"),
  10619. weight: math.unit(175, "lb"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/vanrel-hyena/front.svg",
  10623. extra: 1086 / 1010,
  10624. bottom: 0.04
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(5 + 9 / 12, "feet"),
  10632. default: true
  10633. },
  10634. ]
  10635. ))
  10636. characterMakers.push(() => makeCharacter(
  10637. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10638. {
  10639. front: {
  10640. height: math.unit(6, "feet"),
  10641. weight: math.unit(103, "lb"),
  10642. name: "Front",
  10643. image: {
  10644. source: "./media/characters/abbott-absol/front.svg",
  10645. extra: 2010 / 1842
  10646. }
  10647. },
  10648. },
  10649. [
  10650. {
  10651. name: "Megamicro",
  10652. height: math.unit(0.1, "mm")
  10653. },
  10654. {
  10655. name: "Micro",
  10656. height: math.unit(1, "inch")
  10657. },
  10658. {
  10659. name: "Normal",
  10660. height: math.unit(6, "feet"),
  10661. default: true
  10662. },
  10663. ]
  10664. ))
  10665. characterMakers.push(() => makeCharacter(
  10666. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10667. {
  10668. front: {
  10669. height: math.unit(6, "feet"),
  10670. weight: math.unit(264, "lb"),
  10671. name: "Front",
  10672. image: {
  10673. source: "./media/characters/hector/front.svg",
  10674. extra: 2280 / 2130,
  10675. bottom: 0.07
  10676. }
  10677. },
  10678. },
  10679. [
  10680. {
  10681. name: "Normal",
  10682. height: math.unit(12.25, "foot"),
  10683. default: true
  10684. },
  10685. {
  10686. name: "Macro",
  10687. height: math.unit(160, "feet")
  10688. },
  10689. ]
  10690. ))
  10691. characterMakers.push(() => makeCharacter(
  10692. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10693. {
  10694. front: {
  10695. height: math.unit(6, "feet"),
  10696. weight: math.unit(150, "lb"),
  10697. name: "Front",
  10698. image: {
  10699. source: "./media/characters/sal/front.svg",
  10700. extra: 1846 / 1699,
  10701. bottom: 0.04
  10702. }
  10703. },
  10704. },
  10705. [
  10706. {
  10707. name: "Megamacro",
  10708. height: math.unit(10, "miles"),
  10709. default: true
  10710. },
  10711. ]
  10712. ))
  10713. characterMakers.push(() => makeCharacter(
  10714. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10715. {
  10716. front: {
  10717. height: math.unit(3, "meters"),
  10718. weight: math.unit(450, "kg"),
  10719. name: "front",
  10720. image: {
  10721. source: "./media/characters/ranger/front.svg",
  10722. extra: 2401 / 2243,
  10723. bottom: 0.05
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(3, "meters"),
  10731. default: true
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10737. {
  10738. front: {
  10739. height: math.unit(14, "feet"),
  10740. weight: math.unit(800, "kg"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/theresa/front.svg",
  10744. extra: 3575 / 3346,
  10745. bottom: 0.03
  10746. }
  10747. },
  10748. },
  10749. [
  10750. {
  10751. name: "Normal",
  10752. height: math.unit(14, "feet"),
  10753. default: true
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10759. {
  10760. front: {
  10761. height: math.unit(6, "feet"),
  10762. weight: math.unit(3, "kg"),
  10763. name: "Front",
  10764. image: {
  10765. source: "./media/characters/ine/front.svg",
  10766. extra: 678 / 539,
  10767. bottom: 0.023
  10768. }
  10769. },
  10770. },
  10771. [
  10772. {
  10773. name: "Normal",
  10774. height: math.unit(2.265, "feet"),
  10775. default: true
  10776. },
  10777. ]
  10778. ))
  10779. characterMakers.push(() => makeCharacter(
  10780. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10781. {
  10782. front: {
  10783. height: math.unit(5, "feet"),
  10784. weight: math.unit(30, "kg"),
  10785. name: "Front",
  10786. image: {
  10787. source: "./media/characters/vial/front.svg",
  10788. extra: 1365 / 1277,
  10789. bottom: 0.04
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Normal",
  10796. height: math.unit(5, "feet"),
  10797. default: true
  10798. },
  10799. ]
  10800. ))
  10801. characterMakers.push(() => makeCharacter(
  10802. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10803. {
  10804. side: {
  10805. height: math.unit(3.4, "meters"),
  10806. weight: math.unit(1000, "lb"),
  10807. name: "Side",
  10808. image: {
  10809. source: "./media/characters/rovoska/side.svg",
  10810. extra: 4403 / 1515
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(3.4, "meters"),
  10818. default: true
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(8, "feet"),
  10827. weight: math.unit(315, "lb"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/gunner-rotthbauer/front.svg"
  10831. }
  10832. },
  10833. back: {
  10834. height: math.unit(8, "feet"),
  10835. weight: math.unit(315, "lb"),
  10836. name: "Back",
  10837. image: {
  10838. source: "./media/characters/gunner-rotthbauer/back.svg"
  10839. }
  10840. },
  10841. },
  10842. [
  10843. {
  10844. name: "Micro",
  10845. height: math.unit(3.5, "inches")
  10846. },
  10847. {
  10848. name: "Normal",
  10849. height: math.unit(8, "feet"),
  10850. default: true
  10851. },
  10852. {
  10853. name: "Macro",
  10854. height: math.unit(250, "feet")
  10855. },
  10856. {
  10857. name: "Megamacro",
  10858. height: math.unit(1, "AU")
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10864. {
  10865. front: {
  10866. height: math.unit(5 + 5 / 12, "feet"),
  10867. weight: math.unit(140, "lb"),
  10868. name: "Front",
  10869. image: {
  10870. source: "./media/characters/allatia/front.svg",
  10871. extra: 1227 / 1180,
  10872. bottom: 0.027
  10873. }
  10874. },
  10875. },
  10876. [
  10877. {
  10878. name: "Normal",
  10879. height: math.unit(5 + 5 / 12, "feet")
  10880. },
  10881. {
  10882. name: "Macro",
  10883. height: math.unit(250, "feet"),
  10884. default: true
  10885. },
  10886. {
  10887. name: "Megamacro",
  10888. height: math.unit(8, "miles")
  10889. }
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10894. {
  10895. front: {
  10896. height: math.unit(6, "feet"),
  10897. weight: math.unit(120, "lb"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/tene/front.svg",
  10901. extra: 814/750,
  10902. bottom: 36/850
  10903. }
  10904. },
  10905. stomping: {
  10906. height: math.unit(2.025, "meters"),
  10907. weight: math.unit(120, "lb"),
  10908. name: "Stomping",
  10909. image: {
  10910. source: "./media/characters/tene/stomping.svg",
  10911. extra: 885/821,
  10912. bottom: 15/900
  10913. }
  10914. },
  10915. sitting: {
  10916. height: math.unit(1, "meter"),
  10917. weight: math.unit(120, "lb"),
  10918. name: "Sitting",
  10919. image: {
  10920. source: "./media/characters/tene/sitting.svg",
  10921. extra: 396/366,
  10922. bottom: 79/475
  10923. }
  10924. },
  10925. smiling: {
  10926. height: math.unit(1.2, "feet"),
  10927. name: "Smiling",
  10928. image: {
  10929. source: "./media/characters/tene/smiling.svg",
  10930. extra: 1364/1071,
  10931. bottom: 0/1364
  10932. }
  10933. },
  10934. smug: {
  10935. height: math.unit(1.3, "feet"),
  10936. name: "Smug",
  10937. image: {
  10938. source: "./media/characters/tene/smug.svg",
  10939. extra: 1323/1082,
  10940. bottom: 0/1323
  10941. }
  10942. },
  10943. feral: {
  10944. height: math.unit(3.9, "feet"),
  10945. weight: math.unit(250, "lb"),
  10946. name: "Feral",
  10947. image: {
  10948. source: "./media/characters/tene/feral.svg",
  10949. extra: 717 / 458,
  10950. bottom: 0.179
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Normal",
  10957. height: math.unit(6, "feet")
  10958. },
  10959. {
  10960. name: "Macro",
  10961. height: math.unit(300, "feet"),
  10962. default: true
  10963. },
  10964. {
  10965. name: "Megamacro",
  10966. height: math.unit(5, "miles")
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10972. {
  10973. side: {
  10974. height: math.unit(6, "feet"),
  10975. name: "Side",
  10976. image: {
  10977. source: "./media/characters/evander/side.svg",
  10978. extra: 877 / 477
  10979. }
  10980. },
  10981. },
  10982. [
  10983. {
  10984. name: "Normal",
  10985. height: math.unit(0.83, "meters"),
  10986. default: true
  10987. },
  10988. ]
  10989. ))
  10990. characterMakers.push(() => makeCharacter(
  10991. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10992. {
  10993. front: {
  10994. height: math.unit(12, "feet"),
  10995. weight: math.unit(1000, "lb"),
  10996. name: "Front",
  10997. image: {
  10998. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10999. extra: 1762 / 1611
  11000. }
  11001. },
  11002. back: {
  11003. height: math.unit(12, "feet"),
  11004. weight: math.unit(1000, "lb"),
  11005. name: "Back",
  11006. image: {
  11007. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11008. extra: 1762 / 1611
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Normal",
  11015. height: math.unit(12, "feet"),
  11016. default: true
  11017. },
  11018. {
  11019. name: "Kaiju",
  11020. height: math.unit(150, "feet")
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(150, "lb"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/zero-alurus/front.svg"
  11033. }
  11034. },
  11035. back: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(150, "lb"),
  11038. name: "Back",
  11039. image: {
  11040. source: "./media/characters/zero-alurus/back.svg"
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Normal",
  11047. height: math.unit(5 + 10 / 12, "feet")
  11048. },
  11049. {
  11050. name: "Macro",
  11051. height: math.unit(60, "feet"),
  11052. default: true
  11053. },
  11054. {
  11055. name: "Macro+",
  11056. height: math.unit(450, "feet")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(200, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/mega-shi/front.svg",
  11069. extra: 1279 / 1250,
  11070. bottom: 0.02
  11071. }
  11072. },
  11073. back: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(200, "lb"),
  11076. name: "Back",
  11077. image: {
  11078. source: "./media/characters/mega-shi/back.svg",
  11079. extra: 1279 / 1250,
  11080. bottom: 0.02
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Micro",
  11087. height: math.unit(16 + 6 / 12, "feet")
  11088. },
  11089. {
  11090. name: "Third Dimension",
  11091. height: math.unit(40, "meters")
  11092. },
  11093. {
  11094. name: "Normal",
  11095. height: math.unit(660, "feet"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Megamacro",
  11100. height: math.unit(10, "miles")
  11101. },
  11102. {
  11103. name: "Planetary Launch",
  11104. height: math.unit(500, "miles")
  11105. },
  11106. {
  11107. name: "Interstellar",
  11108. height: math.unit(1e9, "miles")
  11109. },
  11110. {
  11111. name: "Leaving the Universe",
  11112. height: math.unit(1, "gigaparsec")
  11113. },
  11114. {
  11115. name: "Travelling Universes",
  11116. height: math.unit(30e15, "parsecs")
  11117. },
  11118. ]
  11119. ))
  11120. characterMakers.push(() => makeCharacter(
  11121. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11122. {
  11123. front: {
  11124. height: math.unit(5 + 4/12, "feet"),
  11125. weight: math.unit(120, "lb"),
  11126. name: "Front",
  11127. image: {
  11128. source: "./media/characters/odyssey/front.svg",
  11129. extra: 1747/1571,
  11130. bottom: 47/1794
  11131. }
  11132. },
  11133. side: {
  11134. height: math.unit(5.1, "feet"),
  11135. weight: math.unit(120, "lb"),
  11136. name: "Side",
  11137. image: {
  11138. source: "./media/characters/odyssey/side.svg",
  11139. extra: 1847/1619,
  11140. bottom: 47/1894
  11141. }
  11142. },
  11143. lounging: {
  11144. height: math.unit(1.464, "feet"),
  11145. weight: math.unit(120, "lb"),
  11146. name: "Lounging",
  11147. image: {
  11148. source: "./media/characters/odyssey/lounging.svg",
  11149. extra: 1235/837,
  11150. bottom: 551/1786
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Normal",
  11157. height: math.unit(5 + 4 / 12, "feet")
  11158. },
  11159. {
  11160. name: "Macro",
  11161. height: math.unit(1, "km")
  11162. },
  11163. {
  11164. name: "Megamacro",
  11165. height: math.unit(3000, "km")
  11166. },
  11167. {
  11168. name: "Gigamacro",
  11169. height: math.unit(1, "AU"),
  11170. default: true
  11171. },
  11172. {
  11173. name: "Omniversal",
  11174. height: math.unit(100e14, "lightyears")
  11175. },
  11176. ]
  11177. ))
  11178. characterMakers.push(() => makeCharacter(
  11179. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11180. {
  11181. front: {
  11182. height: math.unit(5 + 10/12, "feet"),
  11183. name: "Front",
  11184. image: {
  11185. source: "./media/characters/mekuto/front.svg",
  11186. extra: 875/835,
  11187. bottom: 46/921
  11188. }
  11189. },
  11190. },
  11191. [
  11192. {
  11193. name: "Minimicro",
  11194. height: math.unit(0.2, "inches")
  11195. },
  11196. {
  11197. name: "Micro",
  11198. height: math.unit(1.5, "inches")
  11199. },
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(5 + 10 / 12, "feet"),
  11203. default: true
  11204. },
  11205. {
  11206. name: "Minimacro",
  11207. height: math.unit(17 + 9 / 12, "feet")
  11208. },
  11209. {
  11210. name: "Macro",
  11211. height: math.unit(177.5, "feet")
  11212. },
  11213. {
  11214. name: "Megamacro",
  11215. height: math.unit(152, "miles")
  11216. },
  11217. ]
  11218. ))
  11219. characterMakers.push(() => makeCharacter(
  11220. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11221. {
  11222. front: {
  11223. height: math.unit(6.5, "inches"),
  11224. weight: math.unit(13, "oz"),
  11225. name: "Front",
  11226. image: {
  11227. source: "./media/characters/dafydd-tomos/front.svg",
  11228. extra: 2990 / 2603,
  11229. bottom: 0.03
  11230. }
  11231. },
  11232. },
  11233. [
  11234. {
  11235. name: "Micro",
  11236. height: math.unit(6.5, "inches"),
  11237. default: true
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11243. {
  11244. front: {
  11245. height: math.unit(6, "feet"),
  11246. weight: math.unit(150, "lb"),
  11247. name: "Front",
  11248. image: {
  11249. source: "./media/characters/splinter/front.svg",
  11250. extra: 2990 / 2882,
  11251. bottom: 0.04
  11252. }
  11253. },
  11254. back: {
  11255. height: math.unit(6, "feet"),
  11256. weight: math.unit(150, "lb"),
  11257. name: "Back",
  11258. image: {
  11259. source: "./media/characters/splinter/back.svg",
  11260. extra: 2990 / 2882,
  11261. bottom: 0.04
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Normal",
  11268. height: math.unit(6, "feet")
  11269. },
  11270. {
  11271. name: "Macro",
  11272. height: math.unit(230, "meters"),
  11273. default: true
  11274. },
  11275. ]
  11276. ))
  11277. characterMakers.push(() => makeCharacter(
  11278. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11279. {
  11280. front: {
  11281. height: math.unit(4 + 10 / 12, "feet"),
  11282. weight: math.unit(480, "lb"),
  11283. name: "Front",
  11284. image: {
  11285. source: "./media/characters/snow-gabumon/front.svg",
  11286. extra: 1140 / 963,
  11287. bottom: 0.058
  11288. }
  11289. },
  11290. back: {
  11291. height: math.unit(4 + 10 / 12, "feet"),
  11292. weight: math.unit(480, "lb"),
  11293. name: "Back",
  11294. image: {
  11295. source: "./media/characters/snow-gabumon/back.svg",
  11296. extra: 1115 / 962,
  11297. bottom: 0.041
  11298. }
  11299. },
  11300. frontUndresed: {
  11301. height: math.unit(4 + 10 / 12, "feet"),
  11302. weight: math.unit(480, "lb"),
  11303. name: "Front (Undressed)",
  11304. image: {
  11305. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11306. extra: 1061 / 960,
  11307. bottom: 0.045
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Micro",
  11314. height: math.unit(1, "inch")
  11315. },
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(4 + 10 / 12, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(200, "feet")
  11324. },
  11325. {
  11326. name: "Megamacro",
  11327. height: math.unit(120, "miles")
  11328. },
  11329. {
  11330. name: "Gigamacro",
  11331. height: math.unit(9800, "miles")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(1.7, "meters"),
  11340. weight: math.unit(140, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/moody/front.svg",
  11344. extra: 3226 / 3007,
  11345. bottom: 0.087
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Micro",
  11352. height: math.unit(1, "mm")
  11353. },
  11354. {
  11355. name: "Normal",
  11356. height: math.unit(1.7, "meters"),
  11357. default: true
  11358. },
  11359. {
  11360. name: "Macro",
  11361. height: math.unit(80, "meters")
  11362. },
  11363. {
  11364. name: "Macro+",
  11365. height: math.unit(500, "meters")
  11366. },
  11367. ]
  11368. ))
  11369. characterMakers.push(() => makeCharacter(
  11370. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11371. {
  11372. front: {
  11373. height: math.unit(6, "feet"),
  11374. weight: math.unit(150, "lb"),
  11375. name: "Front",
  11376. image: {
  11377. source: "./media/characters/zyas/front.svg",
  11378. extra: 1180 / 1120,
  11379. bottom: 0.045
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Normal",
  11386. height: math.unit(10, "feet"),
  11387. default: true
  11388. },
  11389. {
  11390. name: "Macro",
  11391. height: math.unit(500, "feet")
  11392. },
  11393. {
  11394. name: "Megamacro",
  11395. height: math.unit(5, "miles")
  11396. },
  11397. {
  11398. name: "Teramacro",
  11399. height: math.unit(150000, "miles")
  11400. },
  11401. ]
  11402. ))
  11403. characterMakers.push(() => makeCharacter(
  11404. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11405. {
  11406. front: {
  11407. height: math.unit(6, "feet"),
  11408. weight: math.unit(150, "lb"),
  11409. name: "Front",
  11410. image: {
  11411. source: "./media/characters/cuon/front.svg",
  11412. extra: 1390 / 1320,
  11413. bottom: 0.008
  11414. }
  11415. },
  11416. },
  11417. [
  11418. {
  11419. name: "Micro",
  11420. height: math.unit(3, "inches")
  11421. },
  11422. {
  11423. name: "Normal",
  11424. height: math.unit(18 + 9 / 12, "feet"),
  11425. default: true
  11426. },
  11427. {
  11428. name: "Macro",
  11429. height: math.unit(360, "feet")
  11430. },
  11431. {
  11432. name: "Megamacro",
  11433. height: math.unit(360, "miles")
  11434. },
  11435. ]
  11436. ))
  11437. characterMakers.push(() => makeCharacter(
  11438. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11439. {
  11440. front: {
  11441. height: math.unit(2.4, "meters"),
  11442. weight: math.unit(70, "kg"),
  11443. name: "Front",
  11444. image: {
  11445. source: "./media/characters/nyanuxk/front.svg",
  11446. extra: 1172 / 1084,
  11447. bottom: 0.065
  11448. }
  11449. },
  11450. side: {
  11451. height: math.unit(2.4, "meters"),
  11452. weight: math.unit(70, "kg"),
  11453. name: "Side",
  11454. image: {
  11455. source: "./media/characters/nyanuxk/side.svg",
  11456. extra: 1190 / 1132,
  11457. bottom: 0.007
  11458. }
  11459. },
  11460. back: {
  11461. height: math.unit(2.4, "meters"),
  11462. weight: math.unit(70, "kg"),
  11463. name: "Back",
  11464. image: {
  11465. source: "./media/characters/nyanuxk/back.svg",
  11466. extra: 1200 / 1141,
  11467. bottom: 0.015
  11468. }
  11469. },
  11470. foot: {
  11471. height: math.unit(0.52, "meters"),
  11472. name: "Foot",
  11473. image: {
  11474. source: "./media/characters/nyanuxk/foot.svg"
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Micro",
  11481. height: math.unit(2, "cm")
  11482. },
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(2.4, "meters"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Smaller Macro",
  11490. height: math.unit(120, "meters")
  11491. },
  11492. {
  11493. name: "Bigger Macro",
  11494. height: math.unit(1.2, "km")
  11495. },
  11496. {
  11497. name: "Megamacro",
  11498. height: math.unit(15, "kilometers")
  11499. },
  11500. {
  11501. name: "Gigamacro",
  11502. height: math.unit(2000, "km")
  11503. },
  11504. {
  11505. name: "Teramacro",
  11506. height: math.unit(500000, "km")
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11512. {
  11513. side: {
  11514. height: math.unit(6, "feet"),
  11515. name: "Side",
  11516. image: {
  11517. source: "./media/characters/ailbhe/side.svg",
  11518. extra: 757 / 464,
  11519. bottom: 0.041
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Normal",
  11526. height: math.unit(1.07, "meters"),
  11527. default: true
  11528. },
  11529. ]
  11530. ))
  11531. characterMakers.push(() => makeCharacter(
  11532. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11533. {
  11534. front: {
  11535. height: math.unit(6, "feet"),
  11536. weight: math.unit(120, "kg"),
  11537. name: "Front",
  11538. image: {
  11539. source: "./media/characters/zevulfius/front.svg",
  11540. extra: 965 / 903
  11541. }
  11542. },
  11543. side: {
  11544. height: math.unit(6, "feet"),
  11545. weight: math.unit(120, "kg"),
  11546. name: "Side",
  11547. image: {
  11548. source: "./media/characters/zevulfius/side.svg",
  11549. extra: 939 / 900
  11550. }
  11551. },
  11552. back: {
  11553. height: math.unit(6, "feet"),
  11554. weight: math.unit(120, "kg"),
  11555. name: "Back",
  11556. image: {
  11557. source: "./media/characters/zevulfius/back.svg",
  11558. extra: 918 / 854,
  11559. bottom: 0.005
  11560. }
  11561. },
  11562. foot: {
  11563. height: math.unit(6 / 3.72, "feet"),
  11564. name: "Foot",
  11565. image: {
  11566. source: "./media/characters/zevulfius/foot.svg"
  11567. }
  11568. },
  11569. },
  11570. [
  11571. {
  11572. name: "Macro",
  11573. height: math.unit(750, "meters")
  11574. },
  11575. {
  11576. name: "Megamacro",
  11577. height: math.unit(20, "km"),
  11578. default: true
  11579. },
  11580. {
  11581. name: "Gigamacro",
  11582. height: math.unit(2000, "km")
  11583. },
  11584. {
  11585. name: "Teramacro",
  11586. height: math.unit(250000, "km")
  11587. },
  11588. ]
  11589. ))
  11590. characterMakers.push(() => makeCharacter(
  11591. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11592. {
  11593. front: {
  11594. height: math.unit(100, "feet"),
  11595. weight: math.unit(350, "kg"),
  11596. name: "Front",
  11597. image: {
  11598. source: "./media/characters/rikes/front.svg",
  11599. extra: 1565 / 1483,
  11600. bottom: 0.017
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Macro",
  11607. height: math.unit(100, "feet"),
  11608. default: true
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11614. {
  11615. front: {
  11616. height: math.unit(8, "feet"),
  11617. weight: math.unit(356, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/adam-silver-mane/front.svg",
  11621. extra: 1036/937,
  11622. bottom: 63/1099
  11623. }
  11624. },
  11625. side: {
  11626. height: math.unit(8, "feet"),
  11627. weight: math.unit(356, "lb"),
  11628. name: "Side",
  11629. image: {
  11630. source: "./media/characters/adam-silver-mane/side.svg",
  11631. extra: 997/901,
  11632. bottom: 59/1056
  11633. }
  11634. },
  11635. frontNsfw: {
  11636. height: math.unit(8, "feet"),
  11637. weight: math.unit(356, "lb"),
  11638. name: "Front (NSFW)",
  11639. image: {
  11640. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11641. extra: 1036/937,
  11642. bottom: 63/1099
  11643. }
  11644. },
  11645. sideNsfw: {
  11646. height: math.unit(8, "feet"),
  11647. weight: math.unit(356, "lb"),
  11648. name: "Side (NSFW)",
  11649. image: {
  11650. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11651. extra: 997/901,
  11652. bottom: 59/1056
  11653. }
  11654. },
  11655. dick: {
  11656. height: math.unit(2.1, "feet"),
  11657. name: "Dick",
  11658. image: {
  11659. source: "./media/characters/adam-silver-mane/dick.svg"
  11660. }
  11661. },
  11662. taur: {
  11663. height: math.unit(16, "feet"),
  11664. weight: math.unit(1500, "kg"),
  11665. name: "Taur",
  11666. image: {
  11667. source: "./media/characters/adam-silver-mane/taur.svg",
  11668. extra: 1713 / 1571,
  11669. bottom: 0.01
  11670. }
  11671. },
  11672. },
  11673. [
  11674. {
  11675. name: "Normal",
  11676. height: math.unit(8, "feet")
  11677. },
  11678. {
  11679. name: "Minimacro",
  11680. height: math.unit(80, "feet")
  11681. },
  11682. {
  11683. name: "MDA",
  11684. height: math.unit(80, "meters")
  11685. },
  11686. {
  11687. name: "Macro",
  11688. height: math.unit(800, "feet"),
  11689. default: true
  11690. },
  11691. {
  11692. name: "Megamacro",
  11693. height: math.unit(8000, "feet")
  11694. },
  11695. {
  11696. name: "Gigamacro",
  11697. height: math.unit(800, "miles")
  11698. },
  11699. {
  11700. name: "Teramacro",
  11701. height: math.unit(80000, "miles")
  11702. },
  11703. {
  11704. name: "Celestial",
  11705. height: math.unit(8e6, "miles")
  11706. },
  11707. {
  11708. name: "Star Dragon",
  11709. height: math.unit(800000, "parsecs")
  11710. },
  11711. {
  11712. name: "Godly",
  11713. height: math.unit(800, "teraparsecs")
  11714. },
  11715. ]
  11716. ))
  11717. characterMakers.push(() => makeCharacter(
  11718. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11719. {
  11720. front: {
  11721. height: math.unit(6, "feet"),
  11722. weight: math.unit(150, "lb"),
  11723. name: "Front",
  11724. image: {
  11725. source: "./media/characters/ky'owin/front.svg",
  11726. extra: 3862/3053,
  11727. bottom: 74/3936
  11728. }
  11729. },
  11730. },
  11731. [
  11732. {
  11733. name: "Normal",
  11734. height: math.unit(6 + 8 / 12, "feet")
  11735. },
  11736. {
  11737. name: "Large",
  11738. height: math.unit(68, "feet")
  11739. },
  11740. {
  11741. name: "Macro",
  11742. height: math.unit(132, "feet")
  11743. },
  11744. {
  11745. name: "Macro+",
  11746. height: math.unit(340, "feet")
  11747. },
  11748. {
  11749. name: "Macro++",
  11750. height: math.unit(680, "feet"),
  11751. default: true
  11752. },
  11753. {
  11754. name: "Megamacro",
  11755. height: math.unit(1, "mile")
  11756. },
  11757. {
  11758. name: "Megamacro+",
  11759. height: math.unit(10, "miles")
  11760. },
  11761. ]
  11762. ))
  11763. characterMakers.push(() => makeCharacter(
  11764. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11765. {
  11766. front: {
  11767. height: math.unit(4, "feet"),
  11768. weight: math.unit(50, "lb"),
  11769. name: "Front",
  11770. image: {
  11771. source: "./media/characters/mal/front.svg",
  11772. extra: 785 / 724,
  11773. bottom: 0.07
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Micro",
  11780. height: math.unit(4, "inches")
  11781. },
  11782. {
  11783. name: "Normal",
  11784. height: math.unit(4, "feet"),
  11785. default: true
  11786. },
  11787. {
  11788. name: "Macro",
  11789. height: math.unit(200, "feet")
  11790. },
  11791. ]
  11792. ))
  11793. characterMakers.push(() => makeCharacter(
  11794. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11795. {
  11796. front: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Front",
  11800. image: {
  11801. source: "./media/characters/jordan-deware/front.svg",
  11802. extra: 1191 / 1012
  11803. }
  11804. },
  11805. },
  11806. [
  11807. {
  11808. name: "Nano",
  11809. height: math.unit(0.01, "mm")
  11810. },
  11811. {
  11812. name: "Minimicro",
  11813. height: math.unit(1, "mm")
  11814. },
  11815. {
  11816. name: "Micro",
  11817. height: math.unit(0.5, "inches")
  11818. },
  11819. {
  11820. name: "Normal",
  11821. height: math.unit(4, "feet"),
  11822. default: true
  11823. },
  11824. {
  11825. name: "Minimacro",
  11826. height: math.unit(40, "meters")
  11827. },
  11828. {
  11829. name: "Small Macro",
  11830. height: math.unit(400, "meters")
  11831. },
  11832. {
  11833. name: "Macro",
  11834. height: math.unit(4, "miles")
  11835. },
  11836. {
  11837. name: "Megamacro",
  11838. height: math.unit(40, "miles")
  11839. },
  11840. {
  11841. name: "Megamacro+",
  11842. height: math.unit(400, "miles")
  11843. },
  11844. {
  11845. name: "Gigamacro",
  11846. height: math.unit(400000, "miles")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11852. {
  11853. side: {
  11854. height: math.unit(6, "feet"),
  11855. weight: math.unit(150, "lb"),
  11856. name: "Side",
  11857. image: {
  11858. source: "./media/characters/kimiko/side.svg",
  11859. extra: 600 / 358
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Normal",
  11866. height: math.unit(15, "feet"),
  11867. default: true
  11868. },
  11869. {
  11870. name: "Macro",
  11871. height: math.unit(220, "feet")
  11872. },
  11873. {
  11874. name: "Macro+",
  11875. height: math.unit(1450, "feet")
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(11500, "feet")
  11880. },
  11881. {
  11882. name: "Gigamacro",
  11883. height: math.unit(9500, "miles")
  11884. },
  11885. {
  11886. name: "Teramacro",
  11887. height: math.unit(2208005005, "miles")
  11888. },
  11889. {
  11890. name: "Examacro",
  11891. height: math.unit(2750, "parsecs")
  11892. },
  11893. {
  11894. name: "Zettamacro",
  11895. height: math.unit(101500, "parsecs")
  11896. },
  11897. ]
  11898. ))
  11899. characterMakers.push(() => makeCharacter(
  11900. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11901. {
  11902. front: {
  11903. height: math.unit(6, "feet"),
  11904. weight: math.unit(70, "kg"),
  11905. name: "Front",
  11906. image: {
  11907. source: "./media/characters/andrew-sleepy/front.svg"
  11908. }
  11909. },
  11910. side: {
  11911. height: math.unit(6, "feet"),
  11912. weight: math.unit(70, "kg"),
  11913. name: "Side",
  11914. image: {
  11915. source: "./media/characters/andrew-sleepy/side.svg"
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Micro",
  11922. height: math.unit(1, "mm"),
  11923. default: true
  11924. },
  11925. ]
  11926. ))
  11927. characterMakers.push(() => makeCharacter(
  11928. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11929. {
  11930. front: {
  11931. height: math.unit(6, "feet"),
  11932. weight: math.unit(150, "lb"),
  11933. name: "Front",
  11934. image: {
  11935. source: "./media/characters/judio/front.svg",
  11936. extra: 1258 / 1110
  11937. }
  11938. },
  11939. },
  11940. [
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(5 + 6 / 12, "feet")
  11944. },
  11945. {
  11946. name: "Macro",
  11947. height: math.unit(1000, "feet"),
  11948. default: true
  11949. },
  11950. {
  11951. name: "Megamacro",
  11952. height: math.unit(10, "miles")
  11953. },
  11954. ]
  11955. ))
  11956. characterMakers.push(() => makeCharacter(
  11957. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11958. {
  11959. frontDressed: {
  11960. height: math.unit(6, "feet"),
  11961. weight: math.unit(68, "kg"),
  11962. name: "Front (Dressed)",
  11963. image: {
  11964. source: "./media/characters/nomaxice/front-dressed.svg",
  11965. extra: 1137/824,
  11966. bottom: 74/1211
  11967. }
  11968. },
  11969. frontShorts: {
  11970. height: math.unit(6, "feet"),
  11971. weight: math.unit(68, "kg"),
  11972. name: "Front (Shorts)",
  11973. image: {
  11974. source: "./media/characters/nomaxice/front-shorts.svg",
  11975. extra: 1137/824,
  11976. bottom: 74/1211
  11977. }
  11978. },
  11979. back: {
  11980. height: math.unit(6, "feet"),
  11981. weight: math.unit(68, "kg"),
  11982. name: "Back",
  11983. image: {
  11984. source: "./media/characters/nomaxice/back.svg",
  11985. extra: 822/786,
  11986. bottom: 39/861
  11987. }
  11988. },
  11989. hand: {
  11990. height: math.unit(0.565, "feet"),
  11991. name: "Hand",
  11992. image: {
  11993. source: "./media/characters/nomaxice/hand.svg"
  11994. }
  11995. },
  11996. foot: {
  11997. height: math.unit(1, "feet"),
  11998. name: "Foot",
  11999. image: {
  12000. source: "./media/characters/nomaxice/foot.svg"
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Micro",
  12007. height: math.unit(8, "cm")
  12008. },
  12009. {
  12010. name: "Norm",
  12011. height: math.unit(1.82, "m")
  12012. },
  12013. {
  12014. name: "Norm+",
  12015. height: math.unit(8.8, "feet"),
  12016. default: true
  12017. },
  12018. {
  12019. name: "Big",
  12020. height: math.unit(8, "meters")
  12021. },
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(18, "meters")
  12025. },
  12026. {
  12027. name: "Macro+",
  12028. height: math.unit(88, "meters")
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12034. {
  12035. front: {
  12036. height: math.unit(12, "feet"),
  12037. weight: math.unit(1.5, "tons"),
  12038. name: "Front",
  12039. image: {
  12040. source: "./media/characters/dydros/front.svg",
  12041. extra: 863 / 800,
  12042. bottom: 0.015
  12043. }
  12044. },
  12045. back: {
  12046. height: math.unit(12, "feet"),
  12047. weight: math.unit(1.5, "tons"),
  12048. name: "Back",
  12049. image: {
  12050. source: "./media/characters/dydros/back.svg",
  12051. extra: 900 / 843,
  12052. bottom: 0.005
  12053. }
  12054. },
  12055. },
  12056. [
  12057. {
  12058. name: "Normal",
  12059. height: math.unit(12, "feet"),
  12060. default: true
  12061. },
  12062. ]
  12063. ))
  12064. characterMakers.push(() => makeCharacter(
  12065. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12066. {
  12067. front: {
  12068. height: math.unit(6, "feet"),
  12069. weight: math.unit(100, "kg"),
  12070. name: "Front",
  12071. image: {
  12072. source: "./media/characters/riggi/front.svg",
  12073. extra: 5787 / 5303
  12074. }
  12075. },
  12076. hyper: {
  12077. height: math.unit(6 * 5 / 3, "feet"),
  12078. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12079. name: "Hyper",
  12080. image: {
  12081. source: "./media/characters/riggi/hyper.svg",
  12082. extra: 3595 / 3485
  12083. }
  12084. },
  12085. },
  12086. [
  12087. {
  12088. name: "Small Macro",
  12089. height: math.unit(50, "feet")
  12090. },
  12091. {
  12092. name: "Default",
  12093. height: math.unit(200, "feet"),
  12094. default: true
  12095. },
  12096. {
  12097. name: "Loom",
  12098. height: math.unit(10000, "feet")
  12099. },
  12100. {
  12101. name: "Cruising Altitude",
  12102. height: math.unit(30000, "feet")
  12103. },
  12104. {
  12105. name: "Megamacro",
  12106. height: math.unit(100, "miles")
  12107. },
  12108. {
  12109. name: "Continent Sized",
  12110. height: math.unit(2800, "miles")
  12111. },
  12112. {
  12113. name: "Earth Sized",
  12114. height: math.unit(8000, "miles")
  12115. },
  12116. ]
  12117. ))
  12118. characterMakers.push(() => makeCharacter(
  12119. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12120. {
  12121. front: {
  12122. height: math.unit(6, "feet"),
  12123. weight: math.unit(250, "lb"),
  12124. name: "Front",
  12125. image: {
  12126. source: "./media/characters/alexi/front.svg",
  12127. extra: 3483 / 3291,
  12128. bottom: 0.04
  12129. }
  12130. },
  12131. back: {
  12132. height: math.unit(6, "feet"),
  12133. weight: math.unit(250, "lb"),
  12134. name: "Back",
  12135. image: {
  12136. source: "./media/characters/alexi/back.svg",
  12137. extra: 3533 / 3356,
  12138. bottom: 0.021
  12139. }
  12140. },
  12141. frontTransforming: {
  12142. height: math.unit(8.58, "feet"),
  12143. weight: math.unit(1300, "lb"),
  12144. name: "Transforming",
  12145. image: {
  12146. source: "./media/characters/alexi/front-transforming.svg",
  12147. extra: 437 / 409,
  12148. bottom: 19 / 458.66
  12149. }
  12150. },
  12151. frontTransformed: {
  12152. height: math.unit(12.5, "feet"),
  12153. weight: math.unit(4000, "lb"),
  12154. name: "Transformed",
  12155. image: {
  12156. source: "./media/characters/alexi/front-transformed.svg",
  12157. extra: 639 / 614,
  12158. bottom: 30.55 / 671
  12159. }
  12160. },
  12161. },
  12162. [
  12163. {
  12164. name: "Normal",
  12165. height: math.unit(14, "feet"),
  12166. default: true
  12167. },
  12168. {
  12169. name: "Minimacro",
  12170. height: math.unit(30, "meters")
  12171. },
  12172. {
  12173. name: "Macro",
  12174. height: math.unit(500, "meters")
  12175. },
  12176. {
  12177. name: "Megamacro",
  12178. height: math.unit(9000, "km")
  12179. },
  12180. {
  12181. name: "Teramacro",
  12182. height: math.unit(384000, "km")
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12188. {
  12189. front: {
  12190. height: math.unit(6, "feet"),
  12191. weight: math.unit(150, "lb"),
  12192. name: "Front",
  12193. image: {
  12194. source: "./media/characters/kayroo/front.svg",
  12195. extra: 1153 / 1038,
  12196. bottom: 0.06
  12197. }
  12198. },
  12199. foot: {
  12200. height: math.unit(6, "feet"),
  12201. weight: math.unit(150, "lb"),
  12202. name: "Foot",
  12203. image: {
  12204. source: "./media/characters/kayroo/foot.svg"
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(8, "feet"),
  12212. default: true
  12213. },
  12214. {
  12215. name: "Minimacro",
  12216. height: math.unit(250, "feet")
  12217. },
  12218. {
  12219. name: "Macro",
  12220. height: math.unit(2800, "feet")
  12221. },
  12222. {
  12223. name: "Megamacro",
  12224. height: math.unit(5200, "feet")
  12225. },
  12226. {
  12227. name: "Gigamacro",
  12228. height: math.unit(27000, "feet")
  12229. },
  12230. {
  12231. name: "Omega",
  12232. height: math.unit(45000, "feet")
  12233. },
  12234. ]
  12235. ))
  12236. characterMakers.push(() => makeCharacter(
  12237. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12238. {
  12239. front: {
  12240. height: math.unit(18, "feet"),
  12241. weight: math.unit(5800, "lb"),
  12242. name: "Front",
  12243. image: {
  12244. source: "./media/characters/rhys/front.svg",
  12245. extra: 3386 / 3090,
  12246. bottom: 0.07
  12247. }
  12248. },
  12249. },
  12250. [
  12251. {
  12252. name: "Normal",
  12253. height: math.unit(18, "feet"),
  12254. default: true
  12255. },
  12256. {
  12257. name: "Working Size",
  12258. height: math.unit(200, "feet")
  12259. },
  12260. {
  12261. name: "Demolition Size",
  12262. height: math.unit(2000, "feet")
  12263. },
  12264. {
  12265. name: "Maximum Licensed Size",
  12266. height: math.unit(5, "miles")
  12267. },
  12268. {
  12269. name: "Maximum Observed Size",
  12270. height: math.unit(10, "yottameters")
  12271. },
  12272. ]
  12273. ))
  12274. characterMakers.push(() => makeCharacter(
  12275. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12276. {
  12277. front: {
  12278. height: math.unit(6, "feet"),
  12279. weight: math.unit(250, "lb"),
  12280. name: "Front",
  12281. image: {
  12282. source: "./media/characters/toto/front.svg",
  12283. extra: 527 / 479,
  12284. bottom: 0.05
  12285. }
  12286. },
  12287. },
  12288. [
  12289. {
  12290. name: "Micro",
  12291. height: math.unit(3, "feet")
  12292. },
  12293. {
  12294. name: "Normal",
  12295. height: math.unit(10, "feet")
  12296. },
  12297. {
  12298. name: "Macro",
  12299. height: math.unit(150, "feet"),
  12300. default: true
  12301. },
  12302. {
  12303. name: "Megamacro",
  12304. height: math.unit(1200, "feet")
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "King", species: ["lion"], tags: ["anthro"] },
  12310. {
  12311. back: {
  12312. height: math.unit(6, "feet"),
  12313. weight: math.unit(150, "lb"),
  12314. name: "Back",
  12315. image: {
  12316. source: "./media/characters/king/back.svg"
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Micro",
  12323. height: math.unit(2, "inches")
  12324. },
  12325. {
  12326. name: "Normal",
  12327. height: math.unit(8, "feet")
  12328. },
  12329. {
  12330. name: "Macro",
  12331. height: math.unit(200, "feet"),
  12332. default: true
  12333. },
  12334. {
  12335. name: "Megamacro",
  12336. height: math.unit(50, "miles")
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12342. {
  12343. front: {
  12344. height: math.unit(11, "feet"),
  12345. weight: math.unit(1400, "lb"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/cordite/front.svg",
  12349. extra: 1919/1827,
  12350. bottom: 40/1959
  12351. }
  12352. },
  12353. side: {
  12354. height: math.unit(11, "feet"),
  12355. weight: math.unit(1400, "lb"),
  12356. name: "Side",
  12357. image: {
  12358. source: "./media/characters/cordite/side.svg",
  12359. extra: 1908/1793,
  12360. bottom: 38/1946
  12361. }
  12362. },
  12363. back: {
  12364. height: math.unit(11, "feet"),
  12365. weight: math.unit(1400, "lb"),
  12366. name: "Back",
  12367. image: {
  12368. source: "./media/characters/cordite/back.svg",
  12369. extra: 1938/1837,
  12370. bottom: 10/1948
  12371. }
  12372. },
  12373. feral: {
  12374. height: math.unit(2, "feet"),
  12375. weight: math.unit(90, "lb"),
  12376. name: "Feral",
  12377. image: {
  12378. source: "./media/characters/cordite/feral.svg",
  12379. extra: 1260 / 755,
  12380. bottom: 0.05
  12381. }
  12382. },
  12383. },
  12384. [
  12385. {
  12386. name: "Normal",
  12387. height: math.unit(11, "feet"),
  12388. default: true
  12389. },
  12390. ]
  12391. ))
  12392. characterMakers.push(() => makeCharacter(
  12393. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12394. {
  12395. front: {
  12396. height: math.unit(6, "feet"),
  12397. weight: math.unit(150, "lb"),
  12398. name: "Front",
  12399. image: {
  12400. source: "./media/characters/pianostrong/front.svg",
  12401. extra: 6577 / 6254,
  12402. bottom: 0.02
  12403. }
  12404. },
  12405. side: {
  12406. height: math.unit(6, "feet"),
  12407. weight: math.unit(150, "lb"),
  12408. name: "Side",
  12409. image: {
  12410. source: "./media/characters/pianostrong/side.svg",
  12411. extra: 6106 / 5730
  12412. }
  12413. },
  12414. back: {
  12415. height: math.unit(6, "feet"),
  12416. weight: math.unit(150, "lb"),
  12417. name: "Back",
  12418. image: {
  12419. source: "./media/characters/pianostrong/back.svg",
  12420. extra: 6085 / 5733,
  12421. bottom: 0.01
  12422. }
  12423. },
  12424. },
  12425. [
  12426. {
  12427. name: "Macro",
  12428. height: math.unit(100, "feet")
  12429. },
  12430. {
  12431. name: "Macro+",
  12432. height: math.unit(300, "feet"),
  12433. default: true
  12434. },
  12435. {
  12436. name: "Macro++",
  12437. height: math.unit(1000, "feet")
  12438. },
  12439. ]
  12440. ))
  12441. characterMakers.push(() => makeCharacter(
  12442. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12443. {
  12444. front: {
  12445. height: math.unit(6, "feet"),
  12446. weight: math.unit(150, "lb"),
  12447. name: "Front",
  12448. image: {
  12449. source: "./media/characters/kona/front.svg",
  12450. extra: 2960 / 2629,
  12451. bottom: 0.005
  12452. }
  12453. },
  12454. },
  12455. [
  12456. {
  12457. name: "Normal",
  12458. height: math.unit(11 + 8 / 12, "feet")
  12459. },
  12460. {
  12461. name: "Macro",
  12462. height: math.unit(850, "feet"),
  12463. default: true
  12464. },
  12465. {
  12466. name: "Macro+",
  12467. height: math.unit(1.5, "km"),
  12468. default: true
  12469. },
  12470. {
  12471. name: "Megamacro",
  12472. height: math.unit(80, "miles")
  12473. },
  12474. {
  12475. name: "Gigamacro",
  12476. height: math.unit(3500, "miles")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12482. {
  12483. side: {
  12484. height: math.unit(1.9, "meters"),
  12485. weight: math.unit(326, "kg"),
  12486. name: "Side",
  12487. image: {
  12488. source: "./media/characters/levi/side.svg",
  12489. extra: 1704 / 1334,
  12490. bottom: 0.02
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Normal",
  12497. height: math.unit(1.9, "meters"),
  12498. default: true
  12499. },
  12500. {
  12501. name: "Macro",
  12502. height: math.unit(20, "meters")
  12503. },
  12504. {
  12505. name: "Macro+",
  12506. height: math.unit(200, "meters")
  12507. },
  12508. {
  12509. name: "Megamacro",
  12510. height: math.unit(2, "km")
  12511. },
  12512. {
  12513. name: "Megamacro+",
  12514. height: math.unit(20, "km")
  12515. },
  12516. {
  12517. name: "Gigamacro",
  12518. height: math.unit(2500, "km")
  12519. },
  12520. {
  12521. name: "Gigamacro+",
  12522. height: math.unit(120000, "km")
  12523. },
  12524. {
  12525. name: "Teramacro",
  12526. height: math.unit(7.77e6, "km")
  12527. },
  12528. ]
  12529. ))
  12530. characterMakers.push(() => makeCharacter(
  12531. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12532. {
  12533. front: {
  12534. height: math.unit(6 + 4/12, "feet"),
  12535. weight: math.unit(190, "lb"),
  12536. name: "Front",
  12537. image: {
  12538. source: "./media/characters/bmc/front.svg",
  12539. extra: 1626/1472,
  12540. bottom: 79/1705
  12541. }
  12542. },
  12543. back: {
  12544. height: math.unit(6 + 4/12, "feet"),
  12545. weight: math.unit(190, "lb"),
  12546. name: "Back",
  12547. image: {
  12548. source: "./media/characters/bmc/back.svg",
  12549. extra: 1640/1479,
  12550. bottom: 45/1685
  12551. }
  12552. },
  12553. frontArmor: {
  12554. height: math.unit(6 + 4/12, "feet"),
  12555. weight: math.unit(190, "lb"),
  12556. name: "Front-armor",
  12557. image: {
  12558. source: "./media/characters/bmc/front-armor.svg",
  12559. extra: 1538/1468,
  12560. bottom: 79/1617
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Human-sized",
  12567. height: math.unit(6 + 4 / 12, "feet")
  12568. },
  12569. {
  12570. name: "Interactive Size",
  12571. height: math.unit(25, "feet")
  12572. },
  12573. {
  12574. name: "Small",
  12575. height: math.unit(250, "feet")
  12576. },
  12577. {
  12578. name: "Normal",
  12579. height: math.unit(1250, "feet"),
  12580. default: true
  12581. },
  12582. {
  12583. name: "Good Day",
  12584. height: math.unit(88, "miles")
  12585. },
  12586. {
  12587. name: "Largest Measured Size",
  12588. height: math.unit(105.960, "galaxies")
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12594. {
  12595. front: {
  12596. height: math.unit(20, "feet"),
  12597. weight: math.unit(2016, "kg"),
  12598. name: "Front",
  12599. image: {
  12600. source: "./media/characters/sven-the-kaiju/front.svg",
  12601. extra: 1277/1250,
  12602. bottom: 35/1312
  12603. }
  12604. },
  12605. mouth: {
  12606. height: math.unit(1.85, "feet"),
  12607. name: "Mouth",
  12608. image: {
  12609. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12610. }
  12611. },
  12612. },
  12613. [
  12614. {
  12615. name: "Fairy",
  12616. height: math.unit(6, "inches")
  12617. },
  12618. {
  12619. name: "Normal",
  12620. height: math.unit(20, "feet"),
  12621. default: true
  12622. },
  12623. {
  12624. name: "Rampage",
  12625. height: math.unit(200, "feet")
  12626. },
  12627. {
  12628. name: "Archfey Forest Guardian",
  12629. height: math.unit(1, "mile")
  12630. },
  12631. ]
  12632. ))
  12633. characterMakers.push(() => makeCharacter(
  12634. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12635. {
  12636. front: {
  12637. height: math.unit(4, "meters"),
  12638. weight: math.unit(2, "tons"),
  12639. name: "Front",
  12640. image: {
  12641. source: "./media/characters/marik/front.svg",
  12642. extra: 1057 / 1003,
  12643. bottom: 0.08
  12644. }
  12645. },
  12646. },
  12647. [
  12648. {
  12649. name: "Normal",
  12650. height: math.unit(4, "meters"),
  12651. default: true
  12652. },
  12653. {
  12654. name: "Macro",
  12655. height: math.unit(20, "meters")
  12656. },
  12657. {
  12658. name: "Megamacro",
  12659. height: math.unit(50, "km")
  12660. },
  12661. {
  12662. name: "Gigamacro",
  12663. height: math.unit(100, "km")
  12664. },
  12665. {
  12666. name: "Alpha Macro",
  12667. height: math.unit(7.88e7, "yottameters")
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(6, "feet"),
  12676. weight: math.unit(110, "lb"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/mel/front.svg",
  12680. extra: 736 / 617,
  12681. bottom: 0.017
  12682. }
  12683. },
  12684. },
  12685. [
  12686. {
  12687. name: "Pico",
  12688. height: math.unit(3, "pm")
  12689. },
  12690. {
  12691. name: "Nano",
  12692. height: math.unit(3, "nm")
  12693. },
  12694. {
  12695. name: "Micro",
  12696. height: math.unit(0.3, "mm"),
  12697. default: true
  12698. },
  12699. {
  12700. name: "Micro+",
  12701. height: math.unit(3, "mm")
  12702. },
  12703. {
  12704. name: "Normal",
  12705. height: math.unit(5 + 10.5 / 12, "feet")
  12706. },
  12707. ]
  12708. ))
  12709. characterMakers.push(() => makeCharacter(
  12710. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12711. {
  12712. kaiju: {
  12713. height: math.unit(1.75, "meters"),
  12714. weight: math.unit(55, "kg"),
  12715. name: "Kaiju",
  12716. image: {
  12717. source: "./media/characters/lykonous/kaiju.svg",
  12718. extra: 1055 / 946,
  12719. bottom: 0.135
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Normal",
  12726. height: math.unit(2.5, "meters"),
  12727. default: true
  12728. },
  12729. {
  12730. name: "Kaiju Dragon",
  12731. height: math.unit(60, "meters")
  12732. },
  12733. {
  12734. name: "Mega Kaiju",
  12735. height: math.unit(120, "km")
  12736. },
  12737. {
  12738. name: "Giga Kaiju",
  12739. height: math.unit(200, "megameters")
  12740. },
  12741. {
  12742. name: "Terra Kaiju",
  12743. height: math.unit(400, "gigameters")
  12744. },
  12745. {
  12746. name: "Kaiju Dragon God",
  12747. height: math.unit(13000, "exaparsecs")
  12748. },
  12749. ]
  12750. ))
  12751. characterMakers.push(() => makeCharacter(
  12752. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12753. {
  12754. front: {
  12755. height: math.unit(6, "feet"),
  12756. weight: math.unit(150, "lb"),
  12757. name: "Front",
  12758. image: {
  12759. source: "./media/characters/blü/front.svg",
  12760. extra: 1883 / 1564,
  12761. bottom: 0.031
  12762. }
  12763. },
  12764. },
  12765. [
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(13, "feet"),
  12769. default: true
  12770. },
  12771. {
  12772. name: "Big Boi",
  12773. height: math.unit(150, "meters")
  12774. },
  12775. {
  12776. name: "Mini Stomper",
  12777. height: math.unit(300, "meters")
  12778. },
  12779. {
  12780. name: "Macro",
  12781. height: math.unit(1000, "meters")
  12782. },
  12783. {
  12784. name: "Megamacro",
  12785. height: math.unit(11000, "meters")
  12786. },
  12787. {
  12788. name: "Gigamacro",
  12789. height: math.unit(11000, "km")
  12790. },
  12791. {
  12792. name: "Teramacro",
  12793. height: math.unit(420000, "km")
  12794. },
  12795. {
  12796. name: "Examacro",
  12797. height: math.unit(120, "parsecs")
  12798. },
  12799. {
  12800. name: "God Tho",
  12801. height: math.unit(98000000000, "parsecs")
  12802. },
  12803. ]
  12804. ))
  12805. characterMakers.push(() => makeCharacter(
  12806. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12807. {
  12808. taurFront: {
  12809. height: math.unit(6, "feet"),
  12810. weight: math.unit(200, "lb"),
  12811. name: "Taur (Front)",
  12812. image: {
  12813. source: "./media/characters/scales/taur-front.svg",
  12814. extra: 1,
  12815. bottom: 0.05
  12816. }
  12817. },
  12818. taurBack: {
  12819. height: math.unit(6, "feet"),
  12820. weight: math.unit(200, "lb"),
  12821. name: "Taur (Back)",
  12822. image: {
  12823. source: "./media/characters/scales/taur-back.svg",
  12824. extra: 1,
  12825. bottom: 0.08
  12826. }
  12827. },
  12828. anthro: {
  12829. height: math.unit(6 * 7 / 12, "feet"),
  12830. weight: math.unit(100, "lb"),
  12831. name: "Anthro",
  12832. image: {
  12833. source: "./media/characters/scales/anthro.svg",
  12834. extra: 1,
  12835. bottom: 0.06
  12836. }
  12837. },
  12838. },
  12839. [
  12840. {
  12841. name: "Normal",
  12842. height: math.unit(12, "feet"),
  12843. default: true
  12844. },
  12845. ]
  12846. ))
  12847. characterMakers.push(() => makeCharacter(
  12848. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12849. {
  12850. front: {
  12851. height: math.unit(6, "feet"),
  12852. weight: math.unit(150, "lb"),
  12853. name: "Front",
  12854. image: {
  12855. source: "./media/characters/koragos/front.svg",
  12856. extra: 841 / 794,
  12857. bottom: 0.035
  12858. }
  12859. },
  12860. back: {
  12861. height: math.unit(6, "feet"),
  12862. weight: math.unit(150, "lb"),
  12863. name: "Back",
  12864. image: {
  12865. source: "./media/characters/koragos/back.svg",
  12866. extra: 841 / 810,
  12867. bottom: 0.022
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Normal",
  12874. height: math.unit(6 + 11 / 12, "feet"),
  12875. default: true
  12876. },
  12877. {
  12878. name: "Macro",
  12879. height: math.unit(490, "feet")
  12880. },
  12881. {
  12882. name: "Megamacro",
  12883. height: math.unit(10, "miles")
  12884. },
  12885. {
  12886. name: "Gigamacro",
  12887. height: math.unit(50, "miles")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(6, "feet"),
  12896. weight: math.unit(250, "lb"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/xylrem/front.svg",
  12900. extra: 3323 / 3050,
  12901. bottom: 0.065
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Micro",
  12908. height: math.unit(4, "feet")
  12909. },
  12910. {
  12911. name: "Normal",
  12912. height: math.unit(16, "feet"),
  12913. default: true
  12914. },
  12915. {
  12916. name: "Macro",
  12917. height: math.unit(2720, "feet")
  12918. },
  12919. {
  12920. name: "Megamacro",
  12921. height: math.unit(25000, "miles")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12927. {
  12928. front: {
  12929. height: math.unit(8, "feet"),
  12930. weight: math.unit(250, "kg"),
  12931. name: "Front",
  12932. image: {
  12933. source: "./media/characters/ikideru/front.svg",
  12934. extra: 930 / 870,
  12935. bottom: 0.087
  12936. }
  12937. },
  12938. back: {
  12939. height: math.unit(8, "feet"),
  12940. weight: math.unit(250, "kg"),
  12941. name: "Back",
  12942. image: {
  12943. source: "./media/characters/ikideru/back.svg",
  12944. extra: 919 / 852,
  12945. bottom: 0.055
  12946. }
  12947. },
  12948. },
  12949. [
  12950. {
  12951. name: "Rare",
  12952. height: math.unit(8, "feet"),
  12953. default: true
  12954. },
  12955. {
  12956. name: "Playful Loom",
  12957. height: math.unit(80, "feet")
  12958. },
  12959. {
  12960. name: "City Leaner",
  12961. height: math.unit(230, "feet")
  12962. },
  12963. {
  12964. name: "Megamacro",
  12965. height: math.unit(2500, "feet")
  12966. },
  12967. {
  12968. name: "Gigamacro",
  12969. height: math.unit(26400, "feet")
  12970. },
  12971. {
  12972. name: "Tectonic Shifter",
  12973. height: math.unit(1.7, "megameters")
  12974. },
  12975. {
  12976. name: "Planet Carer",
  12977. height: math.unit(21, "megameters")
  12978. },
  12979. {
  12980. name: "God",
  12981. height: math.unit(11157.22, "parsecs")
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(6, "feet"),
  12990. weight: math.unit(120, "lb"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/neo/front.svg"
  12994. }
  12995. },
  12996. },
  12997. [
  12998. {
  12999. name: "Micro",
  13000. height: math.unit(2, "inches"),
  13001. default: true
  13002. },
  13003. {
  13004. name: "Human Size",
  13005. height: math.unit(5 + 8 / 12, "feet")
  13006. },
  13007. ]
  13008. ))
  13009. characterMakers.push(() => makeCharacter(
  13010. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13011. {
  13012. front: {
  13013. height: math.unit(13 + 10 / 12, "feet"),
  13014. weight: math.unit(5320, "lb"),
  13015. name: "Front",
  13016. image: {
  13017. source: "./media/characters/chauncey-chantz/front.svg",
  13018. extra: 1587 / 1435,
  13019. bottom: 0.02
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(13 + 10 / 12, "feet"),
  13027. default: true
  13028. },
  13029. {
  13030. name: "Macro",
  13031. height: math.unit(45, "feet")
  13032. },
  13033. {
  13034. name: "Megamacro",
  13035. height: math.unit(250, "miles")
  13036. },
  13037. {
  13038. name: "Planetary",
  13039. height: math.unit(10000, "miles")
  13040. },
  13041. {
  13042. name: "Galactic",
  13043. height: math.unit(40000, "parsecs")
  13044. },
  13045. {
  13046. name: "Universal",
  13047. height: math.unit(1, "yottameter")
  13048. },
  13049. ]
  13050. ))
  13051. characterMakers.push(() => makeCharacter(
  13052. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13053. {
  13054. front: {
  13055. height: math.unit(6, "feet"),
  13056. weight: math.unit(150, "lb"),
  13057. name: "Front",
  13058. image: {
  13059. source: "./media/characters/epifox/front.svg",
  13060. extra: 1,
  13061. bottom: 0.075
  13062. }
  13063. },
  13064. },
  13065. [
  13066. {
  13067. name: "Micro",
  13068. height: math.unit(6, "inches")
  13069. },
  13070. {
  13071. name: "Normal",
  13072. height: math.unit(12, "feet"),
  13073. default: true
  13074. },
  13075. {
  13076. name: "Macro",
  13077. height: math.unit(3810, "feet")
  13078. },
  13079. {
  13080. name: "Megamacro",
  13081. height: math.unit(500, "miles")
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(1.8796, "m"),
  13090. weight: math.unit(230, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/colin-t/front.svg",
  13094. extra: 1272 / 1193,
  13095. bottom: 0.07
  13096. }
  13097. },
  13098. },
  13099. [
  13100. {
  13101. name: "Micro",
  13102. height: math.unit(0.571, "meters")
  13103. },
  13104. {
  13105. name: "Normal",
  13106. height: math.unit(1.8796, "meters"),
  13107. default: true
  13108. },
  13109. {
  13110. name: "Tall",
  13111. height: math.unit(4, "meters")
  13112. },
  13113. {
  13114. name: "Macro",
  13115. height: math.unit(67.241, "meters")
  13116. },
  13117. {
  13118. name: "Megamacro",
  13119. height: math.unit(371.856, "meters")
  13120. },
  13121. {
  13122. name: "Planetary",
  13123. height: math.unit(12631.5689, "km")
  13124. },
  13125. ]
  13126. ))
  13127. characterMakers.push(() => makeCharacter(
  13128. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13129. {
  13130. front: {
  13131. height: math.unit(1.85, "meters"),
  13132. weight: math.unit(80, "kg"),
  13133. name: "Front",
  13134. image: {
  13135. source: "./media/characters/matvei/front.svg",
  13136. extra: 456/447,
  13137. bottom: 8/464
  13138. }
  13139. },
  13140. back: {
  13141. height: math.unit(1.85, "meters"),
  13142. weight: math.unit(80, "kg"),
  13143. name: "Back",
  13144. image: {
  13145. source: "./media/characters/matvei/back.svg",
  13146. extra: 434/427,
  13147. bottom: 11/445
  13148. }
  13149. },
  13150. },
  13151. [
  13152. {
  13153. name: "Normal",
  13154. height: math.unit(1.85, "meters"),
  13155. default: true
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(5 + 9 / 12, "feet"),
  13164. weight: math.unit(70, "lb"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/quincy/front.svg",
  13168. extra: 3041 / 2751
  13169. }
  13170. },
  13171. back: {
  13172. height: math.unit(5 + 9 / 12, "feet"),
  13173. weight: math.unit(70, "lb"),
  13174. name: "Back",
  13175. image: {
  13176. source: "./media/characters/quincy/back.svg",
  13177. extra: 3041 / 2751
  13178. }
  13179. },
  13180. flying: {
  13181. height: math.unit(5 + 4 / 12, "feet"),
  13182. weight: math.unit(70, "lb"),
  13183. name: "Flying",
  13184. image: {
  13185. source: "./media/characters/quincy/flying.svg",
  13186. extra: 1044 / 930
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Micro",
  13193. height: math.unit(3, "cm")
  13194. },
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(5 + 9 / 12, "feet")
  13198. },
  13199. {
  13200. name: "Macro",
  13201. height: math.unit(200, "meters"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Megamacro",
  13206. height: math.unit(1000, "meters")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(3 + 11/12, "feet"),
  13215. weight: math.unit(50, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/vanrel/front.svg",
  13219. extra: 1104/949,
  13220. bottom: 52/1156
  13221. }
  13222. },
  13223. back: {
  13224. height: math.unit(3 + 11/12, "feet"),
  13225. weight: math.unit(50, "lb"),
  13226. name: "Back",
  13227. image: {
  13228. source: "./media/characters/vanrel/back.svg",
  13229. extra: 1119/976,
  13230. bottom: 37/1156
  13231. }
  13232. },
  13233. tome: {
  13234. height: math.unit(1.35, "feet"),
  13235. weight: math.unit(10, "lb"),
  13236. name: "Vanrel's Tome",
  13237. rename: true,
  13238. image: {
  13239. source: "./media/characters/vanrel/tome.svg"
  13240. }
  13241. },
  13242. beans: {
  13243. height: math.unit(0.89, "feet"),
  13244. name: "Beans",
  13245. image: {
  13246. source: "./media/characters/vanrel/beans.svg"
  13247. }
  13248. },
  13249. },
  13250. [
  13251. {
  13252. name: "Normal",
  13253. height: math.unit(3 + 11/12, "feet"),
  13254. default: true
  13255. },
  13256. ]
  13257. ))
  13258. characterMakers.push(() => makeCharacter(
  13259. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13260. {
  13261. front: {
  13262. height: math.unit(7 + 5 / 12, "feet"),
  13263. name: "Front",
  13264. image: {
  13265. source: "./media/characters/kuiper-vanrel/front.svg",
  13266. extra: 1219/1169,
  13267. bottom: 69/1288
  13268. }
  13269. },
  13270. back: {
  13271. height: math.unit(7 + 5 / 12, "feet"),
  13272. name: "Back",
  13273. image: {
  13274. source: "./media/characters/kuiper-vanrel/back.svg",
  13275. extra: 1236/1193,
  13276. bottom: 27/1263
  13277. }
  13278. },
  13279. foot: {
  13280. height: math.unit(0.55, "meters"),
  13281. name: "Foot",
  13282. image: {
  13283. source: "./media/characters/kuiper-vanrel/foot.svg",
  13284. }
  13285. },
  13286. battle: {
  13287. height: math.unit(6.824, "feet"),
  13288. name: "Battle",
  13289. image: {
  13290. source: "./media/characters/kuiper-vanrel/battle.svg",
  13291. extra: 1466 / 1327,
  13292. bottom: 29 / 1492.5
  13293. }
  13294. },
  13295. meerkui: {
  13296. height: math.unit(18, "inches"),
  13297. name: "Meerkui",
  13298. image: {
  13299. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13300. extra: 1354/1289,
  13301. bottom: 69/1423
  13302. }
  13303. },
  13304. },
  13305. [
  13306. {
  13307. name: "Normal",
  13308. height: math.unit(7 + 5 / 12, "feet"),
  13309. default: true
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(8 + 5 / 12, "feet"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/keset-vanrel/front.svg",
  13321. extra: 1231/1148,
  13322. bottom: 82/1313
  13323. }
  13324. },
  13325. back: {
  13326. height: math.unit(8 + 5 / 12, "feet"),
  13327. name: "Back",
  13328. image: {
  13329. source: "./media/characters/keset-vanrel/back.svg",
  13330. extra: 1240/1174,
  13331. bottom: 33/1273
  13332. }
  13333. },
  13334. hand: {
  13335. height: math.unit(0.6, "meters"),
  13336. name: "Hand",
  13337. image: {
  13338. source: "./media/characters/keset-vanrel/hand.svg"
  13339. }
  13340. },
  13341. foot: {
  13342. height: math.unit(0.94978, "meters"),
  13343. name: "Foot",
  13344. image: {
  13345. source: "./media/characters/keset-vanrel/foot.svg"
  13346. }
  13347. },
  13348. battle: {
  13349. height: math.unit(7.408, "feet"),
  13350. name: "Battle",
  13351. image: {
  13352. source: "./media/characters/keset-vanrel/battle.svg",
  13353. extra: 1890 / 1386,
  13354. bottom: 73.28 / 1970
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Normal",
  13361. height: math.unit(8 + 5 / 12, "feet"),
  13362. default: true
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(6, "feet"),
  13371. weight: math.unit(150, "lb"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/neos/front.svg",
  13375. extra: 1696 / 992,
  13376. bottom: 0.14
  13377. }
  13378. },
  13379. },
  13380. [
  13381. {
  13382. name: "Normal",
  13383. height: math.unit(54, "cm"),
  13384. default: true
  13385. },
  13386. {
  13387. name: "Macro",
  13388. height: math.unit(100, "m")
  13389. },
  13390. {
  13391. name: "Megamacro",
  13392. height: math.unit(10, "km")
  13393. },
  13394. {
  13395. name: "Megamacro+",
  13396. height: math.unit(100, "km")
  13397. },
  13398. {
  13399. name: "Gigamacro",
  13400. height: math.unit(100, "Mm")
  13401. },
  13402. {
  13403. name: "Teramacro",
  13404. height: math.unit(100, "Gm")
  13405. },
  13406. {
  13407. name: "Examacro",
  13408. height: math.unit(100, "Em")
  13409. },
  13410. {
  13411. name: "Godly",
  13412. height: math.unit(10000, "Ym")
  13413. },
  13414. {
  13415. name: "Beyond Godly",
  13416. height: math.unit(25, "multiverses")
  13417. },
  13418. ]
  13419. ))
  13420. characterMakers.push(() => makeCharacter(
  13421. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13422. {
  13423. feminine: {
  13424. height: math.unit(5, "feet"),
  13425. weight: math.unit(100, "lb"),
  13426. name: "Feminine",
  13427. image: {
  13428. source: "./media/characters/sammy-mouse/feminine.svg",
  13429. extra: 2526 / 2425,
  13430. bottom: 0.123
  13431. }
  13432. },
  13433. masculine: {
  13434. height: math.unit(5, "feet"),
  13435. weight: math.unit(100, "lb"),
  13436. name: "Masculine",
  13437. image: {
  13438. source: "./media/characters/sammy-mouse/masculine.svg",
  13439. extra: 2526 / 2425,
  13440. bottom: 0.123
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Micro",
  13447. height: math.unit(5, "inches")
  13448. },
  13449. {
  13450. name: "Normal",
  13451. height: math.unit(5, "feet"),
  13452. default: true
  13453. },
  13454. {
  13455. name: "Macro",
  13456. height: math.unit(60, "feet")
  13457. },
  13458. ]
  13459. ))
  13460. characterMakers.push(() => makeCharacter(
  13461. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13462. {
  13463. front: {
  13464. height: math.unit(4, "feet"),
  13465. weight: math.unit(50, "lb"),
  13466. name: "Front",
  13467. image: {
  13468. source: "./media/characters/kole/front.svg",
  13469. extra: 1423 / 1303,
  13470. bottom: 0.025
  13471. }
  13472. },
  13473. back: {
  13474. height: math.unit(4, "feet"),
  13475. weight: math.unit(50, "lb"),
  13476. name: "Back",
  13477. image: {
  13478. source: "./media/characters/kole/back.svg",
  13479. extra: 1426 / 1280,
  13480. bottom: 0.02
  13481. }
  13482. },
  13483. },
  13484. [
  13485. {
  13486. name: "Normal",
  13487. height: math.unit(4, "feet"),
  13488. default: true
  13489. },
  13490. ]
  13491. ))
  13492. characterMakers.push(() => makeCharacter(
  13493. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13494. {
  13495. front: {
  13496. height: math.unit(2.5, "feet"),
  13497. weight: math.unit(32, "lb"),
  13498. name: "Front",
  13499. image: {
  13500. source: "./media/characters/rufran/front.svg",
  13501. extra: 1313/885,
  13502. bottom: 94/1407
  13503. }
  13504. },
  13505. side: {
  13506. height: math.unit(2.5, "feet"),
  13507. weight: math.unit(32, "lb"),
  13508. name: "Side",
  13509. image: {
  13510. source: "./media/characters/rufran/side.svg",
  13511. extra: 1109/852,
  13512. bottom: 118/1227
  13513. }
  13514. },
  13515. back: {
  13516. height: math.unit(2.5, "feet"),
  13517. weight: math.unit(32, "lb"),
  13518. name: "Back",
  13519. image: {
  13520. source: "./media/characters/rufran/back.svg",
  13521. extra: 1280/878,
  13522. bottom: 131/1411
  13523. }
  13524. },
  13525. mouth: {
  13526. height: math.unit(1.13, "feet"),
  13527. name: "Mouth",
  13528. image: {
  13529. source: "./media/characters/rufran/mouth.svg"
  13530. }
  13531. },
  13532. foot: {
  13533. height: math.unit(1.33, "feet"),
  13534. name: "Foot",
  13535. image: {
  13536. source: "./media/characters/rufran/foot.svg"
  13537. }
  13538. },
  13539. koboldFront: {
  13540. height: math.unit(2 + 6 / 12, "feet"),
  13541. weight: math.unit(20, "lb"),
  13542. name: "Front (Kobold)",
  13543. image: {
  13544. source: "./media/characters/rufran/kobold-front.svg",
  13545. extra: 2041 / 1839,
  13546. bottom: 0.055
  13547. }
  13548. },
  13549. koboldBack: {
  13550. height: math.unit(2 + 6 / 12, "feet"),
  13551. weight: math.unit(20, "lb"),
  13552. name: "Back (Kobold)",
  13553. image: {
  13554. source: "./media/characters/rufran/kobold-back.svg",
  13555. extra: 2054 / 1839,
  13556. bottom: 0.01
  13557. }
  13558. },
  13559. koboldHand: {
  13560. height: math.unit(0.2166, "meters"),
  13561. name: "Hand (Kobold)",
  13562. image: {
  13563. source: "./media/characters/rufran/kobold-hand.svg"
  13564. }
  13565. },
  13566. koboldFoot: {
  13567. height: math.unit(0.185, "meters"),
  13568. name: "Foot (Kobold)",
  13569. image: {
  13570. source: "./media/characters/rufran/kobold-foot.svg"
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Micro",
  13577. height: math.unit(1, "inch")
  13578. },
  13579. {
  13580. name: "Normal",
  13581. height: math.unit(2 + 6 / 12, "feet"),
  13582. default: true
  13583. },
  13584. {
  13585. name: "Big",
  13586. height: math.unit(60, "feet")
  13587. },
  13588. {
  13589. name: "Macro",
  13590. height: math.unit(325, "feet")
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13596. {
  13597. front: {
  13598. height: math.unit(0.3, "meters"),
  13599. weight: math.unit(3.5, "kg"),
  13600. name: "Front",
  13601. image: {
  13602. source: "./media/characters/chip/front.svg",
  13603. extra: 748 / 674
  13604. }
  13605. },
  13606. },
  13607. [
  13608. {
  13609. name: "Micro",
  13610. height: math.unit(1, "inch"),
  13611. default: true
  13612. },
  13613. ]
  13614. ))
  13615. characterMakers.push(() => makeCharacter(
  13616. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13617. {
  13618. side: {
  13619. height: math.unit(2.3, "meters"),
  13620. weight: math.unit(3500, "lb"),
  13621. name: "Side",
  13622. image: {
  13623. source: "./media/characters/torvid/side.svg",
  13624. extra: 1972 / 722,
  13625. bottom: 0.035
  13626. }
  13627. },
  13628. },
  13629. [
  13630. {
  13631. name: "Normal",
  13632. height: math.unit(2.3, "meters"),
  13633. default: true
  13634. },
  13635. ]
  13636. ))
  13637. characterMakers.push(() => makeCharacter(
  13638. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13639. {
  13640. front: {
  13641. height: math.unit(2, "meters"),
  13642. weight: math.unit(150.5, "kg"),
  13643. name: "Front",
  13644. image: {
  13645. source: "./media/characters/susan/front.svg",
  13646. extra: 693 / 635,
  13647. bottom: 0.05
  13648. }
  13649. },
  13650. },
  13651. [
  13652. {
  13653. name: "Megamacro",
  13654. height: math.unit(505, "miles"),
  13655. default: true
  13656. },
  13657. ]
  13658. ))
  13659. characterMakers.push(() => makeCharacter(
  13660. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13661. {
  13662. front: {
  13663. height: math.unit(6, "feet"),
  13664. weight: math.unit(150, "lb"),
  13665. name: "Front",
  13666. image: {
  13667. source: "./media/characters/raindrops/front.svg",
  13668. extra: 2655 / 2461,
  13669. bottom: 49 / 2705
  13670. }
  13671. },
  13672. back: {
  13673. height: math.unit(6, "feet"),
  13674. weight: math.unit(150, "lb"),
  13675. name: "Back",
  13676. image: {
  13677. source: "./media/characters/raindrops/back.svg",
  13678. extra: 2574 / 2400,
  13679. bottom: 65 / 2634
  13680. }
  13681. },
  13682. },
  13683. [
  13684. {
  13685. name: "Micro",
  13686. height: math.unit(6, "inches")
  13687. },
  13688. {
  13689. name: "Normal",
  13690. height: math.unit(6 + 2 / 12, "feet")
  13691. },
  13692. {
  13693. name: "Macro",
  13694. height: math.unit(131, "feet"),
  13695. default: true
  13696. },
  13697. {
  13698. name: "Megamacro",
  13699. height: math.unit(15, "miles")
  13700. },
  13701. {
  13702. name: "Gigamacro",
  13703. height: math.unit(4000, "miles")
  13704. },
  13705. {
  13706. name: "Teramacro",
  13707. height: math.unit(315000, "miles")
  13708. },
  13709. ]
  13710. ))
  13711. characterMakers.push(() => makeCharacter(
  13712. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13713. {
  13714. front: {
  13715. height: math.unit(2.794, "meters"),
  13716. weight: math.unit(325, "kg"),
  13717. name: "Front",
  13718. image: {
  13719. source: "./media/characters/tezwa/front.svg",
  13720. extra: 2083 / 1906,
  13721. bottom: 0.031
  13722. }
  13723. },
  13724. foot: {
  13725. height: math.unit(0.687, "meters"),
  13726. name: "Foot",
  13727. image: {
  13728. source: "./media/characters/tezwa/foot.svg"
  13729. }
  13730. },
  13731. },
  13732. [
  13733. {
  13734. name: "Normal",
  13735. height: math.unit(9 + 2 / 12, "feet"),
  13736. default: true
  13737. },
  13738. ]
  13739. ))
  13740. characterMakers.push(() => makeCharacter(
  13741. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13742. {
  13743. front: {
  13744. height: math.unit(58, "feet"),
  13745. weight: math.unit(89000, "lb"),
  13746. name: "Front",
  13747. image: {
  13748. source: "./media/characters/typhus/front.svg",
  13749. extra: 816 / 800,
  13750. bottom: 0.065
  13751. }
  13752. },
  13753. },
  13754. [
  13755. {
  13756. name: "Macro",
  13757. height: math.unit(58, "feet"),
  13758. default: true
  13759. },
  13760. ]
  13761. ))
  13762. characterMakers.push(() => makeCharacter(
  13763. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13764. {
  13765. front: {
  13766. height: math.unit(12, "feet"),
  13767. weight: math.unit(6, "tonnes"),
  13768. name: "Front",
  13769. image: {
  13770. source: "./media/characters/lyra-von-wulf/front.svg",
  13771. extra: 1,
  13772. bottom: 0.10
  13773. }
  13774. },
  13775. frontMecha: {
  13776. height: math.unit(12, "feet"),
  13777. weight: math.unit(12, "tonnes"),
  13778. name: "Front (Mecha)",
  13779. image: {
  13780. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13781. extra: 1,
  13782. bottom: 0.042
  13783. }
  13784. },
  13785. maw: {
  13786. height: math.unit(2.2, "feet"),
  13787. name: "Maw",
  13788. image: {
  13789. source: "./media/characters/lyra-von-wulf/maw.svg"
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Normal",
  13796. height: math.unit(12, "feet"),
  13797. default: true
  13798. },
  13799. {
  13800. name: "Classic",
  13801. height: math.unit(50, "feet")
  13802. },
  13803. {
  13804. name: "Macro",
  13805. height: math.unit(500, "feet")
  13806. },
  13807. {
  13808. name: "Megamacro",
  13809. height: math.unit(1, "mile")
  13810. },
  13811. {
  13812. name: "Gigamacro",
  13813. height: math.unit(400, "miles")
  13814. },
  13815. {
  13816. name: "Teramacro",
  13817. height: math.unit(22000, "miles")
  13818. },
  13819. {
  13820. name: "Solarmacro",
  13821. height: math.unit(8600000, "miles")
  13822. },
  13823. {
  13824. name: "Galactic",
  13825. height: math.unit(1057000, "lightyears")
  13826. },
  13827. ]
  13828. ))
  13829. characterMakers.push(() => makeCharacter(
  13830. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13831. {
  13832. front: {
  13833. height: math.unit(6 + 10 / 12, "feet"),
  13834. weight: math.unit(150, "lb"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/dixon/front.svg",
  13838. extra: 3361 / 3209,
  13839. bottom: 0.01
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Normal",
  13846. height: math.unit(6 + 10 / 12, "feet"),
  13847. default: true
  13848. },
  13849. {
  13850. name: "Big",
  13851. height: math.unit(12, "meters")
  13852. },
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(500, "meters")
  13856. },
  13857. {
  13858. name: "Megamacro",
  13859. height: math.unit(2, "km")
  13860. },
  13861. ]
  13862. ))
  13863. characterMakers.push(() => makeCharacter(
  13864. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13865. {
  13866. front: {
  13867. height: math.unit(185, "cm"),
  13868. weight: math.unit(68, "kg"),
  13869. name: "Front",
  13870. image: {
  13871. source: "./media/characters/kauko/front.svg",
  13872. extra: 1455 / 1421,
  13873. bottom: 0.03
  13874. }
  13875. },
  13876. back: {
  13877. height: math.unit(185, "cm"),
  13878. weight: math.unit(68, "kg"),
  13879. name: "Back",
  13880. image: {
  13881. source: "./media/characters/kauko/back.svg",
  13882. extra: 1455 / 1421,
  13883. bottom: 0.004
  13884. }
  13885. },
  13886. },
  13887. [
  13888. {
  13889. name: "Normal",
  13890. height: math.unit(185, "cm"),
  13891. default: true
  13892. },
  13893. ]
  13894. ))
  13895. characterMakers.push(() => makeCharacter(
  13896. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13897. {
  13898. frontSfw: {
  13899. height: math.unit(5, "meters"),
  13900. weight: math.unit(4250, "lb"),
  13901. name: "Front",
  13902. image: {
  13903. source: "./media/characters/varg/front-sfw.svg",
  13904. extra: 1103/1010,
  13905. bottom: 50/1153
  13906. },
  13907. form: "anthro",
  13908. default: true
  13909. },
  13910. backSfw: {
  13911. height: math.unit(5, "meters"),
  13912. weight: math.unit(4250, "lb"),
  13913. name: "Back",
  13914. image: {
  13915. source: "./media/characters/varg/back-sfw.svg",
  13916. extra: 1038/1022,
  13917. bottom: 36/1074
  13918. },
  13919. form: "anthro"
  13920. },
  13921. frontNsfw: {
  13922. height: math.unit(5, "meters"),
  13923. weight: math.unit(4250, "lb"),
  13924. name: "Front (NSFW)",
  13925. image: {
  13926. source: "./media/characters/varg/front-nsfw.svg",
  13927. extra: 1103/1010,
  13928. bottom: 50/1153
  13929. },
  13930. form: "anthro"
  13931. },
  13932. sheath: {
  13933. height: math.unit(3.8, "feet"),
  13934. weight: math.unit(90, "kilograms"),
  13935. name: "Sheath",
  13936. image: {
  13937. source: "./media/characters/varg/sheath.svg"
  13938. },
  13939. form: "anthro"
  13940. },
  13941. dick: {
  13942. height: math.unit(4.6, "feet"),
  13943. weight: math.unit(451, "kilograms"),
  13944. name: "Dick",
  13945. image: {
  13946. source: "./media/characters/varg/dick.svg"
  13947. },
  13948. form: "anthro"
  13949. },
  13950. feralSfw: {
  13951. height: math.unit(5, "meters"),
  13952. weight: math.unit(100000, "lb"),
  13953. name: "Side",
  13954. image: {
  13955. source: "./media/characters/varg/feral-sfw.svg",
  13956. extra: 1065/511,
  13957. bottom: 211/1276
  13958. },
  13959. form: "feral",
  13960. default: true
  13961. },
  13962. feralNsfw: {
  13963. height: math.unit(5, "meters"),
  13964. weight: math.unit(100000, "lb"),
  13965. name: "Side (NSFW)",
  13966. image: {
  13967. source: "./media/characters/varg/feral-nsfw.svg",
  13968. extra: 1065/511,
  13969. bottom: 211/1276
  13970. },
  13971. form: "feral",
  13972. },
  13973. feralSheath: {
  13974. height: math.unit(9.8, "feet"),
  13975. weight: math.unit(2000, "kilograms"),
  13976. name: "Sheath",
  13977. image: {
  13978. source: "./media/characters/varg/sheath.svg"
  13979. },
  13980. form: "feral"
  13981. },
  13982. feralDick: {
  13983. height: math.unit(13.11, "feet"),
  13984. weight: math.unit(10440, "kilograms"),
  13985. name: "Dick",
  13986. image: {
  13987. source: "./media/characters/varg/dick.svg"
  13988. },
  13989. form: "feral"
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Normal",
  13995. height: math.unit(5, "meters"),
  13996. form: "anthro"
  13997. },
  13998. {
  13999. name: "Macro",
  14000. height: math.unit(200, "meters"),
  14001. form: "anthro"
  14002. },
  14003. {
  14004. name: "Megamacro",
  14005. height: math.unit(20, "kilometers"),
  14006. form: "anthro"
  14007. },
  14008. {
  14009. name: "True Size",
  14010. height: math.unit(211, "km"),
  14011. form: "anthro",
  14012. default: true
  14013. },
  14014. {
  14015. name: "Gigamacro",
  14016. height: math.unit(1000, "km"),
  14017. form: "anthro"
  14018. },
  14019. {
  14020. name: "Gigamacro+",
  14021. height: math.unit(8000, "km"),
  14022. form: "anthro"
  14023. },
  14024. {
  14025. name: "Teramacro",
  14026. height: math.unit(1000000, "km"),
  14027. form: "anthro"
  14028. },
  14029. {
  14030. name: "Normal",
  14031. height: math.unit(5, "meters"),
  14032. form: "feral"
  14033. },
  14034. {
  14035. name: "Macro",
  14036. height: math.unit(200, "meters"),
  14037. form: "feral"
  14038. },
  14039. {
  14040. name: "Megamacro",
  14041. height: math.unit(20, "kilometers"),
  14042. form: "feral"
  14043. },
  14044. {
  14045. name: "True Size",
  14046. height: math.unit(211, "km"),
  14047. form: "feral",
  14048. default: true
  14049. },
  14050. {
  14051. name: "Gigamacro",
  14052. height: math.unit(1000, "km"),
  14053. form: "feral"
  14054. },
  14055. {
  14056. name: "Gigamacro+",
  14057. height: math.unit(8000, "km"),
  14058. form: "feral"
  14059. },
  14060. {
  14061. name: "Teramacro",
  14062. height: math.unit(1000000, "km"),
  14063. form: "feral"
  14064. },
  14065. ],
  14066. {
  14067. "anthro": {
  14068. name: "Anthro",
  14069. default: true
  14070. },
  14071. "feral": {
  14072. name: "Feral",
  14073. },
  14074. }
  14075. ))
  14076. characterMakers.push(() => makeCharacter(
  14077. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14078. {
  14079. front: {
  14080. height: math.unit(7 + 7 / 12, "feet"),
  14081. weight: math.unit(267, "lb"),
  14082. name: "Front",
  14083. image: {
  14084. source: "./media/characters/dayza/front.svg",
  14085. extra: 1262 / 1200,
  14086. bottom: 0.035
  14087. }
  14088. },
  14089. side: {
  14090. height: math.unit(7 + 7 / 12, "feet"),
  14091. weight: math.unit(267, "lb"),
  14092. name: "Side",
  14093. image: {
  14094. source: "./media/characters/dayza/side.svg",
  14095. extra: 1295 / 1245,
  14096. bottom: 0.05
  14097. }
  14098. },
  14099. back: {
  14100. height: math.unit(7 + 7 / 12, "feet"),
  14101. weight: math.unit(267, "lb"),
  14102. name: "Back",
  14103. image: {
  14104. source: "./media/characters/dayza/back.svg",
  14105. extra: 1241 / 1170
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Normal",
  14112. height: math.unit(7 + 7 / 12, "feet"),
  14113. default: true
  14114. },
  14115. {
  14116. name: "Macro",
  14117. height: math.unit(155, "feet")
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(6 + 5 / 12, "feet"),
  14126. weight: math.unit(160, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/xanthos/front.svg",
  14130. extra: 1,
  14131. bottom: 0.04
  14132. }
  14133. },
  14134. back: {
  14135. height: math.unit(6 + 5 / 12, "feet"),
  14136. weight: math.unit(160, "lb"),
  14137. name: "Back",
  14138. image: {
  14139. source: "./media/characters/xanthos/back.svg",
  14140. extra: 1,
  14141. bottom: 0.03
  14142. }
  14143. },
  14144. hand: {
  14145. height: math.unit(0.928, "feet"),
  14146. name: "Hand",
  14147. image: {
  14148. source: "./media/characters/xanthos/hand.svg"
  14149. }
  14150. },
  14151. foot: {
  14152. height: math.unit(1.286, "feet"),
  14153. name: "Foot",
  14154. image: {
  14155. source: "./media/characters/xanthos/foot.svg"
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Normal",
  14162. height: math.unit(6 + 5 / 12, "feet"),
  14163. default: true
  14164. },
  14165. {
  14166. name: "Normal+",
  14167. height: math.unit(6, "meters")
  14168. },
  14169. {
  14170. name: "Macro",
  14171. height: math.unit(40, "feet")
  14172. },
  14173. {
  14174. name: "Macro+",
  14175. height: math.unit(200, "meters")
  14176. },
  14177. {
  14178. name: "Megamacro",
  14179. height: math.unit(20, "km")
  14180. },
  14181. {
  14182. name: "Megamacro+",
  14183. height: math.unit(100, "km")
  14184. },
  14185. {
  14186. name: "Gigamacro",
  14187. height: math.unit(200, "megameters")
  14188. },
  14189. {
  14190. name: "Gigamacro+",
  14191. height: math.unit(1.5, "gigameters")
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(6 + 3 / 12, "feet"),
  14200. weight: math.unit(215, "lb"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/grynn/front.svg",
  14204. extra: 4627 / 4209,
  14205. bottom: 0.047
  14206. }
  14207. },
  14208. },
  14209. [
  14210. {
  14211. name: "Micro",
  14212. height: math.unit(6, "inches")
  14213. },
  14214. {
  14215. name: "Normal",
  14216. height: math.unit(6 + 3 / 12, "feet"),
  14217. default: true
  14218. },
  14219. {
  14220. name: "Big",
  14221. height: math.unit(104, "feet")
  14222. },
  14223. {
  14224. name: "Macro",
  14225. height: math.unit(944, "feet")
  14226. },
  14227. {
  14228. name: "Macro+",
  14229. height: math.unit(9480, "feet")
  14230. },
  14231. {
  14232. name: "Megamacro",
  14233. height: math.unit(78752, "feet")
  14234. },
  14235. {
  14236. name: "Megamacro+",
  14237. height: math.unit(630128, "feet")
  14238. },
  14239. {
  14240. name: "Megamacro++",
  14241. height: math.unit(3150695, "feet")
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14247. {
  14248. front: {
  14249. height: math.unit(7 + 5 / 12, "feet"),
  14250. weight: math.unit(450, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/mocha-aura/front.svg",
  14254. extra: 1907 / 1817,
  14255. bottom: 0.04
  14256. }
  14257. },
  14258. back: {
  14259. height: math.unit(7 + 5 / 12, "feet"),
  14260. weight: math.unit(450, "lb"),
  14261. name: "Back",
  14262. image: {
  14263. source: "./media/characters/mocha-aura/back.svg",
  14264. extra: 1900 / 1825,
  14265. bottom: 0.045
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Nano",
  14272. height: math.unit(1, "nm")
  14273. },
  14274. {
  14275. name: "Megamicro",
  14276. height: math.unit(1, "mm")
  14277. },
  14278. {
  14279. name: "Micro",
  14280. height: math.unit(3, "inches")
  14281. },
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(7 + 5 / 12, "feet"),
  14285. default: true
  14286. },
  14287. {
  14288. name: "Macro",
  14289. height: math.unit(30, "feet")
  14290. },
  14291. {
  14292. name: "Megamacro",
  14293. height: math.unit(3500, "feet")
  14294. },
  14295. {
  14296. name: "Teramacro",
  14297. height: math.unit(500000, "miles")
  14298. },
  14299. {
  14300. name: "Petamacro",
  14301. height: math.unit(50000000000000000, "parsecs")
  14302. },
  14303. ]
  14304. ))
  14305. characterMakers.push(() => makeCharacter(
  14306. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14307. {
  14308. front: {
  14309. height: math.unit(6, "feet"),
  14310. weight: math.unit(150, "lb"),
  14311. name: "Front",
  14312. image: {
  14313. source: "./media/characters/ilisha-devya/front.svg",
  14314. extra: 1053/1049,
  14315. bottom: 270/1323
  14316. }
  14317. },
  14318. back: {
  14319. height: math.unit(6, "feet"),
  14320. weight: math.unit(150, "lb"),
  14321. name: "Back",
  14322. image: {
  14323. source: "./media/characters/ilisha-devya/back.svg",
  14324. extra: 1131/1128,
  14325. bottom: 39/1170
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Macro",
  14332. height: math.unit(500, "feet"),
  14333. default: true
  14334. },
  14335. {
  14336. name: "Megamacro",
  14337. height: math.unit(10, "miles")
  14338. },
  14339. {
  14340. name: "Gigamacro",
  14341. height: math.unit(100000, "miles")
  14342. },
  14343. {
  14344. name: "Examacro",
  14345. height: math.unit(1e9, "lightyears")
  14346. },
  14347. {
  14348. name: "Omniversal",
  14349. height: math.unit(1e33, "lightyears")
  14350. },
  14351. {
  14352. name: "Beyond Infinite",
  14353. height: math.unit(1e100, "lightyears")
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14359. {
  14360. Side: {
  14361. height: math.unit(6, "feet"),
  14362. weight: math.unit(150, "lb"),
  14363. name: "Side",
  14364. image: {
  14365. source: "./media/characters/mira/side.svg",
  14366. extra: 900 / 799,
  14367. bottom: 0.02
  14368. }
  14369. },
  14370. },
  14371. [
  14372. {
  14373. name: "Human Size",
  14374. height: math.unit(6, "feet")
  14375. },
  14376. {
  14377. name: "Macro",
  14378. height: math.unit(100, "feet"),
  14379. default: true
  14380. },
  14381. {
  14382. name: "Megamacro",
  14383. height: math.unit(10, "miles")
  14384. },
  14385. {
  14386. name: "Gigamacro",
  14387. height: math.unit(25000, "miles")
  14388. },
  14389. {
  14390. name: "Teramacro",
  14391. height: math.unit(300, "AU")
  14392. },
  14393. {
  14394. name: "Full Size",
  14395. height: math.unit(4.5e10, "lightyears")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(6, "feet"),
  14404. weight: math.unit(150, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/holly/front.svg",
  14408. extra: 639 / 606
  14409. }
  14410. },
  14411. back: {
  14412. height: math.unit(6, "feet"),
  14413. weight: math.unit(150, "lb"),
  14414. name: "Back",
  14415. image: {
  14416. source: "./media/characters/holly/back.svg",
  14417. extra: 623 / 598
  14418. }
  14419. },
  14420. frontWorking: {
  14421. height: math.unit(6, "feet"),
  14422. weight: math.unit(150, "lb"),
  14423. name: "Front (Working)",
  14424. image: {
  14425. source: "./media/characters/holly/front-working.svg",
  14426. extra: 607 / 577,
  14427. bottom: 0.048
  14428. }
  14429. },
  14430. },
  14431. [
  14432. {
  14433. name: "Normal",
  14434. height: math.unit(12 + 3 / 12, "feet"),
  14435. default: true
  14436. },
  14437. ]
  14438. ))
  14439. characterMakers.push(() => makeCharacter(
  14440. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14441. {
  14442. front: {
  14443. height: math.unit(6, "feet"),
  14444. weight: math.unit(150, "lb"),
  14445. name: "Front",
  14446. image: {
  14447. source: "./media/characters/porter/front.svg",
  14448. extra: 1,
  14449. bottom: 0.01
  14450. }
  14451. },
  14452. frontRobes: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(150, "lb"),
  14455. name: "Front (Robes)",
  14456. image: {
  14457. source: "./media/characters/porter/front-robes.svg",
  14458. extra: 1.01,
  14459. bottom: 0.01
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Normal",
  14466. height: math.unit(11 + 9 / 12, "feet"),
  14467. default: true
  14468. },
  14469. ]
  14470. ))
  14471. characterMakers.push(() => makeCharacter(
  14472. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14473. {
  14474. legendary: {
  14475. height: math.unit(6, "feet"),
  14476. weight: math.unit(150, "lb"),
  14477. name: "Legendary",
  14478. image: {
  14479. source: "./media/characters/lucy/legendary.svg",
  14480. extra: 1355 / 1100,
  14481. bottom: 0.045
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Legendary",
  14488. height: math.unit(86882 * 2, "miles"),
  14489. default: true
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14495. {
  14496. front: {
  14497. height: math.unit(6, "feet"),
  14498. weight: math.unit(150, "lb"),
  14499. name: "Front",
  14500. image: {
  14501. source: "./media/characters/drusilla/front.svg",
  14502. extra: 678 / 635,
  14503. bottom: 0.03
  14504. }
  14505. },
  14506. back: {
  14507. height: math.unit(6, "feet"),
  14508. weight: math.unit(150, "lb"),
  14509. name: "Back",
  14510. image: {
  14511. source: "./media/characters/drusilla/back.svg",
  14512. extra: 678 / 635,
  14513. bottom: 0.005
  14514. }
  14515. },
  14516. },
  14517. [
  14518. {
  14519. name: "Macro",
  14520. height: math.unit(100, "feet")
  14521. },
  14522. {
  14523. name: "Canon Height",
  14524. height: math.unit(2000, "feet"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(6, "feet"),
  14534. weight: math.unit(180, "lb"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/renard-thatch/front.svg",
  14538. extra: 2411 / 2275,
  14539. bottom: 0.01
  14540. }
  14541. },
  14542. frontPosing: {
  14543. height: math.unit(6, "feet"),
  14544. weight: math.unit(180, "lb"),
  14545. name: "Front (Posing)",
  14546. image: {
  14547. source: "./media/characters/renard-thatch/front-posing.svg",
  14548. extra: 2381 / 2261,
  14549. bottom: 0.01
  14550. }
  14551. },
  14552. back: {
  14553. height: math.unit(6, "feet"),
  14554. weight: math.unit(180, "lb"),
  14555. name: "Back",
  14556. image: {
  14557. source: "./media/characters/renard-thatch/back.svg",
  14558. extra: 2428 / 2288
  14559. }
  14560. },
  14561. },
  14562. [
  14563. {
  14564. name: "Micro",
  14565. height: math.unit(3, "inches")
  14566. },
  14567. {
  14568. name: "Default",
  14569. height: math.unit(6, "feet"),
  14570. default: true
  14571. },
  14572. {
  14573. name: "Macro",
  14574. height: math.unit(75, "feet")
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(1450, "feet"),
  14583. weight: math.unit(1.21e6, "tons"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/sekvra/front.svg",
  14587. extra: 1193/1190,
  14588. bottom: 78/1271
  14589. }
  14590. },
  14591. side: {
  14592. height: math.unit(1450, "feet"),
  14593. weight: math.unit(1.21e6, "tons"),
  14594. name: "Side",
  14595. image: {
  14596. source: "./media/characters/sekvra/side.svg",
  14597. extra: 1193/1190,
  14598. bottom: 52/1245
  14599. }
  14600. },
  14601. back: {
  14602. height: math.unit(1450, "feet"),
  14603. weight: math.unit(1.21e6, "tons"),
  14604. name: "Back",
  14605. image: {
  14606. source: "./media/characters/sekvra/back.svg",
  14607. extra: 1219/1216,
  14608. bottom: 21/1240
  14609. }
  14610. },
  14611. frontClothed: {
  14612. height: math.unit(1450, "feet"),
  14613. weight: math.unit(1.21e6, "tons"),
  14614. name: "Front (Clothed)",
  14615. image: {
  14616. source: "./media/characters/sekvra/front-clothed.svg",
  14617. extra: 1192/1189,
  14618. bottom: 79/1271
  14619. }
  14620. },
  14621. },
  14622. [
  14623. {
  14624. name: "Macro",
  14625. height: math.unit(1450, "feet"),
  14626. default: true
  14627. },
  14628. {
  14629. name: "Megamacro",
  14630. height: math.unit(15000, "feet")
  14631. },
  14632. ]
  14633. ))
  14634. characterMakers.push(() => makeCharacter(
  14635. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14636. {
  14637. front: {
  14638. height: math.unit(6, "feet"),
  14639. weight: math.unit(150, "lb"),
  14640. name: "Front",
  14641. image: {
  14642. source: "./media/characters/carmine/front.svg",
  14643. extra: 1,
  14644. bottom: 0.035
  14645. }
  14646. },
  14647. frontArmor: {
  14648. height: math.unit(6, "feet"),
  14649. weight: math.unit(150, "lb"),
  14650. name: "Front (Armor)",
  14651. image: {
  14652. source: "./media/characters/carmine/front-armor.svg",
  14653. extra: 1,
  14654. bottom: 0.035
  14655. }
  14656. },
  14657. },
  14658. [
  14659. {
  14660. name: "Large",
  14661. height: math.unit(1, "mile")
  14662. },
  14663. {
  14664. name: "Huge",
  14665. height: math.unit(40, "miles"),
  14666. default: true
  14667. },
  14668. {
  14669. name: "Colossal",
  14670. height: math.unit(2500, "miles")
  14671. },
  14672. ]
  14673. ))
  14674. characterMakers.push(() => makeCharacter(
  14675. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14676. {
  14677. front: {
  14678. height: math.unit(6, "feet"),
  14679. weight: math.unit(150, "lb"),
  14680. name: "Front",
  14681. image: {
  14682. source: "./media/characters/elyssia/front.svg",
  14683. extra: 2201 / 2035,
  14684. bottom: 0.05
  14685. }
  14686. },
  14687. frontClothed: {
  14688. height: math.unit(6, "feet"),
  14689. weight: math.unit(150, "lb"),
  14690. name: "Front (Clothed)",
  14691. image: {
  14692. source: "./media/characters/elyssia/front-clothed.svg",
  14693. extra: 2201 / 2035,
  14694. bottom: 0.05
  14695. }
  14696. },
  14697. back: {
  14698. height: math.unit(6, "feet"),
  14699. weight: math.unit(150, "lb"),
  14700. name: "Back",
  14701. image: {
  14702. source: "./media/characters/elyssia/back.svg",
  14703. extra: 2201 / 2035,
  14704. bottom: 0.013
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Smaller",
  14711. height: math.unit(150, "feet")
  14712. },
  14713. {
  14714. name: "Standard",
  14715. height: math.unit(1400, "feet"),
  14716. default: true
  14717. },
  14718. {
  14719. name: "Distracted",
  14720. height: math.unit(15000, "feet")
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14726. {
  14727. front: {
  14728. height: math.unit(7 + 4/12, "feet"),
  14729. weight: math.unit(690, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/geno-maxwell/front.svg",
  14733. extra: 984/856,
  14734. bottom: 87/1071
  14735. }
  14736. },
  14737. back: {
  14738. height: math.unit(7 + 4/12, "feet"),
  14739. weight: math.unit(690, "lb"),
  14740. name: "Back",
  14741. image: {
  14742. source: "./media/characters/geno-maxwell/back.svg",
  14743. extra: 981/854,
  14744. bottom: 57/1038
  14745. }
  14746. },
  14747. frontCostume: {
  14748. height: math.unit(7 + 4/12, "feet"),
  14749. weight: math.unit(690, "lb"),
  14750. name: "Front (Costume)",
  14751. image: {
  14752. source: "./media/characters/geno-maxwell/front-costume.svg",
  14753. extra: 984/856,
  14754. bottom: 87/1071
  14755. }
  14756. },
  14757. backcostume: {
  14758. height: math.unit(7 + 4/12, "feet"),
  14759. weight: math.unit(690, "lb"),
  14760. name: "Back (Costume)",
  14761. image: {
  14762. source: "./media/characters/geno-maxwell/back-costume.svg",
  14763. extra: 981/854,
  14764. bottom: 57/1038
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Micro",
  14771. height: math.unit(3, "inches")
  14772. },
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(7 + 4 / 12, "feet"),
  14776. default: true
  14777. },
  14778. {
  14779. name: "Macro",
  14780. height: math.unit(220, "feet")
  14781. },
  14782. {
  14783. name: "Megamacro",
  14784. height: math.unit(11, "miles")
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(7 + 4/12, "feet"),
  14793. weight: math.unit(750, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/regena-maxwell/front.svg",
  14797. extra: 984/856,
  14798. bottom: 87/1071
  14799. }
  14800. },
  14801. back: {
  14802. height: math.unit(7 + 4/12, "feet"),
  14803. weight: math.unit(750, "lb"),
  14804. name: "Back",
  14805. image: {
  14806. source: "./media/characters/regena-maxwell/back.svg",
  14807. extra: 981/854,
  14808. bottom: 57/1038
  14809. }
  14810. },
  14811. frontCostume: {
  14812. height: math.unit(7 + 4/12, "feet"),
  14813. weight: math.unit(750, "lb"),
  14814. name: "Front (Costume)",
  14815. image: {
  14816. source: "./media/characters/regena-maxwell/front-costume.svg",
  14817. extra: 984/856,
  14818. bottom: 87/1071
  14819. }
  14820. },
  14821. backcostume: {
  14822. height: math.unit(7 + 4/12, "feet"),
  14823. weight: math.unit(750, "lb"),
  14824. name: "Back (Costume)",
  14825. image: {
  14826. source: "./media/characters/regena-maxwell/back-costume.svg",
  14827. extra: 981/854,
  14828. bottom: 57/1038
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(7 + 4 / 12, "feet"),
  14836. default: true
  14837. },
  14838. {
  14839. name: "Macro",
  14840. height: math.unit(220, "feet")
  14841. },
  14842. {
  14843. name: "Megamacro",
  14844. height: math.unit(11, "miles")
  14845. },
  14846. ]
  14847. ))
  14848. characterMakers.push(() => makeCharacter(
  14849. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14850. {
  14851. front: {
  14852. height: math.unit(6, "feet"),
  14853. weight: math.unit(150, "lb"),
  14854. name: "Front",
  14855. image: {
  14856. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14857. extra: 860 / 690,
  14858. bottom: 0.03
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Normal",
  14865. height: math.unit(1.7, "meters"),
  14866. default: true
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(6, "feet"),
  14875. weight: math.unit(150, "lb"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/quilly/front.svg",
  14879. extra: 890 / 776
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Gigamacro",
  14886. height: math.unit(404090, "miles"),
  14887. default: true
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14893. {
  14894. front: {
  14895. height: math.unit(7 + 8 / 12, "feet"),
  14896. weight: math.unit(350, "lb"),
  14897. name: "Front",
  14898. image: {
  14899. source: "./media/characters/tempest/front.svg",
  14900. extra: 1175 / 1086,
  14901. bottom: 0.02
  14902. }
  14903. },
  14904. },
  14905. [
  14906. {
  14907. name: "Normal",
  14908. height: math.unit(7 + 8 / 12, "feet"),
  14909. default: true
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14915. {
  14916. side: {
  14917. height: math.unit(4 + 5 / 12, "feet"),
  14918. weight: math.unit(80, "lb"),
  14919. name: "Side",
  14920. image: {
  14921. source: "./media/characters/rodger/side.svg",
  14922. extra: 1235 / 1118
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Micro",
  14929. height: math.unit(1, "inch")
  14930. },
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(4 + 5 / 12, "feet"),
  14934. default: true
  14935. },
  14936. {
  14937. name: "Macro",
  14938. height: math.unit(120, "feet")
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(6, "feet"),
  14947. weight: math.unit(150, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/danyel/front.svg",
  14951. extra: 1185 / 1123,
  14952. bottom: 0.05
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Shrunken",
  14959. height: math.unit(0.5, "mm")
  14960. },
  14961. {
  14962. name: "Micro",
  14963. height: math.unit(1, "mm"),
  14964. default: true
  14965. },
  14966. {
  14967. name: "Upsized",
  14968. height: math.unit(5 + 5 / 12, "feet")
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(5 + 6 / 12, "feet"),
  14977. weight: math.unit(200, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/vivian-bijoux/front.svg",
  14981. extra: 1217/1209,
  14982. bottom: 76/1293
  14983. }
  14984. },
  14985. back: {
  14986. height: math.unit(5 + 6 / 12, "feet"),
  14987. weight: math.unit(200, "lb"),
  14988. name: "Back",
  14989. image: {
  14990. source: "./media/characters/vivian-bijoux/back.svg",
  14991. extra: 1214/1208,
  14992. bottom: 51/1265
  14993. }
  14994. },
  14995. dressed: {
  14996. height: math.unit(5 + 6 / 12, "feet"),
  14997. weight: math.unit(200, "lb"),
  14998. name: "Dressed",
  14999. image: {
  15000. source: "./media/characters/vivian-bijoux/dressed.svg",
  15001. extra: 1217/1209,
  15002. bottom: 76/1293
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(5 + 6 / 12, "feet"),
  15010. default: true
  15011. },
  15012. {
  15013. name: "Bad Dream",
  15014. height: math.unit(500, "feet")
  15015. },
  15016. {
  15017. name: "Nightmare",
  15018. height: math.unit(500, "miles")
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6 + 1 / 12, "feet"),
  15027. weight: math.unit(260, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/zeta/front.svg",
  15031. extra: 1968 / 1889,
  15032. bottom: 0.06
  15033. }
  15034. },
  15035. back: {
  15036. height: math.unit(6 + 1 / 12, "feet"),
  15037. weight: math.unit(260, "lb"),
  15038. name: "Back",
  15039. image: {
  15040. source: "./media/characters/zeta/back.svg",
  15041. extra: 1944 / 1858,
  15042. bottom: 0.03
  15043. }
  15044. },
  15045. hand: {
  15046. height: math.unit(1.112, "feet"),
  15047. name: "Hand",
  15048. image: {
  15049. source: "./media/characters/zeta/hand.svg"
  15050. }
  15051. },
  15052. foot: {
  15053. height: math.unit(1.48, "feet"),
  15054. name: "Foot",
  15055. image: {
  15056. source: "./media/characters/zeta/foot.svg"
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Micro",
  15063. height: math.unit(6, "inches")
  15064. },
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(6 + 1 / 12, "feet"),
  15068. default: true
  15069. },
  15070. {
  15071. name: "Macro",
  15072. height: math.unit(20, "feet")
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15078. {
  15079. front: {
  15080. height: math.unit(6, "feet"),
  15081. weight: math.unit(150, "lb"),
  15082. name: "Front",
  15083. image: {
  15084. source: "./media/characters/jamie-larsen/front.svg",
  15085. extra: 962 / 933,
  15086. bottom: 0.02
  15087. }
  15088. },
  15089. back: {
  15090. height: math.unit(6, "feet"),
  15091. weight: math.unit(150, "lb"),
  15092. name: "Back",
  15093. image: {
  15094. source: "./media/characters/jamie-larsen/back.svg",
  15095. extra: 997 / 946
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Macro",
  15102. height: math.unit(28 + 7 / 12, "feet"),
  15103. default: true
  15104. },
  15105. {
  15106. name: "Macro+",
  15107. height: math.unit(180, "feet")
  15108. },
  15109. {
  15110. name: "Megamacro",
  15111. height: math.unit(10, "miles")
  15112. },
  15113. {
  15114. name: "Gigamacro",
  15115. height: math.unit(200000, "miles")
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15121. {
  15122. front: {
  15123. height: math.unit(6, "feet"),
  15124. weight: math.unit(120, "lb"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/vance/front.svg",
  15128. extra: 1980 / 1890,
  15129. bottom: 0.09
  15130. }
  15131. },
  15132. back: {
  15133. height: math.unit(6, "feet"),
  15134. weight: math.unit(120, "lb"),
  15135. name: "Back",
  15136. image: {
  15137. source: "./media/characters/vance/back.svg",
  15138. extra: 2081 / 1994,
  15139. bottom: 0.014
  15140. }
  15141. },
  15142. hand: {
  15143. height: math.unit(0.88, "feet"),
  15144. name: "Hand",
  15145. image: {
  15146. source: "./media/characters/vance/hand.svg"
  15147. }
  15148. },
  15149. foot: {
  15150. height: math.unit(0.64, "feet"),
  15151. name: "Foot",
  15152. image: {
  15153. source: "./media/characters/vance/foot.svg"
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Small",
  15160. height: math.unit(90, "feet"),
  15161. default: true
  15162. },
  15163. {
  15164. name: "Macro",
  15165. height: math.unit(100, "meters")
  15166. },
  15167. {
  15168. name: "Megamacro",
  15169. height: math.unit(15, "miles")
  15170. },
  15171. ]
  15172. ))
  15173. characterMakers.push(() => makeCharacter(
  15174. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15175. {
  15176. front: {
  15177. height: math.unit(6, "feet"),
  15178. weight: math.unit(180, "lb"),
  15179. name: "Front",
  15180. image: {
  15181. source: "./media/characters/xochitl/front.svg",
  15182. extra: 2297 / 2261,
  15183. bottom: 0.065
  15184. }
  15185. },
  15186. back: {
  15187. height: math.unit(6, "feet"),
  15188. weight: math.unit(180, "lb"),
  15189. name: "Back",
  15190. image: {
  15191. source: "./media/characters/xochitl/back.svg",
  15192. extra: 2386 / 2354,
  15193. bottom: 0.01
  15194. }
  15195. },
  15196. foot: {
  15197. height: math.unit(6 / 5 * 1.15, "feet"),
  15198. weight: math.unit(150, "lb"),
  15199. name: "Foot",
  15200. image: {
  15201. source: "./media/characters/xochitl/foot.svg"
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Macro",
  15208. height: math.unit(80, "feet")
  15209. },
  15210. {
  15211. name: "Macro+",
  15212. height: math.unit(400, "feet"),
  15213. default: true
  15214. },
  15215. {
  15216. name: "Gigamacro",
  15217. height: math.unit(80000, "miles")
  15218. },
  15219. {
  15220. name: "Gigamacro+",
  15221. height: math.unit(400000, "miles")
  15222. },
  15223. {
  15224. name: "Teramacro",
  15225. height: math.unit(300, "AU")
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(6, "feet"),
  15234. weight: math.unit(150, "lb"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/vincent/front.svg",
  15238. extra: 1130 / 1080,
  15239. bottom: 0.055
  15240. }
  15241. },
  15242. beak: {
  15243. height: math.unit(6 * 0.1, "feet"),
  15244. name: "Beak",
  15245. image: {
  15246. source: "./media/characters/vincent/beak.svg"
  15247. }
  15248. },
  15249. hand: {
  15250. height: math.unit(6 * 0.85, "feet"),
  15251. weight: math.unit(150, "lb"),
  15252. name: "Hand",
  15253. image: {
  15254. source: "./media/characters/vincent/hand.svg"
  15255. }
  15256. },
  15257. foot: {
  15258. height: math.unit(6 * 0.19, "feet"),
  15259. weight: math.unit(150, "lb"),
  15260. name: "Foot",
  15261. image: {
  15262. source: "./media/characters/vincent/foot.svg"
  15263. }
  15264. },
  15265. },
  15266. [
  15267. {
  15268. name: "Base",
  15269. height: math.unit(6 + 5 / 12, "feet"),
  15270. default: true
  15271. },
  15272. {
  15273. name: "Macro",
  15274. height: math.unit(300, "feet")
  15275. },
  15276. {
  15277. name: "Megamacro",
  15278. height: math.unit(2, "miles")
  15279. },
  15280. {
  15281. name: "Gigamacro",
  15282. height: math.unit(1000, "miles")
  15283. },
  15284. ]
  15285. ))
  15286. characterMakers.push(() => makeCharacter(
  15287. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15288. {
  15289. front: {
  15290. height: math.unit(2, "meters"),
  15291. weight: math.unit(500, "kg"),
  15292. name: "Front",
  15293. image: {
  15294. source: "./media/characters/coatl/front.svg",
  15295. extra: 3948 / 3500,
  15296. bottom: 0.082
  15297. }
  15298. },
  15299. },
  15300. [
  15301. {
  15302. name: "Normal",
  15303. height: math.unit(4, "meters")
  15304. },
  15305. {
  15306. name: "Macro",
  15307. height: math.unit(100, "meters"),
  15308. default: true
  15309. },
  15310. {
  15311. name: "Macro+",
  15312. height: math.unit(300, "meters")
  15313. },
  15314. {
  15315. name: "Megamacro",
  15316. height: math.unit(3, "gigameters")
  15317. },
  15318. {
  15319. name: "Megamacro+",
  15320. height: math.unit(300, "terameters")
  15321. },
  15322. {
  15323. name: "Megamacro++",
  15324. height: math.unit(3, "lightyears")
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15330. {
  15331. front: {
  15332. height: math.unit(6, "feet"),
  15333. weight: math.unit(50, "kg"),
  15334. name: "front",
  15335. image: {
  15336. source: "./media/characters/shiroryu/front.svg",
  15337. extra: 1990 / 1935
  15338. }
  15339. },
  15340. },
  15341. [
  15342. {
  15343. name: "Mortal Mingling",
  15344. height: math.unit(3, "meters")
  15345. },
  15346. {
  15347. name: "Kaiju-ish",
  15348. height: math.unit(250, "meters")
  15349. },
  15350. {
  15351. name: "Somewhat Godly",
  15352. height: math.unit(400, "km"),
  15353. default: true
  15354. },
  15355. {
  15356. name: "Planetary",
  15357. height: math.unit(300, "megameters")
  15358. },
  15359. {
  15360. name: "Galaxy-dwarfing",
  15361. height: math.unit(450, "kiloparsecs")
  15362. },
  15363. {
  15364. name: "Universe Eater",
  15365. height: math.unit(150, "gigaparsecs")
  15366. },
  15367. {
  15368. name: "Almost Immeasurable",
  15369. height: math.unit(1.3e266, "yottaparsecs")
  15370. },
  15371. ]
  15372. ))
  15373. characterMakers.push(() => makeCharacter(
  15374. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15375. {
  15376. front: {
  15377. height: math.unit(6, "feet"),
  15378. weight: math.unit(150, "lb"),
  15379. name: "Front",
  15380. image: {
  15381. source: "./media/characters/umeko/front.svg",
  15382. extra: 1,
  15383. bottom: 0.019
  15384. }
  15385. },
  15386. frontArmored: {
  15387. height: math.unit(6, "feet"),
  15388. weight: math.unit(150, "lb"),
  15389. name: "Front (Armored)",
  15390. image: {
  15391. source: "./media/characters/umeko/front-armored.svg",
  15392. extra: 1,
  15393. bottom: 0.021
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Macro",
  15400. height: math.unit(220, "feet"),
  15401. default: true
  15402. },
  15403. {
  15404. name: "Guardian Dragon",
  15405. height: math.unit(50, "miles")
  15406. },
  15407. {
  15408. name: "Cosmic",
  15409. height: math.unit(800000, "miles")
  15410. },
  15411. ]
  15412. ))
  15413. characterMakers.push(() => makeCharacter(
  15414. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15415. {
  15416. front: {
  15417. height: math.unit(6, "feet"),
  15418. weight: math.unit(150, "lb"),
  15419. name: "Front",
  15420. image: {
  15421. source: "./media/characters/cassidy/front.svg",
  15422. extra: 810/808,
  15423. bottom: 41/851
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Canon Height",
  15430. height: math.unit(120, "feet"),
  15431. default: true
  15432. },
  15433. {
  15434. name: "Macro+",
  15435. height: math.unit(400, "feet")
  15436. },
  15437. {
  15438. name: "Macro++",
  15439. height: math.unit(4000, "feet")
  15440. },
  15441. {
  15442. name: "Megamacro",
  15443. height: math.unit(3, "miles")
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15449. {
  15450. front: {
  15451. height: math.unit(6, "feet"),
  15452. weight: math.unit(150, "lb"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/isaac/front.svg",
  15456. extra: 896 / 815,
  15457. bottom: 0.11
  15458. }
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Human Size",
  15464. height: math.unit(8, "feet"),
  15465. default: true
  15466. },
  15467. {
  15468. name: "Macro",
  15469. height: math.unit(400, "feet")
  15470. },
  15471. {
  15472. name: "Megamacro",
  15473. height: math.unit(50, "miles")
  15474. },
  15475. {
  15476. name: "Canon Height",
  15477. height: math.unit(200, "AU")
  15478. },
  15479. ]
  15480. ))
  15481. characterMakers.push(() => makeCharacter(
  15482. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15483. {
  15484. front: {
  15485. height: math.unit(6, "feet"),
  15486. weight: math.unit(72, "kg"),
  15487. name: "Front",
  15488. image: {
  15489. source: "./media/characters/sleekit/front.svg",
  15490. extra: 4693 / 4487,
  15491. bottom: 0.012
  15492. }
  15493. },
  15494. },
  15495. [
  15496. {
  15497. name: "Minimum Height",
  15498. height: math.unit(10, "meters")
  15499. },
  15500. {
  15501. name: "Smaller",
  15502. height: math.unit(25, "meters")
  15503. },
  15504. {
  15505. name: "Larger",
  15506. height: math.unit(38, "meters"),
  15507. default: true
  15508. },
  15509. {
  15510. name: "Maximum height",
  15511. height: math.unit(100, "meters")
  15512. },
  15513. ]
  15514. ))
  15515. characterMakers.push(() => makeCharacter(
  15516. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15517. {
  15518. front: {
  15519. height: math.unit(6, "feet"),
  15520. weight: math.unit(150, "lb"),
  15521. name: "Front",
  15522. image: {
  15523. source: "./media/characters/nillia/front.svg",
  15524. extra: 2195 / 2037,
  15525. bottom: 0.005
  15526. }
  15527. },
  15528. back: {
  15529. height: math.unit(6, "feet"),
  15530. weight: math.unit(150, "lb"),
  15531. name: "Back",
  15532. image: {
  15533. source: "./media/characters/nillia/back.svg",
  15534. extra: 2195 / 2037,
  15535. bottom: 0.005
  15536. }
  15537. },
  15538. },
  15539. [
  15540. {
  15541. name: "Canon Height",
  15542. height: math.unit(489, "feet"),
  15543. default: true
  15544. }
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(6, "feet"),
  15552. weight: math.unit(150, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/mesmyriza/front.svg",
  15556. extra: 2067 / 1784,
  15557. bottom: 0.035
  15558. }
  15559. },
  15560. foot: {
  15561. height: math.unit(6 / (250 / 35), "feet"),
  15562. name: "Foot",
  15563. image: {
  15564. source: "./media/characters/mesmyriza/foot.svg"
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Macro",
  15571. height: math.unit(457, "meters"),
  15572. default: true
  15573. },
  15574. {
  15575. name: "Megamacro",
  15576. height: math.unit(8, "megameters")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(6, "feet"),
  15585. weight: math.unit(250, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/saudade/front.svg",
  15589. extra: 1172 / 1139,
  15590. bottom: 0.035
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Micro",
  15597. height: math.unit(3, "inches")
  15598. },
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(6, "feet"),
  15602. default: true
  15603. },
  15604. {
  15605. name: "Macro",
  15606. height: math.unit(50, "feet")
  15607. },
  15608. {
  15609. name: "Megamacro",
  15610. height: math.unit(2800, "feet")
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(5 + 4 / 12, "feet"),
  15619. weight: math.unit(100, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/keireer/front.svg",
  15623. extra: 716 / 666,
  15624. bottom: 0.05
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Normal",
  15631. height: math.unit(5 + 4 / 12, "feet"),
  15632. default: true
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(5.5, "feet"),
  15641. weight: math.unit(90, "kg"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/mirja/front.svg",
  15645. extra: 1452/1262,
  15646. bottom: 67/1519
  15647. }
  15648. },
  15649. frontDressed: {
  15650. height: math.unit(5.5, "feet"),
  15651. weight: math.unit(90, "lb"),
  15652. name: "Front (Dressed)",
  15653. image: {
  15654. source: "./media/characters/mirja/dressed.svg",
  15655. extra: 1452/1262,
  15656. bottom: 67/1519
  15657. }
  15658. },
  15659. back: {
  15660. height: math.unit(6, "feet"),
  15661. weight: math.unit(90, "lb"),
  15662. name: "Back",
  15663. image: {
  15664. source: "./media/characters/mirja/back.svg",
  15665. extra: 1892/1795,
  15666. bottom: 48/1940
  15667. }
  15668. },
  15669. maw: {
  15670. height: math.unit(1.312, "feet"),
  15671. name: "Maw",
  15672. image: {
  15673. source: "./media/characters/mirja/maw.svg"
  15674. }
  15675. },
  15676. paw: {
  15677. height: math.unit(1.15, "feet"),
  15678. name: "Paw",
  15679. image: {
  15680. source: "./media/characters/mirja/paw.svg"
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "\"Incognito\"",
  15687. height: math.unit(3, "meters")
  15688. },
  15689. {
  15690. name: "Strolling Size",
  15691. height: math.unit(15, "km")
  15692. },
  15693. {
  15694. name: "Larger Strolling Size",
  15695. height: math.unit(400, "km")
  15696. },
  15697. {
  15698. name: "Preferred Size",
  15699. height: math.unit(5000, "km"),
  15700. default: true
  15701. },
  15702. {
  15703. name: "True Size",
  15704. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15705. },
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15710. {
  15711. front: {
  15712. height: math.unit(15, "feet"),
  15713. weight: math.unit(880, "kg"),
  15714. name: "Front",
  15715. image: {
  15716. source: "./media/characters/nightraver/front.svg",
  15717. extra: 2444 / 2160,
  15718. bottom: 0.027
  15719. }
  15720. },
  15721. back: {
  15722. height: math.unit(15, "feet"),
  15723. weight: math.unit(880, "kg"),
  15724. name: "Back",
  15725. image: {
  15726. source: "./media/characters/nightraver/back.svg",
  15727. extra: 2309 / 2180,
  15728. bottom: 0.005
  15729. }
  15730. },
  15731. sole: {
  15732. height: math.unit(2.878, "feet"),
  15733. name: "Sole",
  15734. image: {
  15735. source: "./media/characters/nightraver/sole.svg"
  15736. }
  15737. },
  15738. foot: {
  15739. height: math.unit(2.285, "feet"),
  15740. name: "Foot",
  15741. image: {
  15742. source: "./media/characters/nightraver/foot.svg"
  15743. }
  15744. },
  15745. maw: {
  15746. height: math.unit(2.67, "feet"),
  15747. name: "Maw",
  15748. image: {
  15749. source: "./media/characters/nightraver/maw.svg"
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Micro",
  15756. height: math.unit(1, "cm")
  15757. },
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(15, "feet"),
  15761. default: true
  15762. },
  15763. {
  15764. name: "Macro",
  15765. height: math.unit(300, "feet")
  15766. },
  15767. {
  15768. name: "Megamacro",
  15769. height: math.unit(300, "miles")
  15770. },
  15771. {
  15772. name: "Gigamacro",
  15773. height: math.unit(10000, "miles")
  15774. },
  15775. ]
  15776. ))
  15777. characterMakers.push(() => makeCharacter(
  15778. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15779. {
  15780. side: {
  15781. height: math.unit(2, "inches"),
  15782. weight: math.unit(5, "grams"),
  15783. name: "Side",
  15784. image: {
  15785. source: "./media/characters/arc/side.svg"
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Micro",
  15792. height: math.unit(2, "inches"),
  15793. default: true
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(1.1938, "meters"),
  15802. weight: math.unit(54, "kg"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/nebula-shahar/front.svg",
  15806. extra: 1642 / 1436,
  15807. bottom: 0.06
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Megamicro",
  15814. height: math.unit(0.3, "mm")
  15815. },
  15816. {
  15817. name: "Micro",
  15818. height: math.unit(3, "cm")
  15819. },
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(138, "cm"),
  15823. default: true
  15824. },
  15825. {
  15826. name: "Macro",
  15827. height: math.unit(30, "m")
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(5.24, "feet"),
  15836. weight: math.unit(150, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/shayla/front.svg",
  15840. extra: 1512 / 1414,
  15841. bottom: 0.01
  15842. }
  15843. },
  15844. back: {
  15845. height: math.unit(5.24, "feet"),
  15846. weight: math.unit(150, "lb"),
  15847. name: "Back",
  15848. image: {
  15849. source: "./media/characters/shayla/back.svg",
  15850. extra: 1512 / 1414
  15851. }
  15852. },
  15853. hand: {
  15854. height: math.unit(0.7781496062992126, "feet"),
  15855. name: "Hand",
  15856. image: {
  15857. source: "./media/characters/shayla/hand.svg"
  15858. }
  15859. },
  15860. foot: {
  15861. height: math.unit(1.4206036745406823, "feet"),
  15862. name: "Foot",
  15863. image: {
  15864. source: "./media/characters/shayla/foot.svg"
  15865. }
  15866. },
  15867. },
  15868. [
  15869. {
  15870. name: "Micro",
  15871. height: math.unit(0.32, "feet")
  15872. },
  15873. {
  15874. name: "Normal",
  15875. height: math.unit(5.24, "feet"),
  15876. default: true
  15877. },
  15878. {
  15879. name: "Macro",
  15880. height: math.unit(492.12, "feet")
  15881. },
  15882. {
  15883. name: "Megamacro",
  15884. height: math.unit(186.41, "miles")
  15885. },
  15886. ]
  15887. ))
  15888. characterMakers.push(() => makeCharacter(
  15889. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15890. {
  15891. front: {
  15892. height: math.unit(2.2, "m"),
  15893. weight: math.unit(120, "kg"),
  15894. name: "Front",
  15895. image: {
  15896. source: "./media/characters/pia-jr/front.svg",
  15897. extra: 1000 / 970,
  15898. bottom: 0.035
  15899. }
  15900. },
  15901. hand: {
  15902. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15903. name: "Hand",
  15904. image: {
  15905. source: "./media/characters/pia-jr/hand.svg"
  15906. }
  15907. },
  15908. paw: {
  15909. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15910. name: "Paw",
  15911. image: {
  15912. source: "./media/characters/pia-jr/paw.svg"
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Micro",
  15919. height: math.unit(1.2, "cm")
  15920. },
  15921. {
  15922. name: "Normal",
  15923. height: math.unit(2.2, "m"),
  15924. default: true
  15925. },
  15926. {
  15927. name: "Macro",
  15928. height: math.unit(180, "m")
  15929. },
  15930. {
  15931. name: "Megamacro",
  15932. height: math.unit(420, "km")
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(2, "m"),
  15941. weight: math.unit(115, "kg"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/pia-sr/front.svg",
  15945. extra: 760 / 730,
  15946. bottom: 0.015
  15947. }
  15948. },
  15949. back: {
  15950. height: math.unit(2, "m"),
  15951. weight: math.unit(115, "kg"),
  15952. name: "Back",
  15953. image: {
  15954. source: "./media/characters/pia-sr/back.svg",
  15955. extra: 760 / 730,
  15956. bottom: 0.01
  15957. }
  15958. },
  15959. hand: {
  15960. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15961. name: "Hand",
  15962. image: {
  15963. source: "./media/characters/pia-sr/hand.svg"
  15964. }
  15965. },
  15966. foot: {
  15967. height: math.unit(1.83, "feet"),
  15968. name: "Foot",
  15969. image: {
  15970. source: "./media/characters/pia-sr/foot.svg"
  15971. }
  15972. },
  15973. },
  15974. [
  15975. {
  15976. name: "Micro",
  15977. height: math.unit(88, "mm")
  15978. },
  15979. {
  15980. name: "Normal",
  15981. height: math.unit(2, "m"),
  15982. default: true
  15983. },
  15984. {
  15985. name: "Macro",
  15986. height: math.unit(200, "m")
  15987. },
  15988. {
  15989. name: "Megamacro",
  15990. height: math.unit(420, "km")
  15991. },
  15992. ]
  15993. ))
  15994. characterMakers.push(() => makeCharacter(
  15995. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15996. {
  15997. front: {
  15998. height: math.unit(8 + 2 / 12, "feet"),
  15999. weight: math.unit(300, "lb"),
  16000. name: "Front",
  16001. image: {
  16002. source: "./media/characters/kibibyte/front.svg",
  16003. extra: 2221 / 2098,
  16004. bottom: 0.04
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Normal",
  16011. height: math.unit(8 + 2 / 12, "feet"),
  16012. default: true
  16013. },
  16014. {
  16015. name: "Socialable Macro",
  16016. height: math.unit(50, "feet")
  16017. },
  16018. {
  16019. name: "Macro",
  16020. height: math.unit(300, "feet")
  16021. },
  16022. {
  16023. name: "Megamacro",
  16024. height: math.unit(500, "miles")
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(6, "feet"),
  16033. weight: math.unit(150, "lb"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/felix/front.svg",
  16037. extra: 762 / 722,
  16038. bottom: 0.02
  16039. }
  16040. },
  16041. frontClothed: {
  16042. height: math.unit(6, "feet"),
  16043. weight: math.unit(150, "lb"),
  16044. name: "Front (Clothed)",
  16045. image: {
  16046. source: "./media/characters/felix/front-clothed.svg",
  16047. extra: 762 / 722,
  16048. bottom: 0.02
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(6 + 8 / 12, "feet"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(2600, "feet")
  16061. },
  16062. {
  16063. name: "Megamacro",
  16064. height: math.unit(450, "miles")
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(6 + 1 / 12, "feet"),
  16073. weight: math.unit(250, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/tobo/front.svg",
  16077. extra: 608 / 586,
  16078. bottom: 0.023
  16079. }
  16080. },
  16081. back: {
  16082. height: math.unit(6 + 1 / 12, "feet"),
  16083. weight: math.unit(250, "lb"),
  16084. name: "Back",
  16085. image: {
  16086. source: "./media/characters/tobo/back.svg",
  16087. extra: 608 / 586
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Nano",
  16094. height: math.unit(2, "nm")
  16095. },
  16096. {
  16097. name: "Megamicro",
  16098. height: math.unit(0.1, "mm")
  16099. },
  16100. {
  16101. name: "Micro",
  16102. height: math.unit(1, "inch"),
  16103. default: true
  16104. },
  16105. {
  16106. name: "Human-sized",
  16107. height: math.unit(6 + 1 / 12, "feet")
  16108. },
  16109. {
  16110. name: "Macro",
  16111. height: math.unit(250, "feet")
  16112. },
  16113. {
  16114. name: "Megamacro",
  16115. height: math.unit(75, "miles")
  16116. },
  16117. {
  16118. name: "Texas-sized",
  16119. height: math.unit(750, "miles")
  16120. },
  16121. {
  16122. name: "Teramacro",
  16123. height: math.unit(50000, "miles")
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16129. {
  16130. front: {
  16131. height: math.unit(6, "feet"),
  16132. weight: math.unit(269, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/danny-kapowsky/front.svg",
  16136. extra: 766 / 736,
  16137. bottom: 0.044
  16138. }
  16139. },
  16140. back: {
  16141. height: math.unit(6, "feet"),
  16142. weight: math.unit(269, "lb"),
  16143. name: "Back",
  16144. image: {
  16145. source: "./media/characters/danny-kapowsky/back.svg",
  16146. extra: 797 / 760,
  16147. bottom: 0.025
  16148. }
  16149. },
  16150. },
  16151. [
  16152. {
  16153. name: "Macro",
  16154. height: math.unit(150, "feet"),
  16155. default: true
  16156. },
  16157. {
  16158. name: "Macro+",
  16159. height: math.unit(200, "feet")
  16160. },
  16161. {
  16162. name: "Macro++",
  16163. height: math.unit(300, "feet")
  16164. },
  16165. {
  16166. name: "Macro+++",
  16167. height: math.unit(400, "feet")
  16168. },
  16169. ]
  16170. ))
  16171. characterMakers.push(() => makeCharacter(
  16172. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16173. {
  16174. side: {
  16175. height: math.unit(6, "feet"),
  16176. weight: math.unit(170, "lb"),
  16177. name: "Side",
  16178. image: {
  16179. source: "./media/characters/finn/side.svg",
  16180. extra: 1953 / 1807,
  16181. bottom: 0.057
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Megamacro",
  16188. height: math.unit(14445, "feet"),
  16189. default: true
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16195. {
  16196. front: {
  16197. height: math.unit(5 + 6 / 12, "feet"),
  16198. weight: math.unit(125, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/roy/front.svg",
  16202. extra: 1,
  16203. bottom: 0.11
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Micro",
  16210. height: math.unit(3, "inches"),
  16211. default: true
  16212. },
  16213. {
  16214. name: "Normal",
  16215. height: math.unit(5 + 6 / 12, "feet")
  16216. },
  16217. {
  16218. name: "Lesser Macro",
  16219. height: math.unit(60, "feet")
  16220. },
  16221. {
  16222. name: "Greater Macro",
  16223. height: math.unit(120, "feet")
  16224. },
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16229. {
  16230. front: {
  16231. height: math.unit(6, "feet"),
  16232. weight: math.unit(100, "lb"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/aevsivs/front.svg",
  16236. extra: 1,
  16237. bottom: 0.03
  16238. }
  16239. },
  16240. back: {
  16241. height: math.unit(6, "feet"),
  16242. weight: math.unit(100, "lb"),
  16243. name: "Back",
  16244. image: {
  16245. source: "./media/characters/aevsivs/back.svg"
  16246. }
  16247. },
  16248. },
  16249. [
  16250. {
  16251. name: "Micro",
  16252. height: math.unit(2, "inches"),
  16253. default: true
  16254. },
  16255. {
  16256. name: "Normal",
  16257. height: math.unit(5, "feet")
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16263. {
  16264. front: {
  16265. height: math.unit(5 + 7 / 12, "feet"),
  16266. weight: math.unit(159, "lb"),
  16267. name: "Front",
  16268. image: {
  16269. source: "./media/characters/hildegard/front.svg",
  16270. extra: 289 / 269,
  16271. bottom: 7.63 / 297.8
  16272. }
  16273. },
  16274. back: {
  16275. height: math.unit(5 + 7 / 12, "feet"),
  16276. weight: math.unit(159, "lb"),
  16277. name: "Back",
  16278. image: {
  16279. source: "./media/characters/hildegard/back.svg",
  16280. extra: 280 / 260,
  16281. bottom: 2.3 / 282
  16282. }
  16283. },
  16284. },
  16285. [
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(5 + 7 / 12, "feet"),
  16289. default: true
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16295. {
  16296. bernard: {
  16297. height: math.unit(2 + 7 / 12, "feet"),
  16298. weight: math.unit(66, "lb"),
  16299. name: "Bernard",
  16300. rename: true,
  16301. image: {
  16302. source: "./media/characters/bernard-wilder/bernard.svg",
  16303. extra: 192 / 128,
  16304. bottom: 0.05
  16305. }
  16306. },
  16307. wilder: {
  16308. height: math.unit(5 + 8 / 12, "feet"),
  16309. weight: math.unit(143, "lb"),
  16310. name: "Wilder",
  16311. rename: true,
  16312. image: {
  16313. source: "./media/characters/bernard-wilder/wilder.svg",
  16314. extra: 361 / 312,
  16315. bottom: 0.02
  16316. }
  16317. },
  16318. },
  16319. [
  16320. {
  16321. name: "Normal",
  16322. height: math.unit(2 + 7 / 12, "feet"),
  16323. default: true
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16329. {
  16330. anthro: {
  16331. height: math.unit(6 + 1 / 12, "feet"),
  16332. weight: math.unit(155, "lb"),
  16333. name: "Anthro",
  16334. image: {
  16335. source: "./media/characters/hearth/anthro.svg",
  16336. extra: 1178/1136,
  16337. bottom: 28/1206
  16338. }
  16339. },
  16340. feral: {
  16341. height: math.unit(3.78, "feet"),
  16342. weight: math.unit(35, "kg"),
  16343. name: "Feral",
  16344. image: {
  16345. source: "./media/characters/hearth/feral.svg",
  16346. extra: 153 / 135,
  16347. bottom: 0.03
  16348. }
  16349. },
  16350. },
  16351. [
  16352. {
  16353. name: "Normal",
  16354. height: math.unit(6 + 1 / 12, "feet"),
  16355. default: true
  16356. },
  16357. ]
  16358. ))
  16359. characterMakers.push(() => makeCharacter(
  16360. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16361. {
  16362. front: {
  16363. height: math.unit(6, "feet"),
  16364. weight: math.unit(182, "lb"),
  16365. name: "Front",
  16366. image: {
  16367. source: "./media/characters/ingrid/front.svg",
  16368. extra: 294 / 268,
  16369. bottom: 0.027
  16370. }
  16371. },
  16372. },
  16373. [
  16374. {
  16375. name: "Normal",
  16376. height: math.unit(6, "feet"),
  16377. default: true
  16378. },
  16379. ]
  16380. ))
  16381. characterMakers.push(() => makeCharacter(
  16382. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16383. {
  16384. eevee: {
  16385. height: math.unit(2 + 10 / 12, "feet"),
  16386. weight: math.unit(86, "lb"),
  16387. name: "Malgam",
  16388. image: {
  16389. source: "./media/characters/malgam/eevee.svg",
  16390. extra: 952/784,
  16391. bottom: 38/990
  16392. }
  16393. },
  16394. sylveon: {
  16395. height: math.unit(4, "feet"),
  16396. weight: math.unit(101, "lb"),
  16397. name: "Future Malgam",
  16398. rename: true,
  16399. image: {
  16400. source: "./media/characters/malgam/sylveon.svg",
  16401. extra: 371 / 325,
  16402. bottom: 0.015
  16403. }
  16404. },
  16405. gigantamax: {
  16406. height: math.unit(50, "feet"),
  16407. name: "Gigantamax Malgam",
  16408. rename: true,
  16409. image: {
  16410. source: "./media/characters/malgam/gigantamax.svg"
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Normal",
  16417. height: math.unit(2 + 10 / 12, "feet"),
  16418. default: true
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16424. {
  16425. front: {
  16426. height: math.unit(5 + 11 / 12, "feet"),
  16427. weight: math.unit(188, "lb"),
  16428. name: "Front",
  16429. image: {
  16430. source: "./media/characters/fleur/front.svg",
  16431. extra: 309 / 283,
  16432. bottom: 0.007
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(5 + 11 / 12, "feet"),
  16440. default: true
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(5 + 4 / 12, "feet"),
  16449. weight: math.unit(122, "lb"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/jude/front.svg",
  16453. extra: 288 / 273,
  16454. bottom: 0.03
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Normal",
  16461. height: math.unit(5 + 4 / 12, "feet"),
  16462. default: true
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16468. {
  16469. front: {
  16470. height: math.unit(5 + 11 / 12, "feet"),
  16471. weight: math.unit(190, "lb"),
  16472. name: "Front",
  16473. image: {
  16474. source: "./media/characters/seara/front.svg",
  16475. extra: 1,
  16476. bottom: 0.05
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(5 + 11 / 12, "feet"),
  16484. default: true
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16490. {
  16491. front: {
  16492. height: math.unit(16 + 5 / 12, "feet"),
  16493. weight: math.unit(524, "lb"),
  16494. name: "Front",
  16495. image: {
  16496. source: "./media/characters/caspian-lugia/front.svg",
  16497. extra: 1,
  16498. bottom: 0.04
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(16 + 5 / 12, "feet"),
  16506. default: true
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16512. {
  16513. front: {
  16514. height: math.unit(5 + 7 / 12, "feet"),
  16515. weight: math.unit(170, "lb"),
  16516. name: "Front",
  16517. image: {
  16518. source: "./media/characters/mika/front.svg",
  16519. extra: 1,
  16520. bottom: 0.016
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Normal",
  16527. height: math.unit(5 + 7 / 12, "feet"),
  16528. default: true
  16529. },
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16534. {
  16535. front: {
  16536. height: math.unit(6 + 2 / 12, "feet"),
  16537. weight: math.unit(268, "lb"),
  16538. name: "Front",
  16539. image: {
  16540. source: "./media/characters/sol/front.svg",
  16541. extra: 247 / 231,
  16542. bottom: 0.05
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(6 + 2 / 12, "feet"),
  16550. default: true
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16556. {
  16557. buizel: {
  16558. height: math.unit(2 + 5 / 12, "feet"),
  16559. weight: math.unit(87, "lb"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/umiko/buizel.svg",
  16563. extra: 172 / 157,
  16564. bottom: 0.01
  16565. },
  16566. form: "buizel",
  16567. default: true
  16568. },
  16569. floatzel: {
  16570. height: math.unit(5 + 9 / 12, "feet"),
  16571. weight: math.unit(250, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/umiko/floatzel.svg",
  16575. extra: 1076/1006,
  16576. bottom: 15/1091
  16577. },
  16578. form: "floatzel",
  16579. default: true
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(2 + 5 / 12, "feet"),
  16586. form: "buizel",
  16587. default: true
  16588. },
  16589. {
  16590. name: "Normal",
  16591. height: math.unit(5 + 9 / 12, "feet"),
  16592. form: "floatzel",
  16593. default: true
  16594. },
  16595. ],
  16596. {
  16597. "buizel": {
  16598. name: "Buizel"
  16599. },
  16600. "floatzel": {
  16601. name: "Floatzel",
  16602. default: true
  16603. }
  16604. }
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16608. {
  16609. front: {
  16610. height: math.unit(6 + 2 / 12, "feet"),
  16611. weight: math.unit(146, "lb"),
  16612. name: "Front",
  16613. image: {
  16614. source: "./media/characters/iliac/front.svg",
  16615. extra: 389 / 365,
  16616. bottom: 0.035
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(6 + 2 / 12, "feet"),
  16624. default: true
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16630. {
  16631. front: {
  16632. height: math.unit(6, "feet"),
  16633. weight: math.unit(170, "lb"),
  16634. name: "Front",
  16635. image: {
  16636. source: "./media/characters/topaz/front.svg",
  16637. extra: 317 / 303,
  16638. bottom: 0.055
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Normal",
  16645. height: math.unit(6, "feet"),
  16646. default: true
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(5 + 11 / 12, "feet"),
  16655. weight: math.unit(144, "lb"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/gabriel/front.svg",
  16659. extra: 285 / 262,
  16660. bottom: 0.004
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Normal",
  16667. height: math.unit(5 + 11 / 12, "feet"),
  16668. default: true
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16674. {
  16675. side: {
  16676. height: math.unit(6 + 5 / 12, "feet"),
  16677. weight: math.unit(300, "lb"),
  16678. name: "Side",
  16679. image: {
  16680. source: "./media/characters/tempest-suicune/side.svg",
  16681. extra: 195 / 154,
  16682. bottom: 0.04
  16683. }
  16684. },
  16685. },
  16686. [
  16687. {
  16688. name: "Normal",
  16689. height: math.unit(6 + 5 / 12, "feet"),
  16690. default: true
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16696. {
  16697. front: {
  16698. height: math.unit(7 + 2 / 12, "feet"),
  16699. weight: math.unit(322, "lb"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/vulcan/front.svg",
  16703. extra: 154 / 147,
  16704. bottom: 0.04
  16705. }
  16706. },
  16707. },
  16708. [
  16709. {
  16710. name: "Normal",
  16711. height: math.unit(7 + 2 / 12, "feet"),
  16712. default: true
  16713. },
  16714. ]
  16715. ))
  16716. characterMakers.push(() => makeCharacter(
  16717. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16718. {
  16719. front: {
  16720. height: math.unit(5 + 10 / 12, "feet"),
  16721. weight: math.unit(264, "lb"),
  16722. name: "Front",
  16723. image: {
  16724. source: "./media/characters/gault/front.svg",
  16725. extra: 161 / 140,
  16726. bottom: 0.028
  16727. }
  16728. },
  16729. },
  16730. [
  16731. {
  16732. name: "Normal",
  16733. height: math.unit(5 + 10 / 12, "feet"),
  16734. default: true
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16740. {
  16741. front: {
  16742. height: math.unit(6, "feet"),
  16743. weight: math.unit(150, "lb"),
  16744. name: "Front",
  16745. image: {
  16746. source: "./media/characters/shard/front.svg",
  16747. extra: 273 / 238,
  16748. bottom: 0.02
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Normal",
  16755. height: math.unit(3 + 6 / 12, "feet"),
  16756. default: true
  16757. },
  16758. ]
  16759. ))
  16760. characterMakers.push(() => makeCharacter(
  16761. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16762. {
  16763. front: {
  16764. height: math.unit(5 + 11 / 12, "feet"),
  16765. weight: math.unit(146, "lb"),
  16766. name: "Front",
  16767. image: {
  16768. source: "./media/characters/ashe/front.svg",
  16769. extra: 400 / 373,
  16770. bottom: 0.01
  16771. }
  16772. },
  16773. },
  16774. [
  16775. {
  16776. name: "Normal",
  16777. height: math.unit(5 + 11 / 12, "feet"),
  16778. default: true
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(5 + 5 / 12, "feet"),
  16787. weight: math.unit(135, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/beatrix/front.svg",
  16791. extra: 392 / 379,
  16792. bottom: 0.01
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(6, "feet"),
  16800. default: true
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16806. {
  16807. front: {
  16808. height: math.unit(6 + 2/12, "feet"),
  16809. weight: math.unit(135, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/ignatius/front.svg",
  16813. extra: 1380/1259,
  16814. bottom: 27/1407
  16815. }
  16816. },
  16817. },
  16818. [
  16819. {
  16820. name: "Normal",
  16821. height: math.unit(6 + 2/12, "feet"),
  16822. default: true
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16828. {
  16829. front: {
  16830. height: math.unit(6 + 2 / 12, "feet"),
  16831. weight: math.unit(138, "lb"),
  16832. name: "Front",
  16833. image: {
  16834. source: "./media/characters/mei-li/front.svg",
  16835. extra: 237 / 229,
  16836. bottom: 0.03
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(6 + 2 / 12, "feet"),
  16844. default: true
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16850. {
  16851. front: {
  16852. height: math.unit(2 + 4 / 12, "feet"),
  16853. weight: math.unit(62, "lb"),
  16854. name: "Front",
  16855. image: {
  16856. source: "./media/characters/puru/front.svg",
  16857. extra: 206 / 149,
  16858. bottom: 0.06
  16859. }
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Normal",
  16865. height: math.unit(2 + 4 / 12, "feet"),
  16866. default: true
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16872. {
  16873. anthro: {
  16874. height: math.unit(5 + 8/12, "feet"),
  16875. weight: math.unit(200, "lb"),
  16876. energyNeed: math.unit(2000, "kcal"),
  16877. name: "Anthro",
  16878. image: {
  16879. source: "./media/characters/kee/anthro.svg",
  16880. extra: 3251/3184,
  16881. bottom: 250/3501
  16882. }
  16883. },
  16884. taur: {
  16885. height: math.unit(11, "feet"),
  16886. weight: math.unit(500, "lb"),
  16887. energyNeed: math.unit(5000, "kcal"),
  16888. name: "Taur",
  16889. image: {
  16890. source: "./media/characters/kee/taur.svg",
  16891. extra: 1362/1320,
  16892. bottom: 83/1445
  16893. }
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Normal",
  16899. height: math.unit(5 + 8/12, "feet"),
  16900. default: true
  16901. },
  16902. {
  16903. name: "Macro",
  16904. height: math.unit(35, "feet")
  16905. },
  16906. ]
  16907. ))
  16908. characterMakers.push(() => makeCharacter(
  16909. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16910. {
  16911. anthro: {
  16912. height: math.unit(7, "feet"),
  16913. weight: math.unit(190, "lb"),
  16914. name: "Anthro",
  16915. image: {
  16916. source: "./media/characters/cobalt-dracha/anthro.svg",
  16917. extra: 231 / 225,
  16918. bottom: 0.04
  16919. }
  16920. },
  16921. feral: {
  16922. height: math.unit(9 + 7 / 12, "feet"),
  16923. weight: math.unit(294, "lb"),
  16924. name: "Feral",
  16925. image: {
  16926. source: "./media/characters/cobalt-dracha/feral.svg",
  16927. extra: 692 / 633,
  16928. bottom: 0.05
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Normal",
  16935. height: math.unit(7, "feet"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16942. {
  16943. fallen: {
  16944. height: math.unit(11 + 8 / 12, "feet"),
  16945. weight: math.unit(485, "lb"),
  16946. name: "Java (Fallen)",
  16947. rename: true,
  16948. image: {
  16949. source: "./media/characters/java/fallen.svg",
  16950. extra: 226 / 208,
  16951. bottom: 0.005
  16952. }
  16953. },
  16954. godkin: {
  16955. height: math.unit(10 + 6 / 12, "feet"),
  16956. weight: math.unit(328, "lb"),
  16957. name: "Java (Godkin)",
  16958. rename: true,
  16959. image: {
  16960. source: "./media/characters/java/godkin.svg",
  16961. extra: 1104/1068,
  16962. bottom: 36/1140
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(11 + 8 / 12, "feet"),
  16970. default: true
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(5 + 9 / 12, "feet"),
  16979. weight: math.unit(170, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/purna/front.svg",
  16983. extra: 239 / 229,
  16984. bottom: 0.01
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(5 + 9 / 12, "feet"),
  16992. default: true
  16993. },
  16994. ]
  16995. ))
  16996. characterMakers.push(() => makeCharacter(
  16997. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16998. {
  16999. front: {
  17000. height: math.unit(5 + 9 / 12, "feet"),
  17001. weight: math.unit(142, "lb"),
  17002. name: "Front",
  17003. image: {
  17004. source: "./media/characters/kuva/front.svg",
  17005. extra: 281 / 271,
  17006. bottom: 0.006
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Normal",
  17013. height: math.unit(5 + 9 / 12, "feet"),
  17014. default: true
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17020. {
  17021. anthro: {
  17022. height: math.unit(9 + 2 / 12, "feet"),
  17023. weight: math.unit(270, "lb"),
  17024. name: "Anthro",
  17025. image: {
  17026. source: "./media/characters/embra/anthro.svg",
  17027. extra: 200 / 187,
  17028. bottom: 0.02
  17029. }
  17030. },
  17031. feral: {
  17032. height: math.unit(18 + 8 / 12, "feet"),
  17033. weight: math.unit(576, "lb"),
  17034. name: "Feral",
  17035. image: {
  17036. source: "./media/characters/embra/feral.svg",
  17037. extra: 152 / 137,
  17038. bottom: 0.037
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(9 + 2 / 12, "feet"),
  17046. default: true
  17047. },
  17048. ]
  17049. ))
  17050. characterMakers.push(() => makeCharacter(
  17051. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17052. {
  17053. anthro: {
  17054. height: math.unit(10 + 9 / 12, "feet"),
  17055. weight: math.unit(224, "lb"),
  17056. name: "Anthro",
  17057. image: {
  17058. source: "./media/characters/grottos/anthro.svg",
  17059. extra: 350 / 332,
  17060. bottom: 0.045
  17061. }
  17062. },
  17063. feral: {
  17064. height: math.unit(20 + 7 / 12, "feet"),
  17065. weight: math.unit(629, "lb"),
  17066. name: "Feral",
  17067. image: {
  17068. source: "./media/characters/grottos/feral.svg",
  17069. extra: 207 / 190,
  17070. bottom: 0.05
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(10 + 9 / 12, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17084. {
  17085. anthro: {
  17086. height: math.unit(9 + 6 / 12, "feet"),
  17087. weight: math.unit(298, "lb"),
  17088. name: "Anthro",
  17089. image: {
  17090. source: "./media/characters/frifna/anthro.svg",
  17091. extra: 282 / 269,
  17092. bottom: 0.015
  17093. }
  17094. },
  17095. feral: {
  17096. height: math.unit(16 + 2 / 12, "feet"),
  17097. weight: math.unit(624, "lb"),
  17098. name: "Feral",
  17099. image: {
  17100. source: "./media/characters/frifna/feral.svg"
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(9 + 6 / 12, "feet"),
  17108. default: true
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17114. {
  17115. front: {
  17116. height: math.unit(6 + 2 / 12, "feet"),
  17117. weight: math.unit(168, "lb"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/elise/front.svg",
  17121. extra: 276 / 271
  17122. }
  17123. },
  17124. },
  17125. [
  17126. {
  17127. name: "Normal",
  17128. height: math.unit(6 + 2 / 12, "feet"),
  17129. default: true
  17130. },
  17131. ]
  17132. ))
  17133. characterMakers.push(() => makeCharacter(
  17134. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17135. {
  17136. front: {
  17137. height: math.unit(5 + 10 / 12, "feet"),
  17138. weight: math.unit(210, "lb"),
  17139. name: "Front",
  17140. image: {
  17141. source: "./media/characters/glade/front.svg",
  17142. extra: 258 / 247,
  17143. bottom: 0.008
  17144. }
  17145. },
  17146. },
  17147. [
  17148. {
  17149. name: "Normal",
  17150. height: math.unit(5 + 10 / 12, "feet"),
  17151. default: true
  17152. },
  17153. ]
  17154. ))
  17155. characterMakers.push(() => makeCharacter(
  17156. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17157. {
  17158. front: {
  17159. height: math.unit(5 + 10 / 12, "feet"),
  17160. weight: math.unit(129, "lb"),
  17161. name: "Front",
  17162. image: {
  17163. source: "./media/characters/rina/front.svg",
  17164. extra: 266 / 255,
  17165. bottom: 0.005
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(5 + 10 / 12, "feet"),
  17173. default: true
  17174. },
  17175. ]
  17176. ))
  17177. characterMakers.push(() => makeCharacter(
  17178. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17179. {
  17180. front: {
  17181. height: math.unit(6 + 1 / 12, "feet"),
  17182. weight: math.unit(192, "lb"),
  17183. name: "Front",
  17184. image: {
  17185. source: "./media/characters/veronica/front.svg",
  17186. extra: 319 / 309,
  17187. bottom: 0.005
  17188. }
  17189. },
  17190. },
  17191. [
  17192. {
  17193. name: "Normal",
  17194. height: math.unit(6 + 1 / 12, "feet"),
  17195. default: true
  17196. },
  17197. ]
  17198. ))
  17199. characterMakers.push(() => makeCharacter(
  17200. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17201. {
  17202. front: {
  17203. height: math.unit(9 + 3 / 12, "feet"),
  17204. weight: math.unit(1100, "lb"),
  17205. name: "Front",
  17206. image: {
  17207. source: "./media/characters/braxton/front.svg",
  17208. extra: 1057 / 984,
  17209. bottom: 0.05
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(9 + 3 / 12, "feet")
  17217. },
  17218. {
  17219. name: "Giant",
  17220. height: math.unit(300, "feet"),
  17221. default: true
  17222. },
  17223. {
  17224. name: "Macro",
  17225. height: math.unit(700, "feet")
  17226. },
  17227. {
  17228. name: "Megamacro",
  17229. height: math.unit(6000, "feet")
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17235. {
  17236. front: {
  17237. height: math.unit(6 + 7 / 12, "feet"),
  17238. weight: math.unit(150, "lb"),
  17239. name: "Front",
  17240. image: {
  17241. source: "./media/characters/blue-feyonics/front.svg",
  17242. extra: 1403 / 1306,
  17243. bottom: 0.047
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(6 + 7 / 12, "feet"),
  17251. default: true
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17257. {
  17258. front: {
  17259. height: math.unit(1.8, "meters"),
  17260. weight: math.unit(60, "kg"),
  17261. name: "Front",
  17262. image: {
  17263. source: "./media/characters/maxwell/front.svg",
  17264. extra: 2060 / 1873
  17265. }
  17266. },
  17267. },
  17268. [
  17269. {
  17270. name: "Micro",
  17271. height: math.unit(1, "mm")
  17272. },
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(1.8, "meter"),
  17276. default: true
  17277. },
  17278. {
  17279. name: "Macro",
  17280. height: math.unit(30, "meters")
  17281. },
  17282. {
  17283. name: "Megamacro",
  17284. height: math.unit(10, "km")
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17290. {
  17291. front: {
  17292. height: math.unit(6, "feet"),
  17293. weight: math.unit(150, "lb"),
  17294. name: "Front",
  17295. image: {
  17296. source: "./media/characters/jack/front.svg",
  17297. extra: 1754 / 1640,
  17298. bottom: 0.01
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(80000, "feet"),
  17306. default: true
  17307. },
  17308. {
  17309. name: "Max size",
  17310. height: math.unit(10, "lightyears")
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17316. {
  17317. urban: {
  17318. height: math.unit(5, "feet"),
  17319. weight: math.unit(240, "lb"),
  17320. name: "Urban",
  17321. image: {
  17322. source: "./media/characters/cafat/urban.svg",
  17323. extra: 1223/1126,
  17324. bottom: 205/1428
  17325. }
  17326. },
  17327. summer: {
  17328. height: math.unit(5, "feet"),
  17329. weight: math.unit(240, "lb"),
  17330. name: "Summer",
  17331. image: {
  17332. source: "./media/characters/cafat/summer.svg",
  17333. extra: 1223/1126,
  17334. bottom: 205/1428
  17335. }
  17336. },
  17337. winter: {
  17338. height: math.unit(5, "feet"),
  17339. weight: math.unit(240, "lb"),
  17340. name: "Winter",
  17341. image: {
  17342. source: "./media/characters/cafat/winter.svg",
  17343. extra: 1223/1126,
  17344. bottom: 205/1428
  17345. }
  17346. },
  17347. lingerie: {
  17348. height: math.unit(5, "feet"),
  17349. weight: math.unit(240, "lb"),
  17350. name: "Lingerie",
  17351. image: {
  17352. source: "./media/characters/cafat/lingerie.svg",
  17353. extra: 1223/1126,
  17354. bottom: 205/1428
  17355. }
  17356. },
  17357. upright: {
  17358. height: math.unit(6.3, "feet"),
  17359. weight: math.unit(240, "lb"),
  17360. name: "Upright",
  17361. image: {
  17362. source: "./media/characters/cafat/upright.svg",
  17363. bottom: 0.01
  17364. }
  17365. },
  17366. uprightFull: {
  17367. height: math.unit(6.3, "feet"),
  17368. weight: math.unit(240, "lb"),
  17369. name: "Upright (Full)",
  17370. image: {
  17371. source: "./media/characters/cafat/upright-full.svg",
  17372. bottom: 0.01
  17373. }
  17374. },
  17375. },
  17376. [
  17377. {
  17378. name: "Small",
  17379. height: math.unit(5, "feet"),
  17380. default: true
  17381. },
  17382. {
  17383. name: "Large",
  17384. height: math.unit(13, "feet")
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17390. {
  17391. front: {
  17392. height: math.unit(6, "feet"),
  17393. weight: math.unit(150, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/verin-raharra/front.svg",
  17397. extra: 5019 / 4835,
  17398. bottom: 0.023
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(7 + 5 / 12, "feet"),
  17406. default: true
  17407. },
  17408. {
  17409. name: "Upsized",
  17410. height: math.unit(20, "feet")
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17416. {
  17417. front: {
  17418. height: math.unit(7, "feet"),
  17419. weight: math.unit(230, "lb"),
  17420. name: "Front",
  17421. image: {
  17422. source: "./media/characters/nakata/front.svg",
  17423. extra: 1.005,
  17424. bottom: 0.01
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(7, "feet"),
  17432. default: true
  17433. },
  17434. {
  17435. name: "Big",
  17436. height: math.unit(14, "feet")
  17437. },
  17438. {
  17439. name: "Macro",
  17440. height: math.unit(400, "feet")
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17446. {
  17447. front: {
  17448. height: math.unit(4.91, "feet"),
  17449. weight: math.unit(100, "lb"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/lily/front.svg",
  17453. extra: 1585 / 1415,
  17454. bottom: 0.02
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(4.91, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17468. {
  17469. laying: {
  17470. height: math.unit(4 + 4 / 12, "feet"),
  17471. weight: math.unit(600, "lb"),
  17472. name: "Laying",
  17473. image: {
  17474. source: "./media/characters/sheila/laying.svg",
  17475. extra: 1333 / 1265,
  17476. bottom: 0.16
  17477. }
  17478. },
  17479. },
  17480. [
  17481. {
  17482. name: "Normal",
  17483. height: math.unit(4 + 4 / 12, "feet"),
  17484. default: true
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17490. {
  17491. front: {
  17492. height: math.unit(6, "feet"),
  17493. weight: math.unit(190, "lb"),
  17494. name: "Front",
  17495. image: {
  17496. source: "./media/characters/sax/front.svg",
  17497. extra: 1187 / 973,
  17498. bottom: 0.042
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Micro",
  17505. height: math.unit(4, "inches"),
  17506. default: true
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(6, "feet"),
  17515. weight: math.unit(150, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/pandora/front.svg",
  17519. extra: 2720 / 2556,
  17520. bottom: 0.015
  17521. }
  17522. },
  17523. back: {
  17524. height: math.unit(6, "feet"),
  17525. weight: math.unit(150, "lb"),
  17526. name: "Back",
  17527. image: {
  17528. source: "./media/characters/pandora/back.svg",
  17529. extra: 2720 / 2556,
  17530. bottom: 0.01
  17531. }
  17532. },
  17533. beans: {
  17534. height: math.unit(6 / 8, "feet"),
  17535. name: "Beans",
  17536. image: {
  17537. source: "./media/characters/pandora/beans.svg"
  17538. }
  17539. },
  17540. collar: {
  17541. height: math.unit(0.31, "feet"),
  17542. name: "Collar",
  17543. image: {
  17544. source: "./media/characters/pandora/collar.svg"
  17545. }
  17546. },
  17547. skirt: {
  17548. height: math.unit(6, "feet"),
  17549. weight: math.unit(150, "lb"),
  17550. name: "Skirt",
  17551. image: {
  17552. source: "./media/characters/pandora/skirt.svg",
  17553. extra: 1622 / 1525,
  17554. bottom: 0.015
  17555. }
  17556. },
  17557. hoodie: {
  17558. height: math.unit(6, "feet"),
  17559. weight: math.unit(150, "lb"),
  17560. name: "Hoodie",
  17561. image: {
  17562. source: "./media/characters/pandora/hoodie.svg",
  17563. extra: 1622 / 1525,
  17564. bottom: 0.015
  17565. }
  17566. },
  17567. casual: {
  17568. height: math.unit(6, "feet"),
  17569. weight: math.unit(150, "lb"),
  17570. name: "Casual",
  17571. image: {
  17572. source: "./media/characters/pandora/casual.svg",
  17573. extra: 1622 / 1525,
  17574. bottom: 0.015
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Normal",
  17581. height: math.unit(6, "feet")
  17582. },
  17583. {
  17584. name: "Big Steppy",
  17585. height: math.unit(1, "km"),
  17586. default: true
  17587. },
  17588. {
  17589. name: "Galactic Steppy",
  17590. height: math.unit(2, "gigameters")
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17596. {
  17597. side: {
  17598. height: math.unit(10, "feet"),
  17599. weight: math.unit(800, "kg"),
  17600. name: "Side",
  17601. image: {
  17602. source: "./media/characters/venio-darcony/side.svg",
  17603. extra: 1373 / 1003,
  17604. bottom: 0.037
  17605. }
  17606. },
  17607. front: {
  17608. height: math.unit(19, "feet"),
  17609. weight: math.unit(800, "kg"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/venio-darcony/front.svg"
  17613. }
  17614. },
  17615. back: {
  17616. height: math.unit(19, "feet"),
  17617. weight: math.unit(800, "kg"),
  17618. name: "Back",
  17619. image: {
  17620. source: "./media/characters/venio-darcony/back.svg"
  17621. }
  17622. },
  17623. sideNsfw: {
  17624. height: math.unit(10, "feet"),
  17625. weight: math.unit(800, "kg"),
  17626. name: "Side (NSFW)",
  17627. image: {
  17628. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17629. extra: 1373 / 1003,
  17630. bottom: 0.037
  17631. }
  17632. },
  17633. frontNsfw: {
  17634. height: math.unit(19, "feet"),
  17635. weight: math.unit(800, "kg"),
  17636. name: "Front (NSFW)",
  17637. image: {
  17638. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17639. }
  17640. },
  17641. backNsfw: {
  17642. height: math.unit(19, "feet"),
  17643. weight: math.unit(800, "kg"),
  17644. name: "Back (NSFW)",
  17645. image: {
  17646. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17647. }
  17648. },
  17649. sideArmored: {
  17650. height: math.unit(10, "feet"),
  17651. weight: math.unit(800, "kg"),
  17652. name: "Side (Armored)",
  17653. image: {
  17654. source: "./media/characters/venio-darcony/side-armored.svg",
  17655. extra: 1373 / 1003,
  17656. bottom: 0.037
  17657. }
  17658. },
  17659. frontArmored: {
  17660. height: math.unit(19, "feet"),
  17661. weight: math.unit(900, "kg"),
  17662. name: "Front (Armored)",
  17663. image: {
  17664. source: "./media/characters/venio-darcony/front-armored.svg"
  17665. }
  17666. },
  17667. backArmored: {
  17668. height: math.unit(19, "feet"),
  17669. weight: math.unit(900, "kg"),
  17670. name: "Back (Armored)",
  17671. image: {
  17672. source: "./media/characters/venio-darcony/back-armored.svg"
  17673. }
  17674. },
  17675. sword: {
  17676. height: math.unit(10, "feet"),
  17677. weight: math.unit(50, "lb"),
  17678. name: "Sword",
  17679. image: {
  17680. source: "./media/characters/venio-darcony/sword.svg"
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Normal",
  17687. height: math.unit(10, "feet")
  17688. },
  17689. {
  17690. name: "Macro",
  17691. height: math.unit(130, "feet"),
  17692. default: true
  17693. },
  17694. {
  17695. name: "Macro+",
  17696. height: math.unit(240, "feet")
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17702. {
  17703. front: {
  17704. height: math.unit(6, "feet"),
  17705. weight: math.unit(150, "lb"),
  17706. name: "Front",
  17707. image: {
  17708. source: "./media/characters/veski/front.svg",
  17709. extra: 1299 / 1225,
  17710. bottom: 0.04
  17711. }
  17712. },
  17713. back: {
  17714. height: math.unit(6, "feet"),
  17715. weight: math.unit(150, "lb"),
  17716. name: "Back",
  17717. image: {
  17718. source: "./media/characters/veski/back.svg",
  17719. extra: 1299 / 1225,
  17720. bottom: 0.008
  17721. }
  17722. },
  17723. maw: {
  17724. height: math.unit(1.5 * 1.21, "feet"),
  17725. name: "Maw",
  17726. image: {
  17727. source: "./media/characters/veski/maw.svg"
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Macro",
  17734. height: math.unit(2, "km"),
  17735. default: true
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(5 + 7 / 12, "feet"),
  17744. name: "Front",
  17745. image: {
  17746. source: "./media/characters/isabelle/front.svg",
  17747. extra: 2130 / 1976,
  17748. bottom: 0.05
  17749. }
  17750. },
  17751. },
  17752. [
  17753. {
  17754. name: "Supermicro",
  17755. height: math.unit(10, "micrometers")
  17756. },
  17757. {
  17758. name: "Micro",
  17759. height: math.unit(1, "inch")
  17760. },
  17761. {
  17762. name: "Tiny",
  17763. height: math.unit(5, "inches")
  17764. },
  17765. {
  17766. name: "Standard",
  17767. height: math.unit(5 + 7 / 12, "inches")
  17768. },
  17769. {
  17770. name: "Macro",
  17771. height: math.unit(80, "meters"),
  17772. default: true
  17773. },
  17774. {
  17775. name: "Megamacro",
  17776. height: math.unit(250, "meters")
  17777. },
  17778. {
  17779. name: "Gigamacro",
  17780. height: math.unit(5, "km")
  17781. },
  17782. {
  17783. name: "Cosmic",
  17784. height: math.unit(2.5e6, "miles")
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17790. {
  17791. front: {
  17792. height: math.unit(6, "feet"),
  17793. weight: math.unit(150, "lb"),
  17794. name: "Front",
  17795. image: {
  17796. source: "./media/characters/hanzo/front.svg",
  17797. extra: 374 / 344,
  17798. bottom: 0.02
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(8, "feet"),
  17806. default: true
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17812. {
  17813. front: {
  17814. height: math.unit(7, "feet"),
  17815. weight: math.unit(130, "lb"),
  17816. name: "Front",
  17817. image: {
  17818. source: "./media/characters/anna/front.svg",
  17819. extra: 169 / 145,
  17820. bottom: 0.06
  17821. }
  17822. },
  17823. full: {
  17824. height: math.unit(4.96, "feet"),
  17825. weight: math.unit(220, "lb"),
  17826. name: "Full",
  17827. image: {
  17828. source: "./media/characters/anna/full.svg",
  17829. extra: 138 / 114,
  17830. bottom: 0.15
  17831. }
  17832. },
  17833. tongue: {
  17834. height: math.unit(2.53, "feet"),
  17835. name: "Tongue",
  17836. image: {
  17837. source: "./media/characters/anna/tongue.svg"
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(7, "feet"),
  17845. default: true
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17851. {
  17852. front: {
  17853. height: math.unit(7, "feet"),
  17854. weight: math.unit(150, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/ian-corvid/front.svg",
  17858. extra: 150 / 142,
  17859. bottom: 0.02
  17860. }
  17861. },
  17862. back: {
  17863. height: math.unit(7, "feet"),
  17864. weight: math.unit(150, "lb"),
  17865. name: "Back",
  17866. image: {
  17867. source: "./media/characters/ian-corvid/back.svg",
  17868. extra: 150 / 143,
  17869. bottom: 0.01
  17870. }
  17871. },
  17872. stomping: {
  17873. height: math.unit(7, "feet"),
  17874. weight: math.unit(150, "lb"),
  17875. name: "Stomping",
  17876. image: {
  17877. source: "./media/characters/ian-corvid/stomping.svg",
  17878. extra: 76 / 72
  17879. }
  17880. },
  17881. sitting: {
  17882. height: math.unit(7 / 1.8, "feet"),
  17883. weight: math.unit(150, "lb"),
  17884. name: "Sitting",
  17885. image: {
  17886. source: "./media/characters/ian-corvid/sitting.svg",
  17887. extra: 1400 / 1269,
  17888. bottom: 0.15
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Tiny Microw",
  17895. height: math.unit(1, "inch")
  17896. },
  17897. {
  17898. name: "Microw",
  17899. height: math.unit(6, "inches")
  17900. },
  17901. {
  17902. name: "Crow",
  17903. height: math.unit(7 + 1 / 12, "feet"),
  17904. default: true
  17905. },
  17906. {
  17907. name: "Macrow",
  17908. height: math.unit(176, "feet")
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17914. {
  17915. front: {
  17916. height: math.unit(5 + 7 / 12, "feet"),
  17917. weight: math.unit(147, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/natalie-kellon/front.svg",
  17921. extra: 1214 / 1141,
  17922. bottom: 0.02
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Micro",
  17929. height: math.unit(1 / 16, "inch")
  17930. },
  17931. {
  17932. name: "Tiny",
  17933. height: math.unit(4, "inches")
  17934. },
  17935. {
  17936. name: "Normal",
  17937. height: math.unit(5 + 7 / 12, "feet"),
  17938. default: true
  17939. },
  17940. {
  17941. name: "Amazon",
  17942. height: math.unit(12, "feet")
  17943. },
  17944. {
  17945. name: "Giantess",
  17946. height: math.unit(160, "meters")
  17947. },
  17948. {
  17949. name: "Titaness",
  17950. height: math.unit(800, "meters")
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17956. {
  17957. front: {
  17958. height: math.unit(6, "feet"),
  17959. weight: math.unit(150, "lb"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/alluria/front.svg",
  17963. extra: 806 / 738,
  17964. bottom: 0.01
  17965. }
  17966. },
  17967. side: {
  17968. height: math.unit(6, "feet"),
  17969. weight: math.unit(150, "lb"),
  17970. name: "Side",
  17971. image: {
  17972. source: "./media/characters/alluria/side.svg",
  17973. extra: 800 / 750,
  17974. }
  17975. },
  17976. back: {
  17977. height: math.unit(6, "feet"),
  17978. weight: math.unit(150, "lb"),
  17979. name: "Back",
  17980. image: {
  17981. source: "./media/characters/alluria/back.svg",
  17982. extra: 806 / 738,
  17983. }
  17984. },
  17985. frontMaid: {
  17986. height: math.unit(6, "feet"),
  17987. weight: math.unit(150, "lb"),
  17988. name: "Front (Maid)",
  17989. image: {
  17990. source: "./media/characters/alluria/front-maid.svg",
  17991. extra: 806 / 738,
  17992. bottom: 0.01
  17993. }
  17994. },
  17995. sideMaid: {
  17996. height: math.unit(6, "feet"),
  17997. weight: math.unit(150, "lb"),
  17998. name: "Side (Maid)",
  17999. image: {
  18000. source: "./media/characters/alluria/side-maid.svg",
  18001. extra: 800 / 750,
  18002. bottom: 0.005
  18003. }
  18004. },
  18005. backMaid: {
  18006. height: math.unit(6, "feet"),
  18007. weight: math.unit(150, "lb"),
  18008. name: "Back (Maid)",
  18009. image: {
  18010. source: "./media/characters/alluria/back-maid.svg",
  18011. extra: 806 / 738,
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Micro",
  18018. height: math.unit(6, "inches"),
  18019. default: true
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18025. {
  18026. front: {
  18027. height: math.unit(6, "feet"),
  18028. weight: math.unit(150, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/kyle/front.svg",
  18032. extra: 1069 / 962,
  18033. bottom: 77.228 / 1727.45
  18034. }
  18035. },
  18036. },
  18037. [
  18038. {
  18039. name: "Macro",
  18040. height: math.unit(150, "feet"),
  18041. default: true
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(6, "feet"),
  18050. weight: math.unit(300, "lb"),
  18051. name: "Front",
  18052. image: {
  18053. source: "./media/characters/duncan/front.svg",
  18054. extra: 1650 / 1482,
  18055. bottom: 0.05
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Macro",
  18062. height: math.unit(100, "feet"),
  18063. default: true
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(5 + 4 / 12, "feet"),
  18072. weight: math.unit(220, "lb"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/memory/front.svg",
  18076. extra: 3641 / 3545,
  18077. bottom: 0.03
  18078. }
  18079. },
  18080. back: {
  18081. height: math.unit(5 + 4 / 12, "feet"),
  18082. weight: math.unit(220, "lb"),
  18083. name: "Back",
  18084. image: {
  18085. source: "./media/characters/memory/back.svg",
  18086. extra: 3641 / 3545,
  18087. bottom: 0.025
  18088. }
  18089. },
  18090. frontSkirt: {
  18091. height: math.unit(5 + 4 / 12, "feet"),
  18092. weight: math.unit(220, "lb"),
  18093. name: "Front (Skirt)",
  18094. image: {
  18095. source: "./media/characters/memory/front-skirt.svg",
  18096. extra: 3641 / 3545,
  18097. bottom: 0.03
  18098. }
  18099. },
  18100. frontDress: {
  18101. height: math.unit(5 + 4 / 12, "feet"),
  18102. weight: math.unit(220, "lb"),
  18103. name: "Front (Dress)",
  18104. image: {
  18105. source: "./media/characters/memory/front-dress.svg",
  18106. extra: 3641 / 3545,
  18107. bottom: 0.03
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Micro",
  18114. height: math.unit(6, "inches"),
  18115. default: true
  18116. },
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(5 + 4 / 12, "feet")
  18120. },
  18121. ]
  18122. ))
  18123. characterMakers.push(() => makeCharacter(
  18124. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18125. {
  18126. front: {
  18127. height: math.unit(4 + 11 / 12, "feet"),
  18128. weight: math.unit(100, "lb"),
  18129. name: "Front",
  18130. image: {
  18131. source: "./media/characters/luno/front.svg",
  18132. extra: 1535 / 1487,
  18133. bottom: 0.03
  18134. }
  18135. },
  18136. },
  18137. [
  18138. {
  18139. name: "Micro",
  18140. height: math.unit(3, "inches")
  18141. },
  18142. {
  18143. name: "Normal",
  18144. height: math.unit(4 + 11 / 12, "feet"),
  18145. default: true
  18146. },
  18147. {
  18148. name: "Macro",
  18149. height: math.unit(300, "feet")
  18150. },
  18151. {
  18152. name: "Megamacro",
  18153. height: math.unit(700, "miles")
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18159. {
  18160. front: {
  18161. height: math.unit(6 + 2 / 12, "feet"),
  18162. weight: math.unit(170, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/jamesy/front.svg",
  18166. extra: 440 / 382,
  18167. bottom: 0.005
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Micro",
  18174. height: math.unit(3, "inches")
  18175. },
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(6 + 2 / 12, "feet"),
  18179. default: true
  18180. },
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(300, "feet")
  18184. },
  18185. {
  18186. name: "Megamacro",
  18187. height: math.unit(700, "miles")
  18188. },
  18189. ]
  18190. ))
  18191. characterMakers.push(() => makeCharacter(
  18192. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18193. {
  18194. front: {
  18195. height: math.unit(6, "feet"),
  18196. weight: math.unit(160, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/mark/front.svg",
  18200. extra: 3300 / 3100,
  18201. bottom: 136.42 / 3440.47
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Macro",
  18208. height: math.unit(120, "meters")
  18209. },
  18210. {
  18211. name: "Bigger Macro",
  18212. height: math.unit(350, "meters")
  18213. },
  18214. {
  18215. name: "Megamacro",
  18216. height: math.unit(8, "km"),
  18217. default: true
  18218. },
  18219. {
  18220. name: "Continental",
  18221. height: math.unit(4550, "km")
  18222. },
  18223. {
  18224. name: "Planetary",
  18225. height: math.unit(65000, "km")
  18226. },
  18227. ]
  18228. ))
  18229. characterMakers.push(() => makeCharacter(
  18230. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18231. {
  18232. front: {
  18233. height: math.unit(6, "feet"),
  18234. weight: math.unit(400, "lb"),
  18235. name: "Front",
  18236. image: {
  18237. source: "./media/characters/mac/front.svg",
  18238. extra: 1048 / 987.7,
  18239. bottom: 60 / 1107.6,
  18240. }
  18241. },
  18242. },
  18243. [
  18244. {
  18245. name: "Macro",
  18246. height: math.unit(500, "feet"),
  18247. default: true
  18248. },
  18249. ]
  18250. ))
  18251. characterMakers.push(() => makeCharacter(
  18252. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18253. {
  18254. front: {
  18255. height: math.unit(5 + 2 / 12, "feet"),
  18256. weight: math.unit(190, "lb"),
  18257. name: "Front",
  18258. image: {
  18259. source: "./media/characters/bari/front.svg",
  18260. extra: 3156 / 2880,
  18261. bottom: 0.03
  18262. }
  18263. },
  18264. back: {
  18265. height: math.unit(5 + 2 / 12, "feet"),
  18266. weight: math.unit(190, "lb"),
  18267. name: "Back",
  18268. image: {
  18269. source: "./media/characters/bari/back.svg",
  18270. extra: 3260 / 2834,
  18271. bottom: 0.025
  18272. }
  18273. },
  18274. frontPlush: {
  18275. height: math.unit(5 + 2 / 12, "feet"),
  18276. weight: math.unit(190, "lb"),
  18277. name: "Front (Plush)",
  18278. image: {
  18279. source: "./media/characters/bari/front-plush.svg",
  18280. extra: 1112 / 1061,
  18281. bottom: 0.002
  18282. }
  18283. },
  18284. },
  18285. [
  18286. {
  18287. name: "Micro",
  18288. height: math.unit(3, "inches")
  18289. },
  18290. {
  18291. name: "Normal",
  18292. height: math.unit(5 + 2 / 12, "feet"),
  18293. default: true
  18294. },
  18295. {
  18296. name: "Macro",
  18297. height: math.unit(20, "feet")
  18298. },
  18299. ]
  18300. ))
  18301. characterMakers.push(() => makeCharacter(
  18302. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18303. {
  18304. front: {
  18305. height: math.unit(6 + 1 / 12, "feet"),
  18306. weight: math.unit(275, "lb"),
  18307. name: "Front",
  18308. image: {
  18309. source: "./media/characters/hunter-misha-raven/front.svg"
  18310. }
  18311. },
  18312. },
  18313. [
  18314. {
  18315. name: "Mortal",
  18316. height: math.unit(6 + 1 / 12, "feet")
  18317. },
  18318. {
  18319. name: "Divine",
  18320. height: math.unit(1.12134e34, "parsecs"),
  18321. default: true
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18327. {
  18328. front: {
  18329. height: math.unit(6 + 3 / 12, "feet"),
  18330. weight: math.unit(220, "lb"),
  18331. name: "Front",
  18332. image: {
  18333. source: "./media/characters/max-calore/front.svg",
  18334. extra: 1700 / 1648,
  18335. bottom: 0.01
  18336. }
  18337. },
  18338. back: {
  18339. height: math.unit(6 + 3 / 12, "feet"),
  18340. weight: math.unit(220, "lb"),
  18341. name: "Back",
  18342. image: {
  18343. source: "./media/characters/max-calore/back.svg",
  18344. extra: 1700 / 1648,
  18345. bottom: 0.01
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Normal",
  18352. height: math.unit(6 + 3 / 12, "feet"),
  18353. default: true
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18359. {
  18360. side: {
  18361. height: math.unit(2 + 8 / 12, "feet"),
  18362. weight: math.unit(99, "lb"),
  18363. name: "Side",
  18364. image: {
  18365. source: "./media/characters/aspen/side.svg",
  18366. extra: 152 / 138,
  18367. bottom: 0.032
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(2 + 8 / 12, "feet"),
  18375. default: true
  18376. },
  18377. ]
  18378. ))
  18379. characterMakers.push(() => makeCharacter(
  18380. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18381. {
  18382. side: {
  18383. height: math.unit(3 + 2 / 12, "feet"),
  18384. weight: math.unit(224, "lb"),
  18385. name: "Side",
  18386. image: {
  18387. source: "./media/characters/sheila-feral-wolf/side.svg",
  18388. extra: 179 / 166,
  18389. bottom: 0.03
  18390. }
  18391. },
  18392. },
  18393. [
  18394. {
  18395. name: "Normal",
  18396. height: math.unit(3 + 2 / 12, "feet"),
  18397. default: true
  18398. },
  18399. ]
  18400. ))
  18401. characterMakers.push(() => makeCharacter(
  18402. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18403. {
  18404. side: {
  18405. height: math.unit(1 + 9 / 12, "feet"),
  18406. weight: math.unit(38, "lb"),
  18407. name: "Side",
  18408. image: {
  18409. source: "./media/characters/michelle/side.svg",
  18410. extra: 147 / 136.7,
  18411. bottom: 0.03
  18412. }
  18413. },
  18414. },
  18415. [
  18416. {
  18417. name: "Normal",
  18418. height: math.unit(1 + 9 / 12, "feet"),
  18419. default: true
  18420. },
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18425. {
  18426. front: {
  18427. height: math.unit(1.54, "feet"),
  18428. weight: math.unit(50, "lb"),
  18429. name: "Front",
  18430. image: {
  18431. source: "./media/characters/nino/front.svg"
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(1.54, "feet"),
  18439. default: true
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18445. {
  18446. front: {
  18447. height: math.unit(1.49, "feet"),
  18448. weight: math.unit(45, "lb"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/viola/front.svg"
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(1.49, "feet"),
  18459. default: true
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18465. {
  18466. front: {
  18467. height: math.unit(6 + 5 / 12, "feet"),
  18468. weight: math.unit(580, "lb"),
  18469. name: "Front",
  18470. image: {
  18471. source: "./media/characters/atlas/front.svg",
  18472. extra: 298.5 / 290,
  18473. bottom: 0.015
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Normal",
  18480. height: math.unit(6 + 5 / 12, "feet"),
  18481. default: true
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18487. {
  18488. side: {
  18489. height: math.unit(15.6, "inches"),
  18490. weight: math.unit(10, "lb"),
  18491. name: "Side",
  18492. image: {
  18493. source: "./media/characters/davy/side.svg",
  18494. extra: 200 / 170,
  18495. bottom: 0.01
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Normal",
  18502. height: math.unit(15.6, "inches"),
  18503. default: true
  18504. },
  18505. ]
  18506. ))
  18507. characterMakers.push(() => makeCharacter(
  18508. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18509. {
  18510. side: {
  18511. height: math.unit(4 + 8 / 12, "feet"),
  18512. weight: math.unit(166, "lb"),
  18513. name: "Side",
  18514. image: {
  18515. source: "./media/characters/fiona/side.svg",
  18516. extra: 232 / 220,
  18517. bottom: 0.03
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(4 + 8 / 12, "feet"),
  18525. default: true
  18526. },
  18527. ]
  18528. ))
  18529. characterMakers.push(() => makeCharacter(
  18530. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18531. {
  18532. front: {
  18533. height: math.unit(26, "inches"),
  18534. weight: math.unit(35, "lb"),
  18535. name: "Front",
  18536. image: {
  18537. source: "./media/characters/lyla/front.svg",
  18538. bottom: 0.1
  18539. }
  18540. },
  18541. },
  18542. [
  18543. {
  18544. name: "Normal",
  18545. height: math.unit(3, "feet"),
  18546. default: true
  18547. },
  18548. ]
  18549. ))
  18550. characterMakers.push(() => makeCharacter(
  18551. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18552. {
  18553. side: {
  18554. height: math.unit(1.8, "feet"),
  18555. weight: math.unit(44, "lb"),
  18556. name: "Side",
  18557. image: {
  18558. source: "./media/characters/perseus/side.svg",
  18559. bottom: 0.21
  18560. }
  18561. },
  18562. },
  18563. [
  18564. {
  18565. name: "Normal",
  18566. height: math.unit(1.8, "feet"),
  18567. default: true
  18568. },
  18569. ]
  18570. ))
  18571. characterMakers.push(() => makeCharacter(
  18572. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18573. {
  18574. side: {
  18575. height: math.unit(4 + 2 / 12, "feet"),
  18576. weight: math.unit(20, "lb"),
  18577. name: "Side",
  18578. image: {
  18579. source: "./media/characters/remus/side.svg"
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Normal",
  18586. height: math.unit(4 + 2 / 12, "feet"),
  18587. default: true
  18588. },
  18589. ]
  18590. ))
  18591. characterMakers.push(() => makeCharacter(
  18592. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18593. {
  18594. front: {
  18595. height: math.unit(4 + 11 / 12, "feet"),
  18596. weight: math.unit(114, "lb"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/raf/front.svg",
  18600. extra: 1504/1339,
  18601. bottom: 26/1530
  18602. }
  18603. },
  18604. side: {
  18605. height: math.unit(4 + 11 / 12, "feet"),
  18606. weight: math.unit(114, "lb"),
  18607. name: "Side",
  18608. image: {
  18609. source: "./media/characters/raf/side.svg",
  18610. extra: 1466/1316,
  18611. bottom: 29/1495
  18612. }
  18613. },
  18614. paw: {
  18615. height: math.unit(1.45, "feet"),
  18616. name: "Paw",
  18617. image: {
  18618. source: "./media/characters/raf/paw.svg"
  18619. },
  18620. extraAttributes: {
  18621. "toeSize": {
  18622. name: "Toe Size",
  18623. power: 2,
  18624. type: "area",
  18625. base: math.unit(0.004, "m^2")
  18626. },
  18627. "padSize": {
  18628. name: "Pad Size",
  18629. power: 2,
  18630. type: "area",
  18631. base: math.unit(0.04, "m^2")
  18632. },
  18633. "footSize": {
  18634. name: "Foot Size",
  18635. power: 2,
  18636. type: "area",
  18637. base: math.unit(0.08, "m^2")
  18638. },
  18639. }
  18640. },
  18641. },
  18642. [
  18643. {
  18644. name: "Micro",
  18645. height: math.unit(2, "inches")
  18646. },
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(4 + 11 / 12, "feet"),
  18650. default: true
  18651. },
  18652. {
  18653. name: "Macro",
  18654. height: math.unit(70, "feet")
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18660. {
  18661. front: {
  18662. height: math.unit(1.5, "meters"),
  18663. weight: math.unit(68, "kg"),
  18664. name: "Front",
  18665. image: {
  18666. source: "./media/characters/liam-einarr/front.svg",
  18667. extra: 2822 / 2666
  18668. }
  18669. },
  18670. back: {
  18671. height: math.unit(1.5, "meters"),
  18672. weight: math.unit(68, "kg"),
  18673. name: "Back",
  18674. image: {
  18675. source: "./media/characters/liam-einarr/back.svg",
  18676. extra: 2822 / 2666,
  18677. bottom: 0.015
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(1.5, "meters"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Macro",
  18689. height: math.unit(150, "meters")
  18690. },
  18691. {
  18692. name: "Megamacro",
  18693. height: math.unit(35, "km")
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(6, "feet"),
  18702. weight: math.unit(75, "kg"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/linda/front.svg",
  18706. extra: 930 / 874,
  18707. bottom: 0.004
  18708. }
  18709. },
  18710. },
  18711. [
  18712. {
  18713. name: "Normal",
  18714. height: math.unit(6, "feet"),
  18715. default: true
  18716. },
  18717. ]
  18718. ))
  18719. characterMakers.push(() => makeCharacter(
  18720. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18721. {
  18722. front: {
  18723. height: math.unit(6 + 8 / 12, "feet"),
  18724. weight: math.unit(220, "lb"),
  18725. name: "Front",
  18726. image: {
  18727. source: "./media/characters/caylex/front.svg",
  18728. extra: 821 / 772,
  18729. bottom: 0.07
  18730. }
  18731. },
  18732. back: {
  18733. height: math.unit(6 + 8 / 12, "feet"),
  18734. weight: math.unit(220, "lb"),
  18735. name: "Back",
  18736. image: {
  18737. source: "./media/characters/caylex/back.svg",
  18738. extra: 821 / 772,
  18739. bottom: 0.022
  18740. }
  18741. },
  18742. hand: {
  18743. height: math.unit(1.25, "feet"),
  18744. name: "Hand",
  18745. image: {
  18746. source: "./media/characters/caylex/hand.svg"
  18747. }
  18748. },
  18749. foot: {
  18750. height: math.unit(1.6, "feet"),
  18751. name: "Foot",
  18752. image: {
  18753. source: "./media/characters/caylex/foot.svg"
  18754. }
  18755. },
  18756. armored: {
  18757. height: math.unit(6 + 8 / 12, "feet"),
  18758. weight: math.unit(250, "lb"),
  18759. name: "Armored",
  18760. image: {
  18761. source: "./media/characters/caylex/armored.svg",
  18762. extra: 1420 / 1310,
  18763. bottom: 0.045
  18764. }
  18765. },
  18766. },
  18767. [
  18768. {
  18769. name: "Normal",
  18770. height: math.unit(6 + 8 / 12, "feet"),
  18771. default: true
  18772. },
  18773. {
  18774. name: "Normal+",
  18775. height: math.unit(12, "feet")
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(7 + 6 / 12, "feet"),
  18784. weight: math.unit(288, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/alana/front.svg",
  18788. extra: 679 / 653,
  18789. bottom: 22.5 / 701
  18790. }
  18791. },
  18792. },
  18793. [
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(7 + 6 / 12, "feet")
  18797. },
  18798. {
  18799. name: "Large",
  18800. height: math.unit(50, "feet")
  18801. },
  18802. {
  18803. name: "Macro",
  18804. height: math.unit(100, "feet"),
  18805. default: true
  18806. },
  18807. {
  18808. name: "Macro+",
  18809. height: math.unit(200, "feet")
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18815. {
  18816. front: {
  18817. height: math.unit(6 + 1 / 12, "feet"),
  18818. weight: math.unit(210, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/hasani/front.svg",
  18822. extra: 244 / 232,
  18823. bottom: 0.01
  18824. }
  18825. },
  18826. back: {
  18827. height: math.unit(6 + 1 / 12, "feet"),
  18828. weight: math.unit(210, "lb"),
  18829. name: "Back",
  18830. image: {
  18831. source: "./media/characters/hasani/back.svg",
  18832. extra: 244 / 232,
  18833. bottom: 0.01
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(6 + 1 / 12, "feet")
  18841. },
  18842. {
  18843. name: "Macro",
  18844. height: math.unit(175, "feet"),
  18845. default: true
  18846. },
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18851. {
  18852. front: {
  18853. height: math.unit(1.82, "meters"),
  18854. weight: math.unit(140, "lb"),
  18855. name: "Front",
  18856. image: {
  18857. source: "./media/characters/nita/front.svg",
  18858. extra: 2473 / 2363,
  18859. bottom: 0.01
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(1.82, "m")
  18867. },
  18868. {
  18869. name: "Macro",
  18870. height: math.unit(300, "m")
  18871. },
  18872. {
  18873. name: "Mistake Canon",
  18874. height: math.unit(0.5, "miles"),
  18875. default: true
  18876. },
  18877. {
  18878. name: "Big Mistake",
  18879. height: math.unit(13, "miles")
  18880. },
  18881. {
  18882. name: "Playing God",
  18883. height: math.unit(2450, "miles")
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18889. {
  18890. front: {
  18891. height: math.unit(4, "feet"),
  18892. weight: math.unit(120, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/shiriko/front.svg",
  18896. extra: 970/934,
  18897. bottom: 5/975
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Normal",
  18904. height: math.unit(4, "feet"),
  18905. default: true
  18906. },
  18907. ]
  18908. ))
  18909. characterMakers.push(() => makeCharacter(
  18910. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18911. {
  18912. front: {
  18913. height: math.unit(6, "feet"),
  18914. name: "front",
  18915. image: {
  18916. source: "./media/characters/deja/front.svg",
  18917. extra: 926 / 840,
  18918. bottom: 0.07
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Planck Length",
  18925. height: math.unit(1.6e-35, "meters")
  18926. },
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(30.48, "meters"),
  18930. default: true
  18931. },
  18932. {
  18933. name: "Universal",
  18934. height: math.unit(8.8e26, "meters")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18940. {
  18941. side: {
  18942. height: math.unit(8, "feet"),
  18943. weight: math.unit(6300, "lb"),
  18944. name: "Side",
  18945. image: {
  18946. source: "./media/characters/anima/side.svg",
  18947. bottom: 0.035
  18948. }
  18949. },
  18950. },
  18951. [
  18952. {
  18953. name: "Normal",
  18954. height: math.unit(8, "feet"),
  18955. default: true
  18956. },
  18957. ]
  18958. ))
  18959. characterMakers.push(() => makeCharacter(
  18960. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18961. {
  18962. front: {
  18963. height: math.unit(8, "feet"),
  18964. weight: math.unit(350, "lb"),
  18965. name: "Front",
  18966. image: {
  18967. source: "./media/characters/bianca/front.svg",
  18968. extra: 234 / 225,
  18969. bottom: 0.03
  18970. }
  18971. },
  18972. },
  18973. [
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(8, "feet"),
  18977. default: true
  18978. },
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18983. {
  18984. front: {
  18985. height: math.unit(11 + 5/12, "feet"),
  18986. weight: math.unit(1200, "lb"),
  18987. name: "Front",
  18988. image: {
  18989. source: "./media/characters/adinia/front.svg",
  18990. extra: 1767/1641,
  18991. bottom: 44/1811
  18992. },
  18993. extraAttributes: {
  18994. "energyIntake": {
  18995. name: "Energy Intake",
  18996. power: 3,
  18997. type: "energy",
  18998. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18999. },
  19000. }
  19001. },
  19002. back: {
  19003. height: math.unit(11 + 5/12, "feet"),
  19004. weight: math.unit(1200, "lb"),
  19005. name: "Back",
  19006. image: {
  19007. source: "./media/characters/adinia/back.svg",
  19008. extra: 1834/1684,
  19009. bottom: 14/1848
  19010. },
  19011. extraAttributes: {
  19012. "energyIntake": {
  19013. name: "Energy Intake",
  19014. power: 3,
  19015. type: "energy",
  19016. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19017. },
  19018. }
  19019. },
  19020. maw: {
  19021. height: math.unit(3.79, "feet"),
  19022. name: "Maw",
  19023. image: {
  19024. source: "./media/characters/adinia/maw.svg"
  19025. }
  19026. },
  19027. rump: {
  19028. height: math.unit(4.6, "feet"),
  19029. name: "Rump",
  19030. image: {
  19031. source: "./media/characters/adinia/rump.svg"
  19032. }
  19033. },
  19034. },
  19035. [
  19036. {
  19037. name: "Normal",
  19038. height: math.unit(11 + 5 / 12, "feet"),
  19039. default: true
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19045. {
  19046. front: {
  19047. height: math.unit(3, "meters"),
  19048. weight: math.unit(200, "kg"),
  19049. name: "Front",
  19050. image: {
  19051. source: "./media/characters/lykasa/front.svg",
  19052. extra: 1076 / 976,
  19053. bottom: 0.06
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(3, "meters")
  19061. },
  19062. {
  19063. name: "Kaiju",
  19064. height: math.unit(120, "meters"),
  19065. default: true
  19066. },
  19067. {
  19068. name: "Mega Kaiju",
  19069. height: math.unit(240, "km")
  19070. },
  19071. {
  19072. name: "Giga Kaiju",
  19073. height: math.unit(400, "megameters")
  19074. },
  19075. {
  19076. name: "Tera Kaiju",
  19077. height: math.unit(800, "gigameters")
  19078. },
  19079. {
  19080. name: "Kaiju Dragon Goddess",
  19081. height: math.unit(26, "zettaparsecs")
  19082. },
  19083. ]
  19084. ))
  19085. characterMakers.push(() => makeCharacter(
  19086. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19087. {
  19088. side: {
  19089. height: math.unit(283 / 124 * 6, "feet"),
  19090. weight: math.unit(35000, "lb"),
  19091. name: "Side",
  19092. image: {
  19093. source: "./media/characters/malfaren/side.svg",
  19094. extra: 1310/529,
  19095. bottom: 24/1334
  19096. }
  19097. },
  19098. front: {
  19099. height: math.unit(22.36, "feet"),
  19100. weight: math.unit(35000, "lb"),
  19101. name: "Front",
  19102. image: {
  19103. source: "./media/characters/malfaren/front.svg",
  19104. extra: 1237/1115,
  19105. bottom: 32/1269
  19106. }
  19107. },
  19108. maw: {
  19109. height: math.unit(6.9, "feet"),
  19110. name: "Maw",
  19111. image: {
  19112. source: "./media/characters/malfaren/maw.svg"
  19113. }
  19114. },
  19115. dick: {
  19116. height: math.unit(6.19, "feet"),
  19117. name: "Dick",
  19118. image: {
  19119. source: "./media/characters/malfaren/dick.svg"
  19120. }
  19121. },
  19122. eye: {
  19123. height: math.unit(0.69, "feet"),
  19124. name: "Eye",
  19125. image: {
  19126. source: "./media/characters/malfaren/eye.svg"
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Big",
  19133. height: math.unit(283 / 162 * 6, "feet"),
  19134. },
  19135. {
  19136. name: "Bigger",
  19137. height: math.unit(283 / 124 * 6, "feet")
  19138. },
  19139. {
  19140. name: "Massive",
  19141. height: math.unit(283 / 92 * 6, "feet"),
  19142. default: true
  19143. },
  19144. {
  19145. name: "👀💦",
  19146. height: math.unit(283 / 73 * 6, "feet"),
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19152. {
  19153. front: {
  19154. height: math.unit(1.7, "m"),
  19155. weight: math.unit(70, "kg"),
  19156. name: "Front",
  19157. image: {
  19158. source: "./media/characters/kernel/front.svg",
  19159. extra: 222 / 210,
  19160. bottom: 0.007
  19161. }
  19162. },
  19163. },
  19164. [
  19165. {
  19166. name: "Nano",
  19167. height: math.unit(17, "micrometers")
  19168. },
  19169. {
  19170. name: "Micro",
  19171. height: math.unit(1.7, "mm")
  19172. },
  19173. {
  19174. name: "Small",
  19175. height: math.unit(1.7, "cm")
  19176. },
  19177. {
  19178. name: "Normal",
  19179. height: math.unit(1.7, "m"),
  19180. default: true
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(1.75, "meters"),
  19189. weight: math.unit(65, "kg"),
  19190. name: "Front",
  19191. image: {
  19192. source: "./media/characters/jayne-folest/front.svg",
  19193. extra: 2115 / 2007,
  19194. bottom: 0.02
  19195. }
  19196. },
  19197. back: {
  19198. height: math.unit(1.75, "meters"),
  19199. weight: math.unit(65, "kg"),
  19200. name: "Back",
  19201. image: {
  19202. source: "./media/characters/jayne-folest/back.svg",
  19203. extra: 2115 / 2007,
  19204. bottom: 0.005
  19205. }
  19206. },
  19207. frontClothed: {
  19208. height: math.unit(1.75, "meters"),
  19209. weight: math.unit(65, "kg"),
  19210. name: "Front (Clothed)",
  19211. image: {
  19212. source: "./media/characters/jayne-folest/front-clothed.svg",
  19213. extra: 2115 / 2007,
  19214. bottom: 0.035
  19215. }
  19216. },
  19217. hand: {
  19218. height: math.unit(1 / 1.260, "feet"),
  19219. name: "Hand",
  19220. image: {
  19221. source: "./media/characters/jayne-folest/hand.svg"
  19222. }
  19223. },
  19224. foot: {
  19225. height: math.unit(1 / 0.918, "feet"),
  19226. name: "Foot",
  19227. image: {
  19228. source: "./media/characters/jayne-folest/foot.svg"
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Micro",
  19235. height: math.unit(4, "cm")
  19236. },
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(1.75, "meters")
  19240. },
  19241. {
  19242. name: "Macro",
  19243. height: math.unit(47.5, "meters"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(180, "cm"),
  19253. weight: math.unit(70, "kg"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/algier/front.svg",
  19257. extra: 596 / 572,
  19258. bottom: 0.04
  19259. }
  19260. },
  19261. back: {
  19262. height: math.unit(180, "cm"),
  19263. weight: math.unit(70, "kg"),
  19264. name: "Back",
  19265. image: {
  19266. source: "./media/characters/algier/back.svg",
  19267. extra: 596 / 572,
  19268. bottom: 0.025
  19269. }
  19270. },
  19271. frontdressed: {
  19272. height: math.unit(180, "cm"),
  19273. weight: math.unit(150, "kg"),
  19274. name: "Front-dressed",
  19275. image: {
  19276. source: "./media/characters/algier/front-dressed.svg",
  19277. extra: 596 / 572,
  19278. bottom: 0.038
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Micro",
  19285. height: math.unit(5, "cm")
  19286. },
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(180, "cm"),
  19290. default: true
  19291. },
  19292. {
  19293. name: "Macro",
  19294. height: math.unit(64, "m")
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19300. {
  19301. upright: {
  19302. height: math.unit(7, "feet"),
  19303. weight: math.unit(300, "lb"),
  19304. name: "Upright",
  19305. image: {
  19306. source: "./media/characters/pretzel/upright.svg",
  19307. extra: 534 / 522,
  19308. bottom: 0.065
  19309. }
  19310. },
  19311. sprawling: {
  19312. height: math.unit(3.75, "feet"),
  19313. weight: math.unit(300, "lb"),
  19314. name: "Sprawling",
  19315. image: {
  19316. source: "./media/characters/pretzel/sprawling.svg",
  19317. extra: 314 / 281,
  19318. bottom: 0.1
  19319. }
  19320. },
  19321. tongue: {
  19322. height: math.unit(2, "feet"),
  19323. name: "Tongue",
  19324. image: {
  19325. source: "./media/characters/pretzel/tongue.svg"
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(7, "feet"),
  19333. default: true
  19334. },
  19335. {
  19336. name: "Oversized",
  19337. height: math.unit(15, "feet")
  19338. },
  19339. {
  19340. name: "Huge",
  19341. height: math.unit(30, "feet")
  19342. },
  19343. {
  19344. name: "Macro",
  19345. height: math.unit(250, "feet")
  19346. },
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19351. {
  19352. sideFront: {
  19353. height: math.unit(5 + 2 / 12, "feet"),
  19354. weight: math.unit(120, "lb"),
  19355. name: "Front Side",
  19356. image: {
  19357. source: "./media/characters/roxi/side-front.svg",
  19358. extra: 2924 / 2717,
  19359. bottom: 0.08
  19360. }
  19361. },
  19362. sideBack: {
  19363. height: math.unit(5 + 2 / 12, "feet"),
  19364. weight: math.unit(120, "lb"),
  19365. name: "Back Side",
  19366. image: {
  19367. source: "./media/characters/roxi/side-back.svg",
  19368. extra: 2904 / 2693,
  19369. bottom: 0.06
  19370. }
  19371. },
  19372. front: {
  19373. height: math.unit(5 + 2 / 12, "feet"),
  19374. weight: math.unit(120, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/roxi/front.svg",
  19378. extra: 2028 / 1907,
  19379. bottom: 0.01
  19380. }
  19381. },
  19382. frontAlt: {
  19383. height: math.unit(5 + 2 / 12, "feet"),
  19384. weight: math.unit(120, "lb"),
  19385. name: "Front (Alt)",
  19386. image: {
  19387. source: "./media/characters/roxi/front-alt.svg",
  19388. extra: 1828 / 1798,
  19389. bottom: 0.01
  19390. }
  19391. },
  19392. sitting: {
  19393. height: math.unit(2.8, "feet"),
  19394. weight: math.unit(120, "lb"),
  19395. name: "Sitting",
  19396. image: {
  19397. source: "./media/characters/roxi/sitting.svg",
  19398. extra: 2660 / 2462,
  19399. bottom: 0.1
  19400. }
  19401. },
  19402. },
  19403. [
  19404. {
  19405. name: "Normal",
  19406. height: math.unit(5 + 2 / 12, "feet"),
  19407. default: true
  19408. },
  19409. ]
  19410. ))
  19411. characterMakers.push(() => makeCharacter(
  19412. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19413. {
  19414. side: {
  19415. height: math.unit(55, "feet"),
  19416. weight: math.unit(153, "tons"),
  19417. name: "Side",
  19418. image: {
  19419. source: "./media/characters/shadow/side.svg",
  19420. extra: 701 / 628,
  19421. bottom: 0.02
  19422. }
  19423. },
  19424. flying: {
  19425. height: math.unit(145, "feet"),
  19426. weight: math.unit(153, "tons"),
  19427. name: "Flying",
  19428. image: {
  19429. source: "./media/characters/shadow/flying.svg"
  19430. }
  19431. },
  19432. },
  19433. [
  19434. {
  19435. name: "Normal",
  19436. height: math.unit(55, "feet"),
  19437. default: true
  19438. },
  19439. ]
  19440. ))
  19441. characterMakers.push(() => makeCharacter(
  19442. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19443. {
  19444. front: {
  19445. height: math.unit(6, "feet"),
  19446. weight: math.unit(200, "lb"),
  19447. name: "Front",
  19448. image: {
  19449. source: "./media/characters/marcie/front.svg",
  19450. extra: 960 / 876,
  19451. bottom: 58 / 1017.87
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Macro",
  19458. height: math.unit(1, "mile"),
  19459. default: true
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19465. {
  19466. front: {
  19467. height: math.unit(7, "feet"),
  19468. weight: math.unit(200, "lb"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/kachina/front.svg",
  19472. extra: 1290.68 / 1119,
  19473. bottom: 36.5 / 1327.18
  19474. }
  19475. },
  19476. },
  19477. [
  19478. {
  19479. name: "Normal",
  19480. height: math.unit(7, "feet"),
  19481. default: true
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19487. {
  19488. looking: {
  19489. height: math.unit(2, "meters"),
  19490. weight: math.unit(300, "kg"),
  19491. name: "Looking",
  19492. image: {
  19493. source: "./media/characters/kash/looking.svg",
  19494. extra: 474 / 344,
  19495. bottom: 0.03
  19496. }
  19497. },
  19498. side: {
  19499. height: math.unit(2, "meters"),
  19500. weight: math.unit(300, "kg"),
  19501. name: "Side",
  19502. image: {
  19503. source: "./media/characters/kash/side.svg",
  19504. extra: 302 / 251,
  19505. bottom: 0.03
  19506. }
  19507. },
  19508. front: {
  19509. height: math.unit(2, "meters"),
  19510. weight: math.unit(300, "kg"),
  19511. name: "Front",
  19512. image: {
  19513. source: "./media/characters/kash/front.svg",
  19514. extra: 495 / 360,
  19515. bottom: 0.015
  19516. }
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(2, "meters"),
  19523. default: true
  19524. },
  19525. {
  19526. name: "Big",
  19527. height: math.unit(3, "meters")
  19528. },
  19529. {
  19530. name: "Large",
  19531. height: math.unit(5, "meters")
  19532. },
  19533. ]
  19534. ))
  19535. characterMakers.push(() => makeCharacter(
  19536. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19537. {
  19538. feeding: {
  19539. height: math.unit(6.7, "feet"),
  19540. weight: math.unit(350, "lb"),
  19541. name: "Feeding",
  19542. image: {
  19543. source: "./media/characters/lalim/feeding.svg",
  19544. }
  19545. },
  19546. },
  19547. [
  19548. {
  19549. name: "Normal",
  19550. height: math.unit(6.7, "feet"),
  19551. default: true
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19557. {
  19558. front: {
  19559. height: math.unit(9.5, "feet"),
  19560. weight: math.unit(600, "lb"),
  19561. name: "Front",
  19562. image: {
  19563. source: "./media/characters/de'vout/front.svg",
  19564. extra: 1443 / 1328,
  19565. bottom: 0.025
  19566. }
  19567. },
  19568. back: {
  19569. height: math.unit(9.5, "feet"),
  19570. weight: math.unit(600, "lb"),
  19571. name: "Back",
  19572. image: {
  19573. source: "./media/characters/de'vout/back.svg",
  19574. extra: 1443 / 1328
  19575. }
  19576. },
  19577. frontDressed: {
  19578. height: math.unit(9.5, "feet"),
  19579. weight: math.unit(600, "lb"),
  19580. name: "Front (Dressed",
  19581. image: {
  19582. source: "./media/characters/de'vout/front-dressed.svg",
  19583. extra: 1443 / 1328,
  19584. bottom: 0.025
  19585. }
  19586. },
  19587. backDressed: {
  19588. height: math.unit(9.5, "feet"),
  19589. weight: math.unit(600, "lb"),
  19590. name: "Back (Dressed",
  19591. image: {
  19592. source: "./media/characters/de'vout/back-dressed.svg",
  19593. extra: 1443 / 1328
  19594. }
  19595. },
  19596. },
  19597. [
  19598. {
  19599. name: "Normal",
  19600. height: math.unit(9.5, "feet"),
  19601. default: true
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(8, "feet"),
  19610. weight: math.unit(225, "lb"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/talana/front.svg",
  19614. extra: 1410 / 1300,
  19615. bottom: 0.015
  19616. }
  19617. },
  19618. frontDressed: {
  19619. height: math.unit(8, "feet"),
  19620. weight: math.unit(225, "lb"),
  19621. name: "Front (Dressed",
  19622. image: {
  19623. source: "./media/characters/talana/front-dressed.svg",
  19624. extra: 1410 / 1300,
  19625. bottom: 0.015
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(8, "feet"),
  19633. default: true
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19639. {
  19640. side: {
  19641. height: math.unit(7.2, "feet"),
  19642. weight: math.unit(150, "lb"),
  19643. name: "Side",
  19644. image: {
  19645. source: "./media/characters/xeauvok/side.svg",
  19646. extra: 1975 / 1523,
  19647. bottom: 0.07
  19648. }
  19649. },
  19650. },
  19651. [
  19652. {
  19653. name: "Normal",
  19654. height: math.unit(7.2, "feet"),
  19655. default: true
  19656. },
  19657. ]
  19658. ))
  19659. characterMakers.push(() => makeCharacter(
  19660. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19661. {
  19662. side: {
  19663. height: math.unit(4, "meters"),
  19664. weight: math.unit(2200, "kg"),
  19665. name: "Side",
  19666. image: {
  19667. source: "./media/characters/zara/side.svg",
  19668. extra: 765/744,
  19669. bottom: 156/921
  19670. }
  19671. },
  19672. },
  19673. [
  19674. {
  19675. name: "Normal",
  19676. height: math.unit(4, "meters"),
  19677. default: true
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19683. {
  19684. side: {
  19685. height: math.unit(6, "feet"),
  19686. weight: math.unit(150, "lb"),
  19687. name: "Side",
  19688. image: {
  19689. source: "./media/characters/richard-dragon/side.svg",
  19690. extra: 845 / 340,
  19691. bottom: 0.017
  19692. }
  19693. },
  19694. maw: {
  19695. height: math.unit(2.97, "feet"),
  19696. name: "Maw",
  19697. image: {
  19698. source: "./media/characters/richard-dragon/maw.svg"
  19699. }
  19700. },
  19701. },
  19702. [
  19703. ]
  19704. ))
  19705. characterMakers.push(() => makeCharacter(
  19706. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19707. {
  19708. front: {
  19709. height: math.unit(4, "feet"),
  19710. weight: math.unit(100, "lb"),
  19711. name: "Front",
  19712. image: {
  19713. source: "./media/characters/richard-smeargle/front.svg",
  19714. extra: 2952 / 2820,
  19715. bottom: 0.028
  19716. }
  19717. },
  19718. },
  19719. [
  19720. {
  19721. name: "Normal",
  19722. height: math.unit(4, "feet"),
  19723. default: true
  19724. },
  19725. {
  19726. name: "Dynamax",
  19727. height: math.unit(20, "meters")
  19728. },
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19733. {
  19734. front: {
  19735. height: math.unit(6, "feet"),
  19736. weight: math.unit(110, "lb"),
  19737. name: "Front",
  19738. image: {
  19739. source: "./media/characters/klay/front.svg",
  19740. extra: 962 / 883,
  19741. bottom: 0.04
  19742. }
  19743. },
  19744. back: {
  19745. height: math.unit(6, "feet"),
  19746. weight: math.unit(110, "lb"),
  19747. name: "Back",
  19748. image: {
  19749. source: "./media/characters/klay/back.svg",
  19750. extra: 962 / 883
  19751. }
  19752. },
  19753. beans: {
  19754. height: math.unit(1.15, "feet"),
  19755. name: "Beans",
  19756. image: {
  19757. source: "./media/characters/klay/beans.svg"
  19758. }
  19759. },
  19760. },
  19761. [
  19762. {
  19763. name: "Micro",
  19764. height: math.unit(6, "inches")
  19765. },
  19766. {
  19767. name: "Mini",
  19768. height: math.unit(3, "feet")
  19769. },
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(6, "feet"),
  19773. default: true
  19774. },
  19775. {
  19776. name: "Big",
  19777. height: math.unit(25, "feet")
  19778. },
  19779. {
  19780. name: "Macro",
  19781. height: math.unit(100, "feet")
  19782. },
  19783. {
  19784. name: "Megamacro",
  19785. height: math.unit(400, "feet")
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19791. {
  19792. front: {
  19793. height: math.unit(6, "feet"),
  19794. weight: math.unit(160, "lb"),
  19795. name: "Front",
  19796. image: {
  19797. source: "./media/characters/marcus/front.svg",
  19798. extra: 734 / 676,
  19799. bottom: 0.03
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Little",
  19806. height: math.unit(6, "feet")
  19807. },
  19808. {
  19809. name: "Normal",
  19810. height: math.unit(110, "feet"),
  19811. default: true
  19812. },
  19813. {
  19814. name: "Macro",
  19815. height: math.unit(250, "feet")
  19816. },
  19817. {
  19818. name: "Megamacro",
  19819. height: math.unit(1000, "feet")
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19825. {
  19826. front: {
  19827. height: math.unit(7, "feet"),
  19828. weight: math.unit(275, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/claude-delroute/front.svg",
  19832. extra: 902/827,
  19833. bottom: 26/928
  19834. }
  19835. },
  19836. side: {
  19837. height: math.unit(7, "feet"),
  19838. weight: math.unit(275, "lb"),
  19839. name: "Side",
  19840. image: {
  19841. source: "./media/characters/claude-delroute/side.svg",
  19842. extra: 908/853,
  19843. bottom: 16/924
  19844. }
  19845. },
  19846. back: {
  19847. height: math.unit(7, "feet"),
  19848. weight: math.unit(275, "lb"),
  19849. name: "Back",
  19850. image: {
  19851. source: "./media/characters/claude-delroute/back.svg",
  19852. extra: 911/829,
  19853. bottom: 18/929
  19854. }
  19855. },
  19856. maw: {
  19857. height: math.unit(0.6407, "meters"),
  19858. name: "Maw",
  19859. image: {
  19860. source: "./media/characters/claude-delroute/maw.svg"
  19861. }
  19862. },
  19863. },
  19864. [
  19865. {
  19866. name: "Normal",
  19867. height: math.unit(7, "feet"),
  19868. default: true
  19869. },
  19870. {
  19871. name: "Lorge",
  19872. height: math.unit(20, "feet")
  19873. },
  19874. ]
  19875. ))
  19876. characterMakers.push(() => makeCharacter(
  19877. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19878. {
  19879. front: {
  19880. height: math.unit(8 + 4 / 12, "feet"),
  19881. weight: math.unit(600, "lb"),
  19882. name: "Front",
  19883. image: {
  19884. source: "./media/characters/dragonien/front.svg",
  19885. extra: 100 / 94,
  19886. bottom: 3.3 / 103.3445
  19887. }
  19888. },
  19889. back: {
  19890. height: math.unit(8 + 4 / 12, "feet"),
  19891. weight: math.unit(600, "lb"),
  19892. name: "Back",
  19893. image: {
  19894. source: "./media/characters/dragonien/back.svg",
  19895. extra: 776 / 746,
  19896. bottom: 6.4 / 782.0616
  19897. }
  19898. },
  19899. foot: {
  19900. height: math.unit(1.54, "feet"),
  19901. name: "Foot",
  19902. image: {
  19903. source: "./media/characters/dragonien/foot.svg",
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(8 + 4 / 12, "feet"),
  19911. default: true
  19912. },
  19913. {
  19914. name: "Macro",
  19915. height: math.unit(200, "feet")
  19916. },
  19917. {
  19918. name: "Megamacro",
  19919. height: math.unit(1, "mile")
  19920. },
  19921. {
  19922. name: "Gigamacro",
  19923. height: math.unit(1000, "miles")
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(5 + 2 / 12, "feet"),
  19932. weight: math.unit(110, "lb"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/desta/front.svg",
  19936. extra: 767 / 726,
  19937. bottom: 11.7 / 779
  19938. }
  19939. },
  19940. back: {
  19941. height: math.unit(5 + 2 / 12, "feet"),
  19942. weight: math.unit(110, "lb"),
  19943. name: "Back",
  19944. image: {
  19945. source: "./media/characters/desta/back.svg",
  19946. extra: 777 / 728,
  19947. bottom: 6 / 784
  19948. }
  19949. },
  19950. frontAlt: {
  19951. height: math.unit(5 + 2 / 12, "feet"),
  19952. weight: math.unit(110, "lb"),
  19953. name: "Front",
  19954. image: {
  19955. source: "./media/characters/desta/front-alt.svg",
  19956. extra: 1482 / 1417
  19957. }
  19958. },
  19959. side: {
  19960. height: math.unit(5 + 2 / 12, "feet"),
  19961. weight: math.unit(110, "lb"),
  19962. name: "Side",
  19963. image: {
  19964. source: "./media/characters/desta/side.svg",
  19965. extra: 2579 / 2491,
  19966. bottom: 0.053
  19967. }
  19968. },
  19969. },
  19970. [
  19971. {
  19972. name: "Micro",
  19973. height: math.unit(6, "inches")
  19974. },
  19975. {
  19976. name: "Normal",
  19977. height: math.unit(5 + 2 / 12, "feet"),
  19978. default: true
  19979. },
  19980. {
  19981. name: "Macro",
  19982. height: math.unit(62, "feet")
  19983. },
  19984. {
  19985. name: "Megamacro",
  19986. height: math.unit(1800, "feet")
  19987. },
  19988. ]
  19989. ))
  19990. characterMakers.push(() => makeCharacter(
  19991. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19992. {
  19993. front: {
  19994. height: math.unit(10, "feet"),
  19995. weight: math.unit(700, "lb"),
  19996. name: "Front",
  19997. image: {
  19998. source: "./media/characters/storm-alystar/front.svg",
  19999. extra: 2112 / 1898,
  20000. bottom: 0.034
  20001. }
  20002. },
  20003. },
  20004. [
  20005. {
  20006. name: "Micro",
  20007. height: math.unit(3.5, "inches")
  20008. },
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(10, "feet"),
  20012. default: true
  20013. },
  20014. {
  20015. name: "Macro",
  20016. height: math.unit(400, "feet")
  20017. },
  20018. {
  20019. name: "Deific",
  20020. height: math.unit(60, "miles")
  20021. },
  20022. ]
  20023. ))
  20024. characterMakers.push(() => makeCharacter(
  20025. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20026. {
  20027. front: {
  20028. height: math.unit(2.35, "meters"),
  20029. weight: math.unit(119, "kg"),
  20030. name: "Front",
  20031. image: {
  20032. source: "./media/characters/ilia/front.svg",
  20033. extra: 1285 / 1255,
  20034. bottom: 0.06
  20035. }
  20036. },
  20037. },
  20038. [
  20039. {
  20040. name: "Normal",
  20041. height: math.unit(2.35, "meters")
  20042. },
  20043. {
  20044. name: "Macro",
  20045. height: math.unit(140, "meters"),
  20046. default: true
  20047. },
  20048. {
  20049. name: "Megamacro",
  20050. height: math.unit(100, "miles")
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20056. {
  20057. front: {
  20058. height: math.unit(6 + 5 / 12, "feet"),
  20059. weight: math.unit(190, "lb"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/kingdead/front.svg",
  20063. extra: 1228 / 1177
  20064. }
  20065. },
  20066. },
  20067. [
  20068. {
  20069. name: "Micro",
  20070. height: math.unit(7, "inches")
  20071. },
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(6 + 5 / 12, "feet")
  20075. },
  20076. {
  20077. name: "Macro",
  20078. height: math.unit(150, "feet"),
  20079. default: true
  20080. },
  20081. {
  20082. name: "Megamacro",
  20083. height: math.unit(200, "miles")
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20089. {
  20090. front: {
  20091. height: math.unit(8, "feet"),
  20092. weight: math.unit(600, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/kyrehx/front.svg",
  20096. extra: 1195 / 1095,
  20097. bottom: 0.034
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Micro",
  20104. height: math.unit(2, "inches")
  20105. },
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(8, "feet"),
  20109. default: true
  20110. },
  20111. {
  20112. name: "Macro",
  20113. height: math.unit(255, "feet")
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20119. {
  20120. front: {
  20121. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20122. weight: math.unit(184, "lb"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/xang/front.svg",
  20126. extra: 845 / 755
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20134. default: true
  20135. },
  20136. {
  20137. name: "Macro",
  20138. height: math.unit(0.935 * 146, "feet")
  20139. },
  20140. {
  20141. name: "Megamacro",
  20142. height: math.unit(0.935 * 3, "miles")
  20143. },
  20144. ]
  20145. ))
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20148. {
  20149. frontDressed: {
  20150. height: math.unit(5 + 7 / 12, "feet"),
  20151. weight: math.unit(140, "lb"),
  20152. name: "Front (Dressed)",
  20153. image: {
  20154. source: "./media/characters/doc-weardno/front-dressed.svg",
  20155. extra: 263 / 234
  20156. }
  20157. },
  20158. backDressed: {
  20159. height: math.unit(5 + 7 / 12, "feet"),
  20160. weight: math.unit(140, "lb"),
  20161. name: "Back (Dressed)",
  20162. image: {
  20163. source: "./media/characters/doc-weardno/back-dressed.svg",
  20164. extra: 266 / 238
  20165. }
  20166. },
  20167. front: {
  20168. height: math.unit(5 + 7 / 12, "feet"),
  20169. weight: math.unit(140, "lb"),
  20170. name: "Front",
  20171. image: {
  20172. source: "./media/characters/doc-weardno/front.svg",
  20173. extra: 254 / 233
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Micro",
  20180. height: math.unit(3, "inches")
  20181. },
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(5 + 7 / 12, "feet"),
  20185. default: true
  20186. },
  20187. {
  20188. name: "Macro",
  20189. height: math.unit(25, "feet")
  20190. },
  20191. {
  20192. name: "Megamacro",
  20193. height: math.unit(2, "miles")
  20194. },
  20195. ]
  20196. ))
  20197. characterMakers.push(() => makeCharacter(
  20198. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20199. {
  20200. front: {
  20201. height: math.unit(6 + 2 / 12, "feet"),
  20202. weight: math.unit(153, "lb"),
  20203. name: "Front",
  20204. image: {
  20205. source: "./media/characters/seth-whilst/front.svg",
  20206. bottom: 0.07
  20207. }
  20208. },
  20209. },
  20210. [
  20211. {
  20212. name: "Micro",
  20213. height: math.unit(5, "inches")
  20214. },
  20215. {
  20216. name: "Normal",
  20217. height: math.unit(6 + 2 / 12, "feet"),
  20218. default: true
  20219. },
  20220. ]
  20221. ))
  20222. characterMakers.push(() => makeCharacter(
  20223. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20224. {
  20225. front: {
  20226. height: math.unit(3, "inches"),
  20227. weight: math.unit(8, "grams"),
  20228. name: "Front",
  20229. image: {
  20230. source: "./media/characters/pocket-jabari/front.svg",
  20231. extra: 1024 / 974,
  20232. bottom: 0.039
  20233. }
  20234. },
  20235. },
  20236. [
  20237. {
  20238. name: "Minimicro",
  20239. height: math.unit(8, "mm")
  20240. },
  20241. {
  20242. name: "Micro",
  20243. height: math.unit(3, "inches"),
  20244. default: true
  20245. },
  20246. {
  20247. name: "Normal",
  20248. height: math.unit(3, "feet")
  20249. },
  20250. ]
  20251. ))
  20252. characterMakers.push(() => makeCharacter(
  20253. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20254. {
  20255. frontDressed: {
  20256. height: math.unit(15, "feet"),
  20257. weight: math.unit(3280, "lb"),
  20258. name: "Front (Dressed)",
  20259. image: {
  20260. source: "./media/characters/sapphy/front-dressed.svg",
  20261. extra: 1951/1654,
  20262. bottom: 194/2145
  20263. },
  20264. form: "anthro",
  20265. default: true
  20266. },
  20267. backDressed: {
  20268. height: math.unit(15, "feet"),
  20269. weight: math.unit(3280, "lb"),
  20270. name: "Back (Dressed)",
  20271. image: {
  20272. source: "./media/characters/sapphy/back-dressed.svg",
  20273. extra: 2058/1918,
  20274. bottom: 125/2183
  20275. },
  20276. form: "anthro"
  20277. },
  20278. frontNude: {
  20279. height: math.unit(15, "feet"),
  20280. weight: math.unit(3280, "lb"),
  20281. name: "Front (Nude)",
  20282. image: {
  20283. source: "./media/characters/sapphy/front-nude.svg",
  20284. extra: 1951/1654,
  20285. bottom: 194/2145
  20286. },
  20287. form: "anthro"
  20288. },
  20289. backNude: {
  20290. height: math.unit(15, "feet"),
  20291. weight: math.unit(3280, "lb"),
  20292. name: "Back (Nude)",
  20293. image: {
  20294. source: "./media/characters/sapphy/back-nude.svg",
  20295. extra: 2058/1918,
  20296. bottom: 125/2183
  20297. },
  20298. form: "anthro"
  20299. },
  20300. full: {
  20301. height: math.unit(15, "feet"),
  20302. weight: math.unit(3280, "lb"),
  20303. name: "Full",
  20304. image: {
  20305. source: "./media/characters/sapphy/full.svg",
  20306. extra: 1396/1317,
  20307. bottom: 44/1440
  20308. },
  20309. form: "anthro"
  20310. },
  20311. dick: {
  20312. height: math.unit(3.8, "feet"),
  20313. name: "Dick",
  20314. image: {
  20315. source: "./media/characters/sapphy/dick.svg"
  20316. },
  20317. form: "anthro"
  20318. },
  20319. feral: {
  20320. height: math.unit(35, "feet"),
  20321. weight: math.unit(160, "tons"),
  20322. name: "Feral",
  20323. image: {
  20324. source: "./media/characters/sapphy/feral.svg",
  20325. extra: 1050/573,
  20326. bottom: 60/1110
  20327. },
  20328. form: "feral",
  20329. default: true
  20330. },
  20331. },
  20332. [
  20333. {
  20334. name: "Normal",
  20335. height: math.unit(15, "feet"),
  20336. form: "anthro"
  20337. },
  20338. {
  20339. name: "Casual Macro",
  20340. height: math.unit(120, "feet"),
  20341. form: "anthro"
  20342. },
  20343. {
  20344. name: "Macro",
  20345. height: math.unit(2150, "feet"),
  20346. default: true,
  20347. form: "anthro"
  20348. },
  20349. {
  20350. name: "Megamacro",
  20351. height: math.unit(8, "miles"),
  20352. form: "anthro"
  20353. },
  20354. {
  20355. name: "Galaxy Mom",
  20356. height: math.unit(6, "megalightyears"),
  20357. form: "anthro"
  20358. },
  20359. {
  20360. name: "Normal",
  20361. height: math.unit(35, "feet"),
  20362. form: "feral",
  20363. default: true
  20364. },
  20365. {
  20366. name: "Macro",
  20367. height: math.unit(300, "feet"),
  20368. form: "feral"
  20369. },
  20370. {
  20371. name: "Galaxy Mom",
  20372. height: math.unit(10, "megalightyears"),
  20373. form: "feral"
  20374. },
  20375. ],
  20376. {
  20377. "anthro": {
  20378. name: "Anthro",
  20379. default: true
  20380. },
  20381. "feral": {
  20382. name: "Feral"
  20383. }
  20384. }
  20385. ))
  20386. characterMakers.push(() => makeCharacter(
  20387. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20388. {
  20389. hyenaFront: {
  20390. height: math.unit(6, "feet"),
  20391. weight: math.unit(190, "lb"),
  20392. name: "Front",
  20393. image: {
  20394. source: "./media/characters/kiro/hyena-front.svg",
  20395. extra: 927/839,
  20396. bottom: 91/1018
  20397. },
  20398. form: "hyena",
  20399. default: true
  20400. },
  20401. front: {
  20402. height: math.unit(6, "feet"),
  20403. weight: math.unit(170, "lb"),
  20404. name: "Front",
  20405. image: {
  20406. source: "./media/characters/kiro/front.svg",
  20407. extra: 1064 / 1012,
  20408. bottom: 0.052
  20409. },
  20410. form: "folf",
  20411. default: true
  20412. },
  20413. },
  20414. [
  20415. {
  20416. name: "Micro",
  20417. height: math.unit(6, "inches"),
  20418. form: "folf"
  20419. },
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(6, "feet"),
  20423. form: "folf",
  20424. default: true
  20425. },
  20426. {
  20427. name: "Macro",
  20428. height: math.unit(72, "feet"),
  20429. form: "folf"
  20430. },
  20431. {
  20432. name: "Micro",
  20433. height: math.unit(6, "inches"),
  20434. form: "hyena"
  20435. },
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(6, "feet"),
  20439. form: "hyena",
  20440. default: true
  20441. },
  20442. {
  20443. name: "Macro",
  20444. height: math.unit(72, "feet"),
  20445. form: "hyena"
  20446. },
  20447. ],
  20448. {
  20449. "hyena": {
  20450. name: "Hyena",
  20451. default: true
  20452. },
  20453. "folf": {
  20454. name: "Folf",
  20455. },
  20456. }
  20457. ))
  20458. characterMakers.push(() => makeCharacter(
  20459. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20460. {
  20461. front: {
  20462. height: math.unit(5 + 9 / 12, "feet"),
  20463. weight: math.unit(175, "lb"),
  20464. name: "Front",
  20465. image: {
  20466. source: "./media/characters/irishfox/front.svg",
  20467. extra: 1912 / 1680,
  20468. bottom: 0.02
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Nano",
  20475. height: math.unit(1, "mm")
  20476. },
  20477. {
  20478. name: "Micro",
  20479. height: math.unit(2, "inches")
  20480. },
  20481. {
  20482. name: "Normal",
  20483. height: math.unit(5 + 9 / 12, "feet"),
  20484. default: true
  20485. },
  20486. {
  20487. name: "Macro",
  20488. height: math.unit(45, "feet")
  20489. },
  20490. ]
  20491. ))
  20492. characterMakers.push(() => makeCharacter(
  20493. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20494. {
  20495. front: {
  20496. height: math.unit(6 + 1 / 12, "feet"),
  20497. weight: math.unit(75, "lb"),
  20498. name: "Front",
  20499. image: {
  20500. source: "./media/characters/aronai-sieyes/front.svg",
  20501. extra: 1532/1450,
  20502. bottom: 42/1574
  20503. }
  20504. },
  20505. side: {
  20506. height: math.unit(6 + 1 / 12, "feet"),
  20507. weight: math.unit(75, "lb"),
  20508. name: "Side",
  20509. image: {
  20510. source: "./media/characters/aronai-sieyes/side.svg",
  20511. extra: 1422/1365,
  20512. bottom: 148/1570
  20513. }
  20514. },
  20515. back: {
  20516. height: math.unit(6 + 1 / 12, "feet"),
  20517. weight: math.unit(75, "lb"),
  20518. name: "Back",
  20519. image: {
  20520. source: "./media/characters/aronai-sieyes/back.svg",
  20521. extra: 1526/1464,
  20522. bottom: 51/1577
  20523. }
  20524. },
  20525. dressed: {
  20526. height: math.unit(6 + 1 / 12, "feet"),
  20527. weight: math.unit(75, "lb"),
  20528. name: "Dressed",
  20529. image: {
  20530. source: "./media/characters/aronai-sieyes/dressed.svg",
  20531. extra: 1559/1483,
  20532. bottom: 39/1598
  20533. }
  20534. },
  20535. slit: {
  20536. height: math.unit(1.3, "feet"),
  20537. name: "Slit",
  20538. image: {
  20539. source: "./media/characters/aronai-sieyes/slit.svg"
  20540. }
  20541. },
  20542. slitSpread: {
  20543. height: math.unit(0.9, "feet"),
  20544. name: "Slit (Spread)",
  20545. image: {
  20546. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20547. }
  20548. },
  20549. rump: {
  20550. height: math.unit(1.3, "feet"),
  20551. name: "Rump",
  20552. image: {
  20553. source: "./media/characters/aronai-sieyes/rump.svg"
  20554. }
  20555. },
  20556. maw: {
  20557. height: math.unit(1.25, "feet"),
  20558. name: "Maw",
  20559. image: {
  20560. source: "./media/characters/aronai-sieyes/maw.svg"
  20561. }
  20562. },
  20563. feral: {
  20564. height: math.unit(18, "feet"),
  20565. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20566. name: "Feral",
  20567. image: {
  20568. source: "./media/characters/aronai-sieyes/feral.svg",
  20569. extra: 1530 / 1240,
  20570. bottom: 0.035
  20571. }
  20572. },
  20573. },
  20574. [
  20575. {
  20576. name: "Micro",
  20577. height: math.unit(2, "inches")
  20578. },
  20579. {
  20580. name: "Normal",
  20581. height: math.unit(6 + 1 / 12, "feet"),
  20582. default: true
  20583. }
  20584. ]
  20585. ))
  20586. characterMakers.push(() => makeCharacter(
  20587. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20588. {
  20589. front: {
  20590. height: math.unit(12, "feet"),
  20591. weight: math.unit(410, "kg"),
  20592. name: "Front",
  20593. image: {
  20594. source: "./media/characters/xuna/front.svg",
  20595. extra: 2184 / 1980
  20596. }
  20597. },
  20598. side: {
  20599. height: math.unit(12, "feet"),
  20600. weight: math.unit(410, "kg"),
  20601. name: "Side",
  20602. image: {
  20603. source: "./media/characters/xuna/side.svg",
  20604. extra: 2184 / 1980
  20605. }
  20606. },
  20607. back: {
  20608. height: math.unit(12, "feet"),
  20609. weight: math.unit(410, "kg"),
  20610. name: "Back",
  20611. image: {
  20612. source: "./media/characters/xuna/back.svg",
  20613. extra: 2184 / 1980
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Nano glow",
  20620. height: math.unit(10, "nm")
  20621. },
  20622. {
  20623. name: "Micro floof",
  20624. height: math.unit(0.3, "m")
  20625. },
  20626. {
  20627. name: "Huggable softy boi",
  20628. height: math.unit(3.6576, "m"),
  20629. default: true
  20630. },
  20631. {
  20632. name: "Admirable floof",
  20633. height: math.unit(80, "meters")
  20634. },
  20635. {
  20636. name: "Gentle macro",
  20637. height: math.unit(300, "meters")
  20638. },
  20639. {
  20640. name: "Very careful floof",
  20641. height: math.unit(3200, "meters")
  20642. },
  20643. {
  20644. name: "The mega floof",
  20645. height: math.unit(36000, "meters")
  20646. },
  20647. {
  20648. name: "Giga-fur-Wicker",
  20649. height: math.unit(4800000, "meters")
  20650. },
  20651. {
  20652. name: "Licky world",
  20653. height: math.unit(20000000, "meters")
  20654. },
  20655. {
  20656. name: "Floofy cyan sun",
  20657. height: math.unit(1500000000, "meters")
  20658. },
  20659. {
  20660. name: "Milky Wicker",
  20661. height: math.unit(1000000000000000000000, "meters")
  20662. },
  20663. {
  20664. name: "The observing Wicker",
  20665. height: math.unit(999999999999999999999999999, "meters")
  20666. },
  20667. ]
  20668. ))
  20669. characterMakers.push(() => makeCharacter(
  20670. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20671. {
  20672. front: {
  20673. height: math.unit(5 + 9 / 12, "feet"),
  20674. weight: math.unit(150, "lb"),
  20675. name: "Front",
  20676. image: {
  20677. source: "./media/characters/arokha-sieyes/front.svg",
  20678. extra: 1425 / 1284,
  20679. bottom: 0.05
  20680. }
  20681. },
  20682. },
  20683. [
  20684. {
  20685. name: "Normal",
  20686. height: math.unit(5 + 9 / 12, "feet")
  20687. },
  20688. {
  20689. name: "Macro",
  20690. height: math.unit(30, "meters"),
  20691. default: true
  20692. },
  20693. ]
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20697. {
  20698. front: {
  20699. height: math.unit(6, "feet"),
  20700. weight: math.unit(180, "lb"),
  20701. name: "Front",
  20702. image: {
  20703. source: "./media/characters/arokh-sieyes/front.svg",
  20704. extra: 1830 / 1769,
  20705. bottom: 0.01
  20706. }
  20707. },
  20708. },
  20709. [
  20710. {
  20711. name: "Normal",
  20712. height: math.unit(6, "feet")
  20713. },
  20714. {
  20715. name: "Macro",
  20716. height: math.unit(30, "meters"),
  20717. default: true
  20718. },
  20719. ]
  20720. ))
  20721. characterMakers.push(() => makeCharacter(
  20722. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20723. {
  20724. side: {
  20725. height: math.unit(13 + 1 / 12, "feet"),
  20726. weight: math.unit(8.5, "tonnes"),
  20727. preyCapacity: math.unit(36, "people"),
  20728. name: "Side",
  20729. image: {
  20730. source: "./media/characters/goldeneye/side.svg",
  20731. extra: 1139/741,
  20732. bottom: 98/1237
  20733. }
  20734. },
  20735. front: {
  20736. height: math.unit(5.1, "feet"),
  20737. weight: math.unit(8.5, "tonnes"),
  20738. preyCapacity: math.unit(36, "people"),
  20739. name: "Front",
  20740. image: {
  20741. source: "./media/characters/goldeneye/front.svg",
  20742. extra: 635/365,
  20743. bottom: 598/1233
  20744. }
  20745. },
  20746. maw: {
  20747. height: math.unit(6.6, "feet"),
  20748. name: "Maw",
  20749. image: {
  20750. source: "./media/characters/goldeneye/maw.svg"
  20751. }
  20752. },
  20753. headFront: {
  20754. height: math.unit(8, "feet"),
  20755. name: "Head (Front)",
  20756. image: {
  20757. source: "./media/characters/goldeneye/head-front.svg"
  20758. }
  20759. },
  20760. headSide: {
  20761. height: math.unit(6, "feet"),
  20762. name: "Head (Side)",
  20763. image: {
  20764. source: "./media/characters/goldeneye/head-side.svg"
  20765. }
  20766. },
  20767. headBack: {
  20768. height: math.unit(8, "feet"),
  20769. name: "Head (Back)",
  20770. image: {
  20771. source: "./media/characters/goldeneye/head-back.svg"
  20772. }
  20773. },
  20774. paw: {
  20775. height: math.unit(3.4, "feet"),
  20776. name: "Paw",
  20777. image: {
  20778. source: "./media/characters/goldeneye/paw.svg"
  20779. }
  20780. },
  20781. toering: {
  20782. height: math.unit(0.45, "feet"),
  20783. name: "Toering",
  20784. image: {
  20785. source: "./media/characters/goldeneye/toering.svg"
  20786. }
  20787. },
  20788. eyes: {
  20789. height: math.unit(0.5, "feet"),
  20790. name: "Eyes",
  20791. image: {
  20792. source: "./media/characters/goldeneye/eyes.svg"
  20793. }
  20794. },
  20795. },
  20796. [
  20797. {
  20798. name: "Normal",
  20799. height: math.unit(13 + 1 / 12, "feet"),
  20800. default: true
  20801. },
  20802. ]
  20803. ))
  20804. characterMakers.push(() => makeCharacter(
  20805. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20806. {
  20807. front: {
  20808. height: math.unit(6 + 1 / 12, "feet"),
  20809. weight: math.unit(210, "lb"),
  20810. name: "Front",
  20811. image: {
  20812. source: "./media/characters/leonardo-lycheborne/front.svg",
  20813. extra: 776/723,
  20814. bottom: 34/810
  20815. }
  20816. },
  20817. side: {
  20818. height: math.unit(6 + 1 / 12, "feet"),
  20819. weight: math.unit(210, "lb"),
  20820. name: "Side",
  20821. image: {
  20822. source: "./media/characters/leonardo-lycheborne/side.svg",
  20823. extra: 780/728,
  20824. bottom: 12/792
  20825. }
  20826. },
  20827. back: {
  20828. height: math.unit(6 + 1 / 12, "feet"),
  20829. weight: math.unit(210, "lb"),
  20830. name: "Back",
  20831. image: {
  20832. source: "./media/characters/leonardo-lycheborne/back.svg",
  20833. extra: 775/721,
  20834. bottom: 17/792
  20835. }
  20836. },
  20837. hand: {
  20838. height: math.unit(1.08, "feet"),
  20839. name: "Hand",
  20840. image: {
  20841. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20842. }
  20843. },
  20844. foot: {
  20845. height: math.unit(1.32, "feet"),
  20846. name: "Foot",
  20847. image: {
  20848. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20849. }
  20850. },
  20851. maw: {
  20852. height: math.unit(1, "feet"),
  20853. name: "Maw",
  20854. image: {
  20855. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20856. }
  20857. },
  20858. were: {
  20859. height: math.unit(20, "feet"),
  20860. weight: math.unit(7800, "lb"),
  20861. name: "Were",
  20862. image: {
  20863. source: "./media/characters/leonardo-lycheborne/were.svg",
  20864. extra: 1224/1165,
  20865. bottom: 72/1296
  20866. }
  20867. },
  20868. feral: {
  20869. height: math.unit(7.5, "feet"),
  20870. weight: math.unit(600, "lb"),
  20871. name: "Feral",
  20872. image: {
  20873. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20874. extra: 797/702,
  20875. bottom: 139/936
  20876. }
  20877. },
  20878. taur: {
  20879. height: math.unit(11, "feet"),
  20880. weight: math.unit(3300, "lb"),
  20881. name: "Taur",
  20882. image: {
  20883. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20884. extra: 1271/1197,
  20885. bottom: 47/1318
  20886. }
  20887. },
  20888. barghest: {
  20889. height: math.unit(11, "feet"),
  20890. weight: math.unit(1300, "lb"),
  20891. name: "Barghest",
  20892. image: {
  20893. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20894. extra: 1291/1204,
  20895. bottom: 37/1328
  20896. }
  20897. },
  20898. dick: {
  20899. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20900. name: "Dick",
  20901. image: {
  20902. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20903. }
  20904. },
  20905. dickWere: {
  20906. height: math.unit((20) / 3.8, "feet"),
  20907. name: "Dick (Were)",
  20908. image: {
  20909. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20910. }
  20911. },
  20912. },
  20913. [
  20914. {
  20915. name: "Normal",
  20916. height: math.unit(6 + 1 / 12, "feet"),
  20917. default: true
  20918. },
  20919. ]
  20920. ))
  20921. characterMakers.push(() => makeCharacter(
  20922. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20923. {
  20924. front: {
  20925. height: math.unit(10, "feet"),
  20926. weight: math.unit(350, "lb"),
  20927. name: "Front",
  20928. image: {
  20929. source: "./media/characters/jet/front.svg",
  20930. extra: 2050 / 1980,
  20931. bottom: 0.013
  20932. }
  20933. },
  20934. back: {
  20935. height: math.unit(10, "feet"),
  20936. weight: math.unit(350, "lb"),
  20937. name: "Back",
  20938. image: {
  20939. source: "./media/characters/jet/back.svg",
  20940. extra: 2050 / 1980,
  20941. bottom: 0.013
  20942. }
  20943. },
  20944. },
  20945. [
  20946. {
  20947. name: "Micro",
  20948. height: math.unit(6, "inches")
  20949. },
  20950. {
  20951. name: "Normal",
  20952. height: math.unit(10, "feet"),
  20953. default: true
  20954. },
  20955. {
  20956. name: "Macro",
  20957. height: math.unit(100, "feet")
  20958. },
  20959. ]
  20960. ))
  20961. characterMakers.push(() => makeCharacter(
  20962. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20963. {
  20964. front: {
  20965. height: math.unit(15, "feet"),
  20966. weight: math.unit(2800, "lb"),
  20967. name: "Front",
  20968. image: {
  20969. source: "./media/characters/tanarath/front.svg",
  20970. extra: 2392 / 2220,
  20971. bottom: 0.03
  20972. }
  20973. },
  20974. back: {
  20975. height: math.unit(15, "feet"),
  20976. weight: math.unit(2800, "lb"),
  20977. name: "Back",
  20978. image: {
  20979. source: "./media/characters/tanarath/back.svg",
  20980. extra: 2392 / 2220,
  20981. bottom: 0.03
  20982. }
  20983. },
  20984. },
  20985. [
  20986. {
  20987. name: "Normal",
  20988. height: math.unit(15, "feet"),
  20989. default: true
  20990. },
  20991. ]
  20992. ))
  20993. characterMakers.push(() => makeCharacter(
  20994. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20995. {
  20996. front: {
  20997. height: math.unit(7 + 1 / 12, "feet"),
  20998. weight: math.unit(175, "lb"),
  20999. name: "Front",
  21000. image: {
  21001. source: "./media/characters/patty-cattybatty/front.svg",
  21002. extra: 908 / 874,
  21003. bottom: 0.025
  21004. }
  21005. },
  21006. },
  21007. [
  21008. {
  21009. name: "Micro",
  21010. height: math.unit(1, "inch")
  21011. },
  21012. {
  21013. name: "Normal",
  21014. height: math.unit(7 + 1 / 12, "feet")
  21015. },
  21016. {
  21017. name: "Mini Macro",
  21018. height: math.unit(155, "feet")
  21019. },
  21020. {
  21021. name: "Macro",
  21022. height: math.unit(1077, "feet")
  21023. },
  21024. {
  21025. name: "Mega Macro",
  21026. height: math.unit(47650, "feet"),
  21027. default: true
  21028. },
  21029. {
  21030. name: "Giga Macro",
  21031. height: math.unit(440, "miles")
  21032. },
  21033. {
  21034. name: "Tera Macro",
  21035. height: math.unit(8700, "miles")
  21036. },
  21037. {
  21038. name: "Planetary Macro",
  21039. height: math.unit(32700, "miles")
  21040. },
  21041. {
  21042. name: "Solar Macro",
  21043. height: math.unit(550000, "miles")
  21044. },
  21045. {
  21046. name: "Celestial Macro",
  21047. height: math.unit(2.5, "AU")
  21048. },
  21049. ]
  21050. ))
  21051. characterMakers.push(() => makeCharacter(
  21052. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21053. {
  21054. front: {
  21055. height: math.unit(4 + 5 / 12, "feet"),
  21056. weight: math.unit(90, "lb"),
  21057. name: "Front",
  21058. image: {
  21059. source: "./media/characters/cappu/front.svg",
  21060. extra: 1247 / 1152,
  21061. bottom: 0.012
  21062. }
  21063. },
  21064. },
  21065. [
  21066. {
  21067. name: "Normal",
  21068. height: math.unit(4 + 5 / 12, "feet"),
  21069. default: true
  21070. },
  21071. ]
  21072. ))
  21073. characterMakers.push(() => makeCharacter(
  21074. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21075. {
  21076. frontDressed: {
  21077. height: math.unit(70, "cm"),
  21078. weight: math.unit(6, "kg"),
  21079. name: "Front (Dressed)",
  21080. image: {
  21081. source: "./media/characters/sebi/front-dressed.svg",
  21082. extra: 713.5 / 686.5,
  21083. bottom: 0.003
  21084. }
  21085. },
  21086. front: {
  21087. height: math.unit(70, "cm"),
  21088. weight: math.unit(5, "kg"),
  21089. name: "Front",
  21090. image: {
  21091. source: "./media/characters/sebi/front.svg",
  21092. extra: 713.5 / 686.5,
  21093. bottom: 0.003
  21094. }
  21095. }
  21096. },
  21097. [
  21098. {
  21099. name: "Normal",
  21100. height: math.unit(70, "cm"),
  21101. default: true
  21102. },
  21103. {
  21104. name: "Macro",
  21105. height: math.unit(8, "meters")
  21106. },
  21107. ]
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21111. {
  21112. front: {
  21113. height: math.unit(6, "feet"),
  21114. weight: math.unit(150, "lb"),
  21115. name: "Front",
  21116. image: {
  21117. source: "./media/characters/typhek/front.svg",
  21118. extra: 1948 / 1929,
  21119. bottom: 0.025
  21120. }
  21121. },
  21122. side: {
  21123. height: math.unit(6, "feet"),
  21124. weight: math.unit(150, "lb"),
  21125. name: "Side",
  21126. image: {
  21127. source: "./media/characters/typhek/side.svg",
  21128. extra: 2034 / 2010,
  21129. bottom: 0.003
  21130. }
  21131. },
  21132. back: {
  21133. height: math.unit(6, "feet"),
  21134. weight: math.unit(150, "lb"),
  21135. name: "Back",
  21136. image: {
  21137. source: "./media/characters/typhek/back.svg",
  21138. extra: 2005 / 1978,
  21139. bottom: 0.004
  21140. }
  21141. },
  21142. palm: {
  21143. height: math.unit(1.2, "feet"),
  21144. name: "Palm",
  21145. image: {
  21146. source: "./media/characters/typhek/palm.svg"
  21147. }
  21148. },
  21149. fist: {
  21150. height: math.unit(1.1, "feet"),
  21151. name: "Fist",
  21152. image: {
  21153. source: "./media/characters/typhek/fist.svg"
  21154. }
  21155. },
  21156. foot: {
  21157. height: math.unit(1.57, "feet"),
  21158. name: "Foot",
  21159. image: {
  21160. source: "./media/characters/typhek/foot.svg"
  21161. }
  21162. },
  21163. sole: {
  21164. height: math.unit(2.05, "feet"),
  21165. name: "Sole",
  21166. image: {
  21167. source: "./media/characters/typhek/sole.svg"
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Macro",
  21174. height: math.unit(40, "stories"),
  21175. default: true
  21176. },
  21177. {
  21178. name: "Megamacro",
  21179. height: math.unit(1, "mile")
  21180. },
  21181. {
  21182. name: "Gigamacro",
  21183. height: math.unit(4000, "solarradii")
  21184. },
  21185. {
  21186. name: "Universal",
  21187. height: math.unit(1.1, "universes")
  21188. }
  21189. ]
  21190. ))
  21191. characterMakers.push(() => makeCharacter(
  21192. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21193. {
  21194. side: {
  21195. height: math.unit(5 + 7 / 12, "feet"),
  21196. weight: math.unit(150, "lb"),
  21197. name: "Side",
  21198. image: {
  21199. source: "./media/characters/kassy/side.svg",
  21200. extra: 1280 / 1225,
  21201. bottom: 0.002
  21202. }
  21203. },
  21204. front: {
  21205. height: math.unit(5 + 7 / 12, "feet"),
  21206. weight: math.unit(150, "lb"),
  21207. name: "Front",
  21208. image: {
  21209. source: "./media/characters/kassy/front.svg",
  21210. extra: 1280 / 1225,
  21211. bottom: 0.025
  21212. }
  21213. },
  21214. back: {
  21215. height: math.unit(5 + 7 / 12, "feet"),
  21216. weight: math.unit(150, "lb"),
  21217. name: "Back",
  21218. image: {
  21219. source: "./media/characters/kassy/back.svg",
  21220. extra: 1280 / 1225,
  21221. bottom: 0.002
  21222. }
  21223. },
  21224. foot: {
  21225. height: math.unit(1.266, "feet"),
  21226. name: "Foot",
  21227. image: {
  21228. source: "./media/characters/kassy/foot.svg"
  21229. }
  21230. },
  21231. },
  21232. [
  21233. {
  21234. name: "Normal",
  21235. height: math.unit(5 + 7 / 12, "feet")
  21236. },
  21237. {
  21238. name: "Macro",
  21239. height: math.unit(137, "feet"),
  21240. default: true
  21241. },
  21242. {
  21243. name: "Megamacro",
  21244. height: math.unit(1, "mile")
  21245. },
  21246. ]
  21247. ))
  21248. characterMakers.push(() => makeCharacter(
  21249. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21250. {
  21251. front: {
  21252. height: math.unit(6 + 1 / 12, "feet"),
  21253. weight: math.unit(200, "lb"),
  21254. name: "Front",
  21255. image: {
  21256. source: "./media/characters/neil/front.svg",
  21257. extra: 1326 / 1250,
  21258. bottom: 0.023
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(6 + 1 / 12, "feet"),
  21266. default: true
  21267. },
  21268. {
  21269. name: "Macro",
  21270. height: math.unit(200, "feet")
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21276. {
  21277. front: {
  21278. height: math.unit(5 + 9 / 12, "feet"),
  21279. weight: math.unit(190, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/atticus/front.svg",
  21283. extra: 2934 / 2785,
  21284. bottom: 0.025
  21285. }
  21286. },
  21287. },
  21288. [
  21289. {
  21290. name: "Normal",
  21291. height: math.unit(5 + 9 / 12, "feet"),
  21292. default: true
  21293. },
  21294. {
  21295. name: "Macro",
  21296. height: math.unit(180, "feet")
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21302. {
  21303. side: {
  21304. height: math.unit(9, "feet"),
  21305. weight: math.unit(650, "lb"),
  21306. name: "Side",
  21307. image: {
  21308. source: "./media/characters/milo/side.svg",
  21309. extra: 2644 / 2310,
  21310. bottom: 0.032
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Normal",
  21317. height: math.unit(9, "feet"),
  21318. default: true
  21319. },
  21320. {
  21321. name: "Macro",
  21322. height: math.unit(300, "feet")
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21328. {
  21329. side: {
  21330. height: math.unit(8, "meters"),
  21331. weight: math.unit(90000, "kg"),
  21332. name: "Side",
  21333. image: {
  21334. source: "./media/characters/ijzer/side.svg",
  21335. extra: 2756 / 1600,
  21336. bottom: 0.01
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Small",
  21343. height: math.unit(3, "meters")
  21344. },
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(8, "meters"),
  21348. default: true
  21349. },
  21350. {
  21351. name: "Normal+",
  21352. height: math.unit(10, "meters")
  21353. },
  21354. {
  21355. name: "Bigger",
  21356. height: math.unit(24, "meters")
  21357. },
  21358. {
  21359. name: "Huge",
  21360. height: math.unit(80, "meters")
  21361. },
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(6 + 2 / 12, "feet"),
  21369. weight: math.unit(153, "lb"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/luca-cervicum/front.svg",
  21373. extra: 370 / 327,
  21374. bottom: 0.015
  21375. }
  21376. },
  21377. back: {
  21378. height: math.unit(6 + 2 / 12, "feet"),
  21379. weight: math.unit(153, "lb"),
  21380. name: "Back",
  21381. image: {
  21382. source: "./media/characters/luca-cervicum/back.svg",
  21383. extra: 367 / 333,
  21384. bottom: 0.005
  21385. }
  21386. },
  21387. frontGear: {
  21388. height: math.unit(6 + 2 / 12, "feet"),
  21389. weight: math.unit(173, "lb"),
  21390. name: "Front (Gear)",
  21391. image: {
  21392. source: "./media/characters/luca-cervicum/front-gear.svg",
  21393. extra: 377 / 333,
  21394. bottom: 0.006
  21395. }
  21396. },
  21397. },
  21398. [
  21399. {
  21400. name: "Normal",
  21401. height: math.unit(6 + 2 / 12, "feet"),
  21402. default: true
  21403. },
  21404. ]
  21405. ))
  21406. characterMakers.push(() => makeCharacter(
  21407. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21408. {
  21409. front: {
  21410. height: math.unit(6 + 1 / 12, "feet"),
  21411. weight: math.unit(304, "lb"),
  21412. name: "Front",
  21413. image: {
  21414. source: "./media/characters/oliver/front.svg",
  21415. extra: 157 / 143,
  21416. bottom: 0.08
  21417. }
  21418. },
  21419. },
  21420. [
  21421. {
  21422. name: "Normal",
  21423. height: math.unit(6 + 1 / 12, "feet"),
  21424. default: true
  21425. },
  21426. ]
  21427. ))
  21428. characterMakers.push(() => makeCharacter(
  21429. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21430. {
  21431. front: {
  21432. height: math.unit(5 + 7 / 12, "feet"),
  21433. weight: math.unit(140, "lb"),
  21434. name: "Front",
  21435. image: {
  21436. source: "./media/characters/shane/front.svg",
  21437. extra: 304 / 289,
  21438. bottom: 0.005
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(5 + 7 / 12, "feet"),
  21446. default: true
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21452. {
  21453. front: {
  21454. height: math.unit(5 + 9 / 12, "feet"),
  21455. weight: math.unit(178, "lb"),
  21456. name: "Front",
  21457. image: {
  21458. source: "./media/characters/shin/front.svg",
  21459. extra: 159 / 151,
  21460. bottom: 0.015
  21461. }
  21462. },
  21463. },
  21464. [
  21465. {
  21466. name: "Normal",
  21467. height: math.unit(5 + 9 / 12, "feet"),
  21468. default: true
  21469. },
  21470. ]
  21471. ))
  21472. characterMakers.push(() => makeCharacter(
  21473. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21474. {
  21475. front: {
  21476. height: math.unit(5 + 10 / 12, "feet"),
  21477. weight: math.unit(168, "lb"),
  21478. name: "Front",
  21479. image: {
  21480. source: "./media/characters/xerxes/front.svg",
  21481. extra: 282 / 260,
  21482. bottom: 0.045
  21483. }
  21484. },
  21485. },
  21486. [
  21487. {
  21488. name: "Normal",
  21489. height: math.unit(5 + 10 / 12, "feet"),
  21490. default: true
  21491. },
  21492. ]
  21493. ))
  21494. characterMakers.push(() => makeCharacter(
  21495. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21496. {
  21497. front: {
  21498. height: math.unit(6 + 7 / 12, "feet"),
  21499. weight: math.unit(208, "lb"),
  21500. name: "Front",
  21501. image: {
  21502. source: "./media/characters/chaska/front.svg",
  21503. extra: 332 / 319,
  21504. bottom: 0.015
  21505. }
  21506. },
  21507. },
  21508. [
  21509. {
  21510. name: "Normal",
  21511. height: math.unit(6 + 7 / 12, "feet"),
  21512. default: true
  21513. },
  21514. ]
  21515. ))
  21516. characterMakers.push(() => makeCharacter(
  21517. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21518. {
  21519. front: {
  21520. height: math.unit(5 + 8 / 12, "feet"),
  21521. weight: math.unit(208, "lb"),
  21522. name: "Front",
  21523. image: {
  21524. source: "./media/characters/enuk/front.svg",
  21525. extra: 437 / 406,
  21526. bottom: 0.02
  21527. }
  21528. },
  21529. },
  21530. [
  21531. {
  21532. name: "Normal",
  21533. height: math.unit(5 + 8 / 12, "feet"),
  21534. default: true
  21535. },
  21536. ]
  21537. ))
  21538. characterMakers.push(() => makeCharacter(
  21539. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21540. {
  21541. front: {
  21542. height: math.unit(5 + 10 / 12, "feet"),
  21543. weight: math.unit(252, "lb"),
  21544. name: "Front",
  21545. image: {
  21546. source: "./media/characters/bruun/front.svg",
  21547. extra: 197 / 187,
  21548. bottom: 0.012
  21549. }
  21550. },
  21551. },
  21552. [
  21553. {
  21554. name: "Normal",
  21555. height: math.unit(5 + 10 / 12, "feet"),
  21556. default: true
  21557. },
  21558. ]
  21559. ))
  21560. characterMakers.push(() => makeCharacter(
  21561. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21562. {
  21563. front: {
  21564. height: math.unit(6 + 10 / 12, "feet"),
  21565. weight: math.unit(255, "lb"),
  21566. name: "Front",
  21567. image: {
  21568. source: "./media/characters/alexeev/front.svg",
  21569. extra: 213 / 200,
  21570. bottom: 0.05
  21571. }
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Normal",
  21577. height: math.unit(6 + 10 / 12, "feet"),
  21578. default: true
  21579. },
  21580. ]
  21581. ))
  21582. characterMakers.push(() => makeCharacter(
  21583. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21584. {
  21585. front: {
  21586. height: math.unit(2 + 8 / 12, "feet"),
  21587. weight: math.unit(22, "lb"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/evelyn/front.svg",
  21591. extra: 208 / 180
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(2 + 8 / 12, "feet"),
  21599. default: true
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21605. {
  21606. front: {
  21607. height: math.unit(5 + 9 / 12, "feet"),
  21608. weight: math.unit(139, "lb"),
  21609. name: "Front",
  21610. image: {
  21611. source: "./media/characters/inca/front.svg",
  21612. extra: 294 / 291,
  21613. bottom: 0.03
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Normal",
  21620. height: math.unit(5 + 9 / 12, "feet"),
  21621. default: true
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21627. {
  21628. front: {
  21629. height: math.unit(6 + 3 / 12, "feet"),
  21630. weight: math.unit(185, "lb"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/mera/front.svg",
  21634. extra: 291 / 277,
  21635. bottom: 0.03
  21636. }
  21637. },
  21638. },
  21639. [
  21640. {
  21641. name: "Normal",
  21642. height: math.unit(6 + 3 / 12, "feet"),
  21643. default: true
  21644. },
  21645. ]
  21646. ))
  21647. characterMakers.push(() => makeCharacter(
  21648. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21649. {
  21650. front: {
  21651. height: math.unit(6 + 7 / 12, "feet"),
  21652. weight: math.unit(160, "lb"),
  21653. name: "Front",
  21654. image: {
  21655. source: "./media/characters/ceres/front.svg",
  21656. extra: 1023 / 950,
  21657. bottom: 0.027
  21658. }
  21659. },
  21660. back: {
  21661. height: math.unit(6 + 7 / 12, "feet"),
  21662. weight: math.unit(160, "lb"),
  21663. name: "Back",
  21664. image: {
  21665. source: "./media/characters/ceres/back.svg",
  21666. extra: 1023 / 950
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(6 + 7 / 12, "feet"),
  21674. default: true
  21675. },
  21676. ]
  21677. ))
  21678. characterMakers.push(() => makeCharacter(
  21679. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21680. {
  21681. front: {
  21682. height: math.unit(5 + 10 / 12, "feet"),
  21683. weight: math.unit(150, "lb"),
  21684. name: "Front",
  21685. image: {
  21686. source: "./media/characters/kris/front.svg",
  21687. extra: 885 / 803,
  21688. bottom: 0.03
  21689. }
  21690. },
  21691. },
  21692. [
  21693. {
  21694. name: "Normal",
  21695. height: math.unit(5 + 10 / 12, "feet"),
  21696. default: true
  21697. },
  21698. ]
  21699. ))
  21700. characterMakers.push(() => makeCharacter(
  21701. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21702. {
  21703. front: {
  21704. height: math.unit(7, "feet"),
  21705. weight: math.unit(120, "kg"),
  21706. name: "Front",
  21707. image: {
  21708. source: "./media/characters/taluthus/front.svg",
  21709. extra: 903 / 833,
  21710. bottom: 0.015
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Normal",
  21717. height: math.unit(7, "feet"),
  21718. default: true
  21719. },
  21720. {
  21721. name: "Macro",
  21722. height: math.unit(300, "feet")
  21723. },
  21724. ]
  21725. ))
  21726. characterMakers.push(() => makeCharacter(
  21727. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21728. {
  21729. front: {
  21730. height: math.unit(5 + 9 / 12, "feet"),
  21731. weight: math.unit(145, "lb"),
  21732. name: "Front",
  21733. image: {
  21734. source: "./media/characters/dawn/front.svg",
  21735. extra: 2094 / 2016,
  21736. bottom: 0.025
  21737. }
  21738. },
  21739. back: {
  21740. height: math.unit(5 + 9 / 12, "feet"),
  21741. weight: math.unit(160, "lb"),
  21742. name: "Back",
  21743. image: {
  21744. source: "./media/characters/dawn/back.svg",
  21745. extra: 2112 / 2080,
  21746. bottom: 0.005
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Normal",
  21753. height: math.unit(6 + 7 / 12, "feet"),
  21754. default: true
  21755. },
  21756. ]
  21757. ))
  21758. characterMakers.push(() => makeCharacter(
  21759. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21760. {
  21761. anthro: {
  21762. height: math.unit(8 + 3 / 12, "feet"),
  21763. weight: math.unit(450, "lb"),
  21764. name: "Anthro",
  21765. image: {
  21766. source: "./media/characters/arador/anthro.svg",
  21767. extra: 1835 / 1718,
  21768. bottom: 0.025
  21769. }
  21770. },
  21771. feral: {
  21772. height: math.unit(4, "feet"),
  21773. weight: math.unit(200, "lb"),
  21774. name: "Feral",
  21775. image: {
  21776. source: "./media/characters/arador/feral.svg",
  21777. extra: 1683 / 1514,
  21778. bottom: 0.07
  21779. }
  21780. },
  21781. },
  21782. [
  21783. {
  21784. name: "Normal",
  21785. height: math.unit(8 + 3 / 12, "feet")
  21786. },
  21787. {
  21788. name: "Macro",
  21789. height: math.unit(82.5, "feet"),
  21790. default: true
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(5 + 10 / 12, "feet"),
  21799. weight: math.unit(125, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/dharsi/front.svg",
  21803. extra: 716 / 630,
  21804. bottom: 0.035
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Nano",
  21811. height: math.unit(100, "nm")
  21812. },
  21813. {
  21814. name: "Micro",
  21815. height: math.unit(2, "inches")
  21816. },
  21817. {
  21818. name: "Normal",
  21819. height: math.unit(5 + 10 / 12, "feet"),
  21820. default: true
  21821. },
  21822. {
  21823. name: "Macro",
  21824. height: math.unit(1000, "feet")
  21825. },
  21826. {
  21827. name: "Megamacro",
  21828. height: math.unit(10, "miles")
  21829. },
  21830. {
  21831. name: "Gigamacro",
  21832. height: math.unit(3000, "miles")
  21833. },
  21834. {
  21835. name: "Teramacro",
  21836. height: math.unit(500000, "miles")
  21837. },
  21838. {
  21839. name: "Teramacro+",
  21840. height: math.unit(30, "galaxies")
  21841. },
  21842. ]
  21843. ))
  21844. characterMakers.push(() => makeCharacter(
  21845. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21846. {
  21847. front: {
  21848. height: math.unit(6, "feet"),
  21849. weight: math.unit(150, "lb"),
  21850. name: "Front",
  21851. image: {
  21852. source: "./media/characters/deathy/front.svg",
  21853. extra: 1552 / 1463,
  21854. bottom: 0.025
  21855. }
  21856. },
  21857. side: {
  21858. height: math.unit(6, "feet"),
  21859. weight: math.unit(150, "lb"),
  21860. name: "Side",
  21861. image: {
  21862. source: "./media/characters/deathy/side.svg",
  21863. extra: 1604 / 1455,
  21864. bottom: 0.025
  21865. }
  21866. },
  21867. back: {
  21868. height: math.unit(6, "feet"),
  21869. weight: math.unit(150, "lb"),
  21870. name: "Back",
  21871. image: {
  21872. source: "./media/characters/deathy/back.svg",
  21873. extra: 1580 / 1463,
  21874. bottom: 0.005
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Micro",
  21881. height: math.unit(5, "millimeters")
  21882. },
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(6 + 5 / 12, "feet"),
  21886. default: true
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21892. {
  21893. front: {
  21894. height: math.unit(16, "feet"),
  21895. weight: math.unit(4000, "lb"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/juniper/front.svg",
  21899. bottom: 0.04
  21900. }
  21901. },
  21902. },
  21903. [
  21904. {
  21905. name: "Normal",
  21906. height: math.unit(16, "feet"),
  21907. default: true
  21908. },
  21909. ]
  21910. ))
  21911. characterMakers.push(() => makeCharacter(
  21912. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21913. {
  21914. front: {
  21915. height: math.unit(6, "feet"),
  21916. weight: math.unit(150, "lb"),
  21917. name: "Front",
  21918. image: {
  21919. source: "./media/characters/hipster/front.svg",
  21920. extra: 1312 / 1209,
  21921. bottom: 0.025
  21922. }
  21923. },
  21924. back: {
  21925. height: math.unit(6, "feet"),
  21926. weight: math.unit(150, "lb"),
  21927. name: "Back",
  21928. image: {
  21929. source: "./media/characters/hipster/back.svg",
  21930. extra: 1281 / 1196,
  21931. bottom: 0.01
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Micro",
  21938. height: math.unit(1, "mm")
  21939. },
  21940. {
  21941. name: "Normal",
  21942. height: math.unit(4, "inches"),
  21943. default: true
  21944. },
  21945. {
  21946. name: "Macro",
  21947. height: math.unit(500, "feet")
  21948. },
  21949. {
  21950. name: "Megamacro",
  21951. height: math.unit(1000, "miles")
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(6, "feet"),
  21960. weight: math.unit(150, "lb"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/tendirmuldr/front.svg",
  21964. extra: 1878 / 1772,
  21965. bottom: 0.015
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Megamacro",
  21972. height: math.unit(1500, "miles"),
  21973. default: true
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21979. {
  21980. front: {
  21981. height: math.unit(14, "feet"),
  21982. weight: math.unit(12000, "lb"),
  21983. name: "Front",
  21984. image: {
  21985. source: "./media/characters/mort/front.svg",
  21986. extra: 365 / 318,
  21987. bottom: 0.01
  21988. }
  21989. },
  21990. side: {
  21991. height: math.unit(14, "feet"),
  21992. weight: math.unit(12000, "lb"),
  21993. name: "Side",
  21994. image: {
  21995. source: "./media/characters/mort/side.svg",
  21996. extra: 365 / 318,
  21997. bottom: 0.052
  21998. },
  21999. default: true
  22000. },
  22001. back: {
  22002. height: math.unit(14, "feet"),
  22003. weight: math.unit(12000, "lb"),
  22004. name: "Back",
  22005. image: {
  22006. source: "./media/characters/mort/back.svg",
  22007. extra: 371 / 332,
  22008. bottom: 0.18
  22009. }
  22010. },
  22011. },
  22012. [
  22013. {
  22014. name: "Normal",
  22015. height: math.unit(14, "feet"),
  22016. default: true
  22017. },
  22018. ]
  22019. ))
  22020. characterMakers.push(() => makeCharacter(
  22021. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22022. {
  22023. front: {
  22024. height: math.unit(8, "feet"),
  22025. weight: math.unit(1, "ton"),
  22026. name: "Front",
  22027. image: {
  22028. source: "./media/characters/lycoa/front.svg",
  22029. extra: 1836/1728,
  22030. bottom: 81/1917
  22031. }
  22032. },
  22033. back: {
  22034. height: math.unit(8, "feet"),
  22035. weight: math.unit(1, "ton"),
  22036. name: "Back",
  22037. image: {
  22038. source: "./media/characters/lycoa/back.svg",
  22039. extra: 1785/1720,
  22040. bottom: 91/1876
  22041. }
  22042. },
  22043. head: {
  22044. height: math.unit(1.6243, "feet"),
  22045. name: "Head",
  22046. image: {
  22047. source: "./media/characters/lycoa/head.svg",
  22048. extra: 1011/782,
  22049. bottom: 0/1011
  22050. }
  22051. },
  22052. tailmaw: {
  22053. height: math.unit(1.9, "feet"),
  22054. name: "Tailmaw",
  22055. image: {
  22056. source: "./media/characters/lycoa/tailmaw.svg"
  22057. }
  22058. },
  22059. tentacles: {
  22060. height: math.unit(2.1, "feet"),
  22061. name: "Tentacles",
  22062. image: {
  22063. source: "./media/characters/lycoa/tentacles.svg"
  22064. }
  22065. },
  22066. dick: {
  22067. height: math.unit(1.73, "feet"),
  22068. name: "Dick",
  22069. image: {
  22070. source: "./media/characters/lycoa/dick.svg"
  22071. }
  22072. },
  22073. },
  22074. [
  22075. {
  22076. name: "Normal",
  22077. height: math.unit(8, "feet"),
  22078. default: true
  22079. },
  22080. {
  22081. name: "Macro",
  22082. height: math.unit(30, "feet")
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22088. {
  22089. front: {
  22090. height: math.unit(4 + 2 / 12, "feet"),
  22091. weight: math.unit(70, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/naldara/front.svg",
  22095. extra: 1664/1387,
  22096. bottom: 81/1745
  22097. },
  22098. form: "anthro",
  22099. default: true
  22100. },
  22101. naga: {
  22102. height: math.unit(20, "feet"),
  22103. weight: math.unit(15000, "kg"),
  22104. name: "Front",
  22105. image: {
  22106. source: "./media/characters/naldara/naga.svg",
  22107. extra: 1590/1396,
  22108. bottom: 285/1875
  22109. },
  22110. form: "naga",
  22111. default: true
  22112. },
  22113. },
  22114. [
  22115. {
  22116. name: "Normal",
  22117. height: math.unit(4 + 2 / 12, "feet"),
  22118. form: "anthro",
  22119. default: true
  22120. },
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(20, "feet"),
  22124. form: "naga",
  22125. default: true
  22126. },
  22127. ],
  22128. {
  22129. "anthro": {
  22130. name: "Anthro",
  22131. default: true
  22132. },
  22133. "naga": {
  22134. name: "Naga"
  22135. }
  22136. }
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22140. {
  22141. front: {
  22142. height: math.unit(13 + 7 / 12, "feet"),
  22143. weight: math.unit(1500, "lb"),
  22144. name: "Front",
  22145. image: {
  22146. source: "./media/characters/briar/front.svg",
  22147. extra: 1223/1157,
  22148. bottom: 123/1346
  22149. }
  22150. },
  22151. },
  22152. [
  22153. {
  22154. name: "Normal",
  22155. height: math.unit(13 + 7 / 12, "feet"),
  22156. default: true
  22157. },
  22158. ]
  22159. ))
  22160. characterMakers.push(() => makeCharacter(
  22161. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22162. {
  22163. side: {
  22164. height: math.unit(16, "feet"),
  22165. weight: math.unit(500, "lb"),
  22166. name: "Side",
  22167. image: {
  22168. source: "./media/characters/vanguard/side.svg",
  22169. extra: 1022/914,
  22170. bottom: 30/1052
  22171. }
  22172. },
  22173. sideAlt: {
  22174. height: math.unit(10, "feet"),
  22175. weight: math.unit(500, "lb"),
  22176. name: "Side (Alt)",
  22177. image: {
  22178. source: "./media/characters/vanguard/side-alt.svg",
  22179. extra: 502 / 425,
  22180. bottom: 0.087
  22181. }
  22182. },
  22183. },
  22184. [
  22185. {
  22186. name: "Normal",
  22187. height: math.unit(17.71, "feet"),
  22188. default: true
  22189. },
  22190. ]
  22191. ))
  22192. characterMakers.push(() => makeCharacter(
  22193. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22194. {
  22195. front: {
  22196. height: math.unit(7.5, "feet"),
  22197. weight: math.unit(2, "lb"),
  22198. name: "Front",
  22199. image: {
  22200. source: "./media/characters/artemis/work-safe-front.svg",
  22201. extra: 1192 / 1075,
  22202. bottom: 0.07
  22203. },
  22204. form: "work-safe",
  22205. default: true
  22206. },
  22207. frontNsfw: {
  22208. height: math.unit(7.5, "feet"),
  22209. weight: math.unit(2, "lb"),
  22210. name: "Front",
  22211. image: {
  22212. source: "./media/characters/artemis/calibrating-front.svg",
  22213. extra: 1192 / 1075,
  22214. bottom: 0.07
  22215. },
  22216. form: "calibrating",
  22217. default: true
  22218. },
  22219. frontNsfwer: {
  22220. height: math.unit(7.5, "feet"),
  22221. weight: math.unit(2, "lb"),
  22222. name: "Front",
  22223. image: {
  22224. source: "./media/characters/artemis/oversize-load-front.svg",
  22225. extra: 1192 / 1075,
  22226. bottom: 0.07
  22227. },
  22228. form: "oversize-load",
  22229. default: true
  22230. },
  22231. side: {
  22232. height: math.unit(7.5, "feet"),
  22233. weight: math.unit(2, "lb"),
  22234. name: "Side",
  22235. image: {
  22236. source: "./media/characters/artemis/work-safe-side.svg",
  22237. extra: 1192 / 1075,
  22238. bottom: 0.07
  22239. },
  22240. form: "work-safe"
  22241. },
  22242. sideNsfw: {
  22243. height: math.unit(7.5, "feet"),
  22244. weight: math.unit(2, "lb"),
  22245. name: "Side",
  22246. image: {
  22247. source: "./media/characters/artemis/calibrating-side.svg",
  22248. extra: 1192 / 1075,
  22249. bottom: 0.07
  22250. },
  22251. form: "calibrating"
  22252. },
  22253. sideNsfwer: {
  22254. height: math.unit(7.5, "feet"),
  22255. weight: math.unit(2, "lb"),
  22256. name: "Side",
  22257. image: {
  22258. source: "./media/characters/artemis/oversize-load-side.svg",
  22259. extra: 1192 / 1075,
  22260. bottom: 0.07
  22261. },
  22262. form: "oversize-load"
  22263. },
  22264. maw: {
  22265. height: math.unit(1.1, "feet"),
  22266. name: "Maw",
  22267. image: {
  22268. source: "./media/characters/artemis/maw.svg"
  22269. },
  22270. form: "work-safe"
  22271. },
  22272. stomach: {
  22273. height: math.unit(0.95, "feet"),
  22274. name: "Stomach",
  22275. image: {
  22276. source: "./media/characters/artemis/stomach.svg"
  22277. },
  22278. form: "work-safe"
  22279. },
  22280. dickCanine: {
  22281. height: math.unit(1, "feet"),
  22282. name: "Dick (Canine)",
  22283. image: {
  22284. source: "./media/characters/artemis/dick-canine.svg"
  22285. },
  22286. form: "calibrating"
  22287. },
  22288. dickEquine: {
  22289. height: math.unit(0.85, "feet"),
  22290. name: "Dick (Equine)",
  22291. image: {
  22292. source: "./media/characters/artemis/dick-equine.svg"
  22293. },
  22294. form: "calibrating"
  22295. },
  22296. dickExotic: {
  22297. height: math.unit(0.85, "feet"),
  22298. name: "Dick (Exotic)",
  22299. image: {
  22300. source: "./media/characters/artemis/dick-exotic.svg"
  22301. },
  22302. form: "calibrating"
  22303. },
  22304. dickCanineBigger: {
  22305. height: math.unit(1 * 1.33, "feet"),
  22306. name: "Dick (Canine)",
  22307. image: {
  22308. source: "./media/characters/artemis/dick-canine.svg"
  22309. },
  22310. form: "oversize-load"
  22311. },
  22312. dickEquineBigger: {
  22313. height: math.unit(0.85 * 1.33, "feet"),
  22314. name: "Dick (Equine)",
  22315. image: {
  22316. source: "./media/characters/artemis/dick-equine.svg"
  22317. },
  22318. form: "oversize-load"
  22319. },
  22320. dickExoticBigger: {
  22321. height: math.unit(0.85 * 1.33, "feet"),
  22322. name: "Dick (Exotic)",
  22323. image: {
  22324. source: "./media/characters/artemis/dick-exotic.svg"
  22325. },
  22326. form: "oversize-load"
  22327. },
  22328. },
  22329. [
  22330. {
  22331. name: "Normal",
  22332. height: math.unit(7.5, "feet"),
  22333. form: "work-safe",
  22334. default: true
  22335. },
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(7.5, "feet"),
  22339. form: "calibrating",
  22340. default: true
  22341. },
  22342. {
  22343. name: "Normal",
  22344. height: math.unit(7.5, "feet"),
  22345. form: "oversize-load",
  22346. default: true
  22347. },
  22348. {
  22349. name: "Enlarged",
  22350. height: math.unit(12, "feet"),
  22351. form: "work-safe",
  22352. },
  22353. {
  22354. name: "Enlarged",
  22355. height: math.unit(12, "feet"),
  22356. form: "calibrating",
  22357. },
  22358. {
  22359. name: "Enlarged",
  22360. height: math.unit(12, "feet"),
  22361. form: "oversize-load",
  22362. },
  22363. ],
  22364. {
  22365. "work-safe": {
  22366. name: "Work-Safe",
  22367. default: true
  22368. },
  22369. "calibrating": {
  22370. name: "Calibrating"
  22371. },
  22372. "oversize-load": {
  22373. name: "Oversize Load"
  22374. }
  22375. }
  22376. ))
  22377. characterMakers.push(() => makeCharacter(
  22378. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22379. {
  22380. front: {
  22381. height: math.unit(5 + 3 / 12, "feet"),
  22382. weight: math.unit(160, "lb"),
  22383. name: "Front",
  22384. image: {
  22385. source: "./media/characters/kira/front.svg",
  22386. extra: 906 / 786,
  22387. bottom: 0.01
  22388. }
  22389. },
  22390. back: {
  22391. height: math.unit(5 + 3 / 12, "feet"),
  22392. weight: math.unit(160, "lb"),
  22393. name: "Back",
  22394. image: {
  22395. source: "./media/characters/kira/back.svg",
  22396. extra: 882 / 757,
  22397. bottom: 0.005
  22398. }
  22399. },
  22400. frontDressed: {
  22401. height: math.unit(5 + 3 / 12, "feet"),
  22402. weight: math.unit(160, "lb"),
  22403. name: "Front (Dressed)",
  22404. image: {
  22405. source: "./media/characters/kira/front-dressed.svg",
  22406. extra: 906 / 786,
  22407. bottom: 0.01
  22408. }
  22409. },
  22410. beans: {
  22411. height: math.unit(0.92, "feet"),
  22412. name: "Beans",
  22413. image: {
  22414. source: "./media/characters/kira/beans.svg"
  22415. }
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Normal",
  22421. height: math.unit(5 + 3 / 12, "feet"),
  22422. default: true
  22423. },
  22424. ]
  22425. ))
  22426. characterMakers.push(() => makeCharacter(
  22427. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22428. {
  22429. front: {
  22430. height: math.unit(5 + 4 / 12, "feet"),
  22431. weight: math.unit(145, "lb"),
  22432. name: "Front",
  22433. image: {
  22434. source: "./media/characters/scramble/front.svg",
  22435. extra: 763 / 727,
  22436. bottom: 0.05
  22437. }
  22438. },
  22439. back: {
  22440. height: math.unit(5 + 4 / 12, "feet"),
  22441. weight: math.unit(145, "lb"),
  22442. name: "Back",
  22443. image: {
  22444. source: "./media/characters/scramble/back.svg",
  22445. extra: 826 / 737,
  22446. bottom: 0.002
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Normal",
  22453. height: math.unit(5 + 4 / 12, "feet"),
  22454. default: true
  22455. },
  22456. ]
  22457. ))
  22458. characterMakers.push(() => makeCharacter(
  22459. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22460. {
  22461. side: {
  22462. height: math.unit(6 + 2 / 12, "feet"),
  22463. weight: math.unit(190, "lb"),
  22464. name: "Side",
  22465. image: {
  22466. source: "./media/characters/biscuit/side.svg",
  22467. extra: 858 / 791,
  22468. bottom: 0.044
  22469. }
  22470. },
  22471. },
  22472. [
  22473. {
  22474. name: "Normal",
  22475. height: math.unit(6 + 2 / 12, "feet"),
  22476. default: true
  22477. },
  22478. ]
  22479. ))
  22480. characterMakers.push(() => makeCharacter(
  22481. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22482. {
  22483. front: {
  22484. height: math.unit(5 + 2 / 12, "feet"),
  22485. weight: math.unit(120, "lb"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/poffin/front.svg",
  22489. extra: 786 / 680,
  22490. bottom: 0.005
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Normal",
  22497. height: math.unit(5 + 2 / 12, "feet"),
  22498. default: true
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22504. {
  22505. front: {
  22506. height: math.unit(6 + 3 / 12, "feet"),
  22507. weight: math.unit(519, "lb"),
  22508. name: "Front",
  22509. image: {
  22510. source: "./media/characters/dhari/front.svg",
  22511. extra: 1048 / 946,
  22512. bottom: 0.015
  22513. }
  22514. },
  22515. back: {
  22516. height: math.unit(6 + 3 / 12, "feet"),
  22517. weight: math.unit(519, "lb"),
  22518. name: "Back",
  22519. image: {
  22520. source: "./media/characters/dhari/back.svg",
  22521. extra: 1048 / 931,
  22522. bottom: 0.005
  22523. }
  22524. },
  22525. frontDressed: {
  22526. height: math.unit(6 + 3 / 12, "feet"),
  22527. weight: math.unit(519, "lb"),
  22528. name: "Front (Dressed)",
  22529. image: {
  22530. source: "./media/characters/dhari/front-dressed.svg",
  22531. extra: 1713 / 1546,
  22532. bottom: 0.02
  22533. }
  22534. },
  22535. backDressed: {
  22536. height: math.unit(6 + 3 / 12, "feet"),
  22537. weight: math.unit(519, "lb"),
  22538. name: "Back (Dressed)",
  22539. image: {
  22540. source: "./media/characters/dhari/back-dressed.svg",
  22541. extra: 1699 / 1537,
  22542. bottom: 0.01
  22543. }
  22544. },
  22545. maw: {
  22546. height: math.unit(0.95, "feet"),
  22547. name: "Maw",
  22548. image: {
  22549. source: "./media/characters/dhari/maw.svg"
  22550. }
  22551. },
  22552. wereFront: {
  22553. height: math.unit(12 + 8 / 12, "feet"),
  22554. weight: math.unit(4000, "lb"),
  22555. name: "Front (Were)",
  22556. image: {
  22557. source: "./media/characters/dhari/were-front.svg",
  22558. extra: 1065 / 969,
  22559. bottom: 0.015
  22560. }
  22561. },
  22562. wereBack: {
  22563. height: math.unit(12 + 8 / 12, "feet"),
  22564. weight: math.unit(4000, "lb"),
  22565. name: "Back (Were)",
  22566. image: {
  22567. source: "./media/characters/dhari/were-back.svg",
  22568. extra: 1065 / 969,
  22569. bottom: 0.012
  22570. }
  22571. },
  22572. wereMaw: {
  22573. height: math.unit(0.625, "meters"),
  22574. name: "Maw (Were)",
  22575. image: {
  22576. source: "./media/characters/dhari/were-maw.svg"
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Normal",
  22583. height: math.unit(6 + 3 / 12, "feet"),
  22584. default: true
  22585. },
  22586. ]
  22587. ))
  22588. characterMakers.push(() => makeCharacter(
  22589. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22590. {
  22591. anthro: {
  22592. height: math.unit(5 + 7 / 12, "feet"),
  22593. weight: math.unit(175, "lb"),
  22594. name: "Anthro",
  22595. image: {
  22596. source: "./media/characters/rena-dyne/anthro.svg",
  22597. extra: 1849 / 1785,
  22598. bottom: 0.005
  22599. }
  22600. },
  22601. taur: {
  22602. height: math.unit(15 + 6 / 12, "feet"),
  22603. weight: math.unit(8000, "lb"),
  22604. name: "Taur",
  22605. image: {
  22606. source: "./media/characters/rena-dyne/taur.svg",
  22607. extra: 2315 / 2234,
  22608. bottom: 0.033
  22609. }
  22610. },
  22611. },
  22612. [
  22613. {
  22614. name: "Normal",
  22615. height: math.unit(5 + 7 / 12, "feet"),
  22616. default: true
  22617. },
  22618. ]
  22619. ))
  22620. characterMakers.push(() => makeCharacter(
  22621. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22622. {
  22623. front: {
  22624. height: math.unit(8, "feet"),
  22625. weight: math.unit(600, "lb"),
  22626. name: "Front",
  22627. image: {
  22628. source: "./media/characters/weremeep/front.svg",
  22629. extra: 970/849,
  22630. bottom: 7/977
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(8, "feet"),
  22638. default: true
  22639. },
  22640. {
  22641. name: "Lorg",
  22642. height: math.unit(12, "feet")
  22643. },
  22644. {
  22645. name: "Oh Lawd She Comin'",
  22646. height: math.unit(20, "feet")
  22647. },
  22648. ]
  22649. ))
  22650. characterMakers.push(() => makeCharacter(
  22651. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22652. {
  22653. front: {
  22654. height: math.unit(4, "feet"),
  22655. weight: math.unit(90, "lb"),
  22656. name: "Front",
  22657. image: {
  22658. source: "./media/characters/reza/front.svg",
  22659. extra: 1183 / 1111,
  22660. bottom: 0.017
  22661. }
  22662. },
  22663. back: {
  22664. height: math.unit(4, "feet"),
  22665. weight: math.unit(90, "lb"),
  22666. name: "Back",
  22667. image: {
  22668. source: "./media/characters/reza/back.svg",
  22669. extra: 1183 / 1111,
  22670. bottom: 0.01
  22671. }
  22672. },
  22673. drake: {
  22674. height: math.unit(30, "feet"),
  22675. weight: math.unit(246960, "lb"),
  22676. name: "Drake",
  22677. image: {
  22678. source: "./media/characters/reza/drake.svg",
  22679. extra: 2350 / 2024,
  22680. bottom: 60.7 / 2403
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Normal",
  22687. height: math.unit(4, "feet"),
  22688. default: true
  22689. },
  22690. ]
  22691. ))
  22692. characterMakers.push(() => makeCharacter(
  22693. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22694. {
  22695. side: {
  22696. height: math.unit(15, "feet"),
  22697. weight: math.unit(14, "tons"),
  22698. name: "Side",
  22699. image: {
  22700. source: "./media/characters/athea/side.svg",
  22701. extra: 960 / 540,
  22702. bottom: 0.003
  22703. }
  22704. },
  22705. sitting: {
  22706. height: math.unit(6 * 2.85, "feet"),
  22707. weight: math.unit(14, "tons"),
  22708. name: "Sitting",
  22709. image: {
  22710. source: "./media/characters/athea/sitting.svg",
  22711. extra: 621 / 581,
  22712. bottom: 0.075
  22713. }
  22714. },
  22715. maw: {
  22716. height: math.unit(7.59498031496063, "feet"),
  22717. name: "Maw",
  22718. image: {
  22719. source: "./media/characters/athea/maw.svg"
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Lap Cat",
  22726. height: math.unit(2.5, "feet")
  22727. },
  22728. {
  22729. name: "Minimacro",
  22730. height: math.unit(15, "feet"),
  22731. default: true
  22732. },
  22733. {
  22734. name: "Macro",
  22735. height: math.unit(120, "feet")
  22736. },
  22737. {
  22738. name: "Macro+",
  22739. height: math.unit(640, "feet")
  22740. },
  22741. {
  22742. name: "Colossus",
  22743. height: math.unit(2.2, "miles")
  22744. },
  22745. ]
  22746. ))
  22747. characterMakers.push(() => makeCharacter(
  22748. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22749. {
  22750. front: {
  22751. height: math.unit(8 + 8 / 12, "feet"),
  22752. weight: math.unit(130, "kg"),
  22753. name: "Front",
  22754. image: {
  22755. source: "./media/characters/seroko/front.svg",
  22756. extra: 1385 / 1280,
  22757. bottom: 0.025
  22758. }
  22759. },
  22760. back: {
  22761. height: math.unit(8 + 8 / 12, "feet"),
  22762. weight: math.unit(130, "kg"),
  22763. name: "Back",
  22764. image: {
  22765. source: "./media/characters/seroko/back.svg",
  22766. extra: 1369 / 1238,
  22767. bottom: 0.018
  22768. }
  22769. },
  22770. frontDressed: {
  22771. height: math.unit(8 + 8 / 12, "feet"),
  22772. weight: math.unit(130, "kg"),
  22773. name: "Front (Dressed)",
  22774. image: {
  22775. source: "./media/characters/seroko/front-dressed.svg",
  22776. extra: 1366 / 1275,
  22777. bottom: 0.03
  22778. }
  22779. },
  22780. },
  22781. [
  22782. {
  22783. name: "Normal",
  22784. height: math.unit(8 + 8 / 12, "feet"),
  22785. default: true
  22786. },
  22787. ]
  22788. ))
  22789. characterMakers.push(() => makeCharacter(
  22790. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22791. {
  22792. front: {
  22793. height: math.unit(5.5, "feet"),
  22794. weight: math.unit(160, "lb"),
  22795. name: "Front",
  22796. image: {
  22797. source: "./media/characters/quatzi/front.svg",
  22798. extra: 2346 / 2242,
  22799. bottom: 0.015
  22800. }
  22801. },
  22802. },
  22803. [
  22804. {
  22805. name: "Normal",
  22806. height: math.unit(5.5, "feet"),
  22807. default: true
  22808. },
  22809. {
  22810. name: "Big",
  22811. height: math.unit(7.7, "feet")
  22812. },
  22813. ]
  22814. ))
  22815. characterMakers.push(() => makeCharacter(
  22816. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22817. {
  22818. front: {
  22819. height: math.unit(5 + 11 / 12, "feet"),
  22820. weight: math.unit(180, "lb"),
  22821. name: "Front",
  22822. image: {
  22823. source: "./media/characters/sen/front.svg",
  22824. extra: 1321 / 1254,
  22825. bottom: 0.015
  22826. }
  22827. },
  22828. side: {
  22829. height: math.unit(5 + 11 / 12, "feet"),
  22830. weight: math.unit(180, "lb"),
  22831. name: "Side",
  22832. image: {
  22833. source: "./media/characters/sen/side.svg",
  22834. extra: 1321 / 1254,
  22835. bottom: 0.007
  22836. }
  22837. },
  22838. back: {
  22839. height: math.unit(5 + 11 / 12, "feet"),
  22840. weight: math.unit(180, "lb"),
  22841. name: "Back",
  22842. image: {
  22843. source: "./media/characters/sen/back.svg",
  22844. extra: 1321 / 1254
  22845. }
  22846. },
  22847. },
  22848. [
  22849. {
  22850. name: "Normal",
  22851. height: math.unit(5 + 11 / 12, "feet"),
  22852. default: true
  22853. },
  22854. ]
  22855. ))
  22856. characterMakers.push(() => makeCharacter(
  22857. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22858. {
  22859. front: {
  22860. height: math.unit(166.6, "cm"),
  22861. weight: math.unit(66.6, "kg"),
  22862. name: "Front",
  22863. image: {
  22864. source: "./media/characters/fruity/front.svg",
  22865. extra: 1510 / 1386,
  22866. bottom: 0.04
  22867. }
  22868. },
  22869. back: {
  22870. height: math.unit(166.6, "cm"),
  22871. weight: math.unit(66.6, "lb"),
  22872. name: "Back",
  22873. image: {
  22874. source: "./media/characters/fruity/back.svg",
  22875. extra: 1563 / 1435,
  22876. bottom: 0.005
  22877. }
  22878. },
  22879. },
  22880. [
  22881. {
  22882. name: "Normal",
  22883. height: math.unit(166.6, "cm"),
  22884. default: true
  22885. },
  22886. {
  22887. name: "Demonic",
  22888. height: math.unit(166.6, "feet")
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22894. {
  22895. side: {
  22896. height: math.unit(10, "feet"),
  22897. weight: math.unit(500, "lb"),
  22898. name: "Side",
  22899. image: {
  22900. source: "./media/characters/zost/side.svg",
  22901. extra: 2870/2533,
  22902. bottom: 252/3122
  22903. }
  22904. },
  22905. mawFront: {
  22906. height: math.unit(1.08, "meters"),
  22907. name: "Maw (Front)",
  22908. image: {
  22909. source: "./media/characters/zost/maw-front.svg"
  22910. }
  22911. },
  22912. mawSide: {
  22913. height: math.unit(2.66, "feet"),
  22914. name: "Maw (Side)",
  22915. image: {
  22916. source: "./media/characters/zost/maw-side.svg"
  22917. }
  22918. },
  22919. wingspan: {
  22920. height: math.unit(7.4, "feet"),
  22921. name: "Wingspan",
  22922. image: {
  22923. source: "./media/characters/zost/wingspan.svg"
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Normal",
  22930. height: math.unit(10, "feet"),
  22931. default: true
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22937. {
  22938. front: {
  22939. height: math.unit(5 + 4 / 12, "feet"),
  22940. weight: math.unit(120, "lb"),
  22941. name: "Front",
  22942. image: {
  22943. source: "./media/characters/luci/front.svg",
  22944. extra: 1985 / 1884,
  22945. bottom: 0.04
  22946. }
  22947. },
  22948. back: {
  22949. height: math.unit(5 + 4 / 12, "feet"),
  22950. weight: math.unit(120, "lb"),
  22951. name: "Back",
  22952. image: {
  22953. source: "./media/characters/luci/back.svg",
  22954. extra: 1892 / 1791,
  22955. bottom: 0.002
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "Normal",
  22962. height: math.unit(5 + 4 / 12, "feet"),
  22963. default: true
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22969. {
  22970. front: {
  22971. height: math.unit(1500, "feet"),
  22972. weight: math.unit(3.8e6, "tons"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/2th/front.svg",
  22976. extra: 3489 / 3350,
  22977. bottom: 0.1
  22978. }
  22979. },
  22980. foot: {
  22981. height: math.unit(461, "feet"),
  22982. name: "Foot",
  22983. image: {
  22984. source: "./media/characters/2th/foot.svg"
  22985. }
  22986. },
  22987. },
  22988. [
  22989. {
  22990. name: "\"Micro\"",
  22991. height: math.unit(15 + 7 / 12, "feet")
  22992. },
  22993. {
  22994. name: "Normal",
  22995. height: math.unit(1500, "feet"),
  22996. default: true
  22997. },
  22998. {
  22999. name: "Macro",
  23000. height: math.unit(5000, "feet")
  23001. },
  23002. {
  23003. name: "Megamacro",
  23004. height: math.unit(15, "miles")
  23005. },
  23006. {
  23007. name: "Gigamacro",
  23008. height: math.unit(4000, "miles")
  23009. },
  23010. {
  23011. name: "Galactic",
  23012. height: math.unit(50, "AU")
  23013. },
  23014. ]
  23015. ))
  23016. characterMakers.push(() => makeCharacter(
  23017. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23018. {
  23019. front: {
  23020. height: math.unit(5 + 6 / 12, "feet"),
  23021. weight: math.unit(220, "lb"),
  23022. name: "Front",
  23023. image: {
  23024. source: "./media/characters/amethyst/front.svg",
  23025. extra: 2078 / 2040,
  23026. bottom: 0.045
  23027. }
  23028. },
  23029. back: {
  23030. height: math.unit(5 + 6 / 12, "feet"),
  23031. weight: math.unit(220, "lb"),
  23032. name: "Back",
  23033. image: {
  23034. source: "./media/characters/amethyst/back.svg",
  23035. extra: 2021 / 1989,
  23036. bottom: 0.02
  23037. }
  23038. },
  23039. },
  23040. [
  23041. {
  23042. name: "Normal",
  23043. height: math.unit(5 + 6 / 12, "feet"),
  23044. default: true
  23045. },
  23046. ]
  23047. ))
  23048. characterMakers.push(() => makeCharacter(
  23049. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23050. {
  23051. front: {
  23052. height: math.unit(4 + 11 / 12, "feet"),
  23053. weight: math.unit(120, "lb"),
  23054. name: "Front",
  23055. image: {
  23056. source: "./media/characters/yumi-akiyama/front.svg",
  23057. extra: 1327 / 1235,
  23058. bottom: 0.02
  23059. }
  23060. },
  23061. back: {
  23062. height: math.unit(4 + 11 / 12, "feet"),
  23063. weight: math.unit(120, "lb"),
  23064. name: "Back",
  23065. image: {
  23066. source: "./media/characters/yumi-akiyama/back.svg",
  23067. extra: 1287 / 1245,
  23068. bottom: 0.002
  23069. }
  23070. },
  23071. },
  23072. [
  23073. {
  23074. name: "Galactic",
  23075. height: math.unit(50, "galaxies"),
  23076. default: true
  23077. },
  23078. {
  23079. name: "Universal",
  23080. height: math.unit(100, "universes")
  23081. },
  23082. ]
  23083. ))
  23084. characterMakers.push(() => makeCharacter(
  23085. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23086. {
  23087. front: {
  23088. height: math.unit(8, "feet"),
  23089. weight: math.unit(500, "lb"),
  23090. name: "Front",
  23091. image: {
  23092. source: "./media/characters/rifter-yrmori/front.svg",
  23093. extra: 1180 / 1125,
  23094. bottom: 0.02
  23095. }
  23096. },
  23097. back: {
  23098. height: math.unit(8, "feet"),
  23099. weight: math.unit(500, "lb"),
  23100. name: "Back",
  23101. image: {
  23102. source: "./media/characters/rifter-yrmori/back.svg",
  23103. extra: 1190 / 1145,
  23104. bottom: 0.001
  23105. }
  23106. },
  23107. wings: {
  23108. height: math.unit(7.75, "feet"),
  23109. weight: math.unit(500, "lb"),
  23110. name: "Wings",
  23111. image: {
  23112. source: "./media/characters/rifter-yrmori/wings.svg",
  23113. extra: 1357 / 1285
  23114. }
  23115. },
  23116. maw: {
  23117. height: math.unit(0.8, "feet"),
  23118. name: "Maw",
  23119. image: {
  23120. source: "./media/characters/rifter-yrmori/maw.svg"
  23121. }
  23122. },
  23123. mawfront: {
  23124. height: math.unit(1.45, "feet"),
  23125. name: "Maw (Front)",
  23126. image: {
  23127. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23128. }
  23129. },
  23130. },
  23131. [
  23132. {
  23133. name: "Normal",
  23134. height: math.unit(8, "feet"),
  23135. default: true
  23136. },
  23137. {
  23138. name: "Macro",
  23139. height: math.unit(42, "meters")
  23140. },
  23141. ]
  23142. ))
  23143. characterMakers.push(() => makeCharacter(
  23144. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23145. {
  23146. were: {
  23147. height: math.unit(25 + 6 / 12, "feet"),
  23148. weight: math.unit(10000, "lb"),
  23149. name: "Were",
  23150. image: {
  23151. source: "./media/characters/tahajin/were.svg",
  23152. extra: 801 / 770,
  23153. bottom: 0.042
  23154. }
  23155. },
  23156. aquatic: {
  23157. height: math.unit(6 + 4 / 12, "feet"),
  23158. weight: math.unit(160, "lb"),
  23159. name: "Aquatic",
  23160. image: {
  23161. source: "./media/characters/tahajin/aquatic.svg",
  23162. extra: 572 / 542,
  23163. bottom: 0.04
  23164. }
  23165. },
  23166. chow: {
  23167. height: math.unit(8 + 11 / 12, "feet"),
  23168. weight: math.unit(450, "lb"),
  23169. name: "Chow",
  23170. image: {
  23171. source: "./media/characters/tahajin/chow.svg",
  23172. extra: 660 / 640,
  23173. bottom: 0.015
  23174. }
  23175. },
  23176. demiNaga: {
  23177. height: math.unit(6 + 8 / 12, "feet"),
  23178. weight: math.unit(300, "lb"),
  23179. name: "Demi Naga",
  23180. image: {
  23181. source: "./media/characters/tahajin/demi-naga.svg",
  23182. extra: 643 / 615,
  23183. bottom: 0.1
  23184. }
  23185. },
  23186. data: {
  23187. height: math.unit(5, "inches"),
  23188. weight: math.unit(0.1, "lb"),
  23189. name: "Data",
  23190. image: {
  23191. source: "./media/characters/tahajin/data.svg"
  23192. }
  23193. },
  23194. fluu: {
  23195. height: math.unit(5 + 7 / 12, "feet"),
  23196. weight: math.unit(140, "lb"),
  23197. name: "Fluu",
  23198. image: {
  23199. source: "./media/characters/tahajin/fluu.svg",
  23200. extra: 628 / 592,
  23201. bottom: 0.02
  23202. }
  23203. },
  23204. starWarrior: {
  23205. height: math.unit(4 + 5 / 12, "feet"),
  23206. weight: math.unit(50, "lb"),
  23207. name: "Star Warrior",
  23208. image: {
  23209. source: "./media/characters/tahajin/star-warrior.svg"
  23210. }
  23211. },
  23212. },
  23213. [
  23214. {
  23215. name: "Normal",
  23216. height: math.unit(25 + 6 / 12, "feet"),
  23217. default: true
  23218. },
  23219. ]
  23220. ))
  23221. characterMakers.push(() => makeCharacter(
  23222. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23223. {
  23224. front: {
  23225. height: math.unit(8, "feet"),
  23226. weight: math.unit(350, "lb"),
  23227. name: "Front",
  23228. image: {
  23229. source: "./media/characters/gabira/front.svg",
  23230. extra: 1261/1154,
  23231. bottom: 51/1312
  23232. }
  23233. },
  23234. back: {
  23235. height: math.unit(8, "feet"),
  23236. weight: math.unit(350, "lb"),
  23237. name: "Back",
  23238. image: {
  23239. source: "./media/characters/gabira/back.svg",
  23240. extra: 1265/1163,
  23241. bottom: 46/1311
  23242. }
  23243. },
  23244. head: {
  23245. height: math.unit(2.85, "feet"),
  23246. name: "Head",
  23247. image: {
  23248. source: "./media/characters/gabira/head.svg"
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Normal",
  23255. height: math.unit(8, "feet"),
  23256. default: true
  23257. },
  23258. ]
  23259. ))
  23260. characterMakers.push(() => makeCharacter(
  23261. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23262. {
  23263. front: {
  23264. height: math.unit(5 + 3 / 12, "feet"),
  23265. weight: math.unit(137, "lb"),
  23266. name: "Front",
  23267. image: {
  23268. source: "./media/characters/sasha-katraine/front.svg",
  23269. extra: 1745/1694,
  23270. bottom: 37/1782
  23271. }
  23272. },
  23273. back: {
  23274. height: math.unit(5 + 3 / 12, "feet"),
  23275. weight: math.unit(137, "lb"),
  23276. name: "Back",
  23277. image: {
  23278. source: "./media/characters/sasha-katraine/back.svg",
  23279. extra: 1776/1699,
  23280. bottom: 26/1802
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Micro",
  23287. height: math.unit(5, "inches")
  23288. },
  23289. {
  23290. name: "Normal",
  23291. height: math.unit(5 + 3 / 12, "feet"),
  23292. default: true
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23298. {
  23299. side: {
  23300. height: math.unit(4, "inches"),
  23301. weight: math.unit(200, "grams"),
  23302. name: "Side",
  23303. image: {
  23304. source: "./media/characters/der/side.svg",
  23305. extra: 719 / 400,
  23306. bottom: 30.6 / 749.9187
  23307. }
  23308. },
  23309. },
  23310. [
  23311. {
  23312. name: "Micro",
  23313. height: math.unit(4, "inches"),
  23314. default: true
  23315. },
  23316. ]
  23317. ))
  23318. characterMakers.push(() => makeCharacter(
  23319. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23320. {
  23321. side: {
  23322. height: math.unit(30, "meters"),
  23323. weight: math.unit(700, "tonnes"),
  23324. name: "Side",
  23325. image: {
  23326. source: "./media/characters/fixerdragon/side.svg",
  23327. extra: (1293.0514 - 116.03) / 1106.86,
  23328. bottom: 116.03 / 1293.0514
  23329. }
  23330. },
  23331. },
  23332. [
  23333. {
  23334. name: "Planck",
  23335. height: math.unit(1.6e-35, "meters")
  23336. },
  23337. {
  23338. name: "Micro",
  23339. height: math.unit(0.4, "meters")
  23340. },
  23341. {
  23342. name: "Normal",
  23343. height: math.unit(30, "meters"),
  23344. default: true
  23345. },
  23346. {
  23347. name: "Megamacro",
  23348. height: math.unit(1.2, "megameters")
  23349. },
  23350. {
  23351. name: "Teramacro",
  23352. height: math.unit(130, "terameters")
  23353. },
  23354. {
  23355. name: "Yottamacro",
  23356. height: math.unit(6200, "yottameters")
  23357. },
  23358. ]
  23359. ));
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23362. {
  23363. front: {
  23364. height: math.unit(8, "feet"),
  23365. weight: math.unit(250, "lb"),
  23366. name: "Front",
  23367. image: {
  23368. source: "./media/characters/kite/front.svg",
  23369. extra: 2796 / 2659,
  23370. bottom: 0.002
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(8, "feet"),
  23378. default: true
  23379. },
  23380. {
  23381. name: "Macro",
  23382. height: math.unit(360, "feet")
  23383. },
  23384. {
  23385. name: "Megamacro",
  23386. height: math.unit(1500, "feet")
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23392. {
  23393. front: {
  23394. height: math.unit(5 + 11/12, "feet"),
  23395. weight: math.unit(170, "lb"),
  23396. name: "Front",
  23397. image: {
  23398. source: "./media/characters/poojawa-vynar/front.svg",
  23399. extra: 1735/1585,
  23400. bottom: 96/1831
  23401. }
  23402. },
  23403. back: {
  23404. height: math.unit(5 + 11/12, "feet"),
  23405. weight: math.unit(170, "lb"),
  23406. name: "Back",
  23407. image: {
  23408. source: "./media/characters/poojawa-vynar/back.svg",
  23409. extra: 1749/1607,
  23410. bottom: 28/1777
  23411. }
  23412. },
  23413. male: {
  23414. height: math.unit(5 + 11/12, "feet"),
  23415. weight: math.unit(170, "lb"),
  23416. name: "Male",
  23417. image: {
  23418. source: "./media/characters/poojawa-vynar/male.svg",
  23419. extra: 1855/1713,
  23420. bottom: 63/1918
  23421. }
  23422. },
  23423. taur: {
  23424. height: math.unit(5 + 11/12, "feet"),
  23425. weight: math.unit(170, "lb"),
  23426. name: "Taur",
  23427. image: {
  23428. source: "./media/characters/poojawa-vynar/taur.svg",
  23429. extra: 1151/1059,
  23430. bottom: 356/1507
  23431. }
  23432. },
  23433. frontDressed: {
  23434. height: math.unit(5 + 11/12, "feet"),
  23435. weight: math.unit(170, "lb"),
  23436. name: "Front (Dressed)",
  23437. image: {
  23438. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23439. extra: 1735/1585,
  23440. bottom: 96/1831
  23441. }
  23442. },
  23443. backDressed: {
  23444. height: math.unit(5 + 11/12, "feet"),
  23445. weight: math.unit(170, "lb"),
  23446. name: "Back (Dressed)",
  23447. image: {
  23448. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23449. extra: 1749/1607,
  23450. bottom: 28/1777
  23451. }
  23452. },
  23453. maleDressed: {
  23454. height: math.unit(5 + 11/12, "feet"),
  23455. weight: math.unit(170, "lb"),
  23456. name: "Male (Dressed)",
  23457. image: {
  23458. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23459. extra: 1855/1713,
  23460. bottom: 63/1918
  23461. }
  23462. },
  23463. taurDressed: {
  23464. height: math.unit(5 + 11/12, "feet"),
  23465. weight: math.unit(170, "lb"),
  23466. name: "Taur (Dressed)",
  23467. image: {
  23468. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23469. extra: 1151/1059,
  23470. bottom: 356/1507
  23471. }
  23472. },
  23473. maw: {
  23474. height: math.unit(1.46, "feet"),
  23475. name: "Maw",
  23476. image: {
  23477. source: "./media/characters/poojawa-vynar/maw.svg"
  23478. }
  23479. },
  23480. head: {
  23481. height: math.unit(2.34, "feet"),
  23482. name: "Head",
  23483. image: {
  23484. source: "./media/characters/poojawa-vynar/head.svg"
  23485. }
  23486. },
  23487. paw: {
  23488. height: math.unit(1.61, "feet"),
  23489. name: "Paw",
  23490. image: {
  23491. source: "./media/characters/poojawa-vynar/paw.svg"
  23492. }
  23493. },
  23494. pawToering: {
  23495. height: math.unit(1.72, "feet"),
  23496. name: "Paw (Toering)",
  23497. image: {
  23498. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23499. }
  23500. },
  23501. toering: {
  23502. height: math.unit(2.9, "inches"),
  23503. name: "Toering",
  23504. image: {
  23505. source: "./media/characters/poojawa-vynar/toering.svg"
  23506. }
  23507. },
  23508. shaft: {
  23509. height: math.unit(0.625, "feet"),
  23510. name: "Shaft",
  23511. image: {
  23512. source: "./media/characters/poojawa-vynar/shaft.svg"
  23513. }
  23514. },
  23515. spade: {
  23516. height: math.unit(0.42, "feet"),
  23517. name: "Spade",
  23518. image: {
  23519. source: "./media/characters/poojawa-vynar/spade.svg"
  23520. }
  23521. },
  23522. },
  23523. [
  23524. {
  23525. name: "Shortstack",
  23526. height: math.unit(4, "feet")
  23527. },
  23528. {
  23529. name: "Normal",
  23530. height: math.unit(5 + 11 / 12, "feet"),
  23531. default: true
  23532. },
  23533. {
  23534. name: "Tauric",
  23535. height: math.unit(4, "meters")
  23536. },
  23537. ]
  23538. ))
  23539. characterMakers.push(() => makeCharacter(
  23540. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23541. {
  23542. front: {
  23543. height: math.unit(293, "meters"),
  23544. weight: math.unit(70400, "tons"),
  23545. name: "Front",
  23546. image: {
  23547. source: "./media/characters/violette/front.svg",
  23548. extra: 1227 / 1180,
  23549. bottom: 0.005
  23550. }
  23551. },
  23552. back: {
  23553. height: math.unit(293, "meters"),
  23554. weight: math.unit(70400, "tons"),
  23555. name: "Back",
  23556. image: {
  23557. source: "./media/characters/violette/back.svg",
  23558. extra: 1227 / 1180,
  23559. bottom: 0.005
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Macro",
  23566. height: math.unit(293, "meters"),
  23567. default: true
  23568. },
  23569. ]
  23570. ))
  23571. characterMakers.push(() => makeCharacter(
  23572. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23573. {
  23574. front: {
  23575. height: math.unit(1050, "feet"),
  23576. weight: math.unit(200000, "tons"),
  23577. name: "Front",
  23578. image: {
  23579. source: "./media/characters/alessandra/front.svg",
  23580. extra: 960 / 912,
  23581. bottom: 0.06
  23582. }
  23583. },
  23584. },
  23585. [
  23586. {
  23587. name: "Macro",
  23588. height: math.unit(1050, "feet")
  23589. },
  23590. {
  23591. name: "Macro+",
  23592. height: math.unit(900, "meters"),
  23593. default: true
  23594. },
  23595. ]
  23596. ))
  23597. characterMakers.push(() => makeCharacter(
  23598. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23599. {
  23600. front: {
  23601. height: math.unit(5, "feet"),
  23602. weight: math.unit(187, "lb"),
  23603. name: "Front",
  23604. image: {
  23605. source: "./media/characters/person/front.svg",
  23606. extra: 3087 / 2945,
  23607. bottom: 91 / 3181
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Micro",
  23614. height: math.unit(3, "inches")
  23615. },
  23616. {
  23617. name: "Normal",
  23618. height: math.unit(5, "feet"),
  23619. default: true
  23620. },
  23621. {
  23622. name: "Macro",
  23623. height: math.unit(90, "feet")
  23624. },
  23625. {
  23626. name: "Max Size",
  23627. height: math.unit(280, "feet")
  23628. },
  23629. ]
  23630. ))
  23631. characterMakers.push(() => makeCharacter(
  23632. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23633. {
  23634. front: {
  23635. height: math.unit(4.5, "meters"),
  23636. weight: math.unit(3200, "lb"),
  23637. name: "Front",
  23638. image: {
  23639. source: "./media/characters/ty/front.svg",
  23640. extra: 1038 / 960,
  23641. bottom: 31.156 / 1068
  23642. }
  23643. },
  23644. back: {
  23645. height: math.unit(4.5, "meters"),
  23646. weight: math.unit(3200, "lb"),
  23647. name: "Back",
  23648. image: {
  23649. source: "./media/characters/ty/back.svg",
  23650. extra: 1044 / 966,
  23651. bottom: 7.48 / 1049
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Normal",
  23658. height: math.unit(4.5, "meters"),
  23659. default: true
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(5 + 4 / 12, "feet"),
  23668. weight: math.unit(115, "lb"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/rocky/front.svg",
  23672. extra: 1012 / 975,
  23673. bottom: 54 / 1066
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Normal",
  23680. height: math.unit(5 + 4 / 12, "feet"),
  23681. default: true
  23682. },
  23683. ]
  23684. ))
  23685. characterMakers.push(() => makeCharacter(
  23686. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23687. {
  23688. upright: {
  23689. height: math.unit(6, "meters"),
  23690. weight: math.unit(4000, "kg"),
  23691. name: "Upright",
  23692. image: {
  23693. source: "./media/characters/ruin/upright.svg",
  23694. extra: 668 / 661,
  23695. bottom: 42 / 799.8396
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Normal",
  23702. height: math.unit(6, "meters"),
  23703. default: true
  23704. },
  23705. ]
  23706. ))
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23709. {
  23710. front: {
  23711. height: math.unit(5, "feet"),
  23712. weight: math.unit(106, "lb"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/robin/front.svg",
  23716. extra: 862 / 799,
  23717. bottom: 42.4 / 914.8856
  23718. }
  23719. },
  23720. },
  23721. [
  23722. {
  23723. name: "Normal",
  23724. height: math.unit(5, "feet"),
  23725. default: true
  23726. },
  23727. ]
  23728. ))
  23729. characterMakers.push(() => makeCharacter(
  23730. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23731. {
  23732. side: {
  23733. height: math.unit(3, "feet"),
  23734. weight: math.unit(225, "lb"),
  23735. name: "Side",
  23736. image: {
  23737. source: "./media/characters/saian/side.svg",
  23738. extra: 566 / 356,
  23739. bottom: 79.7 / 643
  23740. }
  23741. },
  23742. maw: {
  23743. height: math.unit(2.85, "feet"),
  23744. name: "Maw",
  23745. image: {
  23746. source: "./media/characters/saian/maw.svg"
  23747. }
  23748. },
  23749. },
  23750. [
  23751. {
  23752. name: "Normal",
  23753. height: math.unit(3, "feet"),
  23754. default: true
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23760. {
  23761. side: {
  23762. height: math.unit(8, "feet"),
  23763. weight: math.unit(300, "lb"),
  23764. name: "Side",
  23765. image: {
  23766. source: "./media/characters/equus-silvermane/side.svg",
  23767. extra: 2176 / 2050,
  23768. bottom: 65.7 / 2245
  23769. }
  23770. },
  23771. front: {
  23772. height: math.unit(8, "feet"),
  23773. weight: math.unit(300, "lb"),
  23774. name: "Front",
  23775. image: {
  23776. source: "./media/characters/equus-silvermane/front.svg",
  23777. extra: 4633 / 4400,
  23778. bottom: 71.3 / 4706.915
  23779. }
  23780. },
  23781. sideStepping: {
  23782. height: math.unit(8, "feet"),
  23783. weight: math.unit(300, "lb"),
  23784. name: "Side (Stepping)",
  23785. image: {
  23786. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23787. extra: 1968 / 1860,
  23788. bottom: 16.4 / 1989
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Normal",
  23795. height: math.unit(8, "feet")
  23796. },
  23797. {
  23798. name: "Minimacro",
  23799. height: math.unit(75, "feet"),
  23800. default: true
  23801. },
  23802. {
  23803. name: "Macro",
  23804. height: math.unit(150, "feet")
  23805. },
  23806. {
  23807. name: "Macro+",
  23808. height: math.unit(1000, "feet")
  23809. },
  23810. {
  23811. name: "Megamacro",
  23812. height: math.unit(1, "mile")
  23813. },
  23814. ]
  23815. ))
  23816. characterMakers.push(() => makeCharacter(
  23817. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23818. {
  23819. side: {
  23820. height: math.unit(20, "feet"),
  23821. weight: math.unit(30000, "kg"),
  23822. name: "Side",
  23823. image: {
  23824. source: "./media/characters/windar/side.svg",
  23825. extra: 1491 / 1248,
  23826. bottom: 82.56 / 1568
  23827. }
  23828. },
  23829. },
  23830. [
  23831. {
  23832. name: "Normal",
  23833. height: math.unit(20, "feet"),
  23834. default: true
  23835. },
  23836. ]
  23837. ))
  23838. characterMakers.push(() => makeCharacter(
  23839. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23840. {
  23841. side: {
  23842. height: math.unit(15.66, "feet"),
  23843. weight: math.unit(150, "lb"),
  23844. name: "Side",
  23845. image: {
  23846. source: "./media/characters/melody/side.svg",
  23847. extra: 1097 / 944,
  23848. bottom: 11.8 / 1109
  23849. }
  23850. },
  23851. sideOutfit: {
  23852. height: math.unit(15.66, "feet"),
  23853. weight: math.unit(150, "lb"),
  23854. name: "Side (Outfit)",
  23855. image: {
  23856. source: "./media/characters/melody/side-outfit.svg",
  23857. extra: 1097 / 944,
  23858. bottom: 11.8 / 1109
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Normal",
  23865. height: math.unit(15.66, "feet"),
  23866. default: true
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23872. {
  23873. armoredFront: {
  23874. height: math.unit(8, "feet"),
  23875. weight: math.unit(325, "lb"),
  23876. name: "Front",
  23877. image: {
  23878. source: "./media/characters/windera/armored-front.svg",
  23879. extra: 1830/1598,
  23880. bottom: 151/1981
  23881. },
  23882. form: "armored",
  23883. default: true
  23884. },
  23885. macroFront: {
  23886. height: math.unit(70, "feet"),
  23887. weight: math.unit(315453, "lb"),
  23888. name: "Front",
  23889. image: {
  23890. source: "./media/characters/windera/macro-front.svg",
  23891. extra: 963/883,
  23892. bottom: 23/986
  23893. },
  23894. form: "macro",
  23895. default: true
  23896. },
  23897. },
  23898. [
  23899. {
  23900. name: "Normal",
  23901. height: math.unit(8, "feet"),
  23902. default: true,
  23903. form: "armored"
  23904. },
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(70, "feet"),
  23908. default: true,
  23909. form: "macro"
  23910. },
  23911. ],
  23912. {
  23913. "armored": {
  23914. name: "Armored",
  23915. default: true
  23916. },
  23917. "macro": {
  23918. name: "Macro",
  23919. },
  23920. }
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23924. {
  23925. front: {
  23926. height: math.unit(28.75, "feet"),
  23927. weight: math.unit(2000, "kg"),
  23928. name: "Front",
  23929. image: {
  23930. source: "./media/characters/sonear/front.svg",
  23931. extra: 1041.1 / 964.9,
  23932. bottom: 53.7 / 1096.6
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(28.75, "feet"),
  23940. default: true
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23946. {
  23947. side: {
  23948. height: math.unit(25.5, "feet"),
  23949. weight: math.unit(23000, "kg"),
  23950. name: "Side",
  23951. image: {
  23952. source: "./media/characters/kanara/side.svg"
  23953. }
  23954. },
  23955. },
  23956. [
  23957. {
  23958. name: "Normal",
  23959. height: math.unit(25.5, "feet"),
  23960. default: true
  23961. },
  23962. ]
  23963. ))
  23964. characterMakers.push(() => makeCharacter(
  23965. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23966. {
  23967. side: {
  23968. height: math.unit(10, "feet"),
  23969. weight: math.unit(1000, "kg"),
  23970. name: "Side",
  23971. image: {
  23972. source: "./media/characters/ereus/side.svg",
  23973. extra: 1157 / 959,
  23974. bottom: 153 / 1312.5
  23975. }
  23976. },
  23977. },
  23978. [
  23979. {
  23980. name: "Normal",
  23981. height: math.unit(10, "feet"),
  23982. default: true
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23988. {
  23989. side: {
  23990. height: math.unit(4.5, "feet"),
  23991. weight: math.unit(500, "lb"),
  23992. name: "Side",
  23993. image: {
  23994. source: "./media/characters/e-ter/side.svg",
  23995. extra: 1550 / 1248,
  23996. bottom: 146 / 1694
  23997. }
  23998. },
  23999. },
  24000. [
  24001. {
  24002. name: "Normal",
  24003. height: math.unit(4.5, "feet"),
  24004. default: true
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24010. {
  24011. side: {
  24012. height: math.unit(9.7, "feet"),
  24013. weight: math.unit(4000, "kg"),
  24014. name: "Side",
  24015. image: {
  24016. source: "./media/characters/yamie/side.svg"
  24017. }
  24018. },
  24019. },
  24020. [
  24021. {
  24022. name: "Normal",
  24023. height: math.unit(9.7, "feet"),
  24024. default: true
  24025. },
  24026. ]
  24027. ))
  24028. characterMakers.push(() => makeCharacter(
  24029. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24030. {
  24031. front: {
  24032. height: math.unit(50, "feet"),
  24033. weight: math.unit(50000, "kg"),
  24034. name: "Front",
  24035. image: {
  24036. source: "./media/characters/anders/front.svg",
  24037. extra: 570 / 539,
  24038. bottom: 14.7 / 586.7
  24039. }
  24040. },
  24041. },
  24042. [
  24043. {
  24044. name: "Large",
  24045. height: math.unit(50, "feet")
  24046. },
  24047. {
  24048. name: "Macro",
  24049. height: math.unit(2000, "feet"),
  24050. default: true
  24051. },
  24052. {
  24053. name: "Megamacro",
  24054. height: math.unit(12, "miles")
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24060. {
  24061. front: {
  24062. height: math.unit(7 + 2 / 12, "feet"),
  24063. weight: math.unit(300, "lb"),
  24064. name: "Front",
  24065. image: {
  24066. source: "./media/characters/reban/front.svg",
  24067. extra: 1287/1212,
  24068. bottom: 148/1435
  24069. }
  24070. },
  24071. head: {
  24072. height: math.unit(1.95, "feet"),
  24073. name: "Head",
  24074. image: {
  24075. source: "./media/characters/reban/head.svg"
  24076. }
  24077. },
  24078. maw: {
  24079. height: math.unit(0.95, "feet"),
  24080. name: "Maw",
  24081. image: {
  24082. source: "./media/characters/reban/maw.svg"
  24083. }
  24084. },
  24085. foot: {
  24086. height: math.unit(1.65, "feet"),
  24087. name: "Foot",
  24088. image: {
  24089. source: "./media/characters/reban/foot.svg"
  24090. }
  24091. },
  24092. dick: {
  24093. height: math.unit(7 / 5, "feet"),
  24094. name: "Dick",
  24095. image: {
  24096. source: "./media/characters/reban/dick.svg"
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Natural Height",
  24103. height: math.unit(7 + 2 / 12, "feet")
  24104. },
  24105. {
  24106. name: "Macro",
  24107. height: math.unit(500, "feet"),
  24108. default: true
  24109. },
  24110. {
  24111. name: "Canon Height",
  24112. height: math.unit(50, "AU")
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(6, "feet"),
  24121. weight: math.unit(150, "lb"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/terrance-keayes/front.svg",
  24125. extra: 1.005,
  24126. bottom: 151 / 1615
  24127. }
  24128. },
  24129. side: {
  24130. height: math.unit(6, "feet"),
  24131. weight: math.unit(150, "lb"),
  24132. name: "Side",
  24133. image: {
  24134. source: "./media/characters/terrance-keayes/side.svg",
  24135. extra: 1.005,
  24136. bottom: 129.4 / 1544
  24137. }
  24138. },
  24139. back: {
  24140. height: math.unit(6, "feet"),
  24141. weight: math.unit(150, "lb"),
  24142. name: "Back",
  24143. image: {
  24144. source: "./media/characters/terrance-keayes/back.svg",
  24145. extra: 1.005,
  24146. bottom: 58.4 / 1557.3
  24147. }
  24148. },
  24149. dick: {
  24150. height: math.unit(6 * 0.208, "feet"),
  24151. name: "Dick",
  24152. image: {
  24153. source: "./media/characters/terrance-keayes/dick.svg"
  24154. }
  24155. },
  24156. },
  24157. [
  24158. {
  24159. name: "Canon Height",
  24160. height: math.unit(35, "miles"),
  24161. default: true
  24162. },
  24163. ]
  24164. ))
  24165. characterMakers.push(() => makeCharacter(
  24166. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24167. {
  24168. front: {
  24169. height: math.unit(6, "feet"),
  24170. weight: math.unit(150, "lb"),
  24171. name: "Front",
  24172. image: {
  24173. source: "./media/characters/ofelia/front.svg",
  24174. extra: 1130/1117,
  24175. bottom: 91/1221
  24176. }
  24177. },
  24178. back: {
  24179. height: math.unit(6, "feet"),
  24180. weight: math.unit(150, "lb"),
  24181. name: "Back",
  24182. image: {
  24183. source: "./media/characters/ofelia/back.svg",
  24184. extra: 1172/1159,
  24185. bottom: 28/1200
  24186. }
  24187. },
  24188. maw: {
  24189. height: math.unit(1, "feet"),
  24190. name: "Maw",
  24191. image: {
  24192. source: "./media/characters/ofelia/maw.svg"
  24193. }
  24194. },
  24195. foot: {
  24196. height: math.unit(1.949, "feet"),
  24197. name: "Foot",
  24198. image: {
  24199. source: "./media/characters/ofelia/foot.svg"
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Canon Height",
  24206. height: math.unit(2000, "miles"),
  24207. default: true
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24213. {
  24214. front: {
  24215. height: math.unit(6, "feet"),
  24216. weight: math.unit(150, "lb"),
  24217. name: "Front",
  24218. image: {
  24219. source: "./media/characters/samuel/front.svg",
  24220. extra: 265 / 258,
  24221. bottom: 2 / 266.1566
  24222. }
  24223. },
  24224. },
  24225. [
  24226. {
  24227. name: "Macro",
  24228. height: math.unit(100, "feet"),
  24229. default: true
  24230. },
  24231. {
  24232. name: "Full Size",
  24233. height: math.unit(1000, "miles")
  24234. },
  24235. ]
  24236. ))
  24237. characterMakers.push(() => makeCharacter(
  24238. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24239. {
  24240. front: {
  24241. height: math.unit(6, "feet"),
  24242. weight: math.unit(300, "lb"),
  24243. name: "Front",
  24244. image: {
  24245. source: "./media/characters/beishir-kiel/front.svg",
  24246. extra: 569 / 547,
  24247. bottom: 41.9 / 609
  24248. }
  24249. },
  24250. maw: {
  24251. height: math.unit(6 * 0.202, "feet"),
  24252. name: "Maw",
  24253. image: {
  24254. source: "./media/characters/beishir-kiel/maw.svg"
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Macro",
  24261. height: math.unit(300, "feet"),
  24262. default: true
  24263. },
  24264. ]
  24265. ))
  24266. characterMakers.push(() => makeCharacter(
  24267. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24268. {
  24269. front: {
  24270. height: math.unit(5 + 7/12, "feet"),
  24271. weight: math.unit(120, "lb"),
  24272. name: "Front",
  24273. image: {
  24274. source: "./media/characters/logan-grey/front.svg",
  24275. extra: 1836/1738,
  24276. bottom: 108/1944
  24277. }
  24278. },
  24279. back: {
  24280. height: math.unit(5 + 7/12, "feet"),
  24281. weight: math.unit(120, "lb"),
  24282. name: "Back",
  24283. image: {
  24284. source: "./media/characters/logan-grey/back.svg",
  24285. extra: 1880/1794,
  24286. bottom: 24/1904
  24287. }
  24288. },
  24289. frontSfw: {
  24290. height: math.unit(5 + 7/12, "feet"),
  24291. weight: math.unit(120, "lb"),
  24292. name: "Front (SFW)",
  24293. image: {
  24294. source: "./media/characters/logan-grey/front-sfw.svg",
  24295. extra: 1836/1738,
  24296. bottom: 108/1944
  24297. }
  24298. },
  24299. backSfw: {
  24300. height: math.unit(5 + 7/12, "feet"),
  24301. weight: math.unit(120, "lb"),
  24302. name: "Back (SFW)",
  24303. image: {
  24304. source: "./media/characters/logan-grey/back-sfw.svg",
  24305. extra: 1880/1794,
  24306. bottom: 24/1904
  24307. }
  24308. },
  24309. hands: {
  24310. height: math.unit(0.84, "feet"),
  24311. name: "Hands",
  24312. image: {
  24313. source: "./media/characters/logan-grey/hands.svg"
  24314. }
  24315. },
  24316. paws: {
  24317. height: math.unit(0.72, "feet"),
  24318. name: "Paws",
  24319. image: {
  24320. source: "./media/characters/logan-grey/paws.svg"
  24321. }
  24322. },
  24323. cock: {
  24324. height: math.unit(1.45, "feet"),
  24325. name: "Cock",
  24326. image: {
  24327. source: "./media/characters/logan-grey/cock.svg"
  24328. }
  24329. },
  24330. cockAlt: {
  24331. height: math.unit(1.437, "feet"),
  24332. name: "Cock (alt)",
  24333. image: {
  24334. source: "./media/characters/logan-grey/cock-alt.svg"
  24335. }
  24336. },
  24337. },
  24338. [
  24339. {
  24340. name: "Normal",
  24341. height: math.unit(5 + 8 / 12, "feet")
  24342. },
  24343. {
  24344. name: "The 500 Foot Femboy",
  24345. height: math.unit(500, "feet"),
  24346. default: true
  24347. },
  24348. {
  24349. name: "Megmacro",
  24350. height: math.unit(20, "miles")
  24351. },
  24352. ]
  24353. ))
  24354. characterMakers.push(() => makeCharacter(
  24355. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24356. {
  24357. front: {
  24358. height: math.unit(8 + 2 / 12, "feet"),
  24359. weight: math.unit(275, "lb"),
  24360. name: "Front",
  24361. image: {
  24362. source: "./media/characters/draganta/front.svg",
  24363. extra: 1177 / 1135,
  24364. bottom: 33.46 / 1212.1
  24365. }
  24366. },
  24367. },
  24368. [
  24369. {
  24370. name: "Normal",
  24371. height: math.unit(8 + 6 / 12, "feet"),
  24372. default: true
  24373. },
  24374. {
  24375. name: "Macro",
  24376. height: math.unit(150, "feet")
  24377. },
  24378. {
  24379. name: "Megamacro",
  24380. height: math.unit(1000, "miles")
  24381. },
  24382. ]
  24383. ))
  24384. characterMakers.push(() => makeCharacter(
  24385. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24386. {
  24387. front: {
  24388. height: math.unit(1.72, "m"),
  24389. weight: math.unit(80, "lb"),
  24390. name: "Front",
  24391. image: {
  24392. source: "./media/characters/voski/front.svg",
  24393. extra: 2076.22 / 2022.4,
  24394. bottom: 102.7 / 2177.3866
  24395. }
  24396. },
  24397. frontFlaccid: {
  24398. height: math.unit(1.72, "m"),
  24399. weight: math.unit(80, "lb"),
  24400. name: "Front (Flaccid)",
  24401. image: {
  24402. source: "./media/characters/voski/front-flaccid.svg",
  24403. extra: 2076.22 / 2022.4,
  24404. bottom: 102.7 / 2177.3866
  24405. }
  24406. },
  24407. frontErect: {
  24408. height: math.unit(1.72, "m"),
  24409. weight: math.unit(80, "lb"),
  24410. name: "Front (Erect)",
  24411. image: {
  24412. source: "./media/characters/voski/front-erect.svg",
  24413. extra: 2076.22 / 2022.4,
  24414. bottom: 102.7 / 2177.3866
  24415. }
  24416. },
  24417. back: {
  24418. height: math.unit(1.72, "m"),
  24419. weight: math.unit(80, "lb"),
  24420. name: "Back",
  24421. image: {
  24422. source: "./media/characters/voski/back.svg",
  24423. extra: 2104 / 2051,
  24424. bottom: 10.45 / 2113.63
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Normal",
  24431. height: math.unit(1.72, "m")
  24432. },
  24433. {
  24434. name: "Macro",
  24435. height: math.unit(55, "m"),
  24436. default: true
  24437. },
  24438. {
  24439. name: "Macro+",
  24440. height: math.unit(300, "m")
  24441. },
  24442. {
  24443. name: "Macro++",
  24444. height: math.unit(700, "m")
  24445. },
  24446. {
  24447. name: "Macro+++",
  24448. height: math.unit(4500, "m")
  24449. },
  24450. {
  24451. name: "Macro++++",
  24452. height: math.unit(45, "km")
  24453. },
  24454. {
  24455. name: "Macro+++++",
  24456. height: math.unit(1220, "km")
  24457. },
  24458. ]
  24459. ))
  24460. characterMakers.push(() => makeCharacter(
  24461. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24462. {
  24463. front: {
  24464. height: math.unit(2.3, "m"),
  24465. weight: math.unit(304, "kg"),
  24466. name: "Front",
  24467. image: {
  24468. source: "./media/characters/icowom-lee/front.svg",
  24469. extra: 985 / 955,
  24470. bottom: 25.4 / 1012
  24471. }
  24472. },
  24473. fronttentacles: {
  24474. height: math.unit(2.3, "m"),
  24475. weight: math.unit(304, "kg"),
  24476. name: "Front-tentacles",
  24477. image: {
  24478. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24479. extra: 985 / 955,
  24480. bottom: 25.4 / 1012
  24481. }
  24482. },
  24483. back: {
  24484. height: math.unit(2.3, "m"),
  24485. weight: math.unit(304, "kg"),
  24486. name: "Back",
  24487. image: {
  24488. source: "./media/characters/icowom-lee/back.svg",
  24489. extra: 975 / 954,
  24490. bottom: 9.5 / 985
  24491. }
  24492. },
  24493. backtentacles: {
  24494. height: math.unit(2.3, "m"),
  24495. weight: math.unit(304, "kg"),
  24496. name: "Back-tentacles",
  24497. image: {
  24498. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24499. extra: 975 / 954,
  24500. bottom: 9.5 / 985
  24501. }
  24502. },
  24503. frontDressed: {
  24504. height: math.unit(2.3, "m"),
  24505. weight: math.unit(304, "kg"),
  24506. name: "Front (Dressed)",
  24507. image: {
  24508. source: "./media/characters/icowom-lee/front-dressed.svg",
  24509. extra: 3076 / 2933,
  24510. bottom: 51.4 / 3125.1889
  24511. }
  24512. },
  24513. rump: {
  24514. height: math.unit(0.776, "meters"),
  24515. name: "Rump",
  24516. image: {
  24517. source: "./media/characters/icowom-lee/rump.svg"
  24518. }
  24519. },
  24520. genitals: {
  24521. height: math.unit(0.78, "meters"),
  24522. name: "Genitals",
  24523. image: {
  24524. source: "./media/characters/icowom-lee/genitals.svg"
  24525. }
  24526. },
  24527. },
  24528. [
  24529. {
  24530. name: "Normal",
  24531. height: math.unit(2.3, "meters"),
  24532. default: true
  24533. },
  24534. {
  24535. name: "Macro",
  24536. height: math.unit(94, "meters"),
  24537. default: true
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24543. {
  24544. front: {
  24545. height: math.unit(22, "meters"),
  24546. weight: math.unit(21000, "kg"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/shock-diamond/front.svg",
  24550. extra: 2204 / 2053,
  24551. bottom: 65 / 2239.47
  24552. }
  24553. },
  24554. frontNude: {
  24555. height: math.unit(22, "meters"),
  24556. weight: math.unit(21000, "kg"),
  24557. name: "Front (Nude)",
  24558. image: {
  24559. source: "./media/characters/shock-diamond/front-nude.svg",
  24560. extra: 2514 / 2285,
  24561. bottom: 13 / 2527.56
  24562. }
  24563. },
  24564. },
  24565. [
  24566. {
  24567. name: "Normal",
  24568. height: math.unit(3, "meters")
  24569. },
  24570. {
  24571. name: "Macro",
  24572. height: math.unit(22, "meters"),
  24573. default: true
  24574. },
  24575. ]
  24576. ))
  24577. characterMakers.push(() => makeCharacter(
  24578. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24579. {
  24580. frontNsfw: {
  24581. height: math.unit(5 + 4/12, "feet"),
  24582. weight: math.unit(195, "lb"),
  24583. name: "Front",
  24584. image: {
  24585. source: "./media/characters/rory/front.svg",
  24586. extra: 1220/1100,
  24587. bottom: 103/1323
  24588. }
  24589. },
  24590. back: {
  24591. height: math.unit(5 + 4/12, "feet"),
  24592. weight: math.unit(195, "lb"),
  24593. name: "Back",
  24594. image: {
  24595. source: "./media/characters/rory/back.svg",
  24596. extra: 1166/1086,
  24597. bottom: 35/1201
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Micro",
  24604. height: math.unit(3, "inches")
  24605. },
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(5 + 4/12, "feet"),
  24609. default: true
  24610. },
  24611. {
  24612. name: "Macro",
  24613. height: math.unit(90, "feet")
  24614. },
  24615. {
  24616. name: "Supercharged",
  24617. height: math.unit(270, "feet")
  24618. },
  24619. ]
  24620. ))
  24621. characterMakers.push(() => makeCharacter(
  24622. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24623. {
  24624. front: {
  24625. height: math.unit(5 + 9 / 12, "feet"),
  24626. weight: math.unit(190, "lb"),
  24627. name: "Front",
  24628. image: {
  24629. source: "./media/characters/sprisk/front.svg",
  24630. extra: 1225 / 1180,
  24631. bottom: 42.7 / 1266.4
  24632. }
  24633. },
  24634. frontNsfw: {
  24635. height: math.unit(5 + 9 / 12, "feet"),
  24636. weight: math.unit(190, "lb"),
  24637. name: "Front (NSFW)",
  24638. image: {
  24639. source: "./media/characters/sprisk/front-nsfw.svg",
  24640. extra: 1225 / 1180,
  24641. bottom: 42.7 / 1266.4
  24642. }
  24643. },
  24644. back: {
  24645. height: math.unit(5 + 9 / 12, "feet"),
  24646. weight: math.unit(190, "lb"),
  24647. name: "Back",
  24648. image: {
  24649. source: "./media/characters/sprisk/back.svg",
  24650. extra: 1247 / 1200,
  24651. bottom: 5.6 / 1253.04
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Tiny",
  24658. height: math.unit(2, "inches")
  24659. },
  24660. {
  24661. name: "Normal",
  24662. height: math.unit(5 + 9 / 12, "feet"),
  24663. default: true
  24664. },
  24665. {
  24666. name: "Mini Macro",
  24667. height: math.unit(18, "feet")
  24668. },
  24669. {
  24670. name: "Macro",
  24671. height: math.unit(100, "feet")
  24672. },
  24673. {
  24674. name: "MACRO",
  24675. height: math.unit(50, "miles")
  24676. },
  24677. {
  24678. name: "M A C R O",
  24679. height: math.unit(300, "miles")
  24680. },
  24681. ]
  24682. ))
  24683. characterMakers.push(() => makeCharacter(
  24684. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24685. {
  24686. side: {
  24687. height: math.unit(15.6, "meters"),
  24688. weight: math.unit(700000, "kg"),
  24689. name: "Side",
  24690. image: {
  24691. source: "./media/characters/bunsen/side.svg",
  24692. extra: 1644 / 358
  24693. }
  24694. },
  24695. foot: {
  24696. height: math.unit(1.611 * 1644 / 358, "meter"),
  24697. name: "Foot",
  24698. image: {
  24699. source: "./media/characters/bunsen/foot.svg"
  24700. }
  24701. },
  24702. },
  24703. [
  24704. {
  24705. name: "Small",
  24706. height: math.unit(10, "feet")
  24707. },
  24708. {
  24709. name: "Normal",
  24710. height: math.unit(15.6, "meters"),
  24711. default: true
  24712. },
  24713. ]
  24714. ))
  24715. characterMakers.push(() => makeCharacter(
  24716. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24717. {
  24718. front: {
  24719. height: math.unit(4 + 11 / 12, "feet"),
  24720. weight: math.unit(140, "lb"),
  24721. name: "Front",
  24722. image: {
  24723. source: "./media/characters/sesh/front.svg",
  24724. extra: 3420 / 3231,
  24725. bottom: 72 / 3949.5
  24726. }
  24727. },
  24728. },
  24729. [
  24730. {
  24731. name: "Normal",
  24732. height: math.unit(4 + 11 / 12, "feet")
  24733. },
  24734. {
  24735. name: "Grown",
  24736. height: math.unit(15, "feet"),
  24737. default: true
  24738. },
  24739. {
  24740. name: "Macro",
  24741. height: math.unit(1500, "feet")
  24742. },
  24743. {
  24744. name: "Megamacro",
  24745. height: math.unit(30, "miles")
  24746. },
  24747. {
  24748. name: "Continental",
  24749. height: math.unit(3000, "miles")
  24750. },
  24751. {
  24752. name: "Gravity Mass",
  24753. height: math.unit(300000, "miles")
  24754. },
  24755. {
  24756. name: "Planet Buster",
  24757. height: math.unit(30000000, "miles")
  24758. },
  24759. {
  24760. name: "Big",
  24761. height: math.unit(3000000000, "miles")
  24762. },
  24763. ]
  24764. ))
  24765. characterMakers.push(() => makeCharacter(
  24766. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24767. {
  24768. front: {
  24769. height: math.unit(9, "feet"),
  24770. weight: math.unit(350, "lb"),
  24771. name: "Front",
  24772. image: {
  24773. source: "./media/characters/pepper/front.svg",
  24774. extra: 1448 / 1312,
  24775. bottom: 9.4 / 1457.88
  24776. }
  24777. },
  24778. back: {
  24779. height: math.unit(9, "feet"),
  24780. weight: math.unit(350, "lb"),
  24781. name: "Back",
  24782. image: {
  24783. source: "./media/characters/pepper/back.svg",
  24784. extra: 1423 / 1300,
  24785. bottom: 4.6 / 1429
  24786. }
  24787. },
  24788. maw: {
  24789. height: math.unit(0.932, "feet"),
  24790. name: "Maw",
  24791. image: {
  24792. source: "./media/characters/pepper/maw.svg"
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Normal",
  24799. height: math.unit(9, "feet"),
  24800. default: true
  24801. },
  24802. ]
  24803. ))
  24804. characterMakers.push(() => makeCharacter(
  24805. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24806. {
  24807. front: {
  24808. height: math.unit(6, "feet"),
  24809. weight: math.unit(150, "lb"),
  24810. name: "Front",
  24811. image: {
  24812. source: "./media/characters/maelstrom/front.svg",
  24813. extra: 2100 / 1883,
  24814. bottom: 94 / 2196.7
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "Less Kaiju",
  24821. height: math.unit(200, "feet")
  24822. },
  24823. {
  24824. name: "Kaiju",
  24825. height: math.unit(400, "feet"),
  24826. default: true
  24827. },
  24828. {
  24829. name: "Kaiju-er",
  24830. height: math.unit(600, "feet")
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(6 + 5 / 12, "feet"),
  24839. weight: math.unit(180, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/lexir/front.svg",
  24843. extra: 180 / 172,
  24844. bottom: 12 / 192
  24845. }
  24846. },
  24847. back: {
  24848. height: math.unit(6 + 5 / 12, "feet"),
  24849. weight: math.unit(180, "lb"),
  24850. name: "Back",
  24851. image: {
  24852. source: "./media/characters/lexir/back.svg",
  24853. extra: 1273/1201,
  24854. bottom: 39/1312
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Very Smal",
  24861. height: math.unit(1, "nm")
  24862. },
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(6 + 5 / 12, "feet"),
  24866. default: true
  24867. },
  24868. {
  24869. name: "Macro",
  24870. height: math.unit(1, "mile")
  24871. },
  24872. {
  24873. name: "Megamacro",
  24874. height: math.unit(50, "miles")
  24875. },
  24876. ]
  24877. ))
  24878. characterMakers.push(() => makeCharacter(
  24879. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24880. {
  24881. front: {
  24882. height: math.unit(1.5, "meters"),
  24883. weight: math.unit(100, "lb"),
  24884. name: "Front",
  24885. image: {
  24886. source: "./media/characters/maksio/front.svg",
  24887. extra: 1549 / 1531,
  24888. bottom: 123.7 / 1674.5429
  24889. }
  24890. },
  24891. back: {
  24892. height: math.unit(1.5, "meters"),
  24893. weight: math.unit(100, "lb"),
  24894. name: "Back",
  24895. image: {
  24896. source: "./media/characters/maksio/back.svg",
  24897. extra: 1541 / 1509,
  24898. bottom: 97 / 1639
  24899. }
  24900. },
  24901. hand: {
  24902. height: math.unit(0.621, "feet"),
  24903. name: "Hand",
  24904. image: {
  24905. source: "./media/characters/maksio/hand.svg"
  24906. }
  24907. },
  24908. foot: {
  24909. height: math.unit(1.611, "feet"),
  24910. name: "Foot",
  24911. image: {
  24912. source: "./media/characters/maksio/foot.svg"
  24913. }
  24914. },
  24915. },
  24916. [
  24917. {
  24918. name: "Shrunken",
  24919. height: math.unit(10, "cm")
  24920. },
  24921. {
  24922. name: "Normal",
  24923. height: math.unit(150, "cm"),
  24924. default: true
  24925. },
  24926. ]
  24927. ))
  24928. characterMakers.push(() => makeCharacter(
  24929. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24930. {
  24931. front: {
  24932. height: math.unit(100, "feet"),
  24933. name: "Front",
  24934. image: {
  24935. source: "./media/characters/erza-bear/front.svg",
  24936. extra: 2449 / 2390,
  24937. bottom: 46 / 2494
  24938. }
  24939. },
  24940. back: {
  24941. height: math.unit(100, "feet"),
  24942. name: "Back",
  24943. image: {
  24944. source: "./media/characters/erza-bear/back.svg",
  24945. extra: 2489 / 2430,
  24946. bottom: 85.4 / 2480
  24947. }
  24948. },
  24949. tail: {
  24950. height: math.unit(42, "feet"),
  24951. name: "Tail",
  24952. image: {
  24953. source: "./media/characters/erza-bear/tail.svg"
  24954. }
  24955. },
  24956. tongue: {
  24957. height: math.unit(8, "feet"),
  24958. name: "Tongue",
  24959. image: {
  24960. source: "./media/characters/erza-bear/tongue.svg"
  24961. }
  24962. },
  24963. dick: {
  24964. height: math.unit(10.5, "feet"),
  24965. name: "Dick",
  24966. image: {
  24967. source: "./media/characters/erza-bear/dick.svg"
  24968. }
  24969. },
  24970. dickVertical: {
  24971. height: math.unit(16.9, "feet"),
  24972. name: "Dick (Vertical)",
  24973. image: {
  24974. source: "./media/characters/erza-bear/dick-vertical.svg"
  24975. }
  24976. },
  24977. },
  24978. [
  24979. {
  24980. name: "Macro",
  24981. height: math.unit(100, "feet"),
  24982. default: true
  24983. },
  24984. ]
  24985. ))
  24986. characterMakers.push(() => makeCharacter(
  24987. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24988. {
  24989. front: {
  24990. height: math.unit(172, "cm"),
  24991. weight: math.unit(73, "kg"),
  24992. name: "Front",
  24993. image: {
  24994. source: "./media/characters/violet-flor/front.svg",
  24995. extra: 1530 / 1442,
  24996. bottom: 61.9 / 1588.8
  24997. }
  24998. },
  24999. back: {
  25000. height: math.unit(180, "cm"),
  25001. weight: math.unit(73, "kg"),
  25002. name: "Back",
  25003. image: {
  25004. source: "./media/characters/violet-flor/back.svg",
  25005. extra: 1692 / 1630,
  25006. bottom: 20 / 1712
  25007. }
  25008. },
  25009. },
  25010. [
  25011. {
  25012. name: "Normal",
  25013. height: math.unit(172, "cm"),
  25014. default: true
  25015. },
  25016. ]
  25017. ))
  25018. characterMakers.push(() => makeCharacter(
  25019. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25020. {
  25021. front: {
  25022. height: math.unit(6, "feet"),
  25023. weight: math.unit(220, "lb"),
  25024. name: "Front",
  25025. image: {
  25026. source: "./media/characters/lynn-rhea/front.svg",
  25027. extra: 310 / 273
  25028. }
  25029. },
  25030. back: {
  25031. height: math.unit(6, "feet"),
  25032. weight: math.unit(220, "lb"),
  25033. name: "Back",
  25034. image: {
  25035. source: "./media/characters/lynn-rhea/back.svg",
  25036. extra: 310 / 273
  25037. }
  25038. },
  25039. dicks: {
  25040. height: math.unit(0.9, "feet"),
  25041. name: "Dicks",
  25042. image: {
  25043. source: "./media/characters/lynn-rhea/dicks.svg"
  25044. }
  25045. },
  25046. slit: {
  25047. height: math.unit(0.4, "feet"),
  25048. name: "Slit",
  25049. image: {
  25050. source: "./media/characters/lynn-rhea/slit.svg"
  25051. }
  25052. },
  25053. },
  25054. [
  25055. {
  25056. name: "Micro",
  25057. height: math.unit(1, "inch")
  25058. },
  25059. {
  25060. name: "Macro",
  25061. height: math.unit(60, "feet"),
  25062. default: true
  25063. },
  25064. {
  25065. name: "Megamacro",
  25066. height: math.unit(2, "miles")
  25067. },
  25068. {
  25069. name: "Gigamacro",
  25070. height: math.unit(3, "earths")
  25071. },
  25072. {
  25073. name: "Galactic",
  25074. height: math.unit(0.8, "galaxies")
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25080. {
  25081. front: {
  25082. height: math.unit(1600, "feet"),
  25083. weight: math.unit(85758785169, "kg"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/valathos/front.svg",
  25087. extra: 1451 / 1339
  25088. }
  25089. },
  25090. },
  25091. [
  25092. {
  25093. name: "Macro",
  25094. height: math.unit(1600, "feet"),
  25095. default: true
  25096. },
  25097. ]
  25098. ))
  25099. characterMakers.push(() => makeCharacter(
  25100. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25101. {
  25102. front: {
  25103. height: math.unit(7 + 5 / 12, "feet"),
  25104. weight: math.unit(300, "lb"),
  25105. name: "Front",
  25106. image: {
  25107. source: "./media/characters/azula/front.svg",
  25108. extra: 3208 / 2880,
  25109. bottom: 80.2 / 3277
  25110. }
  25111. },
  25112. back: {
  25113. height: math.unit(7 + 5 / 12, "feet"),
  25114. weight: math.unit(300, "lb"),
  25115. name: "Back",
  25116. image: {
  25117. source: "./media/characters/azula/back.svg",
  25118. extra: 3169 / 2822,
  25119. bottom: 150.6 / 3321
  25120. }
  25121. },
  25122. },
  25123. [
  25124. {
  25125. name: "Normal",
  25126. height: math.unit(7 + 5 / 12, "feet"),
  25127. default: true
  25128. },
  25129. {
  25130. name: "Big",
  25131. height: math.unit(20, "feet")
  25132. },
  25133. ]
  25134. ))
  25135. characterMakers.push(() => makeCharacter(
  25136. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25137. {
  25138. front: {
  25139. height: math.unit(5 + 1 / 12, "feet"),
  25140. weight: math.unit(110, "lb"),
  25141. name: "Front",
  25142. image: {
  25143. source: "./media/characters/rupert/front.svg",
  25144. extra: 1549 / 1495,
  25145. bottom: 54.2 / 1604.4
  25146. }
  25147. },
  25148. },
  25149. [
  25150. {
  25151. name: "Normal",
  25152. height: math.unit(5 + 1 / 12, "feet"),
  25153. default: true
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25159. {
  25160. front: {
  25161. height: math.unit(8 + 4 / 12, "feet"),
  25162. weight: math.unit(350, "lb"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/sheera-castellar/front.svg",
  25166. extra: 1957 / 1894,
  25167. bottom: 26.97 / 1975.017
  25168. }
  25169. },
  25170. side: {
  25171. height: math.unit(8 + 4 / 12, "feet"),
  25172. weight: math.unit(350, "lb"),
  25173. name: "Side",
  25174. image: {
  25175. source: "./media/characters/sheera-castellar/side.svg",
  25176. extra: 1957 / 1894
  25177. }
  25178. },
  25179. back: {
  25180. height: math.unit(8 + 4 / 12, "feet"),
  25181. weight: math.unit(350, "lb"),
  25182. name: "Back",
  25183. image: {
  25184. source: "./media/characters/sheera-castellar/back.svg",
  25185. extra: 1957 / 1894
  25186. }
  25187. },
  25188. angled: {
  25189. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25190. weight: math.unit(350, "lb"),
  25191. name: "Angled",
  25192. image: {
  25193. source: "./media/characters/sheera-castellar/angled.svg",
  25194. extra: 1807 / 1707,
  25195. bottom: 68 / 1875
  25196. }
  25197. },
  25198. genitals: {
  25199. height: math.unit(2.2, "feet"),
  25200. name: "Genitals",
  25201. image: {
  25202. source: "./media/characters/sheera-castellar/genitals.svg"
  25203. }
  25204. },
  25205. taur: {
  25206. height: math.unit(10 + 6/12, "feet"),
  25207. name: "Taur",
  25208. image: {
  25209. source: "./media/characters/sheera-castellar/taur.svg",
  25210. extra: 2017/1909,
  25211. bottom: 185/2202
  25212. }
  25213. },
  25214. },
  25215. [
  25216. {
  25217. name: "Normal",
  25218. height: math.unit(8 + 4 / 12, "feet")
  25219. },
  25220. {
  25221. name: "Macro",
  25222. height: math.unit(150, "feet"),
  25223. default: true
  25224. },
  25225. {
  25226. name: "Macro+",
  25227. height: math.unit(800, "feet")
  25228. },
  25229. ]
  25230. ))
  25231. characterMakers.push(() => makeCharacter(
  25232. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25233. {
  25234. front: {
  25235. height: math.unit(6, "feet"),
  25236. weight: math.unit(150, "lb"),
  25237. name: "Front",
  25238. image: {
  25239. source: "./media/characters/jaipur/front.svg",
  25240. extra: 3860 / 3731,
  25241. bottom: 287 / 4140
  25242. }
  25243. },
  25244. back: {
  25245. height: math.unit(6, "feet"),
  25246. weight: math.unit(150, "lb"),
  25247. name: "Back",
  25248. image: {
  25249. source: "./media/characters/jaipur/back.svg",
  25250. extra: 1637/1561,
  25251. bottom: 154/1791
  25252. }
  25253. },
  25254. },
  25255. [
  25256. {
  25257. name: "Normal",
  25258. height: math.unit(1.85, "meters"),
  25259. default: true
  25260. },
  25261. {
  25262. name: "Macro",
  25263. height: math.unit(150, "meters")
  25264. },
  25265. {
  25266. name: "Macro+",
  25267. height: math.unit(0.5, "miles")
  25268. },
  25269. {
  25270. name: "Macro++",
  25271. height: math.unit(2.5, "miles")
  25272. },
  25273. {
  25274. name: "Macro+++",
  25275. height: math.unit(12, "miles")
  25276. },
  25277. {
  25278. name: "Macro++++",
  25279. height: math.unit(120, "miles")
  25280. },
  25281. {
  25282. name: "Macro+++++",
  25283. height: math.unit(1200, "miles")
  25284. },
  25285. ]
  25286. ))
  25287. characterMakers.push(() => makeCharacter(
  25288. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25289. {
  25290. front: {
  25291. height: math.unit(6, "feet"),
  25292. weight: math.unit(150, "lb"),
  25293. name: "Front",
  25294. image: {
  25295. source: "./media/characters/sheila-wolf/front.svg",
  25296. extra: 1931 / 1808,
  25297. bottom: 29.5 / 1960
  25298. }
  25299. },
  25300. dick: {
  25301. height: math.unit(1.464, "feet"),
  25302. name: "Dick",
  25303. image: {
  25304. source: "./media/characters/sheila-wolf/dick.svg"
  25305. }
  25306. },
  25307. muzzle: {
  25308. height: math.unit(0.513, "feet"),
  25309. name: "Muzzle",
  25310. image: {
  25311. source: "./media/characters/sheila-wolf/muzzle.svg"
  25312. }
  25313. },
  25314. },
  25315. [
  25316. {
  25317. name: "Macro",
  25318. height: math.unit(70, "feet"),
  25319. default: true
  25320. },
  25321. ]
  25322. ))
  25323. characterMakers.push(() => makeCharacter(
  25324. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25325. {
  25326. front: {
  25327. height: math.unit(32, "meters"),
  25328. weight: math.unit(300000, "kg"),
  25329. name: "Front",
  25330. image: {
  25331. source: "./media/characters/almor/front.svg",
  25332. extra: 1408 / 1322,
  25333. bottom: 94.6 / 1506.5
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Macro",
  25340. height: math.unit(32, "meters"),
  25341. default: true
  25342. },
  25343. ]
  25344. ))
  25345. characterMakers.push(() => makeCharacter(
  25346. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25347. {
  25348. front: {
  25349. height: math.unit(7, "feet"),
  25350. weight: math.unit(200, "lb"),
  25351. name: "Front",
  25352. image: {
  25353. source: "./media/characters/silver/front.svg",
  25354. extra: 472.1 / 450.5,
  25355. bottom: 26.5 / 499.424
  25356. }
  25357. },
  25358. },
  25359. [
  25360. {
  25361. name: "Normal",
  25362. height: math.unit(7, "feet"),
  25363. default: true
  25364. },
  25365. {
  25366. name: "Macro",
  25367. height: math.unit(800, "feet")
  25368. },
  25369. {
  25370. name: "Megamacro",
  25371. height: math.unit(250, "miles")
  25372. },
  25373. ]
  25374. ))
  25375. characterMakers.push(() => makeCharacter(
  25376. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25377. {
  25378. front: {
  25379. height: math.unit(6, "feet"),
  25380. weight: math.unit(150, "lb"),
  25381. name: "Front",
  25382. image: {
  25383. source: "./media/characters/pliskin/front.svg",
  25384. extra: 1469 / 1359,
  25385. bottom: 70 / 1540
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Micro",
  25392. height: math.unit(3, "inches")
  25393. },
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(5 + 11 / 12, "feet"),
  25397. default: true
  25398. },
  25399. {
  25400. name: "Macro",
  25401. height: math.unit(120, "feet")
  25402. },
  25403. ]
  25404. ))
  25405. characterMakers.push(() => makeCharacter(
  25406. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25407. {
  25408. front: {
  25409. height: math.unit(6, "feet"),
  25410. weight: math.unit(150, "lb"),
  25411. name: "Front",
  25412. image: {
  25413. source: "./media/characters/sammy/front.svg",
  25414. extra: 1193 / 1089,
  25415. bottom: 30.5 / 1226
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Macro",
  25422. height: math.unit(1700, "feet"),
  25423. default: true
  25424. },
  25425. {
  25426. name: "Examacro",
  25427. height: math.unit(2.5e9, "lightyears")
  25428. },
  25429. ]
  25430. ))
  25431. characterMakers.push(() => makeCharacter(
  25432. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25433. {
  25434. front: {
  25435. height: math.unit(21, "meters"),
  25436. weight: math.unit(12, "tonnes"),
  25437. name: "Front",
  25438. image: {
  25439. source: "./media/characters/kuru/front.svg",
  25440. extra: 4301 / 3785,
  25441. bottom: 371.3 / 4691
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Macro",
  25448. height: math.unit(21, "meters"),
  25449. default: true
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25455. {
  25456. front: {
  25457. height: math.unit(23, "meters"),
  25458. weight: math.unit(12.2, "tonnes"),
  25459. name: "Front",
  25460. image: {
  25461. source: "./media/characters/rakka/front.svg",
  25462. extra: 4670 / 4169,
  25463. bottom: 301 / 4968.7
  25464. }
  25465. },
  25466. },
  25467. [
  25468. {
  25469. name: "Macro",
  25470. height: math.unit(23, "meters"),
  25471. default: true
  25472. },
  25473. ]
  25474. ))
  25475. characterMakers.push(() => makeCharacter(
  25476. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25477. {
  25478. front: {
  25479. height: math.unit(6, "feet"),
  25480. weight: math.unit(150, "lb"),
  25481. name: "Front",
  25482. image: {
  25483. source: "./media/characters/rhys-feline/front.svg",
  25484. extra: 2488 / 2308,
  25485. bottom: 35.67 / 2519.19
  25486. }
  25487. },
  25488. },
  25489. [
  25490. {
  25491. name: "Really Small",
  25492. height: math.unit(1, "nm")
  25493. },
  25494. {
  25495. name: "Micro",
  25496. height: math.unit(4, "inches")
  25497. },
  25498. {
  25499. name: "Normal",
  25500. height: math.unit(4 + 10 / 12, "feet"),
  25501. default: true
  25502. },
  25503. {
  25504. name: "Macro",
  25505. height: math.unit(100, "feet")
  25506. },
  25507. {
  25508. name: "Megamacto",
  25509. height: math.unit(50, "miles")
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25515. {
  25516. side: {
  25517. height: math.unit(30, "feet"),
  25518. weight: math.unit(35000, "kg"),
  25519. name: "Side",
  25520. image: {
  25521. source: "./media/characters/alydar/side.svg",
  25522. extra: 234 / 222,
  25523. bottom: 6.5 / 241
  25524. }
  25525. },
  25526. front: {
  25527. height: math.unit(30, "feet"),
  25528. weight: math.unit(35000, "kg"),
  25529. name: "Front",
  25530. image: {
  25531. source: "./media/characters/alydar/front.svg",
  25532. extra: 223.37 / 210.2,
  25533. bottom: 22.3 / 246.76
  25534. }
  25535. },
  25536. top: {
  25537. height: math.unit(64.54, "feet"),
  25538. weight: math.unit(35000, "kg"),
  25539. name: "Top",
  25540. image: {
  25541. source: "./media/characters/alydar/top.svg"
  25542. }
  25543. },
  25544. anthro: {
  25545. height: math.unit(30, "feet"),
  25546. weight: math.unit(9000, "kg"),
  25547. name: "Anthro",
  25548. image: {
  25549. source: "./media/characters/alydar/anthro.svg",
  25550. extra: 432 / 421,
  25551. bottom: 7.18 / 440
  25552. }
  25553. },
  25554. maw: {
  25555. height: math.unit(11.693, "feet"),
  25556. name: "Maw",
  25557. image: {
  25558. source: "./media/characters/alydar/maw.svg"
  25559. }
  25560. },
  25561. head: {
  25562. height: math.unit(11.693, "feet"),
  25563. name: "Head",
  25564. image: {
  25565. source: "./media/characters/alydar/head.svg"
  25566. }
  25567. },
  25568. headAlt: {
  25569. height: math.unit(12.861, "feet"),
  25570. name: "Head (Alt)",
  25571. image: {
  25572. source: "./media/characters/alydar/head-alt.svg"
  25573. }
  25574. },
  25575. wing: {
  25576. height: math.unit(20.712, "feet"),
  25577. name: "Wing",
  25578. image: {
  25579. source: "./media/characters/alydar/wing.svg"
  25580. }
  25581. },
  25582. wingFeather: {
  25583. height: math.unit(9.662, "feet"),
  25584. name: "Wing Feather",
  25585. image: {
  25586. source: "./media/characters/alydar/wing-feather.svg"
  25587. }
  25588. },
  25589. countourFeather: {
  25590. height: math.unit(4.154, "feet"),
  25591. name: "Contour Feather",
  25592. image: {
  25593. source: "./media/characters/alydar/contour-feather.svg"
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Diplomatic",
  25600. height: math.unit(13, "feet"),
  25601. default: true
  25602. },
  25603. {
  25604. name: "Small",
  25605. height: math.unit(30, "feet")
  25606. },
  25607. {
  25608. name: "Normal",
  25609. height: math.unit(95, "feet"),
  25610. default: true
  25611. },
  25612. {
  25613. name: "Large",
  25614. height: math.unit(285, "feet")
  25615. },
  25616. {
  25617. name: "Incomprehensible",
  25618. height: math.unit(450, "megameters")
  25619. },
  25620. ]
  25621. ))
  25622. characterMakers.push(() => makeCharacter(
  25623. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25624. {
  25625. side: {
  25626. height: math.unit(11, "feet"),
  25627. weight: math.unit(1750, "kg"),
  25628. name: "Side",
  25629. image: {
  25630. source: "./media/characters/selicia/side.svg",
  25631. extra: 440 / 396,
  25632. bottom: 24.8 / 465.979
  25633. }
  25634. },
  25635. maw: {
  25636. height: math.unit(4.665, "feet"),
  25637. name: "Maw",
  25638. image: {
  25639. source: "./media/characters/selicia/maw.svg"
  25640. }
  25641. },
  25642. },
  25643. [
  25644. {
  25645. name: "Normal",
  25646. height: math.unit(11, "feet"),
  25647. default: true
  25648. },
  25649. ]
  25650. ))
  25651. characterMakers.push(() => makeCharacter(
  25652. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25653. {
  25654. side: {
  25655. height: math.unit(2 + 6 / 12, "feet"),
  25656. weight: math.unit(30, "lb"),
  25657. name: "Side",
  25658. image: {
  25659. source: "./media/characters/layla/side.svg",
  25660. extra: 244 / 188,
  25661. bottom: 18.2 / 262.1
  25662. }
  25663. },
  25664. back: {
  25665. height: math.unit(2 + 6 / 12, "feet"),
  25666. weight: math.unit(30, "lb"),
  25667. name: "Back",
  25668. image: {
  25669. source: "./media/characters/layla/back.svg",
  25670. extra: 308 / 241.5,
  25671. bottom: 8.9 / 316.8
  25672. }
  25673. },
  25674. cumming: {
  25675. height: math.unit(2 + 6 / 12, "feet"),
  25676. weight: math.unit(30, "lb"),
  25677. name: "Cumming",
  25678. image: {
  25679. source: "./media/characters/layla/cumming.svg",
  25680. extra: 342 / 279,
  25681. bottom: 595 / 938
  25682. }
  25683. },
  25684. dickFlaccid: {
  25685. height: math.unit(2.595, "feet"),
  25686. name: "Flaccid Genitals",
  25687. image: {
  25688. source: "./media/characters/layla/dick-flaccid.svg"
  25689. }
  25690. },
  25691. dickErect: {
  25692. height: math.unit(2.359, "feet"),
  25693. name: "Erect Genitals",
  25694. image: {
  25695. source: "./media/characters/layla/dick-erect.svg"
  25696. }
  25697. },
  25698. dragon: {
  25699. height: math.unit(40, "feet"),
  25700. name: "Dragon",
  25701. image: {
  25702. source: "./media/characters/layla/dragon.svg",
  25703. extra: 610/535,
  25704. bottom: 367/977
  25705. }
  25706. },
  25707. taur: {
  25708. height: math.unit(30, "feet"),
  25709. name: "Taur",
  25710. image: {
  25711. source: "./media/characters/layla/taur.svg",
  25712. extra: 1268/1199,
  25713. bottom: 112/1380
  25714. }
  25715. },
  25716. },
  25717. [
  25718. {
  25719. name: "Micro",
  25720. height: math.unit(1, "inch")
  25721. },
  25722. {
  25723. name: "Small",
  25724. height: math.unit(1, "foot")
  25725. },
  25726. {
  25727. name: "Normal",
  25728. height: math.unit(2 + 6 / 12, "feet"),
  25729. default: true
  25730. },
  25731. {
  25732. name: "Macro",
  25733. height: math.unit(200, "feet")
  25734. },
  25735. {
  25736. name: "Megamacro",
  25737. height: math.unit(1000, "miles")
  25738. },
  25739. {
  25740. name: "Planetary",
  25741. height: math.unit(8000, "miles")
  25742. },
  25743. {
  25744. name: "True Layla",
  25745. height: math.unit(200000 * 7, "multiverses")
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25751. {
  25752. back: {
  25753. height: math.unit(10.5, "feet"),
  25754. weight: math.unit(800, "lb"),
  25755. name: "Back",
  25756. image: {
  25757. source: "./media/characters/knox/back.svg",
  25758. extra: 1486 / 1089,
  25759. bottom: 107 / 1601.4
  25760. }
  25761. },
  25762. side: {
  25763. height: math.unit(10.5, "feet"),
  25764. weight: math.unit(800, "lb"),
  25765. name: "Side",
  25766. image: {
  25767. source: "./media/characters/knox/side.svg",
  25768. extra: 244 / 218,
  25769. bottom: 14 / 260
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Compact",
  25776. height: math.unit(10.5, "feet"),
  25777. default: true
  25778. },
  25779. {
  25780. name: "Dynamax",
  25781. height: math.unit(210, "feet")
  25782. },
  25783. {
  25784. name: "Full Macro",
  25785. height: math.unit(850, "feet")
  25786. },
  25787. ]
  25788. ))
  25789. characterMakers.push(() => makeCharacter(
  25790. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25791. {
  25792. front: {
  25793. height: math.unit(28, "feet"),
  25794. weight: math.unit(10500, "lb"),
  25795. name: "Front",
  25796. image: {
  25797. source: "./media/characters/kayda/front.svg",
  25798. extra: 1536 / 1428,
  25799. bottom: 68.7 / 1603
  25800. }
  25801. },
  25802. back: {
  25803. height: math.unit(28, "feet"),
  25804. weight: math.unit(10500, "lb"),
  25805. name: "Back",
  25806. image: {
  25807. source: "./media/characters/kayda/back.svg",
  25808. extra: 1557 / 1464,
  25809. bottom: 39.5 / 1597.49
  25810. }
  25811. },
  25812. dick: {
  25813. height: math.unit(3.858, "feet"),
  25814. name: "Dick",
  25815. image: {
  25816. source: "./media/characters/kayda/dick.svg"
  25817. }
  25818. },
  25819. },
  25820. [
  25821. {
  25822. name: "Macro",
  25823. height: math.unit(28, "feet"),
  25824. default: true
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25830. {
  25831. front: {
  25832. height: math.unit(10 + 11 / 12, "feet"),
  25833. weight: math.unit(1400, "lb"),
  25834. name: "Front",
  25835. image: {
  25836. source: "./media/characters/brian/front.svg",
  25837. extra: 737 / 692,
  25838. bottom: 55.4 / 785
  25839. }
  25840. },
  25841. },
  25842. [
  25843. {
  25844. name: "Normal",
  25845. height: math.unit(10 + 11 / 12, "feet"),
  25846. default: true
  25847. },
  25848. ]
  25849. ))
  25850. characterMakers.push(() => makeCharacter(
  25851. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25852. {
  25853. front: {
  25854. height: math.unit(5 + 8 / 12, "feet"),
  25855. weight: math.unit(140, "lb"),
  25856. name: "Front",
  25857. image: {
  25858. source: "./media/characters/khemri/front.svg",
  25859. extra: 4780 / 4059,
  25860. bottom: 80.1 / 4859.25
  25861. }
  25862. },
  25863. },
  25864. [
  25865. {
  25866. name: "Micro",
  25867. height: math.unit(6, "inches")
  25868. },
  25869. {
  25870. name: "Normal",
  25871. height: math.unit(5 + 8 / 12, "feet"),
  25872. default: true
  25873. },
  25874. ]
  25875. ))
  25876. characterMakers.push(() => makeCharacter(
  25877. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25878. {
  25879. front: {
  25880. height: math.unit(13, "feet"),
  25881. weight: math.unit(1700, "lb"),
  25882. name: "Front",
  25883. image: {
  25884. source: "./media/characters/felix-braveheart/front.svg",
  25885. extra: 1222 / 1157,
  25886. bottom: 53.2 / 1280
  25887. }
  25888. },
  25889. back: {
  25890. height: math.unit(13, "feet"),
  25891. weight: math.unit(1700, "lb"),
  25892. name: "Back",
  25893. image: {
  25894. source: "./media/characters/felix-braveheart/back.svg",
  25895. extra: 1277 / 1203,
  25896. bottom: 50.2 / 1327
  25897. }
  25898. },
  25899. feral: {
  25900. height: math.unit(6, "feet"),
  25901. weight: math.unit(400, "lb"),
  25902. name: "Feral",
  25903. image: {
  25904. source: "./media/characters/felix-braveheart/feral.svg",
  25905. extra: 682 / 625,
  25906. bottom: 6.9 / 688
  25907. }
  25908. },
  25909. },
  25910. [
  25911. {
  25912. name: "Normal",
  25913. height: math.unit(13, "feet"),
  25914. default: true
  25915. },
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25920. {
  25921. side: {
  25922. height: math.unit(5 + 11 / 12, "feet"),
  25923. weight: math.unit(1400, "lb"),
  25924. name: "Side",
  25925. image: {
  25926. source: "./media/characters/shadow-blade/side.svg",
  25927. extra: 1726 / 1267,
  25928. bottom: 58.4 / 1785
  25929. }
  25930. },
  25931. },
  25932. [
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(5 + 11 / 12, "feet"),
  25936. default: true
  25937. },
  25938. ]
  25939. ))
  25940. characterMakers.push(() => makeCharacter(
  25941. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25942. {
  25943. front: {
  25944. height: math.unit(1 + 6 / 12, "feet"),
  25945. weight: math.unit(25, "lb"),
  25946. name: "Front",
  25947. image: {
  25948. source: "./media/characters/karla-halldor/front.svg",
  25949. extra: 1459 / 1383,
  25950. bottom: 12 / 1472
  25951. }
  25952. },
  25953. },
  25954. [
  25955. {
  25956. name: "Normal",
  25957. height: math.unit(1 + 6 / 12, "feet"),
  25958. default: true
  25959. },
  25960. ]
  25961. ))
  25962. characterMakers.push(() => makeCharacter(
  25963. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25964. {
  25965. front: {
  25966. height: math.unit(6 + 2 / 12, "feet"),
  25967. weight: math.unit(160, "lb"),
  25968. name: "Front",
  25969. image: {
  25970. source: "./media/characters/ariam/front.svg",
  25971. extra: 1073/976,
  25972. bottom: 52/1125
  25973. }
  25974. },
  25975. back: {
  25976. height: math.unit(6 + 2/12, "feet"),
  25977. weight: math.unit(160, "lb"),
  25978. name: "Back",
  25979. image: {
  25980. source: "./media/characters/ariam/back.svg",
  25981. extra: 1103/1023,
  25982. bottom: 9/1112
  25983. }
  25984. },
  25985. dressed: {
  25986. height: math.unit(6 + 2/12, "feet"),
  25987. weight: math.unit(160, "lb"),
  25988. name: "Dressed",
  25989. image: {
  25990. source: "./media/characters/ariam/dressed.svg",
  25991. extra: 1099/1009,
  25992. bottom: 25/1124
  25993. }
  25994. },
  25995. squatting: {
  25996. height: math.unit(4.1, "feet"),
  25997. weight: math.unit(160, "lb"),
  25998. name: "Squatting",
  25999. image: {
  26000. source: "./media/characters/ariam/squatting.svg",
  26001. extra: 2617 / 2112,
  26002. bottom: 61.2 / 2681,
  26003. }
  26004. },
  26005. },
  26006. [
  26007. {
  26008. name: "Normal",
  26009. height: math.unit(6 + 2 / 12, "feet"),
  26010. default: true
  26011. },
  26012. {
  26013. name: "Normal+",
  26014. height: math.unit(4, "meters")
  26015. },
  26016. {
  26017. name: "Macro",
  26018. height: math.unit(50, "meters")
  26019. },
  26020. {
  26021. name: "Macro+",
  26022. height: math.unit(100, "meters")
  26023. },
  26024. {
  26025. name: "Megamacro",
  26026. height: math.unit(20, "km")
  26027. },
  26028. {
  26029. name: "Caretaker",
  26030. height: math.unit(444, "megameters")
  26031. },
  26032. ]
  26033. ))
  26034. characterMakers.push(() => makeCharacter(
  26035. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26036. {
  26037. front: {
  26038. height: math.unit(1.67, "meters"),
  26039. weight: math.unit(140, "lb"),
  26040. name: "Front",
  26041. image: {
  26042. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26043. extra: 438 / 410,
  26044. bottom: 0.75 / 439
  26045. }
  26046. },
  26047. },
  26048. [
  26049. {
  26050. name: "Shrunken",
  26051. height: math.unit(7.6, "cm")
  26052. },
  26053. {
  26054. name: "Human Scale",
  26055. height: math.unit(1.67, "meters")
  26056. },
  26057. {
  26058. name: "Wolxi Scale",
  26059. height: math.unit(36.7, "meters"),
  26060. default: true
  26061. },
  26062. ]
  26063. ))
  26064. characterMakers.push(() => makeCharacter(
  26065. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26066. {
  26067. front: {
  26068. height: math.unit(1.73, "meters"),
  26069. weight: math.unit(240, "lb"),
  26070. name: "Front",
  26071. image: {
  26072. source: "./media/characters/izue-two-mothers/front.svg",
  26073. extra: 469 / 437,
  26074. bottom: 1.24 / 470.6
  26075. }
  26076. },
  26077. },
  26078. [
  26079. {
  26080. name: "Shrunken",
  26081. height: math.unit(7.86, "cm")
  26082. },
  26083. {
  26084. name: "Human Scale",
  26085. height: math.unit(1.73, "meters")
  26086. },
  26087. {
  26088. name: "Wolxi Scale",
  26089. height: math.unit(38, "meters"),
  26090. default: true
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26096. {
  26097. front: {
  26098. height: math.unit(1.55, "meters"),
  26099. weight: math.unit(120, "lb"),
  26100. name: "Front",
  26101. image: {
  26102. source: "./media/characters/teeku-love-shack/front.svg",
  26103. extra: 387 / 362,
  26104. bottom: 1.51 / 388
  26105. }
  26106. },
  26107. },
  26108. [
  26109. {
  26110. name: "Shrunken",
  26111. height: math.unit(7, "cm")
  26112. },
  26113. {
  26114. name: "Human Scale",
  26115. height: math.unit(1.55, "meters")
  26116. },
  26117. {
  26118. name: "Wolxi Scale",
  26119. height: math.unit(34.1, "meters"),
  26120. default: true
  26121. },
  26122. ]
  26123. ))
  26124. characterMakers.push(() => makeCharacter(
  26125. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26126. {
  26127. front: {
  26128. height: math.unit(1.83, "meters"),
  26129. weight: math.unit(135, "lb"),
  26130. name: "Front",
  26131. image: {
  26132. source: "./media/characters/dejma-the-red/front.svg",
  26133. extra: 480 / 458,
  26134. bottom: 1.8 / 482
  26135. }
  26136. },
  26137. },
  26138. [
  26139. {
  26140. name: "Shrunken",
  26141. height: math.unit(8.3, "cm")
  26142. },
  26143. {
  26144. name: "Human Scale",
  26145. height: math.unit(1.83, "meters")
  26146. },
  26147. {
  26148. name: "Wolxi Scale",
  26149. height: math.unit(40, "meters"),
  26150. default: true
  26151. },
  26152. ]
  26153. ))
  26154. characterMakers.push(() => makeCharacter(
  26155. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26156. {
  26157. front: {
  26158. height: math.unit(1.78, "meters"),
  26159. weight: math.unit(65, "kg"),
  26160. name: "Front",
  26161. image: {
  26162. source: "./media/characters/aki/front.svg",
  26163. extra: 452 / 415
  26164. }
  26165. },
  26166. frontNsfw: {
  26167. height: math.unit(1.78, "meters"),
  26168. weight: math.unit(65, "kg"),
  26169. name: "Front (NSFW)",
  26170. image: {
  26171. source: "./media/characters/aki/front-nsfw.svg",
  26172. extra: 452 / 415
  26173. }
  26174. },
  26175. back: {
  26176. height: math.unit(1.78, "meters"),
  26177. weight: math.unit(65, "kg"),
  26178. name: "Back",
  26179. image: {
  26180. source: "./media/characters/aki/back.svg",
  26181. extra: 452 / 415
  26182. }
  26183. },
  26184. rump: {
  26185. height: math.unit(2.05, "feet"),
  26186. name: "Rump",
  26187. image: {
  26188. source: "./media/characters/aki/rump.svg"
  26189. }
  26190. },
  26191. dick: {
  26192. height: math.unit(0.95, "feet"),
  26193. name: "Dick",
  26194. image: {
  26195. source: "./media/characters/aki/dick.svg"
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Micro",
  26202. height: math.unit(15, "cm")
  26203. },
  26204. {
  26205. name: "Normal",
  26206. height: math.unit(178, "cm"),
  26207. default: true
  26208. },
  26209. {
  26210. name: "Macro",
  26211. height: math.unit(214, "m")
  26212. },
  26213. {
  26214. name: "Macro+",
  26215. height: math.unit(534, "m")
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26221. {
  26222. front: {
  26223. height: math.unit(5 + 5 / 12, "feet"),
  26224. weight: math.unit(120, "lb"),
  26225. name: "Front",
  26226. image: {
  26227. source: "./media/characters/ari/front.svg",
  26228. extra: 1550/1471,
  26229. bottom: 39/1589
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(5 + 5 / 12, "feet")
  26237. },
  26238. {
  26239. name: "Macro",
  26240. height: math.unit(100, "feet"),
  26241. default: true
  26242. },
  26243. {
  26244. name: "Megamacro",
  26245. height: math.unit(100, "miles")
  26246. },
  26247. {
  26248. name: "Gigamacro",
  26249. height: math.unit(80000, "miles")
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26255. {
  26256. side: {
  26257. height: math.unit(9, "feet"),
  26258. weight: math.unit(400, "kg"),
  26259. name: "Side",
  26260. image: {
  26261. source: "./media/characters/bolt/side.svg",
  26262. extra: 1126 / 896,
  26263. bottom: 60 / 1187.3,
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Micro",
  26270. height: math.unit(5, "inches")
  26271. },
  26272. {
  26273. name: "Normal",
  26274. height: math.unit(9, "feet"),
  26275. default: true
  26276. },
  26277. {
  26278. name: "Macro",
  26279. height: math.unit(700, "feet")
  26280. },
  26281. {
  26282. name: "Max Size",
  26283. height: math.unit(1.52e22, "yottameters")
  26284. },
  26285. ]
  26286. ))
  26287. characterMakers.push(() => makeCharacter(
  26288. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26289. {
  26290. front: {
  26291. height: math.unit(4.3, "meters"),
  26292. weight: math.unit(3, "tons"),
  26293. name: "Front",
  26294. image: {
  26295. source: "./media/characters/draekon-sylviar/front.svg",
  26296. extra: 2072/1512,
  26297. bottom: 74/2146
  26298. }
  26299. },
  26300. back: {
  26301. height: math.unit(4.3, "meters"),
  26302. weight: math.unit(3, "tons"),
  26303. name: "Back",
  26304. image: {
  26305. source: "./media/characters/draekon-sylviar/back.svg",
  26306. extra: 1639/1483,
  26307. bottom: 41/1680
  26308. }
  26309. },
  26310. feral: {
  26311. height: math.unit(1.15, "meters"),
  26312. weight: math.unit(3, "tons"),
  26313. name: "Feral",
  26314. image: {
  26315. source: "./media/characters/draekon-sylviar/feral.svg",
  26316. extra: 1033/395,
  26317. bottom: 130/1163
  26318. }
  26319. },
  26320. maw: {
  26321. height: math.unit(1.3, "meters"),
  26322. name: "Maw",
  26323. image: {
  26324. source: "./media/characters/draekon-sylviar/maw.svg"
  26325. }
  26326. },
  26327. mawSeparated: {
  26328. height: math.unit(1.53, "meters"),
  26329. name: "Separated Maw",
  26330. image: {
  26331. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26332. }
  26333. },
  26334. tail: {
  26335. height: math.unit(1.15, "meters"),
  26336. name: "Tail",
  26337. image: {
  26338. source: "./media/characters/draekon-sylviar/tail.svg"
  26339. }
  26340. },
  26341. tailDick: {
  26342. height: math.unit(1.15, "meters"),
  26343. name: "Tail (Dick)",
  26344. image: {
  26345. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26346. }
  26347. },
  26348. tailDickSeparated: {
  26349. height: math.unit(1.19, "meters"),
  26350. name: "Tail (Separated Dick)",
  26351. image: {
  26352. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26353. }
  26354. },
  26355. slit: {
  26356. height: math.unit(1, "meters"),
  26357. name: "Slit",
  26358. image: {
  26359. source: "./media/characters/draekon-sylviar/slit.svg"
  26360. }
  26361. },
  26362. dick: {
  26363. height: math.unit(1.15, "meters"),
  26364. name: "Dick",
  26365. image: {
  26366. source: "./media/characters/draekon-sylviar/dick.svg"
  26367. }
  26368. },
  26369. dickSeparated: {
  26370. height: math.unit(1.1, "meters"),
  26371. name: "Separated Dick",
  26372. image: {
  26373. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26374. }
  26375. },
  26376. sheath: {
  26377. height: math.unit(1.15, "meters"),
  26378. name: "Sheath",
  26379. image: {
  26380. source: "./media/characters/draekon-sylviar/sheath.svg"
  26381. }
  26382. },
  26383. },
  26384. [
  26385. {
  26386. name: "Small",
  26387. height: math.unit(4.53 / 2, "meters"),
  26388. default: true
  26389. },
  26390. {
  26391. name: "Normal",
  26392. height: math.unit(4.53, "meters"),
  26393. default: true
  26394. },
  26395. {
  26396. name: "Large",
  26397. height: math.unit(4.53 * 2, "meters"),
  26398. },
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26403. {
  26404. front: {
  26405. height: math.unit(6 + 2 / 12, "feet"),
  26406. weight: math.unit(180, "lb"),
  26407. name: "Front",
  26408. image: {
  26409. source: "./media/characters/brawler/front.svg",
  26410. extra: 3301 / 3027,
  26411. bottom: 138 / 3439
  26412. }
  26413. },
  26414. },
  26415. [
  26416. {
  26417. name: "Normal",
  26418. height: math.unit(6 + 2 / 12, "feet"),
  26419. default: true
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26425. {
  26426. front: {
  26427. height: math.unit(11, "feet"),
  26428. weight: math.unit(1000, "lb"),
  26429. name: "Front",
  26430. image: {
  26431. source: "./media/characters/alex/front.svg",
  26432. bottom: 44.5 / 620
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Micro",
  26439. height: math.unit(5, "inches")
  26440. },
  26441. {
  26442. name: "Normal",
  26443. height: math.unit(11, "feet"),
  26444. default: true
  26445. },
  26446. {
  26447. name: "Macro",
  26448. height: math.unit(9.5e9, "feet")
  26449. },
  26450. {
  26451. name: "Max Size",
  26452. height: math.unit(1.4e283, "yottameters")
  26453. },
  26454. ]
  26455. ))
  26456. characterMakers.push(() => makeCharacter(
  26457. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26458. {
  26459. female: {
  26460. height: math.unit(29.9, "m"),
  26461. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26462. name: "Female",
  26463. image: {
  26464. source: "./media/characters/zenari/female.svg",
  26465. extra: 3281.6 / 3217,
  26466. bottom: 72.2 / 3353
  26467. }
  26468. },
  26469. male: {
  26470. height: math.unit(27.7, "m"),
  26471. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26472. name: "Male",
  26473. image: {
  26474. source: "./media/characters/zenari/male.svg",
  26475. extra: 3008 / 2991,
  26476. bottom: 54.6 / 3069
  26477. }
  26478. },
  26479. },
  26480. [
  26481. {
  26482. name: "Macro",
  26483. height: math.unit(29.7, "meters"),
  26484. default: true
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26490. {
  26491. female: {
  26492. height: math.unit(23.8, "m"),
  26493. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26494. name: "Female",
  26495. image: {
  26496. source: "./media/characters/mactarian/female.svg",
  26497. extra: 2662 / 2569,
  26498. bottom: 73 / 2736
  26499. }
  26500. },
  26501. male: {
  26502. height: math.unit(23.8, "m"),
  26503. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26504. name: "Male",
  26505. image: {
  26506. source: "./media/characters/mactarian/male.svg",
  26507. extra: 2673 / 2600,
  26508. bottom: 76 / 2750
  26509. }
  26510. },
  26511. },
  26512. [
  26513. {
  26514. name: "Macro",
  26515. height: math.unit(23.8, "meters"),
  26516. default: true
  26517. },
  26518. ]
  26519. ))
  26520. characterMakers.push(() => makeCharacter(
  26521. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26522. {
  26523. female: {
  26524. height: math.unit(19.3, "m"),
  26525. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26526. name: "Female",
  26527. image: {
  26528. source: "./media/characters/umok/female.svg",
  26529. extra: 2186 / 2078,
  26530. bottom: 87 / 2277
  26531. }
  26532. },
  26533. male: {
  26534. height: math.unit(19.5, "m"),
  26535. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26536. name: "Male",
  26537. image: {
  26538. source: "./media/characters/umok/male.svg",
  26539. extra: 2233 / 2140,
  26540. bottom: 24.4 / 2258
  26541. }
  26542. },
  26543. },
  26544. [
  26545. {
  26546. name: "Macro",
  26547. height: math.unit(19.3, "meters"),
  26548. default: true
  26549. },
  26550. ]
  26551. ))
  26552. characterMakers.push(() => makeCharacter(
  26553. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26554. {
  26555. female: {
  26556. height: math.unit(26.15, "m"),
  26557. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26558. name: "Female",
  26559. image: {
  26560. source: "./media/characters/joraxian/female.svg",
  26561. extra: 2912 / 2824,
  26562. bottom: 36 / 2956
  26563. }
  26564. },
  26565. male: {
  26566. height: math.unit(25.4, "m"),
  26567. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26568. name: "Male",
  26569. image: {
  26570. source: "./media/characters/joraxian/male.svg",
  26571. extra: 2877 / 2721,
  26572. bottom: 82 / 2967
  26573. }
  26574. },
  26575. },
  26576. [
  26577. {
  26578. name: "Macro",
  26579. height: math.unit(26.15, "meters"),
  26580. default: true
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26586. {
  26587. female: {
  26588. height: math.unit(21.6, "m"),
  26589. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26590. name: "Female",
  26591. image: {
  26592. source: "./media/characters/sthara/female.svg",
  26593. extra: 2516 / 2347,
  26594. bottom: 21.5 / 2537
  26595. }
  26596. },
  26597. male: {
  26598. height: math.unit(24, "m"),
  26599. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26600. name: "Male",
  26601. image: {
  26602. source: "./media/characters/sthara/male.svg",
  26603. extra: 2732 / 2607,
  26604. bottom: 23 / 2732
  26605. }
  26606. },
  26607. },
  26608. [
  26609. {
  26610. name: "Macro",
  26611. height: math.unit(21.6, "meters"),
  26612. default: true
  26613. },
  26614. ]
  26615. ))
  26616. characterMakers.push(() => makeCharacter(
  26617. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26618. {
  26619. front: {
  26620. height: math.unit(6 + 4 / 12, "feet"),
  26621. weight: math.unit(175, "lb"),
  26622. name: "Front",
  26623. image: {
  26624. source: "./media/characters/luka-bryzant/front.svg",
  26625. extra: 311 / 289,
  26626. bottom: 4 / 315
  26627. }
  26628. },
  26629. back: {
  26630. height: math.unit(6 + 4 / 12, "feet"),
  26631. weight: math.unit(175, "lb"),
  26632. name: "Back",
  26633. image: {
  26634. source: "./media/characters/luka-bryzant/back.svg",
  26635. extra: 311 / 289,
  26636. bottom: 3.8 / 313.7
  26637. }
  26638. },
  26639. },
  26640. [
  26641. {
  26642. name: "Micro",
  26643. height: math.unit(10, "inches")
  26644. },
  26645. {
  26646. name: "Normal",
  26647. height: math.unit(6 + 4 / 12, "feet"),
  26648. default: true
  26649. },
  26650. {
  26651. name: "Large",
  26652. height: math.unit(12, "feet")
  26653. },
  26654. ]
  26655. ))
  26656. characterMakers.push(() => makeCharacter(
  26657. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26658. {
  26659. front: {
  26660. height: math.unit(5 + 7 / 12, "feet"),
  26661. weight: math.unit(185, "lb"),
  26662. name: "Front",
  26663. image: {
  26664. source: "./media/characters/aman-aquila/front.svg",
  26665. extra: 1013 / 976,
  26666. bottom: 45.6 / 1057
  26667. }
  26668. },
  26669. side: {
  26670. height: math.unit(5 + 7 / 12, "feet"),
  26671. weight: math.unit(185, "lb"),
  26672. name: "Side",
  26673. image: {
  26674. source: "./media/characters/aman-aquila/side.svg",
  26675. extra: 1054 / 1011,
  26676. bottom: 15 / 1070
  26677. }
  26678. },
  26679. back: {
  26680. height: math.unit(5 + 7 / 12, "feet"),
  26681. weight: math.unit(185, "lb"),
  26682. name: "Back",
  26683. image: {
  26684. source: "./media/characters/aman-aquila/back.svg",
  26685. extra: 1026 / 970,
  26686. bottom: 12 / 1039
  26687. }
  26688. },
  26689. head: {
  26690. height: math.unit(1.211, "feet"),
  26691. name: "Head",
  26692. image: {
  26693. source: "./media/characters/aman-aquila/head.svg",
  26694. }
  26695. },
  26696. },
  26697. [
  26698. {
  26699. name: "Minimicro",
  26700. height: math.unit(0.057, "inches")
  26701. },
  26702. {
  26703. name: "Micro",
  26704. height: math.unit(7, "inches")
  26705. },
  26706. {
  26707. name: "Mini",
  26708. height: math.unit(3 + 7 / 12, "feet")
  26709. },
  26710. {
  26711. name: "Normal",
  26712. height: math.unit(5 + 7 / 12, "feet"),
  26713. default: true
  26714. },
  26715. {
  26716. name: "Macro",
  26717. height: math.unit(157 + 7 / 12, "feet")
  26718. },
  26719. {
  26720. name: "Megamacro",
  26721. height: math.unit(1557 + 7 / 12, "feet")
  26722. },
  26723. {
  26724. name: "Gigamacro",
  26725. height: math.unit(15557 + 7 / 12, "feet")
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(3 + 2 / 12, "inches"),
  26734. weight: math.unit(0.3, "ounces"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/hiphae/front.svg",
  26738. extra: 1931 / 1683,
  26739. bottom: 24 / 1955
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(3 + 1 / 2, "inches"),
  26747. default: true
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26753. {
  26754. front: {
  26755. height: math.unit(5 + 10 / 12, "feet"),
  26756. weight: math.unit(165, "lb"),
  26757. name: "Front",
  26758. image: {
  26759. source: "./media/characters/nicky/front.svg",
  26760. extra: 3144 / 2886,
  26761. bottom: 45.6 / 3192
  26762. }
  26763. },
  26764. back: {
  26765. height: math.unit(5 + 10 / 12, "feet"),
  26766. weight: math.unit(165, "lb"),
  26767. name: "Back",
  26768. image: {
  26769. source: "./media/characters/nicky/back.svg",
  26770. extra: 3055 / 2804,
  26771. bottom: 28.4 / 3087
  26772. }
  26773. },
  26774. frontclothed: {
  26775. height: math.unit(5 + 10 / 12, "feet"),
  26776. weight: math.unit(165, "lb"),
  26777. name: "Front-clothed",
  26778. image: {
  26779. source: "./media/characters/nicky/front-clothed.svg",
  26780. extra: 3184.9 / 2926.9,
  26781. bottom: 86.5 / 3239.9
  26782. }
  26783. },
  26784. foot: {
  26785. height: math.unit(1.16, "feet"),
  26786. name: "Foot",
  26787. image: {
  26788. source: "./media/characters/nicky/foot.svg"
  26789. }
  26790. },
  26791. feet: {
  26792. height: math.unit(1.34, "feet"),
  26793. name: "Feet",
  26794. image: {
  26795. source: "./media/characters/nicky/feet.svg"
  26796. }
  26797. },
  26798. maw: {
  26799. height: math.unit(0.9, "feet"),
  26800. name: "Maw",
  26801. image: {
  26802. source: "./media/characters/nicky/maw.svg"
  26803. }
  26804. },
  26805. },
  26806. [
  26807. {
  26808. name: "Normal",
  26809. height: math.unit(5 + 10 / 12, "feet"),
  26810. default: true
  26811. },
  26812. {
  26813. name: "Macro",
  26814. height: math.unit(60, "feet")
  26815. },
  26816. {
  26817. name: "Megamacro",
  26818. height: math.unit(1, "mile")
  26819. },
  26820. ]
  26821. ))
  26822. characterMakers.push(() => makeCharacter(
  26823. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26824. {
  26825. side: {
  26826. height: math.unit(10, "feet"),
  26827. weight: math.unit(600, "lb"),
  26828. name: "Side",
  26829. image: {
  26830. source: "./media/characters/blair/side.svg",
  26831. bottom: 16.6 / 475,
  26832. extra: 458 / 431
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Micro",
  26839. height: math.unit(8, "inches")
  26840. },
  26841. {
  26842. name: "Normal",
  26843. height: math.unit(10, "feet"),
  26844. default: true
  26845. },
  26846. {
  26847. name: "Macro",
  26848. height: math.unit(180, "feet")
  26849. },
  26850. ]
  26851. ))
  26852. characterMakers.push(() => makeCharacter(
  26853. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26854. {
  26855. front: {
  26856. height: math.unit(5 + 4 / 12, "feet"),
  26857. weight: math.unit(125, "lb"),
  26858. name: "Front",
  26859. image: {
  26860. source: "./media/characters/fisher/front.svg",
  26861. extra: 444 / 390,
  26862. bottom: 2 / 444.8
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Micro",
  26869. height: math.unit(4, "inches")
  26870. },
  26871. {
  26872. name: "Normal",
  26873. height: math.unit(5 + 4 / 12, "feet"),
  26874. default: true
  26875. },
  26876. {
  26877. name: "Macro",
  26878. height: math.unit(100, "feet")
  26879. },
  26880. ]
  26881. ))
  26882. characterMakers.push(() => makeCharacter(
  26883. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26884. {
  26885. front: {
  26886. height: math.unit(6.71, "feet"),
  26887. weight: math.unit(200, "lb"),
  26888. preyCapacity: math.unit(1000000, "people"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/gliss/front.svg",
  26892. extra: 2347 / 2231,
  26893. bottom: 113 / 2462
  26894. }
  26895. },
  26896. hammerspaceSize: {
  26897. height: math.unit(6.71 * 717, "feet"),
  26898. weight: math.unit(200, "lb"),
  26899. preyCapacity: math.unit(1000000, "people"),
  26900. name: "Hammerspace Size",
  26901. image: {
  26902. source: "./media/characters/gliss/front.svg",
  26903. extra: 2347 / 2231,
  26904. bottom: 113 / 2462
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Normal",
  26911. height: math.unit(6.71, "feet"),
  26912. default: true
  26913. },
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26918. {
  26919. side: {
  26920. height: math.unit(1.44, "m"),
  26921. weight: math.unit(80, "kg"),
  26922. name: "Side",
  26923. image: {
  26924. source: "./media/characters/dune-anderson/side.svg",
  26925. bottom: 49 / 1426
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Wolf-sized",
  26932. height: math.unit(1.44, "meters")
  26933. },
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(5.05, "meters"),
  26937. default: true
  26938. },
  26939. {
  26940. name: "Big",
  26941. height: math.unit(14.4, "meters")
  26942. },
  26943. {
  26944. name: "Huge",
  26945. height: math.unit(144, "meters")
  26946. },
  26947. ]
  26948. ))
  26949. characterMakers.push(() => makeCharacter(
  26950. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26951. {
  26952. front: {
  26953. height: math.unit(7, "feet"),
  26954. weight: math.unit(425, "lb"),
  26955. name: "Front",
  26956. image: {
  26957. source: "./media/characters/hind/front.svg",
  26958. extra: 2091 / 1860,
  26959. bottom: 129 / 2220
  26960. }
  26961. },
  26962. back: {
  26963. height: math.unit(7, "feet"),
  26964. weight: math.unit(425, "lb"),
  26965. name: "Back",
  26966. image: {
  26967. source: "./media/characters/hind/back.svg",
  26968. extra: 2091 / 1860,
  26969. bottom: 24.6 / 2309
  26970. }
  26971. },
  26972. tail: {
  26973. height: math.unit(2.8, "feet"),
  26974. name: "Tail",
  26975. image: {
  26976. source: "./media/characters/hind/tail.svg"
  26977. }
  26978. },
  26979. head: {
  26980. height: math.unit(2.55, "feet"),
  26981. name: "Head",
  26982. image: {
  26983. source: "./media/characters/hind/head.svg"
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "XS",
  26990. height: math.unit(0.7, "feet")
  26991. },
  26992. {
  26993. name: "Normal",
  26994. height: math.unit(7, "feet"),
  26995. default: true
  26996. },
  26997. {
  26998. name: "XL",
  26999. height: math.unit(70, "feet")
  27000. },
  27001. ]
  27002. ))
  27003. characterMakers.push(() => makeCharacter(
  27004. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27005. {
  27006. front: {
  27007. height: math.unit(2.1, "meters"),
  27008. weight: math.unit(150, "lb"),
  27009. name: "Front",
  27010. image: {
  27011. source: "./media/characters/tharquench-sizestealer/front.svg",
  27012. extra: 1605/1470,
  27013. bottom: 36/1641
  27014. }
  27015. },
  27016. frontAlt: {
  27017. height: math.unit(2.1, "meters"),
  27018. weight: math.unit(150, "lb"),
  27019. name: "Front (Alt)",
  27020. image: {
  27021. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27022. extra: 2318 / 2063,
  27023. bottom: 93.4 / 2410
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Nano",
  27030. height: math.unit(1, "mm")
  27031. },
  27032. {
  27033. name: "Micro",
  27034. height: math.unit(1, "cm")
  27035. },
  27036. {
  27037. name: "Normal",
  27038. height: math.unit(2.1, "meters"),
  27039. default: true
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(7 + 5 / 12, "feet"),
  27048. weight: math.unit(357, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/solex-draconov/front.svg",
  27052. extra: 1993 / 1865,
  27053. bottom: 117 / 2111
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Natural Height",
  27060. height: math.unit(7 + 5 / 12, "feet"),
  27061. default: true
  27062. },
  27063. {
  27064. name: "Macro",
  27065. height: math.unit(350, "feet")
  27066. },
  27067. {
  27068. name: "Macro+",
  27069. height: math.unit(1000, "feet")
  27070. },
  27071. {
  27072. name: "Megamacro",
  27073. height: math.unit(20, "km")
  27074. },
  27075. {
  27076. name: "Megamacro+",
  27077. height: math.unit(1000, "km")
  27078. },
  27079. {
  27080. name: "Gigamacro",
  27081. height: math.unit(2.5, "Gm")
  27082. },
  27083. {
  27084. name: "Teramacro",
  27085. height: math.unit(15, "Tm")
  27086. },
  27087. {
  27088. name: "Galactic",
  27089. height: math.unit(30, "Zm")
  27090. },
  27091. {
  27092. name: "Universal",
  27093. height: math.unit(21000, "Ym")
  27094. },
  27095. {
  27096. name: "Omniversal",
  27097. height: math.unit(9.861e50, "Ym")
  27098. },
  27099. {
  27100. name: "Existential",
  27101. height: math.unit(1e300, "meters")
  27102. },
  27103. ]
  27104. ))
  27105. characterMakers.push(() => makeCharacter(
  27106. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27107. {
  27108. side: {
  27109. height: math.unit(25, "feet"),
  27110. weight: math.unit(90000, "lb"),
  27111. name: "Side",
  27112. image: {
  27113. source: "./media/characters/mandarax/side.svg",
  27114. extra: 614 / 332,
  27115. bottom: 55 / 630
  27116. }
  27117. },
  27118. lounging: {
  27119. height: math.unit(15.4, "feet"),
  27120. weight: math.unit(90000, "lb"),
  27121. name: "Lounging",
  27122. image: {
  27123. source: "./media/characters/mandarax/lounging.svg",
  27124. extra: 817/609,
  27125. bottom: 685/1502
  27126. }
  27127. },
  27128. head: {
  27129. height: math.unit(11.4, "feet"),
  27130. name: "Head",
  27131. image: {
  27132. source: "./media/characters/mandarax/head.svg"
  27133. }
  27134. },
  27135. belly: {
  27136. height: math.unit(33, "feet"),
  27137. name: "Belly",
  27138. preyCapacity: math.unit(500, "people"),
  27139. image: {
  27140. source: "./media/characters/mandarax/belly.svg"
  27141. }
  27142. },
  27143. dick: {
  27144. height: math.unit(8.46, "feet"),
  27145. name: "Dick",
  27146. image: {
  27147. source: "./media/characters/mandarax/dick.svg"
  27148. }
  27149. },
  27150. top: {
  27151. height: math.unit(28, "meters"),
  27152. name: "Top",
  27153. image: {
  27154. source: "./media/characters/mandarax/top.svg"
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(25, "feet"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(5, "feet"),
  27171. weight: math.unit(90, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/pixil/front.svg",
  27175. extra: 2000 / 1618,
  27176. bottom: 12.3 / 2011
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Normal",
  27183. height: math.unit(5, "feet"),
  27184. default: true
  27185. },
  27186. {
  27187. name: "Megamacro",
  27188. height: math.unit(10, "miles"),
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(7 + 2 / 12, "feet"),
  27197. weight: math.unit(200, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/angel/front.svg",
  27201. extra: 1830 / 1737,
  27202. bottom: 22.6 / 1854,
  27203. }
  27204. },
  27205. },
  27206. [
  27207. {
  27208. name: "Normal",
  27209. height: math.unit(7 + 2 / 12, "feet"),
  27210. default: true
  27211. },
  27212. {
  27213. name: "Macro",
  27214. height: math.unit(1000, "feet")
  27215. },
  27216. {
  27217. name: "Megamacro",
  27218. height: math.unit(2, "miles")
  27219. },
  27220. {
  27221. name: "Gigamacro",
  27222. height: math.unit(20, "earths")
  27223. },
  27224. ]
  27225. ))
  27226. characterMakers.push(() => makeCharacter(
  27227. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27228. {
  27229. front: {
  27230. height: math.unit(5, "feet"),
  27231. weight: math.unit(180, "lb"),
  27232. name: "Front",
  27233. image: {
  27234. source: "./media/characters/mekana/front.svg",
  27235. extra: 1671 / 1605,
  27236. bottom: 3.5 / 1691
  27237. }
  27238. },
  27239. side: {
  27240. height: math.unit(5, "feet"),
  27241. weight: math.unit(180, "lb"),
  27242. name: "Side",
  27243. image: {
  27244. source: "./media/characters/mekana/side.svg",
  27245. extra: 1671 / 1605,
  27246. bottom: 3.5 / 1691
  27247. }
  27248. },
  27249. back: {
  27250. height: math.unit(5, "feet"),
  27251. weight: math.unit(180, "lb"),
  27252. name: "Back",
  27253. image: {
  27254. source: "./media/characters/mekana/back.svg",
  27255. extra: 1671 / 1605,
  27256. bottom: 3.5 / 1691
  27257. }
  27258. },
  27259. },
  27260. [
  27261. {
  27262. name: "Normal",
  27263. height: math.unit(5, "feet"),
  27264. default: true
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27270. {
  27271. front: {
  27272. height: math.unit(4 + 6 / 12, "feet"),
  27273. weight: math.unit(80, "lb"),
  27274. name: "Front",
  27275. image: {
  27276. source: "./media/characters/pixie/front.svg",
  27277. extra: 1924 / 1825,
  27278. bottom: 22.4 / 1946
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(4 + 6 / 12, "feet"),
  27286. default: true
  27287. },
  27288. {
  27289. name: "Macro",
  27290. height: math.unit(40, "feet")
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27296. {
  27297. front: {
  27298. height: math.unit(2.1, "meters"),
  27299. weight: math.unit(200, "lb"),
  27300. name: "Front",
  27301. image: {
  27302. source: "./media/characters/the-lascivious/front.svg",
  27303. extra: 1 / 0.893,
  27304. bottom: 3.5 / 573.7
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Human Scale",
  27311. height: math.unit(2.1, "meters")
  27312. },
  27313. {
  27314. name: "Wolxi Scale",
  27315. height: math.unit(46.2, "m"),
  27316. default: true
  27317. },
  27318. {
  27319. name: "Boinker of Buildings",
  27320. height: math.unit(10, "km")
  27321. },
  27322. {
  27323. name: "Shagger of Skyscrapers",
  27324. height: math.unit(40, "km")
  27325. },
  27326. {
  27327. name: "Banger of Boroughs",
  27328. height: math.unit(4000, "km")
  27329. },
  27330. {
  27331. name: "Screwer of States",
  27332. height: math.unit(100000, "km")
  27333. },
  27334. {
  27335. name: "Pounder of Planets",
  27336. height: math.unit(2000000, "km")
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27342. {
  27343. front: {
  27344. height: math.unit(6, "feet"),
  27345. weight: math.unit(150, "lb"),
  27346. name: "Front",
  27347. image: {
  27348. source: "./media/characters/aj/front.svg",
  27349. extra: 2039 / 1562,
  27350. bottom: 40 / 2079
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(11 + 6 / 12, "feet"),
  27358. default: true
  27359. },
  27360. {
  27361. name: "Megamacro",
  27362. height: math.unit(60, "megameters")
  27363. },
  27364. ]
  27365. ))
  27366. characterMakers.push(() => makeCharacter(
  27367. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27368. {
  27369. side: {
  27370. height: math.unit(31 + 8 / 12, "feet"),
  27371. weight: math.unit(75000, "kg"),
  27372. name: "Side",
  27373. image: {
  27374. source: "./media/characters/koros/side.svg",
  27375. extra: 1442 / 1297,
  27376. bottom: 122.7 / 1562
  27377. }
  27378. },
  27379. dicksKingsCrown: {
  27380. height: math.unit(6, "feet"),
  27381. name: "Dicks (King's Crown)",
  27382. image: {
  27383. source: "./media/characters/koros/dicks-kings-crown.svg"
  27384. }
  27385. },
  27386. dicksTailSet: {
  27387. height: math.unit(3, "feet"),
  27388. name: "Dicks (Tail Set)",
  27389. image: {
  27390. source: "./media/characters/koros/dicks-tail-set.svg"
  27391. }
  27392. },
  27393. dickCumming: {
  27394. height: math.unit(7.98, "feet"),
  27395. name: "Dick (Cumming)",
  27396. image: {
  27397. source: "./media/characters/koros/dick-cumming.svg"
  27398. }
  27399. },
  27400. dicksBack: {
  27401. height: math.unit(5.9, "feet"),
  27402. name: "Dicks (Back)",
  27403. image: {
  27404. source: "./media/characters/koros/dicks-back.svg"
  27405. }
  27406. },
  27407. dicksFront: {
  27408. height: math.unit(3.72, "feet"),
  27409. name: "Dicks (Front)",
  27410. image: {
  27411. source: "./media/characters/koros/dicks-front.svg"
  27412. }
  27413. },
  27414. dicksPeeking: {
  27415. height: math.unit(3.0, "feet"),
  27416. name: "Dicks (Peeking)",
  27417. image: {
  27418. source: "./media/characters/koros/dicks-peeking.svg"
  27419. }
  27420. },
  27421. eye: {
  27422. height: math.unit(1.7, "feet"),
  27423. name: "Eye",
  27424. image: {
  27425. source: "./media/characters/koros/eye.svg"
  27426. }
  27427. },
  27428. headFront: {
  27429. height: math.unit(11.69, "feet"),
  27430. name: "Head (Front)",
  27431. image: {
  27432. source: "./media/characters/koros/head-front.svg"
  27433. }
  27434. },
  27435. headSide: {
  27436. height: math.unit(14, "feet"),
  27437. name: "Head (Side)",
  27438. image: {
  27439. source: "./media/characters/koros/head-side.svg"
  27440. }
  27441. },
  27442. leg: {
  27443. height: math.unit(17, "feet"),
  27444. name: "Leg",
  27445. image: {
  27446. source: "./media/characters/koros/leg.svg"
  27447. }
  27448. },
  27449. mawSide: {
  27450. height: math.unit(12.8, "feet"),
  27451. name: "Maw (Side)",
  27452. image: {
  27453. source: "./media/characters/koros/maw-side.svg"
  27454. }
  27455. },
  27456. mawSpitting: {
  27457. height: math.unit(17, "feet"),
  27458. name: "Maw (Spitting)",
  27459. image: {
  27460. source: "./media/characters/koros/maw-spitting.svg"
  27461. }
  27462. },
  27463. slit: {
  27464. height: math.unit(2.8, "feet"),
  27465. name: "Slit",
  27466. image: {
  27467. source: "./media/characters/koros/slit.svg"
  27468. }
  27469. },
  27470. stomach: {
  27471. height: math.unit(6.8, "feet"),
  27472. preyCapacity: math.unit(20, "people"),
  27473. name: "Stomach",
  27474. image: {
  27475. source: "./media/characters/koros/stomach.svg"
  27476. }
  27477. },
  27478. wingspanBottom: {
  27479. height: math.unit(114, "feet"),
  27480. name: "Wingspan (Bottom)",
  27481. image: {
  27482. source: "./media/characters/koros/wingspan-bottom.svg"
  27483. }
  27484. },
  27485. wingspanTop: {
  27486. height: math.unit(104, "feet"),
  27487. name: "Wingspan (Top)",
  27488. image: {
  27489. source: "./media/characters/koros/wingspan-top.svg"
  27490. }
  27491. },
  27492. },
  27493. [
  27494. {
  27495. name: "Normal",
  27496. height: math.unit(31 + 8 / 12, "feet"),
  27497. default: true
  27498. },
  27499. ]
  27500. ))
  27501. characterMakers.push(() => makeCharacter(
  27502. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27503. {
  27504. front: {
  27505. height: math.unit(18 + 5 / 12, "feet"),
  27506. weight: math.unit(3750, "kg"),
  27507. name: "Front",
  27508. image: {
  27509. source: "./media/characters/vexx/front.svg",
  27510. extra: 426 / 396,
  27511. bottom: 31.5 / 458
  27512. }
  27513. },
  27514. maw: {
  27515. height: math.unit(6, "feet"),
  27516. name: "Maw",
  27517. image: {
  27518. source: "./media/characters/vexx/maw.svg"
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Normal",
  27525. height: math.unit(18 + 5 / 12, "feet"),
  27526. default: true
  27527. },
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27532. {
  27533. front: {
  27534. height: math.unit(17 + 6 / 12, "feet"),
  27535. weight: math.unit(150, "lb"),
  27536. name: "Front",
  27537. image: {
  27538. source: "./media/characters/baadra/front.svg",
  27539. extra: 1694/1553,
  27540. bottom: 179/1873
  27541. }
  27542. },
  27543. frontAlt: {
  27544. height: math.unit(17 + 6 / 12, "feet"),
  27545. weight: math.unit(150, "lb"),
  27546. name: "Front (Alt)",
  27547. image: {
  27548. source: "./media/characters/baadra/front-alt.svg",
  27549. extra: 3137 / 2890,
  27550. bottom: 168.4 / 3305
  27551. }
  27552. },
  27553. back: {
  27554. height: math.unit(17 + 6 / 12, "feet"),
  27555. weight: math.unit(150, "lb"),
  27556. name: "Back",
  27557. image: {
  27558. source: "./media/characters/baadra/back.svg",
  27559. extra: 3142 / 2890,
  27560. bottom: 220 / 3371
  27561. }
  27562. },
  27563. head: {
  27564. height: math.unit(5.45, "feet"),
  27565. name: "Head",
  27566. image: {
  27567. source: "./media/characters/baadra/head.svg"
  27568. }
  27569. },
  27570. headAngry: {
  27571. height: math.unit(4.95, "feet"),
  27572. name: "Head (Angry)",
  27573. image: {
  27574. source: "./media/characters/baadra/head-angry.svg"
  27575. }
  27576. },
  27577. headOpen: {
  27578. height: math.unit(6, "feet"),
  27579. name: "Head (Open)",
  27580. image: {
  27581. source: "./media/characters/baadra/head-open.svg"
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Normal",
  27588. height: math.unit(17 + 6 / 12, "feet"),
  27589. default: true
  27590. },
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27595. {
  27596. front: {
  27597. height: math.unit(7 + 3 / 12, "feet"),
  27598. weight: math.unit(180, "lb"),
  27599. name: "Front",
  27600. image: {
  27601. source: "./media/characters/juri/front.svg",
  27602. extra: 1401 / 1237,
  27603. bottom: 18.5 / 1418
  27604. }
  27605. },
  27606. side: {
  27607. height: math.unit(7 + 3 / 12, "feet"),
  27608. weight: math.unit(180, "lb"),
  27609. name: "Side",
  27610. image: {
  27611. source: "./media/characters/juri/side.svg",
  27612. extra: 1424 / 1242,
  27613. bottom: 18.5 / 1447
  27614. }
  27615. },
  27616. sitting: {
  27617. height: math.unit(6, "feet"),
  27618. weight: math.unit(180, "lb"),
  27619. name: "Sitting",
  27620. image: {
  27621. source: "./media/characters/juri/sitting.svg",
  27622. extra: 1270 / 1143,
  27623. bottom: 100 / 1343
  27624. }
  27625. },
  27626. back: {
  27627. height: math.unit(7 + 3 / 12, "feet"),
  27628. weight: math.unit(180, "lb"),
  27629. name: "Back",
  27630. image: {
  27631. source: "./media/characters/juri/back.svg",
  27632. extra: 1377 / 1240,
  27633. bottom: 23.7 / 1405
  27634. }
  27635. },
  27636. maw: {
  27637. height: math.unit(2.8, "feet"),
  27638. name: "Maw",
  27639. image: {
  27640. source: "./media/characters/juri/maw.svg"
  27641. }
  27642. },
  27643. stomach: {
  27644. height: math.unit(0.89, "feet"),
  27645. preyCapacity: math.unit(4, "liters"),
  27646. name: "Stomach",
  27647. image: {
  27648. source: "./media/characters/juri/stomach.svg"
  27649. }
  27650. },
  27651. },
  27652. [
  27653. {
  27654. name: "Normal",
  27655. height: math.unit(7 + 3 / 12, "feet"),
  27656. default: true
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27662. {
  27663. fox: {
  27664. height: math.unit(5 + 6 / 12, "feet"),
  27665. weight: math.unit(140, "lb"),
  27666. name: "Fox",
  27667. image: {
  27668. source: "./media/characters/maxene-sita/fox.svg",
  27669. extra: 146 / 138,
  27670. bottom: 2.1 / 148.19
  27671. }
  27672. },
  27673. foxLaying: {
  27674. height: math.unit(1.70, "feet"),
  27675. weight: math.unit(140, "lb"),
  27676. name: "Fox (Laying)",
  27677. image: {
  27678. source: "./media/characters/maxene-sita/fox-laying.svg",
  27679. extra: 910 / 572,
  27680. bottom: 71 / 981
  27681. }
  27682. },
  27683. kitsune: {
  27684. height: math.unit(10, "feet"),
  27685. weight: math.unit(800, "lb"),
  27686. name: "Kitsune",
  27687. image: {
  27688. source: "./media/characters/maxene-sita/kitsune.svg",
  27689. extra: 185 / 176,
  27690. bottom: 4.7 / 189.9
  27691. }
  27692. },
  27693. hellhound: {
  27694. height: math.unit(10, "feet"),
  27695. weight: math.unit(700, "lb"),
  27696. name: "Hellhound",
  27697. image: {
  27698. source: "./media/characters/maxene-sita/hellhound.svg",
  27699. extra: 1600 / 1545,
  27700. bottom: 81 / 1681
  27701. }
  27702. },
  27703. },
  27704. [
  27705. {
  27706. name: "Normal",
  27707. height: math.unit(5 + 6 / 12, "feet"),
  27708. default: true
  27709. },
  27710. ]
  27711. ))
  27712. characterMakers.push(() => makeCharacter(
  27713. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27714. {
  27715. front: {
  27716. height: math.unit(3 + 4 / 12, "feet"),
  27717. weight: math.unit(70, "lb"),
  27718. name: "Front",
  27719. image: {
  27720. source: "./media/characters/maia/front.svg",
  27721. extra: 227 / 219.5,
  27722. bottom: 40 / 267
  27723. }
  27724. },
  27725. back: {
  27726. height: math.unit(3 + 4 / 12, "feet"),
  27727. weight: math.unit(70, "lb"),
  27728. name: "Back",
  27729. image: {
  27730. source: "./media/characters/maia/back.svg",
  27731. extra: 237 / 225
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(3 + 4 / 12, "feet"),
  27739. default: true
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27745. {
  27746. front: {
  27747. height: math.unit(5 + 10 / 12, "feet"),
  27748. weight: math.unit(197, "lb"),
  27749. name: "Front",
  27750. image: {
  27751. source: "./media/characters/jabaro/front.svg",
  27752. extra: 225 / 216,
  27753. bottom: 5.06 / 230
  27754. }
  27755. },
  27756. back: {
  27757. height: math.unit(5 + 10 / 12, "feet"),
  27758. weight: math.unit(197, "lb"),
  27759. name: "Back",
  27760. image: {
  27761. source: "./media/characters/jabaro/back.svg",
  27762. extra: 225 / 219,
  27763. bottom: 1.9 / 227
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(5 + 10 / 12, "feet"),
  27771. default: true
  27772. },
  27773. ]
  27774. ))
  27775. characterMakers.push(() => makeCharacter(
  27776. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27777. {
  27778. front: {
  27779. height: math.unit(5 + 8 / 12, "feet"),
  27780. weight: math.unit(139, "lb"),
  27781. name: "Front",
  27782. image: {
  27783. source: "./media/characters/risa/front.svg",
  27784. extra: 270 / 260,
  27785. bottom: 11.2 / 282
  27786. }
  27787. },
  27788. back: {
  27789. height: math.unit(5 + 8 / 12, "feet"),
  27790. weight: math.unit(139, "lb"),
  27791. name: "Back",
  27792. image: {
  27793. source: "./media/characters/risa/back.svg",
  27794. extra: 264 / 255,
  27795. bottom: 4 / 268
  27796. }
  27797. },
  27798. },
  27799. [
  27800. {
  27801. name: "Normal",
  27802. height: math.unit(5 + 8 / 12, "feet"),
  27803. default: true
  27804. },
  27805. ]
  27806. ))
  27807. characterMakers.push(() => makeCharacter(
  27808. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27809. {
  27810. front: {
  27811. height: math.unit(2 + 11 / 12, "feet"),
  27812. weight: math.unit(30, "lb"),
  27813. name: "Front",
  27814. image: {
  27815. source: "./media/characters/weatley/front.svg",
  27816. bottom: 10.7 / 414,
  27817. extra: 403.5 / 362
  27818. }
  27819. },
  27820. back: {
  27821. height: math.unit(2 + 11 / 12, "feet"),
  27822. weight: math.unit(30, "lb"),
  27823. name: "Back",
  27824. image: {
  27825. source: "./media/characters/weatley/back.svg",
  27826. bottom: 10.7 / 414,
  27827. extra: 403.5 / 362
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Normal",
  27834. height: math.unit(2 + 11 / 12, "feet"),
  27835. default: true
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27841. {
  27842. front: {
  27843. height: math.unit(5 + 2 / 12, "feet"),
  27844. weight: math.unit(50, "kg"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/mercury-crescent/front.svg",
  27848. extra: 1088 / 1033,
  27849. bottom: 18.9 / 1109
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(5 + 2 / 12, "feet"),
  27857. default: true
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(2, "feet"),
  27866. weight: math.unit(15, "kg"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/diamond-jones/front.svg",
  27870. extra: 727/723,
  27871. bottom: 46/773
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(2, "feet"),
  27879. default: true
  27880. },
  27881. ]
  27882. ))
  27883. characterMakers.push(() => makeCharacter(
  27884. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27885. {
  27886. front: {
  27887. height: math.unit(3, "feet"),
  27888. weight: math.unit(30, "kg"),
  27889. name: "Front",
  27890. image: {
  27891. source: "./media/characters/sweet-bit/front.svg",
  27892. extra: 675 / 567,
  27893. bottom: 27.7 / 703
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Normal",
  27900. height: math.unit(3, "feet"),
  27901. default: true
  27902. },
  27903. ]
  27904. ))
  27905. characterMakers.push(() => makeCharacter(
  27906. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27907. {
  27908. side: {
  27909. height: math.unit(9.178, "feet"),
  27910. weight: math.unit(500, "lb"),
  27911. name: "Side",
  27912. image: {
  27913. source: "./media/characters/umbrazen/side.svg",
  27914. extra: 1730 / 1473,
  27915. bottom: 34.6 / 1765
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Normal",
  27922. height: math.unit(9.178, "feet"),
  27923. default: true
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27929. {
  27930. front: {
  27931. height: math.unit(10, "feet"),
  27932. weight: math.unit(750, "lb"),
  27933. name: "Front",
  27934. image: {
  27935. source: "./media/characters/arlist/front.svg",
  27936. extra: 961 / 778,
  27937. bottom: 6.2 / 986
  27938. }
  27939. },
  27940. },
  27941. [
  27942. {
  27943. name: "Normal",
  27944. height: math.unit(10, "feet"),
  27945. default: true
  27946. },
  27947. ]
  27948. ))
  27949. characterMakers.push(() => makeCharacter(
  27950. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27951. {
  27952. front: {
  27953. height: math.unit(5 + 1 / 12, "feet"),
  27954. weight: math.unit(110, "lb"),
  27955. name: "Front",
  27956. image: {
  27957. source: "./media/characters/aradel/front.svg",
  27958. extra: 324 / 303,
  27959. bottom: 3.6 / 329.4
  27960. }
  27961. },
  27962. },
  27963. [
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(5 + 1 / 12, "feet"),
  27967. default: true
  27968. },
  27969. ]
  27970. ))
  27971. characterMakers.push(() => makeCharacter(
  27972. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27973. {
  27974. dressed: {
  27975. height: math.unit(3 + 8 / 12, "feet"),
  27976. weight: math.unit(50, "lb"),
  27977. name: "Dressed",
  27978. image: {
  27979. source: "./media/characters/serryn/dressed.svg",
  27980. extra: 1792 / 1656,
  27981. bottom: 43.5 / 1840
  27982. }
  27983. },
  27984. nude: {
  27985. height: math.unit(3 + 8 / 12, "feet"),
  27986. weight: math.unit(50, "lb"),
  27987. name: "Nude",
  27988. image: {
  27989. source: "./media/characters/serryn/nude.svg",
  27990. extra: 1792 / 1656,
  27991. bottom: 43.5 / 1840
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(3 + 8 / 12, "feet"),
  27999. default: true
  28000. },
  28001. ]
  28002. ))
  28003. characterMakers.push(() => makeCharacter(
  28004. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28005. {
  28006. front: {
  28007. height: math.unit(7 + 10 / 12, "feet"),
  28008. weight: math.unit(255, "lb"),
  28009. name: "Front",
  28010. image: {
  28011. source: "./media/characters/xavier-thyme/front.svg",
  28012. extra: 3733 / 3642,
  28013. bottom: 131 / 3869
  28014. }
  28015. },
  28016. frontRaven: {
  28017. height: math.unit(7 + 10 / 12, "feet"),
  28018. weight: math.unit(255, "lb"),
  28019. name: "Front (Raven)",
  28020. image: {
  28021. source: "./media/characters/xavier-thyme/front-raven.svg",
  28022. extra: 4385 / 3642,
  28023. bottom: 131 / 4517
  28024. }
  28025. },
  28026. },
  28027. [
  28028. {
  28029. name: "Normal",
  28030. height: math.unit(7 + 10 / 12, "feet"),
  28031. default: true
  28032. },
  28033. ]
  28034. ))
  28035. characterMakers.push(() => makeCharacter(
  28036. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28037. {
  28038. front: {
  28039. height: math.unit(1.6, "m"),
  28040. weight: math.unit(50, "kg"),
  28041. name: "Front",
  28042. image: {
  28043. source: "./media/characters/kiki/front.svg",
  28044. extra: 4682 / 3610,
  28045. bottom: 115 / 4777
  28046. }
  28047. },
  28048. },
  28049. [
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(1.6, "meters"),
  28053. default: true
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(50, "m"),
  28062. weight: math.unit(500, "tonnes"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/ryoko/front.svg",
  28066. extra: 4632 / 3926,
  28067. bottom: 193 / 4823
  28068. }
  28069. },
  28070. },
  28071. [
  28072. {
  28073. name: "Normal",
  28074. height: math.unit(50, "meters"),
  28075. default: true
  28076. },
  28077. ]
  28078. ))
  28079. characterMakers.push(() => makeCharacter(
  28080. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28081. {
  28082. front: {
  28083. height: math.unit(30, "m"),
  28084. weight: math.unit(22, "tonnes"),
  28085. name: "Front",
  28086. image: {
  28087. source: "./media/characters/elio/front.svg",
  28088. extra: 4582 / 3720,
  28089. bottom: 236 / 4828
  28090. }
  28091. },
  28092. },
  28093. [
  28094. {
  28095. name: "Normal",
  28096. height: math.unit(30, "meters"),
  28097. default: true
  28098. },
  28099. ]
  28100. ))
  28101. characterMakers.push(() => makeCharacter(
  28102. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28103. {
  28104. front: {
  28105. height: math.unit(6 + 3 / 12, "feet"),
  28106. weight: math.unit(120, "lb"),
  28107. name: "Front",
  28108. image: {
  28109. source: "./media/characters/azura/front.svg",
  28110. extra: 1149 / 1135,
  28111. bottom: 45 / 1194
  28112. }
  28113. },
  28114. frontClothed: {
  28115. height: math.unit(6 + 3 / 12, "feet"),
  28116. weight: math.unit(120, "lb"),
  28117. name: "Front (Clothed)",
  28118. image: {
  28119. source: "./media/characters/azura/front-clothed.svg",
  28120. extra: 1149 / 1135,
  28121. bottom: 45 / 1194
  28122. }
  28123. },
  28124. },
  28125. [
  28126. {
  28127. name: "Normal",
  28128. height: math.unit(6 + 3 / 12, "feet"),
  28129. default: true
  28130. },
  28131. {
  28132. name: "Macro",
  28133. height: math.unit(20 + 6 / 12, "feet")
  28134. },
  28135. {
  28136. name: "Megamacro",
  28137. height: math.unit(12, "miles")
  28138. },
  28139. {
  28140. name: "Gigamacro",
  28141. height: math.unit(10000, "miles")
  28142. },
  28143. {
  28144. name: "Teramacro",
  28145. height: math.unit(900000, "miles")
  28146. },
  28147. ]
  28148. ))
  28149. characterMakers.push(() => makeCharacter(
  28150. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28151. {
  28152. front: {
  28153. height: math.unit(12, "feet"),
  28154. weight: math.unit(1, "ton"),
  28155. capacity: math.unit(660000, "gallons"),
  28156. name: "Front",
  28157. image: {
  28158. source: "./media/characters/zeus/front.svg",
  28159. extra: 5005 / 4717,
  28160. bottom: 363 / 5388
  28161. }
  28162. },
  28163. },
  28164. [
  28165. {
  28166. name: "Normal",
  28167. height: math.unit(12, "feet")
  28168. },
  28169. {
  28170. name: "Preferred Size",
  28171. height: math.unit(0.5, "miles"),
  28172. default: true
  28173. },
  28174. {
  28175. name: "Giga Horse",
  28176. height: math.unit(300, "miles")
  28177. },
  28178. {
  28179. name: "Riding Planets",
  28180. height: math.unit(30, "megameters")
  28181. },
  28182. {
  28183. name: "Cosmic Giant",
  28184. height: math.unit(3, "zettameters")
  28185. },
  28186. {
  28187. name: "Breeding God",
  28188. height: math.unit(9.92e22, "yottameters")
  28189. },
  28190. ]
  28191. ))
  28192. characterMakers.push(() => makeCharacter(
  28193. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28194. {
  28195. side: {
  28196. height: math.unit(9, "feet"),
  28197. weight: math.unit(1500, "kg"),
  28198. name: "Side",
  28199. image: {
  28200. source: "./media/characters/fang/side.svg",
  28201. extra: 924 / 866,
  28202. bottom: 47.5 / 972.3
  28203. }
  28204. },
  28205. },
  28206. [
  28207. {
  28208. name: "Normal",
  28209. height: math.unit(9, "feet"),
  28210. default: true
  28211. },
  28212. {
  28213. name: "Macro",
  28214. height: math.unit(75 + 6 / 12, "feet")
  28215. },
  28216. {
  28217. name: "Teramacro",
  28218. height: math.unit(50000, "miles")
  28219. },
  28220. ]
  28221. ))
  28222. characterMakers.push(() => makeCharacter(
  28223. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28224. {
  28225. front: {
  28226. height: math.unit(10, "feet"),
  28227. weight: math.unit(2, "tons"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/rekhit/front.svg",
  28231. extra: 2796 / 2590,
  28232. bottom: 225 / 3022
  28233. }
  28234. },
  28235. },
  28236. [
  28237. {
  28238. name: "Normal",
  28239. height: math.unit(10, "feet"),
  28240. default: true
  28241. },
  28242. {
  28243. name: "Macro",
  28244. height: math.unit(500, "feet")
  28245. },
  28246. ]
  28247. ))
  28248. characterMakers.push(() => makeCharacter(
  28249. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28250. {
  28251. front: {
  28252. height: math.unit(7 + 6.451 / 12, "feet"),
  28253. weight: math.unit(310, "lb"),
  28254. name: "Front",
  28255. image: {
  28256. source: "./media/characters/dahlia-verrick/front.svg",
  28257. extra: 1488 / 1365,
  28258. bottom: 6.2 / 1495
  28259. }
  28260. },
  28261. back: {
  28262. height: math.unit(7 + 6.451 / 12, "feet"),
  28263. weight: math.unit(310, "lb"),
  28264. name: "Back",
  28265. image: {
  28266. source: "./media/characters/dahlia-verrick/back.svg",
  28267. extra: 1472 / 1351,
  28268. bottom: 5.28 / 1477
  28269. }
  28270. },
  28271. frontBusiness: {
  28272. height: math.unit(7 + 6.451 / 12, "feet"),
  28273. weight: math.unit(200, "lb"),
  28274. name: "Front (Business)",
  28275. image: {
  28276. source: "./media/characters/dahlia-verrick/front-business.svg",
  28277. extra: 1478 / 1381,
  28278. bottom: 5.5 / 1484
  28279. }
  28280. },
  28281. frontCasual: {
  28282. height: math.unit(7 + 6.451 / 12, "feet"),
  28283. weight: math.unit(200, "lb"),
  28284. name: "Front (Casual)",
  28285. image: {
  28286. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28287. extra: 1478 / 1381,
  28288. bottom: 5.5 / 1484
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Travel-Sized",
  28295. height: math.unit(7.45, "inches")
  28296. },
  28297. {
  28298. name: "Normal",
  28299. height: math.unit(7 + 6.451 / 12, "feet"),
  28300. default: true
  28301. },
  28302. {
  28303. name: "Hitting the Town",
  28304. height: math.unit(37 + 8 / 12, "feet")
  28305. },
  28306. {
  28307. name: "Stomp in the Suburbs",
  28308. height: math.unit(964 + 9.728 / 12, "feet")
  28309. },
  28310. {
  28311. name: "Sit on the City",
  28312. height: math.unit(61747 + 10.592 / 12, "feet")
  28313. },
  28314. {
  28315. name: "Glomp the Globe",
  28316. height: math.unit(252919327 + 4.832 / 12, "feet")
  28317. },
  28318. ]
  28319. ))
  28320. characterMakers.push(() => makeCharacter(
  28321. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28322. {
  28323. front: {
  28324. height: math.unit(6 + 4 / 12, "feet"),
  28325. weight: math.unit(320, "lb"),
  28326. name: "Front",
  28327. image: {
  28328. source: "./media/characters/balina-mahigan/front.svg",
  28329. extra: 447 / 428,
  28330. bottom: 18 / 466
  28331. }
  28332. },
  28333. back: {
  28334. height: math.unit(6 + 4 / 12, "feet"),
  28335. weight: math.unit(320, "lb"),
  28336. name: "Back",
  28337. image: {
  28338. source: "./media/characters/balina-mahigan/back.svg",
  28339. extra: 445 / 428,
  28340. bottom: 4.07 / 448
  28341. }
  28342. },
  28343. arm: {
  28344. height: math.unit(1.88, "feet"),
  28345. name: "Arm",
  28346. image: {
  28347. source: "./media/characters/balina-mahigan/arm.svg"
  28348. }
  28349. },
  28350. backPort: {
  28351. height: math.unit(0.685, "feet"),
  28352. name: "Back Port",
  28353. image: {
  28354. source: "./media/characters/balina-mahigan/back-port.svg"
  28355. }
  28356. },
  28357. hoofpaw: {
  28358. height: math.unit(1.41, "feet"),
  28359. name: "Hoofpaw",
  28360. image: {
  28361. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28362. }
  28363. },
  28364. leftHandBack: {
  28365. height: math.unit(0.938, "feet"),
  28366. name: "Left Hand (Back)",
  28367. image: {
  28368. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28369. }
  28370. },
  28371. leftHandFront: {
  28372. height: math.unit(0.938, "feet"),
  28373. name: "Left Hand (Front)",
  28374. image: {
  28375. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28376. }
  28377. },
  28378. rightHandBack: {
  28379. height: math.unit(0.95, "feet"),
  28380. name: "Right Hand (Back)",
  28381. image: {
  28382. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28383. }
  28384. },
  28385. rightHandFront: {
  28386. height: math.unit(0.95, "feet"),
  28387. name: "Right Hand (Front)",
  28388. image: {
  28389. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28390. }
  28391. },
  28392. },
  28393. [
  28394. {
  28395. name: "Normal",
  28396. height: math.unit(6 + 4 / 12, "feet"),
  28397. default: true
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28403. {
  28404. front: {
  28405. height: math.unit(6, "feet"),
  28406. weight: math.unit(320, "lb"),
  28407. name: "Front",
  28408. image: {
  28409. source: "./media/characters/balina-mejeri/front.svg",
  28410. extra: 517 / 488,
  28411. bottom: 44.2 / 561
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Normal",
  28418. height: math.unit(6 + 4 / 12, "feet")
  28419. },
  28420. {
  28421. name: "Business",
  28422. height: math.unit(155, "feet"),
  28423. default: true
  28424. },
  28425. ]
  28426. ))
  28427. characterMakers.push(() => makeCharacter(
  28428. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28429. {
  28430. kneeling: {
  28431. height: math.unit(6 + 4 / 12, "feet"),
  28432. weight: math.unit(300 * 20, "lb"),
  28433. name: "Kneeling",
  28434. image: {
  28435. source: "./media/characters/balbarian/kneeling.svg",
  28436. extra: 922 / 862,
  28437. bottom: 42.4 / 965
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Normal",
  28444. height: math.unit(6 + 4 / 12, "feet")
  28445. },
  28446. {
  28447. name: "Treasured",
  28448. height: math.unit(18 + 9 / 12, "feet"),
  28449. default: true
  28450. },
  28451. {
  28452. name: "Macro",
  28453. height: math.unit(900, "feet")
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(6 + 4 / 12, "feet"),
  28462. weight: math.unit(325, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/balina-amarini/front.svg",
  28466. extra: 415 / 403,
  28467. bottom: 19 / 433.4
  28468. }
  28469. },
  28470. back: {
  28471. height: math.unit(6 + 4 / 12, "feet"),
  28472. weight: math.unit(325, "lb"),
  28473. name: "Back",
  28474. image: {
  28475. source: "./media/characters/balina-amarini/back.svg",
  28476. extra: 415 / 403,
  28477. bottom: 13.5 / 432
  28478. }
  28479. },
  28480. overdrive: {
  28481. height: math.unit(6 + 4 / 12, "feet"),
  28482. weight: math.unit(400, "lb"),
  28483. name: "Overdrive",
  28484. image: {
  28485. source: "./media/characters/balina-amarini/overdrive.svg",
  28486. extra: 269 / 259,
  28487. bottom: 12 / 282
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Boom",
  28494. height: math.unit(9 + 10 / 12, "feet"),
  28495. default: true
  28496. },
  28497. {
  28498. name: "Macro",
  28499. height: math.unit(280, "feet")
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28505. {
  28506. goddess: {
  28507. height: math.unit(600, "feet"),
  28508. weight: math.unit(2000000, "tons"),
  28509. name: "Goddess",
  28510. image: {
  28511. source: "./media/characters/lady-kubwa/goddess.svg",
  28512. extra: 1240.5 / 1223,
  28513. bottom: 22 / 1263
  28514. }
  28515. },
  28516. goddesser: {
  28517. height: math.unit(900, "feet"),
  28518. weight: math.unit(20000000, "lb"),
  28519. name: "Goddess-er",
  28520. image: {
  28521. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28522. extra: 899 / 888,
  28523. bottom: 12.6 / 912
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Macro",
  28530. height: math.unit(600, "feet"),
  28531. default: true
  28532. },
  28533. {
  28534. name: "Megamacro",
  28535. height: math.unit(250, "miles")
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(7 + 7 / 12, "feet"),
  28544. weight: math.unit(250, "lb"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/tala-grovehorn/front.svg",
  28548. extra: 2636 / 2525,
  28549. bottom: 147 / 2781
  28550. }
  28551. },
  28552. back: {
  28553. height: math.unit(7 + 7 / 12, "feet"),
  28554. weight: math.unit(250, "lb"),
  28555. name: "Back",
  28556. image: {
  28557. source: "./media/characters/tala-grovehorn/back.svg",
  28558. extra: 2635 / 2539,
  28559. bottom: 100 / 2732.8
  28560. }
  28561. },
  28562. mouth: {
  28563. height: math.unit(1.15, "feet"),
  28564. name: "Mouth",
  28565. image: {
  28566. source: "./media/characters/tala-grovehorn/mouth.svg"
  28567. }
  28568. },
  28569. dick: {
  28570. height: math.unit(2.36, "feet"),
  28571. name: "Dick",
  28572. image: {
  28573. source: "./media/characters/tala-grovehorn/dick.svg"
  28574. }
  28575. },
  28576. slit: {
  28577. height: math.unit(0.61, "feet"),
  28578. name: "Slit",
  28579. image: {
  28580. source: "./media/characters/tala-grovehorn/slit.svg"
  28581. }
  28582. },
  28583. },
  28584. [
  28585. ]
  28586. ))
  28587. characterMakers.push(() => makeCharacter(
  28588. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28589. {
  28590. front: {
  28591. height: math.unit(7 + 7 / 12, "feet"),
  28592. weight: math.unit(225, "lb"),
  28593. name: "Front",
  28594. image: {
  28595. source: "./media/characters/epona/front.svg",
  28596. extra: 2445 / 2290,
  28597. bottom: 251 / 2696
  28598. }
  28599. },
  28600. back: {
  28601. height: math.unit(7 + 7 / 12, "feet"),
  28602. weight: math.unit(225, "lb"),
  28603. name: "Back",
  28604. image: {
  28605. source: "./media/characters/epona/back.svg",
  28606. extra: 2546 / 2408,
  28607. bottom: 44 / 2589
  28608. }
  28609. },
  28610. genitals: {
  28611. height: math.unit(1.5, "feet"),
  28612. name: "Genitals",
  28613. image: {
  28614. source: "./media/characters/epona/genitals.svg"
  28615. }
  28616. },
  28617. },
  28618. [
  28619. {
  28620. name: "Normal",
  28621. height: math.unit(7 + 7 / 12, "feet"),
  28622. default: true
  28623. },
  28624. ]
  28625. ))
  28626. characterMakers.push(() => makeCharacter(
  28627. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28628. {
  28629. front: {
  28630. height: math.unit(7, "feet"),
  28631. weight: math.unit(518, "lb"),
  28632. name: "Front",
  28633. image: {
  28634. source: "./media/characters/avia-bloodbourn/front.svg",
  28635. extra: 1466 / 1350,
  28636. bottom: 65 / 1527
  28637. }
  28638. },
  28639. },
  28640. [
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(9.35, "feet"),
  28648. weight: math.unit(600, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/amera/front.svg",
  28652. extra: 891 / 818,
  28653. bottom: 30 / 922.7
  28654. }
  28655. },
  28656. back: {
  28657. height: math.unit(9.35, "feet"),
  28658. weight: math.unit(600, "lb"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/amera/back.svg",
  28662. extra: 876 / 824,
  28663. bottom: 6.8 / 884
  28664. }
  28665. },
  28666. dick: {
  28667. height: math.unit(2.14, "feet"),
  28668. name: "Dick",
  28669. image: {
  28670. source: "./media/characters/amera/dick.svg"
  28671. }
  28672. },
  28673. },
  28674. [
  28675. {
  28676. name: "Normal",
  28677. height: math.unit(9.35, "feet"),
  28678. default: true
  28679. },
  28680. ]
  28681. ))
  28682. characterMakers.push(() => makeCharacter(
  28683. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28684. {
  28685. kneeling: {
  28686. height: math.unit(3 + 4 / 12, "feet"),
  28687. weight: math.unit(90, "lb"),
  28688. name: "Kneeling",
  28689. image: {
  28690. source: "./media/characters/rosewen/kneeling.svg",
  28691. extra: 1835 / 1571,
  28692. bottom: 27.7 / 1862
  28693. }
  28694. },
  28695. },
  28696. [
  28697. {
  28698. name: "Normal",
  28699. height: math.unit(3 + 4 / 12, "feet"),
  28700. default: true
  28701. },
  28702. ]
  28703. ))
  28704. characterMakers.push(() => makeCharacter(
  28705. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28706. {
  28707. front: {
  28708. height: math.unit(5 + 10 / 12, "feet"),
  28709. weight: math.unit(200, "lb"),
  28710. name: "Front",
  28711. image: {
  28712. source: "./media/characters/sabah/front.svg",
  28713. extra: 849 / 763,
  28714. bottom: 33.9 / 881
  28715. }
  28716. },
  28717. },
  28718. [
  28719. {
  28720. name: "Normal",
  28721. height: math.unit(5 + 10 / 12, "feet"),
  28722. default: true
  28723. },
  28724. ]
  28725. ))
  28726. characterMakers.push(() => makeCharacter(
  28727. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28728. {
  28729. front: {
  28730. height: math.unit(3 + 5 / 12, "feet"),
  28731. weight: math.unit(40, "kg"),
  28732. name: "Front",
  28733. image: {
  28734. source: "./media/characters/purple-flame/front.svg",
  28735. extra: 1577 / 1412,
  28736. bottom: 97 / 1694
  28737. }
  28738. },
  28739. frontDressed: {
  28740. height: math.unit(3 + 5 / 12, "feet"),
  28741. weight: math.unit(40, "kg"),
  28742. name: "Front (Dressed)",
  28743. image: {
  28744. source: "./media/characters/purple-flame/front-dressed.svg",
  28745. extra: 1577 / 1412,
  28746. bottom: 97 / 1694
  28747. }
  28748. },
  28749. headphones: {
  28750. height: math.unit(0.85, "feet"),
  28751. name: "Headphones",
  28752. image: {
  28753. source: "./media/characters/purple-flame/headphones.svg"
  28754. }
  28755. },
  28756. },
  28757. [
  28758. {
  28759. name: "Really Small",
  28760. height: math.unit(5, "cm")
  28761. },
  28762. {
  28763. name: "Micro",
  28764. height: math.unit(1 + 5 / 12, "feet")
  28765. },
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(3 + 5 / 12, "feet"),
  28769. default: true
  28770. },
  28771. {
  28772. name: "Minimacro",
  28773. height: math.unit(125, "feet")
  28774. },
  28775. {
  28776. name: "Macro",
  28777. height: math.unit(0.5, "miles")
  28778. },
  28779. {
  28780. name: "Megamacro",
  28781. height: math.unit(50, "miles")
  28782. },
  28783. {
  28784. name: "Gigantic",
  28785. height: math.unit(750, "miles")
  28786. },
  28787. {
  28788. name: "Planetary",
  28789. height: math.unit(15000, "miles")
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(14, "feet"),
  28798. weight: math.unit(959, "lb"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/arsenal/front.svg",
  28802. extra: 2357 / 2157,
  28803. bottom: 93 / 2458
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Normal",
  28810. height: math.unit(14, "feet"),
  28811. default: true
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28817. {
  28818. front: {
  28819. height: math.unit(6, "feet"),
  28820. weight: math.unit(150, "lb"),
  28821. name: "Front",
  28822. image: {
  28823. source: "./media/characters/adira/front.svg",
  28824. extra: 1078 / 1029,
  28825. bottom: 87 / 1166
  28826. }
  28827. },
  28828. },
  28829. [
  28830. {
  28831. name: "Micro",
  28832. height: math.unit(4, "inches"),
  28833. default: true
  28834. },
  28835. {
  28836. name: "Macro",
  28837. height: math.unit(50, "feet")
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(16, "feet"),
  28846. weight: math.unit(1000, "lb"),
  28847. name: "Front",
  28848. image: {
  28849. source: "./media/characters/grim/front.svg",
  28850. extra: 622 / 614,
  28851. bottom: 18.1 / 642
  28852. }
  28853. },
  28854. back: {
  28855. height: math.unit(16, "feet"),
  28856. weight: math.unit(1000, "lb"),
  28857. name: "Back",
  28858. image: {
  28859. source: "./media/characters/grim/back.svg",
  28860. extra: 610.6 / 602,
  28861. bottom: 40.8 / 652
  28862. }
  28863. },
  28864. hunched: {
  28865. height: math.unit(9.75, "feet"),
  28866. weight: math.unit(1000, "lb"),
  28867. name: "Hunched",
  28868. image: {
  28869. source: "./media/characters/grim/hunched.svg",
  28870. extra: 304 / 297,
  28871. bottom: 35.4 / 394
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(16, "feet"),
  28879. default: true
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(2.3, "meters"),
  28888. weight: math.unit(300, "lb"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/sinja/front-sfw.svg",
  28892. extra: 1393 / 1294,
  28893. bottom: 70 / 1463
  28894. }
  28895. },
  28896. frontNsfw: {
  28897. height: math.unit(2.3, "meters"),
  28898. weight: math.unit(300, "lb"),
  28899. name: "Front (NSFW)",
  28900. image: {
  28901. source: "./media/characters/sinja/front-nsfw.svg",
  28902. extra: 1393 / 1294,
  28903. bottom: 70 / 1463
  28904. }
  28905. },
  28906. back: {
  28907. height: math.unit(2.3, "meters"),
  28908. weight: math.unit(300, "lb"),
  28909. name: "Back",
  28910. image: {
  28911. source: "./media/characters/sinja/back.svg",
  28912. extra: 1393 / 1294,
  28913. bottom: 70 / 1463
  28914. }
  28915. },
  28916. head: {
  28917. height: math.unit(1.771, "feet"),
  28918. name: "Head",
  28919. image: {
  28920. source: "./media/characters/sinja/head.svg"
  28921. }
  28922. },
  28923. slit: {
  28924. height: math.unit(0.8, "feet"),
  28925. name: "Slit",
  28926. image: {
  28927. source: "./media/characters/sinja/slit.svg"
  28928. }
  28929. },
  28930. },
  28931. [
  28932. {
  28933. name: "Normal",
  28934. height: math.unit(2.3, "meters")
  28935. },
  28936. {
  28937. name: "Macro",
  28938. height: math.unit(91, "meters"),
  28939. default: true
  28940. },
  28941. {
  28942. name: "Megamacro",
  28943. height: math.unit(91440, "meters")
  28944. },
  28945. {
  28946. name: "Gigamacro",
  28947. height: math.unit(60960000, "meters")
  28948. },
  28949. {
  28950. name: "Teramacro",
  28951. height: math.unit(9144000000, "meters")
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(1.7, "meters"),
  28960. weight: math.unit(130, "lb"),
  28961. name: "Front",
  28962. image: {
  28963. source: "./media/characters/kyu/front.svg",
  28964. extra: 415 / 395,
  28965. bottom: 5 / 420
  28966. }
  28967. },
  28968. head: {
  28969. height: math.unit(1.75, "feet"),
  28970. name: "Head",
  28971. image: {
  28972. source: "./media/characters/kyu/head.svg"
  28973. }
  28974. },
  28975. foot: {
  28976. height: math.unit(0.81, "feet"),
  28977. name: "Foot",
  28978. image: {
  28979. source: "./media/characters/kyu/foot.svg"
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Normal",
  28986. height: math.unit(1.7, "meters")
  28987. },
  28988. {
  28989. name: "Macro",
  28990. height: math.unit(131, "feet"),
  28991. default: true
  28992. },
  28993. {
  28994. name: "Megamacro",
  28995. height: math.unit(91440, "meters")
  28996. },
  28997. {
  28998. name: "Gigamacro",
  28999. height: math.unit(60960000, "meters")
  29000. },
  29001. {
  29002. name: "Teramacro",
  29003. height: math.unit(9144000000, "meters")
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29009. {
  29010. front: {
  29011. height: math.unit(7 + 1 / 12, "feet"),
  29012. weight: math.unit(250, "lb"),
  29013. name: "Front",
  29014. image: {
  29015. source: "./media/characters/joey/front.svg",
  29016. extra: 1791 / 1537,
  29017. bottom: 28 / 1816
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Micro",
  29024. height: math.unit(3, "inches")
  29025. },
  29026. {
  29027. name: "Normal",
  29028. height: math.unit(7 + 1 / 12, "feet"),
  29029. default: true
  29030. },
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(165, "cm"),
  29038. weight: math.unit(140, "lb"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/sam-evans/front.svg",
  29042. extra: 3417 / 3230,
  29043. bottom: 41.3 / 3417
  29044. }
  29045. },
  29046. frontSixTails: {
  29047. height: math.unit(165, "cm"),
  29048. weight: math.unit(140, "lb"),
  29049. name: "Front-six-tails",
  29050. image: {
  29051. source: "./media/characters/sam-evans/front-six-tails.svg",
  29052. extra: 3417 / 3230,
  29053. bottom: 41.3 / 3417
  29054. }
  29055. },
  29056. back: {
  29057. height: math.unit(165, "cm"),
  29058. weight: math.unit(140, "lb"),
  29059. name: "Back",
  29060. image: {
  29061. source: "./media/characters/sam-evans/back.svg",
  29062. extra: 3227 / 3032,
  29063. bottom: 6.8 / 3234
  29064. }
  29065. },
  29066. face: {
  29067. height: math.unit(0.68, "feet"),
  29068. name: "Face",
  29069. image: {
  29070. source: "./media/characters/sam-evans/face.svg"
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(165, "cm"),
  29078. default: true
  29079. },
  29080. {
  29081. name: "Macro",
  29082. height: math.unit(100, "meters")
  29083. },
  29084. {
  29085. name: "Macro+",
  29086. height: math.unit(800, "meters")
  29087. },
  29088. {
  29089. name: "Macro++",
  29090. height: math.unit(3, "km")
  29091. },
  29092. {
  29093. name: "Macro+++",
  29094. height: math.unit(30, "km")
  29095. },
  29096. ]
  29097. ))
  29098. characterMakers.push(() => makeCharacter(
  29099. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29100. {
  29101. front: {
  29102. height: math.unit(10, "feet"),
  29103. weight: math.unit(750, "lb"),
  29104. name: "Front",
  29105. image: {
  29106. source: "./media/characters/juliet-a/front.svg",
  29107. extra: 1766 / 1720,
  29108. bottom: 43 / 1809
  29109. }
  29110. },
  29111. back: {
  29112. height: math.unit(10, "feet"),
  29113. weight: math.unit(750, "lb"),
  29114. name: "Back",
  29115. image: {
  29116. source: "./media/characters/juliet-a/back.svg",
  29117. extra: 1781 / 1734,
  29118. bottom: 35 / 1810,
  29119. }
  29120. },
  29121. },
  29122. [
  29123. {
  29124. name: "Normal",
  29125. height: math.unit(10, "feet"),
  29126. default: true
  29127. },
  29128. {
  29129. name: "Dragon Form",
  29130. height: math.unit(250, "feet")
  29131. },
  29132. {
  29133. name: "Macro",
  29134. height: math.unit(1000, "feet")
  29135. },
  29136. {
  29137. name: "Megamacro",
  29138. height: math.unit(10000, "feet")
  29139. }
  29140. ]
  29141. ))
  29142. characterMakers.push(() => makeCharacter(
  29143. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29144. {
  29145. regular: {
  29146. height: math.unit(7 + 3 / 12, "feet"),
  29147. weight: math.unit(260, "lb"),
  29148. name: "Regular",
  29149. image: {
  29150. source: "./media/characters/wild/regular.svg",
  29151. extra: 97.45 / 92,
  29152. bottom: 6.8 / 104.3
  29153. }
  29154. },
  29155. biggums: {
  29156. height: math.unit(8 + 6 / 12, "feet"),
  29157. weight: math.unit(425, "lb"),
  29158. name: "Biggums",
  29159. image: {
  29160. source: "./media/characters/wild/biggums.svg",
  29161. extra: 97.45 / 92,
  29162. bottom: 7.5 / 132.34
  29163. }
  29164. },
  29165. mawRegular: {
  29166. height: math.unit(1.24, "feet"),
  29167. name: "Maw (Regular)",
  29168. image: {
  29169. source: "./media/characters/wild/maw.svg"
  29170. }
  29171. },
  29172. mawBiggums: {
  29173. height: math.unit(1.47, "feet"),
  29174. name: "Maw (Biggums)",
  29175. image: {
  29176. source: "./media/characters/wild/maw.svg"
  29177. }
  29178. },
  29179. },
  29180. [
  29181. {
  29182. name: "Normal",
  29183. height: math.unit(7 + 3 / 12, "feet"),
  29184. default: true
  29185. },
  29186. ]
  29187. ))
  29188. characterMakers.push(() => makeCharacter(
  29189. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29190. {
  29191. front: {
  29192. height: math.unit(2.5, "meters"),
  29193. weight: math.unit(200, "kg"),
  29194. name: "Front",
  29195. image: {
  29196. source: "./media/characters/vidar/front.svg",
  29197. extra: 2994 / 2795,
  29198. bottom: 56 / 3061
  29199. }
  29200. },
  29201. back: {
  29202. height: math.unit(2.5, "meters"),
  29203. weight: math.unit(200, "kg"),
  29204. name: "Back",
  29205. image: {
  29206. source: "./media/characters/vidar/back.svg",
  29207. extra: 3131 / 2928,
  29208. bottom: 13.5 / 3141.5
  29209. }
  29210. },
  29211. feral: {
  29212. height: math.unit(2.5, "meters"),
  29213. weight: math.unit(2000, "kg"),
  29214. name: "Feral",
  29215. image: {
  29216. source: "./media/characters/vidar/feral.svg",
  29217. extra: 2790 / 1765,
  29218. bottom: 6 / 2796
  29219. }
  29220. },
  29221. },
  29222. [
  29223. {
  29224. name: "Normal",
  29225. height: math.unit(2.5, "meters"),
  29226. default: true
  29227. },
  29228. {
  29229. name: "Macro",
  29230. height: math.unit(100, "meters")
  29231. },
  29232. ]
  29233. ))
  29234. characterMakers.push(() => makeCharacter(
  29235. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29236. {
  29237. front: {
  29238. height: math.unit(5 + 9 / 12, "feet"),
  29239. weight: math.unit(120, "lb"),
  29240. name: "Front",
  29241. image: {
  29242. source: "./media/characters/ash/front.svg",
  29243. extra: 2189 / 1961,
  29244. bottom: 5.2 / 2194
  29245. }
  29246. },
  29247. },
  29248. [
  29249. {
  29250. name: "Normal",
  29251. height: math.unit(5 + 9 / 12, "feet"),
  29252. default: true
  29253. },
  29254. ]
  29255. ))
  29256. characterMakers.push(() => makeCharacter(
  29257. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29258. {
  29259. front: {
  29260. height: math.unit(9, "feet"),
  29261. weight: math.unit(10000, "lb"),
  29262. name: "Front",
  29263. image: {
  29264. source: "./media/characters/gygabite/front.svg",
  29265. bottom: 31.7 / 537.8,
  29266. extra: 505 / 370
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Normal",
  29273. height: math.unit(9, "feet"),
  29274. default: true
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(12, "feet"),
  29283. weight: math.unit(4000, "lb"),
  29284. name: "Front",
  29285. image: {
  29286. source: "./media/characters/p0tat0/front.svg",
  29287. extra: 1065 / 921,
  29288. bottom: 55.7 / 1121.25
  29289. }
  29290. },
  29291. },
  29292. [
  29293. {
  29294. name: "Normal",
  29295. height: math.unit(12, "feet"),
  29296. default: true
  29297. },
  29298. ]
  29299. ))
  29300. characterMakers.push(() => makeCharacter(
  29301. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29302. {
  29303. side: {
  29304. height: math.unit(6.5, "feet"),
  29305. weight: math.unit(800, "lb"),
  29306. name: "Side",
  29307. image: {
  29308. source: "./media/characters/dusk/side.svg",
  29309. extra: 615 / 373,
  29310. bottom: 53 / 664
  29311. }
  29312. },
  29313. sitting: {
  29314. height: math.unit(7, "feet"),
  29315. weight: math.unit(800, "lb"),
  29316. name: "Sitting",
  29317. image: {
  29318. source: "./media/characters/dusk/sitting.svg",
  29319. extra: 753 / 425,
  29320. bottom: 33 / 774
  29321. }
  29322. },
  29323. head: {
  29324. height: math.unit(6.1, "feet"),
  29325. name: "Head",
  29326. image: {
  29327. source: "./media/characters/dusk/head.svg"
  29328. }
  29329. },
  29330. },
  29331. [
  29332. {
  29333. name: "Normal",
  29334. height: math.unit(7, "feet"),
  29335. default: true
  29336. },
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29341. {
  29342. front: {
  29343. height: math.unit(15, "feet"),
  29344. weight: math.unit(7000, "lb"),
  29345. name: "Front",
  29346. image: {
  29347. source: "./media/characters/jay-direwolf/front.svg",
  29348. extra: 1810 / 1732,
  29349. bottom: 66 / 1892
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(15, "feet"),
  29357. default: true
  29358. },
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29363. {
  29364. front: {
  29365. height: math.unit(4 + 9 / 12, "feet"),
  29366. weight: math.unit(130, "lb"),
  29367. name: "Front",
  29368. image: {
  29369. source: "./media/characters/anchovie/front.svg",
  29370. extra: 382 / 350,
  29371. bottom: 25 / 409
  29372. }
  29373. },
  29374. back: {
  29375. height: math.unit(4 + 9 / 12, "feet"),
  29376. weight: math.unit(130, "lb"),
  29377. name: "Back",
  29378. image: {
  29379. source: "./media/characters/anchovie/back.svg",
  29380. extra: 385 / 352,
  29381. bottom: 16.6 / 402
  29382. }
  29383. },
  29384. frontDressed: {
  29385. height: math.unit(4 + 9 / 12, "feet"),
  29386. weight: math.unit(130, "lb"),
  29387. name: "Front (Dressed)",
  29388. image: {
  29389. source: "./media/characters/anchovie/front-dressed.svg",
  29390. extra: 382 / 350,
  29391. bottom: 25 / 409
  29392. }
  29393. },
  29394. backDressed: {
  29395. height: math.unit(4 + 9 / 12, "feet"),
  29396. weight: math.unit(130, "lb"),
  29397. name: "Back (Dressed)",
  29398. image: {
  29399. source: "./media/characters/anchovie/back-dressed.svg",
  29400. extra: 385 / 352,
  29401. bottom: 16.6 / 402
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Micro",
  29408. height: math.unit(6.4, "inches")
  29409. },
  29410. {
  29411. name: "Normal",
  29412. height: math.unit(4 + 9 / 12, "feet"),
  29413. default: true
  29414. },
  29415. ]
  29416. ))
  29417. characterMakers.push(() => makeCharacter(
  29418. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29419. {
  29420. front: {
  29421. height: math.unit(2, "meters"),
  29422. weight: math.unit(180, "lb"),
  29423. name: "Front",
  29424. image: {
  29425. source: "./media/characters/acidrenamon/front.svg",
  29426. extra: 987 / 890,
  29427. bottom: 22.8 / 1009
  29428. }
  29429. },
  29430. back: {
  29431. height: math.unit(2, "meters"),
  29432. weight: math.unit(180, "lb"),
  29433. name: "Back",
  29434. image: {
  29435. source: "./media/characters/acidrenamon/back.svg",
  29436. extra: 983 / 891,
  29437. bottom: 8.4 / 992
  29438. }
  29439. },
  29440. head: {
  29441. height: math.unit(1.92, "feet"),
  29442. name: "Head",
  29443. image: {
  29444. source: "./media/characters/acidrenamon/head.svg"
  29445. }
  29446. },
  29447. rump: {
  29448. height: math.unit(1.72, "feet"),
  29449. name: "Rump",
  29450. image: {
  29451. source: "./media/characters/acidrenamon/rump.svg"
  29452. }
  29453. },
  29454. tail: {
  29455. height: math.unit(4.2, "feet"),
  29456. name: "Tail",
  29457. image: {
  29458. source: "./media/characters/acidrenamon/tail.svg"
  29459. }
  29460. },
  29461. },
  29462. [
  29463. {
  29464. name: "Normal",
  29465. height: math.unit(2, "meters"),
  29466. default: true
  29467. },
  29468. {
  29469. name: "Minimacro",
  29470. height: math.unit(7, "meters")
  29471. },
  29472. {
  29473. name: "Macro",
  29474. height: math.unit(200, "meters")
  29475. },
  29476. {
  29477. name: "Gigamacro",
  29478. height: math.unit(0.2, "earths")
  29479. },
  29480. ]
  29481. ))
  29482. characterMakers.push(() => makeCharacter(
  29483. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29484. {
  29485. front: {
  29486. height: math.unit(152, "feet"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/kenzie-lee/front.svg",
  29490. extra: 1869/1774,
  29491. bottom: 128/1997
  29492. }
  29493. },
  29494. side: {
  29495. height: math.unit(86, "feet"),
  29496. name: "Side",
  29497. image: {
  29498. source: "./media/characters/kenzie-lee/side.svg",
  29499. extra: 930/815,
  29500. bottom: 177/1107
  29501. }
  29502. },
  29503. paw: {
  29504. height: math.unit(15, "feet"),
  29505. name: "Paw",
  29506. image: {
  29507. source: "./media/characters/kenzie-lee/paw.svg"
  29508. }
  29509. },
  29510. },
  29511. [
  29512. {
  29513. name: "Kenzie Flea",
  29514. height: math.unit(2, "mm"),
  29515. default: true
  29516. },
  29517. {
  29518. name: "Micro",
  29519. height: math.unit(2, "inches")
  29520. },
  29521. {
  29522. name: "Normal",
  29523. height: math.unit(152, "feet")
  29524. },
  29525. {
  29526. name: "Megamacro",
  29527. height: math.unit(7, "miles")
  29528. },
  29529. {
  29530. name: "Gigamacro",
  29531. height: math.unit(8000, "miles")
  29532. },
  29533. ]
  29534. ))
  29535. characterMakers.push(() => makeCharacter(
  29536. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29537. {
  29538. front: {
  29539. height: math.unit(6, "feet"),
  29540. name: "Front",
  29541. image: {
  29542. source: "./media/characters/withers/front.svg",
  29543. extra: 1935/1760,
  29544. bottom: 72/2007
  29545. }
  29546. },
  29547. back: {
  29548. height: math.unit(6, "feet"),
  29549. name: "Back",
  29550. image: {
  29551. source: "./media/characters/withers/back.svg",
  29552. extra: 1944/1792,
  29553. bottom: 12/1956
  29554. }
  29555. },
  29556. dressed: {
  29557. height: math.unit(6, "feet"),
  29558. name: "Dressed",
  29559. image: {
  29560. source: "./media/characters/withers/dressed.svg",
  29561. extra: 1937/1765,
  29562. bottom: 73/2010
  29563. }
  29564. },
  29565. phase1: {
  29566. height: math.unit(1.1, "feet"),
  29567. name: "Phase 1",
  29568. image: {
  29569. source: "./media/characters/withers/phase-1.svg",
  29570. extra: 1885/1232,
  29571. bottom: 0/1885
  29572. }
  29573. },
  29574. phase2: {
  29575. height: math.unit(1.05, "feet"),
  29576. name: "Phase 2",
  29577. image: {
  29578. source: "./media/characters/withers/phase-2.svg",
  29579. extra: 1792/1090,
  29580. bottom: 0/1792
  29581. }
  29582. },
  29583. partyWipe: {
  29584. height: math.unit(1.1, "feet"),
  29585. name: "Party Wipe",
  29586. image: {
  29587. source: "./media/characters/withers/party-wipe.svg",
  29588. extra: 1864/1207,
  29589. bottom: 0/1864
  29590. }
  29591. },
  29592. },
  29593. [
  29594. {
  29595. name: "Macro",
  29596. height: math.unit(167, "feet"),
  29597. default: true
  29598. },
  29599. {
  29600. name: "Megamacro",
  29601. height: math.unit(15, "miles")
  29602. }
  29603. ]
  29604. ))
  29605. characterMakers.push(() => makeCharacter(
  29606. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29607. {
  29608. front: {
  29609. height: math.unit(6 + 7 / 12, "feet"),
  29610. weight: math.unit(250, "lb"),
  29611. name: "Front",
  29612. image: {
  29613. source: "./media/characters/nemoskii/front.svg",
  29614. extra: 2270 / 1734,
  29615. bottom: 86 / 2354
  29616. }
  29617. },
  29618. back: {
  29619. height: math.unit(6 + 7 / 12, "feet"),
  29620. weight: math.unit(250, "lb"),
  29621. name: "Back",
  29622. image: {
  29623. source: "./media/characters/nemoskii/back.svg",
  29624. extra: 1845 / 1788,
  29625. bottom: 10.5 / 1852
  29626. }
  29627. },
  29628. head: {
  29629. height: math.unit(1.31, "feet"),
  29630. name: "Head",
  29631. image: {
  29632. source: "./media/characters/nemoskii/head.svg"
  29633. }
  29634. },
  29635. },
  29636. [
  29637. {
  29638. name: "Micro",
  29639. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29640. },
  29641. {
  29642. name: "Normal",
  29643. height: math.unit(6 + 7 / 12, "feet"),
  29644. default: true
  29645. },
  29646. {
  29647. name: "Macro",
  29648. height: math.unit((6 + 7 / 12) * 150, "feet")
  29649. },
  29650. {
  29651. name: "Macro+",
  29652. height: math.unit((6 + 7 / 12) * 500, "feet")
  29653. },
  29654. {
  29655. name: "Megamacro",
  29656. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29657. },
  29658. ]
  29659. ))
  29660. characterMakers.push(() => makeCharacter(
  29661. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29662. {
  29663. front: {
  29664. height: math.unit(1, "mile"),
  29665. weight: math.unit(265261.9, "lb"),
  29666. name: "Front",
  29667. image: {
  29668. source: "./media/characters/shui/front.svg",
  29669. extra: 1633 / 1564,
  29670. bottom: 91.5 / 1726
  29671. }
  29672. },
  29673. },
  29674. [
  29675. {
  29676. name: "Macro",
  29677. height: math.unit(1, "mile"),
  29678. default: true
  29679. },
  29680. ]
  29681. ))
  29682. characterMakers.push(() => makeCharacter(
  29683. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29684. {
  29685. front: {
  29686. height: math.unit(12 + 6 / 12, "feet"),
  29687. weight: math.unit(1342, "lb"),
  29688. name: "Front",
  29689. image: {
  29690. source: "./media/characters/arokh-takakura/front.svg",
  29691. extra: 1089 / 1043,
  29692. bottom: 77.4 / 1176.7
  29693. }
  29694. },
  29695. back: {
  29696. height: math.unit(12 + 6 / 12, "feet"),
  29697. weight: math.unit(1342, "lb"),
  29698. name: "Back",
  29699. image: {
  29700. source: "./media/characters/arokh-takakura/back.svg",
  29701. extra: 1046 / 1019,
  29702. bottom: 102 / 1150
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Big",
  29709. height: math.unit(12 + 6 / 12, "feet"),
  29710. default: true
  29711. },
  29712. ]
  29713. ))
  29714. characterMakers.push(() => makeCharacter(
  29715. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29716. {
  29717. front: {
  29718. height: math.unit(5 + 6 / 12, "feet"),
  29719. weight: math.unit(150, "lb"),
  29720. name: "Front",
  29721. image: {
  29722. source: "./media/characters/theo/front.svg",
  29723. extra: 1184 / 1131,
  29724. bottom: 7.4 / 1191
  29725. }
  29726. },
  29727. },
  29728. [
  29729. {
  29730. name: "Micro",
  29731. height: math.unit(5, "inches")
  29732. },
  29733. {
  29734. name: "Normal",
  29735. height: math.unit(5 + 6 / 12, "feet"),
  29736. default: true
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29742. {
  29743. front: {
  29744. height: math.unit(5 + 9 / 12, "feet"),
  29745. weight: math.unit(130, "lb"),
  29746. name: "Front",
  29747. image: {
  29748. source: "./media/characters/cecelia-swift/front.svg",
  29749. extra: 502 / 484,
  29750. bottom: 23 / 523
  29751. }
  29752. },
  29753. back: {
  29754. height: math.unit(5 + 9 / 12, "feet"),
  29755. weight: math.unit(130, "lb"),
  29756. name: "Back",
  29757. image: {
  29758. source: "./media/characters/cecelia-swift/back.svg",
  29759. extra: 499 / 485,
  29760. bottom: 12 / 511
  29761. }
  29762. },
  29763. head: {
  29764. height: math.unit(0.90, "feet"),
  29765. name: "Head",
  29766. image: {
  29767. source: "./media/characters/cecelia-swift/head.svg"
  29768. }
  29769. },
  29770. rump: {
  29771. height: math.unit(1.75, "feet"),
  29772. name: "Rump",
  29773. image: {
  29774. source: "./media/characters/cecelia-swift/rump.svg"
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Normal",
  29781. height: math.unit(5 + 9 / 12, "feet"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Big",
  29786. height: math.unit(50, "feet")
  29787. },
  29788. {
  29789. name: "Macro",
  29790. height: math.unit(100, "feet")
  29791. },
  29792. {
  29793. name: "Macro+",
  29794. height: math.unit(500, "feet")
  29795. },
  29796. {
  29797. name: "Macro++",
  29798. height: math.unit(1000, "feet")
  29799. },
  29800. ]
  29801. ))
  29802. characterMakers.push(() => makeCharacter(
  29803. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29804. {
  29805. front: {
  29806. height: math.unit(6, "feet"),
  29807. weight: math.unit(150, "lb"),
  29808. name: "Front",
  29809. image: {
  29810. source: "./media/characters/kaunan/front.svg",
  29811. extra: 2890 / 2523,
  29812. bottom: 49 / 2939
  29813. }
  29814. },
  29815. },
  29816. [
  29817. {
  29818. name: "Macro",
  29819. height: math.unit(150, "feet"),
  29820. default: true
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29826. {
  29827. dressed: {
  29828. height: math.unit(175, "cm"),
  29829. weight: math.unit(60, "kg"),
  29830. name: "Dressed",
  29831. image: {
  29832. source: "./media/characters/fei/dressed.svg",
  29833. extra: 1402/1278,
  29834. bottom: 27/1429
  29835. }
  29836. },
  29837. nude: {
  29838. height: math.unit(175, "cm"),
  29839. weight: math.unit(60, "kg"),
  29840. name: "Nude",
  29841. image: {
  29842. source: "./media/characters/fei/nude.svg",
  29843. extra: 1402/1278,
  29844. bottom: 27/1429
  29845. }
  29846. },
  29847. heels: {
  29848. height: math.unit(0.466, "feet"),
  29849. name: "Heels",
  29850. image: {
  29851. source: "./media/characters/fei/heels.svg",
  29852. extra: 156/152,
  29853. bottom: 28/184
  29854. }
  29855. },
  29856. },
  29857. [
  29858. {
  29859. name: "Mortal",
  29860. height: math.unit(175, "cm")
  29861. },
  29862. {
  29863. name: "Normal",
  29864. height: math.unit(3500, "m")
  29865. },
  29866. {
  29867. name: "Stroll",
  29868. height: math.unit(18.4, "km"),
  29869. default: true
  29870. },
  29871. {
  29872. name: "Showoff",
  29873. height: math.unit(175, "km")
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(7, "feet"),
  29882. weight: math.unit(1000, "kg"),
  29883. name: "Front",
  29884. image: {
  29885. source: "./media/characters/edrax/front.svg",
  29886. extra: 2838 / 2550,
  29887. bottom: 130 / 2968
  29888. }
  29889. },
  29890. },
  29891. [
  29892. {
  29893. name: "Small",
  29894. height: math.unit(7, "feet")
  29895. },
  29896. {
  29897. name: "Normal",
  29898. height: math.unit(1500, "meters")
  29899. },
  29900. {
  29901. name: "Mega",
  29902. height: math.unit(12000000, "km"),
  29903. default: true
  29904. },
  29905. {
  29906. name: "Megamacro",
  29907. height: math.unit(10600000, "lightyears")
  29908. },
  29909. {
  29910. name: "Hypermacro",
  29911. height: math.unit(256, "yottameters")
  29912. },
  29913. ]
  29914. ))
  29915. characterMakers.push(() => makeCharacter(
  29916. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29917. {
  29918. front: {
  29919. height: math.unit(10, "feet"),
  29920. weight: math.unit(750, "lb"),
  29921. name: "Front",
  29922. image: {
  29923. source: "./media/characters/clove/front.svg",
  29924. extra: 1918/1751,
  29925. bottom: 52/1970
  29926. }
  29927. },
  29928. back: {
  29929. height: math.unit(10, "feet"),
  29930. weight: math.unit(750, "lb"),
  29931. name: "Back",
  29932. image: {
  29933. source: "./media/characters/clove/back.svg",
  29934. extra: 1912/1747,
  29935. bottom: 50/1962
  29936. }
  29937. },
  29938. },
  29939. [
  29940. {
  29941. name: "Normal",
  29942. height: math.unit(10, "feet"),
  29943. default: true
  29944. },
  29945. ]
  29946. ))
  29947. characterMakers.push(() => makeCharacter(
  29948. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29949. {
  29950. front: {
  29951. height: math.unit(4, "feet"),
  29952. weight: math.unit(50, "lb"),
  29953. name: "Front",
  29954. image: {
  29955. source: "./media/characters/alex-rabbit/front.svg",
  29956. extra: 507 / 458,
  29957. bottom: 18.5 / 527
  29958. }
  29959. },
  29960. back: {
  29961. height: math.unit(4, "feet"),
  29962. weight: math.unit(50, "lb"),
  29963. name: "Back",
  29964. image: {
  29965. source: "./media/characters/alex-rabbit/back.svg",
  29966. extra: 502 / 460,
  29967. bottom: 18.9 / 521
  29968. }
  29969. },
  29970. },
  29971. [
  29972. {
  29973. name: "Normal",
  29974. height: math.unit(4, "feet"),
  29975. default: true
  29976. },
  29977. ]
  29978. ))
  29979. characterMakers.push(() => makeCharacter(
  29980. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29981. {
  29982. front: {
  29983. height: math.unit(1 + 3 / 12, "feet"),
  29984. weight: math.unit(80, "lb"),
  29985. name: "Front",
  29986. image: {
  29987. source: "./media/characters/zander-rose/front.svg",
  29988. extra: 916 / 797,
  29989. bottom: 17 / 933
  29990. }
  29991. },
  29992. back: {
  29993. height: math.unit(1 + 3 / 12, "feet"),
  29994. weight: math.unit(80, "lb"),
  29995. name: "Back",
  29996. image: {
  29997. source: "./media/characters/zander-rose/back.svg",
  29998. extra: 903 / 779,
  29999. bottom: 31 / 934
  30000. }
  30001. },
  30002. },
  30003. [
  30004. {
  30005. name: "Normal",
  30006. height: math.unit(1 + 3 / 12, "feet"),
  30007. default: true
  30008. },
  30009. ]
  30010. ))
  30011. characterMakers.push(() => makeCharacter(
  30012. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30013. {
  30014. anthro: {
  30015. height: math.unit(6, "feet"),
  30016. weight: math.unit(150, "lb"),
  30017. name: "Anthro",
  30018. image: {
  30019. source: "./media/characters/razz/anthro.svg",
  30020. extra: 1437 / 1343,
  30021. bottom: 48 / 1485
  30022. }
  30023. },
  30024. feral: {
  30025. height: math.unit(6, "feet"),
  30026. weight: math.unit(150, "lb"),
  30027. name: "Feral",
  30028. image: {
  30029. source: "./media/characters/razz/feral.svg",
  30030. extra: 2569 / 1385,
  30031. bottom: 95 / 2664
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Normal",
  30038. height: math.unit(6, "feet"),
  30039. default: true
  30040. },
  30041. ]
  30042. ))
  30043. characterMakers.push(() => makeCharacter(
  30044. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30045. {
  30046. front: {
  30047. height: math.unit(9 + 4 / 12, "feet"),
  30048. weight: math.unit(500, "lb"),
  30049. name: "Front",
  30050. image: {
  30051. source: "./media/characters/morrigan/front.svg",
  30052. extra: 2707 / 2579,
  30053. bottom: 156 / 2863
  30054. }
  30055. },
  30056. },
  30057. [
  30058. {
  30059. name: "Normal",
  30060. height: math.unit(9 + 4 / 12, "feet"),
  30061. default: true
  30062. },
  30063. ]
  30064. ))
  30065. characterMakers.push(() => makeCharacter(
  30066. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30067. {
  30068. front: {
  30069. height: math.unit(5, "stories"),
  30070. weight: math.unit(4000, "lb"),
  30071. name: "Front",
  30072. image: {
  30073. source: "./media/characters/jenene/front.svg",
  30074. extra: 1780 / 1710,
  30075. bottom: 57 / 1837
  30076. }
  30077. },
  30078. },
  30079. [
  30080. {
  30081. name: "Normal",
  30082. height: math.unit(5, "stories"),
  30083. default: true
  30084. },
  30085. ]
  30086. ))
  30087. characterMakers.push(() => makeCharacter(
  30088. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30089. {
  30090. taurSfw: {
  30091. height: math.unit(10, "meters"),
  30092. weight: math.unit(17500, "kg"),
  30093. name: "Taur",
  30094. image: {
  30095. source: "./media/characters/faey/taur-sfw.svg",
  30096. extra: 1200 / 968,
  30097. bottom: 41 / 1241
  30098. }
  30099. },
  30100. chestmaw: {
  30101. height: math.unit(2.01, "meters"),
  30102. name: "Chestmaw",
  30103. image: {
  30104. source: "./media/characters/faey/chestmaw.svg"
  30105. }
  30106. },
  30107. foot: {
  30108. height: math.unit(2.43, "meters"),
  30109. name: "Foot",
  30110. image: {
  30111. source: "./media/characters/faey/foot.svg"
  30112. }
  30113. },
  30114. jaws: {
  30115. height: math.unit(1.66, "meters"),
  30116. name: "Jaws",
  30117. image: {
  30118. source: "./media/characters/faey/jaws.svg"
  30119. }
  30120. },
  30121. tongues: {
  30122. height: math.unit(2.01, "meters"),
  30123. name: "Tongues",
  30124. image: {
  30125. source: "./media/characters/faey/tongues.svg"
  30126. }
  30127. },
  30128. },
  30129. [
  30130. {
  30131. name: "Small",
  30132. height: math.unit(10, "meters"),
  30133. default: true
  30134. },
  30135. {
  30136. name: "Big",
  30137. height: math.unit(500000, "km")
  30138. },
  30139. ]
  30140. ))
  30141. characterMakers.push(() => makeCharacter(
  30142. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30143. {
  30144. front: {
  30145. height: math.unit(7, "feet"),
  30146. weight: math.unit(275, "lb"),
  30147. name: "Front",
  30148. image: {
  30149. source: "./media/characters/roku/front.svg",
  30150. extra: 903 / 878,
  30151. bottom: 37 / 940
  30152. }
  30153. },
  30154. },
  30155. [
  30156. {
  30157. name: "Normal",
  30158. height: math.unit(7, "feet"),
  30159. default: true
  30160. },
  30161. {
  30162. name: "Macro",
  30163. height: math.unit(500, "feet")
  30164. },
  30165. {
  30166. name: "Megamacro",
  30167. height: math.unit(200, "miles")
  30168. },
  30169. ]
  30170. ))
  30171. characterMakers.push(() => makeCharacter(
  30172. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30173. {
  30174. front: {
  30175. height: math.unit(6 + 2 / 12, "feet"),
  30176. weight: math.unit(150, "lb"),
  30177. name: "Front",
  30178. image: {
  30179. source: "./media/characters/lira/front.svg",
  30180. extra: 1727 / 1605,
  30181. bottom: 26 / 1753
  30182. }
  30183. },
  30184. back: {
  30185. height: math.unit(6 + 2 / 12, "feet"),
  30186. weight: math.unit(150, "lb"),
  30187. name: "Back",
  30188. image: {
  30189. source: "./media/characters/lira/back.svg",
  30190. extra: 1713/1621,
  30191. bottom: 20/1733
  30192. }
  30193. },
  30194. hand: {
  30195. height: math.unit(0.75, "feet"),
  30196. name: "Hand",
  30197. image: {
  30198. source: "./media/characters/lira/hand.svg"
  30199. }
  30200. },
  30201. maw: {
  30202. height: math.unit(0.65, "feet"),
  30203. name: "Maw",
  30204. image: {
  30205. source: "./media/characters/lira/maw.svg"
  30206. }
  30207. },
  30208. pawDigi: {
  30209. height: math.unit(1.6, "feet"),
  30210. name: "Paw Digi",
  30211. image: {
  30212. source: "./media/characters/lira/paw-digi.svg"
  30213. }
  30214. },
  30215. pawPlanti: {
  30216. height: math.unit(1.4, "feet"),
  30217. name: "Paw Planti",
  30218. image: {
  30219. source: "./media/characters/lira/paw-planti.svg"
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Normal",
  30226. height: math.unit(6 + 2 / 12, "feet"),
  30227. default: true
  30228. },
  30229. {
  30230. name: "Macro",
  30231. height: math.unit(100, "feet")
  30232. },
  30233. {
  30234. name: "Macro²",
  30235. height: math.unit(1600, "feet")
  30236. },
  30237. {
  30238. name: "Planetary",
  30239. height: math.unit(20, "earths")
  30240. },
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30245. {
  30246. front: {
  30247. height: math.unit(6, "feet"),
  30248. weight: math.unit(150, "lb"),
  30249. name: "Front",
  30250. image: {
  30251. source: "./media/characters/hadjet/front.svg",
  30252. extra: 1480 / 1346,
  30253. bottom: 26 / 1506
  30254. }
  30255. },
  30256. frontNsfw: {
  30257. height: math.unit(6, "feet"),
  30258. weight: math.unit(150, "lb"),
  30259. name: "Front (NSFW)",
  30260. image: {
  30261. source: "./media/characters/hadjet/front-nsfw.svg",
  30262. extra: 1440 / 1358,
  30263. bottom: 52 / 1492
  30264. }
  30265. },
  30266. },
  30267. [
  30268. {
  30269. name: "Macro",
  30270. height: math.unit(10, "stories"),
  30271. default: true
  30272. },
  30273. {
  30274. name: "Megamacro",
  30275. height: math.unit(1.5, "miles")
  30276. },
  30277. {
  30278. name: "Megamacro+",
  30279. height: math.unit(5, "miles")
  30280. },
  30281. ]
  30282. ))
  30283. characterMakers.push(() => makeCharacter(
  30284. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30285. {
  30286. side: {
  30287. height: math.unit(106, "feet"),
  30288. weight: math.unit(500, "tonnes"),
  30289. name: "Side",
  30290. image: {
  30291. source: "./media/characters/kodran/side.svg",
  30292. extra: 553 / 480,
  30293. bottom: 33 / 586
  30294. }
  30295. },
  30296. front: {
  30297. height: math.unit(132, "feet"),
  30298. weight: math.unit(500, "tonnes"),
  30299. name: "Front",
  30300. image: {
  30301. source: "./media/characters/kodran/front.svg",
  30302. extra: 667 / 643,
  30303. bottom: 42 / 709
  30304. }
  30305. },
  30306. flying: {
  30307. height: math.unit(350, "feet"),
  30308. weight: math.unit(500, "tonnes"),
  30309. name: "Flying",
  30310. image: {
  30311. source: "./media/characters/kodran/flying.svg"
  30312. }
  30313. },
  30314. foot: {
  30315. height: math.unit(33, "feet"),
  30316. name: "Foot",
  30317. image: {
  30318. source: "./media/characters/kodran/foot.svg"
  30319. }
  30320. },
  30321. footFront: {
  30322. height: math.unit(19, "feet"),
  30323. name: "Foot (Front)",
  30324. image: {
  30325. source: "./media/characters/kodran/foot-front.svg",
  30326. extra: 261 / 261,
  30327. bottom: 91 / 352
  30328. }
  30329. },
  30330. headFront: {
  30331. height: math.unit(53, "feet"),
  30332. name: "Head (Front)",
  30333. image: {
  30334. source: "./media/characters/kodran/head-front.svg"
  30335. }
  30336. },
  30337. headSide: {
  30338. height: math.unit(65, "feet"),
  30339. name: "Head (Side)",
  30340. image: {
  30341. source: "./media/characters/kodran/head-side.svg"
  30342. }
  30343. },
  30344. throat: {
  30345. height: math.unit(79, "feet"),
  30346. name: "Throat",
  30347. image: {
  30348. source: "./media/characters/kodran/throat.svg"
  30349. }
  30350. },
  30351. },
  30352. [
  30353. {
  30354. name: "Large",
  30355. height: math.unit(106, "feet"),
  30356. default: true
  30357. },
  30358. ]
  30359. ))
  30360. characterMakers.push(() => makeCharacter(
  30361. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30362. {
  30363. side: {
  30364. height: math.unit(11, "feet"),
  30365. weight: math.unit(150, "lb"),
  30366. name: "Side",
  30367. image: {
  30368. source: "./media/characters/pyxaron/side.svg",
  30369. extra: 305 / 195,
  30370. bottom: 17 / 322
  30371. }
  30372. },
  30373. },
  30374. [
  30375. {
  30376. name: "Normal",
  30377. height: math.unit(11, "feet"),
  30378. default: true
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30384. {
  30385. front: {
  30386. height: math.unit(6, "feet"),
  30387. weight: math.unit(150, "lb"),
  30388. name: "Front",
  30389. image: {
  30390. source: "./media/characters/meep/front.svg",
  30391. extra: 88 / 80,
  30392. bottom: 6 / 94
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Fun Sized",
  30399. height: math.unit(2, "inches"),
  30400. default: true
  30401. },
  30402. {
  30403. name: "Friend Sized",
  30404. height: math.unit(8, "inches")
  30405. },
  30406. ]
  30407. ))
  30408. characterMakers.push(() => makeCharacter(
  30409. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30410. {
  30411. front: {
  30412. height: math.unit(15, "feet"),
  30413. weight: math.unit(2500, "lb"),
  30414. name: "Front",
  30415. image: {
  30416. source: "./media/characters/holly-rabbit/front.svg",
  30417. extra: 1433 / 1233,
  30418. bottom: 125 / 1558
  30419. }
  30420. },
  30421. dick: {
  30422. height: math.unit(4.6, "feet"),
  30423. name: "Dick",
  30424. image: {
  30425. source: "./media/characters/holly-rabbit/dick.svg"
  30426. }
  30427. },
  30428. },
  30429. [
  30430. {
  30431. name: "Normal",
  30432. height: math.unit(15, "feet"),
  30433. default: true
  30434. },
  30435. {
  30436. name: "Macro",
  30437. height: math.unit(250, "feet")
  30438. },
  30439. {
  30440. name: "Macro+",
  30441. height: math.unit(2500, "feet")
  30442. },
  30443. ]
  30444. ))
  30445. characterMakers.push(() => makeCharacter(
  30446. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30447. {
  30448. front: {
  30449. height: math.unit(3.02, "meters"),
  30450. weight: math.unit(500, "kg"),
  30451. name: "Front",
  30452. image: {
  30453. source: "./media/characters/drena/front.svg",
  30454. extra: 282 / 243,
  30455. bottom: 8 / 290
  30456. }
  30457. },
  30458. side: {
  30459. height: math.unit(3.02, "meters"),
  30460. weight: math.unit(500, "kg"),
  30461. name: "Side",
  30462. image: {
  30463. source: "./media/characters/drena/side.svg",
  30464. extra: 280 / 245,
  30465. bottom: 10 / 290
  30466. }
  30467. },
  30468. back: {
  30469. height: math.unit(3.02, "meters"),
  30470. weight: math.unit(500, "kg"),
  30471. name: "Back",
  30472. image: {
  30473. source: "./media/characters/drena/back.svg",
  30474. extra: 278 / 243,
  30475. bottom: 2 / 280
  30476. }
  30477. },
  30478. foot: {
  30479. height: math.unit(0.75, "meters"),
  30480. name: "Foot",
  30481. image: {
  30482. source: "./media/characters/drena/foot.svg"
  30483. }
  30484. },
  30485. maw: {
  30486. height: math.unit(0.82, "meters"),
  30487. name: "Maw",
  30488. image: {
  30489. source: "./media/characters/drena/maw.svg"
  30490. }
  30491. },
  30492. eating: {
  30493. height: math.unit(0.75, "meters"),
  30494. name: "Eating",
  30495. image: {
  30496. source: "./media/characters/drena/eating.svg"
  30497. }
  30498. },
  30499. rump: {
  30500. height: math.unit(0.93, "meters"),
  30501. name: "Rump",
  30502. image: {
  30503. source: "./media/characters/drena/rump.svg"
  30504. }
  30505. },
  30506. },
  30507. [
  30508. {
  30509. name: "Normal",
  30510. height: math.unit(3.02, "meters"),
  30511. default: true
  30512. },
  30513. ]
  30514. ))
  30515. characterMakers.push(() => makeCharacter(
  30516. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30517. {
  30518. front: {
  30519. height: math.unit(6 + 4 / 12, "feet"),
  30520. weight: math.unit(250, "lb"),
  30521. name: "Front",
  30522. image: {
  30523. source: "./media/characters/remmyzilla/front.svg",
  30524. extra: 4033 / 3588,
  30525. bottom: 123 / 4156
  30526. }
  30527. },
  30528. back: {
  30529. height: math.unit(6 + 4 / 12, "feet"),
  30530. weight: math.unit(250, "lb"),
  30531. name: "Back",
  30532. image: {
  30533. source: "./media/characters/remmyzilla/back.svg",
  30534. extra: 2687 / 2555,
  30535. bottom: 48 / 2735
  30536. }
  30537. },
  30538. paw: {
  30539. height: math.unit(1.73, "feet"),
  30540. name: "Paw",
  30541. image: {
  30542. source: "./media/characters/remmyzilla/paw.svg"
  30543. },
  30544. extraAttributes: {
  30545. "toeSize": {
  30546. name: "Toe Size",
  30547. power: 2,
  30548. type: "area",
  30549. base: math.unit(0.0035, "m^2")
  30550. },
  30551. "padSize": {
  30552. name: "Pad Size",
  30553. power: 2,
  30554. type: "area",
  30555. base: math.unit(0.015, "m^2")
  30556. },
  30557. "pawsize": {
  30558. name: "Paw Size",
  30559. power: 2,
  30560. type: "area",
  30561. base: math.unit(0.072, "m^2")
  30562. },
  30563. }
  30564. },
  30565. maw: {
  30566. height: math.unit(1.73, "feet"),
  30567. name: "Maw",
  30568. image: {
  30569. source: "./media/characters/remmyzilla/maw.svg"
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Normal",
  30576. height: math.unit(6 + 4 / 12, "feet")
  30577. },
  30578. {
  30579. name: "Minimacro",
  30580. height: math.unit(12 + 8 / 12, "feet")
  30581. },
  30582. {
  30583. name: "Normal",
  30584. height: math.unit(640, "feet"),
  30585. default: true
  30586. },
  30587. {
  30588. name: "Megamacro",
  30589. height: math.unit(6400, "feet")
  30590. },
  30591. {
  30592. name: "Gigamacro",
  30593. height: math.unit(64000, "miles")
  30594. },
  30595. ]
  30596. ))
  30597. characterMakers.push(() => makeCharacter(
  30598. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30599. {
  30600. front: {
  30601. height: math.unit(2.5, "meters"),
  30602. weight: math.unit(300, "lb"),
  30603. name: "Front",
  30604. image: {
  30605. source: "./media/characters/lawrence/front.svg",
  30606. extra: 357 / 335,
  30607. bottom: 30 / 387
  30608. }
  30609. },
  30610. back: {
  30611. height: math.unit(2.5, "meters"),
  30612. weight: math.unit(300, "lb"),
  30613. name: "Back",
  30614. image: {
  30615. source: "./media/characters/lawrence/back.svg",
  30616. extra: 357 / 338,
  30617. bottom: 16 / 373
  30618. }
  30619. },
  30620. head: {
  30621. height: math.unit(0.9, "meter"),
  30622. name: "Head",
  30623. image: {
  30624. source: "./media/characters/lawrence/head.svg"
  30625. }
  30626. },
  30627. maw: {
  30628. height: math.unit(0.7, "meter"),
  30629. name: "Maw",
  30630. image: {
  30631. source: "./media/characters/lawrence/maw.svg"
  30632. }
  30633. },
  30634. footBottom: {
  30635. height: math.unit(0.5, "meter"),
  30636. name: "Foot (Bottom)",
  30637. image: {
  30638. source: "./media/characters/lawrence/foot-bottom.svg"
  30639. }
  30640. },
  30641. footTop: {
  30642. height: math.unit(0.5, "meter"),
  30643. name: "Foot (Top)",
  30644. image: {
  30645. source: "./media/characters/lawrence/foot-top.svg"
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Normal",
  30652. height: math.unit(2.5, "meters"),
  30653. default: true
  30654. },
  30655. {
  30656. name: "Macro",
  30657. height: math.unit(95, "meters")
  30658. },
  30659. {
  30660. name: "Megamacro",
  30661. height: math.unit(150, "km")
  30662. },
  30663. ]
  30664. ))
  30665. characterMakers.push(() => makeCharacter(
  30666. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30667. {
  30668. front: {
  30669. height: math.unit(4.2, "meters"),
  30670. preyCapacity: math.unit(50, "m^3"),
  30671. weight: math.unit(30, "tonnes"),
  30672. name: "Front",
  30673. image: {
  30674. source: "./media/characters/sydney/front.svg",
  30675. extra: 1177/1129,
  30676. bottom: 197/1374
  30677. },
  30678. extraAttributes: {
  30679. "length": {
  30680. name: "Length",
  30681. power: 1,
  30682. type: "length",
  30683. base: math.unit(21, "meters")
  30684. },
  30685. }
  30686. },
  30687. },
  30688. [
  30689. {
  30690. name: "Normal",
  30691. height: math.unit(4.2, "meters"),
  30692. default: true
  30693. },
  30694. ]
  30695. ))
  30696. characterMakers.push(() => makeCharacter(
  30697. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30698. {
  30699. back: {
  30700. height: math.unit(201, "feet"),
  30701. name: "Back",
  30702. image: {
  30703. source: "./media/characters/jessica/back.svg",
  30704. extra: 273 / 259,
  30705. bottom: 7 / 280
  30706. }
  30707. },
  30708. },
  30709. [
  30710. {
  30711. name: "Normal",
  30712. height: math.unit(201, "feet"),
  30713. default: true
  30714. },
  30715. {
  30716. name: "Megamacro",
  30717. height: math.unit(8, "miles")
  30718. },
  30719. ]
  30720. ))
  30721. characterMakers.push(() => makeCharacter(
  30722. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30723. {
  30724. side: {
  30725. height: math.unit(5.6, "m"),
  30726. weight: math.unit(8000, "kg"),
  30727. name: "Side",
  30728. image: {
  30729. source: "./media/characters/victoria/side.svg",
  30730. extra: 1542/1229,
  30731. bottom: 124/1666
  30732. }
  30733. },
  30734. maw: {
  30735. height: math.unit(7.14, "feet"),
  30736. name: "Maw",
  30737. image: {
  30738. source: "./media/characters/victoria/maw.svg"
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Normal",
  30745. height: math.unit(5.6, "m"),
  30746. default: true
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30752. {
  30753. front: {
  30754. height: math.unit(5 + 6 / 12, "feet"),
  30755. name: "Front",
  30756. image: {
  30757. source: "./media/characters/cat/front.svg",
  30758. extra: 1449/1295,
  30759. bottom: 34/1483
  30760. },
  30761. form: "cat",
  30762. default: true
  30763. },
  30764. back: {
  30765. height: math.unit(5 + 6 / 12, "feet"),
  30766. name: "Back",
  30767. image: {
  30768. source: "./media/characters/cat/back.svg",
  30769. extra: 1466/1301,
  30770. bottom: 19/1485
  30771. },
  30772. form: "cat"
  30773. },
  30774. taur: {
  30775. height: math.unit(7, "feet"),
  30776. name: "Taur",
  30777. image: {
  30778. source: "./media/characters/cat/taur.svg",
  30779. extra: 1389/1233,
  30780. bottom: 83/1472
  30781. },
  30782. form: "taur",
  30783. default: true
  30784. },
  30785. lucarioFront: {
  30786. height: math.unit(4, "feet"),
  30787. name: "Lucario (Front)",
  30788. image: {
  30789. source: "./media/characters/cat/lucario-front.svg",
  30790. extra: 1149/1019,
  30791. bottom: 84/1233
  30792. },
  30793. form: "lucario",
  30794. default: true
  30795. },
  30796. lucarioBack: {
  30797. height: math.unit(4, "feet"),
  30798. name: "Lucario (Back)",
  30799. image: {
  30800. source: "./media/characters/cat/lucario-back.svg",
  30801. extra: 1190/1059,
  30802. bottom: 33/1223
  30803. },
  30804. form: "lucario"
  30805. },
  30806. megaLucario: {
  30807. height: math.unit(4, "feet"),
  30808. name: "Mega Lucario",
  30809. image: {
  30810. source: "./media/characters/cat/mega-lucario.svg",
  30811. extra: 1515 / 1319,
  30812. bottom: 63 / 1578
  30813. },
  30814. form: "lucario"
  30815. },
  30816. nickit: {
  30817. height: math.unit(2, "feet"),
  30818. name: "Nickit",
  30819. image: {
  30820. source: "./media/characters/cat/nickit.svg",
  30821. extra: 1980 / 1585,
  30822. bottom: 102 / 2082
  30823. },
  30824. form: "nickit",
  30825. default: true
  30826. },
  30827. lopunnyFront: {
  30828. height: math.unit(5, "feet"),
  30829. name: "Lopunny (Front)",
  30830. image: {
  30831. source: "./media/characters/cat/lopunny-front.svg",
  30832. extra: 1782 / 1469,
  30833. bottom: 38 / 1820
  30834. },
  30835. form: "lopunny",
  30836. default: true
  30837. },
  30838. lopunnyBack: {
  30839. height: math.unit(5, "feet"),
  30840. name: "Lopunny (Back)",
  30841. image: {
  30842. source: "./media/characters/cat/lopunny-back.svg",
  30843. extra: 1660 / 1490,
  30844. bottom: 25 / 1685
  30845. },
  30846. form: "lopunny"
  30847. },
  30848. },
  30849. [
  30850. {
  30851. name: "Really small",
  30852. height: math.unit(1, "nm")
  30853. },
  30854. {
  30855. name: "Micro",
  30856. height: math.unit(5, "inches")
  30857. },
  30858. {
  30859. name: "Normal",
  30860. height: math.unit(5 + 6 / 12, "feet"),
  30861. default: true
  30862. },
  30863. {
  30864. name: "Macro",
  30865. height: math.unit(50, "feet")
  30866. },
  30867. {
  30868. name: "Macro+",
  30869. height: math.unit(150, "feet")
  30870. },
  30871. {
  30872. name: "Megamacro",
  30873. height: math.unit(100, "miles")
  30874. },
  30875. ]
  30876. ))
  30877. characterMakers.push(() => makeCharacter(
  30878. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30879. {
  30880. front: {
  30881. height: math.unit(63.4, "meters"),
  30882. weight: math.unit(3.28349e+6, "kilograms"),
  30883. name: "Front",
  30884. image: {
  30885. source: "./media/characters/kirina-violet/front.svg",
  30886. extra: 2812 / 2725,
  30887. bottom: 0 / 2812
  30888. }
  30889. },
  30890. back: {
  30891. height: math.unit(63.4, "meters"),
  30892. weight: math.unit(3.28349e+6, "kilograms"),
  30893. name: "Back",
  30894. image: {
  30895. source: "./media/characters/kirina-violet/back.svg",
  30896. extra: 2812 / 2725,
  30897. bottom: 0 / 2812
  30898. }
  30899. },
  30900. mouth: {
  30901. height: math.unit(4.35, "meters"),
  30902. name: "Mouth",
  30903. image: {
  30904. source: "./media/characters/kirina-violet/mouth.svg"
  30905. }
  30906. },
  30907. paw: {
  30908. height: math.unit(5.6, "meters"),
  30909. name: "Paw",
  30910. image: {
  30911. source: "./media/characters/kirina-violet/paw.svg"
  30912. }
  30913. },
  30914. tail: {
  30915. height: math.unit(18, "meters"),
  30916. name: "Tail",
  30917. image: {
  30918. source: "./media/characters/kirina-violet/tail.svg"
  30919. }
  30920. },
  30921. },
  30922. [
  30923. {
  30924. name: "Macro",
  30925. height: math.unit(63.4, "meters"),
  30926. default: true
  30927. },
  30928. ]
  30929. ))
  30930. characterMakers.push(() => makeCharacter(
  30931. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30932. {
  30933. front: {
  30934. height: math.unit(75, "feet"),
  30935. name: "Front",
  30936. image: {
  30937. source: "./media/characters/cat-gigachu/front.svg",
  30938. extra: 1239/1027,
  30939. bottom: 32/1271
  30940. }
  30941. },
  30942. back: {
  30943. height: math.unit(75, "feet"),
  30944. name: "Back",
  30945. image: {
  30946. source: "./media/characters/cat-gigachu/back.svg",
  30947. extra: 1229/1030,
  30948. bottom: 9/1238
  30949. }
  30950. },
  30951. },
  30952. [
  30953. {
  30954. name: "Dynamax",
  30955. height: math.unit(75, "feet"),
  30956. default: true
  30957. },
  30958. ]
  30959. ))
  30960. characterMakers.push(() => makeCharacter(
  30961. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30962. {
  30963. front: {
  30964. height: math.unit(6, "feet"),
  30965. weight: math.unit(150, "lb"),
  30966. name: "Front",
  30967. image: {
  30968. source: "./media/characters/sfaiyan/front.svg",
  30969. extra: 999 / 978,
  30970. bottom: 5 / 1004
  30971. }
  30972. },
  30973. },
  30974. [
  30975. {
  30976. name: "Normal",
  30977. height: math.unit(1.82, "meters")
  30978. },
  30979. {
  30980. name: "Giant",
  30981. height: math.unit(2.27, "km"),
  30982. default: true
  30983. },
  30984. ]
  30985. ))
  30986. characterMakers.push(() => makeCharacter(
  30987. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30988. {
  30989. front: {
  30990. height: math.unit(179, "cm"),
  30991. weight: math.unit(100, "kg"),
  30992. name: "Front",
  30993. image: {
  30994. source: "./media/characters/raunehkeli/front.svg",
  30995. extra: 1934 / 1926,
  30996. bottom: 0 / 1934
  30997. }
  30998. },
  30999. },
  31000. [
  31001. {
  31002. name: "Normal",
  31003. height: math.unit(179, "cm")
  31004. },
  31005. {
  31006. name: "Maximum",
  31007. height: math.unit(575, "meters"),
  31008. default: true
  31009. },
  31010. ]
  31011. ))
  31012. characterMakers.push(() => makeCharacter(
  31013. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31014. {
  31015. front: {
  31016. height: math.unit(6, "feet"),
  31017. weight: math.unit(150, "lb"),
  31018. name: "Front",
  31019. image: {
  31020. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31021. extra: 2625 / 2518,
  31022. bottom: 60 / 2685
  31023. }
  31024. },
  31025. },
  31026. [
  31027. {
  31028. name: "Normal",
  31029. height: math.unit(6 + 2 / 12, "feet")
  31030. },
  31031. {
  31032. name: "Macro",
  31033. height: math.unit(1180, "feet"),
  31034. default: true
  31035. },
  31036. ]
  31037. ))
  31038. characterMakers.push(() => makeCharacter(
  31039. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31040. {
  31041. front: {
  31042. height: math.unit(5 + 6 / 12, "feet"),
  31043. weight: math.unit(108, "lb"),
  31044. name: "Front",
  31045. image: {
  31046. source: "./media/characters/lilith-zott/front.svg",
  31047. extra: 2510 / 2238,
  31048. bottom: 100 / 2610
  31049. }
  31050. },
  31051. frontDressed: {
  31052. height: math.unit(5 + 6 / 12, "feet"),
  31053. weight: math.unit(108, "lb"),
  31054. name: "Front (Dressed)",
  31055. image: {
  31056. source: "./media/characters/lilith-zott/front-dressed.svg",
  31057. extra: 2510 / 2238,
  31058. bottom: 100 / 2610
  31059. }
  31060. },
  31061. },
  31062. [
  31063. {
  31064. name: "Normal",
  31065. height: math.unit(5 + 6 / 12, "feet")
  31066. },
  31067. {
  31068. name: "Macro",
  31069. height: math.unit(1030, "feet"),
  31070. default: true
  31071. },
  31072. ]
  31073. ))
  31074. characterMakers.push(() => makeCharacter(
  31075. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31076. {
  31077. front: {
  31078. height: math.unit(6, "feet"),
  31079. weight: math.unit(150, "lb"),
  31080. name: "Front",
  31081. image: {
  31082. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31083. extra: 2567 / 2435,
  31084. bottom: 39 / 2606
  31085. }
  31086. },
  31087. frontSuper: {
  31088. height: math.unit(6, "feet"),
  31089. name: "Front (Super)",
  31090. image: {
  31091. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31092. extra: 2567 / 2435,
  31093. bottom: 39 / 2606
  31094. }
  31095. },
  31096. },
  31097. [
  31098. {
  31099. name: "Normal",
  31100. height: math.unit(5 + 10 / 12, "feet")
  31101. },
  31102. {
  31103. name: "Macro",
  31104. height: math.unit(1100, "feet"),
  31105. default: true
  31106. },
  31107. ]
  31108. ))
  31109. characterMakers.push(() => makeCharacter(
  31110. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31111. {
  31112. front: {
  31113. height: math.unit(100, "miles"),
  31114. name: "Front",
  31115. image: {
  31116. source: "./media/characters/sona/front.svg",
  31117. extra: 2433 / 2201,
  31118. bottom: 53 / 2486
  31119. }
  31120. },
  31121. foot: {
  31122. height: math.unit(16.1, "miles"),
  31123. name: "Foot",
  31124. image: {
  31125. source: "./media/characters/sona/foot.svg"
  31126. }
  31127. },
  31128. },
  31129. [
  31130. {
  31131. name: "Macro",
  31132. height: math.unit(100, "miles"),
  31133. default: true
  31134. },
  31135. ]
  31136. ))
  31137. characterMakers.push(() => makeCharacter(
  31138. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31139. {
  31140. front: {
  31141. height: math.unit(6, "feet"),
  31142. weight: math.unit(150, "lb"),
  31143. name: "Front",
  31144. image: {
  31145. source: "./media/characters/bailey/front.svg",
  31146. extra: 1778 / 1724,
  31147. bottom: 30 / 1808
  31148. }
  31149. },
  31150. },
  31151. [
  31152. {
  31153. name: "Micro",
  31154. height: math.unit(4, "inches")
  31155. },
  31156. {
  31157. name: "Normal",
  31158. height: math.unit(5 + 5 / 12, "feet"),
  31159. default: true
  31160. },
  31161. {
  31162. name: "Macro",
  31163. height: math.unit(250, "feet")
  31164. },
  31165. {
  31166. name: "Megamacro",
  31167. height: math.unit(100, "miles")
  31168. },
  31169. ]
  31170. ))
  31171. characterMakers.push(() => makeCharacter(
  31172. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31173. {
  31174. front: {
  31175. height: math.unit(5 + 2 / 12, "feet"),
  31176. weight: math.unit(120, "lb"),
  31177. name: "Front",
  31178. image: {
  31179. source: "./media/characters/snaps/front.svg",
  31180. extra: 2370 / 2177,
  31181. bottom: 48 / 2418
  31182. }
  31183. },
  31184. back: {
  31185. height: math.unit(5 + 2 / 12, "feet"),
  31186. weight: math.unit(120, "lb"),
  31187. name: "Back",
  31188. image: {
  31189. source: "./media/characters/snaps/back.svg",
  31190. extra: 2408 / 2258,
  31191. bottom: 15 / 2423
  31192. }
  31193. },
  31194. },
  31195. [
  31196. {
  31197. name: "Micro",
  31198. height: math.unit(9, "inches")
  31199. },
  31200. {
  31201. name: "Normal",
  31202. height: math.unit(5 + 2 / 12, "feet"),
  31203. default: true
  31204. },
  31205. {
  31206. name: "Mini Macro",
  31207. height: math.unit(10, "feet")
  31208. },
  31209. ]
  31210. ))
  31211. characterMakers.push(() => makeCharacter(
  31212. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31213. {
  31214. front: {
  31215. height: math.unit(1.8, "meters"),
  31216. weight: math.unit(85, "kg"),
  31217. name: "Front",
  31218. image: {
  31219. source: "./media/characters/azteck/front.svg",
  31220. extra: 2815 / 2625,
  31221. bottom: 89 / 2904
  31222. }
  31223. },
  31224. back: {
  31225. height: math.unit(1.8, "meters"),
  31226. weight: math.unit(85, "kg"),
  31227. name: "Back",
  31228. image: {
  31229. source: "./media/characters/azteck/back.svg",
  31230. extra: 2856 / 2648,
  31231. bottom: 85 / 2941
  31232. }
  31233. },
  31234. frontDressed: {
  31235. height: math.unit(1.8, "meters"),
  31236. weight: math.unit(85, "kg"),
  31237. name: "Front (Dressed)",
  31238. image: {
  31239. source: "./media/characters/azteck/front-dressed.svg",
  31240. extra: 2147 / 2003,
  31241. bottom: 68 / 2215
  31242. }
  31243. },
  31244. head: {
  31245. height: math.unit(0.47, "meters"),
  31246. weight: math.unit(85, "kg"),
  31247. name: "Head",
  31248. image: {
  31249. source: "./media/characters/azteck/head.svg"
  31250. }
  31251. },
  31252. },
  31253. [
  31254. {
  31255. name: "Bite sized",
  31256. height: math.unit(16, "cm")
  31257. },
  31258. {
  31259. name: "Normal",
  31260. height: math.unit(1.8, "meters"),
  31261. default: true
  31262. },
  31263. ]
  31264. ))
  31265. characterMakers.push(() => makeCharacter(
  31266. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31267. {
  31268. front: {
  31269. height: math.unit(6, "feet"),
  31270. weight: math.unit(150, "lb"),
  31271. name: "Front",
  31272. image: {
  31273. source: "./media/characters/pidge/front.svg",
  31274. extra: 1936/1820,
  31275. bottom: 0/1936
  31276. }
  31277. },
  31278. back: {
  31279. height: math.unit(6, "feet"),
  31280. weight: math.unit(150, "lb"),
  31281. name: "Back",
  31282. image: {
  31283. source: "./media/characters/pidge/back.svg",
  31284. extra: 1938/1843,
  31285. bottom: 0/1938
  31286. }
  31287. },
  31288. casual: {
  31289. height: math.unit(6, "feet"),
  31290. weight: math.unit(150, "lb"),
  31291. name: "Casual",
  31292. image: {
  31293. source: "./media/characters/pidge/casual.svg",
  31294. extra: 1936/1820,
  31295. bottom: 0/1936
  31296. }
  31297. },
  31298. tech: {
  31299. height: math.unit(6, "feet"),
  31300. weight: math.unit(150, "lb"),
  31301. name: "Tech",
  31302. image: {
  31303. source: "./media/characters/pidge/tech.svg",
  31304. extra: 1802/1682,
  31305. bottom: 0/1802
  31306. }
  31307. },
  31308. head: {
  31309. height: math.unit(1.61, "feet"),
  31310. name: "Head",
  31311. image: {
  31312. source: "./media/characters/pidge/head.svg"
  31313. }
  31314. },
  31315. collar: {
  31316. height: math.unit(0.82, "feet"),
  31317. name: "Collar",
  31318. image: {
  31319. source: "./media/characters/pidge/collar.svg"
  31320. }
  31321. },
  31322. },
  31323. [
  31324. {
  31325. name: "Macro",
  31326. height: math.unit(2, "mile"),
  31327. default: true
  31328. },
  31329. {
  31330. name: "PUPPY",
  31331. height: math.unit(20, "miles")
  31332. },
  31333. ]
  31334. ))
  31335. characterMakers.push(() => makeCharacter(
  31336. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31337. {
  31338. front: {
  31339. height: math.unit(6, "feet"),
  31340. weight: math.unit(150, "lb"),
  31341. name: "Front",
  31342. image: {
  31343. source: "./media/characters/en/front.svg",
  31344. extra: 1697 / 1563,
  31345. bottom: 103 / 1800
  31346. }
  31347. },
  31348. back: {
  31349. height: math.unit(6, "feet"),
  31350. weight: math.unit(150, "lb"),
  31351. name: "Back",
  31352. image: {
  31353. source: "./media/characters/en/back.svg",
  31354. extra: 1700 / 1570,
  31355. bottom: 51 / 1751
  31356. }
  31357. },
  31358. frontDressed: {
  31359. height: math.unit(6, "feet"),
  31360. weight: math.unit(150, "lb"),
  31361. name: "Front (Dressed)",
  31362. image: {
  31363. source: "./media/characters/en/front-dressed.svg",
  31364. extra: 1697 / 1563,
  31365. bottom: 103 / 1800
  31366. }
  31367. },
  31368. backDressed: {
  31369. height: math.unit(6, "feet"),
  31370. weight: math.unit(150, "lb"),
  31371. name: "Back (Dressed)",
  31372. image: {
  31373. source: "./media/characters/en/back-dressed.svg",
  31374. extra: 1700 / 1570,
  31375. bottom: 51 / 1751
  31376. }
  31377. },
  31378. },
  31379. [
  31380. {
  31381. name: "Macro",
  31382. height: math.unit(210, "feet"),
  31383. default: true
  31384. },
  31385. ]
  31386. ))
  31387. characterMakers.push(() => makeCharacter(
  31388. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31389. {
  31390. front: {
  31391. height: math.unit(6, "feet"),
  31392. weight: math.unit(150, "lb"),
  31393. name: "Front",
  31394. image: {
  31395. source: "./media/characters/haze-orris/front.svg",
  31396. extra: 3975 / 3525,
  31397. bottom: 137 / 4112
  31398. }
  31399. },
  31400. },
  31401. [
  31402. {
  31403. name: "Micro",
  31404. height: math.unit(150, "mm"),
  31405. default: true
  31406. },
  31407. ]
  31408. ))
  31409. characterMakers.push(() => makeCharacter(
  31410. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31411. {
  31412. front: {
  31413. height: math.unit(6, "feet"),
  31414. weight: math.unit(150, "lb"),
  31415. name: "Front",
  31416. image: {
  31417. source: "./media/characters/casselene-yaro/front.svg",
  31418. extra: 4721 / 4541,
  31419. bottom: 82 / 4803
  31420. }
  31421. },
  31422. back: {
  31423. height: math.unit(6, "feet"),
  31424. weight: math.unit(150, "lb"),
  31425. name: "Back",
  31426. image: {
  31427. source: "./media/characters/casselene-yaro/back.svg",
  31428. extra: 4569 / 4377,
  31429. bottom: 69 / 4638
  31430. }
  31431. },
  31432. dressed: {
  31433. height: math.unit(6, "feet"),
  31434. weight: math.unit(150, "lb"),
  31435. name: "Dressed",
  31436. image: {
  31437. source: "./media/characters/casselene-yaro/dressed.svg",
  31438. extra: 4721 / 4541,
  31439. bottom: 82 / 4803
  31440. }
  31441. },
  31442. maw: {
  31443. height: math.unit(1, "feet"),
  31444. name: "Maw",
  31445. image: {
  31446. source: "./media/characters/casselene-yaro/maw.svg"
  31447. }
  31448. },
  31449. },
  31450. [
  31451. {
  31452. name: "Macro",
  31453. height: math.unit(190, "feet"),
  31454. default: true
  31455. },
  31456. ]
  31457. ))
  31458. characterMakers.push(() => makeCharacter(
  31459. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31460. {
  31461. front: {
  31462. height: math.unit(10, "feet"),
  31463. weight: math.unit(15015, "lb"),
  31464. name: "Front",
  31465. image: {
  31466. source: "./media/characters/platine/front.svg",
  31467. extra: 1741/1650,
  31468. bottom: 84/1825
  31469. }
  31470. },
  31471. side: {
  31472. height: math.unit(10, "feet"),
  31473. weight: math.unit(15015, "lb"),
  31474. name: "Side",
  31475. image: {
  31476. source: "./media/characters/platine/side.svg",
  31477. extra: 1790/1705,
  31478. bottom: 29/1819
  31479. }
  31480. },
  31481. },
  31482. [
  31483. {
  31484. name: "Normal",
  31485. height: math.unit(10, "feet"),
  31486. default: true
  31487. },
  31488. {
  31489. name: "Macro",
  31490. height: math.unit(100, "feet")
  31491. },
  31492. {
  31493. name: "Megamacro",
  31494. height: math.unit(1000, "feet")
  31495. },
  31496. ]
  31497. ))
  31498. characterMakers.push(() => makeCharacter(
  31499. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31500. {
  31501. front: {
  31502. height: math.unit(15 + 5 / 12, "feet"),
  31503. weight: math.unit(4600, "lb"),
  31504. name: "Front",
  31505. image: {
  31506. source: "./media/characters/neapolitan-ananassa/front.svg",
  31507. extra: 2903 / 2736,
  31508. bottom: 0 / 2903
  31509. }
  31510. },
  31511. side: {
  31512. height: math.unit(15 + 5 / 12, "feet"),
  31513. weight: math.unit(4600, "lb"),
  31514. name: "Side",
  31515. image: {
  31516. source: "./media/characters/neapolitan-ananassa/side.svg",
  31517. extra: 2925 / 2719,
  31518. bottom: 0 / 2925
  31519. }
  31520. },
  31521. back: {
  31522. height: math.unit(15 + 5 / 12, "feet"),
  31523. weight: math.unit(4600, "lb"),
  31524. name: "Back",
  31525. image: {
  31526. source: "./media/characters/neapolitan-ananassa/back.svg",
  31527. extra: 2903 / 2736,
  31528. bottom: 0 / 2903
  31529. }
  31530. },
  31531. },
  31532. [
  31533. {
  31534. name: "Normal",
  31535. height: math.unit(15 + 5 / 12, "feet"),
  31536. default: true
  31537. },
  31538. {
  31539. name: "Post-Millenium",
  31540. height: math.unit(35 + 5 / 12, "feet")
  31541. },
  31542. {
  31543. name: "Post-Era",
  31544. height: math.unit(450 + 5 / 12, "feet")
  31545. },
  31546. ]
  31547. ))
  31548. characterMakers.push(() => makeCharacter(
  31549. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31550. {
  31551. front: {
  31552. height: math.unit(300, "meters"),
  31553. weight: math.unit(125000, "tonnes"),
  31554. name: "Front",
  31555. image: {
  31556. source: "./media/characters/pazuzu/front.svg",
  31557. extra: 877 / 794,
  31558. bottom: 47 / 924
  31559. }
  31560. },
  31561. },
  31562. [
  31563. {
  31564. name: "Macro",
  31565. height: math.unit(300, "meters"),
  31566. default: true
  31567. },
  31568. ]
  31569. ))
  31570. characterMakers.push(() => makeCharacter(
  31571. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31572. {
  31573. side: {
  31574. height: math.unit(10 + 7 / 12, "feet"),
  31575. weight: math.unit(2.5, "tons"),
  31576. name: "Side",
  31577. image: {
  31578. source: "./media/characters/aasha/side.svg",
  31579. extra: 1345 / 1245,
  31580. bottom: 111 / 1456
  31581. }
  31582. },
  31583. back: {
  31584. height: math.unit(10 + 7 / 12, "feet"),
  31585. weight: math.unit(2.5, "tons"),
  31586. name: "Back",
  31587. image: {
  31588. source: "./media/characters/aasha/back.svg",
  31589. extra: 1133 / 1057,
  31590. bottom: 257 / 1390
  31591. }
  31592. },
  31593. },
  31594. [
  31595. {
  31596. name: "Normal",
  31597. height: math.unit(10 + 7 / 12, "feet"),
  31598. default: true
  31599. },
  31600. ]
  31601. ))
  31602. characterMakers.push(() => makeCharacter(
  31603. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31604. {
  31605. front: {
  31606. height: math.unit(6 + 3 / 12, "feet"),
  31607. name: "Front",
  31608. image: {
  31609. source: "./media/characters/nevan/front.svg",
  31610. extra: 704 / 704,
  31611. bottom: 28 / 732
  31612. }
  31613. },
  31614. back: {
  31615. height: math.unit(6 + 3 / 12, "feet"),
  31616. name: "Back",
  31617. image: {
  31618. source: "./media/characters/nevan/back.svg",
  31619. extra: 714 / 714,
  31620. bottom: 21 / 735
  31621. }
  31622. },
  31623. frontFlaccid: {
  31624. height: math.unit(6 + 3 / 12, "feet"),
  31625. name: "Front (Flaccid)",
  31626. image: {
  31627. source: "./media/characters/nevan/front-flaccid.svg",
  31628. extra: 704 / 704,
  31629. bottom: 28 / 732
  31630. }
  31631. },
  31632. frontErect: {
  31633. height: math.unit(6 + 3 / 12, "feet"),
  31634. name: "Front (Erect)",
  31635. image: {
  31636. source: "./media/characters/nevan/front-erect.svg",
  31637. extra: 704 / 704,
  31638. bottom: 28 / 732
  31639. }
  31640. },
  31641. backFlaccid: {
  31642. height: math.unit(6 + 3 / 12, "feet"),
  31643. name: "Back (Flaccid)",
  31644. image: {
  31645. source: "./media/characters/nevan/back-flaccid.svg",
  31646. extra: 714 / 714,
  31647. bottom: 21 / 735
  31648. }
  31649. },
  31650. },
  31651. [
  31652. {
  31653. name: "Normal",
  31654. height: math.unit(6 + 3 / 12, "feet"),
  31655. default: true
  31656. },
  31657. ]
  31658. ))
  31659. characterMakers.push(() => makeCharacter(
  31660. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31661. {
  31662. front: {
  31663. height: math.unit(4, "feet"),
  31664. name: "Front",
  31665. image: {
  31666. source: "./media/characters/arhan/front.svg",
  31667. extra: 3368 / 3133,
  31668. bottom: 0 / 3368
  31669. }
  31670. },
  31671. side: {
  31672. height: math.unit(4, "feet"),
  31673. name: "Side",
  31674. image: {
  31675. source: "./media/characters/arhan/side.svg",
  31676. extra: 3347 / 3105,
  31677. bottom: 0 / 3347
  31678. }
  31679. },
  31680. tongue: {
  31681. height: math.unit(1.42, "feet"),
  31682. name: "Tongue",
  31683. image: {
  31684. source: "./media/characters/arhan/tongue.svg"
  31685. }
  31686. },
  31687. head: {
  31688. height: math.unit(0.85, "feet"),
  31689. name: "Head",
  31690. image: {
  31691. source: "./media/characters/arhan/head.svg"
  31692. }
  31693. },
  31694. },
  31695. [
  31696. {
  31697. name: "Normal",
  31698. height: math.unit(4, "feet"),
  31699. default: true
  31700. },
  31701. ]
  31702. ))
  31703. characterMakers.push(() => makeCharacter(
  31704. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31705. {
  31706. front: {
  31707. height: math.unit(5 + 7.5 / 12, "feet"),
  31708. weight: math.unit(120, "lb"),
  31709. name: "Front",
  31710. image: {
  31711. source: "./media/characters/digi-duncan/front.svg",
  31712. extra: 330 / 326,
  31713. bottom: 16 / 346
  31714. }
  31715. },
  31716. side: {
  31717. height: math.unit(5 + 7.5 / 12, "feet"),
  31718. weight: math.unit(120, "lb"),
  31719. name: "Side",
  31720. image: {
  31721. source: "./media/characters/digi-duncan/side.svg",
  31722. extra: 341 / 337,
  31723. bottom: 1 / 342
  31724. }
  31725. },
  31726. back: {
  31727. height: math.unit(5 + 7.5 / 12, "feet"),
  31728. weight: math.unit(120, "lb"),
  31729. name: "Back",
  31730. image: {
  31731. source: "./media/characters/digi-duncan/back.svg",
  31732. extra: 330 / 326,
  31733. bottom: 12 / 342
  31734. }
  31735. },
  31736. },
  31737. [
  31738. {
  31739. name: "Speck",
  31740. height: math.unit(0.25, "mm")
  31741. },
  31742. {
  31743. name: "Micro",
  31744. height: math.unit(5, "mm")
  31745. },
  31746. {
  31747. name: "Tiny",
  31748. height: math.unit(0.5, "inches"),
  31749. default: true
  31750. },
  31751. {
  31752. name: "Human",
  31753. height: math.unit(5 + 7.5 / 12, "feet")
  31754. },
  31755. {
  31756. name: "Minigiant",
  31757. height: math.unit(8 + 5.25, "feet")
  31758. },
  31759. {
  31760. name: "Giant",
  31761. height: math.unit(2000, "feet")
  31762. },
  31763. {
  31764. name: "Mega",
  31765. height: math.unit(371.1, "miles")
  31766. },
  31767. ]
  31768. ))
  31769. characterMakers.push(() => makeCharacter(
  31770. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31771. {
  31772. front: {
  31773. height: math.unit(2, "meters"),
  31774. weight: math.unit(350, "kg"),
  31775. name: "Front",
  31776. image: {
  31777. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31778. extra: 898 / 838,
  31779. bottom: 9 / 907
  31780. }
  31781. },
  31782. },
  31783. [
  31784. {
  31785. name: "Micro",
  31786. height: math.unit(8, "meters")
  31787. },
  31788. {
  31789. name: "Normal",
  31790. height: math.unit(50, "meters"),
  31791. default: true
  31792. },
  31793. {
  31794. name: "Macro",
  31795. height: math.unit(500, "meters")
  31796. },
  31797. ]
  31798. ))
  31799. characterMakers.push(() => makeCharacter(
  31800. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31801. {
  31802. front: {
  31803. height: math.unit(6 + 6 / 12, "feet"),
  31804. name: "Front",
  31805. image: {
  31806. source: "./media/characters/khardesh/front.svg",
  31807. extra: 1788/1596,
  31808. bottom: 66/1854
  31809. }
  31810. },
  31811. back: {
  31812. height: math.unit(6 + 6 / 12, "feet"),
  31813. name: "Back",
  31814. image: {
  31815. source: "./media/characters/khardesh/back.svg",
  31816. extra: 1781/1584,
  31817. bottom: 68/1849
  31818. }
  31819. },
  31820. },
  31821. [
  31822. {
  31823. name: "Normal",
  31824. height: math.unit(6 + 6 / 12, "feet"),
  31825. default: true
  31826. },
  31827. {
  31828. name: "Normal+",
  31829. height: math.unit(4, "meters")
  31830. },
  31831. {
  31832. name: "Macro",
  31833. height: math.unit(50, "meters")
  31834. },
  31835. {
  31836. name: "Macro+",
  31837. height: math.unit(100, "meters")
  31838. },
  31839. {
  31840. name: "Megamacro",
  31841. height: math.unit(20, "km")
  31842. },
  31843. ]
  31844. ))
  31845. characterMakers.push(() => makeCharacter(
  31846. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31847. {
  31848. front: {
  31849. height: math.unit(6, "feet"),
  31850. weight: math.unit(150, "lb"),
  31851. name: "Front",
  31852. image: {
  31853. source: "./media/characters/kosho/front.svg",
  31854. extra: 1847 / 1847,
  31855. bottom: 86 / 1933
  31856. }
  31857. },
  31858. },
  31859. [
  31860. {
  31861. name: "Second-stage micro",
  31862. height: math.unit(0.5, "inches")
  31863. },
  31864. {
  31865. name: "First-stage micro",
  31866. height: math.unit(6, "inches")
  31867. },
  31868. {
  31869. name: "Normal",
  31870. height: math.unit(6, "feet"),
  31871. default: true
  31872. },
  31873. {
  31874. name: "First-stage macro",
  31875. height: math.unit(72, "feet")
  31876. },
  31877. {
  31878. name: "Second-stage macro",
  31879. height: math.unit(864, "feet")
  31880. },
  31881. ]
  31882. ))
  31883. characterMakers.push(() => makeCharacter(
  31884. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31885. {
  31886. normal: {
  31887. height: math.unit(4 + 6 / 12, "feet"),
  31888. name: "Normal",
  31889. image: {
  31890. source: "./media/characters/hydra/normal.svg",
  31891. extra: 2833 / 2634,
  31892. bottom: 68 / 2901
  31893. }
  31894. },
  31895. smol: {
  31896. height: math.unit(0.705, "inches"),
  31897. name: "Smol",
  31898. image: {
  31899. source: "./media/characters/hydra/smol.svg",
  31900. extra: 2715 / 2540,
  31901. bottom: 0 / 2715
  31902. }
  31903. },
  31904. },
  31905. [
  31906. {
  31907. name: "Normal",
  31908. height: math.unit(4 + 6 / 12, "feet"),
  31909. default: true
  31910. }
  31911. ]
  31912. ))
  31913. characterMakers.push(() => makeCharacter(
  31914. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31915. {
  31916. front: {
  31917. height: math.unit(0.6, "cm"),
  31918. name: "Front",
  31919. image: {
  31920. source: "./media/characters/daz/front.svg",
  31921. extra: 1682 / 1164,
  31922. bottom: 42 / 1724
  31923. }
  31924. },
  31925. },
  31926. [
  31927. {
  31928. name: "Normal",
  31929. height: math.unit(0.6, "cm"),
  31930. default: true
  31931. },
  31932. ]
  31933. ))
  31934. characterMakers.push(() => makeCharacter(
  31935. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31936. {
  31937. front: {
  31938. height: math.unit(6, "feet"),
  31939. weight: math.unit(235, "lb"),
  31940. name: "Front",
  31941. image: {
  31942. source: "./media/characters/theo-pangolin/front.svg",
  31943. extra: 1996 / 1969,
  31944. bottom: 115 / 2111
  31945. }
  31946. },
  31947. back: {
  31948. height: math.unit(6, "feet"),
  31949. weight: math.unit(235, "lb"),
  31950. name: "Back",
  31951. image: {
  31952. source: "./media/characters/theo-pangolin/back.svg",
  31953. extra: 1979 / 1979,
  31954. bottom: 40 / 2019
  31955. }
  31956. },
  31957. feral: {
  31958. height: math.unit(2, "feet"),
  31959. weight: math.unit(30, "lb"),
  31960. name: "Feral",
  31961. image: {
  31962. source: "./media/characters/theo-pangolin/feral.svg",
  31963. extra: 803 / 791,
  31964. bottom: 181 / 984
  31965. }
  31966. },
  31967. footFive: {
  31968. height: math.unit(1.43, "feet"),
  31969. name: "Foot (Five Toes)",
  31970. image: {
  31971. source: "./media/characters/theo-pangolin/foot-five.svg"
  31972. }
  31973. },
  31974. footFour: {
  31975. height: math.unit(1.43, "feet"),
  31976. name: "Foot (Four Toes)",
  31977. image: {
  31978. source: "./media/characters/theo-pangolin/foot-four.svg"
  31979. }
  31980. },
  31981. handFour: {
  31982. height: math.unit(0.81, "feet"),
  31983. name: "Hand (Four Fingers)",
  31984. image: {
  31985. source: "./media/characters/theo-pangolin/hand-four.svg"
  31986. }
  31987. },
  31988. handThree: {
  31989. height: math.unit(0.81, "feet"),
  31990. name: "Hand (Three Fingers)",
  31991. image: {
  31992. source: "./media/characters/theo-pangolin/hand-three.svg"
  31993. }
  31994. },
  31995. headFront: {
  31996. height: math.unit(1.37, "feet"),
  31997. name: "Head (Front)",
  31998. image: {
  31999. source: "./media/characters/theo-pangolin/head-front.svg"
  32000. }
  32001. },
  32002. headSide: {
  32003. height: math.unit(1.43, "feet"),
  32004. name: "Head (Side)",
  32005. image: {
  32006. source: "./media/characters/theo-pangolin/head-side.svg"
  32007. }
  32008. },
  32009. tongue: {
  32010. height: math.unit(2.29, "feet"),
  32011. name: "Tongue",
  32012. image: {
  32013. source: "./media/characters/theo-pangolin/tongue.svg"
  32014. }
  32015. },
  32016. },
  32017. [
  32018. {
  32019. name: "Normal",
  32020. height: math.unit(6, "feet")
  32021. },
  32022. {
  32023. name: "Macro",
  32024. height: math.unit(400, "feet"),
  32025. default: true
  32026. },
  32027. ]
  32028. ))
  32029. characterMakers.push(() => makeCharacter(
  32030. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32031. {
  32032. front: {
  32033. height: math.unit(6, "inches"),
  32034. weight: math.unit(0.036, "kg"),
  32035. name: "Front",
  32036. image: {
  32037. source: "./media/characters/renée/front.svg",
  32038. extra: 900 / 886,
  32039. bottom: 8 / 908
  32040. }
  32041. },
  32042. },
  32043. [
  32044. {
  32045. name: "Nano",
  32046. height: math.unit(1, "nm")
  32047. },
  32048. {
  32049. name: "Micro",
  32050. height: math.unit(1, "mm")
  32051. },
  32052. {
  32053. name: "Normal",
  32054. height: math.unit(6, "inches")
  32055. },
  32056. {
  32057. name: "Macro",
  32058. height: math.unit(2000, "feet"),
  32059. default: true
  32060. },
  32061. {
  32062. name: "Megamacro",
  32063. height: math.unit(2, "km")
  32064. },
  32065. {
  32066. name: "Gigamacro",
  32067. height: math.unit(2000, "km")
  32068. },
  32069. {
  32070. name: "Teramacro",
  32071. height: math.unit(250000, "km")
  32072. },
  32073. ]
  32074. ))
  32075. characterMakers.push(() => makeCharacter(
  32076. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32077. {
  32078. front: {
  32079. height: math.unit(4, "meters"),
  32080. weight: math.unit(150, "kg"),
  32081. name: "Front",
  32082. image: {
  32083. source: "./media/characters/caledvwlch/front.svg",
  32084. extra: 1757/1537,
  32085. bottom: 31/1788
  32086. }
  32087. },
  32088. side: {
  32089. height: math.unit(4, "meters"),
  32090. weight: math.unit(150, "kg"),
  32091. name: "Side",
  32092. image: {
  32093. source: "./media/characters/caledvwlch/side.svg",
  32094. extra: 1605 / 1536,
  32095. bottom: 31 / 1636
  32096. }
  32097. },
  32098. back: {
  32099. height: math.unit(4, "meters"),
  32100. weight: math.unit(150, "kg"),
  32101. name: "Back",
  32102. image: {
  32103. source: "./media/characters/caledvwlch/back.svg",
  32104. extra: 1635 / 1565,
  32105. bottom: 27 / 1662
  32106. }
  32107. },
  32108. },
  32109. [
  32110. {
  32111. name: "\"Incognito\"",
  32112. height: math.unit(4, "meters")
  32113. },
  32114. {
  32115. name: "Small rampage",
  32116. height: math.unit(600, "meters")
  32117. },
  32118. {
  32119. name: "Mega",
  32120. height: math.unit(30, "km")
  32121. },
  32122. {
  32123. name: "Home-size",
  32124. height: math.unit(50, "km"),
  32125. default: true
  32126. },
  32127. {
  32128. name: "Giga",
  32129. height: math.unit(300, "km")
  32130. },
  32131. {
  32132. name: "Lounging",
  32133. height: math.unit(11000, "km")
  32134. },
  32135. {
  32136. name: "Planet snacking",
  32137. height: math.unit(2000000, "km")
  32138. },
  32139. ]
  32140. ))
  32141. characterMakers.push(() => makeCharacter(
  32142. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32143. {
  32144. front: {
  32145. height: math.unit(6, "feet"),
  32146. weight: math.unit(215, "lb"),
  32147. name: "Front",
  32148. image: {
  32149. source: "./media/characters/sapphire-svell/front.svg",
  32150. extra: 495 / 455,
  32151. bottom: 20 / 515
  32152. }
  32153. },
  32154. back: {
  32155. height: math.unit(6, "feet"),
  32156. weight: math.unit(216, "lb"),
  32157. name: "Back",
  32158. image: {
  32159. source: "./media/characters/sapphire-svell/back.svg",
  32160. extra: 497 / 477,
  32161. bottom: 7 / 504
  32162. }
  32163. },
  32164. maw: {
  32165. height: math.unit(1.57, "feet"),
  32166. name: "Maw",
  32167. image: {
  32168. source: "./media/characters/sapphire-svell/maw.svg"
  32169. }
  32170. },
  32171. foot: {
  32172. height: math.unit(1.07, "feet"),
  32173. name: "Foot",
  32174. image: {
  32175. source: "./media/characters/sapphire-svell/foot.svg"
  32176. }
  32177. },
  32178. toering: {
  32179. height: math.unit(1.7, "inch"),
  32180. name: "Toering",
  32181. image: {
  32182. source: "./media/characters/sapphire-svell/toering.svg"
  32183. }
  32184. },
  32185. },
  32186. [
  32187. {
  32188. name: "Normal",
  32189. height: math.unit(300, "feet"),
  32190. default: true
  32191. },
  32192. {
  32193. name: "Augmented",
  32194. height: math.unit(1250, "feet")
  32195. },
  32196. {
  32197. name: "Unleashed",
  32198. height: math.unit(3000, "feet")
  32199. },
  32200. ]
  32201. ))
  32202. characterMakers.push(() => makeCharacter(
  32203. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32204. {
  32205. side: {
  32206. height: math.unit(2 + 3 / 12, "feet"),
  32207. weight: math.unit(110, "lb"),
  32208. name: "Side",
  32209. image: {
  32210. source: "./media/characters/glitch-flux/side.svg",
  32211. extra: 997 / 805,
  32212. bottom: 20 / 1017
  32213. }
  32214. },
  32215. },
  32216. [
  32217. {
  32218. name: "Normal",
  32219. height: math.unit(2 + 3 / 12, "feet"),
  32220. default: true
  32221. },
  32222. ]
  32223. ))
  32224. characterMakers.push(() => makeCharacter(
  32225. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32226. {
  32227. front: {
  32228. height: math.unit(4, "meters"),
  32229. name: "Front",
  32230. image: {
  32231. source: "./media/characters/mid/front.svg",
  32232. extra: 507 / 476,
  32233. bottom: 17 / 524
  32234. }
  32235. },
  32236. back: {
  32237. height: math.unit(4, "meters"),
  32238. name: "Back",
  32239. image: {
  32240. source: "./media/characters/mid/back.svg",
  32241. extra: 519 / 487,
  32242. bottom: 7 / 526
  32243. }
  32244. },
  32245. stuck: {
  32246. height: math.unit(2.2, "meters"),
  32247. name: "Stuck",
  32248. image: {
  32249. source: "./media/characters/mid/stuck.svg",
  32250. extra: 1951 / 1869,
  32251. bottom: 88 / 2039
  32252. }
  32253. }
  32254. },
  32255. [
  32256. {
  32257. name: "Normal",
  32258. height: math.unit(4, "meters"),
  32259. default: true
  32260. },
  32261. {
  32262. name: "Big",
  32263. height: math.unit(10, "meters")
  32264. },
  32265. {
  32266. name: "Macro",
  32267. height: math.unit(800, "meters")
  32268. },
  32269. {
  32270. name: "Megamacro",
  32271. height: math.unit(100, "km")
  32272. },
  32273. {
  32274. name: "Overgrown",
  32275. height: math.unit(1, "parsec")
  32276. },
  32277. ]
  32278. ))
  32279. characterMakers.push(() => makeCharacter(
  32280. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32281. {
  32282. front: {
  32283. height: math.unit(2.5, "meters"),
  32284. weight: math.unit(225, "kg"),
  32285. name: "Front",
  32286. image: {
  32287. source: "./media/characters/iris/front.svg",
  32288. extra: 3348 / 3251,
  32289. bottom: 205 / 3553
  32290. }
  32291. },
  32292. maw: {
  32293. height: math.unit(0.56, "meter"),
  32294. name: "Maw",
  32295. image: {
  32296. source: "./media/characters/iris/maw.svg"
  32297. }
  32298. },
  32299. },
  32300. [
  32301. {
  32302. name: "Mewter cat",
  32303. height: math.unit(1.2, "meters")
  32304. },
  32305. {
  32306. name: "Normal",
  32307. height: math.unit(2.5, "meters"),
  32308. default: true
  32309. },
  32310. {
  32311. name: "Minimacro",
  32312. height: math.unit(18, "feet")
  32313. },
  32314. {
  32315. name: "Macro",
  32316. height: math.unit(140, "feet")
  32317. },
  32318. {
  32319. name: "Macro+",
  32320. height: math.unit(180, "meters")
  32321. },
  32322. {
  32323. name: "Megamacro",
  32324. height: math.unit(2746, "meters")
  32325. },
  32326. ]
  32327. ))
  32328. characterMakers.push(() => makeCharacter(
  32329. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32330. {
  32331. front: {
  32332. height: math.unit(6, "feet"),
  32333. weight: math.unit(135, "lb"),
  32334. name: "Front",
  32335. image: {
  32336. source: "./media/characters/axel/front.svg",
  32337. extra: 908 / 908,
  32338. bottom: 58 / 966
  32339. }
  32340. },
  32341. side: {
  32342. height: math.unit(6, "feet"),
  32343. weight: math.unit(135, "lb"),
  32344. name: "Side",
  32345. image: {
  32346. source: "./media/characters/axel/side.svg",
  32347. extra: 958 / 958,
  32348. bottom: 11 / 969
  32349. }
  32350. },
  32351. back: {
  32352. height: math.unit(6, "feet"),
  32353. weight: math.unit(135, "lb"),
  32354. name: "Back",
  32355. image: {
  32356. source: "./media/characters/axel/back.svg",
  32357. extra: 887 / 887,
  32358. bottom: 34 / 921
  32359. }
  32360. },
  32361. head: {
  32362. height: math.unit(1.07, "feet"),
  32363. name: "Head",
  32364. image: {
  32365. source: "./media/characters/axel/head.svg"
  32366. }
  32367. },
  32368. beak: {
  32369. height: math.unit(1.4, "feet"),
  32370. name: "Beak",
  32371. image: {
  32372. source: "./media/characters/axel/beak.svg"
  32373. }
  32374. },
  32375. beakSide: {
  32376. height: math.unit(1.4, "feet"),
  32377. name: "Beak Side",
  32378. image: {
  32379. source: "./media/characters/axel/beak-side.svg"
  32380. }
  32381. },
  32382. sheath: {
  32383. height: math.unit(0.5, "feet"),
  32384. name: "Sheath",
  32385. image: {
  32386. source: "./media/characters/axel/sheath.svg"
  32387. }
  32388. },
  32389. dick: {
  32390. height: math.unit(0.98, "feet"),
  32391. name: "Dick",
  32392. image: {
  32393. source: "./media/characters/axel/dick.svg"
  32394. }
  32395. },
  32396. },
  32397. [
  32398. {
  32399. name: "Macro",
  32400. height: math.unit(68, "meters"),
  32401. default: true
  32402. },
  32403. ]
  32404. ))
  32405. characterMakers.push(() => makeCharacter(
  32406. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32407. {
  32408. front: {
  32409. height: math.unit(3.5, "meters"),
  32410. weight: math.unit(1200, "kg"),
  32411. name: "Front",
  32412. image: {
  32413. source: "./media/characters/joanna/front.svg",
  32414. extra: 1596 / 1488,
  32415. bottom: 29 / 1625
  32416. }
  32417. },
  32418. back: {
  32419. height: math.unit(3.5, "meters"),
  32420. weight: math.unit(1200, "kg"),
  32421. name: "Back",
  32422. image: {
  32423. source: "./media/characters/joanna/back.svg",
  32424. extra: 1594 / 1495,
  32425. bottom: 26 / 1620
  32426. }
  32427. },
  32428. frontShorts: {
  32429. height: math.unit(3.5, "meters"),
  32430. weight: math.unit(1200, "kg"),
  32431. name: "Front (Shorts)",
  32432. image: {
  32433. source: "./media/characters/joanna/front-shorts.svg",
  32434. extra: 1596 / 1488,
  32435. bottom: 29 / 1625
  32436. }
  32437. },
  32438. frontBiker: {
  32439. height: math.unit(3.5, "meters"),
  32440. weight: math.unit(1200, "kg"),
  32441. name: "Front (Biker)",
  32442. image: {
  32443. source: "./media/characters/joanna/front-biker.svg",
  32444. extra: 1596 / 1488,
  32445. bottom: 29 / 1625
  32446. }
  32447. },
  32448. backBiker: {
  32449. height: math.unit(3.5, "meters"),
  32450. weight: math.unit(1200, "kg"),
  32451. name: "Back (Biker)",
  32452. image: {
  32453. source: "./media/characters/joanna/back-biker.svg",
  32454. extra: 1594 / 1495,
  32455. bottom: 88 / 1682
  32456. }
  32457. },
  32458. bikeLeft: {
  32459. height: math.unit(2.4, "meters"),
  32460. weight: math.unit(1600, "kg"),
  32461. name: "Bike (Left)",
  32462. image: {
  32463. source: "./media/characters/joanna/bike-left.svg",
  32464. extra: 720 / 720,
  32465. bottom: 8 / 728
  32466. }
  32467. },
  32468. bikeRight: {
  32469. height: math.unit(2.4, "meters"),
  32470. weight: math.unit(1600, "kg"),
  32471. name: "Bike (Right)",
  32472. image: {
  32473. source: "./media/characters/joanna/bike-right.svg",
  32474. extra: 720 / 720,
  32475. bottom: 8 / 728
  32476. }
  32477. },
  32478. },
  32479. [
  32480. {
  32481. name: "Incognito",
  32482. height: math.unit(3.5, "meters")
  32483. },
  32484. {
  32485. name: "Casual Big",
  32486. height: math.unit(200, "meters")
  32487. },
  32488. {
  32489. name: "Macro",
  32490. height: math.unit(600, "meters")
  32491. },
  32492. {
  32493. name: "Original",
  32494. height: math.unit(20, "km"),
  32495. default: true
  32496. },
  32497. {
  32498. name: "Giga",
  32499. height: math.unit(400, "km")
  32500. },
  32501. {
  32502. name: "Lounging",
  32503. height: math.unit(1500, "km")
  32504. },
  32505. {
  32506. name: "Planetary",
  32507. height: math.unit(200000, "km")
  32508. },
  32509. ]
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32513. {
  32514. front: {
  32515. height: math.unit(6, "feet"),
  32516. weight: math.unit(150, "lb"),
  32517. name: "Front",
  32518. image: {
  32519. source: "./media/characters/hugo-sigil/front.svg",
  32520. extra: 522 / 500,
  32521. bottom: 2 / 524
  32522. }
  32523. },
  32524. back: {
  32525. height: math.unit(6, "feet"),
  32526. weight: math.unit(150, "lb"),
  32527. name: "Back",
  32528. image: {
  32529. source: "./media/characters/hugo-sigil/back.svg",
  32530. extra: 519 / 495,
  32531. bottom: 5 / 524
  32532. }
  32533. },
  32534. maw: {
  32535. height: math.unit(1.4, "feet"),
  32536. weight: math.unit(150, "lb"),
  32537. name: "Maw",
  32538. image: {
  32539. source: "./media/characters/hugo-sigil/maw.svg"
  32540. }
  32541. },
  32542. feet: {
  32543. height: math.unit(1.56, "feet"),
  32544. weight: math.unit(150, "lb"),
  32545. name: "Feet",
  32546. image: {
  32547. source: "./media/characters/hugo-sigil/feet.svg",
  32548. extra: 177 / 177,
  32549. bottom: 12 / 189
  32550. }
  32551. },
  32552. },
  32553. [
  32554. {
  32555. name: "Normal",
  32556. height: math.unit(6, "feet")
  32557. },
  32558. {
  32559. name: "Macro",
  32560. height: math.unit(200, "feet"),
  32561. default: true
  32562. },
  32563. ]
  32564. ))
  32565. characterMakers.push(() => makeCharacter(
  32566. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32567. {
  32568. front: {
  32569. height: math.unit(6, "feet"),
  32570. weight: math.unit(150, "lb"),
  32571. name: "Front",
  32572. image: {
  32573. source: "./media/characters/peri/front.svg",
  32574. extra: 2354 / 2233,
  32575. bottom: 49 / 2403
  32576. }
  32577. },
  32578. },
  32579. [
  32580. {
  32581. name: "Really Small",
  32582. height: math.unit(1, "nm")
  32583. },
  32584. {
  32585. name: "Micro",
  32586. height: math.unit(4, "inches")
  32587. },
  32588. {
  32589. name: "Normal",
  32590. height: math.unit(7, "inches"),
  32591. default: true
  32592. },
  32593. {
  32594. name: "Macro",
  32595. height: math.unit(400, "feet")
  32596. },
  32597. {
  32598. name: "Megamacro",
  32599. height: math.unit(100, "miles")
  32600. },
  32601. ]
  32602. ))
  32603. characterMakers.push(() => makeCharacter(
  32604. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32605. {
  32606. frontSlim: {
  32607. height: math.unit(7, "feet"),
  32608. name: "Front (Slim)",
  32609. image: {
  32610. source: "./media/characters/issilora/front-slim.svg",
  32611. extra: 529 / 449,
  32612. bottom: 53 / 582
  32613. }
  32614. },
  32615. sideSlim: {
  32616. height: math.unit(7, "feet"),
  32617. name: "Side (Slim)",
  32618. image: {
  32619. source: "./media/characters/issilora/side-slim.svg",
  32620. extra: 570 / 480,
  32621. bottom: 30 / 600
  32622. }
  32623. },
  32624. backSlim: {
  32625. height: math.unit(7, "feet"),
  32626. name: "Back (Slim)",
  32627. image: {
  32628. source: "./media/characters/issilora/back-slim.svg",
  32629. extra: 537 / 455,
  32630. bottom: 46 / 583
  32631. }
  32632. },
  32633. frontBuff: {
  32634. height: math.unit(7, "feet"),
  32635. name: "Front (Buff)",
  32636. image: {
  32637. source: "./media/characters/issilora/front-buff.svg",
  32638. extra: 2310 / 2035,
  32639. bottom: 335 / 2645
  32640. }
  32641. },
  32642. head: {
  32643. height: math.unit(1.94, "feet"),
  32644. name: "Head",
  32645. image: {
  32646. source: "./media/characters/issilora/head.svg"
  32647. }
  32648. },
  32649. },
  32650. [
  32651. {
  32652. name: "Minimum",
  32653. height: math.unit(7, "feet")
  32654. },
  32655. {
  32656. name: "Comfortable",
  32657. height: math.unit(17, "feet")
  32658. },
  32659. {
  32660. name: "Fun Size",
  32661. height: math.unit(47, "feet")
  32662. },
  32663. {
  32664. name: "Natural Macro",
  32665. height: math.unit(137, "feet"),
  32666. default: true
  32667. },
  32668. {
  32669. name: "Maximum Kaiju",
  32670. height: math.unit(397, "feet")
  32671. },
  32672. ]
  32673. ))
  32674. characterMakers.push(() => makeCharacter(
  32675. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32676. {
  32677. front: {
  32678. height: math.unit(50 + 9/12, "feet"),
  32679. weight: math.unit(32.8, "tons"),
  32680. name: "Front",
  32681. image: {
  32682. source: "./media/characters/irb'iiritaahn/front.svg",
  32683. extra: 1878/1826,
  32684. bottom: 326/2204
  32685. }
  32686. },
  32687. back: {
  32688. height: math.unit(50 + 9/12, "feet"),
  32689. weight: math.unit(32.8, "tons"),
  32690. name: "Back",
  32691. image: {
  32692. source: "./media/characters/irb'iiritaahn/back.svg",
  32693. extra: 2052/2018,
  32694. bottom: 152/2204
  32695. }
  32696. },
  32697. head: {
  32698. height: math.unit(12.86, "feet"),
  32699. name: "Head",
  32700. image: {
  32701. source: "./media/characters/irb'iiritaahn/head.svg"
  32702. }
  32703. },
  32704. maw: {
  32705. height: math.unit(9.66, "feet"),
  32706. name: "Maw",
  32707. image: {
  32708. source: "./media/characters/irb'iiritaahn/maw.svg"
  32709. }
  32710. },
  32711. frontDick: {
  32712. height: math.unit(8.78461, "feet"),
  32713. name: "Front Dick",
  32714. image: {
  32715. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32716. }
  32717. },
  32718. rearDick: {
  32719. height: math.unit(8.78461, "feet"),
  32720. name: "Rear Dick",
  32721. image: {
  32722. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32723. }
  32724. },
  32725. rearDickUnfolded: {
  32726. height: math.unit(8.78, "feet"),
  32727. name: "Rear Dick (Unfolded)",
  32728. image: {
  32729. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32730. }
  32731. },
  32732. wings: {
  32733. height: math.unit(43, "feet"),
  32734. name: "Wings",
  32735. image: {
  32736. source: "./media/characters/irb'iiritaahn/wings.svg"
  32737. }
  32738. },
  32739. },
  32740. [
  32741. {
  32742. name: "Macro",
  32743. height: math.unit(50 + 9/12, "feet"),
  32744. default: true
  32745. },
  32746. ]
  32747. ))
  32748. characterMakers.push(() => makeCharacter(
  32749. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32750. {
  32751. front: {
  32752. height: math.unit(205, "cm"),
  32753. weight: math.unit(102, "kg"),
  32754. name: "Front",
  32755. image: {
  32756. source: "./media/characters/irbisgreif/front.svg",
  32757. extra: 785/706,
  32758. bottom: 13/798
  32759. }
  32760. },
  32761. back: {
  32762. height: math.unit(205, "cm"),
  32763. weight: math.unit(102, "kg"),
  32764. name: "Back",
  32765. image: {
  32766. source: "./media/characters/irbisgreif/back.svg",
  32767. extra: 713/701,
  32768. bottom: 26/739
  32769. }
  32770. },
  32771. frontDressed: {
  32772. height: math.unit(216, "cm"),
  32773. weight: math.unit(102, "kg"),
  32774. name: "Front-dressed",
  32775. image: {
  32776. source: "./media/characters/irbisgreif/front-dressed.svg",
  32777. extra: 902/776,
  32778. bottom: 14/916
  32779. }
  32780. },
  32781. sideDressed: {
  32782. height: math.unit(195, "cm"),
  32783. weight: math.unit(102, "kg"),
  32784. name: "Side-dressed",
  32785. image: {
  32786. source: "./media/characters/irbisgreif/side-dressed.svg",
  32787. extra: 788/688,
  32788. bottom: 21/809
  32789. }
  32790. },
  32791. backDressed: {
  32792. height: math.unit(216, "cm"),
  32793. weight: math.unit(102, "kg"),
  32794. name: "Back-dressed",
  32795. image: {
  32796. source: "./media/characters/irbisgreif/back-dressed.svg",
  32797. extra: 901/783,
  32798. bottom: 10/911
  32799. }
  32800. },
  32801. dick: {
  32802. height: math.unit(0.49, "feet"),
  32803. name: "Dick",
  32804. image: {
  32805. source: "./media/characters/irbisgreif/dick.svg"
  32806. }
  32807. },
  32808. wingTop: {
  32809. height: math.unit(1.93 , "feet"),
  32810. name: "Wing-top",
  32811. image: {
  32812. source: "./media/characters/irbisgreif/wing-top.svg"
  32813. }
  32814. },
  32815. wingBottom: {
  32816. height: math.unit(1.93 , "feet"),
  32817. name: "Wing-bottom",
  32818. image: {
  32819. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32820. }
  32821. },
  32822. },
  32823. [
  32824. {
  32825. name: "Normal",
  32826. height: math.unit(216, "cm"),
  32827. default: true
  32828. },
  32829. ]
  32830. ))
  32831. characterMakers.push(() => makeCharacter(
  32832. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32833. {
  32834. front: {
  32835. height: math.unit(6, "feet"),
  32836. weight: math.unit(150, "lb"),
  32837. name: "Front",
  32838. image: {
  32839. source: "./media/characters/pride/front.svg",
  32840. extra: 1299/1230,
  32841. bottom: 18/1317
  32842. }
  32843. },
  32844. },
  32845. [
  32846. {
  32847. name: "Normal",
  32848. height: math.unit(7, "feet")
  32849. },
  32850. {
  32851. name: "Mini-macro",
  32852. height: math.unit(11, "feet")
  32853. },
  32854. {
  32855. name: "Macro",
  32856. height: math.unit(15, "meters"),
  32857. default: true
  32858. },
  32859. {
  32860. name: "Macro+",
  32861. height: math.unit(40, "meters")
  32862. },
  32863. ]
  32864. ))
  32865. characterMakers.push(() => makeCharacter(
  32866. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32867. {
  32868. front: {
  32869. height: math.unit(4 + 2 / 12, "feet"),
  32870. weight: math.unit(95, "lb"),
  32871. name: "Front",
  32872. image: {
  32873. source: "./media/characters/vaelophis-nyx/front.svg",
  32874. extra: 2532/2330,
  32875. bottom: 0/2532
  32876. }
  32877. },
  32878. back: {
  32879. height: math.unit(4 + 2 / 12, "feet"),
  32880. weight: math.unit(95, "lb"),
  32881. name: "Back",
  32882. image: {
  32883. source: "./media/characters/vaelophis-nyx/back.svg",
  32884. extra: 2484/2361,
  32885. bottom: 0/2484
  32886. }
  32887. },
  32888. feralSide: {
  32889. height: math.unit(2 + 1/12, "feet"),
  32890. weight: math.unit(20, "lb"),
  32891. name: "Feral (Side)",
  32892. image: {
  32893. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32894. extra: 1721/1581,
  32895. bottom: 70/1791
  32896. }
  32897. },
  32898. feralLazing: {
  32899. height: math.unit(1.08, "feet"),
  32900. weight: math.unit(20, "lb"),
  32901. name: "Feral (Lazing)",
  32902. image: {
  32903. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32904. extra: 822/822,
  32905. bottom: 248/1070
  32906. }
  32907. },
  32908. ear: {
  32909. height: math.unit(0.416, "feet"),
  32910. name: "Ear",
  32911. image: {
  32912. source: "./media/characters/vaelophis-nyx/ear.svg"
  32913. }
  32914. },
  32915. eye: {
  32916. height: math.unit(0.0748, "feet"),
  32917. name: "Eye",
  32918. image: {
  32919. source: "./media/characters/vaelophis-nyx/eye.svg"
  32920. }
  32921. },
  32922. mouth: {
  32923. height: math.unit(0.378, "feet"),
  32924. name: "Mouth",
  32925. image: {
  32926. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32927. }
  32928. },
  32929. spade: {
  32930. height: math.unit(0.55, "feet"),
  32931. name: "Spade",
  32932. image: {
  32933. source: "./media/characters/vaelophis-nyx/spade.svg"
  32934. }
  32935. },
  32936. },
  32937. [
  32938. {
  32939. name: "Normal",
  32940. height: math.unit(4 + 2/12, "feet"),
  32941. default: true
  32942. },
  32943. ]
  32944. ))
  32945. characterMakers.push(() => makeCharacter(
  32946. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32947. {
  32948. front: {
  32949. height: math.unit(7, "feet"),
  32950. weight: math.unit(231, "lb"),
  32951. name: "Front",
  32952. image: {
  32953. source: "./media/characters/flux/front.svg",
  32954. extra: 919/871,
  32955. bottom: 0/919
  32956. }
  32957. },
  32958. back: {
  32959. height: math.unit(7, "feet"),
  32960. weight: math.unit(231, "lb"),
  32961. name: "Back",
  32962. image: {
  32963. source: "./media/characters/flux/back.svg",
  32964. extra: 1040/992,
  32965. bottom: 0/1040
  32966. }
  32967. },
  32968. frontDressed: {
  32969. height: math.unit(7, "feet"),
  32970. weight: math.unit(231, "lb"),
  32971. name: "Front (Dressed)",
  32972. image: {
  32973. source: "./media/characters/flux/front-dressed.svg",
  32974. extra: 919/871,
  32975. bottom: 0/919
  32976. }
  32977. },
  32978. feralSide: {
  32979. height: math.unit(5, "feet"),
  32980. weight: math.unit(150, "lb"),
  32981. name: "Feral (Side)",
  32982. image: {
  32983. source: "./media/characters/flux/feral-side.svg",
  32984. extra: 598/528,
  32985. bottom: 28/626
  32986. }
  32987. },
  32988. head: {
  32989. height: math.unit(1.585, "feet"),
  32990. name: "Head",
  32991. image: {
  32992. source: "./media/characters/flux/head.svg"
  32993. }
  32994. },
  32995. headSide: {
  32996. height: math.unit(1.74, "feet"),
  32997. name: "Head (Side)",
  32998. image: {
  32999. source: "./media/characters/flux/head-side.svg"
  33000. }
  33001. },
  33002. headSideFire: {
  33003. height: math.unit(1.76, "feet"),
  33004. name: "Head (Side, Fire)",
  33005. image: {
  33006. source: "./media/characters/flux/head-side-fire.svg"
  33007. }
  33008. },
  33009. },
  33010. [
  33011. {
  33012. name: "Normal",
  33013. height: math.unit(7, "feet"),
  33014. default: true
  33015. },
  33016. ]
  33017. ))
  33018. characterMakers.push(() => makeCharacter(
  33019. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33020. {
  33021. front: {
  33022. height: math.unit(9, "feet"),
  33023. weight: math.unit(1012, "lb"),
  33024. name: "Front",
  33025. image: {
  33026. source: "./media/characters/ulfra-lupae/front.svg",
  33027. extra: 1083/1011,
  33028. bottom: 67/1150
  33029. }
  33030. },
  33031. },
  33032. [
  33033. {
  33034. name: "Micro",
  33035. height: math.unit(6, "inches")
  33036. },
  33037. {
  33038. name: "Socializing",
  33039. height: math.unit(6 + 5/12, "feet")
  33040. },
  33041. {
  33042. name: "Normal",
  33043. height: math.unit(9, "feet"),
  33044. default: true
  33045. },
  33046. {
  33047. name: "Macro",
  33048. height: math.unit(150, "feet")
  33049. },
  33050. ]
  33051. ))
  33052. characterMakers.push(() => makeCharacter(
  33053. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33054. {
  33055. front: {
  33056. height: math.unit(5 + 2/12, "feet"),
  33057. weight: math.unit(120, "lb"),
  33058. name: "Front",
  33059. image: {
  33060. source: "./media/characters/timber/front.svg",
  33061. extra: 2814/2705,
  33062. bottom: 181/2995
  33063. }
  33064. },
  33065. },
  33066. [
  33067. {
  33068. name: "Normal",
  33069. height: math.unit(5 + 2/12, "feet"),
  33070. default: true
  33071. },
  33072. ]
  33073. ))
  33074. characterMakers.push(() => makeCharacter(
  33075. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33076. {
  33077. front: {
  33078. height: math.unit(9, "feet"),
  33079. name: "Front",
  33080. image: {
  33081. source: "./media/characters/nicki/front.svg",
  33082. extra: 1240/990,
  33083. bottom: 45/1285
  33084. },
  33085. form: "anthro",
  33086. default: true
  33087. },
  33088. side: {
  33089. height: math.unit(9, "feet"),
  33090. name: "Side",
  33091. image: {
  33092. source: "./media/characters/nicki/side.svg",
  33093. extra: 1047/973,
  33094. bottom: 61/1108
  33095. },
  33096. form: "anthro"
  33097. },
  33098. back: {
  33099. height: math.unit(9, "feet"),
  33100. name: "Back",
  33101. image: {
  33102. source: "./media/characters/nicki/back.svg",
  33103. extra: 1006/965,
  33104. bottom: 39/1045
  33105. },
  33106. form: "anthro"
  33107. },
  33108. taur: {
  33109. height: math.unit(15, "feet"),
  33110. name: "Taur",
  33111. image: {
  33112. source: "./media/characters/nicki/taur.svg",
  33113. extra: 1592/1347,
  33114. bottom: 0/1592
  33115. },
  33116. form: "taur",
  33117. default: true
  33118. },
  33119. },
  33120. [
  33121. {
  33122. name: "Normal",
  33123. height: math.unit(9, "feet"),
  33124. form: "anthro",
  33125. default: true
  33126. },
  33127. {
  33128. name: "Normal",
  33129. height: math.unit(15, "feet"),
  33130. form: "taur",
  33131. default: true
  33132. }
  33133. ],
  33134. {
  33135. "anthro": {
  33136. name: "Anthro",
  33137. default: true
  33138. },
  33139. "taur": {
  33140. name: "Taur"
  33141. }
  33142. }
  33143. ))
  33144. characterMakers.push(() => makeCharacter(
  33145. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33146. {
  33147. front: {
  33148. height: math.unit(7 + 10/12, "feet"),
  33149. weight: math.unit(3.5, "tons"),
  33150. name: "Front",
  33151. image: {
  33152. source: "./media/characters/lee/front.svg",
  33153. extra: 1773/1615,
  33154. bottom: 86/1859
  33155. }
  33156. },
  33157. hand: {
  33158. height: math.unit(1.78, "feet"),
  33159. name: "Hand",
  33160. image: {
  33161. source: "./media/characters/lee/hand.svg"
  33162. }
  33163. },
  33164. maw: {
  33165. height: math.unit(1.18, "feet"),
  33166. name: "Maw",
  33167. image: {
  33168. source: "./media/characters/lee/maw.svg"
  33169. }
  33170. },
  33171. },
  33172. [
  33173. {
  33174. name: "Normal",
  33175. height: math.unit(7 + 10/12, "feet"),
  33176. default: true
  33177. },
  33178. ]
  33179. ))
  33180. characterMakers.push(() => makeCharacter(
  33181. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33182. {
  33183. front: {
  33184. height: math.unit(9, "feet"),
  33185. name: "Front",
  33186. image: {
  33187. source: "./media/characters/guti/front.svg",
  33188. extra: 4551/4355,
  33189. bottom: 123/4674
  33190. }
  33191. },
  33192. tongue: {
  33193. height: math.unit(1, "feet"),
  33194. name: "Tongue",
  33195. image: {
  33196. source: "./media/characters/guti/tongue.svg"
  33197. }
  33198. },
  33199. paw: {
  33200. height: math.unit(1.18, "feet"),
  33201. name: "Paw",
  33202. image: {
  33203. source: "./media/characters/guti/paw.svg"
  33204. }
  33205. },
  33206. },
  33207. [
  33208. {
  33209. name: "Normal",
  33210. height: math.unit(9, "feet"),
  33211. default: true
  33212. },
  33213. ]
  33214. ))
  33215. characterMakers.push(() => makeCharacter(
  33216. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33217. {
  33218. side: {
  33219. height: math.unit(5, "meters"),
  33220. name: "Side",
  33221. image: {
  33222. source: "./media/characters/vesper/side.svg",
  33223. extra: 1605/1518,
  33224. bottom: 0/1605
  33225. }
  33226. },
  33227. },
  33228. [
  33229. {
  33230. name: "Small",
  33231. height: math.unit(5, "meters")
  33232. },
  33233. {
  33234. name: "Sage",
  33235. height: math.unit(100, "meters"),
  33236. default: true
  33237. },
  33238. {
  33239. name: "Fun Size",
  33240. height: math.unit(600, "meters")
  33241. },
  33242. {
  33243. name: "Goddess",
  33244. height: math.unit(20000, "km")
  33245. },
  33246. {
  33247. name: "Maximum",
  33248. height: math.unit(5, "galaxies")
  33249. },
  33250. ]
  33251. ))
  33252. characterMakers.push(() => makeCharacter(
  33253. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33254. {
  33255. front: {
  33256. height: math.unit(6 + 3/12, "feet"),
  33257. weight: math.unit(190, "lb"),
  33258. name: "Front",
  33259. image: {
  33260. source: "./media/characters/gawain/front.svg",
  33261. extra: 2222/2139,
  33262. bottom: 90/2312
  33263. }
  33264. },
  33265. back: {
  33266. height: math.unit(6 + 3/12, "feet"),
  33267. weight: math.unit(190, "lb"),
  33268. name: "Back",
  33269. image: {
  33270. source: "./media/characters/gawain/back.svg",
  33271. extra: 2199/2111,
  33272. bottom: 73/2272
  33273. }
  33274. },
  33275. },
  33276. [
  33277. {
  33278. name: "Normal",
  33279. height: math.unit(6 + 3/12, "feet"),
  33280. default: true
  33281. },
  33282. ]
  33283. ))
  33284. characterMakers.push(() => makeCharacter(
  33285. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33286. {
  33287. side: {
  33288. height: math.unit(3.5, "meters"),
  33289. weight: math.unit(16000, "lb"),
  33290. name: "Side",
  33291. image: {
  33292. source: "./media/characters/dascalti/side.svg",
  33293. extra: 392/273,
  33294. bottom: 47/439
  33295. }
  33296. },
  33297. breath: {
  33298. height: math.unit(7.4, "feet"),
  33299. name: "Breath",
  33300. image: {
  33301. source: "./media/characters/dascalti/breath.svg"
  33302. }
  33303. },
  33304. fed: {
  33305. height: math.unit(3.6, "meters"),
  33306. weight: math.unit(16000, "lb"),
  33307. name: "Fed",
  33308. image: {
  33309. source: "./media/characters/dascalti/fed.svg",
  33310. extra: 1419/820,
  33311. bottom: 95/1514
  33312. }
  33313. },
  33314. },
  33315. [
  33316. {
  33317. name: "Normal",
  33318. height: math.unit(3.5, "meters"),
  33319. default: true
  33320. },
  33321. ]
  33322. ))
  33323. characterMakers.push(() => makeCharacter(
  33324. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33325. {
  33326. front: {
  33327. height: math.unit(3 + 5/12, "feet"),
  33328. name: "Front",
  33329. image: {
  33330. source: "./media/characters/mauve/front.svg",
  33331. extra: 1126/1033,
  33332. bottom: 65/1191
  33333. }
  33334. },
  33335. side: {
  33336. height: math.unit(3 + 5/12, "feet"),
  33337. name: "Side",
  33338. image: {
  33339. source: "./media/characters/mauve/side.svg",
  33340. extra: 1089/1001,
  33341. bottom: 29/1118
  33342. }
  33343. },
  33344. back: {
  33345. height: math.unit(3 + 5/12, "feet"),
  33346. name: "Back",
  33347. image: {
  33348. source: "./media/characters/mauve/back.svg",
  33349. extra: 1173/1053,
  33350. bottom: 109/1282
  33351. }
  33352. },
  33353. },
  33354. [
  33355. {
  33356. name: "Normal",
  33357. height: math.unit(3 + 5/12, "feet"),
  33358. default: true
  33359. },
  33360. ]
  33361. ))
  33362. characterMakers.push(() => makeCharacter(
  33363. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33364. {
  33365. front: {
  33366. height: math.unit(6 + 3/12, "feet"),
  33367. weight: math.unit(430, "lb"),
  33368. name: "Front",
  33369. image: {
  33370. source: "./media/characters/carlos/front.svg",
  33371. extra: 1964/1913,
  33372. bottom: 70/2034
  33373. }
  33374. },
  33375. },
  33376. [
  33377. {
  33378. name: "Normal",
  33379. height: math.unit(6 + 3/12, "feet"),
  33380. default: true
  33381. },
  33382. ]
  33383. ))
  33384. characterMakers.push(() => makeCharacter(
  33385. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33386. {
  33387. back: {
  33388. height: math.unit(5 + 10/12, "feet"),
  33389. weight: math.unit(200, "lb"),
  33390. name: "Back",
  33391. image: {
  33392. source: "./media/characters/jax/back.svg",
  33393. extra: 764/739,
  33394. bottom: 25/789
  33395. }
  33396. },
  33397. },
  33398. [
  33399. {
  33400. name: "Normal",
  33401. height: math.unit(5 + 10/12, "feet"),
  33402. default: true
  33403. },
  33404. ]
  33405. ))
  33406. characterMakers.push(() => makeCharacter(
  33407. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33408. {
  33409. front: {
  33410. height: math.unit(8, "feet"),
  33411. weight: math.unit(250, "lb"),
  33412. name: "Front",
  33413. image: {
  33414. source: "./media/characters/eikthynir/front.svg",
  33415. extra: 1332/1166,
  33416. bottom: 82/1414
  33417. }
  33418. },
  33419. back: {
  33420. height: math.unit(8, "feet"),
  33421. weight: math.unit(250, "lb"),
  33422. name: "Back",
  33423. image: {
  33424. source: "./media/characters/eikthynir/back.svg",
  33425. extra: 1342/1190,
  33426. bottom: 19/1361
  33427. }
  33428. },
  33429. dick: {
  33430. height: math.unit(2.35, "feet"),
  33431. name: "Dick",
  33432. image: {
  33433. source: "./media/characters/eikthynir/dick.svg"
  33434. }
  33435. },
  33436. },
  33437. [
  33438. {
  33439. name: "Normal",
  33440. height: math.unit(8, "feet"),
  33441. default: true
  33442. },
  33443. ]
  33444. ))
  33445. characterMakers.push(() => makeCharacter(
  33446. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33447. {
  33448. front: {
  33449. height: math.unit(99, "meters"),
  33450. weight: math.unit(13000, "tons"),
  33451. name: "Front",
  33452. image: {
  33453. source: "./media/characters/zlmos/front.svg",
  33454. extra: 2202/1992,
  33455. bottom: 315/2517
  33456. }
  33457. },
  33458. },
  33459. [
  33460. {
  33461. name: "Macro",
  33462. height: math.unit(99, "meters"),
  33463. default: true
  33464. },
  33465. ]
  33466. ))
  33467. characterMakers.push(() => makeCharacter(
  33468. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33469. {
  33470. front: {
  33471. height: math.unit(6 + 5/12, "feet"),
  33472. name: "Front",
  33473. image: {
  33474. source: "./media/characters/purri/front.svg",
  33475. extra: 1698/1610,
  33476. bottom: 32/1730
  33477. }
  33478. },
  33479. frontAlt: {
  33480. height: math.unit(6 + 5/12, "feet"),
  33481. name: "Front (Alt)",
  33482. image: {
  33483. source: "./media/characters/purri/front-alt.svg",
  33484. extra: 450/420,
  33485. bottom: 26/476
  33486. }
  33487. },
  33488. boots: {
  33489. height: math.unit(5.5, "feet"),
  33490. name: "Boots",
  33491. image: {
  33492. source: "./media/characters/purri/boots.svg",
  33493. extra: 905/853,
  33494. bottom: 18/923
  33495. }
  33496. },
  33497. lying: {
  33498. height: math.unit(2, "feet"),
  33499. name: "Lying",
  33500. image: {
  33501. source: "./media/characters/purri/lying.svg",
  33502. extra: 940/843,
  33503. bottom: 146/1086
  33504. }
  33505. },
  33506. devious: {
  33507. height: math.unit(1.77, "feet"),
  33508. name: "Devious",
  33509. image: {
  33510. source: "./media/characters/purri/devious.svg",
  33511. extra: 1440/1155,
  33512. bottom: 147/1587
  33513. }
  33514. },
  33515. bean: {
  33516. height: math.unit(1.94, "feet"),
  33517. name: "Bean",
  33518. image: {
  33519. source: "./media/characters/purri/bean.svg"
  33520. }
  33521. },
  33522. },
  33523. [
  33524. {
  33525. name: "Micro",
  33526. height: math.unit(1, "mm")
  33527. },
  33528. {
  33529. name: "Normal",
  33530. height: math.unit(6 + 5/12, "feet"),
  33531. default: true
  33532. },
  33533. {
  33534. name: "Macro :3c",
  33535. height: math.unit(2, "miles")
  33536. },
  33537. ]
  33538. ))
  33539. characterMakers.push(() => makeCharacter(
  33540. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33541. {
  33542. front: {
  33543. height: math.unit(6 + 2/12, "feet"),
  33544. weight: math.unit(250, "lb"),
  33545. name: "Front",
  33546. image: {
  33547. source: "./media/characters/moonlight/front.svg",
  33548. extra: 1044/908,
  33549. bottom: 56/1100
  33550. }
  33551. },
  33552. feral: {
  33553. height: math.unit(3 + 1/12, "feet"),
  33554. weight: math.unit(50, "kg"),
  33555. name: "Feral",
  33556. image: {
  33557. source: "./media/characters/moonlight/feral.svg",
  33558. extra: 3705/2791,
  33559. bottom: 145/3850
  33560. }
  33561. },
  33562. paw: {
  33563. height: math.unit(1, "feet"),
  33564. name: "Paw",
  33565. image: {
  33566. source: "./media/characters/moonlight/paw.svg"
  33567. }
  33568. },
  33569. paws: {
  33570. height: math.unit(0.98, "feet"),
  33571. name: "Paws",
  33572. image: {
  33573. source: "./media/characters/moonlight/paws.svg",
  33574. extra: 939/939,
  33575. bottom: 50/989
  33576. }
  33577. },
  33578. mouth: {
  33579. height: math.unit(0.48, "feet"),
  33580. name: "Mouth",
  33581. image: {
  33582. source: "./media/characters/moonlight/mouth.svg"
  33583. }
  33584. },
  33585. dick: {
  33586. height: math.unit(1.46, "feet"),
  33587. name: "Dick",
  33588. image: {
  33589. source: "./media/characters/moonlight/dick.svg"
  33590. }
  33591. },
  33592. },
  33593. [
  33594. {
  33595. name: "Normal",
  33596. height: math.unit(6 + 2/12, "feet"),
  33597. default: true
  33598. },
  33599. {
  33600. name: "Macro",
  33601. height: math.unit(300, "feet")
  33602. },
  33603. {
  33604. name: "Macro+",
  33605. height: math.unit(1, "mile")
  33606. },
  33607. {
  33608. name: "Mt. Moon",
  33609. height: math.unit(5, "miles")
  33610. },
  33611. {
  33612. name: "Megamacro",
  33613. height: math.unit(15, "miles")
  33614. },
  33615. ]
  33616. ))
  33617. characterMakers.push(() => makeCharacter(
  33618. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33619. {
  33620. back: {
  33621. height: math.unit(6, "feet"),
  33622. weight: math.unit(150, "lb"),
  33623. name: "Back",
  33624. image: {
  33625. source: "./media/characters/sylen/back.svg",
  33626. extra: 1335/1273,
  33627. bottom: 107/1442
  33628. }
  33629. },
  33630. },
  33631. [
  33632. {
  33633. name: "Normal",
  33634. height: math.unit(5 + 5/12, "feet")
  33635. },
  33636. {
  33637. name: "Megamacro",
  33638. height: math.unit(3, "miles"),
  33639. default: true
  33640. },
  33641. ]
  33642. ))
  33643. characterMakers.push(() => makeCharacter(
  33644. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33645. {
  33646. front: {
  33647. height: math.unit(6, "feet"),
  33648. weight: math.unit(190, "lb"),
  33649. name: "Front",
  33650. image: {
  33651. source: "./media/characters/huttser/front.svg",
  33652. extra: 1152/1058,
  33653. bottom: 23/1175
  33654. }
  33655. },
  33656. side: {
  33657. height: math.unit(6, "feet"),
  33658. weight: math.unit(190, "lb"),
  33659. name: "Side",
  33660. image: {
  33661. source: "./media/characters/huttser/side.svg",
  33662. extra: 1174/1065,
  33663. bottom: 18/1192
  33664. }
  33665. },
  33666. back: {
  33667. height: math.unit(6, "feet"),
  33668. weight: math.unit(190, "lb"),
  33669. name: "Back",
  33670. image: {
  33671. source: "./media/characters/huttser/back.svg",
  33672. extra: 1158/1056,
  33673. bottom: 12/1170
  33674. }
  33675. },
  33676. },
  33677. [
  33678. ]
  33679. ))
  33680. characterMakers.push(() => makeCharacter(
  33681. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33682. {
  33683. side: {
  33684. height: math.unit(12 + 9/12, "feet"),
  33685. weight: math.unit(15000, "lb"),
  33686. name: "Side",
  33687. image: {
  33688. source: "./media/characters/faan/side.svg",
  33689. extra: 2747/2697,
  33690. bottom: 0/2747
  33691. }
  33692. },
  33693. front: {
  33694. height: math.unit(12 + 9/12, "feet"),
  33695. weight: math.unit(15000, "lb"),
  33696. name: "Front",
  33697. image: {
  33698. source: "./media/characters/faan/front.svg",
  33699. extra: 607/571,
  33700. bottom: 24/631
  33701. }
  33702. },
  33703. head: {
  33704. height: math.unit(2.85, "feet"),
  33705. name: "Head",
  33706. image: {
  33707. source: "./media/characters/faan/head.svg"
  33708. }
  33709. },
  33710. headAlt: {
  33711. height: math.unit(3.13, "feet"),
  33712. name: "Head-alt",
  33713. image: {
  33714. source: "./media/characters/faan/head-alt.svg"
  33715. }
  33716. },
  33717. },
  33718. [
  33719. {
  33720. name: "Normal",
  33721. height: math.unit(12 + 9/12, "feet"),
  33722. default: true
  33723. },
  33724. ]
  33725. ))
  33726. characterMakers.push(() => makeCharacter(
  33727. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33728. {
  33729. front: {
  33730. height: math.unit(6, "feet"),
  33731. weight: math.unit(300, "lb"),
  33732. name: "Front",
  33733. image: {
  33734. source: "./media/characters/tanio/front.svg",
  33735. extra: 711/673,
  33736. bottom: 25/736
  33737. }
  33738. },
  33739. },
  33740. [
  33741. {
  33742. name: "Normal",
  33743. height: math.unit(6, "feet"),
  33744. default: true
  33745. },
  33746. ]
  33747. ))
  33748. characterMakers.push(() => makeCharacter(
  33749. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33750. {
  33751. front: {
  33752. height: math.unit(3, "inches"),
  33753. name: "Front",
  33754. image: {
  33755. source: "./media/characters/noboru/front.svg",
  33756. extra: 1039/932,
  33757. bottom: 18/1057
  33758. }
  33759. },
  33760. },
  33761. [
  33762. {
  33763. name: "Micro",
  33764. height: math.unit(3, "inches"),
  33765. default: true
  33766. },
  33767. ]
  33768. ))
  33769. characterMakers.push(() => makeCharacter(
  33770. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33771. {
  33772. front: {
  33773. height: math.unit(1.85, "meters"),
  33774. weight: math.unit(80, "kg"),
  33775. name: "Front",
  33776. image: {
  33777. source: "./media/characters/daniel-barrett/front.svg",
  33778. extra: 355/337,
  33779. bottom: 9/364
  33780. }
  33781. },
  33782. },
  33783. [
  33784. {
  33785. name: "Pico",
  33786. height: math.unit(0.0433, "mm")
  33787. },
  33788. {
  33789. name: "Nano",
  33790. height: math.unit(1.5, "mm")
  33791. },
  33792. {
  33793. name: "Micro",
  33794. height: math.unit(5.3, "cm"),
  33795. default: true
  33796. },
  33797. {
  33798. name: "Normal",
  33799. height: math.unit(1.85, "meters")
  33800. },
  33801. {
  33802. name: "Macro",
  33803. height: math.unit(64.7, "meters")
  33804. },
  33805. {
  33806. name: "Megamacro",
  33807. height: math.unit(2.26, "km")
  33808. },
  33809. {
  33810. name: "Gigamacro",
  33811. height: math.unit(79, "km")
  33812. },
  33813. {
  33814. name: "Teramacro",
  33815. height: math.unit(2765, "km")
  33816. },
  33817. {
  33818. name: "Petamacro",
  33819. height: math.unit(96678, "km")
  33820. },
  33821. ]
  33822. ))
  33823. characterMakers.push(() => makeCharacter(
  33824. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33825. {
  33826. front: {
  33827. height: math.unit(30, "meters"),
  33828. weight: math.unit(400, "tons"),
  33829. name: "Front",
  33830. image: {
  33831. source: "./media/characters/zeel/front.svg",
  33832. extra: 2599/2599,
  33833. bottom: 226/2825
  33834. }
  33835. },
  33836. },
  33837. [
  33838. {
  33839. name: "Macro",
  33840. height: math.unit(30, "meters"),
  33841. default: true
  33842. },
  33843. ]
  33844. ))
  33845. characterMakers.push(() => makeCharacter(
  33846. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33847. {
  33848. front: {
  33849. height: math.unit(6 + 7/12, "feet"),
  33850. weight: math.unit(210, "lb"),
  33851. name: "Front",
  33852. image: {
  33853. source: "./media/characters/tarn/front.svg",
  33854. extra: 3517/3220,
  33855. bottom: 91/3608
  33856. }
  33857. },
  33858. back: {
  33859. height: math.unit(6 + 7/12, "feet"),
  33860. weight: math.unit(210, "lb"),
  33861. name: "Back",
  33862. image: {
  33863. source: "./media/characters/tarn/back.svg",
  33864. extra: 3566/3241,
  33865. bottom: 34/3600
  33866. }
  33867. },
  33868. dick: {
  33869. height: math.unit(1.65, "feet"),
  33870. name: "Dick",
  33871. image: {
  33872. source: "./media/characters/tarn/dick.svg"
  33873. }
  33874. },
  33875. paw: {
  33876. height: math.unit(1.80, "feet"),
  33877. name: "Paw",
  33878. image: {
  33879. source: "./media/characters/tarn/paw.svg"
  33880. }
  33881. },
  33882. tongue: {
  33883. height: math.unit(0.97, "feet"),
  33884. name: "Tongue",
  33885. image: {
  33886. source: "./media/characters/tarn/tongue.svg"
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Micro",
  33893. height: math.unit(4, "inches")
  33894. },
  33895. {
  33896. name: "Normal",
  33897. height: math.unit(6 + 7/12, "feet"),
  33898. default: true
  33899. },
  33900. {
  33901. name: "Macro",
  33902. height: math.unit(300, "feet")
  33903. },
  33904. ]
  33905. ))
  33906. characterMakers.push(() => makeCharacter(
  33907. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33908. {
  33909. front: {
  33910. height: math.unit(5 + 7/12, "feet"),
  33911. weight: math.unit(80, "kg"),
  33912. name: "Front",
  33913. image: {
  33914. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33915. extra: 3023/2865,
  33916. bottom: 33/3056
  33917. }
  33918. },
  33919. back: {
  33920. height: math.unit(5 + 7/12, "feet"),
  33921. weight: math.unit(80, "kg"),
  33922. name: "Back",
  33923. image: {
  33924. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33925. extra: 3020/2886,
  33926. bottom: 30/3050
  33927. }
  33928. },
  33929. dick: {
  33930. height: math.unit(0.98, "feet"),
  33931. name: "Dick",
  33932. image: {
  33933. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33934. }
  33935. },
  33936. anatomy: {
  33937. height: math.unit(2.86, "feet"),
  33938. name: "Anatomy",
  33939. image: {
  33940. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33941. }
  33942. },
  33943. },
  33944. [
  33945. {
  33946. name: "Really Small",
  33947. height: math.unit(2, "inches")
  33948. },
  33949. {
  33950. name: "Micro",
  33951. height: math.unit(5.583, "inches")
  33952. },
  33953. {
  33954. name: "Normal",
  33955. height: math.unit(5 + 7/12, "feet"),
  33956. default: true
  33957. },
  33958. {
  33959. name: "Macro",
  33960. height: math.unit(67, "feet")
  33961. },
  33962. {
  33963. name: "Megamacro",
  33964. height: math.unit(134, "feet")
  33965. },
  33966. ]
  33967. ))
  33968. characterMakers.push(() => makeCharacter(
  33969. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33970. {
  33971. front: {
  33972. height: math.unit(9, "feet"),
  33973. weight: math.unit(120, "lb"),
  33974. name: "Front",
  33975. image: {
  33976. source: "./media/characters/sally/front.svg",
  33977. extra: 1506/1349,
  33978. bottom: 66/1572
  33979. }
  33980. },
  33981. },
  33982. [
  33983. {
  33984. name: "Normal",
  33985. height: math.unit(9, "feet"),
  33986. default: true
  33987. },
  33988. ]
  33989. ))
  33990. characterMakers.push(() => makeCharacter(
  33991. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33992. {
  33993. front: {
  33994. height: math.unit(8, "feet"),
  33995. weight: math.unit(900, "lb"),
  33996. name: "Front",
  33997. image: {
  33998. source: "./media/characters/owen/front.svg",
  33999. extra: 1761/1657,
  34000. bottom: 74/1835
  34001. }
  34002. },
  34003. side: {
  34004. height: math.unit(8, "feet"),
  34005. weight: math.unit(900, "lb"),
  34006. name: "Side",
  34007. image: {
  34008. source: "./media/characters/owen/side.svg",
  34009. extra: 1797/1734,
  34010. bottom: 30/1827
  34011. }
  34012. },
  34013. back: {
  34014. height: math.unit(8, "feet"),
  34015. weight: math.unit(900, "lb"),
  34016. name: "Back",
  34017. image: {
  34018. source: "./media/characters/owen/back.svg",
  34019. extra: 1796/1706,
  34020. bottom: 59/1855
  34021. }
  34022. },
  34023. maw: {
  34024. height: math.unit(1.76, "feet"),
  34025. name: "Maw",
  34026. image: {
  34027. source: "./media/characters/owen/maw.svg"
  34028. }
  34029. },
  34030. },
  34031. [
  34032. {
  34033. name: "Normal",
  34034. height: math.unit(8, "feet"),
  34035. default: true
  34036. },
  34037. ]
  34038. ))
  34039. characterMakers.push(() => makeCharacter(
  34040. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34041. {
  34042. front: {
  34043. height: math.unit(4, "feet"),
  34044. weight: math.unit(400, "lb"),
  34045. name: "Front",
  34046. image: {
  34047. source: "./media/characters/ryth/front.svg",
  34048. extra: 1920/1748,
  34049. bottom: 42/1962
  34050. }
  34051. },
  34052. back: {
  34053. height: math.unit(4, "feet"),
  34054. weight: math.unit(400, "lb"),
  34055. name: "Back",
  34056. image: {
  34057. source: "./media/characters/ryth/back.svg",
  34058. extra: 1897/1690,
  34059. bottom: 89/1986
  34060. }
  34061. },
  34062. mouth: {
  34063. height: math.unit(1.39, "feet"),
  34064. name: "Mouth",
  34065. image: {
  34066. source: "./media/characters/ryth/mouth.svg"
  34067. }
  34068. },
  34069. tailmaw: {
  34070. height: math.unit(1.23, "feet"),
  34071. name: "Tailmaw",
  34072. image: {
  34073. source: "./media/characters/ryth/tailmaw.svg"
  34074. }
  34075. },
  34076. goia: {
  34077. height: math.unit(4, "meters"),
  34078. weight: math.unit(10800, "lb"),
  34079. name: "Goia",
  34080. image: {
  34081. source: "./media/characters/ryth/goia.svg",
  34082. extra: 745/640,
  34083. bottom: 107/852
  34084. }
  34085. },
  34086. goiaFront: {
  34087. height: math.unit(4, "meters"),
  34088. weight: math.unit(10800, "lb"),
  34089. name: "Goia (Front)",
  34090. image: {
  34091. source: "./media/characters/ryth/goia-front.svg",
  34092. extra: 750/586,
  34093. bottom: 114/864
  34094. }
  34095. },
  34096. goiaMaw: {
  34097. height: math.unit(5.55, "feet"),
  34098. name: "Goia Maw",
  34099. image: {
  34100. source: "./media/characters/ryth/goia-maw.svg"
  34101. }
  34102. },
  34103. goiaForepaw: {
  34104. height: math.unit(3.5, "feet"),
  34105. name: "Goia Forepaw",
  34106. image: {
  34107. source: "./media/characters/ryth/goia-forepaw.svg"
  34108. }
  34109. },
  34110. goiaHindpaw: {
  34111. height: math.unit(5.55, "feet"),
  34112. name: "Goia Hindpaw",
  34113. image: {
  34114. source: "./media/characters/ryth/goia-hindpaw.svg"
  34115. }
  34116. },
  34117. },
  34118. [
  34119. {
  34120. name: "Normal",
  34121. height: math.unit(4, "feet"),
  34122. default: true
  34123. },
  34124. ]
  34125. ))
  34126. characterMakers.push(() => makeCharacter(
  34127. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34128. {
  34129. front: {
  34130. height: math.unit(7, "feet"),
  34131. weight: math.unit(180, "lb"),
  34132. name: "Front",
  34133. image: {
  34134. source: "./media/characters/necrolance/front.svg",
  34135. extra: 1062/947,
  34136. bottom: 41/1103
  34137. }
  34138. },
  34139. back: {
  34140. height: math.unit(7, "feet"),
  34141. weight: math.unit(180, "lb"),
  34142. name: "Back",
  34143. image: {
  34144. source: "./media/characters/necrolance/back.svg",
  34145. extra: 1045/984,
  34146. bottom: 14/1059
  34147. }
  34148. },
  34149. wing: {
  34150. height: math.unit(2.67, "feet"),
  34151. name: "Wing",
  34152. image: {
  34153. source: "./media/characters/necrolance/wing.svg"
  34154. }
  34155. },
  34156. },
  34157. [
  34158. {
  34159. name: "Normal",
  34160. height: math.unit(7, "feet"),
  34161. default: true
  34162. },
  34163. ]
  34164. ))
  34165. characterMakers.push(() => makeCharacter(
  34166. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34167. {
  34168. front: {
  34169. height: math.unit(76, "meters"),
  34170. weight: math.unit(30000, "tons"),
  34171. name: "Front",
  34172. image: {
  34173. source: "./media/characters/tyler/front.svg",
  34174. extra: 1640/1640,
  34175. bottom: 114/1754
  34176. }
  34177. },
  34178. },
  34179. [
  34180. {
  34181. name: "Macro",
  34182. height: math.unit(76, "meters"),
  34183. default: true
  34184. },
  34185. ]
  34186. ))
  34187. characterMakers.push(() => makeCharacter(
  34188. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34189. {
  34190. front: {
  34191. height: math.unit(4 + 11/12, "feet"),
  34192. weight: math.unit(132, "lb"),
  34193. name: "Front",
  34194. image: {
  34195. source: "./media/characters/icey/front.svg",
  34196. extra: 2750/2550,
  34197. bottom: 33/2783
  34198. }
  34199. },
  34200. back: {
  34201. height: math.unit(4 + 11/12, "feet"),
  34202. weight: math.unit(132, "lb"),
  34203. name: "Back",
  34204. image: {
  34205. source: "./media/characters/icey/back.svg",
  34206. extra: 2624/2481,
  34207. bottom: 35/2659
  34208. }
  34209. },
  34210. },
  34211. [
  34212. {
  34213. name: "Normal",
  34214. height: math.unit(4 + 11/12, "feet"),
  34215. default: true
  34216. },
  34217. ]
  34218. ))
  34219. characterMakers.push(() => makeCharacter(
  34220. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34221. {
  34222. front: {
  34223. height: math.unit(100, "feet"),
  34224. weight: math.unit(0, "lb"),
  34225. name: "Front",
  34226. image: {
  34227. source: "./media/characters/smile/front.svg",
  34228. extra: 2983/2912,
  34229. bottom: 162/3145
  34230. }
  34231. },
  34232. back: {
  34233. height: math.unit(100, "feet"),
  34234. weight: math.unit(0, "lb"),
  34235. name: "Back",
  34236. image: {
  34237. source: "./media/characters/smile/back.svg",
  34238. extra: 3143/3031,
  34239. bottom: 91/3234
  34240. }
  34241. },
  34242. head: {
  34243. height: math.unit(26.3, "feet"),
  34244. weight: math.unit(0, "lb"),
  34245. name: "Head",
  34246. image: {
  34247. source: "./media/characters/smile/head.svg"
  34248. }
  34249. },
  34250. collar: {
  34251. height: math.unit(5.3, "feet"),
  34252. weight: math.unit(0, "lb"),
  34253. name: "Collar",
  34254. image: {
  34255. source: "./media/characters/smile/collar.svg"
  34256. }
  34257. },
  34258. },
  34259. [
  34260. {
  34261. name: "Macro",
  34262. height: math.unit(100, "feet"),
  34263. default: true
  34264. },
  34265. ]
  34266. ))
  34267. characterMakers.push(() => makeCharacter(
  34268. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34269. {
  34270. dragon: {
  34271. height: math.unit(26, "feet"),
  34272. weight: math.unit(36, "tons"),
  34273. name: "Dragon",
  34274. image: {
  34275. source: "./media/characters/arimphae/dragon.svg",
  34276. extra: 1574/983,
  34277. bottom: 357/1931
  34278. }
  34279. },
  34280. drake: {
  34281. height: math.unit(9, "feet"),
  34282. weight: math.unit(1.5, "tons"),
  34283. name: "Drake",
  34284. image: {
  34285. source: "./media/characters/arimphae/drake.svg",
  34286. extra: 1120/925,
  34287. bottom: 435/1555
  34288. }
  34289. },
  34290. },
  34291. [
  34292. {
  34293. name: "Small",
  34294. height: math.unit(26*5/9, "feet")
  34295. },
  34296. {
  34297. name: "Normal",
  34298. height: math.unit(26, "feet"),
  34299. default: true
  34300. },
  34301. ]
  34302. ))
  34303. characterMakers.push(() => makeCharacter(
  34304. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34305. {
  34306. front: {
  34307. height: math.unit(8 + 9/12, "feet"),
  34308. name: "Front",
  34309. image: {
  34310. source: "./media/characters/xander/front.svg",
  34311. extra: 1237/974,
  34312. bottom: 94/1331
  34313. }
  34314. },
  34315. },
  34316. [
  34317. {
  34318. name: "Normal",
  34319. height: math.unit(8 + 9/12, "feet"),
  34320. default: true
  34321. },
  34322. {
  34323. name: "Gaze Grabber",
  34324. height: math.unit(13 + 8/12, "feet")
  34325. },
  34326. {
  34327. name: "Jaw Dropper",
  34328. height: math.unit(27, "feet")
  34329. },
  34330. {
  34331. name: "Show Stopper",
  34332. height: math.unit(136, "feet")
  34333. },
  34334. {
  34335. name: "Superstar",
  34336. height: math.unit(1.9e6, "miles")
  34337. },
  34338. ]
  34339. ))
  34340. characterMakers.push(() => makeCharacter(
  34341. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34342. {
  34343. side: {
  34344. height: math.unit(2100, "feet"),
  34345. name: "Side",
  34346. image: {
  34347. source: "./media/characters/osiris/side.svg",
  34348. extra: 1105/939,
  34349. bottom: 167/1272
  34350. }
  34351. },
  34352. },
  34353. [
  34354. {
  34355. name: "Macro",
  34356. height: math.unit(2100, "feet"),
  34357. default: true
  34358. },
  34359. ]
  34360. ))
  34361. characterMakers.push(() => makeCharacter(
  34362. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34363. {
  34364. front: {
  34365. height: math.unit(6 + 8/12, "feet"),
  34366. weight: math.unit(225, "lb"),
  34367. name: "Front",
  34368. image: {
  34369. source: "./media/characters/rhys-londe/front.svg",
  34370. extra: 2258/2141,
  34371. bottom: 188/2446
  34372. }
  34373. },
  34374. back: {
  34375. height: math.unit(6 + 8/12, "feet"),
  34376. weight: math.unit(225, "lb"),
  34377. name: "Back",
  34378. image: {
  34379. source: "./media/characters/rhys-londe/back.svg",
  34380. extra: 2237/2137,
  34381. bottom: 63/2300
  34382. }
  34383. },
  34384. frontNsfw: {
  34385. height: math.unit(6 + 8/12, "feet"),
  34386. weight: math.unit(225, "lb"),
  34387. name: "Front (NSFW)",
  34388. image: {
  34389. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34390. extra: 2258/2141,
  34391. bottom: 188/2446
  34392. }
  34393. },
  34394. backNsfw: {
  34395. height: math.unit(6 + 8/12, "feet"),
  34396. weight: math.unit(225, "lb"),
  34397. name: "Back (NSFW)",
  34398. image: {
  34399. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34400. extra: 2237/2137,
  34401. bottom: 63/2300
  34402. }
  34403. },
  34404. dick: {
  34405. height: math.unit(30, "inches"),
  34406. name: "Dick",
  34407. image: {
  34408. source: "./media/characters/rhys-londe/dick.svg"
  34409. }
  34410. },
  34411. maw: {
  34412. height: math.unit(1.6, "feet"),
  34413. name: "Maw",
  34414. image: {
  34415. source: "./media/characters/rhys-londe/maw.svg"
  34416. }
  34417. },
  34418. },
  34419. [
  34420. {
  34421. name: "Normal",
  34422. height: math.unit(6 + 8/12, "feet"),
  34423. default: true
  34424. },
  34425. ]
  34426. ))
  34427. characterMakers.push(() => makeCharacter(
  34428. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34429. {
  34430. front: {
  34431. height: math.unit(3 + 10/12, "feet"),
  34432. weight: math.unit(90, "lb"),
  34433. name: "Front",
  34434. image: {
  34435. source: "./media/characters/taivas-ensim/front.svg",
  34436. extra: 1327/1216,
  34437. bottom: 96/1423
  34438. }
  34439. },
  34440. back: {
  34441. height: math.unit(3 + 10/12, "feet"),
  34442. weight: math.unit(90, "lb"),
  34443. name: "Back",
  34444. image: {
  34445. source: "./media/characters/taivas-ensim/back.svg",
  34446. extra: 1355/1247,
  34447. bottom: 11/1366
  34448. }
  34449. },
  34450. frontNsfw: {
  34451. height: math.unit(3 + 10/12, "feet"),
  34452. weight: math.unit(90, "lb"),
  34453. name: "Front (NSFW)",
  34454. image: {
  34455. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34456. extra: 1327/1216,
  34457. bottom: 96/1423
  34458. }
  34459. },
  34460. backNsfw: {
  34461. height: math.unit(3 + 10/12, "feet"),
  34462. weight: math.unit(90, "lb"),
  34463. name: "Back (NSFW)",
  34464. image: {
  34465. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34466. extra: 1355/1247,
  34467. bottom: 11/1366
  34468. }
  34469. },
  34470. },
  34471. [
  34472. {
  34473. name: "Normal",
  34474. height: math.unit(3 + 10/12, "feet"),
  34475. default: true
  34476. },
  34477. ]
  34478. ))
  34479. characterMakers.push(() => makeCharacter(
  34480. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34481. {
  34482. front: {
  34483. height: math.unit(9 + 6/12, "feet"),
  34484. weight: math.unit(940, "lb"),
  34485. name: "Front",
  34486. image: {
  34487. source: "./media/characters/byliss/front.svg",
  34488. extra: 1327/1290,
  34489. bottom: 82/1409
  34490. }
  34491. },
  34492. back: {
  34493. height: math.unit(9 + 6/12, "feet"),
  34494. weight: math.unit(940, "lb"),
  34495. name: "Back",
  34496. image: {
  34497. source: "./media/characters/byliss/back.svg",
  34498. extra: 1376/1349,
  34499. bottom: 9/1385
  34500. }
  34501. },
  34502. frontNsfw: {
  34503. height: math.unit(9 + 6/12, "feet"),
  34504. weight: math.unit(940, "lb"),
  34505. name: "Front (NSFW)",
  34506. image: {
  34507. source: "./media/characters/byliss/front-nsfw.svg",
  34508. extra: 1327/1290,
  34509. bottom: 82/1409
  34510. }
  34511. },
  34512. backNsfw: {
  34513. height: math.unit(9 + 6/12, "feet"),
  34514. weight: math.unit(940, "lb"),
  34515. name: "Back (NSFW)",
  34516. image: {
  34517. source: "./media/characters/byliss/back-nsfw.svg",
  34518. extra: 1376/1349,
  34519. bottom: 9/1385
  34520. }
  34521. },
  34522. },
  34523. [
  34524. {
  34525. name: "Normal",
  34526. height: math.unit(9 + 6/12, "feet"),
  34527. default: true
  34528. },
  34529. ]
  34530. ))
  34531. characterMakers.push(() => makeCharacter(
  34532. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34533. {
  34534. front: {
  34535. height: math.unit(5 + 2/12, "feet"),
  34536. weight: math.unit(200, "lb"),
  34537. name: "Front",
  34538. image: {
  34539. source: "./media/characters/noraly/front.svg",
  34540. extra: 4985/4773,
  34541. bottom: 150/5135
  34542. }
  34543. },
  34544. full: {
  34545. height: math.unit(5 + 2/12, "feet"),
  34546. weight: math.unit(164, "lb"),
  34547. name: "Full",
  34548. image: {
  34549. source: "./media/characters/noraly/full.svg",
  34550. extra: 1114/1059,
  34551. bottom: 35/1149
  34552. }
  34553. },
  34554. fuller: {
  34555. height: math.unit(5 + 2/12, "feet"),
  34556. weight: math.unit(230, "lb"),
  34557. name: "Fuller",
  34558. image: {
  34559. source: "./media/characters/noraly/fuller.svg",
  34560. extra: 1114/1059,
  34561. bottom: 35/1149
  34562. }
  34563. },
  34564. fullest: {
  34565. height: math.unit(5 + 2/12, "feet"),
  34566. weight: math.unit(300, "lb"),
  34567. name: "Fullest",
  34568. image: {
  34569. source: "./media/characters/noraly/fullest.svg",
  34570. extra: 1114/1059,
  34571. bottom: 35/1149
  34572. }
  34573. },
  34574. },
  34575. [
  34576. {
  34577. name: "Normal",
  34578. height: math.unit(5 + 2/12, "feet"),
  34579. default: true
  34580. },
  34581. ]
  34582. ))
  34583. characterMakers.push(() => makeCharacter(
  34584. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34585. {
  34586. front: {
  34587. height: math.unit(5 + 2/12, "feet"),
  34588. weight: math.unit(210, "lb"),
  34589. name: "Front",
  34590. image: {
  34591. source: "./media/characters/pera/front.svg",
  34592. extra: 1560/1531,
  34593. bottom: 165/1725
  34594. }
  34595. },
  34596. back: {
  34597. height: math.unit(5 + 2/12, "feet"),
  34598. weight: math.unit(210, "lb"),
  34599. name: "Back",
  34600. image: {
  34601. source: "./media/characters/pera/back.svg",
  34602. extra: 1523/1493,
  34603. bottom: 152/1675
  34604. }
  34605. },
  34606. dick: {
  34607. height: math.unit(2.4, "feet"),
  34608. name: "Dick",
  34609. image: {
  34610. source: "./media/characters/pera/dick.svg"
  34611. }
  34612. },
  34613. },
  34614. [
  34615. {
  34616. name: "Normal",
  34617. height: math.unit(5 + 2/12, "feet"),
  34618. default: true
  34619. },
  34620. ]
  34621. ))
  34622. characterMakers.push(() => makeCharacter(
  34623. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34624. {
  34625. front: {
  34626. height: math.unit(12, "feet"),
  34627. weight: math.unit(3200, "lb"),
  34628. name: "Front",
  34629. image: {
  34630. source: "./media/characters/julian/front.svg",
  34631. extra: 2962/2701,
  34632. bottom: 184/3146
  34633. }
  34634. },
  34635. maw: {
  34636. height: math.unit(5.35, "feet"),
  34637. name: "Maw",
  34638. image: {
  34639. source: "./media/characters/julian/maw.svg"
  34640. }
  34641. },
  34642. paw: {
  34643. height: math.unit(3.07, "feet"),
  34644. name: "Paw",
  34645. image: {
  34646. source: "./media/characters/julian/paw.svg"
  34647. }
  34648. },
  34649. },
  34650. [
  34651. {
  34652. name: "Default",
  34653. height: math.unit(12, "feet"),
  34654. default: true
  34655. },
  34656. {
  34657. name: "Big",
  34658. height: math.unit(50, "feet")
  34659. },
  34660. {
  34661. name: "Really Big",
  34662. height: math.unit(1, "mile")
  34663. },
  34664. {
  34665. name: "Extremely Big",
  34666. height: math.unit(100, "miles")
  34667. },
  34668. {
  34669. name: "Planet Hugger",
  34670. height: math.unit(200, "megameters")
  34671. },
  34672. {
  34673. name: "Unreasonably Big",
  34674. height: math.unit(1e300, "meters")
  34675. },
  34676. ]
  34677. ))
  34678. characterMakers.push(() => makeCharacter(
  34679. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34680. {
  34681. solgooleo: {
  34682. height: math.unit(4, "meters"),
  34683. weight: math.unit(6000*1.5, "kg"),
  34684. volume: math.unit(6000, "liters"),
  34685. name: "Solgooleo",
  34686. image: {
  34687. source: "./media/characters/pi/solgooleo.svg",
  34688. extra: 388/331,
  34689. bottom: 29/417
  34690. }
  34691. },
  34692. },
  34693. [
  34694. {
  34695. name: "Normal",
  34696. height: math.unit(4, "meters"),
  34697. default: true
  34698. },
  34699. ]
  34700. ))
  34701. characterMakers.push(() => makeCharacter(
  34702. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34703. {
  34704. front: {
  34705. height: math.unit(8, "feet"),
  34706. weight: math.unit(4, "tons"),
  34707. name: "Front",
  34708. image: {
  34709. source: "./media/characters/shaun/front.svg",
  34710. extra: 503/495,
  34711. bottom: 20/523
  34712. }
  34713. },
  34714. back: {
  34715. height: math.unit(8, "feet"),
  34716. weight: math.unit(4, "tons"),
  34717. name: "Back",
  34718. image: {
  34719. source: "./media/characters/shaun/back.svg",
  34720. extra: 487/480,
  34721. bottom: 20/507
  34722. }
  34723. },
  34724. },
  34725. [
  34726. {
  34727. name: "Lorg",
  34728. height: math.unit(8, "feet"),
  34729. default: true
  34730. },
  34731. ]
  34732. ))
  34733. characterMakers.push(() => makeCharacter(
  34734. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34735. {
  34736. frontAnthro: {
  34737. height: math.unit(7, "feet"),
  34738. name: "Front",
  34739. image: {
  34740. source: "./media/characters/sini/front-anthro.svg",
  34741. extra: 726/678,
  34742. bottom: 35/761
  34743. },
  34744. form: "anthro",
  34745. default: true
  34746. },
  34747. backAnthro: {
  34748. height: math.unit(7, "feet"),
  34749. name: "Back",
  34750. image: {
  34751. source: "./media/characters/sini/back-anthro.svg",
  34752. extra: 743/701,
  34753. bottom: 12/755
  34754. },
  34755. form: "anthro",
  34756. },
  34757. frontAnthroNsfw: {
  34758. height: math.unit(7, "feet"),
  34759. name: "Front (NSFW)",
  34760. image: {
  34761. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34762. extra: 726/678,
  34763. bottom: 35/761
  34764. },
  34765. form: "anthro"
  34766. },
  34767. backAnthroNsfw: {
  34768. height: math.unit(7, "feet"),
  34769. name: "Back (NSFW)",
  34770. image: {
  34771. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34772. extra: 743/701,
  34773. bottom: 12/755
  34774. },
  34775. form: "anthro",
  34776. },
  34777. mawAnthro: {
  34778. height: math.unit(2.14, "feet"),
  34779. name: "Maw",
  34780. image: {
  34781. source: "./media/characters/sini/maw-anthro.svg"
  34782. },
  34783. form: "anthro"
  34784. },
  34785. dick: {
  34786. height: math.unit(1.45, "feet"),
  34787. name: "Dick",
  34788. image: {
  34789. source: "./media/characters/sini/dick-anthro.svg"
  34790. },
  34791. form: "anthro"
  34792. },
  34793. feral: {
  34794. height: math.unit(16, "feet"),
  34795. name: "Feral",
  34796. image: {
  34797. source: "./media/characters/sini/feral.svg",
  34798. extra: 814/605,
  34799. bottom: 11/825
  34800. },
  34801. form: "feral",
  34802. default: true
  34803. },
  34804. feralNsfw: {
  34805. height: math.unit(16, "feet"),
  34806. name: "Feral (NSFW)",
  34807. image: {
  34808. source: "./media/characters/sini/feral-nsfw.svg",
  34809. extra: 814/605,
  34810. bottom: 11/825
  34811. },
  34812. form: "feral"
  34813. },
  34814. mawFeral: {
  34815. height: math.unit(5.66, "feet"),
  34816. name: "Maw",
  34817. image: {
  34818. source: "./media/characters/sini/maw-feral.svg"
  34819. },
  34820. form: "feral",
  34821. },
  34822. pawFeral: {
  34823. height: math.unit(5.17, "feet"),
  34824. name: "Paw",
  34825. image: {
  34826. source: "./media/characters/sini/paw-feral.svg"
  34827. },
  34828. form: "feral",
  34829. },
  34830. rumpFeral: {
  34831. height: math.unit(13.11, "feet"),
  34832. name: "Rump",
  34833. image: {
  34834. source: "./media/characters/sini/rump-feral.svg"
  34835. },
  34836. form: "feral",
  34837. },
  34838. dickFeral: {
  34839. height: math.unit(1, "feet"),
  34840. name: "Dick",
  34841. image: {
  34842. source: "./media/characters/sini/dick-feral.svg"
  34843. },
  34844. form: "feral",
  34845. },
  34846. eyeFeral: {
  34847. height: math.unit(1.23, "feet"),
  34848. name: "Eye",
  34849. image: {
  34850. source: "./media/characters/sini/eye-feral.svg"
  34851. },
  34852. form: "feral",
  34853. },
  34854. },
  34855. [
  34856. {
  34857. name: "Normal",
  34858. height: math.unit(7, "feet"),
  34859. default: true,
  34860. form: "anthro"
  34861. },
  34862. {
  34863. name: "Normal",
  34864. height: math.unit(16, "feet"),
  34865. default: true,
  34866. form: "feral"
  34867. },
  34868. ],
  34869. {
  34870. "anthro": {
  34871. name: "Anthro",
  34872. default: true
  34873. },
  34874. "feral": {
  34875. name: "Feral",
  34876. }
  34877. }
  34878. ))
  34879. characterMakers.push(() => makeCharacter(
  34880. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34881. {
  34882. side: {
  34883. height: math.unit(47.2, "meters"),
  34884. weight: math.unit(10000, "tons"),
  34885. name: "Side",
  34886. image: {
  34887. source: "./media/characters/raylldo/side.svg",
  34888. extra: 2363/642,
  34889. bottom: 221/2584
  34890. }
  34891. },
  34892. top: {
  34893. height: math.unit(240, "meters"),
  34894. weight: math.unit(10000, "tons"),
  34895. name: "Top",
  34896. image: {
  34897. source: "./media/characters/raylldo/top.svg"
  34898. }
  34899. },
  34900. bottom: {
  34901. height: math.unit(240, "meters"),
  34902. weight: math.unit(10000, "tons"),
  34903. name: "Bottom",
  34904. image: {
  34905. source: "./media/characters/raylldo/bottom.svg"
  34906. }
  34907. },
  34908. head: {
  34909. height: math.unit(38.6, "meters"),
  34910. name: "Head",
  34911. image: {
  34912. source: "./media/characters/raylldo/head.svg",
  34913. extra: 1335/1112,
  34914. bottom: 0/1335
  34915. }
  34916. },
  34917. maw: {
  34918. height: math.unit(16.37, "meters"),
  34919. name: "Maw",
  34920. image: {
  34921. source: "./media/characters/raylldo/maw.svg",
  34922. extra: 883/660,
  34923. bottom: 0/883
  34924. },
  34925. extraAttributes: {
  34926. preyCapacity: {
  34927. name: "Capacity",
  34928. power: 3,
  34929. type: "volume",
  34930. base: math.unit(1000, "people")
  34931. },
  34932. tongueSize: {
  34933. name: "Tongue Size",
  34934. power: 2,
  34935. type: "area",
  34936. base: math.unit(21, "m^2")
  34937. }
  34938. }
  34939. },
  34940. forepaw: {
  34941. height: math.unit(18, "meters"),
  34942. name: "Forepaw",
  34943. image: {
  34944. source: "./media/characters/raylldo/forepaw.svg"
  34945. }
  34946. },
  34947. hindpaw: {
  34948. height: math.unit(23, "meters"),
  34949. name: "Hindpaw",
  34950. image: {
  34951. source: "./media/characters/raylldo/hindpaw.svg"
  34952. }
  34953. },
  34954. genitals: {
  34955. height: math.unit(42, "meters"),
  34956. name: "Genitals",
  34957. image: {
  34958. source: "./media/characters/raylldo/genitals.svg"
  34959. }
  34960. },
  34961. },
  34962. [
  34963. {
  34964. name: "Normal",
  34965. height: math.unit(47.2, "meters"),
  34966. default: true
  34967. },
  34968. ]
  34969. ))
  34970. characterMakers.push(() => makeCharacter(
  34971. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34972. {
  34973. anthroFront: {
  34974. height: math.unit(9, "feet"),
  34975. weight: math.unit(600, "lb"),
  34976. name: "Anthro (Front)",
  34977. image: {
  34978. source: "./media/characters/glint/anthro-front.svg",
  34979. extra: 1097/1018,
  34980. bottom: 28/1125
  34981. }
  34982. },
  34983. anthroBack: {
  34984. height: math.unit(9, "feet"),
  34985. weight: math.unit(600, "lb"),
  34986. name: "Anthro (Back)",
  34987. image: {
  34988. source: "./media/characters/glint/anthro-back.svg",
  34989. extra: 1154/997,
  34990. bottom: 36/1190
  34991. }
  34992. },
  34993. feral: {
  34994. height: math.unit(11, "feet"),
  34995. weight: math.unit(50000, "lb"),
  34996. name: "Feral",
  34997. image: {
  34998. source: "./media/characters/glint/feral.svg",
  34999. extra: 3035/1585,
  35000. bottom: 1169/4204
  35001. }
  35002. },
  35003. dickAnthro: {
  35004. height: math.unit(0.7, "meters"),
  35005. name: "Dick (Anthro)",
  35006. image: {
  35007. source: "./media/characters/glint/dick-anthro.svg"
  35008. }
  35009. },
  35010. dickFeral: {
  35011. height: math.unit(2.65, "meters"),
  35012. name: "Dick (Feral)",
  35013. image: {
  35014. source: "./media/characters/glint/dick-feral.svg"
  35015. }
  35016. },
  35017. slitHidden: {
  35018. height: math.unit(5.85, "meters"),
  35019. name: "Slit (Hidden)",
  35020. image: {
  35021. source: "./media/characters/glint/slit-hidden.svg"
  35022. }
  35023. },
  35024. slitErect: {
  35025. height: math.unit(5.85, "meters"),
  35026. name: "Slit (Erect)",
  35027. image: {
  35028. source: "./media/characters/glint/slit-erect.svg"
  35029. }
  35030. },
  35031. mawAnthro: {
  35032. height: math.unit(0.63, "meters"),
  35033. name: "Maw (Anthro)",
  35034. image: {
  35035. source: "./media/characters/glint/maw.svg"
  35036. }
  35037. },
  35038. mawFeral: {
  35039. height: math.unit(2.89, "meters"),
  35040. name: "Maw (Feral)",
  35041. image: {
  35042. source: "./media/characters/glint/maw.svg"
  35043. }
  35044. },
  35045. },
  35046. [
  35047. {
  35048. name: "Normal",
  35049. height: math.unit(9, "feet"),
  35050. default: true
  35051. },
  35052. ]
  35053. ))
  35054. characterMakers.push(() => makeCharacter(
  35055. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35056. {
  35057. side: {
  35058. height: math.unit(15, "feet"),
  35059. weight: math.unit(5000, "kg"),
  35060. name: "Side",
  35061. image: {
  35062. source: "./media/characters/kairne/side.svg",
  35063. extra: 979/811,
  35064. bottom: 13/992
  35065. }
  35066. },
  35067. front: {
  35068. height: math.unit(15, "feet"),
  35069. weight: math.unit(5000, "kg"),
  35070. name: "Front",
  35071. image: {
  35072. source: "./media/characters/kairne/front.svg",
  35073. extra: 908/814,
  35074. bottom: 26/934
  35075. }
  35076. },
  35077. sideNsfw: {
  35078. height: math.unit(15, "feet"),
  35079. weight: math.unit(5000, "kg"),
  35080. name: "Side (NSFW)",
  35081. image: {
  35082. source: "./media/characters/kairne/side-nsfw.svg",
  35083. extra: 979/811,
  35084. bottom: 13/992
  35085. }
  35086. },
  35087. frontNsfw: {
  35088. height: math.unit(15, "feet"),
  35089. weight: math.unit(5000, "kg"),
  35090. name: "Front (NSFW)",
  35091. image: {
  35092. source: "./media/characters/kairne/front-nsfw.svg",
  35093. extra: 908/814,
  35094. bottom: 26/934
  35095. }
  35096. },
  35097. dickCaged: {
  35098. height: math.unit(0.65, "meters"),
  35099. name: "Dick-caged",
  35100. image: {
  35101. source: "./media/characters/kairne/dick-caged.svg"
  35102. }
  35103. },
  35104. dick: {
  35105. height: math.unit(0.79, "meters"),
  35106. name: "Dick",
  35107. image: {
  35108. source: "./media/characters/kairne/dick.svg"
  35109. }
  35110. },
  35111. genitals: {
  35112. height: math.unit(1.29, "meters"),
  35113. name: "Genitals",
  35114. image: {
  35115. source: "./media/characters/kairne/genitals.svg"
  35116. }
  35117. },
  35118. maw: {
  35119. height: math.unit(1.73, "meters"),
  35120. name: "Maw",
  35121. image: {
  35122. source: "./media/characters/kairne/maw.svg"
  35123. }
  35124. },
  35125. },
  35126. [
  35127. {
  35128. name: "Normal",
  35129. height: math.unit(15, "feet"),
  35130. default: true
  35131. },
  35132. ]
  35133. ))
  35134. characterMakers.push(() => makeCharacter(
  35135. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35136. {
  35137. front: {
  35138. height: math.unit(5 + 8/12, "feet"),
  35139. weight: math.unit(139, "lb"),
  35140. name: "Front",
  35141. image: {
  35142. source: "./media/characters/biscuit-jackal/front.svg",
  35143. extra: 2106/1961,
  35144. bottom: 58/2164
  35145. }
  35146. },
  35147. back: {
  35148. height: math.unit(5 + 8/12, "feet"),
  35149. weight: math.unit(139, "lb"),
  35150. name: "Back",
  35151. image: {
  35152. source: "./media/characters/biscuit-jackal/back.svg",
  35153. extra: 2132/1976,
  35154. bottom: 57/2189
  35155. }
  35156. },
  35157. werejackal: {
  35158. height: math.unit(6 + 3/12, "feet"),
  35159. weight: math.unit(188, "lb"),
  35160. name: "Werejackal",
  35161. image: {
  35162. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35163. extra: 2373/2178,
  35164. bottom: 53/2426
  35165. }
  35166. },
  35167. },
  35168. [
  35169. {
  35170. name: "Normal",
  35171. height: math.unit(5 + 8/12, "feet"),
  35172. default: true
  35173. },
  35174. ]
  35175. ))
  35176. characterMakers.push(() => makeCharacter(
  35177. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35178. {
  35179. front: {
  35180. height: math.unit(140, "cm"),
  35181. weight: math.unit(45, "kg"),
  35182. name: "Front",
  35183. image: {
  35184. source: "./media/characters/tayra-white/front.svg",
  35185. extra: 2229/2192,
  35186. bottom: 75/2304
  35187. }
  35188. },
  35189. },
  35190. [
  35191. {
  35192. name: "Normal",
  35193. height: math.unit(140, "cm"),
  35194. default: true
  35195. },
  35196. ]
  35197. ))
  35198. characterMakers.push(() => makeCharacter(
  35199. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35200. {
  35201. front: {
  35202. height: math.unit(4 + 5/12, "feet"),
  35203. name: "Front",
  35204. image: {
  35205. source: "./media/characters/scoop/front.svg",
  35206. extra: 1257/1136,
  35207. bottom: 69/1326
  35208. }
  35209. },
  35210. back: {
  35211. height: math.unit(4 + 5/12, "feet"),
  35212. name: "Back",
  35213. image: {
  35214. source: "./media/characters/scoop/back.svg",
  35215. extra: 1321/1152,
  35216. bottom: 32/1353
  35217. }
  35218. },
  35219. maw: {
  35220. height: math.unit(0.68, "feet"),
  35221. name: "Maw",
  35222. image: {
  35223. source: "./media/characters/scoop/maw.svg"
  35224. }
  35225. },
  35226. },
  35227. [
  35228. {
  35229. name: "Really Small",
  35230. height: math.unit(1, "mm")
  35231. },
  35232. {
  35233. name: "Micro",
  35234. height: math.unit(1, "inch")
  35235. },
  35236. {
  35237. name: "Normal",
  35238. height: math.unit(4 + 5/12, "feet"),
  35239. default: true
  35240. },
  35241. {
  35242. name: "Macro",
  35243. height: math.unit(200, "feet")
  35244. },
  35245. {
  35246. name: "Megamacro",
  35247. height: math.unit(3240, "feet")
  35248. },
  35249. {
  35250. name: "Teramacro",
  35251. height: math.unit(2500, "miles")
  35252. },
  35253. ]
  35254. ))
  35255. characterMakers.push(() => makeCharacter(
  35256. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35257. {
  35258. front: {
  35259. height: math.unit(15 + 7/12, "feet"),
  35260. weight: math.unit(1150, "tons"),
  35261. name: "Front",
  35262. image: {
  35263. source: "./media/characters/saphinara/front.svg",
  35264. extra: 1837/1643,
  35265. bottom: 84/1921
  35266. },
  35267. form: "normal",
  35268. default: true
  35269. },
  35270. side: {
  35271. height: math.unit(15 + 7/12, "feet"),
  35272. weight: math.unit(1150, "tons"),
  35273. name: "Side",
  35274. image: {
  35275. source: "./media/characters/saphinara/side.svg",
  35276. extra: 605/547,
  35277. bottom: 6/611
  35278. },
  35279. form: "normal"
  35280. },
  35281. back: {
  35282. height: math.unit(15 + 7/12, "feet"),
  35283. weight: math.unit(1150, "tons"),
  35284. name: "Back",
  35285. image: {
  35286. source: "./media/characters/saphinara/back.svg",
  35287. extra: 591/531,
  35288. bottom: 13/604
  35289. },
  35290. form: "normal"
  35291. },
  35292. frontTail: {
  35293. height: math.unit(15 + 7/12, "feet"),
  35294. weight: math.unit(1150, "tons"),
  35295. name: "Front (Full Tail)",
  35296. image: {
  35297. source: "./media/characters/saphinara/front-tail.svg",
  35298. extra: 2256/1630,
  35299. bottom: 261/2517
  35300. },
  35301. form: "normal"
  35302. },
  35303. insides: {
  35304. height: math.unit(11.92, "feet"),
  35305. name: "Insides",
  35306. image: {
  35307. source: "./media/characters/saphinara/insides.svg"
  35308. },
  35309. form: "normal"
  35310. },
  35311. head: {
  35312. height: math.unit(4.17, "feet"),
  35313. name: "Head",
  35314. image: {
  35315. source: "./media/characters/saphinara/head.svg"
  35316. },
  35317. form: "normal"
  35318. },
  35319. tongue: {
  35320. height: math.unit(4.60, "feet"),
  35321. name: "Tongue",
  35322. image: {
  35323. source: "./media/characters/saphinara/tongue.svg"
  35324. },
  35325. form: "normal"
  35326. },
  35327. headEnraged: {
  35328. height: math.unit(5.55, "feet"),
  35329. name: "Head (Enraged)",
  35330. image: {
  35331. source: "./media/characters/saphinara/head-enraged.svg"
  35332. },
  35333. form: "normal"
  35334. },
  35335. wings: {
  35336. height: math.unit(11.95, "feet"),
  35337. name: "Wings",
  35338. image: {
  35339. source: "./media/characters/saphinara/wings.svg"
  35340. },
  35341. form: "normal"
  35342. },
  35343. feathers: {
  35344. height: math.unit(8.92, "feet"),
  35345. name: "Feathers",
  35346. image: {
  35347. source: "./media/characters/saphinara/feathers.svg"
  35348. },
  35349. form: "normal"
  35350. },
  35351. shackles: {
  35352. height: math.unit(2, "feet"),
  35353. name: "Shackles",
  35354. image: {
  35355. source: "./media/characters/saphinara/shackles.svg"
  35356. },
  35357. form: "normal"
  35358. },
  35359. eyes: {
  35360. height: math.unit(1.331, "feet"),
  35361. name: "Eyes",
  35362. image: {
  35363. source: "./media/characters/saphinara/eyes.svg"
  35364. },
  35365. form: "normal"
  35366. },
  35367. eyesEnraged: {
  35368. height: math.unit(1.331, "feet"),
  35369. name: "Eyes (Enraged)",
  35370. image: {
  35371. source: "./media/characters/saphinara/eyes-enraged.svg"
  35372. },
  35373. form: "normal"
  35374. },
  35375. trueFormSide: {
  35376. height: math.unit(200, "feet"),
  35377. weight: math.unit(1e7, "tons"),
  35378. name: "Side",
  35379. image: {
  35380. source: "./media/characters/saphinara/true-form-side.svg",
  35381. extra: 1399/770,
  35382. bottom: 97/1496
  35383. },
  35384. form: "true-form",
  35385. default: true
  35386. },
  35387. trueFormMaw: {
  35388. height: math.unit(71.5, "feet"),
  35389. name: "Maw",
  35390. image: {
  35391. source: "./media/characters/saphinara/true-form-maw.svg",
  35392. extra: 2302/1453,
  35393. bottom: 0/2302
  35394. },
  35395. form: "true-form"
  35396. },
  35397. meowberusSide: {
  35398. height: math.unit(75, "feet"),
  35399. weight: math.unit(180000, "kg"),
  35400. preyCapacity: math.unit(50000, "people"),
  35401. name: "Side",
  35402. image: {
  35403. source: "./media/characters/saphinara/meowberus-side.svg",
  35404. extra: 1400/711,
  35405. bottom: 126/1526
  35406. },
  35407. form: "meowberus",
  35408. extraAttributes: {
  35409. "pawArea": {
  35410. name: "Paw Size",
  35411. power: 2,
  35412. type: "area",
  35413. base: math.unit(35, "m^2")
  35414. }
  35415. }
  35416. },
  35417. },
  35418. [
  35419. {
  35420. name: "Normal",
  35421. height: math.unit(15 + 7/12, "feet"),
  35422. default: true,
  35423. form: "normal"
  35424. },
  35425. {
  35426. name: "Angry",
  35427. height: math.unit(30 + 6/12, "feet"),
  35428. form: "normal"
  35429. },
  35430. {
  35431. name: "Enraged",
  35432. height: math.unit(102 + 1/12, "feet"),
  35433. form: "normal"
  35434. },
  35435. {
  35436. name: "True",
  35437. height: math.unit(200, "feet"),
  35438. default: true,
  35439. form: "true-form"
  35440. },
  35441. {
  35442. name: "Normal",
  35443. height: math.unit(75, "feet"),
  35444. default: true,
  35445. form: "meowberus"
  35446. },
  35447. ],
  35448. {
  35449. "normal": {
  35450. name: "Normal",
  35451. default: true
  35452. },
  35453. "true-form": {
  35454. name: "True Form"
  35455. },
  35456. "meowberus": {
  35457. name: "Meowberus",
  35458. },
  35459. }
  35460. ))
  35461. characterMakers.push(() => makeCharacter(
  35462. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35463. {
  35464. front: {
  35465. height: math.unit(6 + 8/12, "feet"),
  35466. weight: math.unit(300, "lb"),
  35467. name: "Front",
  35468. image: {
  35469. source: "./media/characters/jrain/front.svg",
  35470. extra: 3039/2865,
  35471. bottom: 399/3438
  35472. }
  35473. },
  35474. back: {
  35475. height: math.unit(6 + 8/12, "feet"),
  35476. weight: math.unit(300, "lb"),
  35477. name: "Back",
  35478. image: {
  35479. source: "./media/characters/jrain/back.svg",
  35480. extra: 3089/2938,
  35481. bottom: 172/3261
  35482. }
  35483. },
  35484. head: {
  35485. height: math.unit(2.14, "feet"),
  35486. name: "Head",
  35487. image: {
  35488. source: "./media/characters/jrain/head.svg"
  35489. }
  35490. },
  35491. maw: {
  35492. height: math.unit(1.77, "feet"),
  35493. name: "Maw",
  35494. image: {
  35495. source: "./media/characters/jrain/maw.svg"
  35496. }
  35497. },
  35498. leftHand: {
  35499. height: math.unit(1.1, "feet"),
  35500. name: "Left Hand",
  35501. image: {
  35502. source: "./media/characters/jrain/left-hand.svg"
  35503. }
  35504. },
  35505. rightHand: {
  35506. height: math.unit(1.1, "feet"),
  35507. name: "Right Hand",
  35508. image: {
  35509. source: "./media/characters/jrain/right-hand.svg"
  35510. }
  35511. },
  35512. eye: {
  35513. height: math.unit(0.35, "feet"),
  35514. name: "Eye",
  35515. image: {
  35516. source: "./media/characters/jrain/eye.svg"
  35517. }
  35518. },
  35519. },
  35520. [
  35521. {
  35522. name: "Normal",
  35523. height: math.unit(6 + 8/12, "feet"),
  35524. default: true
  35525. },
  35526. {
  35527. name: "Casually Large",
  35528. height: math.unit(25, "feet")
  35529. },
  35530. {
  35531. name: "Giant",
  35532. height: math.unit(100, "feet")
  35533. },
  35534. {
  35535. name: "Kaiju",
  35536. height: math.unit(300, "feet")
  35537. },
  35538. ]
  35539. ))
  35540. characterMakers.push(() => makeCharacter(
  35541. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35542. {
  35543. dragon: {
  35544. height: math.unit(5, "meters"),
  35545. name: "Dragon",
  35546. image: {
  35547. source: "./media/characters/sabrina/dragon.svg",
  35548. extra: 3670 / 2365,
  35549. bottom: 333 / 4003
  35550. }
  35551. },
  35552. gryphon: {
  35553. height: math.unit(3, "meters"),
  35554. name: "Gryphon",
  35555. image: {
  35556. source: "./media/characters/sabrina/gryphon.svg",
  35557. extra: 1576 / 945,
  35558. bottom: 71 / 1647
  35559. }
  35560. },
  35561. snake: {
  35562. height: math.unit(12, "meters"),
  35563. name: "Snake",
  35564. image: {
  35565. source: "./media/characters/sabrina/snake.svg",
  35566. extra: 1758 / 1320,
  35567. bottom: 186 / 1944
  35568. }
  35569. },
  35570. collar: {
  35571. height: math.unit(1.86, "meters"),
  35572. name: "Collar",
  35573. image: {
  35574. source: "./media/characters/sabrina/collar.svg"
  35575. }
  35576. },
  35577. eye: {
  35578. height: math.unit(0.53, "meters"),
  35579. name: "Eye",
  35580. image: {
  35581. source: "./media/characters/sabrina/eye.svg"
  35582. }
  35583. },
  35584. foot: {
  35585. height: math.unit(1.86, "meters"),
  35586. name: "Foot",
  35587. image: {
  35588. source: "./media/characters/sabrina/foot.svg"
  35589. }
  35590. },
  35591. hand: {
  35592. height: math.unit(1.32, "meters"),
  35593. name: "Hand",
  35594. image: {
  35595. source: "./media/characters/sabrina/hand.svg"
  35596. }
  35597. },
  35598. head: {
  35599. height: math.unit(2.44, "meters"),
  35600. name: "Head",
  35601. image: {
  35602. source: "./media/characters/sabrina/head.svg"
  35603. }
  35604. },
  35605. headAngry: {
  35606. height: math.unit(2.44, "meters"),
  35607. name: "Head (Angry))",
  35608. image: {
  35609. source: "./media/characters/sabrina/head-angry.svg"
  35610. }
  35611. },
  35612. maw: {
  35613. height: math.unit(1.65, "meters"),
  35614. name: "Maw",
  35615. image: {
  35616. source: "./media/characters/sabrina/maw.svg"
  35617. }
  35618. },
  35619. spikes: {
  35620. height: math.unit(1.69, "meters"),
  35621. name: "Spikes",
  35622. image: {
  35623. source: "./media/characters/sabrina/spikes.svg"
  35624. }
  35625. },
  35626. stomach: {
  35627. height: math.unit(1.15, "meters"),
  35628. name: "Stomach",
  35629. image: {
  35630. source: "./media/characters/sabrina/stomach.svg"
  35631. }
  35632. },
  35633. tongue: {
  35634. height: math.unit(1.27, "meters"),
  35635. name: "Tongue",
  35636. image: {
  35637. source: "./media/characters/sabrina/tongue.svg"
  35638. }
  35639. },
  35640. wingDorsal: {
  35641. height: math.unit(4.85, "meters"),
  35642. name: "Wing (Dorsal)",
  35643. image: {
  35644. source: "./media/characters/sabrina/wing-dorsal.svg"
  35645. }
  35646. },
  35647. wingVentral: {
  35648. height: math.unit(4.85, "meters"),
  35649. name: "Wing (Ventral)",
  35650. image: {
  35651. source: "./media/characters/sabrina/wing-ventral.svg"
  35652. }
  35653. },
  35654. },
  35655. [
  35656. {
  35657. name: "Normal",
  35658. height: math.unit(5, "meters"),
  35659. default: true
  35660. },
  35661. ]
  35662. ))
  35663. characterMakers.push(() => makeCharacter(
  35664. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35665. {
  35666. frontMaid: {
  35667. height: math.unit(5 + 5/12, "feet"),
  35668. weight: math.unit(130, "lb"),
  35669. name: "Front (Maid)",
  35670. image: {
  35671. source: "./media/characters/midnight-tales/front-maid.svg",
  35672. extra: 489/454,
  35673. bottom: 61/550
  35674. }
  35675. },
  35676. frontFormal: {
  35677. height: math.unit(5 + 5/12, "feet"),
  35678. weight: math.unit(130, "lb"),
  35679. name: "Front (Formal)",
  35680. image: {
  35681. source: "./media/characters/midnight-tales/front-formal.svg",
  35682. extra: 489/454,
  35683. bottom: 61/550
  35684. }
  35685. },
  35686. back: {
  35687. height: math.unit(5 + 5/12, "feet"),
  35688. weight: math.unit(130, "lb"),
  35689. name: "Back",
  35690. image: {
  35691. source: "./media/characters/midnight-tales/back.svg",
  35692. extra: 498/456,
  35693. bottom: 33/531
  35694. }
  35695. },
  35696. frontBeast: {
  35697. height: math.unit(40, "feet"),
  35698. weight: math.unit(64000, "lb"),
  35699. name: "Front (Beast)",
  35700. image: {
  35701. source: "./media/characters/midnight-tales/front-beast.svg",
  35702. extra: 927/860,
  35703. bottom: 53/980
  35704. }
  35705. },
  35706. backBeast: {
  35707. height: math.unit(40, "feet"),
  35708. weight: math.unit(64000, "lb"),
  35709. name: "Back (Beast)",
  35710. image: {
  35711. source: "./media/characters/midnight-tales/back-beast.svg",
  35712. extra: 929/855,
  35713. bottom: 16/945
  35714. }
  35715. },
  35716. footBeast: {
  35717. height: math.unit(6.7, "feet"),
  35718. name: "Foot (Beast)",
  35719. image: {
  35720. source: "./media/characters/midnight-tales/foot-beast.svg"
  35721. }
  35722. },
  35723. headBeast: {
  35724. height: math.unit(8, "feet"),
  35725. name: "Head (Beast)",
  35726. image: {
  35727. source: "./media/characters/midnight-tales/head-beast.svg"
  35728. }
  35729. },
  35730. },
  35731. [
  35732. {
  35733. name: "Normal",
  35734. height: math.unit(5 + 5 / 12, "feet"),
  35735. default: true
  35736. },
  35737. {
  35738. name: "Macro",
  35739. height: math.unit(25, "feet")
  35740. },
  35741. ]
  35742. ))
  35743. characterMakers.push(() => makeCharacter(
  35744. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35745. {
  35746. front: {
  35747. height: math.unit(5 + 10/12, "feet"),
  35748. name: "Front",
  35749. image: {
  35750. source: "./media/characters/argon/front.svg",
  35751. extra: 2009/1935,
  35752. bottom: 118/2127
  35753. }
  35754. },
  35755. back: {
  35756. height: math.unit(5 + 10/12, "feet"),
  35757. name: "Back",
  35758. image: {
  35759. source: "./media/characters/argon/back.svg",
  35760. extra: 2047/1992,
  35761. bottom: 20/2067
  35762. }
  35763. },
  35764. frontDressed: {
  35765. height: math.unit(5 + 10/12, "feet"),
  35766. name: "Front (Dressed)",
  35767. image: {
  35768. source: "./media/characters/argon/front-dressed.svg",
  35769. extra: 2009/1935,
  35770. bottom: 118/2127
  35771. }
  35772. },
  35773. },
  35774. [
  35775. {
  35776. name: "Normal",
  35777. height: math.unit(5 + 10/12, "feet"),
  35778. default: true
  35779. },
  35780. ]
  35781. ))
  35782. characterMakers.push(() => makeCharacter(
  35783. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35784. {
  35785. front: {
  35786. height: math.unit(8 + 6/12, "feet"),
  35787. weight: math.unit(1150, "lb"),
  35788. name: "Front",
  35789. image: {
  35790. source: "./media/characters/kichi/front.svg",
  35791. extra: 1267/1164,
  35792. bottom: 61/1328
  35793. }
  35794. },
  35795. back: {
  35796. height: math.unit(8 + 6/12, "feet"),
  35797. weight: math.unit(1150, "lb"),
  35798. name: "Back",
  35799. image: {
  35800. source: "./media/characters/kichi/back.svg",
  35801. extra: 1273/1166,
  35802. bottom: 33/1306
  35803. }
  35804. },
  35805. },
  35806. [
  35807. {
  35808. name: "Normal",
  35809. height: math.unit(8 + 6/12, "feet"),
  35810. default: true
  35811. },
  35812. ]
  35813. ))
  35814. characterMakers.push(() => makeCharacter(
  35815. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35816. {
  35817. front: {
  35818. height: math.unit(6, "feet"),
  35819. weight: math.unit(210, "lb"),
  35820. name: "Front",
  35821. image: {
  35822. source: "./media/characters/manetel-greyscale/front.svg",
  35823. extra: 350/312,
  35824. bottom: 8/358
  35825. }
  35826. },
  35827. },
  35828. [
  35829. {
  35830. name: "Micro",
  35831. height: math.unit(2, "inches")
  35832. },
  35833. {
  35834. name: "Normal",
  35835. height: math.unit(6, "feet"),
  35836. default: true
  35837. },
  35838. {
  35839. name: "Minimacro",
  35840. height: math.unit(17, "feet")
  35841. },
  35842. {
  35843. name: "Macro",
  35844. height: math.unit(117, "feet")
  35845. },
  35846. ]
  35847. ))
  35848. characterMakers.push(() => makeCharacter(
  35849. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35850. {
  35851. side: {
  35852. height: math.unit(5 + 1/12, "feet"),
  35853. weight: math.unit(418, "lb"),
  35854. name: "Side",
  35855. image: {
  35856. source: "./media/characters/softpurr/side.svg",
  35857. extra: 1993/1945,
  35858. bottom: 134/2127
  35859. }
  35860. },
  35861. front: {
  35862. height: math.unit(5 + 1/12, "feet"),
  35863. weight: math.unit(418, "lb"),
  35864. name: "Front",
  35865. image: {
  35866. source: "./media/characters/softpurr/front.svg",
  35867. extra: 1950/1856,
  35868. bottom: 174/2124
  35869. }
  35870. },
  35871. paw: {
  35872. height: math.unit(1, "feet"),
  35873. name: "Paw",
  35874. image: {
  35875. source: "./media/characters/softpurr/paw.svg"
  35876. }
  35877. },
  35878. },
  35879. [
  35880. {
  35881. name: "Normal",
  35882. height: math.unit(5 + 1/12, "feet"),
  35883. default: true
  35884. },
  35885. ]
  35886. ))
  35887. characterMakers.push(() => makeCharacter(
  35888. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35889. {
  35890. front: {
  35891. height: math.unit(260, "meters"),
  35892. name: "Front",
  35893. image: {
  35894. source: "./media/characters/anahita/front.svg",
  35895. extra: 665/635,
  35896. bottom: 89/754
  35897. }
  35898. },
  35899. },
  35900. [
  35901. {
  35902. name: "Macro",
  35903. height: math.unit(260, "meters"),
  35904. default: true
  35905. },
  35906. ]
  35907. ))
  35908. characterMakers.push(() => makeCharacter(
  35909. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35910. {
  35911. front: {
  35912. height: math.unit(4 + 10/12, "feet"),
  35913. weight: math.unit(160, "lb"),
  35914. name: "Front",
  35915. image: {
  35916. source: "./media/characters/chip-mouse/front.svg",
  35917. extra: 3528/3408,
  35918. bottom: 0/3528
  35919. }
  35920. },
  35921. frontNsfw: {
  35922. height: math.unit(4 + 10/12, "feet"),
  35923. weight: math.unit(160, "lb"),
  35924. name: "Front (NSFW)",
  35925. image: {
  35926. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35927. extra: 3528/3408,
  35928. bottom: 0/3528
  35929. }
  35930. },
  35931. },
  35932. [
  35933. {
  35934. name: "Normal",
  35935. height: math.unit(4 + 10/12, "feet"),
  35936. default: true
  35937. },
  35938. ]
  35939. ))
  35940. characterMakers.push(() => makeCharacter(
  35941. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35942. {
  35943. side: {
  35944. height: math.unit(10, "feet"),
  35945. weight: math.unit(14000, "lb"),
  35946. name: "Side",
  35947. image: {
  35948. source: "./media/characters/kremm/side.svg",
  35949. extra: 1390/1053,
  35950. bottom: 90/1480
  35951. }
  35952. },
  35953. gut: {
  35954. height: math.unit(5.8, "feet"),
  35955. name: "Gut",
  35956. image: {
  35957. source: "./media/characters/kremm/gut.svg"
  35958. }
  35959. },
  35960. ass: {
  35961. height: math.unit(6.1, "feet"),
  35962. name: "Ass",
  35963. image: {
  35964. source: "./media/characters/kremm/ass.svg"
  35965. }
  35966. },
  35967. jaws: {
  35968. height: math.unit(2.2, "feet"),
  35969. name: "Jaws",
  35970. image: {
  35971. source: "./media/characters/kremm/jaws.svg"
  35972. }
  35973. },
  35974. dick: {
  35975. height: math.unit(4.26, "feet"),
  35976. name: "Dick",
  35977. image: {
  35978. source: "./media/characters/kremm/dick.svg"
  35979. }
  35980. },
  35981. },
  35982. [
  35983. {
  35984. name: "Normal",
  35985. height: math.unit(10, "feet"),
  35986. default: true
  35987. },
  35988. ]
  35989. ))
  35990. characterMakers.push(() => makeCharacter(
  35991. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35992. {
  35993. front: {
  35994. height: math.unit(30, "stories"),
  35995. name: "Front",
  35996. image: {
  35997. source: "./media/characters/kai/front.svg",
  35998. extra: 1892/1718,
  35999. bottom: 162/2054
  36000. }
  36001. },
  36002. },
  36003. [
  36004. {
  36005. name: "Macro",
  36006. height: math.unit(30, "stories"),
  36007. default: true
  36008. },
  36009. ]
  36010. ))
  36011. characterMakers.push(() => makeCharacter(
  36012. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36013. {
  36014. front: {
  36015. height: math.unit(6 + 4/12, "feet"),
  36016. weight: math.unit(145, "lb"),
  36017. name: "Front",
  36018. image: {
  36019. source: "./media/characters/sykes/front.svg",
  36020. extra: 1321 / 1187,
  36021. bottom: 66 / 1387
  36022. }
  36023. },
  36024. back: {
  36025. height: math.unit(6 + 4/12, "feet"),
  36026. weight: math.unit(145, "lb"),
  36027. name: "Back",
  36028. image: {
  36029. source: "./media/characters/sykes/back.svg",
  36030. extra: 1326/1181,
  36031. bottom: 31/1357
  36032. }
  36033. },
  36034. traditionalOutfit: {
  36035. height: math.unit(6 + 4/12, "feet"),
  36036. weight: math.unit(145, "lb"),
  36037. name: "Traditional Outfit",
  36038. image: {
  36039. source: "./media/characters/sykes/traditional-outfit.svg",
  36040. extra: 1321 / 1187,
  36041. bottom: 66 / 1387
  36042. }
  36043. },
  36044. adventureOutfit: {
  36045. height: math.unit(6 + 4/12, "feet"),
  36046. weight: math.unit(145, "lb"),
  36047. name: "Adventure Outfit",
  36048. image: {
  36049. source: "./media/characters/sykes/adventure-outfit.svg",
  36050. extra: 1321 / 1187,
  36051. bottom: 66 / 1387
  36052. }
  36053. },
  36054. handLeft: {
  36055. height: math.unit(0.9, "feet"),
  36056. name: "Hand (Left)",
  36057. image: {
  36058. source: "./media/characters/sykes/hand-left.svg"
  36059. }
  36060. },
  36061. handRight: {
  36062. height: math.unit(0.839, "feet"),
  36063. name: "Hand (Right)",
  36064. image: {
  36065. source: "./media/characters/sykes/hand-right.svg"
  36066. }
  36067. },
  36068. leftFoot: {
  36069. height: math.unit(1.2, "feet"),
  36070. name: "Foot (Left)",
  36071. image: {
  36072. source: "./media/characters/sykes/foot-left.svg"
  36073. }
  36074. },
  36075. rightFoot: {
  36076. height: math.unit(1.2, "feet"),
  36077. name: "Foot (Right)",
  36078. image: {
  36079. source: "./media/characters/sykes/foot-right.svg"
  36080. }
  36081. },
  36082. maw: {
  36083. height: math.unit(1.93, "feet"),
  36084. name: "Maw",
  36085. image: {
  36086. source: "./media/characters/sykes/maw.svg"
  36087. }
  36088. },
  36089. teeth: {
  36090. height: math.unit(0.51, "feet"),
  36091. name: "Teeth",
  36092. image: {
  36093. source: "./media/characters/sykes/teeth.svg"
  36094. }
  36095. },
  36096. tongue: {
  36097. height: math.unit(2.13, "feet"),
  36098. name: "Tongue",
  36099. image: {
  36100. source: "./media/characters/sykes/tongue.svg"
  36101. }
  36102. },
  36103. uvula: {
  36104. height: math.unit(0.16, "feet"),
  36105. name: "Uvula",
  36106. image: {
  36107. source: "./media/characters/sykes/uvula.svg"
  36108. }
  36109. },
  36110. collar: {
  36111. height: math.unit(0.287, "feet"),
  36112. name: "Collar",
  36113. image: {
  36114. source: "./media/characters/sykes/collar.svg"
  36115. }
  36116. },
  36117. tail: {
  36118. height: math.unit(3.8, "feet"),
  36119. name: "Tail",
  36120. image: {
  36121. source: "./media/characters/sykes/tail.svg"
  36122. }
  36123. },
  36124. },
  36125. [
  36126. {
  36127. name: "Shrunken",
  36128. height: math.unit(5, "inches")
  36129. },
  36130. {
  36131. name: "Normal",
  36132. height: math.unit(6 + 4 / 12, "feet"),
  36133. default: true
  36134. },
  36135. {
  36136. name: "Big",
  36137. height: math.unit(15, "feet")
  36138. },
  36139. ]
  36140. ))
  36141. characterMakers.push(() => makeCharacter(
  36142. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36143. {
  36144. front: {
  36145. height: math.unit(5 + 8/12, "feet"),
  36146. weight: math.unit(190, "lb"),
  36147. name: "Front",
  36148. image: {
  36149. source: "./media/characters/oven-otter/front.svg",
  36150. extra: 1809/1740,
  36151. bottom: 181/1990
  36152. }
  36153. },
  36154. back: {
  36155. height: math.unit(5 + 8/12, "feet"),
  36156. weight: math.unit(190, "lb"),
  36157. name: "Back",
  36158. image: {
  36159. source: "./media/characters/oven-otter/back.svg",
  36160. extra: 1709/1635,
  36161. bottom: 118/1827
  36162. }
  36163. },
  36164. hand: {
  36165. height: math.unit(1.07, "feet"),
  36166. name: "Hand",
  36167. image: {
  36168. source: "./media/characters/oven-otter/hand.svg"
  36169. }
  36170. },
  36171. beans: {
  36172. height: math.unit(1.74, "feet"),
  36173. name: "Beans",
  36174. image: {
  36175. source: "./media/characters/oven-otter/beans.svg"
  36176. }
  36177. },
  36178. },
  36179. [
  36180. {
  36181. name: "Micro",
  36182. height: math.unit(0.5, "inches")
  36183. },
  36184. {
  36185. name: "Normal",
  36186. height: math.unit(5 + 8/12, "feet"),
  36187. default: true
  36188. },
  36189. {
  36190. name: "Macro",
  36191. height: math.unit(250, "feet")
  36192. },
  36193. {
  36194. name: "Really High",
  36195. height: math.unit(420, "feet")
  36196. },
  36197. ]
  36198. ))
  36199. characterMakers.push(() => makeCharacter(
  36200. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36201. {
  36202. front: {
  36203. height: math.unit(5, "meters"),
  36204. weight: math.unit(292000000000000, "kg"),
  36205. name: "Front",
  36206. image: {
  36207. source: "./media/characters/devourer/front.svg",
  36208. extra: 1800/1733,
  36209. bottom: 211/2011
  36210. }
  36211. },
  36212. maw: {
  36213. height: math.unit(1.1, "meter"),
  36214. name: "Maw",
  36215. image: {
  36216. source: "./media/characters/devourer/maw.svg"
  36217. }
  36218. },
  36219. },
  36220. [
  36221. {
  36222. name: "Small",
  36223. height: math.unit(3, "meters")
  36224. },
  36225. {
  36226. name: "Large",
  36227. height: math.unit(5, "meters"),
  36228. default: true
  36229. },
  36230. ]
  36231. ))
  36232. characterMakers.push(() => makeCharacter(
  36233. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36234. {
  36235. front: {
  36236. height: math.unit(6, "feet"),
  36237. weight: math.unit(400, "lb"),
  36238. name: "Front",
  36239. image: {
  36240. source: "./media/characters/ellarby/front.svg",
  36241. extra: 1909/1763,
  36242. bottom: 80/1989
  36243. }
  36244. },
  36245. back: {
  36246. height: math.unit(6, "feet"),
  36247. weight: math.unit(400, "lb"),
  36248. name: "Back",
  36249. image: {
  36250. source: "./media/characters/ellarby/back.svg",
  36251. extra: 1914/1784,
  36252. bottom: 172/2086
  36253. }
  36254. },
  36255. },
  36256. [
  36257. {
  36258. name: "Mischief",
  36259. height: math.unit(18, "inches")
  36260. },
  36261. {
  36262. name: "Trouble",
  36263. height: math.unit(12, "feet")
  36264. },
  36265. {
  36266. name: "Havoc",
  36267. height: math.unit(200, "feet"),
  36268. default: true
  36269. },
  36270. {
  36271. name: "Pandemonium",
  36272. height: math.unit(1, "mile")
  36273. },
  36274. {
  36275. name: "Catastrophe",
  36276. height: math.unit(100, "miles")
  36277. },
  36278. ]
  36279. ))
  36280. characterMakers.push(() => makeCharacter(
  36281. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36282. {
  36283. front: {
  36284. height: math.unit(4.7, "meters"),
  36285. weight: math.unit(6500, "kg"),
  36286. name: "Front",
  36287. image: {
  36288. source: "./media/characters/vex/front.svg",
  36289. extra: 1288/1140,
  36290. bottom: 100/1388
  36291. }
  36292. },
  36293. },
  36294. [
  36295. {
  36296. name: "Normal",
  36297. height: math.unit(4.7, "meters"),
  36298. default: true
  36299. },
  36300. ]
  36301. ))
  36302. characterMakers.push(() => makeCharacter(
  36303. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36304. {
  36305. normal: {
  36306. height: math.unit(6, "feet"),
  36307. weight: math.unit(350, "lb"),
  36308. name: "Normal",
  36309. image: {
  36310. source: "./media/characters/teshy/normal.svg",
  36311. extra: 1795/1735,
  36312. bottom: 16/1811
  36313. }
  36314. },
  36315. monsterFront: {
  36316. height: math.unit(12, "feet"),
  36317. weight: math.unit(4700, "lb"),
  36318. name: "Monster (Front)",
  36319. image: {
  36320. source: "./media/characters/teshy/monster-front.svg",
  36321. extra: 2042/2034,
  36322. bottom: 128/2170
  36323. }
  36324. },
  36325. monsterSide: {
  36326. height: math.unit(12, "feet"),
  36327. weight: math.unit(4700, "lb"),
  36328. name: "Monster (Side)",
  36329. image: {
  36330. source: "./media/characters/teshy/monster-side.svg",
  36331. extra: 2067/2056,
  36332. bottom: 70/2137
  36333. }
  36334. },
  36335. monsterBack: {
  36336. height: math.unit(12, "feet"),
  36337. weight: math.unit(4700, "lb"),
  36338. name: "Monster (Back)",
  36339. image: {
  36340. source: "./media/characters/teshy/monster-back.svg",
  36341. extra: 1921/1914,
  36342. bottom: 171/2092
  36343. }
  36344. },
  36345. },
  36346. [
  36347. {
  36348. name: "Normal",
  36349. height: math.unit(6, "feet"),
  36350. default: true
  36351. },
  36352. ]
  36353. ))
  36354. characterMakers.push(() => makeCharacter(
  36355. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36356. {
  36357. front: {
  36358. height: math.unit(6, "feet"),
  36359. name: "Front",
  36360. image: {
  36361. source: "./media/characters/ramey/front.svg",
  36362. extra: 790/787,
  36363. bottom: 27/817
  36364. }
  36365. },
  36366. },
  36367. [
  36368. {
  36369. name: "Normal",
  36370. height: math.unit(6, "feet"),
  36371. default: true
  36372. },
  36373. ]
  36374. ))
  36375. characterMakers.push(() => makeCharacter(
  36376. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36377. {
  36378. front: {
  36379. height: math.unit(5 + 5/12, "feet"),
  36380. weight: math.unit(120, "lb"),
  36381. name: "Front",
  36382. image: {
  36383. source: "./media/characters/phirae/front.svg",
  36384. extra: 2491/2436,
  36385. bottom: 38/2529
  36386. }
  36387. },
  36388. },
  36389. [
  36390. {
  36391. name: "Normal",
  36392. height: math.unit(5 + 5/12, "feet"),
  36393. default: true
  36394. },
  36395. ]
  36396. ))
  36397. characterMakers.push(() => makeCharacter(
  36398. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36399. {
  36400. front: {
  36401. height: math.unit(5 + 3/12, "feet"),
  36402. name: "Front",
  36403. image: {
  36404. source: "./media/characters/stagglas/front.svg",
  36405. extra: 962/882,
  36406. bottom: 53/1015
  36407. }
  36408. },
  36409. feral: {
  36410. height: math.unit(335, "cm"),
  36411. name: "Feral",
  36412. image: {
  36413. source: "./media/characters/stagglas/feral.svg",
  36414. extra: 1732/1090,
  36415. bottom: 48/1780
  36416. }
  36417. },
  36418. },
  36419. [
  36420. {
  36421. name: "Normal",
  36422. height: math.unit(5 + 3/12, "feet"),
  36423. default: true
  36424. },
  36425. ]
  36426. ))
  36427. characterMakers.push(() => makeCharacter(
  36428. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36429. {
  36430. front: {
  36431. height: math.unit(5 + 4/12, "feet"),
  36432. weight: math.unit(145, "lb"),
  36433. name: "Front",
  36434. image: {
  36435. source: "./media/characters/starra/front.svg",
  36436. extra: 1790/1691,
  36437. bottom: 91/1881
  36438. }
  36439. },
  36440. },
  36441. [
  36442. {
  36443. name: "Normal",
  36444. height: math.unit(5 + 4/12, "feet"),
  36445. default: true
  36446. },
  36447. ]
  36448. ))
  36449. characterMakers.push(() => makeCharacter(
  36450. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36451. {
  36452. front: {
  36453. height: math.unit(2.2, "meters"),
  36454. name: "Front",
  36455. image: {
  36456. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36457. extra: 1248/972,
  36458. bottom: 38/1286
  36459. }
  36460. },
  36461. },
  36462. [
  36463. {
  36464. name: "Normal",
  36465. height: math.unit(2.2, "meters"),
  36466. default: true
  36467. },
  36468. ]
  36469. ))
  36470. characterMakers.push(() => makeCharacter(
  36471. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36472. {
  36473. side: {
  36474. height: math.unit(8 + 2/12, "feet"),
  36475. weight: math.unit(1240, "lb"),
  36476. name: "Side",
  36477. image: {
  36478. source: "./media/characters/mika-valentine/side.svg",
  36479. extra: 2670/2501,
  36480. bottom: 250/2920
  36481. }
  36482. },
  36483. },
  36484. [
  36485. {
  36486. name: "Normal",
  36487. height: math.unit(8 + 2/12, "feet"),
  36488. default: true
  36489. },
  36490. ]
  36491. ))
  36492. characterMakers.push(() => makeCharacter(
  36493. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36494. {
  36495. front: {
  36496. height: math.unit(7 + 2/12, "feet"),
  36497. name: "Front",
  36498. image: {
  36499. source: "./media/characters/xoltol/front.svg",
  36500. extra: 2212/2124,
  36501. bottom: 84/2296
  36502. }
  36503. },
  36504. side: {
  36505. height: math.unit(7 + 2/12, "feet"),
  36506. name: "Side",
  36507. image: {
  36508. source: "./media/characters/xoltol/side.svg",
  36509. extra: 2273/2197,
  36510. bottom: 26/2299
  36511. }
  36512. },
  36513. hand: {
  36514. height: math.unit(2.5, "feet"),
  36515. name: "Hand",
  36516. image: {
  36517. source: "./media/characters/xoltol/hand.svg"
  36518. }
  36519. },
  36520. },
  36521. [
  36522. {
  36523. name: "Small-ish",
  36524. height: math.unit(5 + 11/12, "feet")
  36525. },
  36526. {
  36527. name: "Normal",
  36528. height: math.unit(7 + 2/12, "feet")
  36529. },
  36530. {
  36531. name: "\"Macro\"",
  36532. height: math.unit(14 + 9/12, "feet"),
  36533. default: true
  36534. },
  36535. {
  36536. name: "Alternate Height",
  36537. height: math.unit(20, "feet")
  36538. },
  36539. {
  36540. name: "Actually Macro",
  36541. height: math.unit(100, "feet")
  36542. },
  36543. ]
  36544. ))
  36545. characterMakers.push(() => makeCharacter(
  36546. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36547. {
  36548. front: {
  36549. height: math.unit(5 + 2/12, "feet"),
  36550. name: "Front",
  36551. image: {
  36552. source: "./media/characters/kotetsu-redwood/front.svg",
  36553. extra: 1053/942,
  36554. bottom: 60/1113
  36555. }
  36556. },
  36557. },
  36558. [
  36559. {
  36560. name: "Normal",
  36561. height: math.unit(5 + 2/12, "feet"),
  36562. default: true
  36563. },
  36564. ]
  36565. ))
  36566. characterMakers.push(() => makeCharacter(
  36567. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36568. {
  36569. front: {
  36570. height: math.unit(2.4, "meters"),
  36571. weight: math.unit(125, "kg"),
  36572. name: "Front",
  36573. image: {
  36574. source: "./media/characters/lilith/front.svg",
  36575. extra: 1590/1513,
  36576. bottom: 203/1793
  36577. }
  36578. },
  36579. },
  36580. [
  36581. {
  36582. name: "Humanoid",
  36583. height: math.unit(2.4, "meters")
  36584. },
  36585. {
  36586. name: "Normal",
  36587. height: math.unit(6, "meters"),
  36588. default: true
  36589. },
  36590. {
  36591. name: "Largest",
  36592. height: math.unit(55, "meters")
  36593. },
  36594. ]
  36595. ))
  36596. characterMakers.push(() => makeCharacter(
  36597. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36598. {
  36599. front: {
  36600. height: math.unit(8 + 4/12, "feet"),
  36601. weight: math.unit(535, "lb"),
  36602. name: "Front",
  36603. image: {
  36604. source: "./media/characters/beh'kah-bolger/front.svg",
  36605. extra: 1660/1603,
  36606. bottom: 37/1697
  36607. }
  36608. },
  36609. },
  36610. [
  36611. {
  36612. name: "Normal",
  36613. height: math.unit(8 + 4/12, "feet"),
  36614. default: true
  36615. },
  36616. {
  36617. name: "Kaiju",
  36618. height: math.unit(250, "feet")
  36619. },
  36620. {
  36621. name: "Still Growing",
  36622. height: math.unit(10, "miles")
  36623. },
  36624. {
  36625. name: "Continental",
  36626. height: math.unit(5000, "miles")
  36627. },
  36628. {
  36629. name: "Final Form",
  36630. height: math.unit(2500000, "miles")
  36631. },
  36632. ]
  36633. ))
  36634. characterMakers.push(() => makeCharacter(
  36635. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36636. {
  36637. front: {
  36638. height: math.unit(7 + 2/12, "feet"),
  36639. weight: math.unit(230, "kg"),
  36640. name: "Front",
  36641. image: {
  36642. source: "./media/characters/tatyana-milewska/front.svg",
  36643. extra: 1199/1150,
  36644. bottom: 86/1285
  36645. }
  36646. },
  36647. },
  36648. [
  36649. {
  36650. name: "Normal",
  36651. height: math.unit(7 + 2/12, "feet"),
  36652. default: true
  36653. },
  36654. {
  36655. name: "Big",
  36656. height: math.unit(12, "feet")
  36657. },
  36658. {
  36659. name: "Minimacro",
  36660. height: math.unit(20, "feet")
  36661. },
  36662. {
  36663. name: "Macro",
  36664. height: math.unit(120, "feet")
  36665. },
  36666. ]
  36667. ))
  36668. characterMakers.push(() => makeCharacter(
  36669. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36670. {
  36671. front: {
  36672. height: math.unit(7 + 8/12, "feet"),
  36673. weight: math.unit(152, "kg"),
  36674. name: "Front",
  36675. image: {
  36676. source: "./media/characters/helen-arri/front.svg",
  36677. extra: 440/423,
  36678. bottom: 14/454
  36679. }
  36680. },
  36681. back: {
  36682. height: math.unit(7 + 8/12, "feet"),
  36683. weight: math.unit(152, "kg"),
  36684. name: "Back",
  36685. image: {
  36686. source: "./media/characters/helen-arri/back.svg",
  36687. extra: 443/426,
  36688. bottom: 8/451
  36689. }
  36690. },
  36691. },
  36692. [
  36693. {
  36694. name: "Normal",
  36695. height: math.unit(7 + 8/12, "feet"),
  36696. default: true
  36697. },
  36698. {
  36699. name: "Big",
  36700. height: math.unit(14, "feet")
  36701. },
  36702. {
  36703. name: "Minimacro",
  36704. height: math.unit(24, "feet")
  36705. },
  36706. {
  36707. name: "Macro",
  36708. height: math.unit(140, "feet")
  36709. },
  36710. ]
  36711. ))
  36712. characterMakers.push(() => makeCharacter(
  36713. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36714. {
  36715. front: {
  36716. height: math.unit(6, "meters"),
  36717. name: "Front",
  36718. image: {
  36719. source: "./media/characters/ehanu-rehu/front.svg",
  36720. extra: 1800/1800,
  36721. bottom: 59/1859
  36722. }
  36723. },
  36724. },
  36725. [
  36726. {
  36727. name: "Normal",
  36728. height: math.unit(6, "meters"),
  36729. default: true
  36730. },
  36731. ]
  36732. ))
  36733. characterMakers.push(() => makeCharacter(
  36734. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36735. {
  36736. front: {
  36737. height: math.unit(7 + 3/12, "feet"),
  36738. name: "Front",
  36739. image: {
  36740. source: "./media/characters/renholder/front.svg",
  36741. extra: 3096/2960,
  36742. bottom: 250/3346
  36743. }
  36744. },
  36745. },
  36746. [
  36747. {
  36748. name: "Normal Bat",
  36749. height: math.unit(7 + 3/12, "feet"),
  36750. default: true
  36751. },
  36752. {
  36753. name: "Slightly Tall Bat",
  36754. height: math.unit(100, "feet")
  36755. },
  36756. {
  36757. name: "Big Bat",
  36758. height: math.unit(1000, "feet")
  36759. },
  36760. {
  36761. name: "City-Sized Bat",
  36762. height: math.unit(200000, "feet")
  36763. },
  36764. {
  36765. name: "Bigger Bat",
  36766. height: math.unit(10000, "miles")
  36767. },
  36768. {
  36769. name: "Solar Sized Bat",
  36770. height: math.unit(100, "AU")
  36771. },
  36772. {
  36773. name: "Galactic Bat",
  36774. height: math.unit(200000, "lightyears")
  36775. },
  36776. {
  36777. name: "Universally Known Bat",
  36778. height: math.unit(1, "universe")
  36779. },
  36780. ]
  36781. ))
  36782. characterMakers.push(() => makeCharacter(
  36783. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36784. {
  36785. front: {
  36786. height: math.unit(6 + 11/12, "feet"),
  36787. weight: math.unit(250, "lb"),
  36788. name: "Front",
  36789. image: {
  36790. source: "./media/characters/cookiecat/front.svg",
  36791. extra: 893/827,
  36792. bottom: 14/907
  36793. }
  36794. },
  36795. },
  36796. [
  36797. {
  36798. name: "Micro",
  36799. height: math.unit(3, "inches")
  36800. },
  36801. {
  36802. name: "Normal",
  36803. height: math.unit(6 + 11/12, "feet"),
  36804. default: true
  36805. },
  36806. {
  36807. name: "Macro",
  36808. height: math.unit(100, "feet")
  36809. },
  36810. {
  36811. name: "Macro+",
  36812. height: math.unit(404, "feet")
  36813. },
  36814. {
  36815. name: "Megamacro",
  36816. height: math.unit(165, "miles")
  36817. },
  36818. {
  36819. name: "Planetary",
  36820. height: math.unit(4600, "miles")
  36821. },
  36822. ]
  36823. ))
  36824. characterMakers.push(() => makeCharacter(
  36825. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36826. {
  36827. front: {
  36828. height: math.unit(10 + 3/12, "feet"),
  36829. weight: math.unit(1500, "lb"),
  36830. name: "Front",
  36831. image: {
  36832. source: "./media/characters/tux-kusanagi/front.svg",
  36833. extra: 944/840,
  36834. bottom: 39/983
  36835. }
  36836. },
  36837. back: {
  36838. height: math.unit(10 + 3/12, "feet"),
  36839. weight: math.unit(1500, "lb"),
  36840. name: "Back",
  36841. image: {
  36842. source: "./media/characters/tux-kusanagi/back.svg",
  36843. extra: 941/842,
  36844. bottom: 28/969
  36845. }
  36846. },
  36847. rump: {
  36848. height: math.unit(5.25, "feet"),
  36849. name: "Rump",
  36850. image: {
  36851. source: "./media/characters/tux-kusanagi/rump.svg"
  36852. }
  36853. },
  36854. beak: {
  36855. height: math.unit(1.54, "feet"),
  36856. name: "Beak",
  36857. image: {
  36858. source: "./media/characters/tux-kusanagi/beak.svg"
  36859. }
  36860. },
  36861. },
  36862. [
  36863. {
  36864. name: "Normal",
  36865. height: math.unit(10 + 3/12, "feet"),
  36866. default: true
  36867. },
  36868. ]
  36869. ))
  36870. characterMakers.push(() => makeCharacter(
  36871. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36872. {
  36873. front: {
  36874. height: math.unit(58, "feet"),
  36875. weight: math.unit(200, "tons"),
  36876. name: "Front",
  36877. image: {
  36878. source: "./media/characters/uzarmazari/front.svg",
  36879. extra: 1575/1455,
  36880. bottom: 152/1727
  36881. }
  36882. },
  36883. back: {
  36884. height: math.unit(58, "feet"),
  36885. weight: math.unit(200, "tons"),
  36886. name: "Back",
  36887. image: {
  36888. source: "./media/characters/uzarmazari/back.svg",
  36889. extra: 1585/1510,
  36890. bottom: 157/1742
  36891. }
  36892. },
  36893. head: {
  36894. height: math.unit(26, "feet"),
  36895. name: "Head",
  36896. image: {
  36897. source: "./media/characters/uzarmazari/head.svg"
  36898. }
  36899. },
  36900. },
  36901. [
  36902. {
  36903. name: "Normal",
  36904. height: math.unit(58, "feet"),
  36905. default: true
  36906. },
  36907. ]
  36908. ))
  36909. characterMakers.push(() => makeCharacter(
  36910. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36911. {
  36912. side: {
  36913. height: math.unit(15, "feet"),
  36914. name: "Side",
  36915. image: {
  36916. source: "./media/characters/akitu/side.svg",
  36917. extra: 1421/1321,
  36918. bottom: 157/1578
  36919. }
  36920. },
  36921. front: {
  36922. height: math.unit(15, "feet"),
  36923. name: "Front",
  36924. image: {
  36925. source: "./media/characters/akitu/front.svg",
  36926. extra: 1435/1326,
  36927. bottom: 232/1667
  36928. }
  36929. },
  36930. },
  36931. [
  36932. {
  36933. name: "Normal",
  36934. height: math.unit(15, "feet"),
  36935. default: true
  36936. },
  36937. ]
  36938. ))
  36939. characterMakers.push(() => makeCharacter(
  36940. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36941. {
  36942. front: {
  36943. height: math.unit(10 + 8/12, "feet"),
  36944. name: "Front",
  36945. image: {
  36946. source: "./media/characters/azalie-croixland/front.svg",
  36947. extra: 1972/1856,
  36948. bottom: 31/2003
  36949. }
  36950. },
  36951. },
  36952. [
  36953. {
  36954. name: "Original Height",
  36955. height: math.unit(5 + 4/12, "feet")
  36956. },
  36957. {
  36958. name: "Normal Height",
  36959. height: math.unit(10 + 8/12, "feet"),
  36960. default: true
  36961. },
  36962. ]
  36963. ))
  36964. characterMakers.push(() => makeCharacter(
  36965. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36966. {
  36967. side: {
  36968. height: math.unit(7 + 1/12, "feet"),
  36969. weight: math.unit(245, "lb"),
  36970. name: "Side",
  36971. image: {
  36972. source: "./media/characters/kavus-kazian/side.svg",
  36973. extra: 349/342,
  36974. bottom: 15/364
  36975. }
  36976. },
  36977. },
  36978. [
  36979. {
  36980. name: "Normal",
  36981. height: math.unit(7 + 1/12, "feet"),
  36982. default: true
  36983. },
  36984. ]
  36985. ))
  36986. characterMakers.push(() => makeCharacter(
  36987. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36988. {
  36989. normalFront: {
  36990. height: math.unit(5 + 11/12, "feet"),
  36991. name: "Front",
  36992. image: {
  36993. source: "./media/characters/moonlight-rose/normal-front.svg",
  36994. extra: 1980/1825,
  36995. bottom: 18/1998
  36996. },
  36997. form: "normal",
  36998. default: true
  36999. },
  37000. normalBack: {
  37001. height: math.unit(5 + 11/12, "feet"),
  37002. name: "Back",
  37003. image: {
  37004. source: "./media/characters/moonlight-rose/normal-back.svg",
  37005. extra: 2010/1839,
  37006. bottom: 10/2020
  37007. },
  37008. form: "normal"
  37009. },
  37010. demonFront: {
  37011. height: math.unit(1.5, "earths"),
  37012. name: "Front",
  37013. image: {
  37014. source: "./media/characters/moonlight-rose/demon.svg",
  37015. extra: 1400/1294,
  37016. bottom: 45/1445
  37017. },
  37018. form: "demon",
  37019. default: true
  37020. },
  37021. terraFront: {
  37022. height: math.unit(1.5, "earths"),
  37023. name: "Front",
  37024. image: {
  37025. source: "./media/characters/moonlight-rose/terra.svg"
  37026. },
  37027. form: "terra",
  37028. default: true
  37029. },
  37030. jupiterFront: {
  37031. height: math.unit(69911*2, "km"),
  37032. name: "Front",
  37033. image: {
  37034. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37035. extra: 1367/1286,
  37036. bottom: 55/1422
  37037. },
  37038. form: "jupiter",
  37039. default: true
  37040. },
  37041. neptuneFront: {
  37042. height: math.unit(24622*2, "feet"),
  37043. name: "Front",
  37044. image: {
  37045. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37046. extra: 1851/1712,
  37047. bottom: 0/1851
  37048. },
  37049. form: "neptune",
  37050. default: true
  37051. },
  37052. },
  37053. [
  37054. {
  37055. name: "\"Natural\" Height",
  37056. height: math.unit(5 + 11/12, "feet"),
  37057. form: "normal"
  37058. },
  37059. {
  37060. name: "Smallest comfortable size",
  37061. height: math.unit(40, "meters"),
  37062. form: "normal"
  37063. },
  37064. {
  37065. name: "Common size",
  37066. height: math.unit(50, "km"),
  37067. form: "normal",
  37068. default: true
  37069. },
  37070. {
  37071. name: "Normal",
  37072. height: math.unit(1.5, "earths"),
  37073. form: "demon",
  37074. default: true
  37075. },
  37076. {
  37077. name: "Universal",
  37078. height: math.unit(15, "universes"),
  37079. form: "demon"
  37080. },
  37081. {
  37082. name: "Earth",
  37083. height: math.unit(1.5, "earths"),
  37084. form: "terra",
  37085. default: true
  37086. },
  37087. {
  37088. name: "Super Earth",
  37089. height: math.unit(67.5, "earths"),
  37090. form: "terra"
  37091. },
  37092. {
  37093. name: "Doesn't fit in a solar system...",
  37094. height: math.unit(1, "galaxy"),
  37095. form: "terra"
  37096. },
  37097. {
  37098. name: "Saturn",
  37099. height: math.unit(58232*2, "km"),
  37100. form: "jupiter"
  37101. },
  37102. {
  37103. name: "Jupiter",
  37104. height: math.unit(69911*2, "km"),
  37105. form: "jupiter",
  37106. default: true
  37107. },
  37108. {
  37109. name: "HD 100546 b",
  37110. height: math.unit(482938, "km"),
  37111. form: "jupiter"
  37112. },
  37113. {
  37114. name: "Enceladus",
  37115. height: math.unit(513*2, "km"),
  37116. form: "neptune"
  37117. },
  37118. {
  37119. name: "Europe",
  37120. height: math.unit(1560*2, "km"),
  37121. form: "neptune"
  37122. },
  37123. {
  37124. name: "Neptune",
  37125. height: math.unit(24622*2, "km"),
  37126. form: "neptune",
  37127. default: true
  37128. },
  37129. {
  37130. name: "CoRoT-9b",
  37131. height: math.unit(75067*2, "km"),
  37132. form: "neptune"
  37133. },
  37134. ],
  37135. {
  37136. "normal": {
  37137. name: "Normal",
  37138. default: true
  37139. },
  37140. "demon": {
  37141. name: "Demon"
  37142. },
  37143. "terra": {
  37144. name: "Terra"
  37145. },
  37146. "jupiter": {
  37147. name: "Jupiter"
  37148. },
  37149. "neptune": {
  37150. name: "Neptune"
  37151. }
  37152. }
  37153. ))
  37154. characterMakers.push(() => makeCharacter(
  37155. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37156. {
  37157. front: {
  37158. height: math.unit(16, "feet"),
  37159. weight: math.unit(610, "kg"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/huckle/front.svg",
  37163. extra: 1731/1625,
  37164. bottom: 33/1764
  37165. }
  37166. },
  37167. back: {
  37168. height: math.unit(16, "feet"),
  37169. weight: math.unit(610, "kg"),
  37170. name: "Back",
  37171. image: {
  37172. source: "./media/characters/huckle/back.svg",
  37173. extra: 1738/1651,
  37174. bottom: 37/1775
  37175. }
  37176. },
  37177. laughing: {
  37178. height: math.unit(3.75, "feet"),
  37179. name: "Laughing",
  37180. image: {
  37181. source: "./media/characters/huckle/laughing.svg"
  37182. }
  37183. },
  37184. angry: {
  37185. height: math.unit(4.15, "feet"),
  37186. name: "Angry",
  37187. image: {
  37188. source: "./media/characters/huckle/angry.svg"
  37189. }
  37190. },
  37191. },
  37192. [
  37193. {
  37194. name: "Normal",
  37195. height: math.unit(16, "feet"),
  37196. default: true
  37197. },
  37198. {
  37199. name: "Mini Macro",
  37200. height: math.unit(463, "feet")
  37201. },
  37202. {
  37203. name: "Macro",
  37204. height: math.unit(1680, "meters")
  37205. },
  37206. {
  37207. name: "Mega Macro",
  37208. height: math.unit(175, "km")
  37209. },
  37210. {
  37211. name: "Terra Macro",
  37212. height: math.unit(32, "gigameters")
  37213. },
  37214. {
  37215. name: "Multiverse+",
  37216. height: math.unit(2.56e23, "yottameters")
  37217. },
  37218. ]
  37219. ))
  37220. characterMakers.push(() => makeCharacter(
  37221. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37222. {
  37223. front: {
  37224. height: math.unit(6 + 9/12, "feet"),
  37225. weight: math.unit(280, "lb"),
  37226. name: "Front",
  37227. image: {
  37228. source: "./media/characters/candy/front.svg",
  37229. extra: 234/217,
  37230. bottom: 11/245
  37231. }
  37232. },
  37233. },
  37234. [
  37235. {
  37236. name: "Really Small",
  37237. height: math.unit(0.1, "nm")
  37238. },
  37239. {
  37240. name: "Micro",
  37241. height: math.unit(2, "inches")
  37242. },
  37243. {
  37244. name: "Normal",
  37245. height: math.unit(6 + 9/12, "feet"),
  37246. default: true
  37247. },
  37248. {
  37249. name: "Small Macro",
  37250. height: math.unit(69, "feet")
  37251. },
  37252. {
  37253. name: "Macro",
  37254. height: math.unit(160, "feet")
  37255. },
  37256. {
  37257. name: "Megamacro",
  37258. height: math.unit(22000, "miles")
  37259. },
  37260. {
  37261. name: "Gigamacro",
  37262. height: math.unit(50000, "miles")
  37263. },
  37264. ]
  37265. ))
  37266. characterMakers.push(() => makeCharacter(
  37267. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37268. {
  37269. front: {
  37270. height: math.unit(4, "feet"),
  37271. weight: math.unit(90, "lb"),
  37272. name: "Front",
  37273. image: {
  37274. source: "./media/characters/joey-mcdonald/front.svg",
  37275. extra: 1059/852,
  37276. bottom: 33/1092
  37277. }
  37278. },
  37279. back: {
  37280. height: math.unit(4, "feet"),
  37281. weight: math.unit(90, "lb"),
  37282. name: "Back",
  37283. image: {
  37284. source: "./media/characters/joey-mcdonald/back.svg",
  37285. extra: 1077/879,
  37286. bottom: 5/1082
  37287. }
  37288. },
  37289. frontKobold: {
  37290. height: math.unit(4, "feet"),
  37291. weight: math.unit(100, "lb"),
  37292. name: "Front-kobold",
  37293. image: {
  37294. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37295. extra: 1480/1367,
  37296. bottom: 0/1480
  37297. }
  37298. },
  37299. backKobold: {
  37300. height: math.unit(4, "feet"),
  37301. weight: math.unit(100, "lb"),
  37302. name: "Back-kobold",
  37303. image: {
  37304. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37305. extra: 1449/1361,
  37306. bottom: 0/1449
  37307. }
  37308. },
  37309. },
  37310. [
  37311. {
  37312. name: "Normal",
  37313. height: math.unit(4, "feet"),
  37314. default: true
  37315. },
  37316. ]
  37317. ))
  37318. characterMakers.push(() => makeCharacter(
  37319. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37320. {
  37321. front: {
  37322. height: math.unit(12 + 6/12, "feet"),
  37323. name: "Front",
  37324. image: {
  37325. source: "./media/characters/kass-lockheed/front.svg",
  37326. extra: 354/343,
  37327. bottom: 9/363
  37328. }
  37329. },
  37330. back: {
  37331. height: math.unit(12 + 6/12, "feet"),
  37332. name: "Back",
  37333. image: {
  37334. source: "./media/characters/kass-lockheed/back.svg",
  37335. extra: 364/352,
  37336. bottom: 3/367
  37337. }
  37338. },
  37339. dick: {
  37340. height: math.unit(3.12, "feet"),
  37341. name: "Dick",
  37342. image: {
  37343. source: "./media/characters/kass-lockheed/dick.svg"
  37344. }
  37345. },
  37346. head: {
  37347. height: math.unit(2.6, "feet"),
  37348. name: "Head",
  37349. image: {
  37350. source: "./media/characters/kass-lockheed/head.svg"
  37351. }
  37352. },
  37353. bleh: {
  37354. height: math.unit(2.85, "feet"),
  37355. name: "Bleh",
  37356. image: {
  37357. source: "./media/characters/kass-lockheed/bleh.svg"
  37358. }
  37359. },
  37360. smug: {
  37361. height: math.unit(2.85, "feet"),
  37362. name: "Smug",
  37363. image: {
  37364. source: "./media/characters/kass-lockheed/smug.svg"
  37365. }
  37366. },
  37367. },
  37368. [
  37369. {
  37370. name: "Normal",
  37371. height: math.unit(12 + 6/12, "feet"),
  37372. default: true
  37373. },
  37374. ]
  37375. ))
  37376. characterMakers.push(() => makeCharacter(
  37377. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37378. {
  37379. front: {
  37380. height: math.unit(6 + 2/12, "feet"),
  37381. name: "Front",
  37382. image: {
  37383. source: "./media/characters/taylor/front.svg",
  37384. extra: 639/495,
  37385. bottom: 12/651
  37386. }
  37387. },
  37388. },
  37389. [
  37390. {
  37391. name: "Normal",
  37392. height: math.unit(6 + 2/12, "feet"),
  37393. default: true
  37394. },
  37395. {
  37396. name: "Big",
  37397. height: math.unit(15, "feet")
  37398. },
  37399. {
  37400. name: "Lorg",
  37401. height: math.unit(80, "feet")
  37402. },
  37403. {
  37404. name: "Too Lorg",
  37405. height: math.unit(120, "feet")
  37406. },
  37407. ]
  37408. ))
  37409. characterMakers.push(() => makeCharacter(
  37410. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37411. {
  37412. front: {
  37413. height: math.unit(15, "feet"),
  37414. name: "Front",
  37415. image: {
  37416. source: "./media/characters/kaizer/front.svg",
  37417. extra: 1612/1436,
  37418. bottom: 43/1655
  37419. }
  37420. },
  37421. },
  37422. [
  37423. {
  37424. name: "Normal",
  37425. height: math.unit(15, "feet"),
  37426. default: true
  37427. },
  37428. ]
  37429. ))
  37430. characterMakers.push(() => makeCharacter(
  37431. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37432. {
  37433. front: {
  37434. height: math.unit(2, "feet"),
  37435. weight: math.unit(30, "lb"),
  37436. name: "Front",
  37437. image: {
  37438. source: "./media/characters/sandy/front.svg",
  37439. extra: 1439/1307,
  37440. bottom: 194/1633
  37441. }
  37442. },
  37443. },
  37444. [
  37445. {
  37446. name: "Normal",
  37447. height: math.unit(2, "feet"),
  37448. default: true
  37449. },
  37450. ]
  37451. ))
  37452. characterMakers.push(() => makeCharacter(
  37453. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37454. {
  37455. front: {
  37456. height: math.unit(3, "feet"),
  37457. name: "Front",
  37458. image: {
  37459. source: "./media/characters/mellvi/front.svg",
  37460. extra: 1831/1630,
  37461. bottom: 58/1889
  37462. }
  37463. },
  37464. },
  37465. [
  37466. {
  37467. name: "Normal",
  37468. height: math.unit(3, "feet"),
  37469. default: true
  37470. },
  37471. ]
  37472. ))
  37473. characterMakers.push(() => makeCharacter(
  37474. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37475. {
  37476. front: {
  37477. height: math.unit(5 + 11/12, "feet"),
  37478. weight: math.unit(200, "lb"),
  37479. name: "Front",
  37480. image: {
  37481. source: "./media/characters/shirou/front.svg",
  37482. extra: 2491/2383,
  37483. bottom: 189/2680
  37484. }
  37485. },
  37486. back: {
  37487. height: math.unit(5 + 11/12, "feet"),
  37488. weight: math.unit(200, "lb"),
  37489. name: "Back",
  37490. image: {
  37491. source: "./media/characters/shirou/back.svg",
  37492. extra: 2554/2450,
  37493. bottom: 76/2630
  37494. }
  37495. },
  37496. },
  37497. [
  37498. {
  37499. name: "Normal",
  37500. height: math.unit(5 + 11/12, "feet"),
  37501. default: true
  37502. },
  37503. ]
  37504. ))
  37505. characterMakers.push(() => makeCharacter(
  37506. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37507. {
  37508. front: {
  37509. height: math.unit(6 + 3/12, "feet"),
  37510. weight: math.unit(177, "lb"),
  37511. name: "Front",
  37512. image: {
  37513. source: "./media/characters/noryu/front.svg",
  37514. extra: 973/885,
  37515. bottom: 10/983
  37516. }
  37517. },
  37518. },
  37519. [
  37520. {
  37521. name: "Normal",
  37522. height: math.unit(6 + 3/12, "feet"),
  37523. default: true
  37524. },
  37525. ]
  37526. ))
  37527. characterMakers.push(() => makeCharacter(
  37528. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37529. {
  37530. front: {
  37531. height: math.unit(5 + 6/12, "feet"),
  37532. weight: math.unit(170, "lb"),
  37533. name: "Front",
  37534. image: {
  37535. source: "./media/characters/mevolas-rubenido/front.svg",
  37536. extra: 2109/1901,
  37537. bottom: 96/2205
  37538. }
  37539. },
  37540. },
  37541. [
  37542. {
  37543. name: "Normal",
  37544. height: math.unit(5 + 6/12, "feet"),
  37545. default: true
  37546. },
  37547. ]
  37548. ))
  37549. characterMakers.push(() => makeCharacter(
  37550. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37551. {
  37552. front: {
  37553. height: math.unit(100, "feet"),
  37554. name: "Front",
  37555. image: {
  37556. source: "./media/characters/dee/front.svg",
  37557. extra: 2153/2036,
  37558. bottom: 59/2212
  37559. }
  37560. },
  37561. back: {
  37562. height: math.unit(100, "feet"),
  37563. name: "Back",
  37564. image: {
  37565. source: "./media/characters/dee/back.svg",
  37566. extra: 2183/2058,
  37567. bottom: 75/2258
  37568. }
  37569. },
  37570. foot: {
  37571. height: math.unit(19.43, "feet"),
  37572. name: "Foot",
  37573. image: {
  37574. source: "./media/characters/dee/foot.svg"
  37575. }
  37576. },
  37577. hoof: {
  37578. height: math.unit(20.6, "feet"),
  37579. name: "Hoof",
  37580. image: {
  37581. source: "./media/characters/dee/hoof.svg"
  37582. }
  37583. },
  37584. },
  37585. [
  37586. {
  37587. name: "Macro",
  37588. height: math.unit(100, "feet"),
  37589. default: true
  37590. },
  37591. ]
  37592. ))
  37593. characterMakers.push(() => makeCharacter(
  37594. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37595. {
  37596. front: {
  37597. height: math.unit(5 + 6/12, "feet"),
  37598. name: "Front",
  37599. image: {
  37600. source: "./media/characters/teh/front.svg",
  37601. extra: 1002/847,
  37602. bottom: 62/1064
  37603. }
  37604. },
  37605. },
  37606. [
  37607. {
  37608. name: "Normal",
  37609. height: math.unit(5 + 6/12, "feet"),
  37610. default: true
  37611. },
  37612. ]
  37613. ))
  37614. characterMakers.push(() => makeCharacter(
  37615. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37616. {
  37617. side: {
  37618. height: math.unit(6 + 1/12, "feet"),
  37619. weight: math.unit(204, "lb"),
  37620. name: "Side",
  37621. image: {
  37622. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37623. extra: 974/775,
  37624. bottom: 169/1143
  37625. }
  37626. },
  37627. sitting: {
  37628. height: math.unit(6 + 2/12, "feet"),
  37629. weight: math.unit(204, "lb"),
  37630. name: "Sitting",
  37631. image: {
  37632. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37633. extra: 1175/964,
  37634. bottom: 378/1553
  37635. }
  37636. },
  37637. },
  37638. [
  37639. {
  37640. name: "Normal",
  37641. height: math.unit(6 + 1/12, "feet"),
  37642. default: true
  37643. },
  37644. ]
  37645. ))
  37646. characterMakers.push(() => makeCharacter(
  37647. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37648. {
  37649. front: {
  37650. height: math.unit(6, "inches"),
  37651. name: "Front",
  37652. image: {
  37653. source: "./media/characters/tululi/front.svg",
  37654. extra: 1997/1876,
  37655. bottom: 20/2017
  37656. }
  37657. },
  37658. },
  37659. [
  37660. {
  37661. name: "Normal",
  37662. height: math.unit(6, "inches"),
  37663. default: true
  37664. },
  37665. ]
  37666. ))
  37667. characterMakers.push(() => makeCharacter(
  37668. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37669. {
  37670. front: {
  37671. height: math.unit(4 + 1/12, "feet"),
  37672. name: "Front",
  37673. image: {
  37674. source: "./media/characters/star/front.svg",
  37675. extra: 1493/1189,
  37676. bottom: 48/1541
  37677. }
  37678. },
  37679. },
  37680. [
  37681. {
  37682. name: "Normal",
  37683. height: math.unit(4 + 1/12, "feet"),
  37684. default: true
  37685. },
  37686. ]
  37687. ))
  37688. characterMakers.push(() => makeCharacter(
  37689. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37690. {
  37691. front: {
  37692. height: math.unit(6 + 3/12, "feet"),
  37693. name: "Front",
  37694. image: {
  37695. source: "./media/characters/comet/front.svg",
  37696. extra: 1681/1462,
  37697. bottom: 26/1707
  37698. }
  37699. },
  37700. },
  37701. [
  37702. {
  37703. name: "Normal",
  37704. height: math.unit(6 + 3/12, "feet"),
  37705. default: true
  37706. },
  37707. ]
  37708. ))
  37709. characterMakers.push(() => makeCharacter(
  37710. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37711. {
  37712. front: {
  37713. height: math.unit(950, "feet"),
  37714. name: "Front",
  37715. image: {
  37716. source: "./media/characters/vortex/front.svg",
  37717. extra: 1497/1434,
  37718. bottom: 56/1553
  37719. }
  37720. },
  37721. maw: {
  37722. height: math.unit(285, "feet"),
  37723. name: "Maw",
  37724. image: {
  37725. source: "./media/characters/vortex/maw.svg"
  37726. }
  37727. },
  37728. },
  37729. [
  37730. {
  37731. name: "Macro",
  37732. height: math.unit(950, "feet"),
  37733. default: true
  37734. },
  37735. ]
  37736. ))
  37737. characterMakers.push(() => makeCharacter(
  37738. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37739. {
  37740. front: {
  37741. height: math.unit(600, "feet"),
  37742. weight: math.unit(0.02, "grams"),
  37743. name: "Front",
  37744. image: {
  37745. source: "./media/characters/doodle/front.svg",
  37746. extra: 1578/1413,
  37747. bottom: 37/1615
  37748. }
  37749. },
  37750. },
  37751. [
  37752. {
  37753. name: "Macro",
  37754. height: math.unit(600, "feet"),
  37755. default: true
  37756. },
  37757. ]
  37758. ))
  37759. characterMakers.push(() => makeCharacter(
  37760. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37761. {
  37762. front: {
  37763. height: math.unit(6 + 6/12, "feet"),
  37764. name: "Front",
  37765. image: {
  37766. source: "./media/characters/jai/front.svg",
  37767. extra: 1645/1534,
  37768. bottom: 115/1760
  37769. }
  37770. },
  37771. },
  37772. [
  37773. {
  37774. name: "Normal",
  37775. height: math.unit(6 + 6/12, "feet"),
  37776. default: true
  37777. },
  37778. ]
  37779. ))
  37780. characterMakers.push(() => makeCharacter(
  37781. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37782. {
  37783. front: {
  37784. height: math.unit(6 + 8/12, "feet"),
  37785. name: "Front",
  37786. image: {
  37787. source: "./media/characters/pixel/front.svg",
  37788. extra: 1900/1735,
  37789. bottom: 63/1963
  37790. }
  37791. },
  37792. },
  37793. [
  37794. {
  37795. name: "Normal",
  37796. height: math.unit(6 + 8/12, "feet"),
  37797. default: true
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37803. {
  37804. back: {
  37805. height: math.unit(4 + 1/12, "feet"),
  37806. weight: math.unit(75, "lb"),
  37807. name: "Back",
  37808. image: {
  37809. source: "./media/characters/rhett/back.svg",
  37810. extra: 930/878,
  37811. bottom: 25/955
  37812. }
  37813. },
  37814. front: {
  37815. height: math.unit(4 + 1/12, "feet"),
  37816. weight: math.unit(75, "lb"),
  37817. name: "Front",
  37818. image: {
  37819. source: "./media/characters/rhett/front.svg",
  37820. extra: 1682/1586,
  37821. bottom: 92/1774
  37822. }
  37823. },
  37824. },
  37825. [
  37826. {
  37827. name: "Micro",
  37828. height: math.unit(8, "inches")
  37829. },
  37830. {
  37831. name: "Tiny",
  37832. height: math.unit(2, "feet")
  37833. },
  37834. {
  37835. name: "Normal",
  37836. height: math.unit(4 + 1/12, "feet"),
  37837. default: true
  37838. },
  37839. ]
  37840. ))
  37841. characterMakers.push(() => makeCharacter(
  37842. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37843. {
  37844. front: {
  37845. height: math.unit(3 + 3/12, "feet"),
  37846. name: "Front",
  37847. image: {
  37848. source: "./media/characters/penny/front.svg",
  37849. extra: 1406/1311,
  37850. bottom: 26/1432
  37851. }
  37852. },
  37853. },
  37854. [
  37855. {
  37856. name: "Normal",
  37857. height: math.unit(3 + 3/12, "feet"),
  37858. default: true
  37859. },
  37860. ]
  37861. ))
  37862. characterMakers.push(() => makeCharacter(
  37863. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37864. {
  37865. front: {
  37866. height: math.unit(4 + 11/12, "feet"),
  37867. name: "Front",
  37868. image: {
  37869. source: "./media/characters/monty/front.svg",
  37870. extra: 1479/1209,
  37871. bottom: 0/1479
  37872. }
  37873. },
  37874. },
  37875. [
  37876. {
  37877. name: "Normal",
  37878. height: math.unit(4 + 11/12, "feet"),
  37879. default: true
  37880. },
  37881. ]
  37882. ))
  37883. characterMakers.push(() => makeCharacter(
  37884. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37885. {
  37886. front: {
  37887. height: math.unit(8 + 4/12, "feet"),
  37888. name: "Front",
  37889. image: {
  37890. source: "./media/characters/sterling/front.svg",
  37891. extra: 1420/1236,
  37892. bottom: 27/1447
  37893. }
  37894. },
  37895. },
  37896. [
  37897. {
  37898. name: "Normal",
  37899. height: math.unit(8 + 4/12, "feet"),
  37900. default: true
  37901. },
  37902. ]
  37903. ))
  37904. characterMakers.push(() => makeCharacter(
  37905. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37906. {
  37907. front: {
  37908. height: math.unit(15, "feet"),
  37909. name: "Front",
  37910. image: {
  37911. source: "./media/characters/marble/front.svg",
  37912. extra: 973/937,
  37913. bottom: 32/1005
  37914. }
  37915. },
  37916. },
  37917. [
  37918. {
  37919. name: "Normal",
  37920. height: math.unit(15, "feet"),
  37921. default: true
  37922. },
  37923. ]
  37924. ))
  37925. characterMakers.push(() => makeCharacter(
  37926. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37927. {
  37928. front: {
  37929. height: math.unit(3, "inches"),
  37930. name: "Front",
  37931. image: {
  37932. source: "./media/characters/powder/front.svg",
  37933. extra: 1504/1334,
  37934. bottom: 518/2022
  37935. }
  37936. },
  37937. },
  37938. [
  37939. {
  37940. name: "Normal",
  37941. height: math.unit(3, "inches"),
  37942. default: true
  37943. },
  37944. ]
  37945. ))
  37946. characterMakers.push(() => makeCharacter(
  37947. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37948. {
  37949. front: {
  37950. height: math.unit(4 + 5/12, "feet"),
  37951. name: "Front",
  37952. image: {
  37953. source: "./media/characters/joey-raccoon/front.svg",
  37954. extra: 1273/1197,
  37955. bottom: 0/1273
  37956. }
  37957. },
  37958. },
  37959. [
  37960. {
  37961. name: "Normal",
  37962. height: math.unit(4 + 5/12, "feet"),
  37963. default: true
  37964. },
  37965. ]
  37966. ))
  37967. characterMakers.push(() => makeCharacter(
  37968. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37969. {
  37970. front: {
  37971. height: math.unit(8 + 4/12, "feet"),
  37972. name: "Front",
  37973. image: {
  37974. source: "./media/characters/vick/front.svg",
  37975. extra: 2187/2118,
  37976. bottom: 47/2234
  37977. }
  37978. },
  37979. },
  37980. [
  37981. {
  37982. name: "Normal",
  37983. height: math.unit(8 + 4/12, "feet"),
  37984. default: true
  37985. },
  37986. ]
  37987. ))
  37988. characterMakers.push(() => makeCharacter(
  37989. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37990. {
  37991. front: {
  37992. height: math.unit(5 + 5/12, "feet"),
  37993. name: "Front",
  37994. image: {
  37995. source: "./media/characters/mitsy/front.svg",
  37996. extra: 1842/1695,
  37997. bottom: 0/1842
  37998. }
  37999. },
  38000. },
  38001. [
  38002. {
  38003. name: "Normal",
  38004. height: math.unit(5 + 5/12, "feet"),
  38005. default: true
  38006. },
  38007. ]
  38008. ))
  38009. characterMakers.push(() => makeCharacter(
  38010. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38011. {
  38012. front: {
  38013. height: math.unit(6 + 3/12, "feet"),
  38014. name: "Front",
  38015. image: {
  38016. source: "./media/characters/silvy/front.svg",
  38017. extra: 1995/1836,
  38018. bottom: 225/2220
  38019. }
  38020. },
  38021. },
  38022. [
  38023. {
  38024. name: "Normal",
  38025. height: math.unit(6 + 3/12, "feet"),
  38026. default: true
  38027. },
  38028. ]
  38029. ))
  38030. characterMakers.push(() => makeCharacter(
  38031. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38032. {
  38033. front: {
  38034. height: math.unit(3 + 8/12, "feet"),
  38035. name: "Front",
  38036. image: {
  38037. source: "./media/characters/rodney/front.svg",
  38038. extra: 1956/1747,
  38039. bottom: 31/1987
  38040. }
  38041. },
  38042. frontDressed: {
  38043. height: math.unit(2.9, "feet"),
  38044. name: "Front (Dressed)",
  38045. image: {
  38046. source: "./media/characters/rodney/front-dressed.svg",
  38047. extra: 1382/1241,
  38048. bottom: 385/1767
  38049. }
  38050. },
  38051. },
  38052. [
  38053. {
  38054. name: "Normal",
  38055. height: math.unit(3 + 8/12, "feet"),
  38056. default: true
  38057. },
  38058. ]
  38059. ))
  38060. characterMakers.push(() => makeCharacter(
  38061. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38062. {
  38063. front: {
  38064. height: math.unit(5 + 9/12, "feet"),
  38065. weight: math.unit(194, "lbs"),
  38066. name: "Front",
  38067. image: {
  38068. source: "./media/characters/zakail-sudekai/front.svg",
  38069. extra: 2696/2533,
  38070. bottom: 248/2944
  38071. }
  38072. },
  38073. maw: {
  38074. height: math.unit(1.35, "feet"),
  38075. name: "Maw",
  38076. image: {
  38077. source: "./media/characters/zakail-sudekai/maw.svg"
  38078. }
  38079. },
  38080. },
  38081. [
  38082. {
  38083. name: "Normal",
  38084. height: math.unit(5 + 9/12, "feet"),
  38085. default: true
  38086. },
  38087. ]
  38088. ))
  38089. characterMakers.push(() => makeCharacter(
  38090. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38091. {
  38092. front: {
  38093. height: math.unit(8 + 4/12, "feet"),
  38094. weight: math.unit(1200, "lb"),
  38095. name: "Front",
  38096. image: {
  38097. source: "./media/characters/eleanor/front.svg",
  38098. extra: 1226/1192,
  38099. bottom: 52/1278
  38100. }
  38101. },
  38102. back: {
  38103. height: math.unit(8 + 4/12, "feet"),
  38104. weight: math.unit(1200, "lb"),
  38105. name: "Back",
  38106. image: {
  38107. source: "./media/characters/eleanor/back.svg",
  38108. extra: 1242/1184,
  38109. bottom: 60/1302
  38110. }
  38111. },
  38112. head: {
  38113. height: math.unit(2.62, "feet"),
  38114. name: "Head",
  38115. image: {
  38116. source: "./media/characters/eleanor/head.svg"
  38117. }
  38118. },
  38119. },
  38120. [
  38121. {
  38122. name: "Normal",
  38123. height: math.unit(8 + 4/12, "feet"),
  38124. default: true
  38125. },
  38126. ]
  38127. ))
  38128. characterMakers.push(() => makeCharacter(
  38129. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38130. {
  38131. front: {
  38132. height: math.unit(8 + 4/12, "feet"),
  38133. weight: math.unit(750, "lb"),
  38134. name: "Front",
  38135. image: {
  38136. source: "./media/characters/tanya/front.svg",
  38137. extra: 1749/1615,
  38138. bottom: 33/1782
  38139. }
  38140. },
  38141. },
  38142. [
  38143. {
  38144. name: "Normal",
  38145. height: math.unit(8 + 4/12, "feet"),
  38146. default: true
  38147. },
  38148. ]
  38149. ))
  38150. characterMakers.push(() => makeCharacter(
  38151. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38152. {
  38153. front: {
  38154. height: math.unit(5, "feet"),
  38155. weight: math.unit(225, "lb"),
  38156. name: "Front",
  38157. image: {
  38158. source: "./media/characters/cindy/front.svg",
  38159. extra: 1320/1250,
  38160. bottom: 42/1362
  38161. }
  38162. },
  38163. frontDressed: {
  38164. height: math.unit(5, "feet"),
  38165. weight: math.unit(225, "lb"),
  38166. name: "Front (Dressed)",
  38167. image: {
  38168. source: "./media/characters/cindy/front-dressed.svg",
  38169. extra: 1320/1250,
  38170. bottom: 42/1362
  38171. }
  38172. },
  38173. back: {
  38174. height: math.unit(5, "feet"),
  38175. weight: math.unit(225, "lb"),
  38176. name: "Back",
  38177. image: {
  38178. source: "./media/characters/cindy/back.svg",
  38179. extra: 1384/1346,
  38180. bottom: 14/1398
  38181. }
  38182. },
  38183. },
  38184. [
  38185. {
  38186. name: "Normal",
  38187. height: math.unit(5, "feet"),
  38188. default: true
  38189. },
  38190. ]
  38191. ))
  38192. characterMakers.push(() => makeCharacter(
  38193. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38194. {
  38195. front: {
  38196. height: math.unit(6 + 9/12, "feet"),
  38197. weight: math.unit(440, "lb"),
  38198. name: "Front",
  38199. image: {
  38200. source: "./media/characters/wilbur-owen/front.svg",
  38201. extra: 1575/1448,
  38202. bottom: 72/1647
  38203. }
  38204. },
  38205. back: {
  38206. height: math.unit(6 + 9/12, "feet"),
  38207. weight: math.unit(440, "lb"),
  38208. name: "Back",
  38209. image: {
  38210. source: "./media/characters/wilbur-owen/back.svg",
  38211. extra: 1578/1445,
  38212. bottom: 36/1614
  38213. }
  38214. },
  38215. },
  38216. [
  38217. {
  38218. name: "Normal",
  38219. height: math.unit(6 + 9/12, "feet"),
  38220. default: true
  38221. },
  38222. ]
  38223. ))
  38224. characterMakers.push(() => makeCharacter(
  38225. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38226. {
  38227. front: {
  38228. height: math.unit(6 + 5/12, "feet"),
  38229. weight: math.unit(650, "lb"),
  38230. name: "Front",
  38231. image: {
  38232. source: "./media/characters/keegan/front.svg",
  38233. extra: 2387/2198,
  38234. bottom: 33/2420
  38235. }
  38236. },
  38237. side: {
  38238. height: math.unit(6 + 5/12, "feet"),
  38239. weight: math.unit(650, "lb"),
  38240. name: "Side",
  38241. image: {
  38242. source: "./media/characters/keegan/side.svg",
  38243. extra: 2390/2202,
  38244. bottom: 47/2437
  38245. }
  38246. },
  38247. back: {
  38248. height: math.unit(6 + 5/12, "feet"),
  38249. weight: math.unit(650, "lb"),
  38250. name: "Back",
  38251. image: {
  38252. source: "./media/characters/keegan/back.svg",
  38253. extra: 2418/2268,
  38254. bottom: 15/2433
  38255. }
  38256. },
  38257. frontSfw: {
  38258. height: math.unit(6 + 5/12, "feet"),
  38259. weight: math.unit(650, "lb"),
  38260. name: "Front (SFW)",
  38261. image: {
  38262. source: "./media/characters/keegan/front-sfw.svg",
  38263. extra: 2387/2198,
  38264. bottom: 33/2420
  38265. }
  38266. },
  38267. beans: {
  38268. height: math.unit(1.85, "feet"),
  38269. name: "Beans",
  38270. image: {
  38271. source: "./media/characters/keegan/beans.svg"
  38272. }
  38273. },
  38274. },
  38275. [
  38276. {
  38277. name: "Normal",
  38278. height: math.unit(6 + 5/12, "feet"),
  38279. default: true
  38280. },
  38281. ]
  38282. ))
  38283. characterMakers.push(() => makeCharacter(
  38284. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38285. {
  38286. front: {
  38287. height: math.unit(9, "feet"),
  38288. name: "Front",
  38289. image: {
  38290. source: "./media/characters/colton/front.svg",
  38291. extra: 1589/1326,
  38292. bottom: 139/1728
  38293. }
  38294. },
  38295. },
  38296. [
  38297. {
  38298. name: "Normal",
  38299. height: math.unit(9, "feet"),
  38300. default: true
  38301. },
  38302. ]
  38303. ))
  38304. characterMakers.push(() => makeCharacter(
  38305. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38306. {
  38307. front: {
  38308. height: math.unit(2 + 9/12, "feet"),
  38309. name: "Front",
  38310. image: {
  38311. source: "./media/characters/bora/front.svg",
  38312. extra: 1265/1250,
  38313. bottom: 24/1289
  38314. }
  38315. },
  38316. },
  38317. [
  38318. {
  38319. name: "Normal",
  38320. height: math.unit(2 + 9/12, "feet"),
  38321. default: true
  38322. },
  38323. ]
  38324. ))
  38325. characterMakers.push(() => makeCharacter(
  38326. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38327. {
  38328. front: {
  38329. height: math.unit(8, "feet"),
  38330. name: "Front",
  38331. image: {
  38332. source: "./media/characters/myu-myu/front.svg",
  38333. extra: 1949/1857,
  38334. bottom: 90/2039
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Normal",
  38341. height: math.unit(8, "feet"),
  38342. default: true
  38343. },
  38344. {
  38345. name: "Big",
  38346. height: math.unit(15, "feet")
  38347. },
  38348. {
  38349. name: "BIG",
  38350. height: math.unit(25, "feet")
  38351. },
  38352. ]
  38353. ))
  38354. characterMakers.push(() => makeCharacter(
  38355. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38356. {
  38357. side: {
  38358. height: math.unit(7 + 5/12, "feet"),
  38359. weight: math.unit(2800, "lb"),
  38360. name: "Side",
  38361. image: {
  38362. source: "./media/characters/haloren/side.svg",
  38363. extra: 1793/409,
  38364. bottom: 59/1852
  38365. }
  38366. },
  38367. frontPaw: {
  38368. height: math.unit(2.36, "feet"),
  38369. name: "Front paw",
  38370. image: {
  38371. source: "./media/characters/haloren/front-paw.svg"
  38372. }
  38373. },
  38374. hindPaw: {
  38375. height: math.unit(3.18, "feet"),
  38376. name: "Hind paw",
  38377. image: {
  38378. source: "./media/characters/haloren/hind-paw.svg"
  38379. }
  38380. },
  38381. maw: {
  38382. height: math.unit(5.05, "feet"),
  38383. name: "Maw",
  38384. image: {
  38385. source: "./media/characters/haloren/maw.svg"
  38386. }
  38387. },
  38388. dick: {
  38389. height: math.unit(2.90, "feet"),
  38390. name: "Dick",
  38391. image: {
  38392. source: "./media/characters/haloren/dick.svg"
  38393. }
  38394. },
  38395. },
  38396. [
  38397. {
  38398. name: "Normal",
  38399. height: math.unit(7 + 5/12, "feet"),
  38400. default: true
  38401. },
  38402. {
  38403. name: "Enhanced",
  38404. height: math.unit(14 + 3/12, "feet")
  38405. },
  38406. ]
  38407. ))
  38408. characterMakers.push(() => makeCharacter(
  38409. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38410. {
  38411. front: {
  38412. height: math.unit(171, "cm"),
  38413. name: "Front",
  38414. image: {
  38415. source: "./media/characters/kimmy/front.svg",
  38416. extra: 1491/1435,
  38417. bottom: 53/1544
  38418. }
  38419. },
  38420. },
  38421. [
  38422. {
  38423. name: "Small",
  38424. height: math.unit(9, "cm")
  38425. },
  38426. {
  38427. name: "Normal",
  38428. height: math.unit(171, "cm"),
  38429. default: true
  38430. },
  38431. ]
  38432. ))
  38433. characterMakers.push(() => makeCharacter(
  38434. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38435. {
  38436. front: {
  38437. height: math.unit(8, "feet"),
  38438. weight: math.unit(300, "lb"),
  38439. name: "Front",
  38440. image: {
  38441. source: "./media/characters/galeboomer/front.svg",
  38442. extra: 4651/4415,
  38443. bottom: 162/4813
  38444. }
  38445. },
  38446. back: {
  38447. height: math.unit(8, "feet"),
  38448. weight: math.unit(300, "lb"),
  38449. name: "Back",
  38450. image: {
  38451. source: "./media/characters/galeboomer/back.svg",
  38452. extra: 4544/4314,
  38453. bottom: 16/4560
  38454. }
  38455. },
  38456. frontAlt: {
  38457. height: math.unit(8, "feet"),
  38458. weight: math.unit(300, "lb"),
  38459. name: "Front (Alt)",
  38460. image: {
  38461. source: "./media/characters/galeboomer/front-alt.svg",
  38462. extra: 4458/4228,
  38463. bottom: 68/4526
  38464. }
  38465. },
  38466. maw: {
  38467. height: math.unit(1.2, "feet"),
  38468. name: "Maw",
  38469. image: {
  38470. source: "./media/characters/galeboomer/maw.svg"
  38471. }
  38472. },
  38473. },
  38474. [
  38475. {
  38476. name: "Normal",
  38477. height: math.unit(8, "feet"),
  38478. default: true
  38479. },
  38480. ]
  38481. ))
  38482. characterMakers.push(() => makeCharacter(
  38483. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38484. {
  38485. front: {
  38486. height: math.unit(5 + 9/12, "feet"),
  38487. weight: math.unit(120, "lb"),
  38488. name: "Front",
  38489. image: {
  38490. source: "./media/characters/chyr/front.svg",
  38491. extra: 1323/1254,
  38492. bottom: 63/1386
  38493. }
  38494. },
  38495. back: {
  38496. height: math.unit(5 + 9/12, "feet"),
  38497. weight: math.unit(120, "lb"),
  38498. name: "Back",
  38499. image: {
  38500. source: "./media/characters/chyr/back.svg",
  38501. extra: 1323/1252,
  38502. bottom: 48/1371
  38503. }
  38504. },
  38505. },
  38506. [
  38507. {
  38508. name: "Normal",
  38509. height: math.unit(5 + 9/12, "feet"),
  38510. default: true
  38511. },
  38512. ]
  38513. ))
  38514. characterMakers.push(() => makeCharacter(
  38515. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38516. {
  38517. front: {
  38518. height: math.unit(7, "feet"),
  38519. weight: math.unit(310, "lb"),
  38520. name: "Front",
  38521. image: {
  38522. source: "./media/characters/solarus/front.svg",
  38523. extra: 2415/2021,
  38524. bottom: 103/2518
  38525. }
  38526. },
  38527. back: {
  38528. height: math.unit(7, "feet"),
  38529. weight: math.unit(310, "lb"),
  38530. name: "Back",
  38531. image: {
  38532. source: "./media/characters/solarus/back.svg",
  38533. extra: 2463/2089,
  38534. bottom: 79/2542
  38535. }
  38536. },
  38537. },
  38538. [
  38539. {
  38540. name: "Normal",
  38541. height: math.unit(7, "feet"),
  38542. default: true
  38543. },
  38544. ]
  38545. ))
  38546. characterMakers.push(() => makeCharacter(
  38547. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38548. {
  38549. front: {
  38550. height: math.unit(16, "feet"),
  38551. name: "Front",
  38552. image: {
  38553. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38554. extra: 1844/1780,
  38555. bottom: 58/1902
  38556. }
  38557. },
  38558. winterCoat: {
  38559. height: math.unit(16, "feet"),
  38560. name: "Winter Coat",
  38561. image: {
  38562. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38563. extra: 1807/1775,
  38564. bottom: 69/1876
  38565. }
  38566. },
  38567. },
  38568. [
  38569. {
  38570. name: "Normal",
  38571. height: math.unit(16, "feet"),
  38572. default: true
  38573. },
  38574. {
  38575. name: "Chicago Size",
  38576. height: math.unit(560, "feet")
  38577. },
  38578. ]
  38579. ))
  38580. characterMakers.push(() => makeCharacter(
  38581. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38582. {
  38583. front: {
  38584. height: math.unit(11 + 6/12, "feet"),
  38585. weight: math.unit(1366, "lb"),
  38586. name: "Front",
  38587. image: {
  38588. source: "./media/characters/lexor/front.svg",
  38589. extra: 1560/1481,
  38590. bottom: 211/1771
  38591. }
  38592. },
  38593. back: {
  38594. height: math.unit(11 + 6/12, "feet"),
  38595. weight: math.unit(1366, "lb"),
  38596. name: "Back",
  38597. image: {
  38598. source: "./media/characters/lexor/back.svg",
  38599. extra: 1614/1533,
  38600. bottom: 76/1690
  38601. }
  38602. },
  38603. maw: {
  38604. height: math.unit(3, "feet"),
  38605. name: "Maw",
  38606. image: {
  38607. source: "./media/characters/lexor/maw.svg"
  38608. }
  38609. },
  38610. dick: {
  38611. height: math.unit(2.59, "feet"),
  38612. name: "Dick",
  38613. image: {
  38614. source: "./media/characters/lexor/dick.svg"
  38615. }
  38616. },
  38617. },
  38618. [
  38619. {
  38620. name: "Normal",
  38621. height: math.unit(11 + 6/12, "feet"),
  38622. default: true
  38623. },
  38624. ]
  38625. ))
  38626. characterMakers.push(() => makeCharacter(
  38627. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38628. {
  38629. front: {
  38630. height: math.unit(5 + 8/12, "feet"),
  38631. name: "Front",
  38632. image: {
  38633. source: "./media/characters/magnum/front.svg",
  38634. extra: 942/855,
  38635. bottom: 26/968
  38636. }
  38637. },
  38638. },
  38639. [
  38640. {
  38641. name: "Normal",
  38642. height: math.unit(5 + 8/12, "feet"),
  38643. default: true
  38644. },
  38645. ]
  38646. ))
  38647. characterMakers.push(() => makeCharacter(
  38648. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38649. {
  38650. front: {
  38651. height: math.unit(18 + 4/12, "feet"),
  38652. weight: math.unit(1500, "kg"),
  38653. name: "Front",
  38654. image: {
  38655. source: "./media/characters/solas-sharpsman/front.svg",
  38656. extra: 1698/1589,
  38657. bottom: 0/1698
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Normal",
  38664. height: math.unit(18 + 4/12, "feet"),
  38665. default: true
  38666. },
  38667. ]
  38668. ))
  38669. characterMakers.push(() => makeCharacter(
  38670. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38671. {
  38672. front: {
  38673. height: math.unit(5 + 5/12, "feet"),
  38674. weight: math.unit(180, "lb"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/october/front.svg",
  38678. extra: 1800/1650,
  38679. bottom: 0/1800
  38680. }
  38681. },
  38682. frontNsfw: {
  38683. height: math.unit(5 + 5/12, "feet"),
  38684. weight: math.unit(180, "lb"),
  38685. name: "Front (NSFW)",
  38686. image: {
  38687. source: "./media/characters/october/front-nsfw.svg",
  38688. extra: 1392/1307,
  38689. bottom: 42/1434
  38690. }
  38691. },
  38692. },
  38693. [
  38694. {
  38695. name: "Normal",
  38696. height: math.unit(5 + 5/12, "feet"),
  38697. default: true
  38698. },
  38699. ]
  38700. ))
  38701. characterMakers.push(() => makeCharacter(
  38702. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38703. {
  38704. front: {
  38705. height: math.unit(8 + 6/12, "feet"),
  38706. name: "Front",
  38707. image: {
  38708. source: "./media/characters/essynkardi/front.svg",
  38709. extra: 1914/1846,
  38710. bottom: 22/1936
  38711. }
  38712. },
  38713. },
  38714. [
  38715. {
  38716. name: "Normal",
  38717. height: math.unit(8 + 6/12, "feet"),
  38718. default: true
  38719. },
  38720. ]
  38721. ))
  38722. characterMakers.push(() => makeCharacter(
  38723. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38724. {
  38725. front: {
  38726. height: math.unit(6 + 6/12, "feet"),
  38727. weight: math.unit(7, "lb"),
  38728. name: "Front",
  38729. image: {
  38730. source: "./media/characters/icky/front.svg",
  38731. extra: 813/782,
  38732. bottom: 66/879
  38733. }
  38734. },
  38735. back: {
  38736. height: math.unit(6 + 6/12, "feet"),
  38737. weight: math.unit(7, "lb"),
  38738. name: "Back",
  38739. image: {
  38740. source: "./media/characters/icky/back.svg",
  38741. extra: 754/735,
  38742. bottom: 56/810
  38743. }
  38744. },
  38745. },
  38746. [
  38747. {
  38748. name: "Normal",
  38749. height: math.unit(6 + 6/12, "feet"),
  38750. default: true
  38751. },
  38752. ]
  38753. ))
  38754. characterMakers.push(() => makeCharacter(
  38755. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38756. {
  38757. front: {
  38758. height: math.unit(15, "feet"),
  38759. name: "Front",
  38760. image: {
  38761. source: "./media/characters/rojas/front.svg",
  38762. extra: 1462/1408,
  38763. bottom: 95/1557
  38764. }
  38765. },
  38766. back: {
  38767. height: math.unit(15, "feet"),
  38768. name: "Back",
  38769. image: {
  38770. source: "./media/characters/rojas/back.svg",
  38771. extra: 1023/954,
  38772. bottom: 28/1051
  38773. }
  38774. },
  38775. },
  38776. [
  38777. {
  38778. name: "Normal",
  38779. height: math.unit(15, "feet"),
  38780. default: true
  38781. },
  38782. ]
  38783. ))
  38784. characterMakers.push(() => makeCharacter(
  38785. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38786. {
  38787. frontHuman: {
  38788. height: math.unit(5 + 7/12, "feet"),
  38789. name: "Front (Human)",
  38790. image: {
  38791. source: "./media/characters/alek-dryagan/front-human.svg",
  38792. extra: 1687/1667,
  38793. bottom: 69/1756
  38794. }
  38795. },
  38796. backHuman: {
  38797. height: math.unit(5 + 7/12, "feet"),
  38798. name: "Back (Human)",
  38799. image: {
  38800. source: "./media/characters/alek-dryagan/back-human.svg",
  38801. extra: 1670/1649,
  38802. bottom: 65/1735
  38803. }
  38804. },
  38805. frontDemi: {
  38806. height: math.unit(65, "feet"),
  38807. name: "Front (Demi)",
  38808. image: {
  38809. source: "./media/characters/alek-dryagan/front-demi.svg",
  38810. extra: 1669/1642,
  38811. bottom: 49/1718
  38812. }
  38813. },
  38814. backDemi: {
  38815. height: math.unit(65, "feet"),
  38816. name: "Back (Demi)",
  38817. image: {
  38818. source: "./media/characters/alek-dryagan/back-demi.svg",
  38819. extra: 1658/1637,
  38820. bottom: 40/1698
  38821. }
  38822. },
  38823. mawHuman: {
  38824. height: math.unit(0.3, "feet"),
  38825. name: "Maw (Human)",
  38826. image: {
  38827. source: "./media/characters/alek-dryagan/maw-human.svg"
  38828. }
  38829. },
  38830. mawDemi: {
  38831. height: math.unit(3.8, "feet"),
  38832. name: "Maw (Demi)",
  38833. image: {
  38834. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38835. }
  38836. },
  38837. },
  38838. [
  38839. {
  38840. name: "Normal",
  38841. height: math.unit(5 + 7/12, "feet"),
  38842. default: true
  38843. },
  38844. ]
  38845. ))
  38846. characterMakers.push(() => makeCharacter(
  38847. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38848. {
  38849. frontHuman: {
  38850. height: math.unit(5 + 2/12, "feet"),
  38851. name: "Front (Human)",
  38852. image: {
  38853. source: "./media/characters/gen/front-human.svg",
  38854. extra: 1627/1538,
  38855. bottom: 71/1698
  38856. }
  38857. },
  38858. backHuman: {
  38859. height: math.unit(5 + 2/12, "feet"),
  38860. name: "Back (Human)",
  38861. image: {
  38862. source: "./media/characters/gen/back-human.svg",
  38863. extra: 1638/1548,
  38864. bottom: 69/1707
  38865. }
  38866. },
  38867. frontDemi: {
  38868. height: math.unit(5 + 2/12, "feet"),
  38869. name: "Front (Demi)",
  38870. image: {
  38871. source: "./media/characters/gen/front-demi.svg",
  38872. extra: 1627/1538,
  38873. bottom: 71/1698
  38874. }
  38875. },
  38876. backDemi: {
  38877. height: math.unit(5 + 2/12, "feet"),
  38878. name: "Back (Demi)",
  38879. image: {
  38880. source: "./media/characters/gen/back-demi.svg",
  38881. extra: 1638/1548,
  38882. bottom: 69/1707
  38883. }
  38884. },
  38885. },
  38886. [
  38887. {
  38888. name: "Normal",
  38889. height: math.unit(5 + 2/12, "feet"),
  38890. default: true
  38891. },
  38892. ]
  38893. ))
  38894. characterMakers.push(() => makeCharacter(
  38895. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38896. {
  38897. frontImp: {
  38898. height: math.unit(1 + 11/12, "feet"),
  38899. name: "Front (Imp)",
  38900. image: {
  38901. source: "./media/characters/max-kobold/front-imp.svg",
  38902. extra: 1238/1134,
  38903. bottom: 81/1319
  38904. }
  38905. },
  38906. backImp: {
  38907. height: math.unit(1 + 11/12, "feet"),
  38908. name: "Back (Imp)",
  38909. image: {
  38910. source: "./media/characters/max-kobold/back-imp.svg",
  38911. extra: 1334/1175,
  38912. bottom: 34/1368
  38913. }
  38914. },
  38915. frontDemi: {
  38916. height: math.unit(5 + 9/12, "feet"),
  38917. name: "Front (Demi)",
  38918. image: {
  38919. source: "./media/characters/max-kobold/front-demi.svg",
  38920. extra: 1715/1685,
  38921. bottom: 54/1769
  38922. }
  38923. },
  38924. backDemi: {
  38925. height: math.unit(5 + 9/12, "feet"),
  38926. name: "Back (Demi)",
  38927. image: {
  38928. source: "./media/characters/max-kobold/back-demi.svg",
  38929. extra: 1752/1729,
  38930. bottom: 41/1793
  38931. }
  38932. },
  38933. handImp: {
  38934. height: math.unit(0.45, "feet"),
  38935. name: "Hand (Imp)",
  38936. image: {
  38937. source: "./media/characters/max-kobold/hand.svg"
  38938. }
  38939. },
  38940. pawImp: {
  38941. height: math.unit(0.46, "feet"),
  38942. name: "Paw (Imp)",
  38943. image: {
  38944. source: "./media/characters/max-kobold/paw.svg"
  38945. }
  38946. },
  38947. handDemi: {
  38948. height: math.unit(0.80, "feet"),
  38949. name: "Hand (Demi)",
  38950. image: {
  38951. source: "./media/characters/max-kobold/hand.svg"
  38952. }
  38953. },
  38954. pawDemi: {
  38955. height: math.unit(1.1, "feet"),
  38956. name: "Paw (Demi)",
  38957. image: {
  38958. source: "./media/characters/max-kobold/paw.svg"
  38959. }
  38960. },
  38961. headImp: {
  38962. height: math.unit(1.33, "feet"),
  38963. name: "Head (Imp)",
  38964. image: {
  38965. source: "./media/characters/max-kobold/head-imp.svg"
  38966. }
  38967. },
  38968. mawImp: {
  38969. height: math.unit(0.75, "feet"),
  38970. name: "Maw (Imp)",
  38971. image: {
  38972. source: "./media/characters/max-kobold/maw-imp.svg"
  38973. }
  38974. },
  38975. mawDemi: {
  38976. height: math.unit(0.42, "feet"),
  38977. name: "Maw (Demi)",
  38978. image: {
  38979. source: "./media/characters/max-kobold/maw-demi.svg"
  38980. }
  38981. },
  38982. },
  38983. [
  38984. {
  38985. name: "Normal",
  38986. height: math.unit(1 + 11/12, "feet"),
  38987. default: true
  38988. },
  38989. ]
  38990. ))
  38991. characterMakers.push(() => makeCharacter(
  38992. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38993. {
  38994. front: {
  38995. height: math.unit(7 + 5/12, "feet"),
  38996. name: "Front",
  38997. image: {
  38998. source: "./media/characters/carbon/front.svg",
  38999. extra: 1754/1689,
  39000. bottom: 65/1819
  39001. }
  39002. },
  39003. back: {
  39004. height: math.unit(7 + 5/12, "feet"),
  39005. name: "Back",
  39006. image: {
  39007. source: "./media/characters/carbon/back.svg",
  39008. extra: 1762/1695,
  39009. bottom: 24/1786
  39010. }
  39011. },
  39012. frontGigantamax: {
  39013. height: math.unit(150, "feet"),
  39014. name: "Front (Gigantamax)",
  39015. image: {
  39016. source: "./media/characters/carbon/front-gigantamax.svg",
  39017. extra: 1826/1669,
  39018. bottom: 59/1885
  39019. }
  39020. },
  39021. backGigantamax: {
  39022. height: math.unit(150, "feet"),
  39023. name: "Back (Gigantamax)",
  39024. image: {
  39025. source: "./media/characters/carbon/back-gigantamax.svg",
  39026. extra: 1796/1653,
  39027. bottom: 53/1849
  39028. }
  39029. },
  39030. maw: {
  39031. height: math.unit(0.48, "feet"),
  39032. name: "Maw",
  39033. image: {
  39034. source: "./media/characters/carbon/maw.svg"
  39035. }
  39036. },
  39037. mawGigantamax: {
  39038. height: math.unit(7.5, "feet"),
  39039. name: "Maw (Gigantamax)",
  39040. image: {
  39041. source: "./media/characters/carbon/maw-gigantamax.svg"
  39042. }
  39043. },
  39044. },
  39045. [
  39046. {
  39047. name: "Normal",
  39048. height: math.unit(7 + 5/12, "feet"),
  39049. default: true
  39050. },
  39051. ]
  39052. ))
  39053. characterMakers.push(() => makeCharacter(
  39054. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39055. {
  39056. front: {
  39057. height: math.unit(6, "feet"),
  39058. name: "Front",
  39059. image: {
  39060. source: "./media/characters/maverick/front.svg",
  39061. extra: 1672/1661,
  39062. bottom: 85/1757
  39063. }
  39064. },
  39065. back: {
  39066. height: math.unit(6, "feet"),
  39067. name: "Back",
  39068. image: {
  39069. source: "./media/characters/maverick/back.svg",
  39070. extra: 1642/1631,
  39071. bottom: 38/1680
  39072. }
  39073. },
  39074. },
  39075. [
  39076. {
  39077. name: "Normal",
  39078. height: math.unit(6, "feet"),
  39079. default: true
  39080. },
  39081. ]
  39082. ))
  39083. characterMakers.push(() => makeCharacter(
  39084. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39085. {
  39086. front: {
  39087. height: math.unit(15, "feet"),
  39088. weight: math.unit(615, "lb"),
  39089. name: "Front",
  39090. image: {
  39091. source: "./media/characters/grockle/front.svg",
  39092. extra: 1535/1427,
  39093. bottom: 56/1591
  39094. }
  39095. },
  39096. },
  39097. [
  39098. {
  39099. name: "Normal",
  39100. height: math.unit(15, "feet"),
  39101. default: true
  39102. },
  39103. {
  39104. name: "Large",
  39105. height: math.unit(150, "feet")
  39106. },
  39107. {
  39108. name: "Macro",
  39109. height: math.unit(1876, "feet")
  39110. },
  39111. {
  39112. name: "Mega Macro",
  39113. height: math.unit(121940, "feet")
  39114. },
  39115. {
  39116. name: "Giga Macro",
  39117. height: math.unit(750, "km")
  39118. },
  39119. {
  39120. name: "Tera Macro",
  39121. height: math.unit(750000, "km")
  39122. },
  39123. {
  39124. name: "Galactic",
  39125. height: math.unit(1.4e5, "km")
  39126. },
  39127. {
  39128. name: "Godlike",
  39129. height: math.unit(9.8e280, "galaxies")
  39130. },
  39131. ]
  39132. ))
  39133. characterMakers.push(() => makeCharacter(
  39134. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39135. {
  39136. front: {
  39137. height: math.unit(11, "meters"),
  39138. weight: math.unit(20, "tonnes"),
  39139. name: "Front",
  39140. image: {
  39141. source: "./media/characters/alistair/front.svg",
  39142. extra: 1265/1009,
  39143. bottom: 93/1358
  39144. }
  39145. },
  39146. },
  39147. [
  39148. {
  39149. name: "Normal",
  39150. height: math.unit(11, "meters"),
  39151. default: true
  39152. },
  39153. ]
  39154. ))
  39155. characterMakers.push(() => makeCharacter(
  39156. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39157. {
  39158. front: {
  39159. height: math.unit(5 + 8/12, "feet"),
  39160. name: "Front",
  39161. image: {
  39162. source: "./media/characters/haruka/front.svg",
  39163. extra: 2012/1952,
  39164. bottom: 0/2012
  39165. }
  39166. },
  39167. },
  39168. [
  39169. {
  39170. name: "Normal",
  39171. height: math.unit(5 + 8/12, "feet"),
  39172. default: true
  39173. },
  39174. ]
  39175. ))
  39176. characterMakers.push(() => makeCharacter(
  39177. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39178. {
  39179. back: {
  39180. height: math.unit(9, "feet"),
  39181. name: "Back",
  39182. image: {
  39183. source: "./media/characters/vivian-sylveon/back.svg",
  39184. extra: 1853/1714,
  39185. bottom: 0/1853
  39186. }
  39187. },
  39188. },
  39189. [
  39190. {
  39191. name: "Normal",
  39192. height: math.unit(9, "feet"),
  39193. default: true
  39194. },
  39195. {
  39196. name: "Macro",
  39197. height: math.unit(500, "feet")
  39198. },
  39199. {
  39200. name: "Megamacro",
  39201. height: math.unit(600, "miles")
  39202. },
  39203. {
  39204. name: "Gigamacro",
  39205. height: math.unit(30000, "miles")
  39206. },
  39207. ]
  39208. ))
  39209. characterMakers.push(() => makeCharacter(
  39210. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39211. {
  39212. anthro: {
  39213. height: math.unit(5 + 10/12, "feet"),
  39214. weight: math.unit(100, "lb"),
  39215. name: "Anthro",
  39216. image: {
  39217. source: "./media/characters/daiki/anthro.svg",
  39218. extra: 1115/1027,
  39219. bottom: 69/1184
  39220. }
  39221. },
  39222. feral: {
  39223. height: math.unit(200, "feet"),
  39224. name: "Feral",
  39225. image: {
  39226. source: "./media/characters/daiki/feral.svg",
  39227. extra: 1256/313,
  39228. bottom: 39/1295
  39229. }
  39230. },
  39231. feralHead: {
  39232. height: math.unit(171, "feet"),
  39233. name: "Feral Head",
  39234. image: {
  39235. source: "./media/characters/daiki/feral-head.svg"
  39236. }
  39237. },
  39238. manaDragon: {
  39239. height: math.unit(170, "meters"),
  39240. name: "Mana-dragon",
  39241. image: {
  39242. source: "./media/characters/daiki/mana-dragon.svg",
  39243. extra: 763/420,
  39244. bottom: 97/860
  39245. }
  39246. },
  39247. },
  39248. [
  39249. {
  39250. name: "Normal",
  39251. height: math.unit(5 + 10/12, "feet"),
  39252. default: true
  39253. },
  39254. ]
  39255. ))
  39256. characterMakers.push(() => makeCharacter(
  39257. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39258. {
  39259. fullyEquippedFront: {
  39260. height: math.unit(3 + 1/12, "feet"),
  39261. weight: math.unit(24, "lb"),
  39262. name: "Fully Equipped (Front)",
  39263. image: {
  39264. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39265. extra: 687/605,
  39266. bottom: 18/705
  39267. }
  39268. },
  39269. fullyEquippedBack: {
  39270. height: math.unit(3 + 1/12, "feet"),
  39271. weight: math.unit(24, "lb"),
  39272. name: "Fully Equipped (Back)",
  39273. image: {
  39274. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39275. extra: 689/590,
  39276. bottom: 18/707
  39277. }
  39278. },
  39279. dailyWear: {
  39280. height: math.unit(3 + 1/12, "feet"),
  39281. weight: math.unit(24, "lb"),
  39282. name: "Daily Wear",
  39283. image: {
  39284. source: "./media/characters/tea-spot/daily-wear.svg",
  39285. extra: 701/620,
  39286. bottom: 21/722
  39287. }
  39288. },
  39289. maidWork: {
  39290. height: math.unit(3 + 1/12, "feet"),
  39291. weight: math.unit(24, "lb"),
  39292. name: "Maid Work",
  39293. image: {
  39294. source: "./media/characters/tea-spot/maid-work.svg",
  39295. extra: 693/609,
  39296. bottom: 15/708
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Normal",
  39303. height: math.unit(3 + 1/12, "feet"),
  39304. default: true
  39305. },
  39306. ]
  39307. ))
  39308. characterMakers.push(() => makeCharacter(
  39309. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39310. {
  39311. front: {
  39312. height: math.unit(175, "cm"),
  39313. weight: math.unit(75, "kg"),
  39314. name: "Front",
  39315. image: {
  39316. source: "./media/characters/chee/front.svg",
  39317. extra: 1796/1740,
  39318. bottom: 40/1836
  39319. }
  39320. },
  39321. },
  39322. [
  39323. {
  39324. name: "Micro-Micro",
  39325. height: math.unit(1, "nm")
  39326. },
  39327. {
  39328. name: "Micro-erst",
  39329. height: math.unit(1, "micrometer")
  39330. },
  39331. {
  39332. name: "Micro-er",
  39333. height: math.unit(1, "cm")
  39334. },
  39335. {
  39336. name: "Normal",
  39337. height: math.unit(175, "cm"),
  39338. default: true
  39339. },
  39340. {
  39341. name: "Macro",
  39342. height: math.unit(100, "m")
  39343. },
  39344. {
  39345. name: "Macro-er",
  39346. height: math.unit(1, "km")
  39347. },
  39348. {
  39349. name: "Macro-erst",
  39350. height: math.unit(10, "km")
  39351. },
  39352. {
  39353. name: "Macro-Macro",
  39354. height: math.unit(100, "km")
  39355. },
  39356. ]
  39357. ))
  39358. characterMakers.push(() => makeCharacter(
  39359. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39360. {
  39361. front: {
  39362. height: math.unit(11 + 9/12, "feet"),
  39363. weight: math.unit(935, "lb"),
  39364. name: "Front",
  39365. image: {
  39366. source: "./media/characters/kingsley/front.svg",
  39367. extra: 1803/1674,
  39368. bottom: 127/1930
  39369. }
  39370. },
  39371. frontNude: {
  39372. height: math.unit(11 + 9/12, "feet"),
  39373. weight: math.unit(935, "lb"),
  39374. name: "Front (Nude)",
  39375. image: {
  39376. source: "./media/characters/kingsley/front-nude.svg",
  39377. extra: 1803/1674,
  39378. bottom: 127/1930
  39379. }
  39380. },
  39381. },
  39382. [
  39383. {
  39384. name: "Normal",
  39385. height: math.unit(11 + 9/12, "feet"),
  39386. default: true
  39387. },
  39388. ]
  39389. ))
  39390. characterMakers.push(() => makeCharacter(
  39391. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39392. {
  39393. side: {
  39394. height: math.unit(9, "feet"),
  39395. name: "Side",
  39396. image: {
  39397. source: "./media/characters/rymel/side.svg",
  39398. extra: 792/469,
  39399. bottom: 121/913
  39400. }
  39401. },
  39402. maw: {
  39403. height: math.unit(2.4, "meters"),
  39404. name: "Maw",
  39405. image: {
  39406. source: "./media/characters/rymel/maw.svg"
  39407. }
  39408. },
  39409. },
  39410. [
  39411. {
  39412. name: "House Drake",
  39413. height: math.unit(2, "feet")
  39414. },
  39415. {
  39416. name: "Reduced",
  39417. height: math.unit(4.5, "feet")
  39418. },
  39419. {
  39420. name: "Normal",
  39421. height: math.unit(9, "feet"),
  39422. default: true
  39423. },
  39424. ]
  39425. ))
  39426. characterMakers.push(() => makeCharacter(
  39427. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39428. {
  39429. front: {
  39430. height: math.unit(1.74, "meters"),
  39431. weight: math.unit(55, "kg"),
  39432. name: "Front",
  39433. image: {
  39434. source: "./media/characters/rubus/front.svg",
  39435. extra: 1894/1742,
  39436. bottom: 44/1938
  39437. }
  39438. },
  39439. },
  39440. [
  39441. {
  39442. name: "Normal",
  39443. height: math.unit(1.74, "meters"),
  39444. default: true
  39445. },
  39446. ]
  39447. ))
  39448. characterMakers.push(() => makeCharacter(
  39449. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39450. {
  39451. front: {
  39452. height: math.unit(5 + 2/12, "feet"),
  39453. weight: math.unit(112, "lb"),
  39454. name: "Front",
  39455. image: {
  39456. source: "./media/characters/cassie-kingston/front.svg",
  39457. extra: 1438/1390,
  39458. bottom: 47/1485
  39459. }
  39460. },
  39461. },
  39462. [
  39463. {
  39464. name: "Normal",
  39465. height: math.unit(5 + 2/12, "feet"),
  39466. default: true
  39467. },
  39468. {
  39469. name: "Macro",
  39470. height: math.unit(128, "feet")
  39471. },
  39472. {
  39473. name: "Megamacro",
  39474. height: math.unit(2.56, "miles")
  39475. },
  39476. ]
  39477. ))
  39478. characterMakers.push(() => makeCharacter(
  39479. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39480. {
  39481. front: {
  39482. height: math.unit(7, "feet"),
  39483. name: "Front",
  39484. image: {
  39485. source: "./media/characters/fox/front.svg",
  39486. extra: 1798/1703,
  39487. bottom: 55/1853
  39488. }
  39489. },
  39490. back: {
  39491. height: math.unit(7, "feet"),
  39492. name: "Back",
  39493. image: {
  39494. source: "./media/characters/fox/back.svg",
  39495. extra: 1748/1649,
  39496. bottom: 32/1780
  39497. }
  39498. },
  39499. head: {
  39500. height: math.unit(1.95, "feet"),
  39501. name: "Head",
  39502. image: {
  39503. source: "./media/characters/fox/head.svg"
  39504. }
  39505. },
  39506. dick: {
  39507. height: math.unit(1.33, "feet"),
  39508. name: "Dick",
  39509. image: {
  39510. source: "./media/characters/fox/dick.svg"
  39511. }
  39512. },
  39513. foot: {
  39514. height: math.unit(1, "feet"),
  39515. name: "Foot",
  39516. image: {
  39517. source: "./media/characters/fox/foot.svg"
  39518. }
  39519. },
  39520. paw: {
  39521. height: math.unit(0.92, "feet"),
  39522. name: "Paw",
  39523. image: {
  39524. source: "./media/characters/fox/paw.svg"
  39525. }
  39526. },
  39527. },
  39528. [
  39529. {
  39530. name: "Small",
  39531. height: math.unit(3, "inches")
  39532. },
  39533. {
  39534. name: "\"Realistic\"",
  39535. height: math.unit(7, "feet")
  39536. },
  39537. {
  39538. name: "Normal",
  39539. height: math.unit(150, "feet"),
  39540. default: true
  39541. },
  39542. {
  39543. name: "BIG",
  39544. height: math.unit(1200, "feet")
  39545. },
  39546. {
  39547. name: "👀",
  39548. height: math.unit(5, "miles")
  39549. },
  39550. {
  39551. name: "👀👀👀",
  39552. height: math.unit(64, "miles")
  39553. },
  39554. ]
  39555. ))
  39556. characterMakers.push(() => makeCharacter(
  39557. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39558. {
  39559. front: {
  39560. height: math.unit(625, "feet"),
  39561. name: "Front",
  39562. image: {
  39563. source: "./media/characters/asonja-rossa/front.svg",
  39564. extra: 1833/1686,
  39565. bottom: 24/1857
  39566. }
  39567. },
  39568. back: {
  39569. height: math.unit(625, "feet"),
  39570. name: "Back",
  39571. image: {
  39572. source: "./media/characters/asonja-rossa/back.svg",
  39573. extra: 1852/1753,
  39574. bottom: 26/1878
  39575. }
  39576. },
  39577. },
  39578. [
  39579. {
  39580. name: "Macro",
  39581. height: math.unit(625, "feet"),
  39582. default: true
  39583. },
  39584. ]
  39585. ))
  39586. characterMakers.push(() => makeCharacter(
  39587. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39588. {
  39589. side: {
  39590. height: math.unit(8, "feet"),
  39591. name: "Side",
  39592. image: {
  39593. source: "./media/characters/rezukii/side.svg",
  39594. extra: 979/542,
  39595. bottom: 87/1066
  39596. }
  39597. },
  39598. sitting: {
  39599. height: math.unit(14.6, "feet"),
  39600. name: "Sitting",
  39601. image: {
  39602. source: "./media/characters/rezukii/sitting.svg",
  39603. extra: 1023/813,
  39604. bottom: 45/1068
  39605. }
  39606. },
  39607. },
  39608. [
  39609. {
  39610. name: "Tiny",
  39611. height: math.unit(2, "feet")
  39612. },
  39613. {
  39614. name: "Smol",
  39615. height: math.unit(4, "feet")
  39616. },
  39617. {
  39618. name: "Normal",
  39619. height: math.unit(8, "feet"),
  39620. default: true
  39621. },
  39622. {
  39623. name: "Big",
  39624. height: math.unit(12, "feet")
  39625. },
  39626. {
  39627. name: "Macro",
  39628. height: math.unit(30, "feet")
  39629. },
  39630. ]
  39631. ))
  39632. characterMakers.push(() => makeCharacter(
  39633. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39634. {
  39635. front: {
  39636. height: math.unit(14, "feet"),
  39637. weight: math.unit(9.5, "tonnes"),
  39638. name: "Front",
  39639. image: {
  39640. source: "./media/characters/dawnheart/front.svg",
  39641. extra: 2792/2675,
  39642. bottom: 64/2856
  39643. }
  39644. },
  39645. },
  39646. [
  39647. {
  39648. name: "Normal",
  39649. height: math.unit(14, "feet"),
  39650. default: true
  39651. },
  39652. ]
  39653. ))
  39654. characterMakers.push(() => makeCharacter(
  39655. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39656. {
  39657. front: {
  39658. height: math.unit(1.7, "m"),
  39659. name: "Front",
  39660. image: {
  39661. source: "./media/characters/gladi/front.svg",
  39662. extra: 1460/1362,
  39663. bottom: 19/1479
  39664. }
  39665. },
  39666. back: {
  39667. height: math.unit(1.7, "m"),
  39668. name: "Back",
  39669. image: {
  39670. source: "./media/characters/gladi/back.svg",
  39671. extra: 1459/1357,
  39672. bottom: 12/1471
  39673. }
  39674. },
  39675. feral: {
  39676. height: math.unit(2.05, "m"),
  39677. name: "Feral",
  39678. image: {
  39679. source: "./media/characters/gladi/feral.svg",
  39680. extra: 821/557,
  39681. bottom: 91/912
  39682. }
  39683. },
  39684. },
  39685. [
  39686. {
  39687. name: "Shortest",
  39688. height: math.unit(70, "cm")
  39689. },
  39690. {
  39691. name: "Normal",
  39692. height: math.unit(1.7, "m")
  39693. },
  39694. {
  39695. name: "Macro",
  39696. height: math.unit(10, "m"),
  39697. default: true
  39698. },
  39699. {
  39700. name: "Tallest",
  39701. height: math.unit(200, "m")
  39702. },
  39703. ]
  39704. ))
  39705. characterMakers.push(() => makeCharacter(
  39706. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39707. {
  39708. front: {
  39709. height: math.unit(5 + 7/12, "feet"),
  39710. weight: math.unit(2, "tons"),
  39711. name: "Front",
  39712. image: {
  39713. source: "./media/characters/erdno/front.svg",
  39714. extra: 1234/1129,
  39715. bottom: 35/1269
  39716. }
  39717. },
  39718. angled: {
  39719. height: math.unit(5 + 7/12, "feet"),
  39720. weight: math.unit(2, "tons"),
  39721. name: "Angled",
  39722. image: {
  39723. source: "./media/characters/erdno/angled.svg",
  39724. extra: 1185/1139,
  39725. bottom: 36/1221
  39726. }
  39727. },
  39728. side: {
  39729. height: math.unit(5 + 7/12, "feet"),
  39730. weight: math.unit(2, "tons"),
  39731. name: "Side",
  39732. image: {
  39733. source: "./media/characters/erdno/side.svg",
  39734. extra: 1191/1144,
  39735. bottom: 40/1231
  39736. }
  39737. },
  39738. back: {
  39739. height: math.unit(5 + 7/12, "feet"),
  39740. weight: math.unit(2, "tons"),
  39741. name: "Back",
  39742. image: {
  39743. source: "./media/characters/erdno/back.svg",
  39744. extra: 1202/1146,
  39745. bottom: 17/1219
  39746. }
  39747. },
  39748. frontNsfw: {
  39749. height: math.unit(5 + 7/12, "feet"),
  39750. weight: math.unit(2, "tons"),
  39751. name: "Front (NSFW)",
  39752. image: {
  39753. source: "./media/characters/erdno/front-nsfw.svg",
  39754. extra: 1234/1129,
  39755. bottom: 35/1269
  39756. }
  39757. },
  39758. angledNsfw: {
  39759. height: math.unit(5 + 7/12, "feet"),
  39760. weight: math.unit(2, "tons"),
  39761. name: "Angled (NSFW)",
  39762. image: {
  39763. source: "./media/characters/erdno/angled-nsfw.svg",
  39764. extra: 1185/1139,
  39765. bottom: 36/1221
  39766. }
  39767. },
  39768. sideNsfw: {
  39769. height: math.unit(5 + 7/12, "feet"),
  39770. weight: math.unit(2, "tons"),
  39771. name: "Side (NSFW)",
  39772. image: {
  39773. source: "./media/characters/erdno/side-nsfw.svg",
  39774. extra: 1191/1144,
  39775. bottom: 40/1231
  39776. }
  39777. },
  39778. backNsfw: {
  39779. height: math.unit(5 + 7/12, "feet"),
  39780. weight: math.unit(2, "tons"),
  39781. name: "Back (NSFW)",
  39782. image: {
  39783. source: "./media/characters/erdno/back-nsfw.svg",
  39784. extra: 1202/1146,
  39785. bottom: 17/1219
  39786. }
  39787. },
  39788. frontHyper: {
  39789. height: math.unit(5 + 7/12, "feet"),
  39790. weight: math.unit(2, "tons"),
  39791. name: "Front (Hyper)",
  39792. image: {
  39793. source: "./media/characters/erdno/front-hyper.svg",
  39794. extra: 1298/1136,
  39795. bottom: 35/1333
  39796. }
  39797. },
  39798. },
  39799. [
  39800. {
  39801. name: "Normal",
  39802. height: math.unit(5 + 7/12, "feet"),
  39803. default: true
  39804. },
  39805. {
  39806. name: "Big",
  39807. height: math.unit(5.7, "meters")
  39808. },
  39809. {
  39810. name: "Macro",
  39811. height: math.unit(5.7, "kilometers")
  39812. },
  39813. {
  39814. name: "Megamacro",
  39815. height: math.unit(5.7, "earths")
  39816. },
  39817. ]
  39818. ))
  39819. characterMakers.push(() => makeCharacter(
  39820. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39821. {
  39822. front: {
  39823. height: math.unit(5 + 10/12, "feet"),
  39824. weight: math.unit(150, "lb"),
  39825. name: "Front",
  39826. image: {
  39827. source: "./media/characters/jamie/front.svg",
  39828. extra: 1908/1768,
  39829. bottom: 19/1927
  39830. }
  39831. },
  39832. },
  39833. [
  39834. {
  39835. name: "Minimum",
  39836. height: math.unit(2, "cm")
  39837. },
  39838. {
  39839. name: "Micro",
  39840. height: math.unit(3, "inches")
  39841. },
  39842. {
  39843. name: "Normal",
  39844. height: math.unit(5 + 10/12, "feet"),
  39845. default: true
  39846. },
  39847. {
  39848. name: "Macro",
  39849. height: math.unit(150, "feet")
  39850. },
  39851. {
  39852. name: "Megamacro",
  39853. height: math.unit(10000, "m")
  39854. },
  39855. ]
  39856. ))
  39857. characterMakers.push(() => makeCharacter(
  39858. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39859. {
  39860. front: {
  39861. height: math.unit(2, "meters"),
  39862. weight: math.unit(100, "kg"),
  39863. name: "Front",
  39864. image: {
  39865. source: "./media/characters/shiron/front.svg",
  39866. extra: 2103/1985,
  39867. bottom: 98/2201
  39868. }
  39869. },
  39870. back: {
  39871. height: math.unit(2, "meters"),
  39872. weight: math.unit(100, "kg"),
  39873. name: "Back",
  39874. image: {
  39875. source: "./media/characters/shiron/back.svg",
  39876. extra: 2110/2015,
  39877. bottom: 89/2199
  39878. }
  39879. },
  39880. hand: {
  39881. height: math.unit(0.96, "feet"),
  39882. name: "Hand",
  39883. image: {
  39884. source: "./media/characters/shiron/hand.svg"
  39885. }
  39886. },
  39887. foot: {
  39888. height: math.unit(1.464, "feet"),
  39889. name: "Foot",
  39890. image: {
  39891. source: "./media/characters/shiron/foot.svg"
  39892. }
  39893. },
  39894. },
  39895. [
  39896. {
  39897. name: "Normal",
  39898. height: math.unit(2, "meters")
  39899. },
  39900. {
  39901. name: "Macro",
  39902. height: math.unit(500, "meters"),
  39903. default: true
  39904. },
  39905. {
  39906. name: "Megamacro",
  39907. height: math.unit(20, "km")
  39908. },
  39909. ]
  39910. ))
  39911. characterMakers.push(() => makeCharacter(
  39912. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39913. {
  39914. front: {
  39915. height: math.unit(6, "feet"),
  39916. name: "Front",
  39917. image: {
  39918. source: "./media/characters/sam/front.svg",
  39919. extra: 849/826,
  39920. bottom: 19/868
  39921. }
  39922. },
  39923. },
  39924. [
  39925. {
  39926. name: "Normal",
  39927. height: math.unit(6, "feet"),
  39928. default: true
  39929. },
  39930. ]
  39931. ))
  39932. characterMakers.push(() => makeCharacter(
  39933. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39934. {
  39935. front: {
  39936. height: math.unit(8 + 4/12, "feet"),
  39937. weight: math.unit(122, "kg"),
  39938. name: "Front",
  39939. image: {
  39940. source: "./media/characters/namori-kurogawa/front.svg",
  39941. extra: 1894/1576,
  39942. bottom: 34/1928
  39943. }
  39944. },
  39945. },
  39946. [
  39947. {
  39948. name: "Normal",
  39949. height: math.unit(8 + 4/12, "feet"),
  39950. default: true
  39951. },
  39952. ]
  39953. ))
  39954. characterMakers.push(() => makeCharacter(
  39955. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39956. {
  39957. front: {
  39958. height: math.unit(9, "feet"),
  39959. weight: math.unit(621, "lb"),
  39960. name: "Front",
  39961. image: {
  39962. source: "./media/characters/unmru/front.svg",
  39963. extra: 1853/1747,
  39964. bottom: 73/1926
  39965. }
  39966. },
  39967. side: {
  39968. height: math.unit(9, "feet"),
  39969. weight: math.unit(621, "lb"),
  39970. name: "Side",
  39971. image: {
  39972. source: "./media/characters/unmru/side.svg",
  39973. extra: 1781/1671,
  39974. bottom: 127/1908
  39975. }
  39976. },
  39977. back: {
  39978. height: math.unit(9, "feet"),
  39979. weight: math.unit(621, "lb"),
  39980. name: "Back",
  39981. image: {
  39982. source: "./media/characters/unmru/back.svg",
  39983. extra: 1894/1765,
  39984. bottom: 75/1969
  39985. }
  39986. },
  39987. dick: {
  39988. height: math.unit(3, "feet"),
  39989. weight: math.unit(35, "lb"),
  39990. name: "Dick",
  39991. image: {
  39992. source: "./media/characters/unmru/dick.svg"
  39993. }
  39994. },
  39995. },
  39996. [
  39997. {
  39998. name: "Normal",
  39999. height: math.unit(9, "feet")
  40000. },
  40001. {
  40002. name: "Natural",
  40003. height: math.unit(27, "feet"),
  40004. default: true
  40005. },
  40006. {
  40007. name: "Giant",
  40008. height: math.unit(90, "feet")
  40009. },
  40010. {
  40011. name: "Kaiju",
  40012. height: math.unit(270, "feet")
  40013. },
  40014. {
  40015. name: "Macro",
  40016. height: math.unit(900, "feet")
  40017. },
  40018. {
  40019. name: "Macro+",
  40020. height: math.unit(2700, "feet")
  40021. },
  40022. {
  40023. name: "Megamacro",
  40024. height: math.unit(9000, "feet")
  40025. },
  40026. {
  40027. name: "City-Crushing",
  40028. height: math.unit(27000, "feet")
  40029. },
  40030. {
  40031. name: "Mountain-Mashing",
  40032. height: math.unit(90000, "feet")
  40033. },
  40034. {
  40035. name: "Earth-Eclipsing",
  40036. height: math.unit(2.7e8, "feet")
  40037. },
  40038. {
  40039. name: "Sol-Swallowing",
  40040. height: math.unit(9e10, "feet")
  40041. },
  40042. {
  40043. name: "Majoris-Munching",
  40044. height: math.unit(2.7e13, "feet")
  40045. },
  40046. ]
  40047. ))
  40048. characterMakers.push(() => makeCharacter(
  40049. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40050. {
  40051. front: {
  40052. height: math.unit(1, "inch"),
  40053. name: "Front",
  40054. image: {
  40055. source: "./media/characters/squeaks-mouse/front.svg",
  40056. extra: 352/308,
  40057. bottom: 25/377
  40058. }
  40059. },
  40060. },
  40061. [
  40062. {
  40063. name: "Micro",
  40064. height: math.unit(1, "inch"),
  40065. default: true
  40066. },
  40067. ]
  40068. ))
  40069. characterMakers.push(() => makeCharacter(
  40070. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40071. {
  40072. side: {
  40073. height: math.unit(35, "feet"),
  40074. name: "Side",
  40075. image: {
  40076. source: "./media/characters/sayko/side.svg",
  40077. extra: 1697/1021,
  40078. bottom: 82/1779
  40079. }
  40080. },
  40081. head: {
  40082. height: math.unit(16, "feet"),
  40083. name: "Head",
  40084. image: {
  40085. source: "./media/characters/sayko/head.svg"
  40086. }
  40087. },
  40088. forepaw: {
  40089. height: math.unit(7.85, "feet"),
  40090. name: "Forepaw",
  40091. image: {
  40092. source: "./media/characters/sayko/forepaw.svg"
  40093. }
  40094. },
  40095. hindpaw: {
  40096. height: math.unit(8.8, "feet"),
  40097. name: "Hindpaw",
  40098. image: {
  40099. source: "./media/characters/sayko/hindpaw.svg"
  40100. }
  40101. },
  40102. },
  40103. [
  40104. {
  40105. name: "Normal",
  40106. height: math.unit(35, "feet"),
  40107. default: true
  40108. },
  40109. {
  40110. name: "Colossus",
  40111. height: math.unit(100, "meters")
  40112. },
  40113. {
  40114. name: "\"Small\" Deity",
  40115. height: math.unit(1, "km")
  40116. },
  40117. {
  40118. name: "\"Large\" Deity",
  40119. height: math.unit(15, "km")
  40120. },
  40121. ]
  40122. ))
  40123. characterMakers.push(() => makeCharacter(
  40124. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40125. {
  40126. front: {
  40127. height: math.unit(6, "feet"),
  40128. weight: math.unit(250, "lb"),
  40129. name: "Front",
  40130. image: {
  40131. source: "./media/characters/mukiro/front.svg",
  40132. extra: 1368/1310,
  40133. bottom: 34/1402
  40134. }
  40135. },
  40136. },
  40137. [
  40138. {
  40139. name: "Normal",
  40140. height: math.unit(6, "feet"),
  40141. default: true
  40142. },
  40143. ]
  40144. ))
  40145. characterMakers.push(() => makeCharacter(
  40146. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40147. {
  40148. front: {
  40149. height: math.unit(12 + 4/12, "feet"),
  40150. name: "Front",
  40151. image: {
  40152. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40153. extra: 1346/1311,
  40154. bottom: 65/1411
  40155. }
  40156. },
  40157. },
  40158. [
  40159. {
  40160. name: "Base",
  40161. height: math.unit(12 + 4/12, "feet"),
  40162. default: true
  40163. },
  40164. {
  40165. name: "Macro",
  40166. height: math.unit(150, "feet")
  40167. },
  40168. {
  40169. name: "Mega",
  40170. height: math.unit(2, "miles")
  40171. },
  40172. {
  40173. name: "Demi God",
  40174. height: math.unit(4, "AU")
  40175. },
  40176. {
  40177. name: "God Size",
  40178. height: math.unit(1, "universe")
  40179. },
  40180. ]
  40181. ))
  40182. characterMakers.push(() => makeCharacter(
  40183. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40184. {
  40185. front: {
  40186. height: math.unit(3 + 3/12, "feet"),
  40187. weight: math.unit(88, "lb"),
  40188. name: "Front",
  40189. image: {
  40190. source: "./media/characters/trey/front.svg",
  40191. extra: 1815/1509,
  40192. bottom: 60/1875
  40193. }
  40194. },
  40195. },
  40196. [
  40197. {
  40198. name: "Normal",
  40199. height: math.unit(3 + 3/12, "feet"),
  40200. default: true
  40201. },
  40202. ]
  40203. ))
  40204. characterMakers.push(() => makeCharacter(
  40205. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40206. {
  40207. front: {
  40208. height: math.unit(4, "meters"),
  40209. name: "Front",
  40210. image: {
  40211. source: "./media/characters/adelonda/front.svg",
  40212. extra: 1077/982,
  40213. bottom: 39/1116
  40214. }
  40215. },
  40216. back: {
  40217. height: math.unit(4, "meters"),
  40218. name: "Back",
  40219. image: {
  40220. source: "./media/characters/adelonda/back.svg",
  40221. extra: 1105/1003,
  40222. bottom: 25/1130
  40223. }
  40224. },
  40225. feral: {
  40226. height: math.unit(40/1.5, "meters"),
  40227. name: "Feral",
  40228. image: {
  40229. source: "./media/characters/adelonda/feral.svg",
  40230. extra: 597/271,
  40231. bottom: 387/984
  40232. }
  40233. },
  40234. },
  40235. [
  40236. {
  40237. name: "Normal",
  40238. height: math.unit(4, "meters"),
  40239. default: true
  40240. },
  40241. ]
  40242. ))
  40243. characterMakers.push(() => makeCharacter(
  40244. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40245. {
  40246. front: {
  40247. height: math.unit(8 + 4/12, "feet"),
  40248. weight: math.unit(670, "lb"),
  40249. name: "Front",
  40250. image: {
  40251. source: "./media/characters/acadiel/front.svg",
  40252. extra: 1901/1595,
  40253. bottom: 142/2043
  40254. }
  40255. },
  40256. },
  40257. [
  40258. {
  40259. name: "Normal",
  40260. height: math.unit(8 + 4/12, "feet"),
  40261. default: true
  40262. },
  40263. {
  40264. name: "Macro",
  40265. height: math.unit(200, "feet")
  40266. },
  40267. ]
  40268. ))
  40269. characterMakers.push(() => makeCharacter(
  40270. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40271. {
  40272. front: {
  40273. height: math.unit(6 + 2/12, "feet"),
  40274. weight: math.unit(185, "lb"),
  40275. name: "Front",
  40276. image: {
  40277. source: "./media/characters/kayne-ein/front.svg",
  40278. extra: 1780/1560,
  40279. bottom: 81/1861
  40280. }
  40281. },
  40282. },
  40283. [
  40284. {
  40285. name: "Normal",
  40286. height: math.unit(6 + 2/12, "feet"),
  40287. default: true
  40288. },
  40289. {
  40290. name: "Transformation Stage",
  40291. height: math.unit(15, "feet")
  40292. },
  40293. {
  40294. name: "Macro",
  40295. height: math.unit(150, "feet")
  40296. },
  40297. {
  40298. name: "Earth's Shadow",
  40299. height: math.unit(6200, "miles")
  40300. },
  40301. {
  40302. name: "Universal Demon",
  40303. height: math.unit(28e9, "parsecs")
  40304. },
  40305. {
  40306. name: "Multiverse God",
  40307. height: math.unit(3, "multiverses")
  40308. },
  40309. ]
  40310. ))
  40311. characterMakers.push(() => makeCharacter(
  40312. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40313. {
  40314. front: {
  40315. height: math.unit(5 + 5/12, "feet"),
  40316. name: "Front",
  40317. image: {
  40318. source: "./media/characters/fawn/front.svg",
  40319. extra: 1873/1731,
  40320. bottom: 95/1968
  40321. }
  40322. },
  40323. back: {
  40324. height: math.unit(5 + 5/12, "feet"),
  40325. name: "Back",
  40326. image: {
  40327. source: "./media/characters/fawn/back.svg",
  40328. extra: 1813/1700,
  40329. bottom: 14/1827
  40330. }
  40331. },
  40332. hoof: {
  40333. height: math.unit(1.45, "feet"),
  40334. name: "Hoof",
  40335. image: {
  40336. source: "./media/characters/fawn/hoof.svg"
  40337. }
  40338. },
  40339. },
  40340. [
  40341. {
  40342. name: "Normal",
  40343. height: math.unit(5 + 5/12, "feet"),
  40344. default: true
  40345. },
  40346. ]
  40347. ))
  40348. characterMakers.push(() => makeCharacter(
  40349. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40350. {
  40351. front: {
  40352. height: math.unit(2 + 5/12, "feet"),
  40353. name: "Front",
  40354. image: {
  40355. source: "./media/characters/orion/front.svg",
  40356. extra: 1366/1304,
  40357. bottom: 43/1409
  40358. }
  40359. },
  40360. paw: {
  40361. height: math.unit(0.52, "feet"),
  40362. name: "Paw",
  40363. image: {
  40364. source: "./media/characters/orion/paw.svg"
  40365. }
  40366. },
  40367. },
  40368. [
  40369. {
  40370. name: "Normal",
  40371. height: math.unit(2 + 5/12, "feet"),
  40372. default: true
  40373. },
  40374. ]
  40375. ))
  40376. characterMakers.push(() => makeCharacter(
  40377. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40378. {
  40379. front: {
  40380. height: math.unit(5 + 10/12, "feet"),
  40381. name: "Front",
  40382. image: {
  40383. source: "./media/characters/vera/front.svg",
  40384. extra: 1680/1575,
  40385. bottom: 49/1729
  40386. }
  40387. },
  40388. back: {
  40389. height: math.unit(5 + 10/12, "feet"),
  40390. name: "Back",
  40391. image: {
  40392. source: "./media/characters/vera/back.svg",
  40393. extra: 1700/1588,
  40394. bottom: 18/1718
  40395. }
  40396. },
  40397. arcanine: {
  40398. height: math.unit(6 + 8/12, "feet"),
  40399. name: "Arcanine",
  40400. image: {
  40401. source: "./media/characters/vera/arcanine.svg",
  40402. extra: 1590/1511,
  40403. bottom: 71/1661
  40404. }
  40405. },
  40406. maw: {
  40407. height: math.unit(0.82, "feet"),
  40408. name: "Maw",
  40409. image: {
  40410. source: "./media/characters/vera/maw.svg"
  40411. }
  40412. },
  40413. mawArcanine: {
  40414. height: math.unit(0.97, "feet"),
  40415. name: "Maw (Arcanine)",
  40416. image: {
  40417. source: "./media/characters/vera/maw-arcanine.svg"
  40418. }
  40419. },
  40420. paw: {
  40421. height: math.unit(0.75, "feet"),
  40422. name: "Paw",
  40423. image: {
  40424. source: "./media/characters/vera/paw.svg"
  40425. }
  40426. },
  40427. pawprint: {
  40428. height: math.unit(0.52, "feet"),
  40429. name: "Pawprint",
  40430. image: {
  40431. source: "./media/characters/vera/pawprint.svg"
  40432. }
  40433. },
  40434. },
  40435. [
  40436. {
  40437. name: "Normal",
  40438. height: math.unit(5 + 10/12, "feet"),
  40439. default: true
  40440. },
  40441. {
  40442. name: "Macro",
  40443. height: math.unit(75, "feet")
  40444. },
  40445. ]
  40446. ))
  40447. characterMakers.push(() => makeCharacter(
  40448. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40449. {
  40450. front: {
  40451. height: math.unit(4, "feet"),
  40452. weight: math.unit(40, "lb"),
  40453. name: "Front",
  40454. image: {
  40455. source: "./media/characters/orvan-rabbit/front.svg",
  40456. extra: 1896/1642,
  40457. bottom: 29/1925
  40458. }
  40459. },
  40460. },
  40461. [
  40462. {
  40463. name: "Normal",
  40464. height: math.unit(4, "feet"),
  40465. default: true
  40466. },
  40467. ]
  40468. ))
  40469. characterMakers.push(() => makeCharacter(
  40470. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40471. {
  40472. front: {
  40473. height: math.unit(6, "feet"),
  40474. weight: math.unit(168, "lb"),
  40475. name: "Front",
  40476. image: {
  40477. source: "./media/characters/lisa/front.svg",
  40478. extra: 2065/1867,
  40479. bottom: 46/2111
  40480. }
  40481. },
  40482. back: {
  40483. height: math.unit(6, "feet"),
  40484. weight: math.unit(168, "lb"),
  40485. name: "Back",
  40486. image: {
  40487. source: "./media/characters/lisa/back.svg",
  40488. extra: 1982/1838,
  40489. bottom: 29/2011
  40490. }
  40491. },
  40492. maw: {
  40493. height: math.unit(0.81, "feet"),
  40494. name: "Maw",
  40495. image: {
  40496. source: "./media/characters/lisa/maw.svg"
  40497. }
  40498. },
  40499. paw: {
  40500. height: math.unit(0.9, "feet"),
  40501. name: "Paw",
  40502. image: {
  40503. source: "./media/characters/lisa/paw.svg"
  40504. }
  40505. },
  40506. caribousune: {
  40507. height: math.unit(7 + 2/12, "feet"),
  40508. weight: math.unit(268, "lb"),
  40509. name: "Caribousune",
  40510. image: {
  40511. source: "./media/characters/lisa/caribousune.svg",
  40512. extra: 1843/1633,
  40513. bottom: 29/1872
  40514. }
  40515. },
  40516. frontCaribousune: {
  40517. height: math.unit(7 + 2/12, "feet"),
  40518. weight: math.unit(268, "lb"),
  40519. name: "Front (Caribousune)",
  40520. image: {
  40521. source: "./media/characters/lisa/front-caribousune.svg",
  40522. extra: 1818/1638,
  40523. bottom: 52/1870
  40524. }
  40525. },
  40526. sideCaribousune: {
  40527. height: math.unit(7 + 2/12, "feet"),
  40528. weight: math.unit(268, "lb"),
  40529. name: "Side (Caribousune)",
  40530. image: {
  40531. source: "./media/characters/lisa/side-caribousune.svg",
  40532. extra: 1851/1635,
  40533. bottom: 16/1867
  40534. }
  40535. },
  40536. backCaribousune: {
  40537. height: math.unit(7 + 2/12, "feet"),
  40538. weight: math.unit(268, "lb"),
  40539. name: "Back (Caribousune)",
  40540. image: {
  40541. source: "./media/characters/lisa/back-caribousune.svg",
  40542. extra: 1801/1604,
  40543. bottom: 44/1845
  40544. }
  40545. },
  40546. caribou: {
  40547. height: math.unit(7 + 2/12, "feet"),
  40548. weight: math.unit(268, "lb"),
  40549. name: "Caribou",
  40550. image: {
  40551. source: "./media/characters/lisa/caribou.svg",
  40552. extra: 1843/1633,
  40553. bottom: 29/1872
  40554. }
  40555. },
  40556. frontCaribou: {
  40557. height: math.unit(7 + 2/12, "feet"),
  40558. weight: math.unit(268, "lb"),
  40559. name: "Front (Caribou)",
  40560. image: {
  40561. source: "./media/characters/lisa/front-caribou.svg",
  40562. extra: 1818/1638,
  40563. bottom: 52/1870
  40564. }
  40565. },
  40566. sideCaribou: {
  40567. height: math.unit(7 + 2/12, "feet"),
  40568. weight: math.unit(268, "lb"),
  40569. name: "Side (Caribou)",
  40570. image: {
  40571. source: "./media/characters/lisa/side-caribou.svg",
  40572. extra: 1851/1635,
  40573. bottom: 16/1867
  40574. }
  40575. },
  40576. backCaribou: {
  40577. height: math.unit(7 + 2/12, "feet"),
  40578. weight: math.unit(268, "lb"),
  40579. name: "Back (Caribou)",
  40580. image: {
  40581. source: "./media/characters/lisa/back-caribou.svg",
  40582. extra: 1801/1604,
  40583. bottom: 44/1845
  40584. }
  40585. },
  40586. mawCaribou: {
  40587. height: math.unit(1.45, "feet"),
  40588. name: "Maw (Caribou)",
  40589. image: {
  40590. source: "./media/characters/lisa/maw-caribou.svg"
  40591. }
  40592. },
  40593. mawCaribousune: {
  40594. height: math.unit(1.45, "feet"),
  40595. name: "Maw (Caribousune)",
  40596. image: {
  40597. source: "./media/characters/lisa/maw-caribousune.svg"
  40598. }
  40599. },
  40600. pawCaribousune: {
  40601. height: math.unit(1.61, "feet"),
  40602. name: "Paw (Caribou)",
  40603. image: {
  40604. source: "./media/characters/lisa/paw-caribousune.svg"
  40605. }
  40606. },
  40607. },
  40608. [
  40609. {
  40610. name: "Normal",
  40611. height: math.unit(6, "feet")
  40612. },
  40613. {
  40614. name: "God Size",
  40615. height: math.unit(72, "feet"),
  40616. default: true
  40617. },
  40618. {
  40619. name: "Towering",
  40620. height: math.unit(288, "feet")
  40621. },
  40622. {
  40623. name: "City Size",
  40624. height: math.unit(48384, "feet")
  40625. },
  40626. {
  40627. name: "Continental",
  40628. height: math.unit(4200, "miles")
  40629. },
  40630. {
  40631. name: "Planet Eater",
  40632. height: math.unit(42, "earths")
  40633. },
  40634. {
  40635. name: "Star Swallower",
  40636. height: math.unit(42, "solarradii")
  40637. },
  40638. {
  40639. name: "System Swallower",
  40640. height: math.unit(84000, "AU")
  40641. },
  40642. {
  40643. name: "Galaxy Gobbler",
  40644. height: math.unit(42, "galaxies")
  40645. },
  40646. {
  40647. name: "Universe Devourer",
  40648. height: math.unit(42, "universes")
  40649. },
  40650. {
  40651. name: "Multiverse Muncher",
  40652. height: math.unit(42, "multiverses")
  40653. },
  40654. ]
  40655. ))
  40656. characterMakers.push(() => makeCharacter(
  40657. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40658. {
  40659. front: {
  40660. height: math.unit(36, "feet"),
  40661. name: "Front",
  40662. image: {
  40663. source: "./media/characters/shadow-rat/front.svg",
  40664. extra: 1845/1758,
  40665. bottom: 83/1928
  40666. }
  40667. },
  40668. },
  40669. [
  40670. {
  40671. name: "Macro",
  40672. height: math.unit(36, "feet"),
  40673. default: true
  40674. },
  40675. ]
  40676. ))
  40677. characterMakers.push(() => makeCharacter(
  40678. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40679. {
  40680. side: {
  40681. height: math.unit(8, "feet"),
  40682. weight: math.unit(2630, "lb"),
  40683. name: "Side",
  40684. image: {
  40685. source: "./media/characters/torallia/side.svg",
  40686. extra: 2164/2021,
  40687. bottom: 371/2535
  40688. }
  40689. },
  40690. },
  40691. [
  40692. {
  40693. name: "Mortal Interaction",
  40694. height: math.unit(8, "feet")
  40695. },
  40696. {
  40697. name: "Natural",
  40698. height: math.unit(24, "feet"),
  40699. default: true
  40700. },
  40701. {
  40702. name: "Giant",
  40703. height: math.unit(80, "feet")
  40704. },
  40705. {
  40706. name: "Kaiju",
  40707. height: math.unit(240, "feet")
  40708. },
  40709. {
  40710. name: "Macro",
  40711. height: math.unit(800, "feet")
  40712. },
  40713. {
  40714. name: "Macro+",
  40715. height: math.unit(2400, "feet")
  40716. },
  40717. {
  40718. name: "Macro++",
  40719. height: math.unit(8000, "feet")
  40720. },
  40721. {
  40722. name: "City-Crushing",
  40723. height: math.unit(24000, "feet")
  40724. },
  40725. {
  40726. name: "Mountain-Mashing",
  40727. height: math.unit(80000, "feet")
  40728. },
  40729. {
  40730. name: "District Demolisher",
  40731. height: math.unit(240000, "feet")
  40732. },
  40733. {
  40734. name: "Tri-County Terror",
  40735. height: math.unit(800000, "feet")
  40736. },
  40737. {
  40738. name: "State Smasher",
  40739. height: math.unit(2.4e6, "feet")
  40740. },
  40741. {
  40742. name: "Nation Nemesis",
  40743. height: math.unit(8e6, "feet")
  40744. },
  40745. {
  40746. name: "Continent Cracker",
  40747. height: math.unit(2.4e7, "feet")
  40748. },
  40749. {
  40750. name: "Planet-Pillaging",
  40751. height: math.unit(8e7, "feet")
  40752. },
  40753. {
  40754. name: "Earth-Eclipsing",
  40755. height: math.unit(2.4e8, "feet")
  40756. },
  40757. {
  40758. name: "Jovian-Jostling",
  40759. height: math.unit(8e8, "feet")
  40760. },
  40761. {
  40762. name: "Gas Giant Gulper",
  40763. height: math.unit(2.4e9, "feet")
  40764. },
  40765. {
  40766. name: "Astral Annihilator",
  40767. height: math.unit(8e9, "feet")
  40768. },
  40769. {
  40770. name: "Celestial Conqueror",
  40771. height: math.unit(2.4e10, "feet")
  40772. },
  40773. {
  40774. name: "Sol-Swallowing",
  40775. height: math.unit(8e10, "feet")
  40776. },
  40777. {
  40778. name: "Hunter of the Heavens",
  40779. height: math.unit(2.4e13, "feet")
  40780. },
  40781. ]
  40782. ))
  40783. characterMakers.push(() => makeCharacter(
  40784. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40785. {
  40786. front: {
  40787. height: math.unit(6 + 8/12, "feet"),
  40788. weight: math.unit(250, "kilograms"),
  40789. volume: math.unit(28, "liters"),
  40790. name: "Front",
  40791. image: {
  40792. source: "./media/characters/rebecca-pawlson/front.svg",
  40793. extra: 1737/1596,
  40794. bottom: 107/1844
  40795. }
  40796. },
  40797. back: {
  40798. height: math.unit(6 + 8/12, "feet"),
  40799. weight: math.unit(250, "kilograms"),
  40800. volume: math.unit(28, "liters"),
  40801. name: "Back",
  40802. image: {
  40803. source: "./media/characters/rebecca-pawlson/back.svg",
  40804. extra: 1702/1523,
  40805. bottom: 86/1788
  40806. }
  40807. },
  40808. },
  40809. [
  40810. {
  40811. name: "Normal",
  40812. height: math.unit(6 + 8/12, "feet")
  40813. },
  40814. {
  40815. name: "Mini Macro",
  40816. height: math.unit(10, "feet"),
  40817. default: true
  40818. },
  40819. {
  40820. name: "Macro",
  40821. height: math.unit(100, "feet")
  40822. },
  40823. {
  40824. name: "Mega Macro",
  40825. height: math.unit(2500, "feet")
  40826. },
  40827. {
  40828. name: "Giga Macro",
  40829. height: math.unit(50, "miles")
  40830. },
  40831. ]
  40832. ))
  40833. characterMakers.push(() => makeCharacter(
  40834. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40835. {
  40836. front: {
  40837. height: math.unit(7 + 6/12, "feet"),
  40838. weight: math.unit(600, "lb"),
  40839. name: "Front",
  40840. image: {
  40841. source: "./media/characters/moxie-nova/front.svg",
  40842. extra: 1734/1652,
  40843. bottom: 41/1775
  40844. }
  40845. },
  40846. },
  40847. [
  40848. {
  40849. name: "Normal",
  40850. height: math.unit(7 + 6/12, "feet"),
  40851. default: true
  40852. },
  40853. ]
  40854. ))
  40855. characterMakers.push(() => makeCharacter(
  40856. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40857. {
  40858. goat: {
  40859. height: math.unit(4, "feet"),
  40860. weight: math.unit(180, "lb"),
  40861. name: "Goat",
  40862. image: {
  40863. source: "./media/characters/tiffany/goat.svg",
  40864. extra: 1845/1595,
  40865. bottom: 106/1951
  40866. }
  40867. },
  40868. front: {
  40869. height: math.unit(5, "feet"),
  40870. weight: math.unit(150, "lb"),
  40871. name: "Foxcoon",
  40872. image: {
  40873. source: "./media/characters/tiffany/foxcoon.svg",
  40874. extra: 1941/1845,
  40875. bottom: 58/1999
  40876. }
  40877. },
  40878. },
  40879. [
  40880. {
  40881. name: "Normal",
  40882. height: math.unit(5, "feet"),
  40883. default: true
  40884. },
  40885. ]
  40886. ))
  40887. characterMakers.push(() => makeCharacter(
  40888. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40889. {
  40890. front: {
  40891. height: math.unit(8, "feet"),
  40892. weight: math.unit(300, "lb"),
  40893. name: "Front",
  40894. image: {
  40895. source: "./media/characters/raxinath/front.svg",
  40896. extra: 1407/1309,
  40897. bottom: 39/1446
  40898. }
  40899. },
  40900. back: {
  40901. height: math.unit(8, "feet"),
  40902. weight: math.unit(300, "lb"),
  40903. name: "Back",
  40904. image: {
  40905. source: "./media/characters/raxinath/back.svg",
  40906. extra: 1405/1315,
  40907. bottom: 9/1414
  40908. }
  40909. },
  40910. },
  40911. [
  40912. {
  40913. name: "Speck",
  40914. height: math.unit(0.5, "nm")
  40915. },
  40916. {
  40917. name: "Micro",
  40918. height: math.unit(3, "inches")
  40919. },
  40920. {
  40921. name: "Kobold",
  40922. height: math.unit(3, "feet")
  40923. },
  40924. {
  40925. name: "Normal",
  40926. height: math.unit(8, "feet"),
  40927. default: true
  40928. },
  40929. {
  40930. name: "Giant",
  40931. height: math.unit(50, "feet")
  40932. },
  40933. {
  40934. name: "Macro",
  40935. height: math.unit(1000, "feet")
  40936. },
  40937. {
  40938. name: "Megamacro",
  40939. height: math.unit(1, "mile")
  40940. },
  40941. ]
  40942. ))
  40943. characterMakers.push(() => makeCharacter(
  40944. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40945. {
  40946. front: {
  40947. height: math.unit(10, "feet"),
  40948. weight: math.unit(1442, "lb"),
  40949. name: "Front",
  40950. image: {
  40951. source: "./media/characters/mal-dragon/front.svg",
  40952. extra: 1515/1444,
  40953. bottom: 113/1628
  40954. }
  40955. },
  40956. back: {
  40957. height: math.unit(10, "feet"),
  40958. weight: math.unit(1442, "lb"),
  40959. name: "Back",
  40960. image: {
  40961. source: "./media/characters/mal-dragon/back.svg",
  40962. extra: 1527/1434,
  40963. bottom: 25/1552
  40964. }
  40965. },
  40966. },
  40967. [
  40968. {
  40969. name: "Mortal Interaction",
  40970. height: math.unit(10, "feet"),
  40971. default: true
  40972. },
  40973. {
  40974. name: "Large",
  40975. height: math.unit(30, "feet")
  40976. },
  40977. {
  40978. name: "Kaiju",
  40979. height: math.unit(300, "feet")
  40980. },
  40981. {
  40982. name: "Megamacro",
  40983. height: math.unit(10000, "feet")
  40984. },
  40985. {
  40986. name: "Continent Cracker",
  40987. height: math.unit(30000000, "feet")
  40988. },
  40989. {
  40990. name: "Sol-Swallowing",
  40991. height: math.unit(1e11, "feet")
  40992. },
  40993. {
  40994. name: "Light Universal",
  40995. height: math.unit(5, "universes")
  40996. },
  40997. {
  40998. name: "Universe Atoms",
  40999. height: math.unit(1.829e9, "universes")
  41000. },
  41001. {
  41002. name: "Light Multiversal",
  41003. height: math.unit(5, "multiverses")
  41004. },
  41005. {
  41006. name: "Multiverse Atoms",
  41007. height: math.unit(1.829e9, "multiverses")
  41008. },
  41009. {
  41010. name: "Fabric of Time",
  41011. height: math.unit(1e262, "multiverses")
  41012. },
  41013. ]
  41014. ))
  41015. characterMakers.push(() => makeCharacter(
  41016. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41017. {
  41018. front: {
  41019. height: math.unit(9, "feet"),
  41020. weight: math.unit(1050, "lb"),
  41021. name: "Front",
  41022. image: {
  41023. source: "./media/characters/tabitha/front.svg",
  41024. extra: 2083/1994,
  41025. bottom: 68/2151
  41026. }
  41027. },
  41028. },
  41029. [
  41030. {
  41031. name: "Baseline",
  41032. height: math.unit(9, "feet"),
  41033. default: true
  41034. },
  41035. {
  41036. name: "Giant",
  41037. height: math.unit(90, "feet")
  41038. },
  41039. {
  41040. name: "Macro",
  41041. height: math.unit(900, "feet")
  41042. },
  41043. {
  41044. name: "Megamacro",
  41045. height: math.unit(9000, "feet")
  41046. },
  41047. {
  41048. name: "City-Crushing",
  41049. height: math.unit(27000, "feet")
  41050. },
  41051. {
  41052. name: "Mountain-Mashing",
  41053. height: math.unit(90000, "feet")
  41054. },
  41055. {
  41056. name: "Nation Nemesis",
  41057. height: math.unit(9e6, "feet")
  41058. },
  41059. {
  41060. name: "Continent Cracker",
  41061. height: math.unit(27e6, "feet")
  41062. },
  41063. {
  41064. name: "Earth-Eclipsing",
  41065. height: math.unit(2.7e8, "feet")
  41066. },
  41067. {
  41068. name: "Gas Giant Gulper",
  41069. height: math.unit(2.7e9, "feet")
  41070. },
  41071. {
  41072. name: "Sol-Swallowing",
  41073. height: math.unit(9e10, "feet")
  41074. },
  41075. {
  41076. name: "Galaxy Gulper",
  41077. height: math.unit(9, "galaxies")
  41078. },
  41079. {
  41080. name: "Cosmos Churner",
  41081. height: math.unit(9, "universes")
  41082. },
  41083. ]
  41084. ))
  41085. characterMakers.push(() => makeCharacter(
  41086. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41087. {
  41088. front: {
  41089. height: math.unit(160, "cm"),
  41090. weight: math.unit(55, "kg"),
  41091. name: "Front",
  41092. image: {
  41093. source: "./media/characters/tow/front.svg",
  41094. extra: 1751/1722,
  41095. bottom: 74/1825
  41096. }
  41097. },
  41098. },
  41099. [
  41100. {
  41101. name: "Norm",
  41102. height: math.unit(160, "cm")
  41103. },
  41104. {
  41105. name: "Casual",
  41106. height: math.unit(3200, "m"),
  41107. default: true
  41108. },
  41109. {
  41110. name: "Show-Off",
  41111. height: math.unit(160, "km")
  41112. },
  41113. ]
  41114. ))
  41115. characterMakers.push(() => makeCharacter(
  41116. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41117. {
  41118. front: {
  41119. height: math.unit(7 + 11/12, "feet"),
  41120. weight: math.unit(342.8, "lb"),
  41121. name: "Front",
  41122. image: {
  41123. source: "./media/characters/vivian-orca-dragon/front.svg",
  41124. extra: 1890/1865,
  41125. bottom: 28/1918
  41126. }
  41127. },
  41128. },
  41129. [
  41130. {
  41131. name: "Micro",
  41132. height: math.unit(5, "inches")
  41133. },
  41134. {
  41135. name: "Normal",
  41136. height: math.unit(7 + 11/12, "feet"),
  41137. default: true
  41138. },
  41139. {
  41140. name: "Macro",
  41141. height: math.unit(395 + 7/12, "feet")
  41142. },
  41143. ]
  41144. ))
  41145. characterMakers.push(() => makeCharacter(
  41146. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41147. {
  41148. side: {
  41149. height: math.unit(10, "feet"),
  41150. weight: math.unit(1442, "lb"),
  41151. name: "Side",
  41152. image: {
  41153. source: "./media/characters/lotherakon/side.svg",
  41154. extra: 1604/1497,
  41155. bottom: 89/1693
  41156. }
  41157. },
  41158. },
  41159. [
  41160. {
  41161. name: "Mortal Interaction",
  41162. height: math.unit(10, "feet")
  41163. },
  41164. {
  41165. name: "Large",
  41166. height: math.unit(30, "feet"),
  41167. default: true
  41168. },
  41169. {
  41170. name: "Giant",
  41171. height: math.unit(100, "feet")
  41172. },
  41173. {
  41174. name: "Kaiju",
  41175. height: math.unit(300, "feet")
  41176. },
  41177. {
  41178. name: "Macro",
  41179. height: math.unit(1000, "feet")
  41180. },
  41181. {
  41182. name: "Macro+",
  41183. height: math.unit(3000, "feet")
  41184. },
  41185. {
  41186. name: "Megamacro",
  41187. height: math.unit(10000, "feet")
  41188. },
  41189. {
  41190. name: "City-Crushing",
  41191. height: math.unit(30000, "feet")
  41192. },
  41193. {
  41194. name: "Continent Cracker",
  41195. height: math.unit(30e6, "feet")
  41196. },
  41197. {
  41198. name: "Earth Eclipsing",
  41199. height: math.unit(3e8, "feet")
  41200. },
  41201. {
  41202. name: "Gas Giant Gulper",
  41203. height: math.unit(3e9, "feet")
  41204. },
  41205. {
  41206. name: "Sol-Swallowing",
  41207. height: math.unit(1e11, "feet")
  41208. },
  41209. {
  41210. name: "System Swallower",
  41211. height: math.unit(3e14, "feet")
  41212. },
  41213. {
  41214. name: "Galaxy Gulper",
  41215. height: math.unit(10, "galaxies")
  41216. },
  41217. {
  41218. name: "Light Universal",
  41219. height: math.unit(5, "universes")
  41220. },
  41221. {
  41222. name: "Universe Palm",
  41223. height: math.unit(20, "universes")
  41224. },
  41225. {
  41226. name: "Light Multiversal",
  41227. height: math.unit(5, "multiverses")
  41228. },
  41229. {
  41230. name: "Multiverse Palm",
  41231. height: math.unit(20, "multiverses")
  41232. },
  41233. {
  41234. name: "Inferno Incarnate",
  41235. height: math.unit(1e7, "multiverses")
  41236. },
  41237. ]
  41238. ))
  41239. characterMakers.push(() => makeCharacter(
  41240. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41241. {
  41242. front: {
  41243. height: math.unit(8, "feet"),
  41244. weight: math.unit(1200, "lb"),
  41245. name: "Front",
  41246. image: {
  41247. source: "./media/characters/malithee/front.svg",
  41248. extra: 1675/1640,
  41249. bottom: 162/1837
  41250. }
  41251. },
  41252. },
  41253. [
  41254. {
  41255. name: "Mortal Interaction",
  41256. height: math.unit(8, "feet"),
  41257. default: true
  41258. },
  41259. {
  41260. name: "Large",
  41261. height: math.unit(24, "feet")
  41262. },
  41263. {
  41264. name: "Kaiju",
  41265. height: math.unit(240, "feet")
  41266. },
  41267. {
  41268. name: "Megamacro",
  41269. height: math.unit(8000, "feet")
  41270. },
  41271. {
  41272. name: "Continent Cracker",
  41273. height: math.unit(24e6, "feet")
  41274. },
  41275. {
  41276. name: "Earth-Eclipsing",
  41277. height: math.unit(2.4e8, "feet")
  41278. },
  41279. {
  41280. name: "Sol-Swallowing",
  41281. height: math.unit(8e10, "feet")
  41282. },
  41283. {
  41284. name: "Galaxy Gulper",
  41285. height: math.unit(8, "galaxies")
  41286. },
  41287. {
  41288. name: "Light Universal",
  41289. height: math.unit(4, "universes")
  41290. },
  41291. {
  41292. name: "Universe Atoms",
  41293. height: math.unit(1.829e9, "universes")
  41294. },
  41295. {
  41296. name: "Light Multiversal",
  41297. height: math.unit(4, "multiverses")
  41298. },
  41299. {
  41300. name: "Multiverse Atoms",
  41301. height: math.unit(1.829e9, "multiverses")
  41302. },
  41303. {
  41304. name: "Nigh-Omnipresence",
  41305. height: math.unit(8e261, "multiverses")
  41306. },
  41307. ]
  41308. ))
  41309. characterMakers.push(() => makeCharacter(
  41310. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41311. {
  41312. front: {
  41313. height: math.unit(10, "feet"),
  41314. weight: math.unit(1500, "lb"),
  41315. name: "Front",
  41316. image: {
  41317. source: "./media/characters/miles-thestia/front.svg",
  41318. extra: 1812/1727,
  41319. bottom: 86/1898
  41320. }
  41321. },
  41322. back: {
  41323. height: math.unit(10, "feet"),
  41324. weight: math.unit(1500, "lb"),
  41325. name: "Back",
  41326. image: {
  41327. source: "./media/characters/miles-thestia/back.svg",
  41328. extra: 1799/1690,
  41329. bottom: 47/1846
  41330. }
  41331. },
  41332. frontNsfw: {
  41333. height: math.unit(10, "feet"),
  41334. weight: math.unit(1500, "lb"),
  41335. name: "Front (NSFW)",
  41336. image: {
  41337. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41338. extra: 1812/1727,
  41339. bottom: 86/1898
  41340. }
  41341. },
  41342. },
  41343. [
  41344. {
  41345. name: "Mini-Macro",
  41346. height: math.unit(10, "feet"),
  41347. default: true
  41348. },
  41349. ]
  41350. ))
  41351. characterMakers.push(() => makeCharacter(
  41352. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41353. {
  41354. front: {
  41355. height: math.unit(25, "feet"),
  41356. name: "Front",
  41357. image: {
  41358. source: "./media/characters/titan-s-wulf/front.svg",
  41359. extra: 1560/1484,
  41360. bottom: 76/1636
  41361. }
  41362. },
  41363. },
  41364. [
  41365. {
  41366. name: "Smallest",
  41367. height: math.unit(25, "feet"),
  41368. default: true
  41369. },
  41370. {
  41371. name: "Normal",
  41372. height: math.unit(200, "feet")
  41373. },
  41374. {
  41375. name: "Macro",
  41376. height: math.unit(200000, "feet")
  41377. },
  41378. {
  41379. name: "Multiversal Original",
  41380. height: math.unit(10000, "multiverses")
  41381. },
  41382. ]
  41383. ))
  41384. characterMakers.push(() => makeCharacter(
  41385. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41386. {
  41387. front: {
  41388. height: math.unit(8, "feet"),
  41389. weight: math.unit(553, "lb"),
  41390. name: "Front",
  41391. image: {
  41392. source: "./media/characters/tawendeh/front.svg",
  41393. extra: 2365/2268,
  41394. bottom: 83/2448
  41395. }
  41396. },
  41397. frontClothed: {
  41398. height: math.unit(8, "feet"),
  41399. weight: math.unit(553, "lb"),
  41400. name: "Front (Clothed)",
  41401. image: {
  41402. source: "./media/characters/tawendeh/front-clothed.svg",
  41403. extra: 2365/2268,
  41404. bottom: 83/2448
  41405. }
  41406. },
  41407. back: {
  41408. height: math.unit(8, "feet"),
  41409. weight: math.unit(553, "lb"),
  41410. name: "Back",
  41411. image: {
  41412. source: "./media/characters/tawendeh/back.svg",
  41413. extra: 2397/2294,
  41414. bottom: 42/2439
  41415. }
  41416. },
  41417. },
  41418. [
  41419. {
  41420. name: "Mortal Interaction",
  41421. height: math.unit(8, "feet"),
  41422. default: true
  41423. },
  41424. {
  41425. name: "Giant",
  41426. height: math.unit(80, "feet")
  41427. },
  41428. {
  41429. name: "Macro",
  41430. height: math.unit(800, "feet")
  41431. },
  41432. {
  41433. name: "Megamacro",
  41434. height: math.unit(8000, "feet")
  41435. },
  41436. {
  41437. name: "City-Crushing",
  41438. height: math.unit(24000, "feet")
  41439. },
  41440. {
  41441. name: "Mountain-Mashing",
  41442. height: math.unit(80000, "feet")
  41443. },
  41444. {
  41445. name: "Nation Nemesis",
  41446. height: math.unit(8e6, "feet")
  41447. },
  41448. {
  41449. name: "Continent Cracker",
  41450. height: math.unit(24e6, "feet")
  41451. },
  41452. {
  41453. name: "Earth-Eclipsing",
  41454. height: math.unit(2.4e8, "feet")
  41455. },
  41456. {
  41457. name: "Gas Giant Gulper",
  41458. height: math.unit(2.4e9, "feet")
  41459. },
  41460. {
  41461. name: "Sol-Swallowing",
  41462. height: math.unit(8e10, "feet")
  41463. },
  41464. {
  41465. name: "Galaxy Gulper",
  41466. height: math.unit(8, "galaxies")
  41467. },
  41468. {
  41469. name: "Cosmos Churner",
  41470. height: math.unit(8, "universes")
  41471. },
  41472. {
  41473. name: "Omnipotent Otter",
  41474. height: math.unit(80, "universes")
  41475. },
  41476. ]
  41477. ))
  41478. characterMakers.push(() => makeCharacter(
  41479. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41480. {
  41481. front: {
  41482. height: math.unit(2.6, "meters"),
  41483. weight: math.unit(900, "kg"),
  41484. name: "Front",
  41485. image: {
  41486. source: "./media/characters/neesha/front.svg",
  41487. extra: 1803/1653,
  41488. bottom: 128/1931
  41489. }
  41490. },
  41491. },
  41492. [
  41493. {
  41494. name: "Normal",
  41495. height: math.unit(2.6, "meters"),
  41496. default: true
  41497. },
  41498. {
  41499. name: "Macro",
  41500. height: math.unit(50, "meters")
  41501. },
  41502. ]
  41503. ))
  41504. characterMakers.push(() => makeCharacter(
  41505. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41506. {
  41507. front: {
  41508. height: math.unit(5, "feet"),
  41509. weight: math.unit(185, "lb"),
  41510. name: "Front",
  41511. image: {
  41512. source: "./media/characters/kyera/front.svg",
  41513. extra: 1875/1790,
  41514. bottom: 96/1971
  41515. }
  41516. },
  41517. },
  41518. [
  41519. {
  41520. name: "Normal",
  41521. height: math.unit(5, "feet"),
  41522. default: true
  41523. },
  41524. ]
  41525. ))
  41526. characterMakers.push(() => makeCharacter(
  41527. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41528. {
  41529. front: {
  41530. height: math.unit(7 + 6/12, "feet"),
  41531. weight: math.unit(540, "lb"),
  41532. name: "Front",
  41533. image: {
  41534. source: "./media/characters/yuko/front.svg",
  41535. extra: 1282/1222,
  41536. bottom: 101/1383
  41537. }
  41538. },
  41539. frontClothed: {
  41540. height: math.unit(7 + 6/12, "feet"),
  41541. weight: math.unit(540, "lb"),
  41542. name: "Front (Clothed)",
  41543. image: {
  41544. source: "./media/characters/yuko/front-clothed.svg",
  41545. extra: 1282/1222,
  41546. bottom: 101/1383
  41547. }
  41548. },
  41549. },
  41550. [
  41551. {
  41552. name: "Normal",
  41553. height: math.unit(7 + 6/12, "feet"),
  41554. default: true
  41555. },
  41556. {
  41557. name: "Macro",
  41558. height: math.unit(26 + 9/12, "feet")
  41559. },
  41560. {
  41561. name: "Megamacro",
  41562. height: math.unit(300, "feet")
  41563. },
  41564. {
  41565. name: "Gigamacro",
  41566. height: math.unit(5000, "feet")
  41567. },
  41568. {
  41569. name: "Planetary",
  41570. height: math.unit(10000, "miles")
  41571. },
  41572. ]
  41573. ))
  41574. characterMakers.push(() => makeCharacter(
  41575. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41576. {
  41577. front: {
  41578. height: math.unit(8 + 2/12, "feet"),
  41579. weight: math.unit(600, "lb"),
  41580. name: "Front",
  41581. image: {
  41582. source: "./media/characters/deam-nitrel/front.svg",
  41583. extra: 1308/1234,
  41584. bottom: 125/1433
  41585. }
  41586. },
  41587. },
  41588. [
  41589. {
  41590. name: "Normal",
  41591. height: math.unit(8 + 2/12, "feet"),
  41592. default: true
  41593. },
  41594. ]
  41595. ))
  41596. characterMakers.push(() => makeCharacter(
  41597. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41598. {
  41599. front: {
  41600. height: math.unit(6.1, "feet"),
  41601. weight: math.unit(180, "lb"),
  41602. name: "Front",
  41603. image: {
  41604. source: "./media/characters/skyress/front.svg",
  41605. extra: 1045/915,
  41606. bottom: 28/1073
  41607. }
  41608. },
  41609. maw: {
  41610. height: math.unit(1, "feet"),
  41611. name: "Maw",
  41612. image: {
  41613. source: "./media/characters/skyress/maw.svg"
  41614. }
  41615. },
  41616. },
  41617. [
  41618. {
  41619. name: "Normal",
  41620. height: math.unit(6.1, "feet"),
  41621. default: true
  41622. },
  41623. {
  41624. name: "Macro",
  41625. height: math.unit(200, "feet")
  41626. },
  41627. ]
  41628. ))
  41629. characterMakers.push(() => makeCharacter(
  41630. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41631. {
  41632. front: {
  41633. height: math.unit(4 + 2/12, "feet"),
  41634. weight: math.unit(40, "kg"),
  41635. name: "Front",
  41636. image: {
  41637. source: "./media/characters/amethyst-jones/front.svg",
  41638. extra: 1220/1150,
  41639. bottom: 101/1321
  41640. }
  41641. },
  41642. },
  41643. [
  41644. {
  41645. name: "Normal",
  41646. height: math.unit(4 + 2/12, "feet"),
  41647. default: true
  41648. },
  41649. ]
  41650. ))
  41651. characterMakers.push(() => makeCharacter(
  41652. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41653. {
  41654. front: {
  41655. height: math.unit(1.7, "m"),
  41656. weight: math.unit(135, "lb"),
  41657. name: "Front",
  41658. image: {
  41659. source: "./media/characters/jade/front.svg",
  41660. extra: 1818/1767,
  41661. bottom: 32/1850
  41662. }
  41663. },
  41664. back: {
  41665. height: math.unit(1.7, "m"),
  41666. weight: math.unit(135, "lb"),
  41667. name: "Back",
  41668. image: {
  41669. source: "./media/characters/jade/back.svg",
  41670. extra: 1869/1809,
  41671. bottom: 35/1904
  41672. }
  41673. },
  41674. hand: {
  41675. height: math.unit(0.24, "m"),
  41676. name: "Hand",
  41677. image: {
  41678. source: "./media/characters/jade/hand.svg"
  41679. }
  41680. },
  41681. foot: {
  41682. height: math.unit(0.263, "m"),
  41683. name: "Foot",
  41684. image: {
  41685. source: "./media/characters/jade/foot.svg"
  41686. }
  41687. },
  41688. dick: {
  41689. height: math.unit(0.47, "m"),
  41690. name: "Dick",
  41691. image: {
  41692. source: "./media/characters/jade/dick.svg"
  41693. }
  41694. },
  41695. },
  41696. [
  41697. {
  41698. name: "Micro",
  41699. height: math.unit(22, "cm")
  41700. },
  41701. {
  41702. name: "Normal",
  41703. height: math.unit(1.7, "m"),
  41704. default: true
  41705. },
  41706. {
  41707. name: "Macro",
  41708. height: math.unit(152, "m")
  41709. },
  41710. ]
  41711. ))
  41712. characterMakers.push(() => makeCharacter(
  41713. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41714. {
  41715. front: {
  41716. height: math.unit(100, "miles"),
  41717. weight: math.unit(20000, "tons"),
  41718. name: "Front",
  41719. image: {
  41720. source: "./media/characters/cookie/front.svg",
  41721. extra: 1125/1070,
  41722. bottom: 30/1155
  41723. }
  41724. },
  41725. },
  41726. [
  41727. {
  41728. name: "Big",
  41729. height: math.unit(50, "feet")
  41730. },
  41731. {
  41732. name: "Macro",
  41733. height: math.unit(100, "miles"),
  41734. default: true
  41735. },
  41736. {
  41737. name: "Megamacro",
  41738. height: math.unit(90000, "miles")
  41739. },
  41740. ]
  41741. ))
  41742. characterMakers.push(() => makeCharacter(
  41743. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41744. {
  41745. front: {
  41746. height: math.unit(6, "feet"),
  41747. weight: math.unit(145, "lb"),
  41748. name: "Front",
  41749. image: {
  41750. source: "./media/characters/farzian/front.svg",
  41751. extra: 1902/1693,
  41752. bottom: 108/2010
  41753. }
  41754. },
  41755. },
  41756. [
  41757. {
  41758. name: "Macro",
  41759. height: math.unit(500, "feet"),
  41760. default: true
  41761. },
  41762. ]
  41763. ))
  41764. characterMakers.push(() => makeCharacter(
  41765. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41766. {
  41767. front: {
  41768. height: math.unit(3 + 6/12, "feet"),
  41769. weight: math.unit(50, "lb"),
  41770. name: "Front",
  41771. image: {
  41772. source: "./media/characters/kimberly-tilson/front.svg",
  41773. extra: 1400/1322,
  41774. bottom: 36/1436
  41775. }
  41776. },
  41777. back: {
  41778. height: math.unit(3 + 6/12, "feet"),
  41779. weight: math.unit(50, "lb"),
  41780. name: "Back",
  41781. image: {
  41782. source: "./media/characters/kimberly-tilson/back.svg",
  41783. extra: 1370/1307,
  41784. bottom: 20/1390
  41785. }
  41786. },
  41787. },
  41788. [
  41789. {
  41790. name: "Normal",
  41791. height: math.unit(3 + 6/12, "feet"),
  41792. default: true
  41793. },
  41794. ]
  41795. ))
  41796. characterMakers.push(() => makeCharacter(
  41797. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41798. {
  41799. front: {
  41800. height: math.unit(1148, "feet"),
  41801. weight: math.unit(34057, "lb"),
  41802. name: "Front",
  41803. image: {
  41804. source: "./media/characters/harthos/front.svg",
  41805. extra: 1391/1339,
  41806. bottom: 13/1404
  41807. }
  41808. },
  41809. },
  41810. [
  41811. {
  41812. name: "Macro",
  41813. height: math.unit(1148, "feet"),
  41814. default: true
  41815. },
  41816. ]
  41817. ))
  41818. characterMakers.push(() => makeCharacter(
  41819. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41820. {
  41821. front: {
  41822. height: math.unit(15, "feet"),
  41823. name: "Front",
  41824. image: {
  41825. source: "./media/characters/hypatia/front.svg",
  41826. extra: 1653/1591,
  41827. bottom: 79/1732
  41828. }
  41829. },
  41830. },
  41831. [
  41832. {
  41833. name: "Normal",
  41834. height: math.unit(15, "feet")
  41835. },
  41836. {
  41837. name: "Small",
  41838. height: math.unit(300, "feet")
  41839. },
  41840. {
  41841. name: "Macro",
  41842. height: math.unit(2500, "feet"),
  41843. default: true
  41844. },
  41845. {
  41846. name: "Mega Macro",
  41847. height: math.unit(1500, "miles")
  41848. },
  41849. {
  41850. name: "Giga Macro",
  41851. height: math.unit(1.5e6, "miles")
  41852. },
  41853. ]
  41854. ))
  41855. characterMakers.push(() => makeCharacter(
  41856. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41857. {
  41858. front: {
  41859. height: math.unit(6, "feet"),
  41860. weight: math.unit(200, "lb"),
  41861. name: "Front",
  41862. image: {
  41863. source: "./media/characters/wulver/front.svg",
  41864. extra: 1724/1632,
  41865. bottom: 130/1854
  41866. }
  41867. },
  41868. frontNsfw: {
  41869. height: math.unit(6, "feet"),
  41870. weight: math.unit(200, "lb"),
  41871. name: "Front (NSFW)",
  41872. image: {
  41873. source: "./media/characters/wulver/front-nsfw.svg",
  41874. extra: 1724/1632,
  41875. bottom: 130/1854
  41876. }
  41877. },
  41878. },
  41879. [
  41880. {
  41881. name: "Human-Sized",
  41882. height: math.unit(6, "feet")
  41883. },
  41884. {
  41885. name: "Normal",
  41886. height: math.unit(4, "meters"),
  41887. default: true
  41888. },
  41889. {
  41890. name: "Large",
  41891. height: math.unit(6, "m")
  41892. },
  41893. ]
  41894. ))
  41895. characterMakers.push(() => makeCharacter(
  41896. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41897. {
  41898. front: {
  41899. height: math.unit(7, "feet"),
  41900. name: "Front",
  41901. image: {
  41902. source: "./media/characters/maru/front.svg",
  41903. extra: 1595/1570,
  41904. bottom: 0/1595
  41905. }
  41906. },
  41907. },
  41908. [
  41909. {
  41910. name: "Normal",
  41911. height: math.unit(7, "feet"),
  41912. default: true
  41913. },
  41914. {
  41915. name: "Macro",
  41916. height: math.unit(700, "feet")
  41917. },
  41918. {
  41919. name: "Mega Macro",
  41920. height: math.unit(25, "miles")
  41921. },
  41922. ]
  41923. ))
  41924. characterMakers.push(() => makeCharacter(
  41925. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41926. {
  41927. front: {
  41928. height: math.unit(6, "feet"),
  41929. weight: math.unit(170, "lb"),
  41930. name: "Front",
  41931. image: {
  41932. source: "./media/characters/xenon/front.svg",
  41933. extra: 1376/1305,
  41934. bottom: 56/1432
  41935. }
  41936. },
  41937. back: {
  41938. height: math.unit(6, "feet"),
  41939. weight: math.unit(170, "lb"),
  41940. name: "Back",
  41941. image: {
  41942. source: "./media/characters/xenon/back.svg",
  41943. extra: 1328/1259,
  41944. bottom: 95/1423
  41945. }
  41946. },
  41947. maw: {
  41948. height: math.unit(0.52, "feet"),
  41949. name: "Maw",
  41950. image: {
  41951. source: "./media/characters/xenon/maw.svg"
  41952. }
  41953. },
  41954. handLeft: {
  41955. height: math.unit(0.82 * 169 / 153, "feet"),
  41956. name: "Hand (Left)",
  41957. image: {
  41958. source: "./media/characters/xenon/hand-left.svg"
  41959. }
  41960. },
  41961. handRight: {
  41962. height: math.unit(0.82, "feet"),
  41963. name: "Hand (Right)",
  41964. image: {
  41965. source: "./media/characters/xenon/hand-right.svg"
  41966. }
  41967. },
  41968. footLeft: {
  41969. height: math.unit(1.13, "feet"),
  41970. name: "Foot (Left)",
  41971. image: {
  41972. source: "./media/characters/xenon/foot-left.svg"
  41973. }
  41974. },
  41975. footRight: {
  41976. height: math.unit(1.13 * 194 / 196, "feet"),
  41977. name: "Foot (Right)",
  41978. image: {
  41979. source: "./media/characters/xenon/foot-right.svg"
  41980. }
  41981. },
  41982. },
  41983. [
  41984. {
  41985. name: "Micro",
  41986. height: math.unit(0.8, "inches")
  41987. },
  41988. {
  41989. name: "Normal",
  41990. height: math.unit(6, "feet")
  41991. },
  41992. {
  41993. name: "Macro",
  41994. height: math.unit(50, "feet"),
  41995. default: true
  41996. },
  41997. {
  41998. name: "Macro+",
  41999. height: math.unit(250, "feet")
  42000. },
  42001. {
  42002. name: "Megamacro",
  42003. height: math.unit(1500, "feet")
  42004. },
  42005. ]
  42006. ))
  42007. characterMakers.push(() => makeCharacter(
  42008. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42009. {
  42010. front: {
  42011. height: math.unit(7 + 5/12, "feet"),
  42012. name: "Front",
  42013. image: {
  42014. source: "./media/characters/zane/front.svg",
  42015. extra: 1260/1203,
  42016. bottom: 94/1354
  42017. }
  42018. },
  42019. back: {
  42020. height: math.unit(5.05, "feet"),
  42021. name: "Back",
  42022. image: {
  42023. source: "./media/characters/zane/back.svg",
  42024. extra: 893/829,
  42025. bottom: 30/923
  42026. }
  42027. },
  42028. werewolf: {
  42029. height: math.unit(11, "feet"),
  42030. name: "Werewolf",
  42031. image: {
  42032. source: "./media/characters/zane/werewolf.svg",
  42033. extra: 1383/1323,
  42034. bottom: 89/1472
  42035. }
  42036. },
  42037. foot: {
  42038. height: math.unit(1.46, "feet"),
  42039. name: "Foot",
  42040. image: {
  42041. source: "./media/characters/zane/foot.svg"
  42042. }
  42043. },
  42044. footFront: {
  42045. height: math.unit(0.784, "feet"),
  42046. name: "Foot (Front)",
  42047. image: {
  42048. source: "./media/characters/zane/foot-front.svg"
  42049. }
  42050. },
  42051. dick: {
  42052. height: math.unit(1.95, "feet"),
  42053. name: "Dick",
  42054. image: {
  42055. source: "./media/characters/zane/dick.svg"
  42056. }
  42057. },
  42058. dickWerewolf: {
  42059. height: math.unit(3.77, "feet"),
  42060. name: "Dick (Werewolf)",
  42061. image: {
  42062. source: "./media/characters/zane/dick.svg"
  42063. }
  42064. },
  42065. },
  42066. [
  42067. {
  42068. name: "Normal",
  42069. height: math.unit(7 + 5/12, "feet"),
  42070. default: true
  42071. },
  42072. ]
  42073. ))
  42074. characterMakers.push(() => makeCharacter(
  42075. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42076. {
  42077. front: {
  42078. height: math.unit(6 + 2/12, "feet"),
  42079. weight: math.unit(284, "lb"),
  42080. name: "Front",
  42081. image: {
  42082. source: "./media/characters/benni-desparque/front.svg",
  42083. extra: 1353/1126,
  42084. bottom: 69/1422
  42085. }
  42086. },
  42087. },
  42088. [
  42089. {
  42090. name: "Civilian",
  42091. height: math.unit(6 + 2/12, "feet")
  42092. },
  42093. {
  42094. name: "Normal",
  42095. height: math.unit(98, "feet"),
  42096. default: true
  42097. },
  42098. {
  42099. name: "Kaiju Fighter",
  42100. height: math.unit(268, "feet")
  42101. },
  42102. ]
  42103. ))
  42104. characterMakers.push(() => makeCharacter(
  42105. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42106. {
  42107. front: {
  42108. height: math.unit(5, "feet"),
  42109. weight: math.unit(105, "lb"),
  42110. name: "Front",
  42111. image: {
  42112. source: "./media/characters/maxine/front.svg",
  42113. extra: 1386/1250,
  42114. bottom: 71/1457
  42115. }
  42116. },
  42117. },
  42118. [
  42119. {
  42120. name: "Normal",
  42121. height: math.unit(5, "feet"),
  42122. default: true
  42123. },
  42124. ]
  42125. ))
  42126. characterMakers.push(() => makeCharacter(
  42127. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42128. {
  42129. front: {
  42130. height: math.unit(11 + 7/12, "feet"),
  42131. weight: math.unit(9576, "lb"),
  42132. name: "Front",
  42133. image: {
  42134. source: "./media/characters/scaly/front.svg",
  42135. extra: 888/867,
  42136. bottom: 36/924
  42137. }
  42138. },
  42139. },
  42140. [
  42141. {
  42142. name: "Normal",
  42143. height: math.unit(11 + 7/12, "feet"),
  42144. default: true
  42145. },
  42146. ]
  42147. ))
  42148. characterMakers.push(() => makeCharacter(
  42149. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42150. {
  42151. front: {
  42152. height: math.unit(6 + 3/12, "feet"),
  42153. name: "Front",
  42154. image: {
  42155. source: "./media/characters/saelria/front.svg",
  42156. extra: 1243/1138,
  42157. bottom: 46/1289
  42158. }
  42159. },
  42160. },
  42161. [
  42162. {
  42163. name: "Micro",
  42164. height: math.unit(6, "inches"),
  42165. },
  42166. {
  42167. name: "Normal",
  42168. height: math.unit(6 + 3/12, "feet"),
  42169. default: true
  42170. },
  42171. {
  42172. name: "Macro",
  42173. height: math.unit(25, "feet")
  42174. },
  42175. ]
  42176. ))
  42177. characterMakers.push(() => makeCharacter(
  42178. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42179. {
  42180. front: {
  42181. height: math.unit(80, "meters"),
  42182. weight: math.unit(7000, "tonnes"),
  42183. name: "Front",
  42184. image: {
  42185. source: "./media/characters/tef/front.svg",
  42186. extra: 2036/1991,
  42187. bottom: 54/2090
  42188. }
  42189. },
  42190. back: {
  42191. height: math.unit(80, "meters"),
  42192. weight: math.unit(7000, "tonnes"),
  42193. name: "Back",
  42194. image: {
  42195. source: "./media/characters/tef/back.svg",
  42196. extra: 2036/1991,
  42197. bottom: 54/2090
  42198. }
  42199. },
  42200. },
  42201. [
  42202. {
  42203. name: "Macro",
  42204. height: math.unit(80, "meters"),
  42205. default: true
  42206. },
  42207. ]
  42208. ))
  42209. characterMakers.push(() => makeCharacter(
  42210. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42211. {
  42212. front: {
  42213. height: math.unit(13, "feet"),
  42214. weight: math.unit(6, "tons"),
  42215. name: "Front",
  42216. image: {
  42217. source: "./media/characters/rover/front.svg",
  42218. extra: 1233/1156,
  42219. bottom: 50/1283
  42220. }
  42221. },
  42222. back: {
  42223. height: math.unit(13, "feet"),
  42224. weight: math.unit(6, "tons"),
  42225. name: "Back",
  42226. image: {
  42227. source: "./media/characters/rover/back.svg",
  42228. extra: 1327/1258,
  42229. bottom: 39/1366
  42230. }
  42231. },
  42232. },
  42233. [
  42234. {
  42235. name: "Normal",
  42236. height: math.unit(13, "feet"),
  42237. default: true
  42238. },
  42239. {
  42240. name: "Macro",
  42241. height: math.unit(1300, "feet")
  42242. },
  42243. {
  42244. name: "Megamacro",
  42245. height: math.unit(1300, "miles")
  42246. },
  42247. {
  42248. name: "Gigamacro",
  42249. height: math.unit(1300000, "miles")
  42250. },
  42251. ]
  42252. ))
  42253. characterMakers.push(() => makeCharacter(
  42254. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42255. {
  42256. front: {
  42257. height: math.unit(6, "feet"),
  42258. weight: math.unit(150, "lb"),
  42259. name: "Front",
  42260. image: {
  42261. source: "./media/characters/ariz/front.svg",
  42262. extra: 1401/1346,
  42263. bottom: 5/1406
  42264. }
  42265. },
  42266. },
  42267. [
  42268. {
  42269. name: "Normal",
  42270. height: math.unit(10, "feet"),
  42271. default: true
  42272. },
  42273. ]
  42274. ))
  42275. characterMakers.push(() => makeCharacter(
  42276. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42277. {
  42278. front: {
  42279. height: math.unit(6, "feet"),
  42280. weight: math.unit(140, "lb"),
  42281. name: "Front",
  42282. image: {
  42283. source: "./media/characters/sigrun/front.svg",
  42284. extra: 1418/1359,
  42285. bottom: 27/1445
  42286. }
  42287. },
  42288. },
  42289. [
  42290. {
  42291. name: "Macro",
  42292. height: math.unit(35, "feet"),
  42293. default: true
  42294. },
  42295. ]
  42296. ))
  42297. characterMakers.push(() => makeCharacter(
  42298. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42299. {
  42300. front: {
  42301. height: math.unit(6, "feet"),
  42302. weight: math.unit(150, "lb"),
  42303. name: "Front",
  42304. image: {
  42305. source: "./media/characters/numin/front.svg",
  42306. extra: 1433/1388,
  42307. bottom: 12/1445
  42308. }
  42309. },
  42310. },
  42311. [
  42312. {
  42313. name: "Macro",
  42314. height: math.unit(21.5, "km"),
  42315. default: true
  42316. },
  42317. ]
  42318. ))
  42319. characterMakers.push(() => makeCharacter(
  42320. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42321. {
  42322. front: {
  42323. height: math.unit(6, "feet"),
  42324. weight: math.unit(463, "lb"),
  42325. name: "Front",
  42326. image: {
  42327. source: "./media/characters/melwa/front.svg",
  42328. extra: 1307/1248,
  42329. bottom: 93/1400
  42330. }
  42331. },
  42332. },
  42333. [
  42334. {
  42335. name: "Macro",
  42336. height: math.unit(50, "meters"),
  42337. default: true
  42338. },
  42339. ]
  42340. ))
  42341. characterMakers.push(() => makeCharacter(
  42342. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42343. {
  42344. front: {
  42345. height: math.unit(325, "feet"),
  42346. name: "Front",
  42347. image: {
  42348. source: "./media/characters/zorkaiju/front.svg",
  42349. extra: 1955/1814,
  42350. bottom: 40/1995
  42351. }
  42352. },
  42353. frontExtended: {
  42354. height: math.unit(325, "feet"),
  42355. name: "Front (Extended)",
  42356. image: {
  42357. source: "./media/characters/zorkaiju/front-extended.svg",
  42358. extra: 1955/1814,
  42359. bottom: 40/1995
  42360. }
  42361. },
  42362. side: {
  42363. height: math.unit(325, "feet"),
  42364. name: "Side",
  42365. image: {
  42366. source: "./media/characters/zorkaiju/side.svg",
  42367. extra: 1495/1396,
  42368. bottom: 17/1512
  42369. }
  42370. },
  42371. sideExtended: {
  42372. height: math.unit(325, "feet"),
  42373. name: "Side (Extended)",
  42374. image: {
  42375. source: "./media/characters/zorkaiju/side-extended.svg",
  42376. extra: 1495/1396,
  42377. bottom: 17/1512
  42378. }
  42379. },
  42380. back: {
  42381. height: math.unit(325, "feet"),
  42382. name: "Back",
  42383. image: {
  42384. source: "./media/characters/zorkaiju/back.svg",
  42385. extra: 1959/1821,
  42386. bottom: 31/1990
  42387. }
  42388. },
  42389. backExtended: {
  42390. height: math.unit(325, "feet"),
  42391. name: "Back (Extended)",
  42392. image: {
  42393. source: "./media/characters/zorkaiju/back-extended.svg",
  42394. extra: 1959/1821,
  42395. bottom: 31/1990
  42396. }
  42397. },
  42398. hand: {
  42399. height: math.unit(58.4, "feet"),
  42400. name: "Hand",
  42401. image: {
  42402. source: "./media/characters/zorkaiju/hand.svg"
  42403. }
  42404. },
  42405. handExtended: {
  42406. height: math.unit(61.4, "feet"),
  42407. name: "Hand (Extended)",
  42408. image: {
  42409. source: "./media/characters/zorkaiju/hand-extended.svg"
  42410. }
  42411. },
  42412. foot: {
  42413. height: math.unit(95, "feet"),
  42414. name: "Foot",
  42415. image: {
  42416. source: "./media/characters/zorkaiju/foot.svg"
  42417. }
  42418. },
  42419. leftArm: {
  42420. height: math.unit(59, "feet"),
  42421. name: "Left Arm",
  42422. image: {
  42423. source: "./media/characters/zorkaiju/left-arm.svg"
  42424. }
  42425. },
  42426. rightArm: {
  42427. height: math.unit(59, "feet"),
  42428. name: "Right Arm",
  42429. image: {
  42430. source: "./media/characters/zorkaiju/right-arm.svg"
  42431. }
  42432. },
  42433. leftArmExtended: {
  42434. height: math.unit(59 * 1.033546, "feet"),
  42435. name: "Left Arm (Extended)",
  42436. image: {
  42437. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42438. }
  42439. },
  42440. rightArmExtended: {
  42441. height: math.unit(59 * 1.0496, "feet"),
  42442. name: "Right Arm (Extended)",
  42443. image: {
  42444. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42445. }
  42446. },
  42447. tail: {
  42448. height: math.unit(104, "feet"),
  42449. name: "Tail",
  42450. image: {
  42451. source: "./media/characters/zorkaiju/tail.svg"
  42452. }
  42453. },
  42454. tailExtended: {
  42455. height: math.unit(104, "feet"),
  42456. name: "Tail (Extended)",
  42457. image: {
  42458. source: "./media/characters/zorkaiju/tail-extended.svg"
  42459. }
  42460. },
  42461. tailBottom: {
  42462. height: math.unit(104, "feet"),
  42463. name: "Tail Bottom",
  42464. image: {
  42465. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42466. }
  42467. },
  42468. crystal: {
  42469. height: math.unit(27.54, "feet"),
  42470. name: "Crystal",
  42471. image: {
  42472. source: "./media/characters/zorkaiju/crystal.svg"
  42473. }
  42474. },
  42475. },
  42476. [
  42477. {
  42478. name: "Kaiju",
  42479. height: math.unit(325, "feet"),
  42480. default: true
  42481. },
  42482. ]
  42483. ))
  42484. characterMakers.push(() => makeCharacter(
  42485. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42486. {
  42487. front: {
  42488. height: math.unit(6 + 1/12, "feet"),
  42489. weight: math.unit(115, "lb"),
  42490. name: "Front",
  42491. image: {
  42492. source: "./media/characters/bailey-belfry/front.svg",
  42493. extra: 1240/1121,
  42494. bottom: 101/1341
  42495. }
  42496. },
  42497. },
  42498. [
  42499. {
  42500. name: "Normal",
  42501. height: math.unit(6 + 1/12, "feet"),
  42502. default: true
  42503. },
  42504. ]
  42505. ))
  42506. characterMakers.push(() => makeCharacter(
  42507. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42508. {
  42509. side: {
  42510. height: math.unit(4, "meters"),
  42511. weight: math.unit(250, "kg"),
  42512. name: "Side",
  42513. image: {
  42514. source: "./media/characters/blacky/side.svg",
  42515. extra: 1027/919,
  42516. bottom: 43/1070
  42517. }
  42518. },
  42519. maw: {
  42520. height: math.unit(1, "meters"),
  42521. name: "Maw",
  42522. image: {
  42523. source: "./media/characters/blacky/maw.svg"
  42524. }
  42525. },
  42526. paw: {
  42527. height: math.unit(1, "meters"),
  42528. name: "Paw",
  42529. image: {
  42530. source: "./media/characters/blacky/paw.svg"
  42531. }
  42532. },
  42533. },
  42534. [
  42535. {
  42536. name: "Normal",
  42537. height: math.unit(4, "meters"),
  42538. default: true
  42539. },
  42540. ]
  42541. ))
  42542. characterMakers.push(() => makeCharacter(
  42543. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42544. {
  42545. front: {
  42546. height: math.unit(170, "cm"),
  42547. weight: math.unit(66, "kg"),
  42548. name: "Front",
  42549. image: {
  42550. source: "./media/characters/thux-ei/front.svg",
  42551. extra: 1109/1011,
  42552. bottom: 8/1117
  42553. }
  42554. },
  42555. },
  42556. [
  42557. {
  42558. name: "Normal",
  42559. height: math.unit(170, "cm"),
  42560. default: true
  42561. },
  42562. ]
  42563. ))
  42564. characterMakers.push(() => makeCharacter(
  42565. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42566. {
  42567. front: {
  42568. height: math.unit(5, "feet"),
  42569. weight: math.unit(120, "lb"),
  42570. name: "Front",
  42571. image: {
  42572. source: "./media/characters/roxanne-voltaire/front.svg",
  42573. extra: 1901/1779,
  42574. bottom: 53/1954
  42575. }
  42576. },
  42577. },
  42578. [
  42579. {
  42580. name: "Normal",
  42581. height: math.unit(5, "feet"),
  42582. default: true
  42583. },
  42584. {
  42585. name: "Giant",
  42586. height: math.unit(50, "feet")
  42587. },
  42588. {
  42589. name: "Titan",
  42590. height: math.unit(500, "feet")
  42591. },
  42592. {
  42593. name: "Macro",
  42594. height: math.unit(5000, "feet")
  42595. },
  42596. {
  42597. name: "Megamacro",
  42598. height: math.unit(50000, "feet")
  42599. },
  42600. {
  42601. name: "Gigamacro",
  42602. height: math.unit(500000, "feet")
  42603. },
  42604. {
  42605. name: "Teramacro",
  42606. height: math.unit(5e6, "feet")
  42607. },
  42608. ]
  42609. ))
  42610. characterMakers.push(() => makeCharacter(
  42611. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42612. {
  42613. front: {
  42614. height: math.unit(6 + 2/12, "feet"),
  42615. name: "Front",
  42616. image: {
  42617. source: "./media/characters/squeaks/front.svg",
  42618. extra: 1823/1768,
  42619. bottom: 138/1961
  42620. }
  42621. },
  42622. },
  42623. [
  42624. {
  42625. name: "Micro",
  42626. height: math.unit(0.5, "inches")
  42627. },
  42628. {
  42629. name: "Normal",
  42630. height: math.unit(6 + 2/12, "feet"),
  42631. default: true
  42632. },
  42633. {
  42634. name: "Macro",
  42635. height: math.unit(600, "feet")
  42636. },
  42637. ]
  42638. ))
  42639. characterMakers.push(() => makeCharacter(
  42640. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42641. {
  42642. front: {
  42643. height: math.unit(1.72, "meters"),
  42644. name: "Front",
  42645. image: {
  42646. source: "./media/characters/archinger/front.svg",
  42647. extra: 1861/1675,
  42648. bottom: 125/1986
  42649. }
  42650. },
  42651. back: {
  42652. height: math.unit(1.72, "meters"),
  42653. name: "Back",
  42654. image: {
  42655. source: "./media/characters/archinger/back.svg",
  42656. extra: 1844/1701,
  42657. bottom: 104/1948
  42658. }
  42659. },
  42660. cock: {
  42661. height: math.unit(0.59, "feet"),
  42662. name: "Cock",
  42663. image: {
  42664. source: "./media/characters/archinger/cock.svg"
  42665. }
  42666. },
  42667. },
  42668. [
  42669. {
  42670. name: "Normal",
  42671. height: math.unit(1.72, "meters"),
  42672. default: true
  42673. },
  42674. {
  42675. name: "Macro",
  42676. height: math.unit(84, "meters")
  42677. },
  42678. {
  42679. name: "Macro+",
  42680. height: math.unit(112, "meters")
  42681. },
  42682. {
  42683. name: "Macro++",
  42684. height: math.unit(960, "meters")
  42685. },
  42686. {
  42687. name: "Macro+++",
  42688. height: math.unit(4, "km")
  42689. },
  42690. {
  42691. name: "Macro++++",
  42692. height: math.unit(48, "km")
  42693. },
  42694. {
  42695. name: "Macro+++++",
  42696. height: math.unit(4500, "km")
  42697. },
  42698. ]
  42699. ))
  42700. characterMakers.push(() => makeCharacter(
  42701. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42702. {
  42703. front: {
  42704. height: math.unit(5 + 5/12, "feet"),
  42705. name: "Front",
  42706. image: {
  42707. source: "./media/characters/alsnapz/front.svg",
  42708. extra: 1157/1065,
  42709. bottom: 42/1199
  42710. }
  42711. },
  42712. },
  42713. [
  42714. {
  42715. name: "Normal",
  42716. height: math.unit(5 + 5/12, "feet"),
  42717. default: true
  42718. },
  42719. ]
  42720. ))
  42721. characterMakers.push(() => makeCharacter(
  42722. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42723. {
  42724. side: {
  42725. height: math.unit(3.2, "earths"),
  42726. name: "Side",
  42727. image: {
  42728. source: "./media/characters/mag/side.svg",
  42729. extra: 1331/1008,
  42730. bottom: 52/1383
  42731. }
  42732. },
  42733. wing: {
  42734. height: math.unit(1.94, "earths"),
  42735. name: "Wing",
  42736. image: {
  42737. source: "./media/characters/mag/wing.svg"
  42738. }
  42739. },
  42740. dick: {
  42741. height: math.unit(1.8, "earths"),
  42742. name: "Dick",
  42743. image: {
  42744. source: "./media/characters/mag/dick.svg"
  42745. }
  42746. },
  42747. ass: {
  42748. height: math.unit(1.33, "earths"),
  42749. name: "Ass",
  42750. image: {
  42751. source: "./media/characters/mag/ass.svg"
  42752. }
  42753. },
  42754. head: {
  42755. height: math.unit(1.1, "earths"),
  42756. name: "Head",
  42757. image: {
  42758. source: "./media/characters/mag/head.svg"
  42759. }
  42760. },
  42761. maw: {
  42762. height: math.unit(1.62, "earths"),
  42763. name: "Maw",
  42764. image: {
  42765. source: "./media/characters/mag/maw.svg"
  42766. }
  42767. },
  42768. },
  42769. [
  42770. {
  42771. name: "Small",
  42772. height: math.unit(162, "feet")
  42773. },
  42774. {
  42775. name: "Normal",
  42776. height: math.unit(3.2, "earths"),
  42777. default: true
  42778. },
  42779. ]
  42780. ))
  42781. characterMakers.push(() => makeCharacter(
  42782. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42783. {
  42784. front: {
  42785. height: math.unit(512, "feet"),
  42786. weight: math.unit(63509, "tonnes"),
  42787. name: "Front",
  42788. image: {
  42789. source: "./media/characters/vorrel-harroc/front.svg",
  42790. extra: 1075/1063,
  42791. bottom: 62/1137
  42792. }
  42793. },
  42794. },
  42795. [
  42796. {
  42797. name: "Normal",
  42798. height: math.unit(10, "feet")
  42799. },
  42800. {
  42801. name: "Macro",
  42802. height: math.unit(512, "feet"),
  42803. default: true
  42804. },
  42805. {
  42806. name: "Megamacro",
  42807. height: math.unit(256, "miles")
  42808. },
  42809. {
  42810. name: "Gigamacro",
  42811. height: math.unit(4096, "miles")
  42812. },
  42813. ]
  42814. ))
  42815. characterMakers.push(() => makeCharacter(
  42816. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42817. {
  42818. side: {
  42819. height: math.unit(50, "feet"),
  42820. name: "Side",
  42821. image: {
  42822. source: "./media/characters/froimar/side.svg",
  42823. extra: 855/638,
  42824. bottom: 99/954
  42825. }
  42826. },
  42827. },
  42828. [
  42829. {
  42830. name: "Macro",
  42831. height: math.unit(50, "feet"),
  42832. default: true
  42833. },
  42834. ]
  42835. ))
  42836. characterMakers.push(() => makeCharacter(
  42837. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42838. {
  42839. front: {
  42840. height: math.unit(210, "miles"),
  42841. name: "Front",
  42842. image: {
  42843. source: "./media/characters/timothy/front.svg",
  42844. extra: 1007/943,
  42845. bottom: 62/1069
  42846. }
  42847. },
  42848. frontSkirt: {
  42849. height: math.unit(210, "miles"),
  42850. name: "Front (Skirt)",
  42851. image: {
  42852. source: "./media/characters/timothy/front-skirt.svg",
  42853. extra: 1007/943,
  42854. bottom: 62/1069
  42855. }
  42856. },
  42857. frontCoat: {
  42858. height: math.unit(210, "miles"),
  42859. name: "Front (Coat)",
  42860. image: {
  42861. source: "./media/characters/timothy/front-coat.svg",
  42862. extra: 1007/943,
  42863. bottom: 62/1069
  42864. }
  42865. },
  42866. },
  42867. [
  42868. {
  42869. name: "Macro",
  42870. height: math.unit(210, "miles"),
  42871. default: true
  42872. },
  42873. {
  42874. name: "Megamacro",
  42875. height: math.unit(210000, "miles")
  42876. },
  42877. ]
  42878. ))
  42879. characterMakers.push(() => makeCharacter(
  42880. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42881. {
  42882. front: {
  42883. height: math.unit(188, "feet"),
  42884. name: "Front",
  42885. image: {
  42886. source: "./media/characters/pyotr/front.svg",
  42887. extra: 1912/1826,
  42888. bottom: 18/1930
  42889. }
  42890. },
  42891. },
  42892. [
  42893. {
  42894. name: "Macro",
  42895. height: math.unit(188, "feet"),
  42896. default: true
  42897. },
  42898. {
  42899. name: "Megamacro",
  42900. height: math.unit(8, "miles")
  42901. },
  42902. ]
  42903. ))
  42904. characterMakers.push(() => makeCharacter(
  42905. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42906. {
  42907. side: {
  42908. height: math.unit(10, "feet"),
  42909. weight: math.unit(4500, "lb"),
  42910. name: "Side",
  42911. image: {
  42912. source: "./media/characters/ackart/side.svg",
  42913. extra: 1776/1668,
  42914. bottom: 116/1892
  42915. }
  42916. },
  42917. },
  42918. [
  42919. {
  42920. name: "Normal",
  42921. height: math.unit(10, "feet"),
  42922. default: true
  42923. },
  42924. ]
  42925. ))
  42926. characterMakers.push(() => makeCharacter(
  42927. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42928. {
  42929. side: {
  42930. height: math.unit(21, "feet"),
  42931. name: "Side",
  42932. image: {
  42933. source: "./media/characters/nolow/side.svg",
  42934. extra: 1484/1434,
  42935. bottom: 85/1569
  42936. }
  42937. },
  42938. sideErect: {
  42939. height: math.unit(21, "feet"),
  42940. name: "Side-erect",
  42941. image: {
  42942. source: "./media/characters/nolow/side-erect.svg",
  42943. extra: 1484/1434,
  42944. bottom: 85/1569
  42945. }
  42946. },
  42947. },
  42948. [
  42949. {
  42950. name: "Regular",
  42951. height: math.unit(12, "feet")
  42952. },
  42953. {
  42954. name: "Big Chee",
  42955. height: math.unit(21, "feet"),
  42956. default: true
  42957. },
  42958. ]
  42959. ))
  42960. characterMakers.push(() => makeCharacter(
  42961. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42962. {
  42963. front: {
  42964. height: math.unit(7, "feet"),
  42965. weight: math.unit(250, "lb"),
  42966. name: "Front",
  42967. image: {
  42968. source: "./media/characters/nines/front.svg",
  42969. extra: 1741/1607,
  42970. bottom: 41/1782
  42971. }
  42972. },
  42973. side: {
  42974. height: math.unit(7, "feet"),
  42975. weight: math.unit(250, "lb"),
  42976. name: "Side",
  42977. image: {
  42978. source: "./media/characters/nines/side.svg",
  42979. extra: 1854/1735,
  42980. bottom: 93/1947
  42981. }
  42982. },
  42983. back: {
  42984. height: math.unit(7, "feet"),
  42985. weight: math.unit(250, "lb"),
  42986. name: "Back",
  42987. image: {
  42988. source: "./media/characters/nines/back.svg",
  42989. extra: 1748/1615,
  42990. bottom: 20/1768
  42991. }
  42992. },
  42993. },
  42994. [
  42995. {
  42996. name: "Megamacro",
  42997. height: math.unit(99, "km"),
  42998. default: true
  42999. },
  43000. ]
  43001. ))
  43002. characterMakers.push(() => makeCharacter(
  43003. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43004. {
  43005. front: {
  43006. height: math.unit(5 + 10/12, "feet"),
  43007. weight: math.unit(210, "lb"),
  43008. name: "Front",
  43009. image: {
  43010. source: "./media/characters/zenith/front.svg",
  43011. extra: 1531/1452,
  43012. bottom: 198/1729
  43013. }
  43014. },
  43015. back: {
  43016. height: math.unit(5 + 10/12, "feet"),
  43017. weight: math.unit(210, "lb"),
  43018. name: "Back",
  43019. image: {
  43020. source: "./media/characters/zenith/back.svg",
  43021. extra: 1571/1487,
  43022. bottom: 75/1646
  43023. }
  43024. },
  43025. },
  43026. [
  43027. {
  43028. name: "Normal",
  43029. height: math.unit(5 + 10/12, "feet"),
  43030. default: true
  43031. }
  43032. ]
  43033. ))
  43034. characterMakers.push(() => makeCharacter(
  43035. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43036. {
  43037. front: {
  43038. height: math.unit(4, "feet"),
  43039. weight: math.unit(60, "lb"),
  43040. name: "Front",
  43041. image: {
  43042. source: "./media/characters/jasper/front.svg",
  43043. extra: 1450/1379,
  43044. bottom: 19/1469
  43045. }
  43046. },
  43047. },
  43048. [
  43049. {
  43050. name: "Normal",
  43051. height: math.unit(4, "feet"),
  43052. default: true
  43053. },
  43054. ]
  43055. ))
  43056. characterMakers.push(() => makeCharacter(
  43057. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43058. {
  43059. front: {
  43060. height: math.unit(6 + 5/12, "feet"),
  43061. weight: math.unit(290, "lb"),
  43062. name: "Front",
  43063. image: {
  43064. source: "./media/characters/tiberius-thyben/front.svg",
  43065. extra: 757/739,
  43066. bottom: 39/796
  43067. }
  43068. },
  43069. },
  43070. [
  43071. {
  43072. name: "Micro",
  43073. height: math.unit(1.5, "inches")
  43074. },
  43075. {
  43076. name: "Normal",
  43077. height: math.unit(6 + 5/12, "feet"),
  43078. default: true
  43079. },
  43080. {
  43081. name: "Macro",
  43082. height: math.unit(300, "feet")
  43083. },
  43084. ]
  43085. ))
  43086. characterMakers.push(() => makeCharacter(
  43087. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43088. {
  43089. front: {
  43090. height: math.unit(5 + 6/12, "feet"),
  43091. weight: math.unit(60, "kg"),
  43092. name: "Front",
  43093. image: {
  43094. source: "./media/characters/sabre/front.svg",
  43095. extra: 738/671,
  43096. bottom: 27/765
  43097. }
  43098. },
  43099. },
  43100. [
  43101. {
  43102. name: "Teeny",
  43103. height: math.unit(2, "inches")
  43104. },
  43105. {
  43106. name: "Smol",
  43107. height: math.unit(8, "inches")
  43108. },
  43109. {
  43110. name: "Normal",
  43111. height: math.unit(5 + 6/12, "feet"),
  43112. default: true
  43113. },
  43114. {
  43115. name: "Mini-Macro",
  43116. height: math.unit(15, "feet")
  43117. },
  43118. {
  43119. name: "Macro",
  43120. height: math.unit(50, "feet")
  43121. },
  43122. ]
  43123. ))
  43124. characterMakers.push(() => makeCharacter(
  43125. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43126. {
  43127. front: {
  43128. height: math.unit(6 + 4/12, "feet"),
  43129. weight: math.unit(170, "lb"),
  43130. name: "Front",
  43131. image: {
  43132. source: "./media/characters/charlie/front.svg",
  43133. extra: 1348/1228,
  43134. bottom: 15/1363
  43135. }
  43136. },
  43137. },
  43138. [
  43139. {
  43140. name: "Macro",
  43141. height: math.unit(1700, "meters"),
  43142. default: true
  43143. },
  43144. {
  43145. name: "MegaMacro",
  43146. height: math.unit(20400, "meters")
  43147. },
  43148. ]
  43149. ))
  43150. characterMakers.push(() => makeCharacter(
  43151. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43152. {
  43153. front: {
  43154. height: math.unit(6 + 3/12, "feet"),
  43155. weight: math.unit(185, "lb"),
  43156. name: "Front",
  43157. image: {
  43158. source: "./media/characters/susan-grant/front.svg",
  43159. extra: 1351/1327,
  43160. bottom: 26/1377
  43161. }
  43162. },
  43163. },
  43164. [
  43165. {
  43166. name: "Normal",
  43167. height: math.unit(6 + 3/12, "feet"),
  43168. default: true
  43169. },
  43170. {
  43171. name: "Macro",
  43172. height: math.unit(225, "feet")
  43173. },
  43174. {
  43175. name: "Macro+",
  43176. height: math.unit(900, "feet")
  43177. },
  43178. {
  43179. name: "MegaMacro",
  43180. height: math.unit(14400, "feet")
  43181. },
  43182. ]
  43183. ))
  43184. characterMakers.push(() => makeCharacter(
  43185. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43186. {
  43187. front: {
  43188. height: math.unit(5 + 4/12, "feet"),
  43189. weight: math.unit(110, "lb"),
  43190. name: "Front",
  43191. image: {
  43192. source: "./media/characters/axel-isanov/front.svg",
  43193. extra: 1096/1065,
  43194. bottom: 13/1109
  43195. }
  43196. },
  43197. },
  43198. [
  43199. {
  43200. name: "Normal",
  43201. height: math.unit(5 + 4/12, "feet"),
  43202. default: true
  43203. },
  43204. ]
  43205. ))
  43206. characterMakers.push(() => makeCharacter(
  43207. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43208. {
  43209. front: {
  43210. height: math.unit(9, "feet"),
  43211. weight: math.unit(467, "lb"),
  43212. name: "Front",
  43213. image: {
  43214. source: "./media/characters/necahual/front.svg",
  43215. extra: 920/873,
  43216. bottom: 26/946
  43217. }
  43218. },
  43219. back: {
  43220. height: math.unit(9, "feet"),
  43221. weight: math.unit(467, "lb"),
  43222. name: "Back",
  43223. image: {
  43224. source: "./media/characters/necahual/back.svg",
  43225. extra: 930/884,
  43226. bottom: 16/946
  43227. }
  43228. },
  43229. frontUnderwear: {
  43230. height: math.unit(9, "feet"),
  43231. weight: math.unit(467, "lb"),
  43232. name: "Front (Underwear)",
  43233. image: {
  43234. source: "./media/characters/necahual/front-underwear.svg",
  43235. extra: 920/873,
  43236. bottom: 26/946
  43237. }
  43238. },
  43239. frontDressed: {
  43240. height: math.unit(9, "feet"),
  43241. weight: math.unit(467, "lb"),
  43242. name: "Front (Dressed)",
  43243. image: {
  43244. source: "./media/characters/necahual/front-dressed.svg",
  43245. extra: 920/873,
  43246. bottom: 26/946
  43247. }
  43248. },
  43249. },
  43250. [
  43251. {
  43252. name: "Comprsesed",
  43253. height: math.unit(9, "feet")
  43254. },
  43255. {
  43256. name: "Natural",
  43257. height: math.unit(15, "feet"),
  43258. default: true
  43259. },
  43260. {
  43261. name: "Boosted",
  43262. height: math.unit(50, "feet")
  43263. },
  43264. {
  43265. name: "Boosted+",
  43266. height: math.unit(150, "feet")
  43267. },
  43268. {
  43269. name: "Max",
  43270. height: math.unit(500, "feet")
  43271. },
  43272. ]
  43273. ))
  43274. characterMakers.push(() => makeCharacter(
  43275. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43276. {
  43277. front: {
  43278. height: math.unit(22 + 1/12, "feet"),
  43279. weight: math.unit(3200, "lb"),
  43280. name: "Front",
  43281. image: {
  43282. source: "./media/characters/theo-acacia/front.svg",
  43283. extra: 1796/1741,
  43284. bottom: 83/1879
  43285. }
  43286. },
  43287. frontUnderwear: {
  43288. height: math.unit(22 + 1/12, "feet"),
  43289. weight: math.unit(3200, "lb"),
  43290. name: "Front (Underwear)",
  43291. image: {
  43292. source: "./media/characters/theo-acacia/front-underwear.svg",
  43293. extra: 1796/1741,
  43294. bottom: 83/1879
  43295. }
  43296. },
  43297. frontNude: {
  43298. height: math.unit(22 + 1/12, "feet"),
  43299. weight: math.unit(3200, "lb"),
  43300. name: "Front (Nude)",
  43301. image: {
  43302. source: "./media/characters/theo-acacia/front-nude.svg",
  43303. extra: 1796/1741,
  43304. bottom: 83/1879
  43305. }
  43306. },
  43307. },
  43308. [
  43309. {
  43310. name: "Normal",
  43311. height: math.unit(22 + 1/12, "feet"),
  43312. default: true
  43313. },
  43314. ]
  43315. ))
  43316. characterMakers.push(() => makeCharacter(
  43317. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43318. {
  43319. front: {
  43320. height: math.unit(20, "feet"),
  43321. name: "Front",
  43322. image: {
  43323. source: "./media/characters/astra/front.svg",
  43324. extra: 1850/1714,
  43325. bottom: 106/1956
  43326. }
  43327. },
  43328. frontUndressed: {
  43329. height: math.unit(20, "feet"),
  43330. name: "Front (Undressed)",
  43331. image: {
  43332. source: "./media/characters/astra/front-undressed.svg",
  43333. extra: 1926/1749,
  43334. bottom: 0/1926
  43335. }
  43336. },
  43337. hand: {
  43338. height: math.unit(1.53, "feet"),
  43339. name: "Hand",
  43340. image: {
  43341. source: "./media/characters/astra/hand.svg"
  43342. }
  43343. },
  43344. paw: {
  43345. height: math.unit(1.53, "feet"),
  43346. name: "Paw",
  43347. image: {
  43348. source: "./media/characters/astra/paw.svg"
  43349. }
  43350. },
  43351. },
  43352. [
  43353. {
  43354. name: "Smallest",
  43355. height: math.unit(20, "feet")
  43356. },
  43357. {
  43358. name: "Normal",
  43359. height: math.unit(1e9, "miles"),
  43360. default: true
  43361. },
  43362. {
  43363. name: "Larger",
  43364. height: math.unit(5, "multiverses")
  43365. },
  43366. {
  43367. name: "Largest",
  43368. height: math.unit(1e9, "multiverses")
  43369. },
  43370. ]
  43371. ))
  43372. characterMakers.push(() => makeCharacter(
  43373. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43374. {
  43375. front: {
  43376. height: math.unit(8, "feet"),
  43377. name: "Front",
  43378. image: {
  43379. source: "./media/characters/breanna/front.svg",
  43380. extra: 1912/1632,
  43381. bottom: 33/1945
  43382. }
  43383. },
  43384. },
  43385. [
  43386. {
  43387. name: "Smallest",
  43388. height: math.unit(8, "feet")
  43389. },
  43390. {
  43391. name: "Normal",
  43392. height: math.unit(1, "mile"),
  43393. default: true
  43394. },
  43395. {
  43396. name: "Maximum",
  43397. height: math.unit(1500000000000, "lightyears")
  43398. },
  43399. ]
  43400. ))
  43401. characterMakers.push(() => makeCharacter(
  43402. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43403. {
  43404. front: {
  43405. height: math.unit(5 + 11/12, "feet"),
  43406. weight: math.unit(155, "lb"),
  43407. name: "Front",
  43408. image: {
  43409. source: "./media/characters/cai/front.svg",
  43410. extra: 1823/1702,
  43411. bottom: 32/1855
  43412. }
  43413. },
  43414. back: {
  43415. height: math.unit(5 + 11/12, "feet"),
  43416. weight: math.unit(155, "lb"),
  43417. name: "Back",
  43418. image: {
  43419. source: "./media/characters/cai/back.svg",
  43420. extra: 1809/1708,
  43421. bottom: 31/1840
  43422. }
  43423. },
  43424. },
  43425. [
  43426. {
  43427. name: "Normal",
  43428. height: math.unit(5 + 11/12, "feet"),
  43429. default: true
  43430. },
  43431. {
  43432. name: "Big",
  43433. height: math.unit(15, "feet")
  43434. },
  43435. {
  43436. name: "Macro",
  43437. height: math.unit(200, "feet")
  43438. },
  43439. ]
  43440. ))
  43441. characterMakers.push(() => makeCharacter(
  43442. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43443. {
  43444. front: {
  43445. height: math.unit(5 + 6/12, "feet"),
  43446. weight: math.unit(160, "lb"),
  43447. name: "Front",
  43448. image: {
  43449. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43450. extra: 1227/1174,
  43451. bottom: 37/1264
  43452. }
  43453. },
  43454. },
  43455. [
  43456. {
  43457. name: "Macro",
  43458. height: math.unit(444, "meters"),
  43459. default: true
  43460. },
  43461. ]
  43462. ))
  43463. characterMakers.push(() => makeCharacter(
  43464. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43465. {
  43466. front: {
  43467. height: math.unit(18 + 7/12, "feet"),
  43468. name: "Front",
  43469. image: {
  43470. source: "./media/characters/rex/front.svg",
  43471. extra: 1941/1807,
  43472. bottom: 66/2007
  43473. }
  43474. },
  43475. back: {
  43476. height: math.unit(18 + 7/12, "feet"),
  43477. name: "Back",
  43478. image: {
  43479. source: "./media/characters/rex/back.svg",
  43480. extra: 1937/1822,
  43481. bottom: 42/1979
  43482. }
  43483. },
  43484. boot: {
  43485. height: math.unit(3.45, "feet"),
  43486. name: "Boot",
  43487. image: {
  43488. source: "./media/characters/rex/boot.svg"
  43489. }
  43490. },
  43491. paw: {
  43492. height: math.unit(4.17, "feet"),
  43493. name: "Paw",
  43494. image: {
  43495. source: "./media/characters/rex/paw.svg"
  43496. }
  43497. },
  43498. head: {
  43499. height: math.unit(6.728, "feet"),
  43500. name: "Head",
  43501. image: {
  43502. source: "./media/characters/rex/head.svg"
  43503. }
  43504. },
  43505. },
  43506. [
  43507. {
  43508. name: "Nano",
  43509. height: math.unit(18 + 7/12, "feet")
  43510. },
  43511. {
  43512. name: "Micro",
  43513. height: math.unit(1.5, "megameters")
  43514. },
  43515. {
  43516. name: "Normal",
  43517. height: math.unit(440, "megameters"),
  43518. default: true
  43519. },
  43520. {
  43521. name: "Macro",
  43522. height: math.unit(2.5, "gigameters")
  43523. },
  43524. {
  43525. name: "Gigamacro",
  43526. height: math.unit(2, "galaxies")
  43527. },
  43528. ]
  43529. ))
  43530. characterMakers.push(() => makeCharacter(
  43531. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43532. {
  43533. side: {
  43534. height: math.unit(32, "feet"),
  43535. weight: math.unit(250000, "lb"),
  43536. name: "Side",
  43537. image: {
  43538. source: "./media/characters/silverwing/side.svg",
  43539. extra: 1100/1019,
  43540. bottom: 204/1304
  43541. }
  43542. },
  43543. },
  43544. [
  43545. {
  43546. name: "Normal",
  43547. height: math.unit(32, "feet"),
  43548. default: true
  43549. },
  43550. ]
  43551. ))
  43552. characterMakers.push(() => makeCharacter(
  43553. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43554. {
  43555. front: {
  43556. height: math.unit(6 + 6/12, "feet"),
  43557. weight: math.unit(350, "lb"),
  43558. name: "Front",
  43559. image: {
  43560. source: "./media/characters/tristan-hawthorne/front.svg",
  43561. extra: 1159/1124,
  43562. bottom: 37/1196
  43563. },
  43564. form: "labrador",
  43565. default: true
  43566. },
  43567. skunkFront: {
  43568. height: math.unit(4 + 6/12, "feet"),
  43569. weight: math.unit(120, "lb"),
  43570. name: "Front",
  43571. image: {
  43572. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43573. extra: 1609/1551,
  43574. bottom: 169/1778
  43575. },
  43576. form: "skunk",
  43577. default: true
  43578. },
  43579. },
  43580. [
  43581. {
  43582. name: "Normal",
  43583. height: math.unit(6 + 6/12, "feet"),
  43584. form: "labrador",
  43585. default: true
  43586. },
  43587. {
  43588. name: "Normal",
  43589. height: math.unit(4 + 6/12, "feet"),
  43590. form: "skunk",
  43591. default: true
  43592. },
  43593. ],
  43594. {
  43595. "labrador": {
  43596. name: "Labrador",
  43597. default: true
  43598. },
  43599. "skunk": {
  43600. name: "Skunk"
  43601. }
  43602. }
  43603. ))
  43604. characterMakers.push(() => makeCharacter(
  43605. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43606. {
  43607. front: {
  43608. height: math.unit(5 + 11/12, "feet"),
  43609. weight: math.unit(190, "lb"),
  43610. name: "Front",
  43611. image: {
  43612. source: "./media/characters/mizu/front.svg",
  43613. extra: 1988/1788,
  43614. bottom: 14/2002
  43615. }
  43616. },
  43617. },
  43618. [
  43619. {
  43620. name: "Normal",
  43621. height: math.unit(5 + 11/12, "feet"),
  43622. default: true
  43623. },
  43624. ]
  43625. ))
  43626. characterMakers.push(() => makeCharacter(
  43627. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43628. {
  43629. front: {
  43630. height: math.unit(1.7, "feet"),
  43631. weight: math.unit(50, "lb"),
  43632. name: "Front",
  43633. image: {
  43634. source: "./media/characters/dechroma/front.svg",
  43635. extra: 1095/859,
  43636. bottom: 64/1159
  43637. }
  43638. },
  43639. },
  43640. [
  43641. {
  43642. name: "Normal",
  43643. height: math.unit(1.7, "feet"),
  43644. default: true
  43645. },
  43646. ]
  43647. ))
  43648. characterMakers.push(() => makeCharacter(
  43649. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43650. {
  43651. side: {
  43652. height: math.unit(30, "feet"),
  43653. name: "Side",
  43654. image: {
  43655. source: "./media/characters/veluren-thanazel/side.svg",
  43656. extra: 1611/633,
  43657. bottom: 118/1729
  43658. }
  43659. },
  43660. front: {
  43661. height: math.unit(30, "feet"),
  43662. name: "Front",
  43663. image: {
  43664. source: "./media/characters/veluren-thanazel/front.svg",
  43665. extra: 1486/636,
  43666. bottom: 238/1724
  43667. }
  43668. },
  43669. head: {
  43670. height: math.unit(21.4, "feet"),
  43671. name: "Head",
  43672. image: {
  43673. source: "./media/characters/veluren-thanazel/head.svg"
  43674. }
  43675. },
  43676. genitals: {
  43677. height: math.unit(19.4, "feet"),
  43678. name: "Genitals",
  43679. image: {
  43680. source: "./media/characters/veluren-thanazel/genitals.svg"
  43681. }
  43682. },
  43683. },
  43684. [
  43685. {
  43686. name: "Social",
  43687. height: math.unit(6, "feet")
  43688. },
  43689. {
  43690. name: "Play",
  43691. height: math.unit(12, "feet")
  43692. },
  43693. {
  43694. name: "True",
  43695. height: math.unit(30, "feet"),
  43696. default: true
  43697. },
  43698. ]
  43699. ))
  43700. characterMakers.push(() => makeCharacter(
  43701. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43702. {
  43703. front: {
  43704. height: math.unit(7 + 6/12, "feet"),
  43705. weight: math.unit(500, "kg"),
  43706. name: "Front",
  43707. image: {
  43708. source: "./media/characters/arcturas/front.svg",
  43709. extra: 1700/1500,
  43710. bottom: 145/1845
  43711. }
  43712. },
  43713. },
  43714. [
  43715. {
  43716. name: "Normal",
  43717. height: math.unit(7 + 6/12, "feet"),
  43718. default: true
  43719. },
  43720. ]
  43721. ))
  43722. characterMakers.push(() => makeCharacter(
  43723. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43724. {
  43725. side: {
  43726. height: math.unit(6, "feet"),
  43727. weight: math.unit(2, "tons"),
  43728. name: "Side",
  43729. image: {
  43730. source: "./media/characters/vitaen/side.svg",
  43731. extra: 1157/617,
  43732. bottom: 122/1279
  43733. }
  43734. },
  43735. },
  43736. [
  43737. {
  43738. name: "Normal",
  43739. height: math.unit(6, "feet"),
  43740. default: true
  43741. },
  43742. ]
  43743. ))
  43744. characterMakers.push(() => makeCharacter(
  43745. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43746. {
  43747. front: {
  43748. height: math.unit(19, "feet"),
  43749. name: "Front",
  43750. image: {
  43751. source: "./media/characters/fia-dreamweaver/front.svg",
  43752. extra: 1630/1504,
  43753. bottom: 25/1655
  43754. }
  43755. },
  43756. },
  43757. [
  43758. {
  43759. name: "Normal",
  43760. height: math.unit(19, "feet"),
  43761. default: true
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43767. {
  43768. front: {
  43769. height: math.unit(5 + 4/12, "feet"),
  43770. name: "Front",
  43771. image: {
  43772. source: "./media/characters/artan/front.svg",
  43773. extra: 1618/1535,
  43774. bottom: 46/1664
  43775. }
  43776. },
  43777. back: {
  43778. height: math.unit(5 + 4/12, "feet"),
  43779. name: "Back",
  43780. image: {
  43781. source: "./media/characters/artan/back.svg",
  43782. extra: 1618/1543,
  43783. bottom: 31/1649
  43784. }
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Normal",
  43790. height: math.unit(5 + 4/12, "feet"),
  43791. default: true
  43792. },
  43793. ]
  43794. ))
  43795. characterMakers.push(() => makeCharacter(
  43796. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43797. {
  43798. side: {
  43799. height: math.unit(182, "cm"),
  43800. weight: math.unit(1000, "lb"),
  43801. name: "Side",
  43802. image: {
  43803. source: "./media/characters/silver-dragon/side.svg",
  43804. extra: 710/287,
  43805. bottom: 88/798
  43806. }
  43807. },
  43808. },
  43809. [
  43810. {
  43811. name: "Normal",
  43812. height: math.unit(182, "cm"),
  43813. default: true
  43814. },
  43815. ]
  43816. ))
  43817. characterMakers.push(() => makeCharacter(
  43818. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43819. {
  43820. side: {
  43821. height: math.unit(6 + 6/12, "feet"),
  43822. weight: math.unit(1.5, "tons"),
  43823. name: "Side",
  43824. image: {
  43825. source: "./media/characters/zephyr/side.svg",
  43826. extra: 1433/586,
  43827. bottom: 109/1542
  43828. }
  43829. },
  43830. },
  43831. [
  43832. {
  43833. name: "Normal",
  43834. height: math.unit(6 + 6/12, "feet"),
  43835. default: true
  43836. },
  43837. ]
  43838. ))
  43839. characterMakers.push(() => makeCharacter(
  43840. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43841. {
  43842. side: {
  43843. height: math.unit(1, "feet"),
  43844. name: "Side",
  43845. image: {
  43846. source: "./media/characters/vixye/side.svg",
  43847. extra: 632/541,
  43848. bottom: 0/632
  43849. }
  43850. },
  43851. },
  43852. [
  43853. {
  43854. name: "Normal",
  43855. height: math.unit(1, "feet"),
  43856. default: true
  43857. },
  43858. {
  43859. name: "True",
  43860. height: math.unit(1e15, "multiverses")
  43861. },
  43862. ]
  43863. ))
  43864. characterMakers.push(() => makeCharacter(
  43865. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43866. {
  43867. front: {
  43868. height: math.unit(8 + 2/12, "feet"),
  43869. weight: math.unit(650, "lb"),
  43870. name: "Front",
  43871. image: {
  43872. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43873. extra: 1174/1137,
  43874. bottom: 82/1256
  43875. }
  43876. },
  43877. back: {
  43878. height: math.unit(8 + 2/12, "feet"),
  43879. weight: math.unit(650, "lb"),
  43880. name: "Back",
  43881. image: {
  43882. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43883. extra: 1204/1157,
  43884. bottom: 46/1250
  43885. }
  43886. },
  43887. },
  43888. [
  43889. {
  43890. name: "Wildform",
  43891. height: math.unit(8 + 2/12, "feet"),
  43892. default: true
  43893. },
  43894. ]
  43895. ))
  43896. characterMakers.push(() => makeCharacter(
  43897. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43898. {
  43899. front: {
  43900. height: math.unit(18, "feet"),
  43901. name: "Front",
  43902. image: {
  43903. source: "./media/characters/cyphin/front.svg",
  43904. extra: 970/886,
  43905. bottom: 42/1012
  43906. }
  43907. },
  43908. back: {
  43909. height: math.unit(18, "feet"),
  43910. name: "Back",
  43911. image: {
  43912. source: "./media/characters/cyphin/back.svg",
  43913. extra: 1009/894,
  43914. bottom: 24/1033
  43915. }
  43916. },
  43917. head: {
  43918. height: math.unit(5.05, "feet"),
  43919. name: "Head",
  43920. image: {
  43921. source: "./media/characters/cyphin/head.svg"
  43922. }
  43923. },
  43924. tailbud: {
  43925. height: math.unit(5, "feet"),
  43926. name: "Tailbud",
  43927. image: {
  43928. source: "./media/characters/cyphin/tailbud.svg"
  43929. }
  43930. },
  43931. },
  43932. [
  43933. ]
  43934. ))
  43935. characterMakers.push(() => makeCharacter(
  43936. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43937. {
  43938. side: {
  43939. height: math.unit(10, "feet"),
  43940. weight: math.unit(6, "tons"),
  43941. name: "Side",
  43942. image: {
  43943. source: "./media/characters/raijin/side.svg",
  43944. extra: 1529/613,
  43945. bottom: 337/1866
  43946. }
  43947. },
  43948. },
  43949. [
  43950. {
  43951. name: "Normal",
  43952. height: math.unit(10, "feet"),
  43953. default: true
  43954. },
  43955. ]
  43956. ))
  43957. characterMakers.push(() => makeCharacter(
  43958. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43959. {
  43960. side: {
  43961. height: math.unit(9, "feet"),
  43962. name: "Side",
  43963. image: {
  43964. source: "./media/characters/nilghais/side.svg",
  43965. extra: 1047/744,
  43966. bottom: 91/1138
  43967. }
  43968. },
  43969. head: {
  43970. height: math.unit(3.14, "feet"),
  43971. name: "Head",
  43972. image: {
  43973. source: "./media/characters/nilghais/head.svg"
  43974. }
  43975. },
  43976. mouth: {
  43977. height: math.unit(4.6, "feet"),
  43978. name: "Mouth",
  43979. image: {
  43980. source: "./media/characters/nilghais/mouth.svg"
  43981. }
  43982. },
  43983. wings: {
  43984. height: math.unit(24, "feet"),
  43985. name: "Wings",
  43986. image: {
  43987. source: "./media/characters/nilghais/wings.svg"
  43988. }
  43989. },
  43990. ass: {
  43991. height: math.unit(6.12, "feet"),
  43992. name: "Ass",
  43993. image: {
  43994. source: "./media/characters/nilghais/ass.svg"
  43995. }
  43996. },
  43997. },
  43998. [
  43999. {
  44000. name: "Normal",
  44001. height: math.unit(9, "feet"),
  44002. default: true
  44003. },
  44004. ]
  44005. ))
  44006. characterMakers.push(() => makeCharacter(
  44007. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44008. {
  44009. regular: {
  44010. height: math.unit(16 + 2/12, "feet"),
  44011. weight: math.unit(2300, "lb"),
  44012. name: "Regular",
  44013. image: {
  44014. source: "./media/characters/zolgar/regular.svg",
  44015. extra: 1246/1004,
  44016. bottom: 124/1370
  44017. }
  44018. },
  44019. boxers: {
  44020. height: math.unit(16 + 2/12, "feet"),
  44021. weight: math.unit(2300, "lb"),
  44022. name: "Boxers",
  44023. image: {
  44024. source: "./media/characters/zolgar/boxers.svg",
  44025. extra: 1246/1004,
  44026. bottom: 124/1370
  44027. }
  44028. },
  44029. armored: {
  44030. height: math.unit(16 + 2/12, "feet"),
  44031. weight: math.unit(2300, "lb"),
  44032. name: "Armored",
  44033. image: {
  44034. source: "./media/characters/zolgar/armored.svg",
  44035. extra: 1246/1004,
  44036. bottom: 124/1370
  44037. }
  44038. },
  44039. goth: {
  44040. height: math.unit(16 + 2/12, "feet"),
  44041. weight: math.unit(2300, "lb"),
  44042. name: "Goth",
  44043. image: {
  44044. source: "./media/characters/zolgar/goth.svg",
  44045. extra: 1246/1004,
  44046. bottom: 124/1370
  44047. }
  44048. },
  44049. },
  44050. [
  44051. {
  44052. name: "Shrunken Down",
  44053. height: math.unit(9 + 2/12, "feet")
  44054. },
  44055. {
  44056. name: "Normal",
  44057. height: math.unit(16 + 2/12, "feet"),
  44058. default: true
  44059. },
  44060. ]
  44061. ))
  44062. characterMakers.push(() => makeCharacter(
  44063. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44064. {
  44065. front: {
  44066. height: math.unit(6, "feet"),
  44067. weight: math.unit(168, "lb"),
  44068. name: "Front",
  44069. image: {
  44070. source: "./media/characters/luca/front.svg",
  44071. extra: 841/667,
  44072. bottom: 102/943
  44073. }
  44074. },
  44075. },
  44076. [
  44077. {
  44078. name: "Normal",
  44079. height: math.unit(6, "feet"),
  44080. default: true
  44081. },
  44082. ]
  44083. ))
  44084. characterMakers.push(() => makeCharacter(
  44085. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44086. {
  44087. side: {
  44088. height: math.unit(7 + 3/12, "feet"),
  44089. weight: math.unit(312, "lb"),
  44090. name: "Side",
  44091. image: {
  44092. source: "./media/characters/zezo/side.svg",
  44093. extra: 1192/1067,
  44094. bottom: 63/1255
  44095. }
  44096. },
  44097. },
  44098. [
  44099. {
  44100. name: "Normal",
  44101. height: math.unit(7 + 3/12, "feet"),
  44102. default: true
  44103. },
  44104. ]
  44105. ))
  44106. characterMakers.push(() => makeCharacter(
  44107. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44108. {
  44109. front: {
  44110. height: math.unit(5 + 5/12, "feet"),
  44111. weight: math.unit(170, "lb"),
  44112. name: "Front",
  44113. image: {
  44114. source: "./media/characters/mayso/front.svg",
  44115. extra: 1215/1108,
  44116. bottom: 16/1231
  44117. }
  44118. },
  44119. },
  44120. [
  44121. {
  44122. name: "Normal",
  44123. height: math.unit(5 + 5/12, "feet"),
  44124. default: true
  44125. },
  44126. ]
  44127. ))
  44128. characterMakers.push(() => makeCharacter(
  44129. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44130. {
  44131. front: {
  44132. height: math.unit(4 + 3/12, "feet"),
  44133. weight: math.unit(80, "lb"),
  44134. name: "Front",
  44135. image: {
  44136. source: "./media/characters/hess/front.svg",
  44137. extra: 1200/1123,
  44138. bottom: 16/1216
  44139. }
  44140. },
  44141. },
  44142. [
  44143. {
  44144. name: "Normal",
  44145. height: math.unit(4 + 3/12, "feet"),
  44146. default: true
  44147. },
  44148. ]
  44149. ))
  44150. characterMakers.push(() => makeCharacter(
  44151. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44152. {
  44153. front: {
  44154. height: math.unit(1.9, "meters"),
  44155. name: "Front",
  44156. image: {
  44157. source: "./media/characters/ashgar/front.svg",
  44158. extra: 1177/1146,
  44159. bottom: 99/1276
  44160. }
  44161. },
  44162. back: {
  44163. height: math.unit(1.9, "meters"),
  44164. name: "Back",
  44165. image: {
  44166. source: "./media/characters/ashgar/back.svg",
  44167. extra: 1201/1183,
  44168. bottom: 53/1254
  44169. }
  44170. },
  44171. feral: {
  44172. height: math.unit(1.4, "meters"),
  44173. name: "Feral",
  44174. image: {
  44175. source: "./media/characters/ashgar/feral.svg",
  44176. extra: 370/345,
  44177. bottom: 45/415
  44178. }
  44179. },
  44180. },
  44181. [
  44182. {
  44183. name: "Normal",
  44184. height: math.unit(1.9, "meters"),
  44185. default: true
  44186. },
  44187. ]
  44188. ))
  44189. characterMakers.push(() => makeCharacter(
  44190. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44191. {
  44192. regular: {
  44193. height: math.unit(6, "feet"),
  44194. weight: math.unit(220, "lb"),
  44195. name: "Regular",
  44196. image: {
  44197. source: "./media/characters/phillip/regular.svg",
  44198. extra: 1373/1277,
  44199. bottom: 75/1448
  44200. }
  44201. },
  44202. dressed: {
  44203. height: math.unit(6, "feet"),
  44204. weight: math.unit(220, "lb"),
  44205. name: "Dressed",
  44206. image: {
  44207. source: "./media/characters/phillip/dressed.svg",
  44208. extra: 1373/1277,
  44209. bottom: 75/1448
  44210. }
  44211. },
  44212. paw: {
  44213. height: math.unit(1.44, "feet"),
  44214. name: "Paw",
  44215. image: {
  44216. source: "./media/characters/phillip/paw.svg"
  44217. }
  44218. },
  44219. },
  44220. [
  44221. {
  44222. name: "Normal",
  44223. height: math.unit(6, "feet"),
  44224. default: true
  44225. },
  44226. ]
  44227. ))
  44228. characterMakers.push(() => makeCharacter(
  44229. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44230. {
  44231. side: {
  44232. height: math.unit(42, "feet"),
  44233. name: "Side",
  44234. image: {
  44235. source: "./media/characters/uvula/side.svg",
  44236. extra: 683/586,
  44237. bottom: 60/743
  44238. }
  44239. },
  44240. front: {
  44241. height: math.unit(42, "feet"),
  44242. name: "Front",
  44243. image: {
  44244. source: "./media/characters/uvula/front.svg",
  44245. extra: 705/613,
  44246. bottom: 54/759
  44247. }
  44248. },
  44249. maw: {
  44250. height: math.unit(23.5, "feet"),
  44251. name: "Maw",
  44252. image: {
  44253. source: "./media/characters/uvula/maw.svg"
  44254. }
  44255. },
  44256. },
  44257. [
  44258. {
  44259. name: "Original Size",
  44260. height: math.unit(14, "inches")
  44261. },
  44262. {
  44263. name: "Human Size",
  44264. height: math.unit(6, "feet")
  44265. },
  44266. {
  44267. name: "Big",
  44268. height: math.unit(42, "feet"),
  44269. default: true
  44270. },
  44271. {
  44272. name: "Bigger",
  44273. height: math.unit(100, "feet")
  44274. },
  44275. ]
  44276. ))
  44277. characterMakers.push(() => makeCharacter(
  44278. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44279. {
  44280. front: {
  44281. height: math.unit(5 + 11/12, "feet"),
  44282. name: "Front",
  44283. image: {
  44284. source: "./media/characters/lannah/front.svg",
  44285. extra: 1208/1113,
  44286. bottom: 97/1305
  44287. }
  44288. },
  44289. },
  44290. [
  44291. {
  44292. name: "Normal",
  44293. height: math.unit(5 + 11/12, "feet"),
  44294. default: true
  44295. },
  44296. ]
  44297. ))
  44298. characterMakers.push(() => makeCharacter(
  44299. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44300. {
  44301. front: {
  44302. height: math.unit(6 + 3/12, "feet"),
  44303. weight: math.unit(3.5, "tons"),
  44304. name: "Front",
  44305. image: {
  44306. source: "./media/characters/emberflame/front.svg",
  44307. extra: 1198/672,
  44308. bottom: 82/1280
  44309. }
  44310. },
  44311. side: {
  44312. height: math.unit(6 + 3/12, "feet"),
  44313. weight: math.unit(3.5, "tons"),
  44314. name: "Side",
  44315. image: {
  44316. source: "./media/characters/emberflame/side.svg",
  44317. extra: 938/527,
  44318. bottom: 56/994
  44319. }
  44320. },
  44321. },
  44322. [
  44323. {
  44324. name: "Normal",
  44325. height: math.unit(6 + 3/12, "feet"),
  44326. default: true
  44327. },
  44328. ]
  44329. ))
  44330. characterMakers.push(() => makeCharacter(
  44331. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44332. {
  44333. side: {
  44334. height: math.unit(17.5, "feet"),
  44335. weight: math.unit(35, "tons"),
  44336. name: "Side",
  44337. image: {
  44338. source: "./media/characters/sophie-ambrose/side.svg",
  44339. extra: 1573/1242,
  44340. bottom: 71/1644
  44341. }
  44342. },
  44343. maw: {
  44344. height: math.unit(7.4, "feet"),
  44345. name: "Maw",
  44346. image: {
  44347. source: "./media/characters/sophie-ambrose/maw.svg"
  44348. }
  44349. },
  44350. },
  44351. [
  44352. {
  44353. name: "Normal",
  44354. height: math.unit(17.5, "feet"),
  44355. default: true
  44356. },
  44357. ]
  44358. ))
  44359. characterMakers.push(() => makeCharacter(
  44360. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44361. {
  44362. front: {
  44363. height: math.unit(280, "feet"),
  44364. weight: math.unit(550, "tons"),
  44365. name: "Front",
  44366. image: {
  44367. source: "./media/characters/king-mugi/front.svg",
  44368. extra: 1102/947,
  44369. bottom: 104/1206
  44370. }
  44371. },
  44372. },
  44373. [
  44374. {
  44375. name: "King Mugi",
  44376. height: math.unit(280, "feet"),
  44377. default: true
  44378. },
  44379. ]
  44380. ))
  44381. characterMakers.push(() => makeCharacter(
  44382. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44383. {
  44384. front: {
  44385. height: math.unit(64, "meters"),
  44386. name: "Front",
  44387. image: {
  44388. source: "./media/characters/nova-fox/front.svg",
  44389. extra: 1310/1246,
  44390. bottom: 65/1375
  44391. }
  44392. },
  44393. },
  44394. [
  44395. {
  44396. name: "Macro",
  44397. height: math.unit(64, "meters"),
  44398. default: true
  44399. },
  44400. ]
  44401. ))
  44402. characterMakers.push(() => makeCharacter(
  44403. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44404. {
  44405. front: {
  44406. height: math.unit(6 + 3/12, "feet"),
  44407. weight: math.unit(170, "lb"),
  44408. name: "Front",
  44409. image: {
  44410. source: "./media/characters/sam-bat/front.svg",
  44411. extra: 1601/1411,
  44412. bottom: 125/1726
  44413. }
  44414. },
  44415. back: {
  44416. height: math.unit(6 + 3/12, "feet"),
  44417. weight: math.unit(170, "lb"),
  44418. name: "Back",
  44419. image: {
  44420. source: "./media/characters/sam-bat/back.svg",
  44421. extra: 1577/1405,
  44422. bottom: 58/1635
  44423. }
  44424. },
  44425. },
  44426. [
  44427. {
  44428. name: "Normal",
  44429. height: math.unit(6 + 3/12, "feet"),
  44430. default: true
  44431. },
  44432. ]
  44433. ))
  44434. characterMakers.push(() => makeCharacter(
  44435. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44436. {
  44437. front: {
  44438. height: math.unit(59, "feet"),
  44439. weight: math.unit(40000, "lb"),
  44440. name: "Front",
  44441. image: {
  44442. source: "./media/characters/inari/front.svg",
  44443. extra: 1884/1350,
  44444. bottom: 95/1979
  44445. }
  44446. },
  44447. },
  44448. [
  44449. {
  44450. name: "Gigantamax",
  44451. height: math.unit(59, "feet"),
  44452. default: true
  44453. },
  44454. ]
  44455. ))
  44456. characterMakers.push(() => makeCharacter(
  44457. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44458. {
  44459. front: {
  44460. height: math.unit(5 + 8/12, "feet"),
  44461. name: "Front",
  44462. image: {
  44463. source: "./media/characters/elizabeth/front.svg",
  44464. extra: 1395/1298,
  44465. bottom: 54/1449
  44466. }
  44467. },
  44468. mouth: {
  44469. height: math.unit(1.97, "feet"),
  44470. name: "Mouth",
  44471. image: {
  44472. source: "./media/characters/elizabeth/mouth.svg"
  44473. }
  44474. },
  44475. foot: {
  44476. height: math.unit(1.17, "feet"),
  44477. name: "Foot",
  44478. image: {
  44479. source: "./media/characters/elizabeth/foot.svg"
  44480. }
  44481. },
  44482. },
  44483. [
  44484. {
  44485. name: "Normal",
  44486. height: math.unit(5 + 8/12, "feet"),
  44487. default: true
  44488. },
  44489. {
  44490. name: "Minimacro",
  44491. height: math.unit(18, "feet")
  44492. },
  44493. {
  44494. name: "Macro",
  44495. height: math.unit(180, "feet")
  44496. },
  44497. ]
  44498. ))
  44499. characterMakers.push(() => makeCharacter(
  44500. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44501. {
  44502. front: {
  44503. height: math.unit(5 + 2/12, "feet"),
  44504. name: "Front",
  44505. image: {
  44506. source: "./media/characters/october-gossamer/front.svg",
  44507. extra: 505/454,
  44508. bottom: 7/512
  44509. }
  44510. },
  44511. back: {
  44512. height: math.unit(5 + 2/12, "feet"),
  44513. name: "Back",
  44514. image: {
  44515. source: "./media/characters/october-gossamer/back.svg",
  44516. extra: 501/454,
  44517. bottom: 11/512
  44518. }
  44519. },
  44520. },
  44521. [
  44522. {
  44523. name: "Normal",
  44524. height: math.unit(5 + 2/12, "feet"),
  44525. default: true
  44526. },
  44527. ]
  44528. ))
  44529. characterMakers.push(() => makeCharacter(
  44530. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44531. {
  44532. front: {
  44533. height: math.unit(5, "feet"),
  44534. name: "Front",
  44535. image: {
  44536. source: "./media/characters/epiglottis/front.svg",
  44537. extra: 923/849,
  44538. bottom: 17/940
  44539. }
  44540. },
  44541. },
  44542. [
  44543. {
  44544. name: "Original Size",
  44545. height: math.unit(10, "inches")
  44546. },
  44547. {
  44548. name: "Human Size",
  44549. height: math.unit(5, "feet"),
  44550. default: true
  44551. },
  44552. {
  44553. name: "Big",
  44554. height: math.unit(25, "feet")
  44555. },
  44556. {
  44557. name: "Bigger",
  44558. height: math.unit(50, "feet")
  44559. },
  44560. {
  44561. name: "oh lawd",
  44562. height: math.unit(75, "feet")
  44563. },
  44564. ]
  44565. ))
  44566. characterMakers.push(() => makeCharacter(
  44567. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44568. {
  44569. front: {
  44570. height: math.unit(2 + 4/12, "feet"),
  44571. weight: math.unit(60, "lb"),
  44572. name: "Front",
  44573. image: {
  44574. source: "./media/characters/lerm/front.svg",
  44575. extra: 796/790,
  44576. bottom: 79/875
  44577. }
  44578. },
  44579. },
  44580. [
  44581. {
  44582. name: "Normal",
  44583. height: math.unit(2 + 4/12, "feet"),
  44584. default: true
  44585. },
  44586. ]
  44587. ))
  44588. characterMakers.push(() => makeCharacter(
  44589. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44590. {
  44591. front: {
  44592. height: math.unit(5.5, "feet"),
  44593. weight: math.unit(130, "lb"),
  44594. name: "Front",
  44595. image: {
  44596. source: "./media/characters/xena-nebadon/front.svg",
  44597. extra: 1828/1730,
  44598. bottom: 79/1907
  44599. }
  44600. },
  44601. },
  44602. [
  44603. {
  44604. name: "Tiny Puppy",
  44605. height: math.unit(3, "inches")
  44606. },
  44607. {
  44608. name: "Normal",
  44609. height: math.unit(5.5, "feet"),
  44610. default: true
  44611. },
  44612. {
  44613. name: "Lotta Lady",
  44614. height: math.unit(12, "feet")
  44615. },
  44616. {
  44617. name: "Pretty Big",
  44618. height: math.unit(100, "feet")
  44619. },
  44620. {
  44621. name: "Big",
  44622. height: math.unit(500, "feet")
  44623. },
  44624. {
  44625. name: "Skyscraper Toys",
  44626. height: math.unit(2500, "feet")
  44627. },
  44628. {
  44629. name: "Plane Catcher",
  44630. height: math.unit(8, "miles")
  44631. },
  44632. {
  44633. name: "Planet Toys",
  44634. height: math.unit(15, "earths")
  44635. },
  44636. {
  44637. name: "Stardust",
  44638. height: math.unit(0.25, "galaxies")
  44639. },
  44640. {
  44641. name: "Snacks",
  44642. height: math.unit(70, "universes")
  44643. },
  44644. ]
  44645. ))
  44646. characterMakers.push(() => makeCharacter(
  44647. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44648. {
  44649. front: {
  44650. height: math.unit(1.6, "meters"),
  44651. weight: math.unit(60, "kg"),
  44652. name: "Front",
  44653. image: {
  44654. source: "./media/characters/bounty/front.svg",
  44655. extra: 1426/1308,
  44656. bottom: 15/1441
  44657. }
  44658. },
  44659. back: {
  44660. height: math.unit(1.6, "meters"),
  44661. weight: math.unit(60, "kg"),
  44662. name: "Back",
  44663. image: {
  44664. source: "./media/characters/bounty/back.svg",
  44665. extra: 1417/1307,
  44666. bottom: 8/1425
  44667. }
  44668. },
  44669. },
  44670. [
  44671. {
  44672. name: "Normal",
  44673. height: math.unit(1.6, "meters"),
  44674. default: true
  44675. },
  44676. {
  44677. name: "Macro",
  44678. height: math.unit(300, "meters")
  44679. },
  44680. ]
  44681. ))
  44682. characterMakers.push(() => makeCharacter(
  44683. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44684. {
  44685. front: {
  44686. height: math.unit(2 + 8/12, "feet"),
  44687. weight: math.unit(15, "lb"),
  44688. name: "Front",
  44689. image: {
  44690. source: "./media/characters/mochi/front.svg",
  44691. extra: 1022/852,
  44692. bottom: 435/1457
  44693. }
  44694. },
  44695. back: {
  44696. height: math.unit(2 + 8/12, "feet"),
  44697. weight: math.unit(15, "lb"),
  44698. name: "Back",
  44699. image: {
  44700. source: "./media/characters/mochi/back.svg",
  44701. extra: 1335/1119,
  44702. bottom: 39/1374
  44703. }
  44704. },
  44705. bird: {
  44706. height: math.unit(2 + 8/12, "feet"),
  44707. weight: math.unit(15, "lb"),
  44708. name: "Bird",
  44709. image: {
  44710. source: "./media/characters/mochi/bird.svg",
  44711. extra: 1251/1113,
  44712. bottom: 178/1429
  44713. }
  44714. },
  44715. kaiju: {
  44716. height: math.unit(154, "feet"),
  44717. weight: math.unit(1e7, "lb"),
  44718. name: "Kaiju",
  44719. image: {
  44720. source: "./media/characters/mochi/kaiju.svg",
  44721. extra: 460/324,
  44722. bottom: 40/500
  44723. }
  44724. },
  44725. head: {
  44726. height: math.unit(1.21, "feet"),
  44727. name: "Head",
  44728. image: {
  44729. source: "./media/characters/mochi/head.svg"
  44730. }
  44731. },
  44732. alternateTail: {
  44733. height: math.unit(2 + 8/12, "feet"),
  44734. weight: math.unit(45, "lb"),
  44735. name: "Alternate Tail",
  44736. image: {
  44737. source: "./media/characters/mochi/alternate-tail.svg",
  44738. extra: 139/76,
  44739. bottom: 45/184
  44740. }
  44741. },
  44742. },
  44743. [
  44744. {
  44745. name: "Micro",
  44746. height: math.unit(2, "inches")
  44747. },
  44748. {
  44749. name: "Normal",
  44750. height: math.unit(2 + 8/12, "feet"),
  44751. default: true
  44752. },
  44753. {
  44754. name: "Macro",
  44755. height: math.unit(106, "feet")
  44756. },
  44757. ]
  44758. ))
  44759. characterMakers.push(() => makeCharacter(
  44760. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44761. {
  44762. front: {
  44763. height: math.unit(5.67, "feet"),
  44764. weight: math.unit(135, "lb"),
  44765. name: "Front",
  44766. image: {
  44767. source: "./media/characters/sarel/front.svg",
  44768. extra: 865/788,
  44769. bottom: 97/962
  44770. }
  44771. },
  44772. back: {
  44773. height: math.unit(5.67, "feet"),
  44774. weight: math.unit(135, "lb"),
  44775. name: "Back",
  44776. image: {
  44777. source: "./media/characters/sarel/back.svg",
  44778. extra: 857/777,
  44779. bottom: 32/889
  44780. }
  44781. },
  44782. chozoan: {
  44783. height: math.unit(5.67, "feet"),
  44784. weight: math.unit(135, "lb"),
  44785. name: "Chozoan",
  44786. image: {
  44787. source: "./media/characters/sarel/chozoan.svg",
  44788. extra: 865/788,
  44789. bottom: 97/962
  44790. }
  44791. },
  44792. current: {
  44793. height: math.unit(5.67, "feet"),
  44794. weight: math.unit(135, "lb"),
  44795. name: "Current",
  44796. image: {
  44797. source: "./media/characters/sarel/current.svg",
  44798. extra: 865/788,
  44799. bottom: 97/962
  44800. }
  44801. },
  44802. head: {
  44803. height: math.unit(1.77, "feet"),
  44804. name: "Head",
  44805. image: {
  44806. source: "./media/characters/sarel/head.svg"
  44807. }
  44808. },
  44809. claws: {
  44810. height: math.unit(1.8, "feet"),
  44811. name: "Claws",
  44812. image: {
  44813. source: "./media/characters/sarel/claws.svg"
  44814. }
  44815. },
  44816. clawsAlt: {
  44817. height: math.unit(1.8, "feet"),
  44818. name: "Claws-alt",
  44819. image: {
  44820. source: "./media/characters/sarel/claws-alt.svg"
  44821. }
  44822. },
  44823. },
  44824. [
  44825. {
  44826. name: "Normal",
  44827. height: math.unit(5.67, "feet"),
  44828. default: true
  44829. },
  44830. ]
  44831. ))
  44832. characterMakers.push(() => makeCharacter(
  44833. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44834. {
  44835. front: {
  44836. height: math.unit(5500, "feet"),
  44837. name: "Front",
  44838. image: {
  44839. source: "./media/characters/alyonia/front.svg",
  44840. extra: 1200/1135,
  44841. bottom: 29/1229
  44842. }
  44843. },
  44844. back: {
  44845. height: math.unit(5500, "feet"),
  44846. name: "Back",
  44847. image: {
  44848. source: "./media/characters/alyonia/back.svg",
  44849. extra: 1205/1138,
  44850. bottom: 10/1215
  44851. }
  44852. },
  44853. },
  44854. [
  44855. {
  44856. name: "Small",
  44857. height: math.unit(10, "feet")
  44858. },
  44859. {
  44860. name: "Macro",
  44861. height: math.unit(500, "feet")
  44862. },
  44863. {
  44864. name: "Mega Macro",
  44865. height: math.unit(5500, "feet"),
  44866. default: true
  44867. },
  44868. {
  44869. name: "Mega Macro+",
  44870. height: math.unit(500000, "feet")
  44871. },
  44872. {
  44873. name: "Giga Macro",
  44874. height: math.unit(3000, "miles")
  44875. },
  44876. {
  44877. name: "Tera Macro",
  44878. height: math.unit(2.8e6, "miles")
  44879. },
  44880. {
  44881. name: "Galactic",
  44882. height: math.unit(120000, "lightyears")
  44883. },
  44884. ]
  44885. ))
  44886. characterMakers.push(() => makeCharacter(
  44887. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44888. {
  44889. werewolf: {
  44890. height: math.unit(8, "feet"),
  44891. weight: math.unit(425, "lb"),
  44892. name: "Werewolf",
  44893. image: {
  44894. source: "./media/characters/autumn/werewolf.svg",
  44895. extra: 2154/2031,
  44896. bottom: 160/2314
  44897. }
  44898. },
  44899. human: {
  44900. height: math.unit(5 + 8/12, "feet"),
  44901. weight: math.unit(150, "lb"),
  44902. name: "Human",
  44903. image: {
  44904. source: "./media/characters/autumn/human.svg",
  44905. extra: 1200/1149,
  44906. bottom: 30/1230
  44907. }
  44908. },
  44909. },
  44910. [
  44911. {
  44912. name: "Normal",
  44913. height: math.unit(8, "feet"),
  44914. default: true
  44915. },
  44916. ]
  44917. ))
  44918. characterMakers.push(() => makeCharacter(
  44919. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44920. {
  44921. front: {
  44922. height: math.unit(8 + 5/12, "feet"),
  44923. weight: math.unit(825, "lb"),
  44924. name: "Front",
  44925. image: {
  44926. source: "./media/characters/cobalt-charizard/front.svg",
  44927. extra: 1268/1155,
  44928. bottom: 122/1390
  44929. }
  44930. },
  44931. side: {
  44932. height: math.unit(8 + 5/12, "feet"),
  44933. weight: math.unit(825, "lb"),
  44934. name: "Side",
  44935. image: {
  44936. source: "./media/characters/cobalt-charizard/side.svg",
  44937. extra: 1348/1257,
  44938. bottom: 58/1406
  44939. }
  44940. },
  44941. gMax: {
  44942. height: math.unit(134 + 11/12, "feet"),
  44943. name: "G-Max",
  44944. image: {
  44945. source: "./media/characters/cobalt-charizard/g-max.svg",
  44946. extra: 1835/1541,
  44947. bottom: 151/1986
  44948. }
  44949. },
  44950. },
  44951. [
  44952. {
  44953. name: "Normal",
  44954. height: math.unit(8 + 5/12, "feet"),
  44955. default: true
  44956. },
  44957. ]
  44958. ))
  44959. characterMakers.push(() => makeCharacter(
  44960. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44961. {
  44962. front: {
  44963. height: math.unit(6 + 3/12, "feet"),
  44964. weight: math.unit(210, "lb"),
  44965. name: "Front",
  44966. image: {
  44967. source: "./media/characters/stella/front.svg",
  44968. extra: 3549/3335,
  44969. bottom: 51/3600
  44970. }
  44971. },
  44972. },
  44973. [
  44974. {
  44975. name: "Normal",
  44976. height: math.unit(6 + 3/12, "feet"),
  44977. default: true
  44978. },
  44979. ]
  44980. ))
  44981. characterMakers.push(() => makeCharacter(
  44982. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44983. {
  44984. front: {
  44985. height: math.unit(5, "feet"),
  44986. weight: math.unit(90, "lb"),
  44987. name: "Front",
  44988. image: {
  44989. source: "./media/characters/riley-bishop/front.svg",
  44990. extra: 1450/1428,
  44991. bottom: 152/1602
  44992. }
  44993. },
  44994. },
  44995. [
  44996. {
  44997. name: "Normal",
  44998. height: math.unit(5, "feet"),
  44999. default: true
  45000. },
  45001. ]
  45002. ))
  45003. characterMakers.push(() => makeCharacter(
  45004. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45005. {
  45006. side: {
  45007. height: math.unit(8 + 2/12, "feet"),
  45008. weight: math.unit(500, "kg"),
  45009. name: "Side",
  45010. image: {
  45011. source: "./media/characters/theo-arcanine/side.svg",
  45012. extra: 1342/1074,
  45013. bottom: 111/1453
  45014. }
  45015. },
  45016. },
  45017. [
  45018. {
  45019. name: "Normal",
  45020. height: math.unit(8 + 2/12, "feet"),
  45021. default: true
  45022. },
  45023. ]
  45024. ))
  45025. characterMakers.push(() => makeCharacter(
  45026. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45027. {
  45028. front: {
  45029. height: math.unit(4, "feet"),
  45030. name: "Front",
  45031. image: {
  45032. source: "./media/characters/kali/front.svg",
  45033. extra: 1921/1357,
  45034. bottom: 70/1991
  45035. }
  45036. },
  45037. },
  45038. [
  45039. {
  45040. name: "Normal",
  45041. height: math.unit(4, "feet"),
  45042. default: true
  45043. },
  45044. {
  45045. name: "Macro",
  45046. height: math.unit(32, "meters")
  45047. },
  45048. {
  45049. name: "Macro+",
  45050. height: math.unit(150, "meters")
  45051. },
  45052. {
  45053. name: "Megamacro",
  45054. height: math.unit(7500, "meters")
  45055. },
  45056. {
  45057. name: "Megamacro+",
  45058. height: math.unit(80, "kilometers")
  45059. },
  45060. ]
  45061. ))
  45062. characterMakers.push(() => makeCharacter(
  45063. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45064. {
  45065. side: {
  45066. height: math.unit(5 + 11/12, "feet"),
  45067. weight: math.unit(236, "lb"),
  45068. name: "Side",
  45069. image: {
  45070. source: "./media/characters/gapp/side.svg",
  45071. extra: 775/340,
  45072. bottom: 58/833
  45073. }
  45074. },
  45075. mouth: {
  45076. height: math.unit(2.98, "feet"),
  45077. name: "Mouth",
  45078. image: {
  45079. source: "./media/characters/gapp/mouth.svg"
  45080. }
  45081. },
  45082. },
  45083. [
  45084. {
  45085. name: "Normal",
  45086. height: math.unit(5 + 1/12, "feet"),
  45087. default: true
  45088. },
  45089. ]
  45090. ))
  45091. characterMakers.push(() => makeCharacter(
  45092. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45093. {
  45094. front: {
  45095. height: math.unit(6, "feet"),
  45096. name: "Front",
  45097. image: {
  45098. source: "./media/characters/persephone/front.svg",
  45099. extra: 1895/1717,
  45100. bottom: 96/1991
  45101. }
  45102. },
  45103. back: {
  45104. height: math.unit(6, "feet"),
  45105. name: "Back",
  45106. image: {
  45107. source: "./media/characters/persephone/back.svg",
  45108. extra: 1868/1679,
  45109. bottom: 26/1894
  45110. }
  45111. },
  45112. casual: {
  45113. height: math.unit(6, "feet"),
  45114. name: "Casual",
  45115. image: {
  45116. source: "./media/characters/persephone/casual.svg",
  45117. extra: 1713/1541,
  45118. bottom: 76/1789
  45119. }
  45120. },
  45121. },
  45122. [
  45123. {
  45124. name: "Human Size",
  45125. height: math.unit(6, "feet")
  45126. },
  45127. {
  45128. name: "Big Steppy",
  45129. height: math.unit(600, "meters"),
  45130. default: true
  45131. },
  45132. {
  45133. name: "Galaxy Brain",
  45134. height: math.unit(1, "zettameter")
  45135. },
  45136. ]
  45137. ))
  45138. characterMakers.push(() => makeCharacter(
  45139. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45140. {
  45141. front: {
  45142. height: math.unit(1.85, "meters"),
  45143. name: "Front",
  45144. image: {
  45145. source: "./media/characters/riley-foxthing/front.svg",
  45146. extra: 1495/1354,
  45147. bottom: 122/1617
  45148. }
  45149. },
  45150. frontAlt: {
  45151. height: math.unit(1.85, "meters"),
  45152. name: "Front (Alt)",
  45153. image: {
  45154. source: "./media/characters/riley-foxthing/front-alt.svg",
  45155. extra: 1572/1389,
  45156. bottom: 116/1688
  45157. }
  45158. },
  45159. },
  45160. [
  45161. {
  45162. name: "Normal Sized",
  45163. height: math.unit(1.85, "meters"),
  45164. default: true
  45165. },
  45166. {
  45167. name: "Quite Sizable",
  45168. height: math.unit(5, "meters")
  45169. },
  45170. {
  45171. name: "Rather Large",
  45172. height: math.unit(20, "meters")
  45173. },
  45174. {
  45175. name: "Macro",
  45176. height: math.unit(450, "meters")
  45177. },
  45178. {
  45179. name: "Giga",
  45180. height: math.unit(5, "km")
  45181. },
  45182. ]
  45183. ))
  45184. characterMakers.push(() => makeCharacter(
  45185. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45186. {
  45187. front: {
  45188. height: math.unit(6, "feet"),
  45189. weight: math.unit(200, "lb"),
  45190. name: "Front",
  45191. image: {
  45192. source: "./media/characters/blizzard/front.svg",
  45193. extra: 1136/990,
  45194. bottom: 136/1272
  45195. }
  45196. },
  45197. back: {
  45198. height: math.unit(6, "feet"),
  45199. weight: math.unit(200, "lb"),
  45200. name: "Back",
  45201. image: {
  45202. source: "./media/characters/blizzard/back.svg",
  45203. extra: 1175/1034,
  45204. bottom: 97/1272
  45205. }
  45206. },
  45207. sitting: {
  45208. height: math.unit(3.725, "feet"),
  45209. weight: math.unit(200, "lb"),
  45210. name: "Sitting",
  45211. image: {
  45212. source: "./media/characters/blizzard/sitting.svg",
  45213. extra: 581/485,
  45214. bottom: 90/671
  45215. }
  45216. },
  45217. frontWizard: {
  45218. height: math.unit(7.9, "feet"),
  45219. weight: math.unit(200, "lb"),
  45220. name: "Front (Wizard)",
  45221. image: {
  45222. source: "./media/characters/blizzard/front-wizard.svg"
  45223. }
  45224. },
  45225. backWizard: {
  45226. height: math.unit(7.9, "feet"),
  45227. weight: math.unit(200, "lb"),
  45228. name: "Back (Wizard)",
  45229. image: {
  45230. source: "./media/characters/blizzard/back-wizard.svg"
  45231. }
  45232. },
  45233. frontNsfw: {
  45234. height: math.unit(6, "feet"),
  45235. weight: math.unit(200, "lb"),
  45236. name: "Front (NSFW)",
  45237. image: {
  45238. source: "./media/characters/blizzard/front-nsfw.svg",
  45239. extra: 1136/990,
  45240. bottom: 136/1272
  45241. }
  45242. },
  45243. backNsfw: {
  45244. height: math.unit(6, "feet"),
  45245. weight: math.unit(200, "lb"),
  45246. name: "Back (NSFW)",
  45247. image: {
  45248. source: "./media/characters/blizzard/back-nsfw.svg",
  45249. extra: 1175/1034,
  45250. bottom: 97/1272
  45251. }
  45252. },
  45253. sittingNsfw: {
  45254. height: math.unit(3.725, "feet"),
  45255. weight: math.unit(200, "lb"),
  45256. name: "Sitting (NSFW)",
  45257. image: {
  45258. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45259. extra: 581/485,
  45260. bottom: 90/671
  45261. }
  45262. },
  45263. wizardFrontNsfw: {
  45264. height: math.unit(7.9, "feet"),
  45265. weight: math.unit(200, "lb"),
  45266. name: "Wizard (Front, NSFW)",
  45267. image: {
  45268. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45269. }
  45270. },
  45271. },
  45272. [
  45273. {
  45274. name: "Normal",
  45275. height: math.unit(6, "feet"),
  45276. default: true
  45277. },
  45278. ]
  45279. ))
  45280. characterMakers.push(() => makeCharacter(
  45281. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45282. {
  45283. front: {
  45284. height: math.unit(5 + 2/12, "feet"),
  45285. name: "Front",
  45286. image: {
  45287. source: "./media/characters/lumi/front.svg",
  45288. extra: 1328/1268,
  45289. bottom: 103/1431
  45290. }
  45291. },
  45292. back: {
  45293. height: math.unit(5 + 2/12, "feet"),
  45294. name: "Back",
  45295. image: {
  45296. source: "./media/characters/lumi/back.svg",
  45297. extra: 1381/1327,
  45298. bottom: 43/1424
  45299. }
  45300. },
  45301. },
  45302. [
  45303. {
  45304. name: "Normal",
  45305. height: math.unit(5 + 2/12, "feet"),
  45306. default: true
  45307. },
  45308. ]
  45309. ))
  45310. characterMakers.push(() => makeCharacter(
  45311. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45312. {
  45313. front: {
  45314. height: math.unit(5 + 9/12, "feet"),
  45315. name: "Front",
  45316. image: {
  45317. source: "./media/characters/aliya-cotton/front.svg",
  45318. extra: 577/564,
  45319. bottom: 29/606
  45320. }
  45321. },
  45322. },
  45323. [
  45324. {
  45325. name: "Normal",
  45326. height: math.unit(5 + 9/12, "feet"),
  45327. default: true
  45328. },
  45329. ]
  45330. ))
  45331. characterMakers.push(() => makeCharacter(
  45332. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45333. {
  45334. front: {
  45335. height: math.unit(2.7, "meters"),
  45336. weight: math.unit(25000, "lb"),
  45337. name: "Front",
  45338. image: {
  45339. source: "./media/characters/noah-luxray/front.svg",
  45340. extra: 1644/825,
  45341. bottom: 339/1983
  45342. }
  45343. },
  45344. side: {
  45345. height: math.unit(2.97, "meters"),
  45346. weight: math.unit(25000, "lb"),
  45347. name: "Side",
  45348. image: {
  45349. source: "./media/characters/noah-luxray/side.svg",
  45350. extra: 1319/650,
  45351. bottom: 163/1482
  45352. }
  45353. },
  45354. dick: {
  45355. height: math.unit(7.4, "feet"),
  45356. weight: math.unit(2500, "lb"),
  45357. name: "Dick",
  45358. image: {
  45359. source: "./media/characters/noah-luxray/dick.svg"
  45360. }
  45361. },
  45362. dickAlt: {
  45363. height: math.unit(10.83, "feet"),
  45364. weight: math.unit(2500, "lb"),
  45365. name: "Dick-alt",
  45366. image: {
  45367. source: "./media/characters/noah-luxray/dick-alt.svg"
  45368. }
  45369. },
  45370. },
  45371. [
  45372. {
  45373. name: "BIG",
  45374. height: math.unit(2.7, "meters"),
  45375. default: true
  45376. },
  45377. ]
  45378. ))
  45379. characterMakers.push(() => makeCharacter(
  45380. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45381. {
  45382. standing: {
  45383. height: math.unit(183, "cm"),
  45384. weight: math.unit(68, "kg"),
  45385. name: "Standing",
  45386. image: {
  45387. source: "./media/characters/arion/standing.svg",
  45388. extra: 1869/1807,
  45389. bottom: 93/1962
  45390. }
  45391. },
  45392. reclining: {
  45393. height: math.unit(70.5, "cm"),
  45394. weight: math.unit(68, "lb"),
  45395. name: "Reclining",
  45396. image: {
  45397. source: "./media/characters/arion/reclining.svg",
  45398. extra: 937/870,
  45399. bottom: 63/1000
  45400. }
  45401. },
  45402. },
  45403. [
  45404. {
  45405. name: "Colossus Size, Low",
  45406. height: math.unit(33, "meters"),
  45407. default: true
  45408. },
  45409. {
  45410. name: "Colossus Size, Mid",
  45411. height: math.unit(52, "meters")
  45412. },
  45413. {
  45414. name: "Colossus Size, High",
  45415. height: math.unit(60, "meters")
  45416. },
  45417. {
  45418. name: "Titan Size, Low",
  45419. height: math.unit(91, "meters"),
  45420. },
  45421. {
  45422. name: "Titan Size, Mid",
  45423. height: math.unit(122, "meters")
  45424. },
  45425. {
  45426. name: "Titan Size, High",
  45427. height: math.unit(162, "meters")
  45428. },
  45429. ]
  45430. ))
  45431. characterMakers.push(() => makeCharacter(
  45432. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45433. {
  45434. front: {
  45435. height: math.unit(53, "meters"),
  45436. name: "Front",
  45437. image: {
  45438. source: "./media/characters/stellar-marbey/front.svg",
  45439. extra: 1913/1805,
  45440. bottom: 92/2005
  45441. }
  45442. },
  45443. back: {
  45444. height: math.unit(53, "meters"),
  45445. name: "Back",
  45446. image: {
  45447. source: "./media/characters/stellar-marbey/back.svg",
  45448. extra: 1960/1851,
  45449. bottom: 28/1988
  45450. }
  45451. },
  45452. mouth: {
  45453. height: math.unit(3.5, "meters"),
  45454. name: "Mouth",
  45455. image: {
  45456. source: "./media/characters/stellar-marbey/mouth.svg"
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Macro",
  45463. height: math.unit(53, "meters"),
  45464. default: true
  45465. },
  45466. ]
  45467. ))
  45468. characterMakers.push(() => makeCharacter(
  45469. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45470. {
  45471. front: {
  45472. height: math.unit(8 + 1/12, "feet"),
  45473. weight: math.unit(233, "lb"),
  45474. name: "Front",
  45475. image: {
  45476. source: "./media/characters/matsu/front.svg",
  45477. extra: 832/772,
  45478. bottom: 40/872
  45479. }
  45480. },
  45481. back: {
  45482. height: math.unit(8 + 1/12, "feet"),
  45483. weight: math.unit(233, "lb"),
  45484. name: "Back",
  45485. image: {
  45486. source: "./media/characters/matsu/back.svg",
  45487. extra: 839/780,
  45488. bottom: 47/886
  45489. }
  45490. },
  45491. },
  45492. [
  45493. {
  45494. name: "Normal",
  45495. height: math.unit(8 + 1/12, "feet"),
  45496. default: true
  45497. },
  45498. ]
  45499. ))
  45500. characterMakers.push(() => makeCharacter(
  45501. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45502. {
  45503. front: {
  45504. height: math.unit(4, "feet"),
  45505. weight: math.unit(148, "lb"),
  45506. name: "Front",
  45507. image: {
  45508. source: "./media/characters/thiz/front.svg",
  45509. extra: 1913/1748,
  45510. bottom: 62/1975
  45511. }
  45512. },
  45513. },
  45514. [
  45515. {
  45516. name: "Normal",
  45517. height: math.unit(4, "feet"),
  45518. default: true
  45519. },
  45520. ]
  45521. ))
  45522. characterMakers.push(() => makeCharacter(
  45523. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45524. {
  45525. front: {
  45526. height: math.unit(7 + 6/12, "feet"),
  45527. weight: math.unit(267, "lb"),
  45528. name: "Front",
  45529. image: {
  45530. source: "./media/characters/marcel/front.svg",
  45531. extra: 1221/1096,
  45532. bottom: 76/1297
  45533. }
  45534. },
  45535. },
  45536. [
  45537. {
  45538. name: "Normal",
  45539. height: math.unit(7 + 6/12, "feet"),
  45540. default: true
  45541. },
  45542. ]
  45543. ))
  45544. characterMakers.push(() => makeCharacter(
  45545. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45546. {
  45547. side: {
  45548. height: math.unit(42, "meters"),
  45549. name: "Side",
  45550. image: {
  45551. source: "./media/characters/flake/side.svg",
  45552. extra: 1525/1306,
  45553. bottom: 209/1734
  45554. }
  45555. },
  45556. },
  45557. [
  45558. {
  45559. name: "Normal",
  45560. height: math.unit(42, "meters"),
  45561. default: true
  45562. },
  45563. ]
  45564. ))
  45565. characterMakers.push(() => makeCharacter(
  45566. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45567. {
  45568. dressed: {
  45569. height: math.unit(6 + 4/12, "feet"),
  45570. weight: math.unit(520, "lb"),
  45571. name: "Dressed",
  45572. image: {
  45573. source: "./media/characters/someonne/dressed.svg",
  45574. extra: 1020/1010,
  45575. bottom: 178/1198
  45576. }
  45577. },
  45578. undressed: {
  45579. height: math.unit(6 + 4/12, "feet"),
  45580. weight: math.unit(520, "lb"),
  45581. name: "Undressed",
  45582. image: {
  45583. source: "./media/characters/someonne/undressed.svg",
  45584. extra: 1019/1014,
  45585. bottom: 169/1188
  45586. }
  45587. },
  45588. },
  45589. [
  45590. {
  45591. name: "Normal",
  45592. height: math.unit(6 + 4/12, "feet"),
  45593. default: true
  45594. },
  45595. ]
  45596. ))
  45597. characterMakers.push(() => makeCharacter(
  45598. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45599. {
  45600. front: {
  45601. height: math.unit(3, "feet"),
  45602. weight: math.unit(30, "lb"),
  45603. name: "Front",
  45604. image: {
  45605. source: "./media/characters/till/front.svg",
  45606. extra: 892/823,
  45607. bottom: 55/947
  45608. }
  45609. },
  45610. },
  45611. [
  45612. {
  45613. name: "Normal",
  45614. height: math.unit(3, "feet"),
  45615. default: true
  45616. },
  45617. ]
  45618. ))
  45619. characterMakers.push(() => makeCharacter(
  45620. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45621. {
  45622. front: {
  45623. height: math.unit(9 + 8/12, "feet"),
  45624. weight: math.unit(800, "lb"),
  45625. name: "Front",
  45626. image: {
  45627. source: "./media/characters/sydney-heki/front.svg",
  45628. extra: 1360/1300,
  45629. bottom: 22/1382
  45630. }
  45631. },
  45632. back: {
  45633. height: math.unit(9 + 8/12, "feet"),
  45634. weight: math.unit(800, "lb"),
  45635. name: "Back",
  45636. image: {
  45637. source: "./media/characters/sydney-heki/back.svg",
  45638. extra: 1356/1293,
  45639. bottom: 12/1368
  45640. }
  45641. },
  45642. frontDressed: {
  45643. height: math.unit(9 + 8/12, "feet"),
  45644. weight: math.unit(800, "lb"),
  45645. name: "Front-dressed",
  45646. image: {
  45647. source: "./media/characters/sydney-heki/front-dressed.svg",
  45648. extra: 1360/1300,
  45649. bottom: 22/1382
  45650. }
  45651. },
  45652. },
  45653. [
  45654. {
  45655. name: "Normal",
  45656. height: math.unit(9 + 8/12, "feet"),
  45657. default: true
  45658. },
  45659. {
  45660. name: "Macro",
  45661. height: math.unit(500, "feet")
  45662. },
  45663. {
  45664. name: "Megamacro",
  45665. height: math.unit(3.6, "miles")
  45666. },
  45667. ]
  45668. ))
  45669. characterMakers.push(() => makeCharacter(
  45670. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45671. {
  45672. front: {
  45673. height: math.unit(200, "cm"),
  45674. weight: math.unit(250, "lb"),
  45675. name: "Front",
  45676. image: {
  45677. source: "./media/characters/fowler-karlsson/front.svg",
  45678. extra: 897/845,
  45679. bottom: 123/1020
  45680. }
  45681. },
  45682. back: {
  45683. height: math.unit(200, "cm"),
  45684. weight: math.unit(250, "lb"),
  45685. name: "Back",
  45686. image: {
  45687. source: "./media/characters/fowler-karlsson/back.svg",
  45688. extra: 999/944,
  45689. bottom: 26/1025
  45690. }
  45691. },
  45692. dick: {
  45693. height: math.unit(1.92, "feet"),
  45694. weight: math.unit(150, "lb"),
  45695. name: "Dick",
  45696. image: {
  45697. source: "./media/characters/fowler-karlsson/dick.svg"
  45698. }
  45699. },
  45700. },
  45701. [
  45702. {
  45703. name: "Normal",
  45704. height: math.unit(200, "cm"),
  45705. default: true
  45706. },
  45707. {
  45708. name: "Smaller Macro",
  45709. height: math.unit(90, "m")
  45710. },
  45711. {
  45712. name: "Macro",
  45713. height: math.unit(150, "m")
  45714. },
  45715. {
  45716. name: "Bigger Macro",
  45717. height: math.unit(300, "m")
  45718. },
  45719. ]
  45720. ))
  45721. characterMakers.push(() => makeCharacter(
  45722. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45723. {
  45724. side: {
  45725. height: math.unit(8 + 2/12, "feet"),
  45726. weight: math.unit(1, "tonne"),
  45727. name: "Side",
  45728. image: {
  45729. source: "./media/characters/rylide/side.svg",
  45730. extra: 1318/1034,
  45731. bottom: 106/1424
  45732. }
  45733. },
  45734. sitting: {
  45735. height: math.unit(303, "cm"),
  45736. weight: math.unit(1, "tonne"),
  45737. name: "Sitting",
  45738. image: {
  45739. source: "./media/characters/rylide/sitting.svg",
  45740. extra: 1303/1103,
  45741. bottom: 36/1339
  45742. }
  45743. },
  45744. },
  45745. [
  45746. {
  45747. name: "Normal",
  45748. height: math.unit(8 + 2/12, "feet"),
  45749. default: true
  45750. },
  45751. ]
  45752. ))
  45753. characterMakers.push(() => makeCharacter(
  45754. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45755. {
  45756. front: {
  45757. height: math.unit(5 + 10/12, "feet"),
  45758. weight: math.unit(160, "lb"),
  45759. name: "Front",
  45760. image: {
  45761. source: "./media/characters/pudask/front.svg",
  45762. extra: 1616/1590,
  45763. bottom: 161/1777
  45764. }
  45765. },
  45766. },
  45767. [
  45768. {
  45769. name: "Ferret Height",
  45770. height: math.unit(2 + 5/12, "feet")
  45771. },
  45772. {
  45773. name: "Canon Height",
  45774. height: math.unit(5 + 10/12, "feet"),
  45775. default: true
  45776. },
  45777. ]
  45778. ))
  45779. characterMakers.push(() => makeCharacter(
  45780. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45781. {
  45782. front: {
  45783. height: math.unit(3 + 6/12, "feet"),
  45784. weight: math.unit(60, "lb"),
  45785. name: "Front",
  45786. image: {
  45787. source: "./media/characters/ramita/front.svg",
  45788. extra: 1402/1232,
  45789. bottom: 62/1464
  45790. }
  45791. },
  45792. dressed: {
  45793. height: math.unit(3 + 6/12, "feet"),
  45794. weight: math.unit(60, "lb"),
  45795. name: "Dressed",
  45796. image: {
  45797. source: "./media/characters/ramita/dressed.svg",
  45798. extra: 1534/1249,
  45799. bottom: 50/1584
  45800. }
  45801. },
  45802. },
  45803. [
  45804. {
  45805. name: "Normal",
  45806. height: math.unit(3 + 6/12, "feet"),
  45807. default: true
  45808. },
  45809. ]
  45810. ))
  45811. characterMakers.push(() => makeCharacter(
  45812. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45813. {
  45814. front: {
  45815. height: math.unit(8, "feet"),
  45816. name: "Front",
  45817. image: {
  45818. source: "./media/characters/ark/front.svg",
  45819. extra: 772/693,
  45820. bottom: 45/817
  45821. }
  45822. },
  45823. },
  45824. [
  45825. {
  45826. name: "Normal",
  45827. height: math.unit(8, "feet"),
  45828. default: true
  45829. },
  45830. ]
  45831. ))
  45832. characterMakers.push(() => makeCharacter(
  45833. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45834. {
  45835. front: {
  45836. height: math.unit(6, "feet"),
  45837. weight: math.unit(250, "lb"),
  45838. volume: math.unit(5/8, "gallons"),
  45839. name: "Front",
  45840. image: {
  45841. source: "./media/characters/ludwig-horn/front.svg",
  45842. extra: 1782/1635,
  45843. bottom: 96/1878
  45844. }
  45845. },
  45846. back: {
  45847. height: math.unit(6, "feet"),
  45848. weight: math.unit(250, "lb"),
  45849. volume: math.unit(5/8, "gallons"),
  45850. name: "Back",
  45851. image: {
  45852. source: "./media/characters/ludwig-horn/back.svg",
  45853. extra: 1874/1729,
  45854. bottom: 27/1901
  45855. }
  45856. },
  45857. dick: {
  45858. height: math.unit(1.05, "feet"),
  45859. weight: math.unit(15, "lb"),
  45860. volume: math.unit(5/8, "gallons"),
  45861. name: "Dick",
  45862. image: {
  45863. source: "./media/characters/ludwig-horn/dick.svg"
  45864. }
  45865. },
  45866. },
  45867. [
  45868. {
  45869. name: "Small",
  45870. height: math.unit(6, "feet")
  45871. },
  45872. {
  45873. name: "Typical",
  45874. height: math.unit(12, "feet"),
  45875. default: true
  45876. },
  45877. {
  45878. name: "Building",
  45879. height: math.unit(80, "feet")
  45880. },
  45881. {
  45882. name: "Town",
  45883. height: math.unit(800, "feet")
  45884. },
  45885. {
  45886. name: "Kingdom",
  45887. height: math.unit(80000, "feet")
  45888. },
  45889. {
  45890. name: "Planet",
  45891. height: math.unit(8000000, "feet")
  45892. },
  45893. {
  45894. name: "Universe",
  45895. height: math.unit(8000000000, "feet")
  45896. },
  45897. {
  45898. name: "Transcended",
  45899. height: math.unit(8e27, "feet")
  45900. },
  45901. ]
  45902. ))
  45903. characterMakers.push(() => makeCharacter(
  45904. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45905. {
  45906. front: {
  45907. height: math.unit(5, "feet"),
  45908. weight: math.unit(50, "kg"),
  45909. name: "Front",
  45910. image: {
  45911. source: "./media/characters/biot-avery/front.svg",
  45912. extra: 1295/1232,
  45913. bottom: 86/1381
  45914. }
  45915. },
  45916. },
  45917. [
  45918. {
  45919. name: "Normal",
  45920. height: math.unit(5, "feet"),
  45921. default: true
  45922. },
  45923. ]
  45924. ))
  45925. characterMakers.push(() => makeCharacter(
  45926. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45927. {
  45928. front: {
  45929. height: math.unit(6, "feet"),
  45930. name: "Front",
  45931. image: {
  45932. source: "./media/characters/kitsune-kiro/front.svg",
  45933. extra: 1270/1158,
  45934. bottom: 42/1312
  45935. }
  45936. },
  45937. frontAlt: {
  45938. height: math.unit(6, "feet"),
  45939. name: "Front-alt",
  45940. image: {
  45941. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45942. extra: 1130/1081,
  45943. bottom: 36/1166
  45944. }
  45945. },
  45946. },
  45947. [
  45948. {
  45949. name: "Smol",
  45950. height: math.unit(3, "feet")
  45951. },
  45952. {
  45953. name: "Normal",
  45954. height: math.unit(6, "feet"),
  45955. default: true
  45956. },
  45957. ]
  45958. ))
  45959. characterMakers.push(() => makeCharacter(
  45960. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45961. {
  45962. front: {
  45963. height: math.unit(6, "feet"),
  45964. weight: math.unit(125, "lb"),
  45965. name: "Front",
  45966. image: {
  45967. source: "./media/characters/jack-thatcher/front.svg",
  45968. extra: 1474/1370,
  45969. bottom: 26/1500
  45970. }
  45971. },
  45972. back: {
  45973. height: math.unit(6, "feet"),
  45974. weight: math.unit(125, "lb"),
  45975. name: "Back",
  45976. image: {
  45977. source: "./media/characters/jack-thatcher/back.svg",
  45978. extra: 1489/1384,
  45979. bottom: 18/1507
  45980. }
  45981. },
  45982. },
  45983. [
  45984. {
  45985. name: "Normal",
  45986. height: math.unit(6, "feet"),
  45987. default: true
  45988. },
  45989. {
  45990. name: "Macro",
  45991. height: math.unit(75, "feet")
  45992. },
  45993. {
  45994. name: "Macro-er",
  45995. height: math.unit(250, "feet")
  45996. },
  45997. ]
  45998. ))
  45999. characterMakers.push(() => makeCharacter(
  46000. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46001. {
  46002. front: {
  46003. height: math.unit(7, "feet"),
  46004. weight: math.unit(110, "kg"),
  46005. name: "Front",
  46006. image: {
  46007. source: "./media/characters/max-hyper/front.svg",
  46008. extra: 1969/1881,
  46009. bottom: 49/2018
  46010. }
  46011. },
  46012. },
  46013. [
  46014. {
  46015. name: "Normal",
  46016. height: math.unit(7, "feet"),
  46017. default: true
  46018. },
  46019. ]
  46020. ))
  46021. characterMakers.push(() => makeCharacter(
  46022. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46023. {
  46024. front: {
  46025. height: math.unit(5 + 5/12, "feet"),
  46026. weight: math.unit(160, "lb"),
  46027. name: "Front",
  46028. image: {
  46029. source: "./media/characters/spook/front.svg",
  46030. extra: 794/791,
  46031. bottom: 54/848
  46032. }
  46033. },
  46034. back: {
  46035. height: math.unit(5 + 5/12, "feet"),
  46036. weight: math.unit(160, "lb"),
  46037. name: "Back",
  46038. image: {
  46039. source: "./media/characters/spook/back.svg",
  46040. extra: 812/798,
  46041. bottom: 32/844
  46042. }
  46043. },
  46044. },
  46045. [
  46046. {
  46047. name: "Normal",
  46048. height: math.unit(5 + 5/12, "feet"),
  46049. default: true
  46050. },
  46051. ]
  46052. ))
  46053. characterMakers.push(() => makeCharacter(
  46054. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46055. {
  46056. front: {
  46057. height: math.unit(18, "feet"),
  46058. name: "Front",
  46059. image: {
  46060. source: "./media/characters/xeaduulix/front.svg",
  46061. extra: 1380/1166,
  46062. bottom: 110/1490
  46063. }
  46064. },
  46065. back: {
  46066. height: math.unit(18, "feet"),
  46067. name: "Back",
  46068. image: {
  46069. source: "./media/characters/xeaduulix/back.svg",
  46070. extra: 1592/1170,
  46071. bottom: 128/1720
  46072. }
  46073. },
  46074. frontNsfw: {
  46075. height: math.unit(18, "feet"),
  46076. name: "Front (NSFW)",
  46077. image: {
  46078. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46079. extra: 1380/1166,
  46080. bottom: 110/1490
  46081. }
  46082. },
  46083. backNsfw: {
  46084. height: math.unit(18, "feet"),
  46085. name: "Back (NSFW)",
  46086. image: {
  46087. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46088. extra: 1592/1170,
  46089. bottom: 128/1720
  46090. }
  46091. },
  46092. },
  46093. [
  46094. {
  46095. name: "Normal",
  46096. height: math.unit(18, "feet"),
  46097. default: true
  46098. },
  46099. ]
  46100. ))
  46101. characterMakers.push(() => makeCharacter(
  46102. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46103. {
  46104. spreadWings: {
  46105. height: math.unit(20, "feet"),
  46106. name: "Spread Wings",
  46107. image: {
  46108. source: "./media/characters/fledge/spread-wings.svg",
  46109. extra: 693/635,
  46110. bottom: 26/719
  46111. }
  46112. },
  46113. front: {
  46114. height: math.unit(20, "feet"),
  46115. name: "Front",
  46116. image: {
  46117. source: "./media/characters/fledge/front.svg",
  46118. extra: 684/637,
  46119. bottom: 18/702
  46120. }
  46121. },
  46122. frontAlt: {
  46123. height: math.unit(20, "feet"),
  46124. name: "Front (Alt)",
  46125. image: {
  46126. source: "./media/characters/fledge/front-alt.svg",
  46127. extra: 708/664,
  46128. bottom: 13/721
  46129. }
  46130. },
  46131. back: {
  46132. height: math.unit(20, "feet"),
  46133. name: "Back",
  46134. image: {
  46135. source: "./media/characters/fledge/back.svg",
  46136. extra: 718/634,
  46137. bottom: 22/740
  46138. }
  46139. },
  46140. head: {
  46141. height: math.unit(5.55, "feet"),
  46142. name: "Head",
  46143. image: {
  46144. source: "./media/characters/fledge/head.svg"
  46145. }
  46146. },
  46147. headAlt: {
  46148. height: math.unit(5.1, "feet"),
  46149. name: "Head (Alt)",
  46150. image: {
  46151. source: "./media/characters/fledge/head-alt.svg"
  46152. }
  46153. },
  46154. },
  46155. [
  46156. {
  46157. name: "Small",
  46158. height: math.unit(6 + 2/12, "feet")
  46159. },
  46160. {
  46161. name: "Big",
  46162. height: math.unit(20, "feet"),
  46163. default: true
  46164. },
  46165. {
  46166. name: "Giant",
  46167. height: math.unit(100, "feet")
  46168. },
  46169. {
  46170. name: "Macro",
  46171. height: math.unit(200, "feet")
  46172. },
  46173. ]
  46174. ))
  46175. characterMakers.push(() => makeCharacter(
  46176. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46177. {
  46178. front: {
  46179. height: math.unit(1, "meter"),
  46180. name: "Front",
  46181. image: {
  46182. source: "./media/characters/atlas-morenai/front.svg",
  46183. extra: 1275/1043,
  46184. bottom: 19/1294
  46185. }
  46186. },
  46187. back: {
  46188. height: math.unit(1, "meter"),
  46189. name: "Back",
  46190. image: {
  46191. source: "./media/characters/atlas-morenai/back.svg",
  46192. extra: 1141/1001,
  46193. bottom: 25/1166
  46194. }
  46195. },
  46196. },
  46197. [
  46198. {
  46199. name: "Normal",
  46200. height: math.unit(1, "meter"),
  46201. default: true
  46202. },
  46203. {
  46204. name: "Magic-Infused",
  46205. height: math.unit(5, "meters")
  46206. },
  46207. ]
  46208. ))
  46209. characterMakers.push(() => makeCharacter(
  46210. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46211. {
  46212. front: {
  46213. height: math.unit(5, "meters"),
  46214. name: "Front",
  46215. image: {
  46216. source: "./media/characters/cintia/front.svg",
  46217. extra: 1312/1228,
  46218. bottom: 38/1350
  46219. }
  46220. },
  46221. back: {
  46222. height: math.unit(5, "meters"),
  46223. name: "Back",
  46224. image: {
  46225. source: "./media/characters/cintia/back.svg",
  46226. extra: 1260/1166,
  46227. bottom: 98/1358
  46228. }
  46229. },
  46230. frontDick: {
  46231. height: math.unit(5, "meters"),
  46232. name: "Front (Dick)",
  46233. image: {
  46234. source: "./media/characters/cintia/front-dick.svg",
  46235. extra: 1312/1228,
  46236. bottom: 38/1350
  46237. }
  46238. },
  46239. backDick: {
  46240. height: math.unit(5, "meters"),
  46241. name: "Back (Dick)",
  46242. image: {
  46243. source: "./media/characters/cintia/back-dick.svg",
  46244. extra: 1260/1166,
  46245. bottom: 98/1358
  46246. }
  46247. },
  46248. bust: {
  46249. height: math.unit(1.97, "meters"),
  46250. name: "Bust",
  46251. image: {
  46252. source: "./media/characters/cintia/bust.svg",
  46253. extra: 617/565,
  46254. bottom: 0/617
  46255. }
  46256. },
  46257. },
  46258. [
  46259. {
  46260. name: "Normal",
  46261. height: math.unit(5, "meters"),
  46262. default: true
  46263. },
  46264. ]
  46265. ))
  46266. characterMakers.push(() => makeCharacter(
  46267. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46268. {
  46269. side: {
  46270. height: math.unit(100, "feet"),
  46271. name: "Side",
  46272. image: {
  46273. source: "./media/characters/denora/side.svg",
  46274. extra: 875/803,
  46275. bottom: 9/884
  46276. }
  46277. },
  46278. },
  46279. [
  46280. {
  46281. name: "Standard",
  46282. height: math.unit(100, "feet"),
  46283. default: true
  46284. },
  46285. {
  46286. name: "Grand",
  46287. height: math.unit(1000, "feet")
  46288. },
  46289. {
  46290. name: "Conquering",
  46291. height: math.unit(10000, "feet")
  46292. },
  46293. ]
  46294. ))
  46295. characterMakers.push(() => makeCharacter(
  46296. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46297. {
  46298. dressed: {
  46299. height: math.unit(8 + 5/12, "feet"),
  46300. weight: math.unit(700, "lb"),
  46301. name: "Dressed",
  46302. image: {
  46303. source: "./media/characters/kiva/dressed.svg",
  46304. extra: 1102/1055,
  46305. bottom: 60/1162
  46306. }
  46307. },
  46308. nude: {
  46309. height: math.unit(8 + 5/12, "feet"),
  46310. weight: math.unit(700, "lb"),
  46311. name: "Nude",
  46312. image: {
  46313. source: "./media/characters/kiva/nude.svg",
  46314. extra: 1102/1055,
  46315. bottom: 60/1162
  46316. }
  46317. },
  46318. },
  46319. [
  46320. {
  46321. name: "Base Height",
  46322. height: math.unit(8 + 5/12, "feet"),
  46323. default: true
  46324. },
  46325. {
  46326. name: "Macro",
  46327. height: math.unit(100, "feet")
  46328. },
  46329. {
  46330. name: "Max",
  46331. height: math.unit(3280, "feet")
  46332. },
  46333. ]
  46334. ))
  46335. characterMakers.push(() => makeCharacter(
  46336. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46337. {
  46338. front: {
  46339. height: math.unit(6 + 8/12, "feet"),
  46340. weight: math.unit(250, "lb"),
  46341. name: "Front",
  46342. image: {
  46343. source: "./media/characters/ztragon/front.svg",
  46344. extra: 1825/1684,
  46345. bottom: 98/1923
  46346. }
  46347. },
  46348. },
  46349. [
  46350. {
  46351. name: "Normal",
  46352. height: math.unit(6 + 8/12, "feet"),
  46353. default: true
  46354. },
  46355. {
  46356. name: "Macro",
  46357. height: math.unit(80, "feet")
  46358. },
  46359. ]
  46360. ))
  46361. characterMakers.push(() => makeCharacter(
  46362. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46363. {
  46364. front: {
  46365. height: math.unit(10.4, "feet"),
  46366. weight: math.unit(2, "tons"),
  46367. name: "Front",
  46368. image: {
  46369. source: "./media/characters/yesenia/front.svg",
  46370. extra: 1479/1474,
  46371. bottom: 233/1712
  46372. }
  46373. },
  46374. },
  46375. [
  46376. {
  46377. name: "Normal",
  46378. height: math.unit(10.4, "feet"),
  46379. default: true
  46380. },
  46381. ]
  46382. ))
  46383. characterMakers.push(() => makeCharacter(
  46384. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46385. {
  46386. normal: {
  46387. height: math.unit(6 + 1/12, "feet"),
  46388. weight: math.unit(180, "lb"),
  46389. name: "Normal",
  46390. image: {
  46391. source: "./media/characters/leanne-lycheborne/normal.svg",
  46392. extra: 1748/1660,
  46393. bottom: 98/1846
  46394. }
  46395. },
  46396. were: {
  46397. height: math.unit(12, "feet"),
  46398. weight: math.unit(1600, "lb"),
  46399. name: "Were",
  46400. image: {
  46401. source: "./media/characters/leanne-lycheborne/were.svg",
  46402. extra: 1485/1432,
  46403. bottom: 66/1551
  46404. }
  46405. },
  46406. },
  46407. [
  46408. {
  46409. name: "Normal",
  46410. height: math.unit(6 + 1/12, "feet"),
  46411. default: true
  46412. },
  46413. ]
  46414. ))
  46415. characterMakers.push(() => makeCharacter(
  46416. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46417. {
  46418. side: {
  46419. height: math.unit(13, "feet"),
  46420. name: "Side",
  46421. image: {
  46422. source: "./media/characters/kira-tyler/side.svg",
  46423. extra: 693/393,
  46424. bottom: 58/751
  46425. }
  46426. },
  46427. },
  46428. [
  46429. {
  46430. name: "Normal",
  46431. height: math.unit(13, "feet"),
  46432. default: true
  46433. },
  46434. ]
  46435. ))
  46436. characterMakers.push(() => makeCharacter(
  46437. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46438. {
  46439. front: {
  46440. height: math.unit(10.3, "feet"),
  46441. weight: math.unit(150, "lb"),
  46442. name: "Front",
  46443. image: {
  46444. source: "./media/characters/blaze/front.svg",
  46445. extra: 1378/1286,
  46446. bottom: 172/1550
  46447. }
  46448. },
  46449. },
  46450. [
  46451. {
  46452. name: "Normal",
  46453. height: math.unit(10.3, "feet"),
  46454. default: true
  46455. },
  46456. ]
  46457. ))
  46458. characterMakers.push(() => makeCharacter(
  46459. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46460. {
  46461. side: {
  46462. height: math.unit(2, "meters"),
  46463. weight: math.unit(400, "kg"),
  46464. name: "Side",
  46465. image: {
  46466. source: "./media/characters/anu/side.svg",
  46467. extra: 506/394,
  46468. bottom: 18/524
  46469. }
  46470. },
  46471. },
  46472. [
  46473. {
  46474. name: "Humanoid",
  46475. height: math.unit(2, "meters")
  46476. },
  46477. {
  46478. name: "Normal",
  46479. height: math.unit(5, "meters"),
  46480. default: true
  46481. },
  46482. ]
  46483. ))
  46484. characterMakers.push(() => makeCharacter(
  46485. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46486. {
  46487. front: {
  46488. height: math.unit(5 + 5/12, "feet"),
  46489. weight: math.unit(170, "lb"),
  46490. name: "Front",
  46491. image: {
  46492. source: "./media/characters/synx-the-lynx/front.svg",
  46493. extra: 1893/1745,
  46494. bottom: 17/1910
  46495. }
  46496. },
  46497. side: {
  46498. height: math.unit(5 + 5/12, "feet"),
  46499. weight: math.unit(170, "lb"),
  46500. name: "Side",
  46501. image: {
  46502. source: "./media/characters/synx-the-lynx/side.svg",
  46503. extra: 1884/1740,
  46504. bottom: 39/1923
  46505. }
  46506. },
  46507. back: {
  46508. height: math.unit(5 + 5/12, "feet"),
  46509. weight: math.unit(170, "lb"),
  46510. name: "Back",
  46511. image: {
  46512. source: "./media/characters/synx-the-lynx/back.svg",
  46513. extra: 1903/1755,
  46514. bottom: 14/1917
  46515. }
  46516. },
  46517. },
  46518. [
  46519. {
  46520. name: "Normal",
  46521. height: math.unit(5 + 5/12, "feet"),
  46522. default: true
  46523. },
  46524. ]
  46525. ))
  46526. characterMakers.push(() => makeCharacter(
  46527. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46528. {
  46529. back: {
  46530. height: math.unit(15, "feet"),
  46531. name: "Back",
  46532. image: {
  46533. source: "./media/characters/nadezda-fex/back.svg",
  46534. extra: 1695/1481,
  46535. bottom: 25/1720
  46536. }
  46537. },
  46538. },
  46539. [
  46540. {
  46541. name: "Normal",
  46542. height: math.unit(15, "feet"),
  46543. default: true
  46544. },
  46545. {
  46546. name: "Macro",
  46547. height: math.unit(2.5, "miles")
  46548. },
  46549. {
  46550. name: "Goddess",
  46551. height: math.unit(2, "multiverses")
  46552. },
  46553. ]
  46554. ))
  46555. characterMakers.push(() => makeCharacter(
  46556. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46557. {
  46558. front: {
  46559. height: math.unit(216, "cm"),
  46560. name: "Front",
  46561. image: {
  46562. source: "./media/characters/lev/front.svg",
  46563. extra: 1728/1670,
  46564. bottom: 82/1810
  46565. }
  46566. },
  46567. back: {
  46568. height: math.unit(216, "cm"),
  46569. name: "Back",
  46570. image: {
  46571. source: "./media/characters/lev/back.svg",
  46572. extra: 1738/1675,
  46573. bottom: 24/1762
  46574. }
  46575. },
  46576. dressed: {
  46577. height: math.unit(216, "cm"),
  46578. name: "Dressed",
  46579. image: {
  46580. source: "./media/characters/lev/dressed.svg",
  46581. extra: 1397/1351,
  46582. bottom: 73/1470
  46583. }
  46584. },
  46585. head: {
  46586. height: math.unit(0.51, "meter"),
  46587. name: "Head",
  46588. image: {
  46589. source: "./media/characters/lev/head.svg"
  46590. }
  46591. },
  46592. },
  46593. [
  46594. {
  46595. name: "Normal",
  46596. height: math.unit(216, "cm"),
  46597. default: true
  46598. },
  46599. {
  46600. name: "Relatively Macro",
  46601. height: math.unit(80, "meters")
  46602. },
  46603. {
  46604. name: "Megamacro",
  46605. height: math.unit(21600, "meters")
  46606. },
  46607. {
  46608. name: "Megamacro+",
  46609. height: math.unit(64800, "meters")
  46610. },
  46611. ]
  46612. ))
  46613. characterMakers.push(() => makeCharacter(
  46614. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46615. {
  46616. front: {
  46617. height: math.unit(2, "meters"),
  46618. weight: math.unit(80, "kg"),
  46619. name: "Front",
  46620. image: {
  46621. source: "./media/characters/moka/front.svg",
  46622. extra: 1337/1255,
  46623. bottom: 58/1395
  46624. }
  46625. },
  46626. },
  46627. [
  46628. {
  46629. name: "Micro",
  46630. height: math.unit(15, "cm")
  46631. },
  46632. {
  46633. name: "Normal",
  46634. height: math.unit(2, "meters"),
  46635. default: true
  46636. },
  46637. {
  46638. name: "Macro",
  46639. height: math.unit(20, "meters"),
  46640. },
  46641. ]
  46642. ))
  46643. characterMakers.push(() => makeCharacter(
  46644. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46645. {
  46646. front: {
  46647. height: math.unit(9, "feet"),
  46648. weight: math.unit(240, "lb"),
  46649. name: "Front",
  46650. image: {
  46651. source: "./media/characters/kuzco/front.svg",
  46652. extra: 1593/1487,
  46653. bottom: 32/1625
  46654. }
  46655. },
  46656. side: {
  46657. height: math.unit(9, "feet"),
  46658. weight: math.unit(240, "lb"),
  46659. name: "Side",
  46660. image: {
  46661. source: "./media/characters/kuzco/side.svg",
  46662. extra: 1575/1485,
  46663. bottom: 30/1605
  46664. }
  46665. },
  46666. back: {
  46667. height: math.unit(9, "feet"),
  46668. weight: math.unit(240, "lb"),
  46669. name: "Back",
  46670. image: {
  46671. source: "./media/characters/kuzco/back.svg",
  46672. extra: 1603/1514,
  46673. bottom: 14/1617
  46674. }
  46675. },
  46676. },
  46677. [
  46678. {
  46679. name: "Normal",
  46680. height: math.unit(9, "feet"),
  46681. default: true
  46682. },
  46683. ]
  46684. ))
  46685. characterMakers.push(() => makeCharacter(
  46686. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46687. {
  46688. side: {
  46689. height: math.unit(2, "meters"),
  46690. weight: math.unit(300, "kg"),
  46691. name: "Side",
  46692. image: {
  46693. source: "./media/characters/ceruleus/side.svg",
  46694. extra: 1068/974,
  46695. bottom: 126/1194
  46696. }
  46697. },
  46698. maw: {
  46699. height: math.unit(0.8125, "meter"),
  46700. name: "Maw",
  46701. image: {
  46702. source: "./media/characters/ceruleus/maw.svg"
  46703. }
  46704. },
  46705. },
  46706. [
  46707. {
  46708. name: "Normal",
  46709. height: math.unit(16, "meters"),
  46710. default: true
  46711. },
  46712. ]
  46713. ))
  46714. characterMakers.push(() => makeCharacter(
  46715. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46716. {
  46717. front: {
  46718. height: math.unit(9, "feet"),
  46719. weight: math.unit(500, "kg"),
  46720. name: "Front",
  46721. image: {
  46722. source: "./media/characters/acouya/front.svg",
  46723. extra: 1660/1473,
  46724. bottom: 28/1688
  46725. }
  46726. },
  46727. },
  46728. [
  46729. {
  46730. name: "Normal",
  46731. height: math.unit(9, "feet"),
  46732. default: true
  46733. },
  46734. ]
  46735. ))
  46736. characterMakers.push(() => makeCharacter(
  46737. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46738. {
  46739. front: {
  46740. height: math.unit(5 + 6/12, "feet"),
  46741. weight: math.unit(195, "lb"),
  46742. name: "Front",
  46743. image: {
  46744. source: "./media/characters/vant/front.svg",
  46745. extra: 1396/1320,
  46746. bottom: 20/1416
  46747. }
  46748. },
  46749. back: {
  46750. height: math.unit(5 + 6/12, "feet"),
  46751. weight: math.unit(195, "lb"),
  46752. name: "Back",
  46753. image: {
  46754. source: "./media/characters/vant/back.svg",
  46755. extra: 1396/1320,
  46756. bottom: 20/1416
  46757. }
  46758. },
  46759. maw: {
  46760. height: math.unit(0.75, "feet"),
  46761. name: "Maw",
  46762. image: {
  46763. source: "./media/characters/vant/maw.svg"
  46764. }
  46765. },
  46766. paw: {
  46767. height: math.unit(1.07, "feet"),
  46768. name: "Paw",
  46769. image: {
  46770. source: "./media/characters/vant/paw.svg"
  46771. }
  46772. },
  46773. },
  46774. [
  46775. {
  46776. name: "Micro",
  46777. height: math.unit(0.25, "inches")
  46778. },
  46779. {
  46780. name: "Normal",
  46781. height: math.unit(5 + 6/12, "feet"),
  46782. default: true
  46783. },
  46784. {
  46785. name: "Macro",
  46786. height: math.unit(75, "feet")
  46787. },
  46788. ]
  46789. ))
  46790. characterMakers.push(() => makeCharacter(
  46791. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46792. {
  46793. front: {
  46794. height: math.unit(30, "meters"),
  46795. weight: math.unit(363, "tons"),
  46796. name: "Front",
  46797. image: {
  46798. source: "./media/characters/ahra/front.svg",
  46799. extra: 1914/1814,
  46800. bottom: 46/1960
  46801. }
  46802. },
  46803. },
  46804. [
  46805. {
  46806. name: "Macro",
  46807. height: math.unit(30, "meters"),
  46808. default: true
  46809. },
  46810. ]
  46811. ))
  46812. characterMakers.push(() => makeCharacter(
  46813. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46814. {
  46815. undressed: {
  46816. height: math.unit(2, "m"),
  46817. weight: math.unit(250, "kg"),
  46818. name: "Undressed",
  46819. image: {
  46820. source: "./media/characters/coriander/undressed.svg",
  46821. extra: 1757/1606,
  46822. bottom: 107/1864
  46823. }
  46824. },
  46825. dressed: {
  46826. height: math.unit(2, "m"),
  46827. weight: math.unit(250, "kg"),
  46828. name: "Dressed",
  46829. image: {
  46830. source: "./media/characters/coriander/dressed.svg",
  46831. extra: 1757/1606,
  46832. bottom: 107/1864
  46833. }
  46834. },
  46835. },
  46836. [
  46837. {
  46838. name: "Normal",
  46839. height: math.unit(4, "meters"),
  46840. default: true
  46841. },
  46842. {
  46843. name: "XL",
  46844. height: math.unit(6, "meters")
  46845. },
  46846. {
  46847. name: "XXL",
  46848. height: math.unit(8, "meters")
  46849. },
  46850. ]
  46851. ))
  46852. characterMakers.push(() => makeCharacter(
  46853. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46854. {
  46855. front: {
  46856. height: math.unit(6, "feet"),
  46857. name: "Front",
  46858. image: {
  46859. source: "./media/characters/syrinx/front.svg",
  46860. extra: 1557/1259,
  46861. bottom: 171/1728
  46862. }
  46863. },
  46864. },
  46865. [
  46866. {
  46867. name: "Normal",
  46868. height: math.unit(6 + 3/12, "feet"),
  46869. default: true
  46870. },
  46871. ]
  46872. ))
  46873. characterMakers.push(() => makeCharacter(
  46874. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46875. {
  46876. front: {
  46877. height: math.unit(11 + 6/12, "feet"),
  46878. weight: math.unit(1.5, "tons"),
  46879. name: "Front",
  46880. image: {
  46881. source: "./media/characters/bor/front.svg",
  46882. extra: 1189/1109,
  46883. bottom: 170/1359
  46884. }
  46885. },
  46886. },
  46887. [
  46888. {
  46889. name: "Normal",
  46890. height: math.unit(11 + 6/12, "feet"),
  46891. default: true
  46892. },
  46893. {
  46894. name: "Macro",
  46895. height: math.unit(32 + 9/12, "feet")
  46896. },
  46897. ]
  46898. ))
  46899. characterMakers.push(() => makeCharacter(
  46900. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46901. {
  46902. anthro: {
  46903. height: math.unit(9, "feet"),
  46904. weight: math.unit(2076, "lb"),
  46905. name: "Anthro",
  46906. image: {
  46907. source: "./media/characters/abacus/anthro.svg",
  46908. extra: 1540/1494,
  46909. bottom: 233/1773
  46910. }
  46911. },
  46912. pigeon: {
  46913. height: math.unit(1, "feet"),
  46914. name: "Pigeon",
  46915. image: {
  46916. source: "./media/characters/abacus/pigeon.svg",
  46917. extra: 528/525,
  46918. bottom: 46/574
  46919. }
  46920. },
  46921. },
  46922. [
  46923. {
  46924. name: "Normal",
  46925. height: math.unit(9, "feet"),
  46926. default: true
  46927. },
  46928. ]
  46929. ))
  46930. characterMakers.push(() => makeCharacter(
  46931. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46932. {
  46933. side: {
  46934. height: math.unit(6, "feet"),
  46935. name: "Side",
  46936. image: {
  46937. source: "./media/characters/delkhan/side.svg",
  46938. extra: 1884/1786,
  46939. bottom: 308/2192
  46940. }
  46941. },
  46942. head: {
  46943. height: math.unit(3.38, "feet"),
  46944. name: "Head",
  46945. image: {
  46946. source: "./media/characters/delkhan/head.svg"
  46947. }
  46948. },
  46949. },
  46950. [
  46951. {
  46952. name: "Normal",
  46953. height: math.unit(72, "feet"),
  46954. default: true
  46955. },
  46956. {
  46957. name: "Giant",
  46958. height: math.unit(172, "feet")
  46959. },
  46960. ]
  46961. ))
  46962. characterMakers.push(() => makeCharacter(
  46963. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46964. {
  46965. standing: {
  46966. height: math.unit(6, "feet"),
  46967. name: "Standing",
  46968. image: {
  46969. source: "./media/characters/euchidat/standing.svg",
  46970. extra: 1612/1553,
  46971. bottom: 116/1728
  46972. }
  46973. },
  46974. leaning: {
  46975. height: math.unit(6, "feet"),
  46976. name: "Leaning",
  46977. image: {
  46978. source: "./media/characters/euchidat/leaning.svg",
  46979. extra: 1719/1674,
  46980. bottom: 27/1746
  46981. }
  46982. },
  46983. },
  46984. [
  46985. {
  46986. name: "Normal",
  46987. height: math.unit(175, "feet"),
  46988. default: true
  46989. },
  46990. {
  46991. name: "Megamacro",
  46992. height: math.unit(190, "miles")
  46993. },
  46994. {
  46995. name: "Gigamacro",
  46996. height: math.unit(190000, "miles")
  46997. },
  46998. ]
  46999. ))
  47000. characterMakers.push(() => makeCharacter(
  47001. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47002. {
  47003. front: {
  47004. height: math.unit(6, "feet"),
  47005. weight: math.unit(150, "lb"),
  47006. name: "Front",
  47007. image: {
  47008. source: "./media/characters/rebecca-stack/front.svg",
  47009. extra: 1256/1201,
  47010. bottom: 18/1274
  47011. }
  47012. },
  47013. },
  47014. [
  47015. {
  47016. name: "Normal",
  47017. height: math.unit(5 + 8/12, "feet"),
  47018. default: true
  47019. },
  47020. {
  47021. name: "Demolitionist",
  47022. height: math.unit(200, "feet")
  47023. },
  47024. {
  47025. name: "Out of Control",
  47026. height: math.unit(2, "miles")
  47027. },
  47028. {
  47029. name: "Giga",
  47030. height: math.unit(7200, "miles")
  47031. },
  47032. ]
  47033. ))
  47034. characterMakers.push(() => makeCharacter(
  47035. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47036. {
  47037. front: {
  47038. height: math.unit(6, "feet"),
  47039. weight: math.unit(150, "lb"),
  47040. name: "Front",
  47041. image: {
  47042. source: "./media/characters/jenny-cartwright/front.svg",
  47043. extra: 1384/1376,
  47044. bottom: 58/1442
  47045. }
  47046. },
  47047. },
  47048. [
  47049. {
  47050. name: "Normal",
  47051. height: math.unit(6 + 7/12, "feet"),
  47052. default: true
  47053. },
  47054. {
  47055. name: "Librarian",
  47056. height: math.unit(55, "feet")
  47057. },
  47058. {
  47059. name: "Sightseer",
  47060. height: math.unit(50, "miles")
  47061. },
  47062. {
  47063. name: "Giga",
  47064. height: math.unit(30000, "miles")
  47065. },
  47066. ]
  47067. ))
  47068. characterMakers.push(() => makeCharacter(
  47069. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47070. {
  47071. nude: {
  47072. height: math.unit(8, "feet"),
  47073. weight: math.unit(225, "lb"),
  47074. name: "Nude",
  47075. image: {
  47076. source: "./media/characters/marvy/nude.svg",
  47077. extra: 1900/1683,
  47078. bottom: 89/1989
  47079. }
  47080. },
  47081. dressed: {
  47082. height: math.unit(8, "feet"),
  47083. weight: math.unit(225, "lb"),
  47084. name: "Dressed",
  47085. image: {
  47086. source: "./media/characters/marvy/dressed.svg",
  47087. extra: 1900/1683,
  47088. bottom: 89/1989
  47089. }
  47090. },
  47091. head: {
  47092. height: math.unit(2.85, "feet"),
  47093. name: "Head",
  47094. image: {
  47095. source: "./media/characters/marvy/head.svg"
  47096. }
  47097. },
  47098. },
  47099. [
  47100. {
  47101. name: "Normal",
  47102. height: math.unit(8, "feet"),
  47103. default: true
  47104. },
  47105. ]
  47106. ))
  47107. characterMakers.push(() => makeCharacter(
  47108. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47109. {
  47110. front: {
  47111. height: math.unit(8, "feet"),
  47112. weight: math.unit(250, "lb"),
  47113. name: "Front",
  47114. image: {
  47115. source: "./media/characters/leah/front.svg",
  47116. extra: 1257/1149,
  47117. bottom: 109/1366
  47118. }
  47119. },
  47120. },
  47121. [
  47122. {
  47123. name: "Normal",
  47124. height: math.unit(8, "feet"),
  47125. default: true
  47126. },
  47127. {
  47128. name: "Minimacro",
  47129. height: math.unit(40, "feet")
  47130. },
  47131. {
  47132. name: "Macro",
  47133. height: math.unit(124, "feet")
  47134. },
  47135. {
  47136. name: "Megamacro",
  47137. height: math.unit(850, "feet")
  47138. },
  47139. ]
  47140. ))
  47141. characterMakers.push(() => makeCharacter(
  47142. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47143. {
  47144. side: {
  47145. height: math.unit(13 + 6/12, "feet"),
  47146. weight: math.unit(3200, "lb"),
  47147. name: "Side",
  47148. image: {
  47149. source: "./media/characters/alvir/side.svg",
  47150. extra: 896/589,
  47151. bottom: 26/922
  47152. }
  47153. },
  47154. },
  47155. [
  47156. {
  47157. name: "Normal",
  47158. height: math.unit(13 + 6/12, "feet"),
  47159. default: true
  47160. },
  47161. ]
  47162. ))
  47163. characterMakers.push(() => makeCharacter(
  47164. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47165. {
  47166. front: {
  47167. height: math.unit(5 + 4/12, "feet"),
  47168. weight: math.unit(236, "lb"),
  47169. name: "Front",
  47170. image: {
  47171. source: "./media/characters/zaina-khalil/front.svg",
  47172. extra: 1533/1485,
  47173. bottom: 94/1627
  47174. }
  47175. },
  47176. side: {
  47177. height: math.unit(5 + 4/12, "feet"),
  47178. weight: math.unit(236, "lb"),
  47179. name: "Side",
  47180. image: {
  47181. source: "./media/characters/zaina-khalil/side.svg",
  47182. extra: 1537/1498,
  47183. bottom: 66/1603
  47184. }
  47185. },
  47186. back: {
  47187. height: math.unit(5 + 4/12, "feet"),
  47188. weight: math.unit(236, "lb"),
  47189. name: "Back",
  47190. image: {
  47191. source: "./media/characters/zaina-khalil/back.svg",
  47192. extra: 1546/1494,
  47193. bottom: 89/1635
  47194. }
  47195. },
  47196. },
  47197. [
  47198. {
  47199. name: "Normal",
  47200. height: math.unit(5 + 4/12, "feet"),
  47201. default: true
  47202. },
  47203. ]
  47204. ))
  47205. characterMakers.push(() => makeCharacter(
  47206. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47207. {
  47208. side: {
  47209. height: math.unit(12, "feet"),
  47210. weight: math.unit(4000, "lb"),
  47211. name: "Side",
  47212. image: {
  47213. source: "./media/characters/terry/side.svg",
  47214. extra: 1518/1439,
  47215. bottom: 149/1667
  47216. }
  47217. },
  47218. },
  47219. [
  47220. {
  47221. name: "Normal",
  47222. height: math.unit(12, "feet"),
  47223. default: true
  47224. },
  47225. ]
  47226. ))
  47227. characterMakers.push(() => makeCharacter(
  47228. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47229. {
  47230. front: {
  47231. height: math.unit(12, "feet"),
  47232. weight: math.unit(1500, "lb"),
  47233. name: "Front",
  47234. image: {
  47235. source: "./media/characters/kahea/front.svg",
  47236. extra: 1722/1617,
  47237. bottom: 179/1901
  47238. }
  47239. },
  47240. },
  47241. [
  47242. {
  47243. name: "Normal",
  47244. height: math.unit(12, "feet"),
  47245. default: true
  47246. },
  47247. ]
  47248. ))
  47249. characterMakers.push(() => makeCharacter(
  47250. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47251. {
  47252. demonFront: {
  47253. height: math.unit(36, "feet"),
  47254. name: "Front",
  47255. image: {
  47256. source: "./media/characters/alex-xuria/demon-front.svg",
  47257. extra: 1705/1673,
  47258. bottom: 198/1903
  47259. },
  47260. form: "demon",
  47261. default: true
  47262. },
  47263. demonBack: {
  47264. height: math.unit(36, "feet"),
  47265. name: "Back",
  47266. image: {
  47267. source: "./media/characters/alex-xuria/demon-back.svg",
  47268. extra: 1725/1693,
  47269. bottom: 70/1795
  47270. },
  47271. form: "demon"
  47272. },
  47273. demonHead: {
  47274. height: math.unit(2.14, "meters"),
  47275. name: "Head",
  47276. image: {
  47277. source: "./media/characters/alex-xuria/demon-head.svg"
  47278. },
  47279. form: "demon"
  47280. },
  47281. demonHand: {
  47282. height: math.unit(1.61, "meters"),
  47283. name: "Hand",
  47284. image: {
  47285. source: "./media/characters/alex-xuria/demon-hand.svg"
  47286. },
  47287. form: "demon"
  47288. },
  47289. demonPaw: {
  47290. height: math.unit(1.35, "meters"),
  47291. name: "Paw",
  47292. image: {
  47293. source: "./media/characters/alex-xuria/demon-paw.svg"
  47294. },
  47295. form: "demon"
  47296. },
  47297. demonFoot: {
  47298. height: math.unit(2.2, "meters"),
  47299. name: "Foot",
  47300. image: {
  47301. source: "./media/characters/alex-xuria/demon-foot.svg"
  47302. },
  47303. form: "demon"
  47304. },
  47305. demonCock: {
  47306. height: math.unit(1.74, "meters"),
  47307. name: "Cock",
  47308. image: {
  47309. source: "./media/characters/alex-xuria/demon-cock.svg"
  47310. },
  47311. form: "demon"
  47312. },
  47313. demonTailClosed: {
  47314. height: math.unit(1.47, "meters"),
  47315. name: "Tail (Closed)",
  47316. image: {
  47317. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47318. },
  47319. form: "demon"
  47320. },
  47321. demonTailOpen: {
  47322. height: math.unit(2.85, "meters"),
  47323. name: "Tail (Open)",
  47324. image: {
  47325. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47326. },
  47327. form: "demon"
  47328. },
  47329. incubusFront: {
  47330. height: math.unit(12, "feet"),
  47331. name: "Front",
  47332. image: {
  47333. source: "./media/characters/alex-xuria/incubus-front.svg",
  47334. extra: 1754/1677,
  47335. bottom: 125/1879
  47336. },
  47337. form: "incubus",
  47338. default: true
  47339. },
  47340. incubusBack: {
  47341. height: math.unit(12, "feet"),
  47342. name: "Back",
  47343. image: {
  47344. source: "./media/characters/alex-xuria/incubus-back.svg",
  47345. extra: 1702/1647,
  47346. bottom: 30/1732
  47347. },
  47348. form: "incubus"
  47349. },
  47350. incubusHead: {
  47351. height: math.unit(3.45, "feet"),
  47352. name: "Head",
  47353. image: {
  47354. source: "./media/characters/alex-xuria/incubus-head.svg"
  47355. },
  47356. form: "incubus"
  47357. },
  47358. rabbitFront: {
  47359. height: math.unit(6, "feet"),
  47360. name: "Front",
  47361. image: {
  47362. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47363. extra: 1369/1349,
  47364. bottom: 45/1414
  47365. },
  47366. form: "rabbit",
  47367. default: true
  47368. },
  47369. rabbitSide: {
  47370. height: math.unit(6, "feet"),
  47371. name: "Side",
  47372. image: {
  47373. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47374. extra: 1370/1356,
  47375. bottom: 37/1407
  47376. },
  47377. form: "rabbit"
  47378. },
  47379. rabbitBack: {
  47380. height: math.unit(6, "feet"),
  47381. name: "Back",
  47382. image: {
  47383. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47384. extra: 1375/1358,
  47385. bottom: 43/1418
  47386. },
  47387. form: "rabbit"
  47388. },
  47389. },
  47390. [
  47391. {
  47392. name: "Normal",
  47393. height: math.unit(6, "feet"),
  47394. default: true,
  47395. form: "rabbit"
  47396. },
  47397. {
  47398. name: "Incubus",
  47399. height: math.unit(12, "feet"),
  47400. default: true,
  47401. form: "incubus"
  47402. },
  47403. {
  47404. name: "Demon",
  47405. height: math.unit(36, "feet"),
  47406. default: true,
  47407. form: "demon"
  47408. }
  47409. ],
  47410. {
  47411. "demon": {
  47412. name: "Demon",
  47413. default: true
  47414. },
  47415. "incubus": {
  47416. name: "Incubus",
  47417. },
  47418. "rabbit": {
  47419. name: "Rabbit"
  47420. }
  47421. }
  47422. ))
  47423. characterMakers.push(() => makeCharacter(
  47424. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47425. {
  47426. front: {
  47427. height: math.unit(7 + 5/12, "feet"),
  47428. weight: math.unit(510, "lb"),
  47429. name: "Front",
  47430. image: {
  47431. source: "./media/characters/syrup/front.svg",
  47432. extra: 932/916,
  47433. bottom: 26/958
  47434. }
  47435. },
  47436. },
  47437. [
  47438. {
  47439. name: "Normal",
  47440. height: math.unit(7 + 5/12, "feet"),
  47441. default: true
  47442. },
  47443. {
  47444. name: "Big",
  47445. height: math.unit(50, "feet")
  47446. },
  47447. {
  47448. name: "Macro",
  47449. height: math.unit(300, "feet")
  47450. },
  47451. {
  47452. name: "Megamacro",
  47453. height: math.unit(1, "mile")
  47454. },
  47455. ]
  47456. ))
  47457. characterMakers.push(() => makeCharacter(
  47458. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47459. {
  47460. front: {
  47461. height: math.unit(6 + 9/12, "feet"),
  47462. name: "Front",
  47463. image: {
  47464. source: "./media/characters/zeimne/front.svg",
  47465. extra: 1969/1806,
  47466. bottom: 53/2022
  47467. }
  47468. },
  47469. },
  47470. [
  47471. {
  47472. name: "Normal",
  47473. height: math.unit(6 + 9/12, "feet"),
  47474. default: true
  47475. },
  47476. {
  47477. name: "Giant",
  47478. height: math.unit(550, "feet")
  47479. },
  47480. {
  47481. name: "Mega",
  47482. height: math.unit(3, "miles")
  47483. },
  47484. {
  47485. name: "Giga",
  47486. height: math.unit(250, "miles")
  47487. },
  47488. {
  47489. name: "Tera",
  47490. height: math.unit(1, "AU")
  47491. },
  47492. ]
  47493. ))
  47494. characterMakers.push(() => makeCharacter(
  47495. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47496. {
  47497. front: {
  47498. height: math.unit(5 + 2/12, "feet"),
  47499. name: "Front",
  47500. image: {
  47501. source: "./media/characters/grar/front.svg",
  47502. extra: 1331/1119,
  47503. bottom: 60/1391
  47504. }
  47505. },
  47506. back: {
  47507. height: math.unit(5 + 2/12, "feet"),
  47508. name: "Back",
  47509. image: {
  47510. source: "./media/characters/grar/back.svg",
  47511. extra: 1385/1169,
  47512. bottom: 23/1408
  47513. }
  47514. },
  47515. },
  47516. [
  47517. {
  47518. name: "Normal",
  47519. height: math.unit(5 + 2/12, "feet"),
  47520. default: true
  47521. },
  47522. ]
  47523. ))
  47524. characterMakers.push(() => makeCharacter(
  47525. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47526. {
  47527. front: {
  47528. height: math.unit(13 + 7/12, "feet"),
  47529. weight: math.unit(2200, "lb"),
  47530. name: "Front",
  47531. image: {
  47532. source: "./media/characters/endraya/front.svg",
  47533. extra: 1289/1215,
  47534. bottom: 50/1339
  47535. }
  47536. },
  47537. nude: {
  47538. height: math.unit(13 + 7/12, "feet"),
  47539. weight: math.unit(2200, "lb"),
  47540. name: "Nude",
  47541. image: {
  47542. source: "./media/characters/endraya/nude.svg",
  47543. extra: 1247/1171,
  47544. bottom: 40/1287
  47545. }
  47546. },
  47547. head: {
  47548. height: math.unit(2.6, "feet"),
  47549. name: "Head",
  47550. image: {
  47551. source: "./media/characters/endraya/head.svg"
  47552. }
  47553. },
  47554. slit: {
  47555. height: math.unit(3.4, "feet"),
  47556. name: "Slit",
  47557. image: {
  47558. source: "./media/characters/endraya/slit.svg"
  47559. }
  47560. },
  47561. },
  47562. [
  47563. {
  47564. name: "Normal",
  47565. height: math.unit(13 + 7/12, "feet"),
  47566. default: true
  47567. },
  47568. {
  47569. name: "Macro",
  47570. height: math.unit(200, "feet")
  47571. },
  47572. ]
  47573. ))
  47574. characterMakers.push(() => makeCharacter(
  47575. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47576. {
  47577. front: {
  47578. height: math.unit(1.81, "meters"),
  47579. weight: math.unit(69, "kg"),
  47580. name: "Front",
  47581. image: {
  47582. source: "./media/characters/rodryana/front.svg",
  47583. extra: 2002/1921,
  47584. bottom: 53/2055
  47585. }
  47586. },
  47587. back: {
  47588. height: math.unit(1.81, "meters"),
  47589. weight: math.unit(69, "kg"),
  47590. name: "Back",
  47591. image: {
  47592. source: "./media/characters/rodryana/back.svg",
  47593. extra: 1993/1926,
  47594. bottom: 48/2041
  47595. }
  47596. },
  47597. maw: {
  47598. height: math.unit(0.19769417475, "meters"),
  47599. name: "Maw",
  47600. image: {
  47601. source: "./media/characters/rodryana/maw.svg"
  47602. }
  47603. },
  47604. slit: {
  47605. height: math.unit(0.31631067961, "meters"),
  47606. name: "Slit",
  47607. image: {
  47608. source: "./media/characters/rodryana/slit.svg"
  47609. }
  47610. },
  47611. },
  47612. [
  47613. {
  47614. name: "Normal",
  47615. height: math.unit(1.81, "meters")
  47616. },
  47617. {
  47618. name: "Mini Macro",
  47619. height: math.unit(181, "meters")
  47620. },
  47621. {
  47622. name: "Macro",
  47623. height: math.unit(452, "meters"),
  47624. default: true
  47625. },
  47626. {
  47627. name: "Mega Macro",
  47628. height: math.unit(1.375, "km")
  47629. },
  47630. {
  47631. name: "Giga Macro",
  47632. height: math.unit(13.575, "km")
  47633. },
  47634. ]
  47635. ))
  47636. characterMakers.push(() => makeCharacter(
  47637. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47638. {
  47639. front: {
  47640. height: math.unit(6, "feet"),
  47641. weight: math.unit(1000, "lb"),
  47642. name: "Front",
  47643. image: {
  47644. source: "./media/characters/asaya/front.svg",
  47645. extra: 1460/1200,
  47646. bottom: 71/1531
  47647. }
  47648. },
  47649. },
  47650. [
  47651. {
  47652. name: "Normal",
  47653. height: math.unit(8, "km"),
  47654. default: true
  47655. },
  47656. ]
  47657. ))
  47658. characterMakers.push(() => makeCharacter(
  47659. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47660. {
  47661. front: {
  47662. height: math.unit(3.5, "meters"),
  47663. name: "Front",
  47664. image: {
  47665. source: "./media/characters/sarzu-and-israz/front.svg",
  47666. extra: 1570/1558,
  47667. bottom: 150/1720
  47668. },
  47669. },
  47670. back: {
  47671. height: math.unit(3.5, "meters"),
  47672. name: "Back",
  47673. image: {
  47674. source: "./media/characters/sarzu-and-israz/back.svg",
  47675. extra: 1523/1509,
  47676. bottom: 132/1655
  47677. },
  47678. },
  47679. frontFemale: {
  47680. height: math.unit(3.5, "meters"),
  47681. name: "Front (Female)",
  47682. image: {
  47683. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47684. extra: 1570/1558,
  47685. bottom: 150/1720
  47686. },
  47687. },
  47688. frontHerm: {
  47689. height: math.unit(3.5, "meters"),
  47690. name: "Front (Herm)",
  47691. image: {
  47692. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47693. extra: 1570/1558,
  47694. bottom: 150/1720
  47695. },
  47696. },
  47697. },
  47698. [
  47699. {
  47700. name: "Normal",
  47701. height: math.unit(3.5, "meters"),
  47702. default: true,
  47703. },
  47704. {
  47705. name: "Macro",
  47706. height: math.unit(65.5, "meters"),
  47707. },
  47708. ],
  47709. ))
  47710. characterMakers.push(() => makeCharacter(
  47711. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47712. {
  47713. front: {
  47714. height: math.unit(6, "feet"),
  47715. weight: math.unit(250, "lb"),
  47716. name: "Front",
  47717. image: {
  47718. source: "./media/characters/zenimma/front.svg",
  47719. extra: 1346/1320,
  47720. bottom: 58/1404
  47721. }
  47722. },
  47723. back: {
  47724. height: math.unit(6, "feet"),
  47725. weight: math.unit(250, "lb"),
  47726. name: "Back",
  47727. image: {
  47728. source: "./media/characters/zenimma/back.svg",
  47729. extra: 1324/1308,
  47730. bottom: 44/1368
  47731. }
  47732. },
  47733. dick: {
  47734. height: math.unit(1.44, "feet"),
  47735. name: "Dick",
  47736. image: {
  47737. source: "./media/characters/zenimma/dick.svg"
  47738. }
  47739. },
  47740. },
  47741. [
  47742. {
  47743. name: "Canon Height",
  47744. height: math.unit(66, "miles"),
  47745. default: true
  47746. },
  47747. ]
  47748. ))
  47749. characterMakers.push(() => makeCharacter(
  47750. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47751. {
  47752. nude: {
  47753. height: math.unit(6, "feet"),
  47754. weight: math.unit(150, "lb"),
  47755. name: "Nude",
  47756. image: {
  47757. source: "./media/characters/shavon/nude.svg",
  47758. extra: 1242/1096,
  47759. bottom: 98/1340
  47760. }
  47761. },
  47762. dressed: {
  47763. height: math.unit(6, "feet"),
  47764. weight: math.unit(150, "lb"),
  47765. name: "Dressed",
  47766. image: {
  47767. source: "./media/characters/shavon/dressed.svg",
  47768. extra: 1242/1096,
  47769. bottom: 98/1340
  47770. }
  47771. },
  47772. },
  47773. [
  47774. {
  47775. name: "Macro",
  47776. height: math.unit(255, "feet"),
  47777. default: true
  47778. },
  47779. ]
  47780. ))
  47781. characterMakers.push(() => makeCharacter(
  47782. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47783. {
  47784. front: {
  47785. height: math.unit(6, "feet"),
  47786. name: "Front",
  47787. image: {
  47788. source: "./media/characters/steph/front.svg",
  47789. extra: 1430/1330,
  47790. bottom: 54/1484
  47791. }
  47792. },
  47793. },
  47794. [
  47795. {
  47796. name: "Normal",
  47797. height: math.unit(6, "feet"),
  47798. default: true
  47799. },
  47800. ]
  47801. ))
  47802. characterMakers.push(() => makeCharacter(
  47803. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47804. {
  47805. front: {
  47806. height: math.unit(9, "feet"),
  47807. weight: math.unit(400, "lb"),
  47808. name: "Front",
  47809. image: {
  47810. source: "./media/characters/kil'aman/front.svg",
  47811. extra: 1210/1159,
  47812. bottom: 109/1319
  47813. }
  47814. },
  47815. head: {
  47816. height: math.unit(2.14, "feet"),
  47817. name: "Head",
  47818. image: {
  47819. source: "./media/characters/kil'aman/head.svg"
  47820. }
  47821. },
  47822. maw: {
  47823. height: math.unit(1.21, "feet"),
  47824. name: "Maw",
  47825. image: {
  47826. source: "./media/characters/kil'aman/maw.svg"
  47827. }
  47828. },
  47829. foot: {
  47830. height: math.unit(1.7, "feet"),
  47831. name: "Foot",
  47832. image: {
  47833. source: "./media/characters/kil'aman/foot.svg"
  47834. }
  47835. },
  47836. dick: {
  47837. height: math.unit(2.1, "feet"),
  47838. name: "Dick",
  47839. image: {
  47840. source: "./media/characters/kil'aman/dick.svg"
  47841. }
  47842. },
  47843. },
  47844. [
  47845. {
  47846. name: "Normal",
  47847. height: math.unit(9, "feet")
  47848. },
  47849. {
  47850. name: "Canon Height",
  47851. height: math.unit(10, "miles"),
  47852. default: true
  47853. },
  47854. {
  47855. name: "Maximum",
  47856. height: math.unit(6e9, "miles")
  47857. },
  47858. ]
  47859. ))
  47860. characterMakers.push(() => makeCharacter(
  47861. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47862. {
  47863. front: {
  47864. height: math.unit(90, "feet"),
  47865. weight: math.unit(675000, "lb"),
  47866. name: "Front",
  47867. image: {
  47868. source: "./media/characters/qadan/front.svg",
  47869. extra: 1012/1004,
  47870. bottom: 78/1090
  47871. }
  47872. },
  47873. back: {
  47874. height: math.unit(90, "feet"),
  47875. weight: math.unit(675000, "lb"),
  47876. name: "Back",
  47877. image: {
  47878. source: "./media/characters/qadan/back.svg",
  47879. extra: 1042/1031,
  47880. bottom: 55/1097
  47881. }
  47882. },
  47883. armored: {
  47884. height: math.unit(90, "feet"),
  47885. weight: math.unit(675000, "lb"),
  47886. name: "Armored",
  47887. image: {
  47888. source: "./media/characters/qadan/armored.svg",
  47889. extra: 1047/1037,
  47890. bottom: 48/1095
  47891. }
  47892. },
  47893. },
  47894. [
  47895. {
  47896. name: "Normal",
  47897. height: math.unit(90, "feet"),
  47898. default: true
  47899. },
  47900. ]
  47901. ))
  47902. characterMakers.push(() => makeCharacter(
  47903. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47904. {
  47905. front: {
  47906. height: math.unit(6, "feet"),
  47907. weight: math.unit(225, "lb"),
  47908. name: "Front",
  47909. image: {
  47910. source: "./media/characters/brooke/front.svg",
  47911. extra: 1050/1010,
  47912. bottom: 66/1116
  47913. }
  47914. },
  47915. back: {
  47916. height: math.unit(6, "feet"),
  47917. weight: math.unit(225, "lb"),
  47918. name: "Back",
  47919. image: {
  47920. source: "./media/characters/brooke/back.svg",
  47921. extra: 1053/1013,
  47922. bottom: 41/1094
  47923. }
  47924. },
  47925. dressed: {
  47926. height: math.unit(6, "feet"),
  47927. weight: math.unit(225, "lb"),
  47928. name: "Dressed",
  47929. image: {
  47930. source: "./media/characters/brooke/dressed.svg",
  47931. extra: 1050/1010,
  47932. bottom: 66/1116
  47933. }
  47934. },
  47935. },
  47936. [
  47937. {
  47938. name: "Canon Height",
  47939. height: math.unit(500, "miles"),
  47940. default: true
  47941. },
  47942. ]
  47943. ))
  47944. characterMakers.push(() => makeCharacter(
  47945. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47946. {
  47947. front: {
  47948. height: math.unit(6 + 2/12, "feet"),
  47949. weight: math.unit(210, "lb"),
  47950. name: "Front",
  47951. image: {
  47952. source: "./media/characters/wubs/front.svg",
  47953. extra: 1345/1325,
  47954. bottom: 70/1415
  47955. }
  47956. },
  47957. back: {
  47958. height: math.unit(6 + 2/12, "feet"),
  47959. weight: math.unit(210, "lb"),
  47960. name: "Back",
  47961. image: {
  47962. source: "./media/characters/wubs/back.svg",
  47963. extra: 1296/1275,
  47964. bottom: 58/1354
  47965. }
  47966. },
  47967. },
  47968. [
  47969. {
  47970. name: "Normal",
  47971. height: math.unit(6 + 2/12, "feet"),
  47972. default: true
  47973. },
  47974. {
  47975. name: "Macro",
  47976. height: math.unit(1000, "feet")
  47977. },
  47978. {
  47979. name: "Megamacro",
  47980. height: math.unit(1, "mile")
  47981. },
  47982. ]
  47983. ))
  47984. characterMakers.push(() => makeCharacter(
  47985. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47986. {
  47987. front: {
  47988. height: math.unit(4, "feet"),
  47989. weight: math.unit(120, "lb"),
  47990. name: "Front",
  47991. image: {
  47992. source: "./media/characters/blue/front.svg",
  47993. extra: 1636/1525,
  47994. bottom: 43/1679
  47995. }
  47996. },
  47997. back: {
  47998. height: math.unit(4, "feet"),
  47999. weight: math.unit(120, "lb"),
  48000. name: "Back",
  48001. image: {
  48002. source: "./media/characters/blue/back.svg",
  48003. extra: 1660/1560,
  48004. bottom: 57/1717
  48005. }
  48006. },
  48007. paws: {
  48008. height: math.unit(0.826, "feet"),
  48009. name: "Paws",
  48010. image: {
  48011. source: "./media/characters/blue/paws.svg"
  48012. }
  48013. },
  48014. },
  48015. [
  48016. {
  48017. name: "Micro",
  48018. height: math.unit(3, "inches")
  48019. },
  48020. {
  48021. name: "Normal",
  48022. height: math.unit(4, "feet"),
  48023. default: true
  48024. },
  48025. {
  48026. name: "Femenine Form",
  48027. height: math.unit(14, "feet")
  48028. },
  48029. {
  48030. name: "Werebat Form",
  48031. height: math.unit(18, "feet")
  48032. },
  48033. ]
  48034. ))
  48035. characterMakers.push(() => makeCharacter(
  48036. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48037. {
  48038. female: {
  48039. height: math.unit(7 + 4/12, "feet"),
  48040. weight: math.unit(243, "lb"),
  48041. name: "Female",
  48042. image: {
  48043. source: "./media/characters/kaya/female.svg",
  48044. extra: 975/898,
  48045. bottom: 34/1009
  48046. }
  48047. },
  48048. herm: {
  48049. height: math.unit(7 + 4/12, "feet"),
  48050. weight: math.unit(243, "lb"),
  48051. name: "Herm",
  48052. image: {
  48053. source: "./media/characters/kaya/herm.svg",
  48054. extra: 975/898,
  48055. bottom: 34/1009
  48056. }
  48057. },
  48058. },
  48059. [
  48060. {
  48061. name: "Normal",
  48062. height: math.unit(7 + 4/12, "feet"),
  48063. default: true
  48064. },
  48065. ]
  48066. ))
  48067. characterMakers.push(() => makeCharacter(
  48068. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48069. {
  48070. female: {
  48071. height: math.unit(9 + 4/12, "feet"),
  48072. weight: math.unit(398, "lb"),
  48073. name: "Female",
  48074. image: {
  48075. source: "./media/characters/kassandra/female.svg",
  48076. extra: 908/839,
  48077. bottom: 61/969
  48078. }
  48079. },
  48080. intersex: {
  48081. height: math.unit(9 + 4/12, "feet"),
  48082. weight: math.unit(398, "lb"),
  48083. name: "Intersex",
  48084. image: {
  48085. source: "./media/characters/kassandra/intersex.svg",
  48086. extra: 908/839,
  48087. bottom: 61/969
  48088. }
  48089. },
  48090. },
  48091. [
  48092. {
  48093. name: "Normal",
  48094. height: math.unit(9 + 4/12, "feet"),
  48095. default: true
  48096. },
  48097. ]
  48098. ))
  48099. characterMakers.push(() => makeCharacter(
  48100. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48101. {
  48102. front: {
  48103. height: math.unit(3, "meters"),
  48104. name: "Front",
  48105. image: {
  48106. source: "./media/characters/amy/front.svg",
  48107. extra: 1380/1343,
  48108. bottom: 70/1450
  48109. }
  48110. },
  48111. back: {
  48112. height: math.unit(3, "meters"),
  48113. name: "Back",
  48114. image: {
  48115. source: "./media/characters/amy/back.svg",
  48116. extra: 1380/1347,
  48117. bottom: 66/1446
  48118. }
  48119. },
  48120. },
  48121. [
  48122. {
  48123. name: "Normal",
  48124. height: math.unit(3, "meters"),
  48125. default: true
  48126. },
  48127. ]
  48128. ))
  48129. characterMakers.push(() => makeCharacter(
  48130. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48131. {
  48132. side: {
  48133. height: math.unit(47, "cm"),
  48134. weight: math.unit(10.8, "kg"),
  48135. name: "Side",
  48136. image: {
  48137. source: "./media/characters/alphaschakal/side.svg",
  48138. extra: 1058/568,
  48139. bottom: 62/1120
  48140. }
  48141. },
  48142. back: {
  48143. height: math.unit(78, "cm"),
  48144. weight: math.unit(10.8, "kg"),
  48145. name: "Back",
  48146. image: {
  48147. source: "./media/characters/alphaschakal/back.svg",
  48148. extra: 1102/942,
  48149. bottom: 185/1287
  48150. }
  48151. },
  48152. head: {
  48153. height: math.unit(28, "cm"),
  48154. name: "Head",
  48155. image: {
  48156. source: "./media/characters/alphaschakal/head.svg",
  48157. extra: 696/508,
  48158. bottom: 0/696
  48159. }
  48160. },
  48161. paw: {
  48162. height: math.unit(16, "cm"),
  48163. name: "Paw",
  48164. image: {
  48165. source: "./media/characters/alphaschakal/paw.svg"
  48166. }
  48167. },
  48168. },
  48169. [
  48170. {
  48171. name: "Normal",
  48172. height: math.unit(47, "cm"),
  48173. default: true
  48174. },
  48175. {
  48176. name: "Macro",
  48177. height: math.unit(340, "cm")
  48178. },
  48179. ]
  48180. ))
  48181. characterMakers.push(() => makeCharacter(
  48182. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48183. {
  48184. front: {
  48185. height: math.unit(36, "earths"),
  48186. name: "Front",
  48187. image: {
  48188. source: "./media/characters/ecobyss/front.svg",
  48189. extra: 1282/1215,
  48190. bottom: 11/1293
  48191. }
  48192. },
  48193. back: {
  48194. height: math.unit(36, "earths"),
  48195. name: "Back",
  48196. image: {
  48197. source: "./media/characters/ecobyss/back.svg",
  48198. extra: 1291/1222,
  48199. bottom: 8/1299
  48200. }
  48201. },
  48202. },
  48203. [
  48204. {
  48205. name: "Normal",
  48206. height: math.unit(36, "earths"),
  48207. default: true
  48208. },
  48209. ]
  48210. ))
  48211. characterMakers.push(() => makeCharacter(
  48212. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48213. {
  48214. front: {
  48215. height: math.unit(12, "feet"),
  48216. name: "Front",
  48217. image: {
  48218. source: "./media/characters/vasuk/front.svg",
  48219. extra: 1326/1207,
  48220. bottom: 64/1390
  48221. }
  48222. },
  48223. },
  48224. [
  48225. {
  48226. name: "Normal",
  48227. height: math.unit(12, "feet"),
  48228. default: true
  48229. },
  48230. ]
  48231. ))
  48232. characterMakers.push(() => makeCharacter(
  48233. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48234. {
  48235. side: {
  48236. height: math.unit(100, "feet"),
  48237. name: "Side",
  48238. image: {
  48239. source: "./media/characters/linneaus/side.svg",
  48240. extra: 987/807,
  48241. bottom: 47/1034
  48242. }
  48243. },
  48244. },
  48245. [
  48246. {
  48247. name: "Macro",
  48248. height: math.unit(100, "feet"),
  48249. default: true
  48250. },
  48251. ]
  48252. ))
  48253. characterMakers.push(() => makeCharacter(
  48254. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48255. {
  48256. front: {
  48257. height: math.unit(8, "feet"),
  48258. weight: math.unit(1200, "lb"),
  48259. name: "Front",
  48260. image: {
  48261. source: "./media/characters/nyterious-daligdig/front.svg",
  48262. extra: 1284/1094,
  48263. bottom: 84/1368
  48264. }
  48265. },
  48266. back: {
  48267. height: math.unit(8, "feet"),
  48268. weight: math.unit(1200, "lb"),
  48269. name: "Back",
  48270. image: {
  48271. source: "./media/characters/nyterious-daligdig/back.svg",
  48272. extra: 1301/1121,
  48273. bottom: 129/1430
  48274. }
  48275. },
  48276. mouth: {
  48277. height: math.unit(1.464, "feet"),
  48278. name: "Mouth",
  48279. image: {
  48280. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48281. }
  48282. },
  48283. },
  48284. [
  48285. {
  48286. name: "Small",
  48287. height: math.unit(8, "feet"),
  48288. default: true
  48289. },
  48290. {
  48291. name: "Normal",
  48292. height: math.unit(15, "feet")
  48293. },
  48294. {
  48295. name: "Macro",
  48296. height: math.unit(90, "feet")
  48297. },
  48298. ]
  48299. ))
  48300. characterMakers.push(() => makeCharacter(
  48301. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48302. {
  48303. front: {
  48304. height: math.unit(7 + 4/12, "feet"),
  48305. weight: math.unit(252, "lb"),
  48306. name: "Front",
  48307. image: {
  48308. source: "./media/characters/bandel/front.svg",
  48309. extra: 1946/1775,
  48310. bottom: 26/1972
  48311. }
  48312. },
  48313. back: {
  48314. height: math.unit(7 + 4/12, "feet"),
  48315. weight: math.unit(252, "lb"),
  48316. name: "Back",
  48317. image: {
  48318. source: "./media/characters/bandel/back.svg",
  48319. extra: 1940/1770,
  48320. bottom: 25/1965
  48321. }
  48322. },
  48323. maw: {
  48324. height: math.unit(2.15, "feet"),
  48325. name: "Maw",
  48326. image: {
  48327. source: "./media/characters/bandel/maw.svg"
  48328. }
  48329. },
  48330. stomach: {
  48331. height: math.unit(1.95, "feet"),
  48332. name: "Stomach",
  48333. image: {
  48334. source: "./media/characters/bandel/stomach.svg"
  48335. }
  48336. },
  48337. },
  48338. [
  48339. {
  48340. name: "Normal",
  48341. height: math.unit(7 + 4/12, "feet"),
  48342. default: true
  48343. },
  48344. ]
  48345. ))
  48346. characterMakers.push(() => makeCharacter(
  48347. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48348. {
  48349. front: {
  48350. height: math.unit(10 + 5/12, "feet"),
  48351. weight: math.unit(773.5, "kg"),
  48352. name: "Front",
  48353. image: {
  48354. source: "./media/characters/zed/front.svg",
  48355. extra: 987/941,
  48356. bottom: 52/1039
  48357. }
  48358. },
  48359. },
  48360. [
  48361. {
  48362. name: "Short",
  48363. height: math.unit(5 + 4/12, "feet")
  48364. },
  48365. {
  48366. name: "Average",
  48367. height: math.unit(10 + 5/12, "feet"),
  48368. default: true
  48369. },
  48370. {
  48371. name: "Mini-Macro",
  48372. height: math.unit(24 + 9/12, "feet")
  48373. },
  48374. {
  48375. name: "Macro",
  48376. height: math.unit(249, "feet")
  48377. },
  48378. {
  48379. name: "Mega-Macro",
  48380. height: math.unit(12490, "feet")
  48381. },
  48382. {
  48383. name: "Giga-Macro",
  48384. height: math.unit(24.9, "miles")
  48385. },
  48386. {
  48387. name: "Tera-Macro",
  48388. height: math.unit(24900, "miles")
  48389. },
  48390. {
  48391. name: "Cosmic Scale",
  48392. height: math.unit(38.9, "lightyears")
  48393. },
  48394. {
  48395. name: "Universal Scale",
  48396. height: math.unit(138e12, "lightyears")
  48397. },
  48398. ]
  48399. ))
  48400. characterMakers.push(() => makeCharacter(
  48401. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48402. {
  48403. front: {
  48404. height: math.unit(1561, "inches"),
  48405. name: "Front",
  48406. image: {
  48407. source: "./media/characters/ivan/front.svg",
  48408. extra: 1126/1071,
  48409. bottom: 26/1152
  48410. }
  48411. },
  48412. back: {
  48413. height: math.unit(1561, "inches"),
  48414. name: "Back",
  48415. image: {
  48416. source: "./media/characters/ivan/back.svg",
  48417. extra: 1134/1079,
  48418. bottom: 30/1164
  48419. }
  48420. },
  48421. },
  48422. [
  48423. {
  48424. name: "Normal",
  48425. height: math.unit(1561, "inches"),
  48426. default: true
  48427. },
  48428. ]
  48429. ))
  48430. characterMakers.push(() => makeCharacter(
  48431. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48432. {
  48433. front: {
  48434. height: math.unit(5 + 7/12, "feet"),
  48435. weight: math.unit(150, "lb"),
  48436. name: "Front",
  48437. image: {
  48438. source: "./media/characters/robin-arctic-hare/front.svg",
  48439. extra: 1148/974,
  48440. bottom: 20/1168
  48441. }
  48442. },
  48443. },
  48444. [
  48445. {
  48446. name: "Normal",
  48447. height: math.unit(5 + 7/12, "feet"),
  48448. default: true
  48449. },
  48450. ]
  48451. ))
  48452. characterMakers.push(() => makeCharacter(
  48453. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48454. {
  48455. side: {
  48456. height: math.unit(5, "feet"),
  48457. name: "Side",
  48458. image: {
  48459. source: "./media/characters/birch/side.svg",
  48460. extra: 985/796,
  48461. bottom: 111/1096
  48462. }
  48463. },
  48464. },
  48465. [
  48466. {
  48467. name: "Normal",
  48468. height: math.unit(5, "feet"),
  48469. default: true
  48470. },
  48471. ]
  48472. ))
  48473. characterMakers.push(() => makeCharacter(
  48474. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48475. {
  48476. front: {
  48477. height: math.unit(4, "feet"),
  48478. name: "Front",
  48479. image: {
  48480. source: "./media/characters/rasp/front.svg",
  48481. extra: 561/478,
  48482. bottom: 74/635
  48483. }
  48484. },
  48485. },
  48486. [
  48487. {
  48488. name: "Normal",
  48489. height: math.unit(4, "feet"),
  48490. default: true
  48491. },
  48492. ]
  48493. ))
  48494. characterMakers.push(() => makeCharacter(
  48495. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48496. {
  48497. front: {
  48498. height: math.unit(4 + 6/12, "feet"),
  48499. name: "Front",
  48500. image: {
  48501. source: "./media/characters/agatha/front.svg",
  48502. extra: 947/933,
  48503. bottom: 42/989
  48504. }
  48505. },
  48506. back: {
  48507. height: math.unit(4 + 6/12, "feet"),
  48508. name: "Back",
  48509. image: {
  48510. source: "./media/characters/agatha/back.svg",
  48511. extra: 935/922,
  48512. bottom: 48/983
  48513. }
  48514. },
  48515. },
  48516. [
  48517. {
  48518. name: "Normal",
  48519. height: math.unit(4 + 6 /12, "feet"),
  48520. default: true
  48521. },
  48522. {
  48523. name: "Max Size",
  48524. height: math.unit(500, "feet")
  48525. },
  48526. ]
  48527. ))
  48528. characterMakers.push(() => makeCharacter(
  48529. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48530. {
  48531. side: {
  48532. height: math.unit(30, "feet"),
  48533. name: "Side",
  48534. image: {
  48535. source: "./media/characters/roggy/side.svg",
  48536. extra: 909/643,
  48537. bottom: 63/972
  48538. }
  48539. },
  48540. lounging: {
  48541. height: math.unit(20, "feet"),
  48542. name: "Lounging",
  48543. image: {
  48544. source: "./media/characters/roggy/lounging.svg",
  48545. extra: 643/479,
  48546. bottom: 145/788
  48547. }
  48548. },
  48549. handpaw: {
  48550. height: math.unit(13.1, "feet"),
  48551. name: "Handpaw",
  48552. image: {
  48553. source: "./media/characters/roggy/handpaw.svg"
  48554. }
  48555. },
  48556. footpaw: {
  48557. height: math.unit(15.8, "feet"),
  48558. name: "Footpaw",
  48559. image: {
  48560. source: "./media/characters/roggy/footpaw.svg"
  48561. }
  48562. },
  48563. },
  48564. [
  48565. {
  48566. name: "Menacing",
  48567. height: math.unit(30, "feet"),
  48568. default: true
  48569. },
  48570. ]
  48571. ))
  48572. characterMakers.push(() => makeCharacter(
  48573. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48574. {
  48575. front: {
  48576. height: math.unit(5 + 7/12, "feet"),
  48577. weight: math.unit(135, "lb"),
  48578. name: "Front",
  48579. image: {
  48580. source: "./media/characters/naomi/front.svg",
  48581. extra: 1209/1154,
  48582. bottom: 129/1338
  48583. }
  48584. },
  48585. back: {
  48586. height: math.unit(5 + 7/12, "feet"),
  48587. weight: math.unit(135, "lb"),
  48588. name: "Back",
  48589. image: {
  48590. source: "./media/characters/naomi/back.svg",
  48591. extra: 1252/1190,
  48592. bottom: 23/1275
  48593. }
  48594. },
  48595. },
  48596. [
  48597. {
  48598. name: "Normal",
  48599. height: math.unit(5 + 7 /12, "feet"),
  48600. default: true
  48601. },
  48602. ]
  48603. ))
  48604. characterMakers.push(() => makeCharacter(
  48605. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48606. {
  48607. side: {
  48608. height: math.unit(35, "meters"),
  48609. name: "Side",
  48610. image: {
  48611. source: "./media/characters/kimpi/side.svg",
  48612. extra: 419/382,
  48613. bottom: 63/482
  48614. }
  48615. },
  48616. hand: {
  48617. height: math.unit(8.96, "meters"),
  48618. name: "Hand",
  48619. image: {
  48620. source: "./media/characters/kimpi/hand.svg"
  48621. }
  48622. },
  48623. },
  48624. [
  48625. {
  48626. name: "Normal",
  48627. height: math.unit(35, "meters"),
  48628. default: true
  48629. },
  48630. ]
  48631. ))
  48632. characterMakers.push(() => makeCharacter(
  48633. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48634. {
  48635. front: {
  48636. height: math.unit(4 + 4/12, "feet"),
  48637. name: "Front",
  48638. image: {
  48639. source: "./media/characters/pepper-purrloin/front.svg",
  48640. extra: 1141/1024,
  48641. bottom: 21/1162
  48642. }
  48643. },
  48644. },
  48645. [
  48646. {
  48647. name: "Normal",
  48648. height: math.unit(4 + 4/12, "feet"),
  48649. default: true
  48650. },
  48651. ]
  48652. ))
  48653. characterMakers.push(() => makeCharacter(
  48654. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48655. {
  48656. front: {
  48657. height: math.unit(6 + 2/12, "feet"),
  48658. name: "Front",
  48659. image: {
  48660. source: "./media/characters/raphael/front.svg",
  48661. extra: 1101/962,
  48662. bottom: 59/1160
  48663. }
  48664. },
  48665. },
  48666. [
  48667. {
  48668. name: "Normal",
  48669. height: math.unit(6 + 2/12, "feet"),
  48670. default: true
  48671. },
  48672. ]
  48673. ))
  48674. characterMakers.push(() => makeCharacter(
  48675. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48676. {
  48677. front: {
  48678. height: math.unit(6, "feet"),
  48679. weight: math.unit(150, "lb"),
  48680. name: "Front",
  48681. image: {
  48682. source: "./media/characters/victor-williams/front.svg",
  48683. extra: 1894/1825,
  48684. bottom: 67/1961
  48685. }
  48686. },
  48687. },
  48688. [
  48689. {
  48690. name: "Normal",
  48691. height: math.unit(6, "feet"),
  48692. default: true
  48693. },
  48694. ]
  48695. ))
  48696. characterMakers.push(() => makeCharacter(
  48697. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48698. {
  48699. front: {
  48700. height: math.unit(5 + 8/12, "feet"),
  48701. weight: math.unit(150, "lb"),
  48702. name: "Front",
  48703. image: {
  48704. source: "./media/characters/rachel/front.svg",
  48705. extra: 1902/1787,
  48706. bottom: 46/1948
  48707. }
  48708. },
  48709. },
  48710. [
  48711. {
  48712. name: "Base Height",
  48713. height: math.unit(5 + 8/12, "feet"),
  48714. default: true
  48715. },
  48716. {
  48717. name: "Macro",
  48718. height: math.unit(200, "feet")
  48719. },
  48720. {
  48721. name: "Mega Macro",
  48722. height: math.unit(1, "mile")
  48723. },
  48724. {
  48725. name: "Giga Macro",
  48726. height: math.unit(1500, "miles")
  48727. },
  48728. {
  48729. name: "Tera Macro",
  48730. height: math.unit(8000, "miles")
  48731. },
  48732. {
  48733. name: "Tera Macro+",
  48734. height: math.unit(2e5, "miles")
  48735. },
  48736. ]
  48737. ))
  48738. characterMakers.push(() => makeCharacter(
  48739. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48740. {
  48741. front: {
  48742. height: math.unit(6.5, "feet"),
  48743. name: "Front",
  48744. image: {
  48745. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48746. extra: 860/819,
  48747. bottom: 307/1167
  48748. }
  48749. },
  48750. back: {
  48751. height: math.unit(6.5, "feet"),
  48752. name: "Back",
  48753. image: {
  48754. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48755. extra: 880/837,
  48756. bottom: 395/1275
  48757. }
  48758. },
  48759. sleeping: {
  48760. height: math.unit(2.79, "feet"),
  48761. name: "Sleeping",
  48762. image: {
  48763. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48764. extra: 465/383,
  48765. bottom: 263/728
  48766. }
  48767. },
  48768. maw: {
  48769. height: math.unit(2.52, "feet"),
  48770. name: "Maw",
  48771. image: {
  48772. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48773. }
  48774. },
  48775. },
  48776. [
  48777. {
  48778. name: "Normal",
  48779. height: math.unit(6.5, "feet"),
  48780. default: true
  48781. },
  48782. ]
  48783. ))
  48784. characterMakers.push(() => makeCharacter(
  48785. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48786. {
  48787. front: {
  48788. height: math.unit(5, "feet"),
  48789. name: "Front",
  48790. image: {
  48791. source: "./media/characters/nova-nerium/front.svg",
  48792. extra: 1548/1392,
  48793. bottom: 374/1922
  48794. }
  48795. },
  48796. back: {
  48797. height: math.unit(5, "feet"),
  48798. name: "Back",
  48799. image: {
  48800. source: "./media/characters/nova-nerium/back.svg",
  48801. extra: 1658/1468,
  48802. bottom: 257/1915
  48803. }
  48804. },
  48805. },
  48806. [
  48807. {
  48808. name: "Normal",
  48809. height: math.unit(5, "feet"),
  48810. default: true
  48811. },
  48812. ]
  48813. ))
  48814. characterMakers.push(() => makeCharacter(
  48815. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48816. {
  48817. front: {
  48818. height: math.unit(5 + 4/12, "feet"),
  48819. name: "Front",
  48820. image: {
  48821. source: "./media/characters/ashe-pyriph/front.svg",
  48822. extra: 1935/1747,
  48823. bottom: 60/1995
  48824. }
  48825. },
  48826. },
  48827. [
  48828. {
  48829. name: "Normal",
  48830. height: math.unit(5 + 4/12, "feet"),
  48831. default: true
  48832. },
  48833. ]
  48834. ))
  48835. characterMakers.push(() => makeCharacter(
  48836. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48837. {
  48838. front: {
  48839. height: math.unit(8.7, "feet"),
  48840. name: "Front",
  48841. image: {
  48842. source: "./media/characters/flicker-wisp/front.svg",
  48843. extra: 1835/1613,
  48844. bottom: 449/2284
  48845. }
  48846. },
  48847. side: {
  48848. height: math.unit(8.7, "feet"),
  48849. name: "Side",
  48850. image: {
  48851. source: "./media/characters/flicker-wisp/side.svg",
  48852. extra: 1841/1642,
  48853. bottom: 336/2177
  48854. },
  48855. default: true
  48856. },
  48857. maw: {
  48858. height: math.unit(3.35, "feet"),
  48859. name: "Maw",
  48860. image: {
  48861. source: "./media/characters/flicker-wisp/maw.svg",
  48862. extra: 2338/1506,
  48863. bottom: 0/2338
  48864. }
  48865. },
  48866. ovipositor: {
  48867. height: math.unit(4.95, "feet"),
  48868. name: "Ovipositor",
  48869. image: {
  48870. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48871. }
  48872. },
  48873. egg: {
  48874. height: math.unit(0.385, "feet"),
  48875. weight: math.unit(2, "lb"),
  48876. name: "Egg",
  48877. image: {
  48878. source: "./media/characters/flicker-wisp/egg.svg"
  48879. }
  48880. },
  48881. },
  48882. [
  48883. {
  48884. name: "Normal",
  48885. height: math.unit(8.7, "feet"),
  48886. default: true
  48887. },
  48888. ]
  48889. ))
  48890. characterMakers.push(() => makeCharacter(
  48891. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48892. {
  48893. side: {
  48894. height: math.unit(11, "feet"),
  48895. name: "Side",
  48896. image: {
  48897. source: "./media/characters/faefnul/side.svg",
  48898. extra: 1100/1007,
  48899. bottom: 0/1100
  48900. }
  48901. },
  48902. },
  48903. [
  48904. {
  48905. name: "Normal",
  48906. height: math.unit(11, "feet"),
  48907. default: true
  48908. },
  48909. ]
  48910. ))
  48911. characterMakers.push(() => makeCharacter(
  48912. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48913. {
  48914. front: {
  48915. height: math.unit(6 + 2/12, "feet"),
  48916. name: "Front",
  48917. image: {
  48918. source: "./media/characters/shady/front.svg",
  48919. extra: 502/461,
  48920. bottom: 9/511
  48921. }
  48922. },
  48923. kneeling: {
  48924. height: math.unit(4.6, "feet"),
  48925. name: "Kneeling",
  48926. image: {
  48927. source: "./media/characters/shady/kneeling.svg",
  48928. extra: 1328/1219,
  48929. bottom: 117/1445
  48930. }
  48931. },
  48932. maw: {
  48933. height: math.unit(2, "feet"),
  48934. name: "Maw",
  48935. image: {
  48936. source: "./media/characters/shady/maw.svg"
  48937. }
  48938. },
  48939. },
  48940. [
  48941. {
  48942. name: "Nano",
  48943. height: math.unit(1, "mm")
  48944. },
  48945. {
  48946. name: "Micro",
  48947. height: math.unit(12, "mm")
  48948. },
  48949. {
  48950. name: "Tiny",
  48951. height: math.unit(3, "inches")
  48952. },
  48953. {
  48954. name: "Normal",
  48955. height: math.unit(6 + 2/12, "feet"),
  48956. default: true
  48957. },
  48958. {
  48959. name: "Big",
  48960. height: math.unit(15, "feet")
  48961. },
  48962. {
  48963. name: "Macro",
  48964. height: math.unit(150, "feet")
  48965. },
  48966. {
  48967. name: "Titanic",
  48968. height: math.unit(500, "feet")
  48969. },
  48970. ]
  48971. ))
  48972. characterMakers.push(() => makeCharacter(
  48973. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48974. {
  48975. front: {
  48976. height: math.unit(12, "feet"),
  48977. name: "Front",
  48978. image: {
  48979. source: "./media/characters/fenrir/front.svg",
  48980. extra: 968/875,
  48981. bottom: 22/990
  48982. }
  48983. },
  48984. },
  48985. [
  48986. {
  48987. name: "Big",
  48988. height: math.unit(12, "feet"),
  48989. default: true
  48990. },
  48991. ]
  48992. ))
  48993. characterMakers.push(() => makeCharacter(
  48994. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48995. {
  48996. front: {
  48997. height: math.unit(5 + 4/12, "feet"),
  48998. name: "Front",
  48999. image: {
  49000. source: "./media/characters/makar/front.svg",
  49001. extra: 1181/1112,
  49002. bottom: 78/1259
  49003. }
  49004. },
  49005. },
  49006. [
  49007. {
  49008. name: "Normal",
  49009. height: math.unit(5 + 4/12, "feet"),
  49010. default: true
  49011. },
  49012. ]
  49013. ))
  49014. characterMakers.push(() => makeCharacter(
  49015. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49016. {
  49017. front: {
  49018. height: math.unit(5 + 7/12, "feet"),
  49019. name: "Front",
  49020. image: {
  49021. source: "./media/characters/callow/front.svg",
  49022. extra: 1482/1304,
  49023. bottom: 23/1505
  49024. }
  49025. },
  49026. back: {
  49027. height: math.unit(5 + 7/12, "feet"),
  49028. name: "Back",
  49029. image: {
  49030. source: "./media/characters/callow/back.svg",
  49031. extra: 1484/1296,
  49032. bottom: 25/1509
  49033. }
  49034. },
  49035. },
  49036. [
  49037. {
  49038. name: "Micro",
  49039. height: math.unit(3, "inches"),
  49040. default: true
  49041. },
  49042. {
  49043. name: "Normal",
  49044. height: math.unit(5 + 7/12, "feet")
  49045. },
  49046. ]
  49047. ))
  49048. characterMakers.push(() => makeCharacter(
  49049. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49050. {
  49051. front: {
  49052. height: math.unit(6 + 2/12, "feet"),
  49053. name: "Front",
  49054. image: {
  49055. source: "./media/characters/natel/front.svg",
  49056. extra: 1833/1692,
  49057. bottom: 166/1999
  49058. }
  49059. },
  49060. },
  49061. [
  49062. {
  49063. name: "Normal",
  49064. height: math.unit(6 + 2/12, "feet"),
  49065. default: true
  49066. },
  49067. ]
  49068. ))
  49069. characterMakers.push(() => makeCharacter(
  49070. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49071. {
  49072. front: {
  49073. height: math.unit(1.75, "meters"),
  49074. name: "Front",
  49075. image: {
  49076. source: "./media/characters/misu/front.svg",
  49077. extra: 1690/1558,
  49078. bottom: 234/1924
  49079. }
  49080. },
  49081. back: {
  49082. height: math.unit(1.75, "meters"),
  49083. name: "Back",
  49084. image: {
  49085. source: "./media/characters/misu/back.svg",
  49086. extra: 1762/1618,
  49087. bottom: 146/1908
  49088. }
  49089. },
  49090. frontNude: {
  49091. height: math.unit(1.75, "meters"),
  49092. name: "Front (Nude)",
  49093. image: {
  49094. source: "./media/characters/misu/front-nude.svg",
  49095. extra: 1690/1558,
  49096. bottom: 234/1924
  49097. }
  49098. },
  49099. backNude: {
  49100. height: math.unit(1.75, "meters"),
  49101. name: "Back (Nude)",
  49102. image: {
  49103. source: "./media/characters/misu/back-nude.svg",
  49104. extra: 1762/1618,
  49105. bottom: 146/1908
  49106. }
  49107. },
  49108. frontErect: {
  49109. height: math.unit(1.75, "meters"),
  49110. name: "Front (Erect)",
  49111. image: {
  49112. source: "./media/characters/misu/front-erect.svg",
  49113. extra: 1690/1558,
  49114. bottom: 234/1924
  49115. }
  49116. },
  49117. maw: {
  49118. height: math.unit(0.47, "meters"),
  49119. name: "Maw",
  49120. image: {
  49121. source: "./media/characters/misu/maw.svg"
  49122. }
  49123. },
  49124. head: {
  49125. height: math.unit(0.35, "meters"),
  49126. name: "Head",
  49127. image: {
  49128. source: "./media/characters/misu/head.svg"
  49129. }
  49130. },
  49131. rear: {
  49132. height: math.unit(0.47, "meters"),
  49133. name: "Rear",
  49134. image: {
  49135. source: "./media/characters/misu/rear.svg"
  49136. }
  49137. },
  49138. },
  49139. [
  49140. {
  49141. name: "Normal",
  49142. height: math.unit(1.75, "meters")
  49143. },
  49144. {
  49145. name: "Not good for the people",
  49146. height: math.unit(42, "meters")
  49147. },
  49148. {
  49149. name: "Not good for the neighborhood",
  49150. height: math.unit(135, "meters")
  49151. },
  49152. {
  49153. name: "Bit bigger problem",
  49154. height: math.unit(380, "meters"),
  49155. default: true
  49156. },
  49157. {
  49158. name: "Not good for the city",
  49159. height: math.unit(1.5, "km")
  49160. },
  49161. {
  49162. name: "Not good for the county",
  49163. height: math.unit(5.5, "km")
  49164. },
  49165. {
  49166. name: "Not good for the state",
  49167. height: math.unit(25, "km")
  49168. },
  49169. {
  49170. name: "Not good for the country",
  49171. height: math.unit(125, "km")
  49172. },
  49173. {
  49174. name: "Not good for the continent",
  49175. height: math.unit(2100, "km")
  49176. },
  49177. {
  49178. name: "Not good for the planet",
  49179. height: math.unit(35000, "km")
  49180. },
  49181. {
  49182. name: "Just no",
  49183. height: math.unit(8.5e18, "km")
  49184. },
  49185. ]
  49186. ))
  49187. characterMakers.push(() => makeCharacter(
  49188. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49189. {
  49190. front: {
  49191. height: math.unit(6.5, "feet"),
  49192. name: "Front",
  49193. image: {
  49194. source: "./media/characters/poppy/front.svg",
  49195. extra: 1878/1812,
  49196. bottom: 43/1921
  49197. }
  49198. },
  49199. feet: {
  49200. height: math.unit(1.06, "feet"),
  49201. name: "Feet",
  49202. image: {
  49203. source: "./media/characters/poppy/feet.svg",
  49204. extra: 1083/1083,
  49205. bottom: 87/1170
  49206. }
  49207. },
  49208. },
  49209. [
  49210. {
  49211. name: "Human",
  49212. height: math.unit(6.5, "feet")
  49213. },
  49214. {
  49215. name: "Default",
  49216. height: math.unit(300, "feet"),
  49217. default: true
  49218. },
  49219. {
  49220. name: "Huge",
  49221. height: math.unit(850, "feet")
  49222. },
  49223. {
  49224. name: "Mega",
  49225. height: math.unit(8000, "feet")
  49226. },
  49227. {
  49228. name: "Giga",
  49229. height: math.unit(300, "miles")
  49230. },
  49231. ]
  49232. ))
  49233. characterMakers.push(() => makeCharacter(
  49234. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49235. {
  49236. bipedal: {
  49237. height: math.unit(7, "feet"),
  49238. name: "Bipedal",
  49239. image: {
  49240. source: "./media/characters/zener/bipedal.svg",
  49241. extra: 874/805,
  49242. bottom: 109/983
  49243. }
  49244. },
  49245. quadrupedal: {
  49246. height: math.unit(4.64, "feet"),
  49247. name: "Quadrupedal",
  49248. image: {
  49249. source: "./media/characters/zener/quadrupedal.svg",
  49250. extra: 638/507,
  49251. bottom: 190/828
  49252. }
  49253. },
  49254. cock: {
  49255. height: math.unit(18, "inches"),
  49256. name: "Cock",
  49257. image: {
  49258. source: "./media/characters/zener/cock.svg"
  49259. }
  49260. },
  49261. },
  49262. [
  49263. {
  49264. name: "Normal",
  49265. height: math.unit(7, "feet"),
  49266. default: true
  49267. },
  49268. ]
  49269. ))
  49270. characterMakers.push(() => makeCharacter(
  49271. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49272. {
  49273. nude: {
  49274. height: math.unit(5 + 6/12, "feet"),
  49275. name: "Nude",
  49276. image: {
  49277. source: "./media/characters/charlie-dog/nude.svg",
  49278. extra: 768/734,
  49279. bottom: 26/794
  49280. }
  49281. },
  49282. dressed: {
  49283. height: math.unit(5 + 6/12, "feet"),
  49284. name: "Dressed",
  49285. image: {
  49286. source: "./media/characters/charlie-dog/dressed.svg",
  49287. extra: 768/734,
  49288. bottom: 26/794
  49289. }
  49290. },
  49291. },
  49292. [
  49293. {
  49294. name: "Normal",
  49295. height: math.unit(5 + 6/12, "feet"),
  49296. default: true
  49297. },
  49298. ]
  49299. ))
  49300. characterMakers.push(() => makeCharacter(
  49301. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49302. {
  49303. front: {
  49304. height: math.unit(6 + 4/12, "feet"),
  49305. name: "Front",
  49306. image: {
  49307. source: "./media/characters/ir'istrasz/front.svg",
  49308. extra: 1014/977,
  49309. bottom: 65/1079
  49310. }
  49311. },
  49312. back: {
  49313. height: math.unit(6 + 4/12, "feet"),
  49314. name: "Back",
  49315. image: {
  49316. source: "./media/characters/ir'istrasz/back.svg",
  49317. extra: 1024/992,
  49318. bottom: 34/1058
  49319. }
  49320. },
  49321. },
  49322. [
  49323. {
  49324. name: "Normal",
  49325. height: math.unit(6 + 4/12, "feet"),
  49326. default: true
  49327. },
  49328. ]
  49329. ))
  49330. characterMakers.push(() => makeCharacter(
  49331. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49332. {
  49333. front: {
  49334. height: math.unit(5 + 8/12, "feet"),
  49335. name: "Front",
  49336. image: {
  49337. source: "./media/characters/dee-ditto/front.svg",
  49338. extra: 1874/1785,
  49339. bottom: 68/1942
  49340. }
  49341. },
  49342. back: {
  49343. height: math.unit(5 + 8/12, "feet"),
  49344. name: "Back",
  49345. image: {
  49346. source: "./media/characters/dee-ditto/back.svg",
  49347. extra: 1870/1783,
  49348. bottom: 77/1947
  49349. }
  49350. },
  49351. },
  49352. [
  49353. {
  49354. name: "Normal",
  49355. height: math.unit(5 + 8/12, "feet"),
  49356. default: true
  49357. },
  49358. ]
  49359. ))
  49360. characterMakers.push(() => makeCharacter(
  49361. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49362. {
  49363. front: {
  49364. height: math.unit(7 + 6/12, "feet"),
  49365. name: "Front",
  49366. image: {
  49367. source: "./media/characters/fey/front.svg",
  49368. extra: 995/979,
  49369. bottom: 30/1025
  49370. }
  49371. },
  49372. back: {
  49373. height: math.unit(7 + 6/12, "feet"),
  49374. name: "Back",
  49375. image: {
  49376. source: "./media/characters/fey/back.svg",
  49377. extra: 1079/1008,
  49378. bottom: 5/1084
  49379. }
  49380. },
  49381. dressed: {
  49382. height: math.unit(7 + 6/12, "feet"),
  49383. name: "Dressed",
  49384. image: {
  49385. source: "./media/characters/fey/dressed.svg",
  49386. extra: 995/979,
  49387. bottom: 30/1025
  49388. }
  49389. },
  49390. },
  49391. [
  49392. {
  49393. name: "Normal",
  49394. height: math.unit(7 + 6/12, "feet"),
  49395. default: true
  49396. },
  49397. ]
  49398. ))
  49399. characterMakers.push(() => makeCharacter(
  49400. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49401. {
  49402. standing: {
  49403. height: math.unit(17, "feet"),
  49404. name: "Standing",
  49405. image: {
  49406. source: "./media/characters/aster/standing.svg",
  49407. extra: 1798/1598,
  49408. bottom: 117/1915
  49409. }
  49410. },
  49411. },
  49412. [
  49413. {
  49414. name: "Normal",
  49415. height: math.unit(17, "feet"),
  49416. default: true
  49417. },
  49418. {
  49419. name: "Homewrecker",
  49420. height: math.unit(95, "feet")
  49421. },
  49422. {
  49423. name: "Planet Devourer",
  49424. height: math.unit(1008000, "miles")
  49425. },
  49426. ]
  49427. ))
  49428. characterMakers.push(() => makeCharacter(
  49429. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49430. {
  49431. front: {
  49432. height: math.unit(6 + 5/12, "feet"),
  49433. weight: math.unit(265, "lb"),
  49434. name: "Front",
  49435. image: {
  49436. source: "./media/characters/devon-childs/front.svg",
  49437. extra: 1795/1721,
  49438. bottom: 41/1836
  49439. }
  49440. },
  49441. side: {
  49442. height: math.unit(6 + 5/12, "feet"),
  49443. weight: math.unit(265, "lb"),
  49444. name: "Side",
  49445. image: {
  49446. source: "./media/characters/devon-childs/side.svg",
  49447. extra: 1812/1738,
  49448. bottom: 30/1842
  49449. }
  49450. },
  49451. back: {
  49452. height: math.unit(6 + 5/12, "feet"),
  49453. weight: math.unit(265, "lb"),
  49454. name: "Back",
  49455. image: {
  49456. source: "./media/characters/devon-childs/back.svg",
  49457. extra: 1808/1735,
  49458. bottom: 23/1831
  49459. }
  49460. },
  49461. hand: {
  49462. height: math.unit(1.464, "feet"),
  49463. name: "Hand",
  49464. image: {
  49465. source: "./media/characters/devon-childs/hand.svg"
  49466. }
  49467. },
  49468. foot: {
  49469. height: math.unit(1.6, "feet"),
  49470. name: "Foot",
  49471. image: {
  49472. source: "./media/characters/devon-childs/foot.svg"
  49473. }
  49474. },
  49475. },
  49476. [
  49477. {
  49478. name: "Micro",
  49479. height: math.unit(7, "cm")
  49480. },
  49481. {
  49482. name: "Normal",
  49483. height: math.unit(6 + 5/12, "feet"),
  49484. default: true
  49485. },
  49486. {
  49487. name: "Macro",
  49488. height: math.unit(154, "feet")
  49489. },
  49490. ]
  49491. ))
  49492. characterMakers.push(() => makeCharacter(
  49493. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49494. {
  49495. front: {
  49496. height: math.unit(6, "feet"),
  49497. weight: math.unit(180, "lb"),
  49498. name: "Front",
  49499. image: {
  49500. source: "./media/characters/lydemox-vir/front.svg",
  49501. extra: 1632/1435,
  49502. bottom: 58/1690
  49503. }
  49504. },
  49505. frontSFW: {
  49506. height: math.unit(6, "feet"),
  49507. weight: math.unit(180, "lb"),
  49508. name: "Front (SFW)",
  49509. image: {
  49510. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49511. extra: 1632/1435,
  49512. bottom: 58/1690
  49513. }
  49514. },
  49515. back: {
  49516. height: math.unit(6, "feet"),
  49517. weight: math.unit(180, "lb"),
  49518. name: "Back",
  49519. image: {
  49520. source: "./media/characters/lydemox-vir/back.svg",
  49521. extra: 1593/1408,
  49522. bottom: 31/1624
  49523. }
  49524. },
  49525. paw: {
  49526. height: math.unit(1.85, "feet"),
  49527. name: "Paw",
  49528. image: {
  49529. source: "./media/characters/lydemox-vir/paw.svg"
  49530. }
  49531. },
  49532. dick: {
  49533. height: math.unit(1.8, "feet"),
  49534. name: "Dick",
  49535. image: {
  49536. source: "./media/characters/lydemox-vir/dick.svg"
  49537. }
  49538. },
  49539. },
  49540. [
  49541. {
  49542. name: "Macro",
  49543. height: math.unit(100, "feet"),
  49544. default: true
  49545. },
  49546. {
  49547. name: "Teramacro",
  49548. height: math.unit(1, "earth")
  49549. },
  49550. {
  49551. name: "Planetary",
  49552. height: math.unit(20, "earths")
  49553. },
  49554. ]
  49555. ))
  49556. characterMakers.push(() => makeCharacter(
  49557. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49558. {
  49559. front: {
  49560. height: math.unit(15 + 8/12, "feet"),
  49561. weight: math.unit(1237, "kg"),
  49562. name: "Front",
  49563. image: {
  49564. source: "./media/characters/mia/front.svg",
  49565. extra: 1573/1446,
  49566. bottom: 58/1631
  49567. }
  49568. },
  49569. },
  49570. [
  49571. {
  49572. name: "Small",
  49573. height: math.unit(9 + 5/12, "feet")
  49574. },
  49575. {
  49576. name: "Normal",
  49577. height: math.unit(15 + 8/12, "feet"),
  49578. default: true
  49579. },
  49580. ]
  49581. ))
  49582. characterMakers.push(() => makeCharacter(
  49583. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49584. {
  49585. front: {
  49586. height: math.unit(10 + 6/12, "feet"),
  49587. weight: math.unit(1.3, "tons"),
  49588. name: "Front",
  49589. image: {
  49590. source: "./media/characters/mr-graves/front.svg",
  49591. extra: 1779/1695,
  49592. bottom: 198/1977
  49593. }
  49594. },
  49595. },
  49596. [
  49597. {
  49598. name: "Normal",
  49599. height: math.unit(10 + 6 /12, "feet"),
  49600. default: true
  49601. },
  49602. ]
  49603. ))
  49604. characterMakers.push(() => makeCharacter(
  49605. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49606. {
  49607. dressedFront: {
  49608. height: math.unit(5 + 8/12, "feet"),
  49609. weight: math.unit(125, "lb"),
  49610. name: "Dressed (Front)",
  49611. image: {
  49612. source: "./media/characters/jess/dressed-front.svg",
  49613. extra: 1176/1152,
  49614. bottom: 42/1218
  49615. }
  49616. },
  49617. dressedSide: {
  49618. height: math.unit(5 + 8/12, "feet"),
  49619. weight: math.unit(125, "lb"),
  49620. name: "Dressed (Side)",
  49621. image: {
  49622. source: "./media/characters/jess/dressed-side.svg",
  49623. extra: 1204/1190,
  49624. bottom: 6/1210
  49625. }
  49626. },
  49627. nudeFront: {
  49628. height: math.unit(5 + 8/12, "feet"),
  49629. weight: math.unit(125, "lb"),
  49630. name: "Nude (Front)",
  49631. image: {
  49632. source: "./media/characters/jess/nude-front.svg",
  49633. extra: 1176/1152,
  49634. bottom: 42/1218
  49635. }
  49636. },
  49637. nudeSide: {
  49638. height: math.unit(5 + 8/12, "feet"),
  49639. weight: math.unit(125, "lb"),
  49640. name: "Nude (Side)",
  49641. image: {
  49642. source: "./media/characters/jess/nude-side.svg",
  49643. extra: 1204/1190,
  49644. bottom: 6/1210
  49645. }
  49646. },
  49647. organsFront: {
  49648. height: math.unit(2.83799342105, "feet"),
  49649. name: "Organs (Front)",
  49650. image: {
  49651. source: "./media/characters/jess/organs-front.svg"
  49652. }
  49653. },
  49654. organsSide: {
  49655. height: math.unit(2.64225290474, "feet"),
  49656. name: "Organs (Side)",
  49657. image: {
  49658. source: "./media/characters/jess/organs-side.svg"
  49659. }
  49660. },
  49661. digestiveTractFront: {
  49662. height: math.unit(2.8106580871, "feet"),
  49663. name: "Digestive Tract (Front)",
  49664. image: {
  49665. source: "./media/characters/jess/digestive-tract-front.svg"
  49666. }
  49667. },
  49668. digestiveTractSide: {
  49669. height: math.unit(2.54365045014, "feet"),
  49670. name: "Digestive Tract (Side)",
  49671. image: {
  49672. source: "./media/characters/jess/digestive-tract-side.svg"
  49673. }
  49674. },
  49675. respiratorySystemFront: {
  49676. height: math.unit(1.11196233456, "feet"),
  49677. name: "Respiratory System (Front)",
  49678. image: {
  49679. source: "./media/characters/jess/respiratory-system-front.svg"
  49680. }
  49681. },
  49682. respiratorySystemSide: {
  49683. height: math.unit(0.89327966297, "feet"),
  49684. name: "Respiratory System (Side)",
  49685. image: {
  49686. source: "./media/characters/jess/respiratory-system-side.svg"
  49687. }
  49688. },
  49689. urinaryTractFront: {
  49690. height: math.unit(1.16126356186, "feet"),
  49691. name: "Urinary Tract (Front)",
  49692. image: {
  49693. source: "./media/characters/jess/urinary-tract-front.svg"
  49694. }
  49695. },
  49696. urinaryTractSide: {
  49697. height: math.unit(1.20910039627, "feet"),
  49698. name: "Urinary Tract (Side)",
  49699. image: {
  49700. source: "./media/characters/jess/urinary-tract-side.svg"
  49701. }
  49702. },
  49703. reproductiveOrgansFront: {
  49704. height: math.unit(0.48422591566, "feet"),
  49705. name: "Reproductive Organs (Front)",
  49706. image: {
  49707. source: "./media/characters/jess/reproductive-organs-front.svg"
  49708. }
  49709. },
  49710. reproductiveOrgansSide: {
  49711. height: math.unit(0.61553314481, "feet"),
  49712. name: "Reproductive Organs (Side)",
  49713. image: {
  49714. source: "./media/characters/jess/reproductive-organs-side.svg"
  49715. }
  49716. },
  49717. breastsFront: {
  49718. height: math.unit(0.47690395121, "feet"),
  49719. name: "Breasts (Front)",
  49720. image: {
  49721. source: "./media/characters/jess/breasts-front.svg"
  49722. }
  49723. },
  49724. breastsSide: {
  49725. height: math.unit(0.30556998307, "feet"),
  49726. name: "Breasts (Side)",
  49727. image: {
  49728. source: "./media/characters/jess/breasts-side.svg"
  49729. }
  49730. },
  49731. heartFront: {
  49732. height: math.unit(0.53011022622, "feet"),
  49733. name: "Heart (Front)",
  49734. image: {
  49735. source: "./media/characters/jess/heart-front.svg"
  49736. }
  49737. },
  49738. heartSide: {
  49739. height: math.unit(0.51790695213, "feet"),
  49740. name: "Heart (Side)",
  49741. image: {
  49742. source: "./media/characters/jess/heart-side.svg"
  49743. }
  49744. },
  49745. earsAndNoseFront: {
  49746. height: math.unit(0.29385483995, "feet"),
  49747. name: "Ears and Nose (Front)",
  49748. image: {
  49749. source: "./media/characters/jess/ears-and-nose-front.svg"
  49750. }
  49751. },
  49752. earsAndNoseSide: {
  49753. height: math.unit(0.18109658741, "feet"),
  49754. name: "Ears and Nose (Side)",
  49755. image: {
  49756. source: "./media/characters/jess/ears-and-nose-side.svg"
  49757. }
  49758. },
  49759. },
  49760. [
  49761. {
  49762. name: "Normal",
  49763. height: math.unit(5 + 8/12, "feet"),
  49764. default: true
  49765. },
  49766. ]
  49767. ))
  49768. characterMakers.push(() => makeCharacter(
  49769. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49770. {
  49771. front: {
  49772. height: math.unit(6, "feet"),
  49773. weight: math.unit(6.64467e-7, "grams"),
  49774. name: "Front",
  49775. image: {
  49776. source: "./media/characters/wimpering/front.svg",
  49777. extra: 597/587,
  49778. bottom: 34/631
  49779. }
  49780. },
  49781. },
  49782. [
  49783. {
  49784. name: "Micro",
  49785. height: math.unit(0.4, "mm"),
  49786. default: true
  49787. },
  49788. ]
  49789. ))
  49790. characterMakers.push(() => makeCharacter(
  49791. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49792. {
  49793. front: {
  49794. height: math.unit(5 + 2/12, "feet"),
  49795. weight: math.unit(110, "lb"),
  49796. name: "Front",
  49797. image: {
  49798. source: "./media/characters/keltre/front.svg",
  49799. extra: 1099/1057,
  49800. bottom: 22/1121
  49801. }
  49802. },
  49803. back: {
  49804. height: math.unit(5 + 2/12, "feet"),
  49805. weight: math.unit(110, "lb"),
  49806. name: "Back",
  49807. image: {
  49808. source: "./media/characters/keltre/back.svg",
  49809. extra: 1095/1053,
  49810. bottom: 17/1112
  49811. }
  49812. },
  49813. dressed: {
  49814. height: math.unit(5 + 2/12, "feet"),
  49815. weight: math.unit(110, "lb"),
  49816. name: "Dressed",
  49817. image: {
  49818. source: "./media/characters/keltre/dressed.svg",
  49819. extra: 1099/1057,
  49820. bottom: 22/1121
  49821. }
  49822. },
  49823. winter: {
  49824. height: math.unit(5 + 2/12, "feet"),
  49825. weight: math.unit(110, "lb"),
  49826. name: "Winter",
  49827. image: {
  49828. source: "./media/characters/keltre/winter.svg",
  49829. extra: 1099/1057,
  49830. bottom: 22/1121
  49831. }
  49832. },
  49833. head: {
  49834. height: math.unit(1.61 * 0.86, "feet"),
  49835. name: "Head",
  49836. image: {
  49837. source: "./media/characters/keltre/head.svg",
  49838. extra: 534/421,
  49839. bottom: 0/534
  49840. }
  49841. },
  49842. hand: {
  49843. height: math.unit(1.3 * 0.86, "feet"),
  49844. name: "Hand",
  49845. image: {
  49846. source: "./media/characters/keltre/hand.svg"
  49847. }
  49848. },
  49849. foot: {
  49850. height: math.unit(1.8 * 0.86, "feet"),
  49851. name: "Foot",
  49852. image: {
  49853. source: "./media/characters/keltre/foot.svg"
  49854. }
  49855. },
  49856. },
  49857. [
  49858. {
  49859. name: "Fine",
  49860. height: math.unit(1, "inch")
  49861. },
  49862. {
  49863. name: "Dimnutive",
  49864. height: math.unit(4, "inches")
  49865. },
  49866. {
  49867. name: "Tiny",
  49868. height: math.unit(1, "foot")
  49869. },
  49870. {
  49871. name: "Small",
  49872. height: math.unit(3, "feet")
  49873. },
  49874. {
  49875. name: "Normal",
  49876. height: math.unit(5 + 2/12, "feet"),
  49877. default: true
  49878. },
  49879. ]
  49880. ))
  49881. characterMakers.push(() => makeCharacter(
  49882. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49883. {
  49884. front: {
  49885. height: math.unit(6 + 2/12, "feet"),
  49886. name: "Front",
  49887. image: {
  49888. source: "./media/characters/nox/front.svg",
  49889. extra: 1917/1830,
  49890. bottom: 74/1991
  49891. }
  49892. },
  49893. back: {
  49894. height: math.unit(6 + 2/12, "feet"),
  49895. name: "Back",
  49896. image: {
  49897. source: "./media/characters/nox/back.svg",
  49898. extra: 1896/1815,
  49899. bottom: 21/1917
  49900. }
  49901. },
  49902. head: {
  49903. height: math.unit(1.1, "feet"),
  49904. name: "Head",
  49905. image: {
  49906. source: "./media/characters/nox/head.svg",
  49907. extra: 874/704,
  49908. bottom: 0/874
  49909. }
  49910. },
  49911. tattoo: {
  49912. height: math.unit(0.729, "feet"),
  49913. name: "Tattoo",
  49914. image: {
  49915. source: "./media/characters/nox/tattoo.svg"
  49916. }
  49917. },
  49918. },
  49919. [
  49920. {
  49921. name: "Normal",
  49922. height: math.unit(6 + 2/12, "feet")
  49923. },
  49924. {
  49925. name: "Gigamacro",
  49926. height: math.unit(2, "earths"),
  49927. default: true
  49928. },
  49929. {
  49930. name: "Cosmic",
  49931. height: math.unit(867, "yottameters")
  49932. },
  49933. ]
  49934. ))
  49935. characterMakers.push(() => makeCharacter(
  49936. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49937. {
  49938. front: {
  49939. height: math.unit(6, "feet"),
  49940. weight: math.unit(150, "lb"),
  49941. name: "Front",
  49942. image: {
  49943. source: "./media/characters/caspian/front.svg",
  49944. extra: 1443/1359,
  49945. bottom: 0/1443
  49946. }
  49947. },
  49948. back: {
  49949. height: math.unit(6, "feet"),
  49950. weight: math.unit(150, "lb"),
  49951. name: "Back",
  49952. image: {
  49953. source: "./media/characters/caspian/back.svg",
  49954. extra: 1379/1309,
  49955. bottom: 0/1379
  49956. }
  49957. },
  49958. head: {
  49959. height: math.unit(0.9, "feet"),
  49960. name: "Head",
  49961. image: {
  49962. source: "./media/characters/caspian/head.svg",
  49963. extra: 692/492,
  49964. bottom: 0/692
  49965. }
  49966. },
  49967. headAlt: {
  49968. height: math.unit(0.95, "feet"),
  49969. name: "Head (Alt)",
  49970. image: {
  49971. source: "./media/characters/caspian/head-alt.svg",
  49972. extra: 668/508,
  49973. bottom: 0/668
  49974. }
  49975. },
  49976. hand: {
  49977. height: math.unit(0.8, "feet"),
  49978. name: "Hand",
  49979. image: {
  49980. source: "./media/characters/caspian/hand.svg"
  49981. }
  49982. },
  49983. paw: {
  49984. height: math.unit(0.95, "feet"),
  49985. name: "Paw",
  49986. image: {
  49987. source: "./media/characters/caspian/paw.svg"
  49988. }
  49989. },
  49990. },
  49991. [
  49992. {
  49993. name: "Normal",
  49994. height: math.unit(162, "feet"),
  49995. default: true
  49996. },
  49997. ]
  49998. ))
  49999. characterMakers.push(() => makeCharacter(
  50000. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50001. {
  50002. front: {
  50003. height: math.unit(6, "feet"),
  50004. name: "Front",
  50005. image: {
  50006. source: "./media/characters/myra-aisling/front.svg",
  50007. extra: 1268/1166,
  50008. bottom: 73/1341
  50009. }
  50010. },
  50011. back: {
  50012. height: math.unit(6, "feet"),
  50013. name: "Back",
  50014. image: {
  50015. source: "./media/characters/myra-aisling/back.svg",
  50016. extra: 1249/1149,
  50017. bottom: 79/1328
  50018. }
  50019. },
  50020. dressed: {
  50021. height: math.unit(6, "feet"),
  50022. name: "Dressed",
  50023. image: {
  50024. source: "./media/characters/myra-aisling/dressed.svg",
  50025. extra: 1290/1189,
  50026. bottom: 47/1337
  50027. }
  50028. },
  50029. hand: {
  50030. height: math.unit(1.1, "feet"),
  50031. name: "Hand",
  50032. image: {
  50033. source: "./media/characters/myra-aisling/hand.svg"
  50034. }
  50035. },
  50036. paw: {
  50037. height: math.unit(1.23, "feet"),
  50038. name: "Paw",
  50039. image: {
  50040. source: "./media/characters/myra-aisling/paw.svg"
  50041. }
  50042. },
  50043. },
  50044. [
  50045. {
  50046. name: "Normal",
  50047. height: math.unit(160, "feet"),
  50048. default: true
  50049. },
  50050. ]
  50051. ))
  50052. characterMakers.push(() => makeCharacter(
  50053. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50054. {
  50055. front: {
  50056. height: math.unit(6, "feet"),
  50057. name: "Front",
  50058. image: {
  50059. source: "./media/characters/tenley-sidero/front.svg",
  50060. extra: 1365/1276,
  50061. bottom: 47/1412
  50062. }
  50063. },
  50064. back: {
  50065. height: math.unit(6, "feet"),
  50066. name: "Back",
  50067. image: {
  50068. source: "./media/characters/tenley-sidero/back.svg",
  50069. extra: 1383/1283,
  50070. bottom: 35/1418
  50071. }
  50072. },
  50073. dressed: {
  50074. height: math.unit(6, "feet"),
  50075. name: "Dressed",
  50076. image: {
  50077. source: "./media/characters/tenley-sidero/dressed.svg",
  50078. extra: 1364/1275,
  50079. bottom: 42/1406
  50080. }
  50081. },
  50082. head: {
  50083. height: math.unit(1.47, "feet"),
  50084. name: "Head",
  50085. image: {
  50086. source: "./media/characters/tenley-sidero/head.svg",
  50087. extra: 610/490,
  50088. bottom: 0/610
  50089. }
  50090. },
  50091. },
  50092. [
  50093. {
  50094. name: "Normal",
  50095. height: math.unit(154, "feet"),
  50096. default: true
  50097. },
  50098. ]
  50099. ))
  50100. characterMakers.push(() => makeCharacter(
  50101. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50102. {
  50103. front: {
  50104. height: math.unit(5, "inches"),
  50105. name: "Front",
  50106. image: {
  50107. source: "./media/characters/mallory/front.svg",
  50108. extra: 1919/1678,
  50109. bottom: 29/1948
  50110. }
  50111. },
  50112. hand: {
  50113. height: math.unit(0.73, "inches"),
  50114. name: "Hand",
  50115. image: {
  50116. source: "./media/characters/mallory/hand.svg"
  50117. }
  50118. },
  50119. paw: {
  50120. height: math.unit(0.68, "inches"),
  50121. name: "Paw",
  50122. image: {
  50123. source: "./media/characters/mallory/paw.svg"
  50124. }
  50125. },
  50126. },
  50127. [
  50128. {
  50129. name: "Small",
  50130. height: math.unit(5, "inches"),
  50131. default: true
  50132. },
  50133. ]
  50134. ))
  50135. characterMakers.push(() => makeCharacter(
  50136. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50137. {
  50138. naked: {
  50139. height: math.unit(6, "feet"),
  50140. name: "Naked",
  50141. image: {
  50142. source: "./media/characters/mab/naked.svg",
  50143. extra: 1855/1757,
  50144. bottom: 208/2063
  50145. }
  50146. },
  50147. outside: {
  50148. height: math.unit(6, "feet"),
  50149. name: "Outside",
  50150. image: {
  50151. source: "./media/characters/mab/outside.svg",
  50152. extra: 1855/1757,
  50153. bottom: 208/2063
  50154. }
  50155. },
  50156. party: {
  50157. height: math.unit(6, "feet"),
  50158. name: "Party",
  50159. image: {
  50160. source: "./media/characters/mab/party.svg",
  50161. extra: 1855/1757,
  50162. bottom: 208/2063
  50163. }
  50164. },
  50165. },
  50166. [
  50167. {
  50168. name: "Normal",
  50169. height: math.unit(165, "feet"),
  50170. default: true
  50171. },
  50172. ]
  50173. ))
  50174. characterMakers.push(() => makeCharacter(
  50175. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50176. {
  50177. feral: {
  50178. height: math.unit(12, "feet"),
  50179. weight: math.unit(20000, "lb"),
  50180. name: "Side",
  50181. image: {
  50182. source: "./media/characters/winter/feral.svg",
  50183. extra: 1286/943,
  50184. bottom: 112/1398
  50185. },
  50186. form: "feral",
  50187. default: true
  50188. },
  50189. feralNsfw: {
  50190. height: math.unit(12, "feet"),
  50191. weight: math.unit(20000, "lb"),
  50192. name: "Side (NSFW)",
  50193. image: {
  50194. source: "./media/characters/winter/feral-nsfw.svg",
  50195. extra: 1286/943,
  50196. bottom: 112/1398
  50197. },
  50198. form: "feral"
  50199. },
  50200. dick: {
  50201. height: math.unit(3.79, "feet"),
  50202. name: "Dick",
  50203. image: {
  50204. source: "./media/characters/winter/dick.svg"
  50205. },
  50206. form: "feral"
  50207. },
  50208. anthro: {
  50209. height: math.unit(12, "feet"),
  50210. weight: math.unit(10, "tons"),
  50211. name: "Anthro",
  50212. image: {
  50213. source: "./media/characters/winter/anthro.svg",
  50214. extra: 1701/1553,
  50215. bottom: 64/1765
  50216. },
  50217. form: "anthro",
  50218. default: true
  50219. },
  50220. },
  50221. [
  50222. {
  50223. name: "Big",
  50224. height: math.unit(12, "feet"),
  50225. default: true,
  50226. form: "feral"
  50227. },
  50228. {
  50229. name: "Big",
  50230. height: math.unit(12, "feet"),
  50231. default: true,
  50232. form: "anthro"
  50233. },
  50234. ],
  50235. {
  50236. "feral": {
  50237. name: "Feral",
  50238. default: true
  50239. },
  50240. "anthro": {
  50241. name: "Anthro"
  50242. }
  50243. }
  50244. ))
  50245. characterMakers.push(() => makeCharacter(
  50246. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50247. {
  50248. front: {
  50249. height: math.unit(4.1, "inches"),
  50250. name: "Front",
  50251. image: {
  50252. source: "./media/characters/alto/front.svg",
  50253. extra: 736/627,
  50254. bottom: 90/826
  50255. }
  50256. },
  50257. },
  50258. [
  50259. {
  50260. name: "Normal",
  50261. height: math.unit(4.1, "inches"),
  50262. default: true
  50263. },
  50264. ]
  50265. ))
  50266. characterMakers.push(() => makeCharacter(
  50267. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50268. {
  50269. sitting: {
  50270. height: math.unit(3, "feet"),
  50271. name: "Sitting",
  50272. image: {
  50273. source: "./media/characters/ratstrid-v/sitting.svg",
  50274. extra: 355/310,
  50275. bottom: 136/491
  50276. }
  50277. },
  50278. },
  50279. [
  50280. {
  50281. name: "Normal",
  50282. height: math.unit(3, "feet"),
  50283. default: true
  50284. },
  50285. ]
  50286. ))
  50287. characterMakers.push(() => makeCharacter(
  50288. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50289. {
  50290. back: {
  50291. height: math.unit(6, "feet"),
  50292. weight: math.unit(450, "lb"),
  50293. name: "Back",
  50294. image: {
  50295. source: "./media/characters/siz/back.svg",
  50296. extra: 1449/1274,
  50297. bottom: 13/1462
  50298. }
  50299. },
  50300. },
  50301. [
  50302. {
  50303. name: "Smallest",
  50304. height: math.unit(18 + 3/12, "feet")
  50305. },
  50306. {
  50307. name: "Modest",
  50308. height: math.unit(56 + 8/12, "feet"),
  50309. default: true
  50310. },
  50311. {
  50312. name: "Largest",
  50313. height: math.unit(3590, "feet")
  50314. },
  50315. ]
  50316. ))
  50317. characterMakers.push(() => makeCharacter(
  50318. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50319. {
  50320. front: {
  50321. height: math.unit(5 + 9/12, "feet"),
  50322. weight: math.unit(150, "lb"),
  50323. name: "Front",
  50324. image: {
  50325. source: "./media/characters/ven/front.svg",
  50326. extra: 1372/1320,
  50327. bottom: 73/1445
  50328. }
  50329. },
  50330. side: {
  50331. height: math.unit(5 + 9/12, "feet"),
  50332. weight: math.unit(1150, "lb"),
  50333. name: "Side",
  50334. image: {
  50335. source: "./media/characters/ven/side.svg",
  50336. extra: 1119/1070,
  50337. bottom: 42/1161
  50338. },
  50339. default: true
  50340. },
  50341. },
  50342. [
  50343. {
  50344. name: "Normal",
  50345. height: math.unit(5 + 9/12, "feet"),
  50346. default: true
  50347. },
  50348. ]
  50349. ))
  50350. characterMakers.push(() => makeCharacter(
  50351. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50352. {
  50353. front: {
  50354. height: math.unit(12, "feet"),
  50355. weight: math.unit(1000, "kg"),
  50356. name: "Front",
  50357. image: {
  50358. source: "./media/characters/maple/front.svg",
  50359. extra: 1193/1081,
  50360. bottom: 22/1215
  50361. }
  50362. },
  50363. },
  50364. [
  50365. {
  50366. name: "Compressed",
  50367. height: math.unit(7, "feet")
  50368. },
  50369. {
  50370. name: "Normal",
  50371. height: math.unit(12, "feet"),
  50372. default: true
  50373. },
  50374. ]
  50375. ))
  50376. characterMakers.push(() => makeCharacter(
  50377. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50378. {
  50379. front: {
  50380. height: math.unit(9, "feet"),
  50381. weight: math.unit(1500, "lb"),
  50382. name: "Front",
  50383. image: {
  50384. source: "./media/characters/nora/front.svg",
  50385. extra: 1348/1286,
  50386. bottom: 218/1566
  50387. }
  50388. },
  50389. erect: {
  50390. height: math.unit(9, "feet"),
  50391. weight: math.unit(11500, "lb"),
  50392. name: "Erect",
  50393. image: {
  50394. source: "./media/characters/nora/erect.svg",
  50395. extra: 1488/1433,
  50396. bottom: 133/1621
  50397. }
  50398. },
  50399. },
  50400. [
  50401. {
  50402. name: "Normal",
  50403. height: math.unit(9, "feet"),
  50404. default: true
  50405. },
  50406. ]
  50407. ))
  50408. characterMakers.push(() => makeCharacter(
  50409. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50410. {
  50411. front: {
  50412. height: math.unit(25, "feet"),
  50413. weight: math.unit(27500, "lb"),
  50414. name: "Front",
  50415. image: {
  50416. source: "./media/characters/north-caudin/front.svg",
  50417. extra: 1184/1082,
  50418. bottom: 23/1207
  50419. }
  50420. },
  50421. },
  50422. [
  50423. {
  50424. name: "Compressed",
  50425. height: math.unit(10, "feet")
  50426. },
  50427. {
  50428. name: "Normal",
  50429. height: math.unit(25, "feet"),
  50430. default: true
  50431. },
  50432. ]
  50433. ))
  50434. characterMakers.push(() => makeCharacter(
  50435. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50436. {
  50437. front: {
  50438. height: math.unit(9, "feet"),
  50439. weight: math.unit(1250, "lb"),
  50440. name: "Front",
  50441. image: {
  50442. source: "./media/characters/merrian/front.svg",
  50443. extra: 2393/2304,
  50444. bottom: 40/2433
  50445. }
  50446. },
  50447. },
  50448. [
  50449. {
  50450. name: "Normal",
  50451. height: math.unit(9, "feet"),
  50452. default: true
  50453. },
  50454. ]
  50455. ))
  50456. characterMakers.push(() => makeCharacter(
  50457. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50458. {
  50459. front: {
  50460. height: math.unit(9, "feet"),
  50461. weight: math.unit(1000, "lb"),
  50462. name: "Front",
  50463. image: {
  50464. source: "./media/characters/hazel/front.svg",
  50465. extra: 2351/2298,
  50466. bottom: 38/2389
  50467. }
  50468. },
  50469. },
  50470. [
  50471. {
  50472. name: "Normal",
  50473. height: math.unit(9, "feet"),
  50474. default: true
  50475. },
  50476. ]
  50477. ))
  50478. characterMakers.push(() => makeCharacter(
  50479. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50480. {
  50481. front: {
  50482. height: math.unit(13, "feet"),
  50483. weight: math.unit(3200, "lb"),
  50484. name: "Front",
  50485. image: {
  50486. source: "./media/characters/emma/front.svg",
  50487. extra: 2263/2029,
  50488. bottom: 68/2331
  50489. }
  50490. },
  50491. },
  50492. [
  50493. {
  50494. name: "Normal",
  50495. height: math.unit(13, "feet"),
  50496. default: true
  50497. },
  50498. ]
  50499. ))
  50500. characterMakers.push(() => makeCharacter(
  50501. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50502. {
  50503. front: {
  50504. height: math.unit(11 + 9/12, "feet"),
  50505. weight: math.unit(2500, "lb"),
  50506. name: "Front",
  50507. image: {
  50508. source: "./media/characters/ilumina/front.svg",
  50509. extra: 2248/2209,
  50510. bottom: 164/2412
  50511. }
  50512. },
  50513. },
  50514. [
  50515. {
  50516. name: "Normal",
  50517. height: math.unit(11 + 9/12, "feet"),
  50518. default: true
  50519. },
  50520. ]
  50521. ))
  50522. characterMakers.push(() => makeCharacter(
  50523. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50524. {
  50525. front: {
  50526. height: math.unit(8 + 10/12, "feet"),
  50527. weight: math.unit(1350, "lb"),
  50528. name: "Front",
  50529. image: {
  50530. source: "./media/characters/moonshine/front.svg",
  50531. extra: 2395/2288,
  50532. bottom: 40/2435
  50533. }
  50534. },
  50535. },
  50536. [
  50537. {
  50538. name: "Normal",
  50539. height: math.unit(8 + 10/12, "feet"),
  50540. default: true
  50541. },
  50542. ]
  50543. ))
  50544. characterMakers.push(() => makeCharacter(
  50545. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50546. {
  50547. front: {
  50548. height: math.unit(14, "feet"),
  50549. weight: math.unit(3400, "lb"),
  50550. name: "Front",
  50551. image: {
  50552. source: "./media/characters/aletia/front.svg",
  50553. extra: 1185/1052,
  50554. bottom: 21/1206
  50555. }
  50556. },
  50557. },
  50558. [
  50559. {
  50560. name: "Compressed",
  50561. height: math.unit(8, "feet")
  50562. },
  50563. {
  50564. name: "Normal",
  50565. height: math.unit(14, "feet"),
  50566. default: true
  50567. },
  50568. ]
  50569. ))
  50570. characterMakers.push(() => makeCharacter(
  50571. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50572. {
  50573. front: {
  50574. height: math.unit(17, "feet"),
  50575. weight: math.unit(6500, "lb"),
  50576. name: "Front",
  50577. image: {
  50578. source: "./media/characters/deidra/front.svg",
  50579. extra: 1201/1081,
  50580. bottom: 16/1217
  50581. }
  50582. },
  50583. },
  50584. [
  50585. {
  50586. name: "Compressed",
  50587. height: math.unit(9 + 6/12, "feet")
  50588. },
  50589. {
  50590. name: "Normal",
  50591. height: math.unit(17, "feet"),
  50592. default: true
  50593. },
  50594. ]
  50595. ))
  50596. characterMakers.push(() => makeCharacter(
  50597. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50598. {
  50599. front: {
  50600. height: math.unit(7 + 4/12, "feet"),
  50601. weight: math.unit(280, "lb"),
  50602. name: "Front",
  50603. image: {
  50604. source: "./media/characters/freki-yrmori/front.svg",
  50605. extra: 1286/1182,
  50606. bottom: 29/1315
  50607. }
  50608. },
  50609. maw: {
  50610. height: math.unit(0.9, "feet"),
  50611. name: "Maw",
  50612. image: {
  50613. source: "./media/characters/freki-yrmori/maw.svg"
  50614. }
  50615. },
  50616. },
  50617. [
  50618. {
  50619. name: "Normal",
  50620. height: math.unit(7 + 4/12, "feet"),
  50621. default: true
  50622. },
  50623. {
  50624. name: "Macro",
  50625. height: math.unit(38.5, "meters")
  50626. },
  50627. ]
  50628. ))
  50629. characterMakers.push(() => makeCharacter(
  50630. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50631. {
  50632. side: {
  50633. height: math.unit(47.2, "meters"),
  50634. weight: math.unit(10000, "tons"),
  50635. name: "Side",
  50636. image: {
  50637. source: "./media/characters/aetherios/side.svg",
  50638. extra: 2363/642,
  50639. bottom: 221/2584
  50640. }
  50641. },
  50642. top: {
  50643. height: math.unit(240, "meters"),
  50644. weight: math.unit(10000, "tons"),
  50645. name: "Top",
  50646. image: {
  50647. source: "./media/characters/aetherios/top.svg"
  50648. }
  50649. },
  50650. bottom: {
  50651. height: math.unit(240, "meters"),
  50652. weight: math.unit(10000, "tons"),
  50653. name: "Bottom",
  50654. image: {
  50655. source: "./media/characters/aetherios/bottom.svg"
  50656. }
  50657. },
  50658. head: {
  50659. height: math.unit(38.6, "meters"),
  50660. name: "Head",
  50661. image: {
  50662. source: "./media/characters/aetherios/head.svg",
  50663. extra: 1335/1112,
  50664. bottom: 0/1335
  50665. }
  50666. },
  50667. front: {
  50668. height: math.unit(29, "meters"),
  50669. name: "Front",
  50670. image: {
  50671. source: "./media/characters/aetherios/front.svg",
  50672. extra: 1266/953,
  50673. bottom: 158/1424
  50674. }
  50675. },
  50676. maw: {
  50677. height: math.unit(16.37, "meters"),
  50678. name: "Maw",
  50679. image: {
  50680. source: "./media/characters/aetherios/maw.svg",
  50681. extra: 748/637,
  50682. bottom: 0/748
  50683. },
  50684. extraAttributes: {
  50685. preyCapacity: {
  50686. name: "Capacity",
  50687. power: 3,
  50688. type: "volume",
  50689. base: math.unit(1000, "people")
  50690. },
  50691. tongueSize: {
  50692. name: "Tongue Size",
  50693. power: 2,
  50694. type: "area",
  50695. base: math.unit(21, "m^2")
  50696. }
  50697. }
  50698. },
  50699. forepaw: {
  50700. height: math.unit(18, "meters"),
  50701. name: "Forepaw",
  50702. image: {
  50703. source: "./media/characters/aetherios/forepaw.svg"
  50704. }
  50705. },
  50706. hindpaw: {
  50707. height: math.unit(23, "meters"),
  50708. name: "Hindpaw",
  50709. image: {
  50710. source: "./media/characters/aetherios/hindpaw.svg"
  50711. }
  50712. },
  50713. genitals: {
  50714. height: math.unit(42, "meters"),
  50715. name: "Genitals",
  50716. image: {
  50717. source: "./media/characters/aetherios/genitals.svg"
  50718. }
  50719. },
  50720. },
  50721. [
  50722. {
  50723. name: "Normal",
  50724. height: math.unit(47.2, "meters"),
  50725. default: true
  50726. },
  50727. {
  50728. name: "Macro",
  50729. height: math.unit(160, "meters")
  50730. },
  50731. {
  50732. name: "Mega",
  50733. height: math.unit(1.87, "km")
  50734. },
  50735. {
  50736. name: "Giga",
  50737. height: math.unit(40000, "km")
  50738. },
  50739. {
  50740. name: "Stellar",
  50741. height: math.unit(158000000, "km")
  50742. },
  50743. {
  50744. name: "Cosmic",
  50745. height: math.unit(9.46e12, "km")
  50746. },
  50747. ]
  50748. ))
  50749. characterMakers.push(() => makeCharacter(
  50750. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50751. {
  50752. front: {
  50753. height: math.unit(5 + 4/12, "feet"),
  50754. weight: math.unit(80, "lb"),
  50755. name: "Front",
  50756. image: {
  50757. source: "./media/characters/mizu-gieeg/front.svg",
  50758. extra: 850/709,
  50759. bottom: 52/902
  50760. }
  50761. },
  50762. back: {
  50763. height: math.unit(5 + 4/12, "feet"),
  50764. weight: math.unit(80, "lb"),
  50765. name: "Back",
  50766. image: {
  50767. source: "./media/characters/mizu-gieeg/back.svg",
  50768. extra: 882/745,
  50769. bottom: 25/907
  50770. }
  50771. },
  50772. },
  50773. [
  50774. {
  50775. name: "Normal",
  50776. height: math.unit(5 + 4/12, "feet"),
  50777. default: true
  50778. },
  50779. ]
  50780. ))
  50781. characterMakers.push(() => makeCharacter(
  50782. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50783. {
  50784. front: {
  50785. height: math.unit(6, "feet"),
  50786. name: "Front",
  50787. image: {
  50788. source: "./media/characters/roselle-st-papier/front.svg",
  50789. extra: 1430/1280,
  50790. bottom: 37/1467
  50791. }
  50792. },
  50793. back: {
  50794. height: math.unit(6, "feet"),
  50795. name: "Back",
  50796. image: {
  50797. source: "./media/characters/roselle-st-papier/back.svg",
  50798. extra: 1491/1296,
  50799. bottom: 23/1514
  50800. }
  50801. },
  50802. ear: {
  50803. height: math.unit(1.26, "feet"),
  50804. name: "Ear",
  50805. image: {
  50806. source: "./media/characters/roselle-st-papier/ear.svg"
  50807. }
  50808. },
  50809. },
  50810. [
  50811. {
  50812. name: "Normal",
  50813. height: math.unit(150, "feet"),
  50814. default: true
  50815. },
  50816. ]
  50817. ))
  50818. characterMakers.push(() => makeCharacter(
  50819. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50820. {
  50821. front: {
  50822. height: math.unit(1, "inches"),
  50823. name: "Front",
  50824. image: {
  50825. source: "./media/characters/valargent/front.svg",
  50826. extra: 1825/1694,
  50827. bottom: 62/1887
  50828. }
  50829. },
  50830. back: {
  50831. height: math.unit(1, "inches"),
  50832. name: "Back",
  50833. image: {
  50834. source: "./media/characters/valargent/back.svg",
  50835. extra: 1775/1682,
  50836. bottom: 88/1863
  50837. }
  50838. },
  50839. },
  50840. [
  50841. {
  50842. name: "Micro",
  50843. height: math.unit(1, "inch"),
  50844. default: true
  50845. },
  50846. ]
  50847. ))
  50848. characterMakers.push(() => makeCharacter(
  50849. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50850. {
  50851. front: {
  50852. height: math.unit(3.4, "meters"),
  50853. name: "Front",
  50854. image: {
  50855. source: "./media/characters/zarina/front.svg",
  50856. extra: 1733/1425,
  50857. bottom: 93/1826
  50858. }
  50859. },
  50860. squatting: {
  50861. height: math.unit(2.14, "meters"),
  50862. name: "Squatting",
  50863. image: {
  50864. source: "./media/characters/zarina/squatting.svg",
  50865. extra: 1073/788,
  50866. bottom: 63/1136
  50867. }
  50868. },
  50869. back: {
  50870. height: math.unit(2.14, "meters"),
  50871. name: "Back",
  50872. image: {
  50873. source: "./media/characters/zarina/back.svg",
  50874. extra: 1128/885,
  50875. bottom: 0/1128
  50876. }
  50877. },
  50878. },
  50879. [
  50880. {
  50881. name: "Normal",
  50882. height: math.unit(3.4, "meters"),
  50883. default: true
  50884. },
  50885. {
  50886. name: "Big",
  50887. height: math.unit(5, "meters")
  50888. },
  50889. {
  50890. name: "Macro",
  50891. height: math.unit(110, "meters")
  50892. },
  50893. ]
  50894. ))
  50895. characterMakers.push(() => makeCharacter(
  50896. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50897. {
  50898. front: {
  50899. height: math.unit(7, "feet"),
  50900. name: "Front",
  50901. image: {
  50902. source: "./media/characters/ventus-astro-fox/front.svg",
  50903. extra: 1792/1623,
  50904. bottom: 28/1820
  50905. }
  50906. },
  50907. back: {
  50908. height: math.unit(7, "feet"),
  50909. name: "Back",
  50910. image: {
  50911. source: "./media/characters/ventus-astro-fox/back.svg",
  50912. extra: 1789/1620,
  50913. bottom: 31/1820
  50914. }
  50915. },
  50916. outfit: {
  50917. height: math.unit(7, "feet"),
  50918. name: "Outfit",
  50919. image: {
  50920. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50921. extra: 1054/925,
  50922. bottom: 15/1069
  50923. }
  50924. },
  50925. head: {
  50926. height: math.unit(1.12, "feet"),
  50927. name: "Head",
  50928. image: {
  50929. source: "./media/characters/ventus-astro-fox/head.svg",
  50930. extra: 866/504,
  50931. bottom: 0/866
  50932. }
  50933. },
  50934. hand: {
  50935. height: math.unit(1, "feet"),
  50936. name: "Hand",
  50937. image: {
  50938. source: "./media/characters/ventus-astro-fox/hand.svg"
  50939. }
  50940. },
  50941. paw: {
  50942. height: math.unit(1.5, "feet"),
  50943. name: "Paw",
  50944. image: {
  50945. source: "./media/characters/ventus-astro-fox/paw.svg"
  50946. }
  50947. },
  50948. },
  50949. [
  50950. {
  50951. name: "Normal",
  50952. height: math.unit(7, "feet"),
  50953. default: true
  50954. },
  50955. {
  50956. name: "Macro",
  50957. height: math.unit(200, "feet")
  50958. },
  50959. {
  50960. name: "Cosmic",
  50961. height: math.unit(3, "universes")
  50962. },
  50963. ]
  50964. ))
  50965. characterMakers.push(() => makeCharacter(
  50966. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50967. {
  50968. front: {
  50969. height: math.unit(3, "meters"),
  50970. weight: math.unit(7000, "lb"),
  50971. name: "Front",
  50972. image: {
  50973. source: "./media/characters/core-t/front.svg",
  50974. extra: 5729/4941,
  50975. bottom: 1129/6858
  50976. }
  50977. },
  50978. },
  50979. [
  50980. {
  50981. name: "Big",
  50982. height: math.unit(3, "meters"),
  50983. default: true
  50984. },
  50985. ]
  50986. ))
  50987. characterMakers.push(() => makeCharacter(
  50988. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50989. {
  50990. normal: {
  50991. height: math.unit(6 + 6/12, "feet"),
  50992. weight: math.unit(275, "lb"),
  50993. name: "Front",
  50994. image: {
  50995. source: "./media/characters/cadbunny/normal.svg",
  50996. extra: 1129/947,
  50997. bottom: 93/1222
  50998. },
  50999. default: true,
  51000. form: "normal"
  51001. },
  51002. gigantamax: {
  51003. height: math.unit(26, "feet"),
  51004. weight: math.unit(16000, "lb"),
  51005. name: "Front",
  51006. image: {
  51007. source: "./media/characters/cadbunny/gigantamax.svg",
  51008. extra: 1133/944,
  51009. bottom: 90/1223
  51010. },
  51011. default: true,
  51012. form: "gigantamax"
  51013. },
  51014. },
  51015. [
  51016. {
  51017. name: "Normal",
  51018. height: math.unit(6 + 6/12, "feet"),
  51019. default: true,
  51020. form: "normal"
  51021. },
  51022. {
  51023. name: "Small",
  51024. height: math.unit(26, "feet"),
  51025. default: true,
  51026. form: "gigantamax"
  51027. },
  51028. {
  51029. name: "Large",
  51030. height: math.unit(78, "feet"),
  51031. form: "gigantamax"
  51032. },
  51033. ],
  51034. {
  51035. "normal": {
  51036. name: "Normal",
  51037. default: true
  51038. },
  51039. "gigantamax": {
  51040. name: "Gigantamax"
  51041. }
  51042. }
  51043. ))
  51044. characterMakers.push(() => makeCharacter(
  51045. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51046. {
  51047. anthroFront: {
  51048. height: math.unit(8, "feet"),
  51049. weight: math.unit(300, "lb"),
  51050. name: "Front",
  51051. image: {
  51052. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51053. extra: 1272/1176,
  51054. bottom: 53/1325
  51055. },
  51056. form: "anthro",
  51057. default: true
  51058. },
  51059. feralSide: {
  51060. height: math.unit(4, "feet"),
  51061. weight: math.unit(250, "lb"),
  51062. name: "Side",
  51063. image: {
  51064. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51065. extra: 731/621,
  51066. bottom: 0/731
  51067. },
  51068. form: "feral",
  51069. default: true
  51070. },
  51071. },
  51072. [
  51073. {
  51074. name: "Regular",
  51075. height: math.unit(8, "feet"),
  51076. form: "anthro"
  51077. },
  51078. {
  51079. name: "Macro",
  51080. height: math.unit(250, "feet"),
  51081. form: "anthro",
  51082. default: true
  51083. },
  51084. {
  51085. name: "Regular",
  51086. height: math.unit(4, "feet"),
  51087. form: "feral"
  51088. },
  51089. {
  51090. name: "Macro",
  51091. height: math.unit(125, "feet"),
  51092. form: "feral",
  51093. default: true
  51094. },
  51095. ],
  51096. {
  51097. "anthro": {
  51098. name: "Anthro",
  51099. default: true
  51100. },
  51101. "feral": {
  51102. name: "Feral",
  51103. },
  51104. }
  51105. ))
  51106. characterMakers.push(() => makeCharacter(
  51107. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51108. {
  51109. front: {
  51110. height: math.unit(11 + 10/12, "feet"),
  51111. weight: math.unit(1587, "kg"),
  51112. name: "Front",
  51113. image: {
  51114. source: "./media/characters/maple-javira-dragon/front.svg",
  51115. extra: 1136/744,
  51116. bottom: 73/1209
  51117. }
  51118. },
  51119. side: {
  51120. height: math.unit(11 + 10/12, "feet"),
  51121. weight: math.unit(1587, "kg"),
  51122. name: "Side",
  51123. image: {
  51124. source: "./media/characters/maple-javira-dragon/side.svg",
  51125. extra: 712/505,
  51126. bottom: 17/729
  51127. }
  51128. },
  51129. head: {
  51130. height: math.unit(8.05, "feet"),
  51131. name: "Head",
  51132. image: {
  51133. source: "./media/characters/maple-javira-dragon/head.svg",
  51134. extra: 1420/1344,
  51135. bottom: 0/1420
  51136. }
  51137. },
  51138. },
  51139. [
  51140. {
  51141. name: "Normal",
  51142. height: math.unit(11 + 10/12, "feet"),
  51143. default: true
  51144. },
  51145. ]
  51146. ))
  51147. characterMakers.push(() => makeCharacter(
  51148. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51149. {
  51150. front: {
  51151. height: math.unit(117, "cm"),
  51152. weight: math.unit(50, "kg"),
  51153. name: "Front",
  51154. image: {
  51155. source: "./media/characters/sonia-wyverntail/front.svg",
  51156. extra: 708/592,
  51157. bottom: 25/733
  51158. }
  51159. },
  51160. },
  51161. [
  51162. {
  51163. name: "Normal",
  51164. height: math.unit(117, "cm"),
  51165. default: true
  51166. },
  51167. ]
  51168. ))
  51169. characterMakers.push(() => makeCharacter(
  51170. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51171. {
  51172. front: {
  51173. height: math.unit(6 + 5/12, "feet"),
  51174. name: "Front",
  51175. image: {
  51176. source: "./media/characters/micah/front.svg",
  51177. extra: 1758/1546,
  51178. bottom: 214/1972
  51179. }
  51180. },
  51181. },
  51182. [
  51183. {
  51184. name: "Normal",
  51185. height: math.unit(6 + 5/12, "feet"),
  51186. default: true
  51187. },
  51188. ]
  51189. ))
  51190. characterMakers.push(() => makeCharacter(
  51191. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51192. {
  51193. front: {
  51194. height: math.unit(1.75, "meters"),
  51195. weight: math.unit(100, "kg"),
  51196. name: "Front",
  51197. image: {
  51198. source: "./media/characters/zarya/front.svg",
  51199. extra: 741/735,
  51200. bottom: 44/785
  51201. },
  51202. extraAttributes: {
  51203. "tailLength": {
  51204. name: "Tail Length",
  51205. power: 1,
  51206. type: "length",
  51207. base: math.unit(180, "cm")
  51208. },
  51209. "pawLength": {
  51210. name: "Paw Length",
  51211. power: 1,
  51212. type: "length",
  51213. base: math.unit(31, "cm")
  51214. },
  51215. }
  51216. },
  51217. side: {
  51218. height: math.unit(1.75, "meters"),
  51219. weight: math.unit(100, "kg"),
  51220. name: "Side",
  51221. image: {
  51222. source: "./media/characters/zarya/side.svg",
  51223. extra: 776/770,
  51224. bottom: 17/793
  51225. },
  51226. extraAttributes: {
  51227. "tailLength": {
  51228. name: "Tail Length",
  51229. power: 1,
  51230. type: "length",
  51231. base: math.unit(180, "cm")
  51232. },
  51233. "pawLength": {
  51234. name: "Paw Length",
  51235. power: 1,
  51236. type: "length",
  51237. base: math.unit(31, "cm")
  51238. },
  51239. }
  51240. },
  51241. back: {
  51242. height: math.unit(1.75, "meters"),
  51243. weight: math.unit(100, "kg"),
  51244. name: "Back",
  51245. image: {
  51246. source: "./media/characters/zarya/back.svg",
  51247. extra: 741/735,
  51248. bottom: 44/785
  51249. },
  51250. extraAttributes: {
  51251. "tailLength": {
  51252. name: "Tail Length",
  51253. power: 1,
  51254. type: "length",
  51255. base: math.unit(180, "cm")
  51256. },
  51257. "pawLength": {
  51258. name: "Paw Length",
  51259. power: 1,
  51260. type: "length",
  51261. base: math.unit(31, "cm")
  51262. },
  51263. }
  51264. },
  51265. frontNoTail: {
  51266. height: math.unit(1.75, "meters"),
  51267. weight: math.unit(100, "kg"),
  51268. name: "Front (No Tail)",
  51269. image: {
  51270. source: "./media/characters/zarya/front-no-tail.svg",
  51271. extra: 741/735,
  51272. bottom: 44/785
  51273. },
  51274. extraAttributes: {
  51275. "tailLength": {
  51276. name: "Tail Length",
  51277. power: 1,
  51278. type: "length",
  51279. base: math.unit(180, "cm")
  51280. },
  51281. "pawLength": {
  51282. name: "Paw Length",
  51283. power: 1,
  51284. type: "length",
  51285. base: math.unit(31, "cm")
  51286. },
  51287. }
  51288. },
  51289. dressed: {
  51290. height: math.unit(1.75, "meters"),
  51291. weight: math.unit(100, "kg"),
  51292. name: "Dressed",
  51293. image: {
  51294. source: "./media/characters/zarya/dressed.svg",
  51295. extra: 683/672,
  51296. bottom: 79/762
  51297. },
  51298. extraAttributes: {
  51299. "tailLength": {
  51300. name: "Tail Length",
  51301. power: 1,
  51302. type: "length",
  51303. base: math.unit(180, "cm")
  51304. },
  51305. "pawLength": {
  51306. name: "Paw Length",
  51307. power: 1,
  51308. type: "length",
  51309. base: math.unit(31, "cm")
  51310. },
  51311. }
  51312. },
  51313. },
  51314. [
  51315. {
  51316. name: "Micro",
  51317. height: math.unit(5, "cm")
  51318. },
  51319. {
  51320. name: "Normal",
  51321. height: math.unit(1.75, "meters"),
  51322. default: true
  51323. },
  51324. {
  51325. name: "Macro",
  51326. height: math.unit(122, "meters")
  51327. },
  51328. ]
  51329. ))
  51330. characterMakers.push(() => makeCharacter(
  51331. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51332. {
  51333. front: {
  51334. height: math.unit(7.5, "feet"),
  51335. name: "Front",
  51336. image: {
  51337. source: "./media/characters/sven-hatisson/front.svg",
  51338. extra: 917/857,
  51339. bottom: 42/959
  51340. }
  51341. },
  51342. back: {
  51343. height: math.unit(7.5, "feet"),
  51344. name: "Back",
  51345. image: {
  51346. source: "./media/characters/sven-hatisson/back.svg",
  51347. extra: 903/856,
  51348. bottom: 15/918
  51349. }
  51350. },
  51351. },
  51352. [
  51353. {
  51354. name: "Base Height",
  51355. height: math.unit(7.5, "feet")
  51356. },
  51357. {
  51358. name: "Usual Height",
  51359. height: math.unit(13.5, "feet"),
  51360. default: true
  51361. },
  51362. {
  51363. name: "Smaller Macro",
  51364. height: math.unit(85, "feet")
  51365. },
  51366. {
  51367. name: "Moderate Macro",
  51368. height: math.unit(320, "feet")
  51369. },
  51370. {
  51371. name: "Large Macro",
  51372. height: math.unit(1000, "feet")
  51373. },
  51374. {
  51375. name: "Largest Size",
  51376. height: math.unit(2, "miles")
  51377. },
  51378. ]
  51379. ))
  51380. characterMakers.push(() => makeCharacter(
  51381. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51382. {
  51383. side: {
  51384. height: math.unit(1.8, "meters"),
  51385. weight: math.unit(275, "kg"),
  51386. name: "Side",
  51387. image: {
  51388. source: "./media/characters/terra/side.svg",
  51389. extra: 1273/1147,
  51390. bottom: 0/1273
  51391. }
  51392. },
  51393. },
  51394. [
  51395. {
  51396. name: "Normal",
  51397. height: math.unit(16.2, "meters"),
  51398. default: true
  51399. },
  51400. ]
  51401. ))
  51402. characterMakers.push(() => makeCharacter(
  51403. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51404. {
  51405. borzoiFront: {
  51406. height: math.unit(6 + 9/12, "feet"),
  51407. name: "Front",
  51408. image: {
  51409. source: "./media/characters/rae/borzoi-front.svg",
  51410. extra: 1161/1098,
  51411. bottom: 31/1192
  51412. },
  51413. form: "borzoi",
  51414. default: true
  51415. },
  51416. werewolfFront: {
  51417. height: math.unit(8 + 7/12, "feet"),
  51418. name: "Front",
  51419. image: {
  51420. source: "./media/characters/rae/werewolf-front.svg",
  51421. extra: 1411/1334,
  51422. bottom: 127/1538
  51423. },
  51424. form: "werewolf",
  51425. default: true
  51426. },
  51427. },
  51428. [
  51429. {
  51430. name: "Normal",
  51431. height: math.unit(6 + 9/12, "feet"),
  51432. default: true,
  51433. form: "borzoi"
  51434. },
  51435. {
  51436. name: "Normal",
  51437. height: math.unit(8 + 7/12, "feet"),
  51438. default: true,
  51439. form: "werewolf"
  51440. },
  51441. ],
  51442. {
  51443. "borzoi": {
  51444. name: "Borzoi",
  51445. default: true
  51446. },
  51447. "werewolf": {
  51448. name: "Werewolf",
  51449. },
  51450. }
  51451. ))
  51452. characterMakers.push(() => makeCharacter(
  51453. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51454. {
  51455. front: {
  51456. height: math.unit(8 + 7/12, "feet"),
  51457. weight: math.unit(482, "lb"),
  51458. name: "Front",
  51459. image: {
  51460. source: "./media/characters/kit/front.svg",
  51461. extra: 1247/1103,
  51462. bottom: 41/1288
  51463. }
  51464. },
  51465. back: {
  51466. height: math.unit(8 + 7/12, "feet"),
  51467. weight: math.unit(482, "lb"),
  51468. name: "Back",
  51469. image: {
  51470. source: "./media/characters/kit/back.svg",
  51471. extra: 1252/1123,
  51472. bottom: 21/1273
  51473. }
  51474. },
  51475. paw: {
  51476. height: math.unit(1.46, "feet"),
  51477. name: "Paw",
  51478. image: {
  51479. source: "./media/characters/kit/paw.svg"
  51480. }
  51481. },
  51482. },
  51483. [
  51484. {
  51485. name: "Normal",
  51486. height: math.unit(2.61, "meters"),
  51487. default: true
  51488. },
  51489. {
  51490. name: "\"Tall\"",
  51491. height: math.unit(8.21, "meters")
  51492. },
  51493. {
  51494. name: "Tall",
  51495. height: math.unit(19.6, "meters")
  51496. },
  51497. {
  51498. name: "Very Tall",
  51499. height: math.unit(57.91, "meters")
  51500. },
  51501. {
  51502. name: "Semi-Macro",
  51503. height: math.unit(138.64, "meters")
  51504. },
  51505. {
  51506. name: "Macro",
  51507. height: math.unit(831.99, "meters")
  51508. },
  51509. {
  51510. name: "EX-Macro",
  51511. height: math.unit(96451121, "meters")
  51512. },
  51513. {
  51514. name: "S1-Omnipotent",
  51515. height: math.unit(4.42074e+9, "meters")
  51516. },
  51517. {
  51518. name: "S2-Omnipotent",
  51519. height: math.unit(9.42074e+17, "meters")
  51520. },
  51521. {
  51522. name: "Omnipotent",
  51523. height: math.unit(4.23112e+24, "meters")
  51524. },
  51525. {
  51526. name: "Hypergod",
  51527. height: math.unit(5.05176e+27, "meters")
  51528. },
  51529. {
  51530. name: "Hypergod-EX",
  51531. height: math.unit(9.45532e+49, "meters")
  51532. },
  51533. {
  51534. name: "Hypergod-SP",
  51535. height: math.unit(9.45532e+195, "meters")
  51536. },
  51537. ]
  51538. ))
  51539. characterMakers.push(() => makeCharacter(
  51540. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51541. {
  51542. side: {
  51543. height: math.unit(0.6, "meters"),
  51544. weight: math.unit(24, "kg"),
  51545. name: "Side",
  51546. image: {
  51547. source: "./media/characters/celeste/side.svg",
  51548. extra: 810/517,
  51549. bottom: 53/863
  51550. }
  51551. },
  51552. },
  51553. [
  51554. {
  51555. name: "Velociraptor",
  51556. height: math.unit(0.6, "meters"),
  51557. default: true
  51558. },
  51559. {
  51560. name: "Utahraptor",
  51561. height: math.unit(1.8, "meters")
  51562. },
  51563. {
  51564. name: "Gallimimus",
  51565. height: math.unit(4.0, "meters")
  51566. },
  51567. {
  51568. name: "Large",
  51569. height: math.unit(20, "meters")
  51570. },
  51571. {
  51572. name: "Planetary",
  51573. height: math.unit(50, "megameters")
  51574. },
  51575. {
  51576. name: "Stellar",
  51577. height: math.unit(1.5, "gigameters")
  51578. },
  51579. {
  51580. name: "Galactic",
  51581. height: math.unit(100, "exameters")
  51582. },
  51583. ]
  51584. ))
  51585. characterMakers.push(() => makeCharacter(
  51586. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51587. {
  51588. front: {
  51589. height: math.unit(6, "feet"),
  51590. weight: math.unit(210, "lb"),
  51591. name: "Front",
  51592. image: {
  51593. source: "./media/characters/glacia/front.svg",
  51594. extra: 958/901,
  51595. bottom: 45/1003
  51596. }
  51597. },
  51598. },
  51599. [
  51600. {
  51601. name: "Macro",
  51602. height: math.unit(1000, "meters"),
  51603. default: true
  51604. },
  51605. ]
  51606. ))
  51607. characterMakers.push(() => makeCharacter(
  51608. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51609. {
  51610. front: {
  51611. height: math.unit(4, "meters"),
  51612. name: "Front",
  51613. image: {
  51614. source: "./media/characters/giri/front.svg",
  51615. extra: 966/894,
  51616. bottom: 21/987
  51617. }
  51618. },
  51619. },
  51620. [
  51621. {
  51622. name: "Normal",
  51623. height: math.unit(4, "meters"),
  51624. default: true
  51625. },
  51626. ]
  51627. ))
  51628. characterMakers.push(() => makeCharacter(
  51629. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51630. {
  51631. back: {
  51632. height: math.unit(4, "feet"),
  51633. weight: math.unit(37, "lb"),
  51634. name: "Back",
  51635. image: {
  51636. source: "./media/characters/tin/back.svg",
  51637. extra: 845/780,
  51638. bottom: 28/873
  51639. }
  51640. },
  51641. },
  51642. [
  51643. {
  51644. name: "Normal",
  51645. height: math.unit(4, "feet"),
  51646. default: true
  51647. },
  51648. ]
  51649. ))
  51650. characterMakers.push(() => makeCharacter(
  51651. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51652. {
  51653. front: {
  51654. height: math.unit(25, "feet"),
  51655. name: "Front",
  51656. image: {
  51657. source: "./media/characters/cadenza-vivace/front.svg",
  51658. extra: 1842/1578,
  51659. bottom: 30/1872
  51660. }
  51661. },
  51662. },
  51663. [
  51664. {
  51665. name: "Macro",
  51666. height: math.unit(25, "feet"),
  51667. default: true
  51668. },
  51669. ]
  51670. ))
  51671. characterMakers.push(() => makeCharacter(
  51672. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51673. {
  51674. front: {
  51675. height: math.unit(10, "feet"),
  51676. weight: math.unit(625, "kg"),
  51677. name: "Front",
  51678. image: {
  51679. source: "./media/characters/zain/front.svg",
  51680. extra: 1682/1498,
  51681. bottom: 223/1905
  51682. }
  51683. },
  51684. back: {
  51685. height: math.unit(10, "feet"),
  51686. weight: math.unit(625, "kg"),
  51687. name: "Back",
  51688. image: {
  51689. source: "./media/characters/zain/back.svg",
  51690. extra: 1814/1657,
  51691. bottom: 152/1966
  51692. }
  51693. },
  51694. head: {
  51695. height: math.unit(10, "feet"),
  51696. weight: math.unit(625, "kg"),
  51697. name: "Head",
  51698. image: {
  51699. source: "./media/characters/zain/head.svg",
  51700. extra: 1059/762,
  51701. bottom: 0/1059
  51702. }
  51703. },
  51704. },
  51705. [
  51706. {
  51707. name: "Normal",
  51708. height: math.unit(10, "feet"),
  51709. default: true
  51710. },
  51711. ]
  51712. ))
  51713. characterMakers.push(() => makeCharacter(
  51714. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51715. {
  51716. front: {
  51717. height: math.unit(6 + 5/12, "feet"),
  51718. weight: math.unit(750, "lb"),
  51719. name: "Front",
  51720. image: {
  51721. source: "./media/characters/ruchex/front.svg",
  51722. extra: 877/820,
  51723. bottom: 17/894
  51724. },
  51725. extraAttributes: {
  51726. "width": {
  51727. name: "Width",
  51728. power: 1,
  51729. type: "length",
  51730. base: math.unit(4.757, "feet")
  51731. },
  51732. }
  51733. },
  51734. },
  51735. [
  51736. {
  51737. name: "Normal",
  51738. height: math.unit(6 + 5/12, "feet"),
  51739. default: true
  51740. },
  51741. ]
  51742. ))
  51743. characterMakers.push(() => makeCharacter(
  51744. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51745. {
  51746. dressedFront: {
  51747. height: math.unit(191, "cm"),
  51748. weight: math.unit(80, "kg"),
  51749. name: "Front",
  51750. image: {
  51751. source: "./media/characters/buster/dressed-front.svg",
  51752. extra: 1022/973,
  51753. bottom: 69/1091
  51754. }
  51755. },
  51756. dressedBack: {
  51757. height: math.unit(191, "cm"),
  51758. weight: math.unit(80, "kg"),
  51759. name: "Back",
  51760. image: {
  51761. source: "./media/characters/buster/dressed-back.svg",
  51762. extra: 1018/970,
  51763. bottom: 55/1073
  51764. }
  51765. },
  51766. nudeFront: {
  51767. height: math.unit(191, "cm"),
  51768. weight: math.unit(80, "kg"),
  51769. name: "Front (Nude)",
  51770. image: {
  51771. source: "./media/characters/buster/nude-front.svg",
  51772. extra: 1022/973,
  51773. bottom: 69/1091
  51774. }
  51775. },
  51776. nudeBack: {
  51777. height: math.unit(191, "cm"),
  51778. weight: math.unit(80, "kg"),
  51779. name: "Back (Nude)",
  51780. image: {
  51781. source: "./media/characters/buster/nude-back.svg",
  51782. extra: 1018/970,
  51783. bottom: 55/1073
  51784. }
  51785. },
  51786. dick: {
  51787. height: math.unit(2.59, "feet"),
  51788. name: "Dick",
  51789. image: {
  51790. source: "./media/characters/buster/dick.svg"
  51791. }
  51792. },
  51793. ass: {
  51794. height: math.unit(1.2, "feet"),
  51795. name: "Ass",
  51796. image: {
  51797. source: "./media/characters/buster/ass.svg"
  51798. }
  51799. },
  51800. },
  51801. [
  51802. {
  51803. name: "Normal",
  51804. height: math.unit(191, "cm"),
  51805. default: true
  51806. },
  51807. ]
  51808. ))
  51809. characterMakers.push(() => makeCharacter(
  51810. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51811. {
  51812. side: {
  51813. height: math.unit(8.1, "feet"),
  51814. weight: math.unit(3500, "lb"),
  51815. name: "Side",
  51816. image: {
  51817. source: "./media/characters/sonya/side.svg",
  51818. extra: 1730/1317,
  51819. bottom: 86/1816
  51820. }
  51821. },
  51822. },
  51823. [
  51824. {
  51825. name: "Normal",
  51826. height: math.unit(8.1, "feet"),
  51827. default: true
  51828. },
  51829. ]
  51830. ))
  51831. characterMakers.push(() => makeCharacter(
  51832. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51833. {
  51834. front: {
  51835. height: math.unit(6, "feet"),
  51836. weight: math.unit(150, "lb"),
  51837. name: "Front",
  51838. image: {
  51839. source: "./media/characters/cadence-andrysiak/front.svg",
  51840. extra: 1164/1121,
  51841. bottom: 60/1224
  51842. }
  51843. },
  51844. back: {
  51845. height: math.unit(6, "feet"),
  51846. weight: math.unit(150, "lb"),
  51847. name: "Back",
  51848. image: {
  51849. source: "./media/characters/cadence-andrysiak/back.svg",
  51850. extra: 1200/1165,
  51851. bottom: 9/1209
  51852. }
  51853. },
  51854. dressed: {
  51855. height: math.unit(6, "feet"),
  51856. weight: math.unit(150, "lb"),
  51857. name: "Dressed",
  51858. image: {
  51859. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51860. extra: 1164/1121,
  51861. bottom: 60/1224
  51862. }
  51863. },
  51864. },
  51865. [
  51866. {
  51867. name: "Micro",
  51868. height: math.unit(1, "mm")
  51869. },
  51870. {
  51871. name: "Normal",
  51872. height: math.unit(6, "feet"),
  51873. default: true
  51874. },
  51875. ]
  51876. ))
  51877. characterMakers.push(() => makeCharacter(
  51878. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51879. {
  51880. front: {
  51881. height: math.unit(60, "inches"),
  51882. weight: math.unit(16, "lb"),
  51883. preyCapacity: math.unit(80, "liters"),
  51884. name: "Front",
  51885. image: {
  51886. source: "./media/characters/penny-lynx/front.svg",
  51887. extra: 1959/1769,
  51888. bottom: 49/2008
  51889. }
  51890. },
  51891. },
  51892. [
  51893. {
  51894. name: "Nokia",
  51895. height: math.unit(2, "inches")
  51896. },
  51897. {
  51898. name: "Desktop",
  51899. height: math.unit(24, "inches")
  51900. },
  51901. {
  51902. name: "TV",
  51903. height: math.unit(60, "inches")
  51904. },
  51905. {
  51906. name: "Jumbotron",
  51907. height: math.unit(12, "feet")
  51908. },
  51909. {
  51910. name: "Billboard",
  51911. height: math.unit(48, "feet"),
  51912. default: true
  51913. },
  51914. {
  51915. name: "IMAX",
  51916. height: math.unit(96, "feet")
  51917. },
  51918. {
  51919. name: "SINGULARITY",
  51920. height: math.unit(864938, "miles")
  51921. },
  51922. ]
  51923. ))
  51924. characterMakers.push(() => makeCharacter(
  51925. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51926. {
  51927. front: {
  51928. height: math.unit(5 + 4/12, "feet"),
  51929. weight: math.unit(230, "lb"),
  51930. name: "Front",
  51931. image: {
  51932. source: "./media/characters/sukebe/front.svg",
  51933. extra: 2130/2038,
  51934. bottom: 90/2220
  51935. }
  51936. },
  51937. back: {
  51938. height: math.unit(3.48, "feet"),
  51939. weight: math.unit(230, "lb"),
  51940. name: "Back",
  51941. image: {
  51942. source: "./media/characters/sukebe/back.svg",
  51943. extra: 1670/1604,
  51944. bottom: 0/1670
  51945. }
  51946. },
  51947. },
  51948. [
  51949. {
  51950. name: "Normal",
  51951. height: math.unit(5 + 4/12, "feet"),
  51952. default: true
  51953. },
  51954. ]
  51955. ))
  51956. characterMakers.push(() => makeCharacter(
  51957. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51958. {
  51959. front: {
  51960. height: math.unit(6, "feet"),
  51961. name: "Front",
  51962. image: {
  51963. source: "./media/characters/nylla/front.svg",
  51964. extra: 1868/1699,
  51965. bottom: 97/1965
  51966. }
  51967. },
  51968. back: {
  51969. height: math.unit(6, "feet"),
  51970. name: "Back",
  51971. image: {
  51972. source: "./media/characters/nylla/back.svg",
  51973. extra: 1889/1712,
  51974. bottom: 93/1982
  51975. }
  51976. },
  51977. frontNsfw: {
  51978. height: math.unit(6, "feet"),
  51979. name: "Front (NSFW)",
  51980. image: {
  51981. source: "./media/characters/nylla/front-nsfw.svg",
  51982. extra: 1868/1699,
  51983. bottom: 97/1965
  51984. },
  51985. extraAttributes: {
  51986. "dickLength": {
  51987. name: "Dick Length",
  51988. power: 1,
  51989. type: "length",
  51990. base: math.unit(1.4, "feet")
  51991. },
  51992. "cumVolume": {
  51993. name: "Cum Volume",
  51994. power: 3,
  51995. type: "volume",
  51996. base: math.unit(100, "mL")
  51997. },
  51998. }
  51999. },
  52000. backNsfw: {
  52001. height: math.unit(6, "feet"),
  52002. name: "Back (NSFW)",
  52003. image: {
  52004. source: "./media/characters/nylla/back-nsfw.svg",
  52005. extra: 1889/1712,
  52006. bottom: 93/1982
  52007. }
  52008. },
  52009. maw: {
  52010. height: math.unit(2.10, "feet"),
  52011. name: "Maw",
  52012. image: {
  52013. source: "./media/characters/nylla/maw.svg"
  52014. }
  52015. },
  52016. paws: {
  52017. height: math.unit(2.06, "feet"),
  52018. name: "Paws",
  52019. image: {
  52020. source: "./media/characters/nylla/paws.svg"
  52021. }
  52022. },
  52023. muzzle: {
  52024. height: math.unit(0.61, "feet"),
  52025. name: "Muzzle",
  52026. image: {
  52027. source: "./media/characters/nylla/muzzle.svg"
  52028. }
  52029. },
  52030. sheath: {
  52031. height: math.unit(1.305, "feet"),
  52032. name: "Sheath",
  52033. image: {
  52034. source: "./media/characters/nylla/sheath.svg"
  52035. }
  52036. },
  52037. },
  52038. [
  52039. {
  52040. name: "Micro",
  52041. height: math.unit(7.5, "inches")
  52042. },
  52043. {
  52044. name: "Normal",
  52045. height: math.unit(7, "feet"),
  52046. default: true
  52047. },
  52048. {
  52049. name: "Macro",
  52050. height: math.unit(60, "feet")
  52051. },
  52052. {
  52053. name: "Mega",
  52054. height: math.unit(200, "feet")
  52055. },
  52056. ]
  52057. ))
  52058. characterMakers.push(() => makeCharacter(
  52059. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52060. {
  52061. front: {
  52062. height: math.unit(10, "feet"),
  52063. weight: math.unit(2300, "lb"),
  52064. name: "Front",
  52065. image: {
  52066. source: "./media/characters/hunt3r/front.svg",
  52067. extra: 1909/1742,
  52068. bottom: 46/1955
  52069. }
  52070. },
  52071. },
  52072. [
  52073. {
  52074. name: "Normal",
  52075. height: math.unit(10, "feet"),
  52076. default: true
  52077. },
  52078. ]
  52079. ))
  52080. characterMakers.push(() => makeCharacter(
  52081. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52082. {
  52083. dressed: {
  52084. height: math.unit(11, "feet"),
  52085. weight: math.unit(18500, "lb"),
  52086. preyCapacity: math.unit(9, "people"),
  52087. name: "Dressed",
  52088. image: {
  52089. source: "./media/characters/cylphis/dressed.svg",
  52090. extra: 1028/1003,
  52091. bottom: 75/1103
  52092. },
  52093. },
  52094. undressed: {
  52095. height: math.unit(11, "feet"),
  52096. weight: math.unit(18500, "lb"),
  52097. preyCapacity: math.unit(9, "people"),
  52098. name: "Undressed",
  52099. image: {
  52100. source: "./media/characters/cylphis/undressed.svg",
  52101. extra: 1028/1003,
  52102. bottom: 75/1103
  52103. }
  52104. },
  52105. full: {
  52106. height: math.unit(11, "feet"),
  52107. weight: math.unit(18500 + 150*9, "lb"),
  52108. preyCapacity: math.unit(9, "people"),
  52109. name: "Full",
  52110. image: {
  52111. source: "./media/characters/cylphis/full.svg",
  52112. extra: 1028/1003,
  52113. bottom: 75/1103
  52114. }
  52115. },
  52116. },
  52117. [
  52118. {
  52119. name: "Small",
  52120. height: math.unit(8, "feet")
  52121. },
  52122. {
  52123. name: "Normal",
  52124. height: math.unit(11, "feet"),
  52125. default: true
  52126. },
  52127. ]
  52128. ))
  52129. characterMakers.push(() => makeCharacter(
  52130. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52131. {
  52132. front: {
  52133. height: math.unit(2 + 7/12, "feet"),
  52134. name: "Front",
  52135. image: {
  52136. source: "./media/characters/orishan/front.svg",
  52137. extra: 1058/1023,
  52138. bottom: 23/1081
  52139. }
  52140. },
  52141. back: {
  52142. height: math.unit(2 + 7/12, "feet"),
  52143. name: "Back",
  52144. image: {
  52145. source: "./media/characters/orishan/back.svg",
  52146. extra: 1058/1023,
  52147. bottom: 23/1081
  52148. }
  52149. },
  52150. },
  52151. [
  52152. {
  52153. name: "Micro",
  52154. height: math.unit(2, "cm")
  52155. },
  52156. {
  52157. name: "Normal",
  52158. height: math.unit(2 + 7/12, "feet"),
  52159. default: true
  52160. },
  52161. ]
  52162. ))
  52163. characterMakers.push(() => makeCharacter(
  52164. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52165. {
  52166. front: {
  52167. height: math.unit(3, "meters"),
  52168. weight: math.unit(508, "kg"),
  52169. name: "Front",
  52170. image: {
  52171. source: "./media/characters/seranis/front.svg",
  52172. extra: 1478/1454,
  52173. bottom: 41/1519
  52174. }
  52175. },
  52176. },
  52177. [
  52178. {
  52179. name: "Normal",
  52180. height: math.unit(3, "meters"),
  52181. default: true
  52182. },
  52183. {
  52184. name: "Macro",
  52185. height: math.unit(108, "meters")
  52186. },
  52187. {
  52188. name: "Megamacro",
  52189. height: math.unit(1250, "meters")
  52190. },
  52191. ]
  52192. ))
  52193. characterMakers.push(() => makeCharacter(
  52194. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52195. {
  52196. undressed: {
  52197. height: math.unit(5 + 3/12, "feet"),
  52198. name: "Undressed",
  52199. image: {
  52200. source: "./media/characters/ankou/undressed.svg",
  52201. extra: 1301/1213,
  52202. bottom: 87/1388
  52203. }
  52204. },
  52205. dressed: {
  52206. height: math.unit(5 + 3/12, "feet"),
  52207. name: "Dressed",
  52208. image: {
  52209. source: "./media/characters/ankou/dressed.svg",
  52210. extra: 1301/1213,
  52211. bottom: 87/1388
  52212. }
  52213. },
  52214. head: {
  52215. height: math.unit(1.61, "feet"),
  52216. name: "Head",
  52217. image: {
  52218. source: "./media/characters/ankou/head.svg"
  52219. }
  52220. },
  52221. },
  52222. [
  52223. {
  52224. name: "Normal",
  52225. height: math.unit(5 + 3/12, "feet"),
  52226. default: true
  52227. },
  52228. ]
  52229. ))
  52230. characterMakers.push(() => makeCharacter(
  52231. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52232. {
  52233. side: {
  52234. height: math.unit(6 + 3/12, "feet"),
  52235. weight: math.unit(200, "kg"),
  52236. name: "Side",
  52237. image: {
  52238. source: "./media/characters/juniper-skunktaur/side.svg",
  52239. extra: 1574/1229,
  52240. bottom: 38/1612
  52241. }
  52242. },
  52243. front: {
  52244. height: math.unit(6 + 3/12, "feet"),
  52245. weight: math.unit(200, "kg"),
  52246. name: "Front",
  52247. image: {
  52248. source: "./media/characters/juniper-skunktaur/front.svg",
  52249. extra: 1337/1278,
  52250. bottom: 22/1359
  52251. }
  52252. },
  52253. back: {
  52254. height: math.unit(6 + 3/12, "feet"),
  52255. weight: math.unit(200, "kg"),
  52256. name: "Back",
  52257. image: {
  52258. source: "./media/characters/juniper-skunktaur/back.svg",
  52259. extra: 1618/1273,
  52260. bottom: 13/1631
  52261. }
  52262. },
  52263. top: {
  52264. height: math.unit(2.62, "feet"),
  52265. weight: math.unit(200, "kg"),
  52266. name: "Top",
  52267. image: {
  52268. source: "./media/characters/juniper-skunktaur/top.svg"
  52269. }
  52270. },
  52271. },
  52272. [
  52273. {
  52274. name: "Normal",
  52275. height: math.unit(6 + 3/12, "feet"),
  52276. default: true
  52277. },
  52278. ]
  52279. ))
  52280. characterMakers.push(() => makeCharacter(
  52281. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52282. {
  52283. front: {
  52284. height: math.unit(20.5, "feet"),
  52285. name: "Front",
  52286. image: {
  52287. source: "./media/characters/rei/front.svg",
  52288. extra: 1349/1195,
  52289. bottom: 31/1380
  52290. }
  52291. },
  52292. back: {
  52293. height: math.unit(20.5, "feet"),
  52294. name: "Back",
  52295. image: {
  52296. source: "./media/characters/rei/back.svg",
  52297. extra: 1358/1204,
  52298. bottom: 22/1380
  52299. }
  52300. },
  52301. pawsDigi: {
  52302. height: math.unit(3.45, "feet"),
  52303. name: "Paws (Digi)",
  52304. image: {
  52305. source: "./media/characters/rei/paws-digi.svg"
  52306. }
  52307. },
  52308. pawsPlanti: {
  52309. height: math.unit(3.45, "feet"),
  52310. name: "Paws (Planti)",
  52311. image: {
  52312. source: "./media/characters/rei/paws-planti.svg"
  52313. }
  52314. },
  52315. },
  52316. [
  52317. {
  52318. name: "Normal",
  52319. height: math.unit(20.5, "feet"),
  52320. default: true
  52321. },
  52322. ]
  52323. ))
  52324. characterMakers.push(() => makeCharacter(
  52325. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52326. {
  52327. front: {
  52328. height: math.unit(5 + 11/12, "feet"),
  52329. name: "Front",
  52330. image: {
  52331. source: "./media/characters/carina/front.svg",
  52332. extra: 1720/1449,
  52333. bottom: 14/1734
  52334. }
  52335. },
  52336. back: {
  52337. height: math.unit(5 + 11/12, "feet"),
  52338. name: "Back",
  52339. image: {
  52340. source: "./media/characters/carina/back.svg",
  52341. extra: 1493/1445,
  52342. bottom: 17/1510
  52343. }
  52344. },
  52345. paw: {
  52346. height: math.unit(0.92, "feet"),
  52347. name: "Paw",
  52348. image: {
  52349. source: "./media/characters/carina/paw.svg"
  52350. }
  52351. },
  52352. },
  52353. [
  52354. {
  52355. name: "Normal",
  52356. height: math.unit(5 + 11/12, "feet"),
  52357. default: true
  52358. },
  52359. ]
  52360. ))
  52361. characterMakers.push(() => makeCharacter(
  52362. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52363. {
  52364. front: {
  52365. height: math.unit(4.88, "meters"),
  52366. name: "Front",
  52367. image: {
  52368. source: "./media/characters/maya/front.svg",
  52369. extra: 1222/1145,
  52370. bottom: 57/1279
  52371. }
  52372. },
  52373. },
  52374. [
  52375. {
  52376. name: "Normal",
  52377. height: math.unit(4.88, "meters"),
  52378. default: true
  52379. },
  52380. {
  52381. name: "Macro",
  52382. height: math.unit(38.1, "meters")
  52383. },
  52384. {
  52385. name: "Macro+",
  52386. height: math.unit(152.4, "meters")
  52387. },
  52388. {
  52389. name: "Macro++",
  52390. height: math.unit(16.09, "km")
  52391. },
  52392. {
  52393. name: "Mega-macro",
  52394. height: math.unit(700, "megameters")
  52395. },
  52396. ]
  52397. ))
  52398. characterMakers.push(() => makeCharacter(
  52399. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52400. {
  52401. front: {
  52402. height: math.unit(6 + 2/12, "feet"),
  52403. weight: math.unit(500, "lb"),
  52404. preyCapacity: math.unit(4, "people"),
  52405. name: "Front",
  52406. image: {
  52407. source: "./media/characters/yepir/front.svg"
  52408. }
  52409. },
  52410. side: {
  52411. height: math.unit(6 + 2/12, "feet"),
  52412. weight: math.unit(500, "lb"),
  52413. preyCapacity: math.unit(4, "people"),
  52414. name: "Side",
  52415. image: {
  52416. source: "./media/characters/yepir/side.svg"
  52417. }
  52418. },
  52419. paw: {
  52420. height: math.unit(1.05, "feet"),
  52421. name: "Paw",
  52422. image: {
  52423. source: "./media/characters/yepir/paw.svg"
  52424. }
  52425. },
  52426. },
  52427. [
  52428. {
  52429. name: "Normal",
  52430. height: math.unit(6 + 2/12, "feet"),
  52431. default: true
  52432. },
  52433. ]
  52434. ))
  52435. characterMakers.push(() => makeCharacter(
  52436. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52437. {
  52438. front: {
  52439. height: math.unit(5 + 4/12, "feet"),
  52440. name: "Front",
  52441. image: {
  52442. source: "./media/characters/russec/front.svg",
  52443. extra: 1926/1626,
  52444. bottom: 72/1998
  52445. }
  52446. },
  52447. back: {
  52448. height: math.unit(5 + 4/12, "feet"),
  52449. name: "Back",
  52450. image: {
  52451. source: "./media/characters/russec/back.svg",
  52452. extra: 1910/1591,
  52453. bottom: 48/1958
  52454. }
  52455. },
  52456. },
  52457. [
  52458. {
  52459. name: "Small",
  52460. height: math.unit(5 + 4/12, "feet")
  52461. },
  52462. {
  52463. name: "Normal",
  52464. height: math.unit(72, "feet"),
  52465. default: true
  52466. },
  52467. ]
  52468. ))
  52469. characterMakers.push(() => makeCharacter(
  52470. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52471. {
  52472. side: {
  52473. height: math.unit(12, "feet"),
  52474. name: "Side",
  52475. image: {
  52476. source: "./media/characters/cianus/side.svg",
  52477. extra: 808/526,
  52478. bottom: 61/869
  52479. }
  52480. },
  52481. },
  52482. [
  52483. {
  52484. name: "Normal",
  52485. height: math.unit(12, "feet"),
  52486. default: true
  52487. },
  52488. ]
  52489. ))
  52490. characterMakers.push(() => makeCharacter(
  52491. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52492. {
  52493. front: {
  52494. height: math.unit(9 + 6/12, "feet"),
  52495. weight: math.unit(300, "lb"),
  52496. name: "Front",
  52497. image: {
  52498. source: "./media/characters/ahab/front.svg",
  52499. extra: 1897/1868,
  52500. bottom: 121/2018
  52501. }
  52502. },
  52503. frontNsfw: {
  52504. height: math.unit(9 + 6/12, "feet"),
  52505. weight: math.unit(300, "lb"),
  52506. name: "Front-nsfw",
  52507. image: {
  52508. source: "./media/characters/ahab/front-nsfw.svg",
  52509. extra: 1897/1868,
  52510. bottom: 121/2018
  52511. }
  52512. },
  52513. },
  52514. [
  52515. {
  52516. name: "Normal",
  52517. height: math.unit(9 + 6/12, "feet")
  52518. },
  52519. {
  52520. name: "Macro",
  52521. height: math.unit(657, "feet"),
  52522. default: true
  52523. },
  52524. ]
  52525. ))
  52526. characterMakers.push(() => makeCharacter(
  52527. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52528. {
  52529. front: {
  52530. height: math.unit(2.69, "meters"),
  52531. weight: math.unit(132, "kg"),
  52532. name: "Front",
  52533. image: {
  52534. source: "./media/characters/aarkus/front.svg",
  52535. extra: 1400/1231,
  52536. bottom: 34/1434
  52537. }
  52538. },
  52539. back: {
  52540. height: math.unit(2.69, "meters"),
  52541. weight: math.unit(132, "kg"),
  52542. name: "Back",
  52543. image: {
  52544. source: "./media/characters/aarkus/back.svg",
  52545. extra: 1381/1218,
  52546. bottom: 30/1411
  52547. }
  52548. },
  52549. frontNsfw: {
  52550. height: math.unit(2.69, "meters"),
  52551. weight: math.unit(132, "kg"),
  52552. name: "Front (NSFW)",
  52553. image: {
  52554. source: "./media/characters/aarkus/front-nsfw.svg",
  52555. extra: 1400/1231,
  52556. bottom: 34/1434
  52557. }
  52558. },
  52559. foot: {
  52560. height: math.unit(1.45, "feet"),
  52561. name: "Foot",
  52562. image: {
  52563. source: "./media/characters/aarkus/foot.svg"
  52564. }
  52565. },
  52566. head: {
  52567. height: math.unit(2.85, "feet"),
  52568. name: "Head",
  52569. image: {
  52570. source: "./media/characters/aarkus/head.svg"
  52571. }
  52572. },
  52573. headAlt: {
  52574. height: math.unit(3.07, "feet"),
  52575. name: "Head (Alt)",
  52576. image: {
  52577. source: "./media/characters/aarkus/head-alt.svg"
  52578. }
  52579. },
  52580. mouth: {
  52581. height: math.unit(1.25, "feet"),
  52582. name: "Mouth",
  52583. image: {
  52584. source: "./media/characters/aarkus/mouth.svg"
  52585. }
  52586. },
  52587. dick: {
  52588. height: math.unit(1.77, "feet"),
  52589. name: "Dick",
  52590. image: {
  52591. source: "./media/characters/aarkus/dick.svg"
  52592. }
  52593. },
  52594. },
  52595. [
  52596. {
  52597. name: "Normal",
  52598. height: math.unit(2.69, "meters"),
  52599. default: true
  52600. },
  52601. {
  52602. name: "Macro",
  52603. height: math.unit(269, "meters")
  52604. },
  52605. {
  52606. name: "Macro+",
  52607. height: math.unit(672.5, "meters")
  52608. },
  52609. {
  52610. name: "Megamacro",
  52611. height: math.unit(2.017, "km")
  52612. },
  52613. ]
  52614. ))
  52615. characterMakers.push(() => makeCharacter(
  52616. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52617. {
  52618. front: {
  52619. height: math.unit(23.47, "cm"),
  52620. weight: math.unit(600, "grams"),
  52621. name: "Front",
  52622. image: {
  52623. source: "./media/characters/diode/front.svg",
  52624. extra: 1778/1396,
  52625. bottom: 95/1873
  52626. }
  52627. },
  52628. side: {
  52629. height: math.unit(23.47, "cm"),
  52630. weight: math.unit(600, "grams"),
  52631. name: "Side",
  52632. image: {
  52633. source: "./media/characters/diode/side.svg",
  52634. extra: 1831/1404,
  52635. bottom: 86/1917
  52636. }
  52637. },
  52638. wings: {
  52639. height: math.unit(0.683, "feet"),
  52640. name: "Wings",
  52641. image: {
  52642. source: "./media/characters/diode/wings.svg"
  52643. }
  52644. },
  52645. },
  52646. [
  52647. {
  52648. name: "Normal",
  52649. height: math.unit(23.47, "cm"),
  52650. default: true
  52651. },
  52652. ]
  52653. ))
  52654. characterMakers.push(() => makeCharacter(
  52655. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52656. {
  52657. front: {
  52658. height: math.unit(6 + 3/12, "feet"),
  52659. weight: math.unit(250, "lb"),
  52660. name: "Front",
  52661. image: {
  52662. source: "./media/characters/reika/front.svg",
  52663. extra: 1120/1078,
  52664. bottom: 86/1206
  52665. }
  52666. },
  52667. },
  52668. [
  52669. {
  52670. name: "Normal",
  52671. height: math.unit(6 + 3/12, "feet"),
  52672. default: true
  52673. },
  52674. ]
  52675. ))
  52676. characterMakers.push(() => makeCharacter(
  52677. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52678. {
  52679. front: {
  52680. height: math.unit(16 + 8/12, "feet"),
  52681. weight: math.unit(9000, "lb"),
  52682. name: "Front",
  52683. image: {
  52684. source: "./media/characters/lokuto-takama/front.svg",
  52685. extra: 1774/1632,
  52686. bottom: 147/1921
  52687. },
  52688. extraAttributes: {
  52689. "bustWidth": {
  52690. name: "Bust Width",
  52691. power: 1,
  52692. type: "length",
  52693. base: math.unit(2.4, "meters")
  52694. },
  52695. "breastWeight": {
  52696. name: "Breast Weight",
  52697. power: 3,
  52698. type: "mass",
  52699. base: math.unit(1000, "kg")
  52700. },
  52701. }
  52702. },
  52703. },
  52704. [
  52705. {
  52706. name: "Normal",
  52707. height: math.unit(16 + 8/12, "feet"),
  52708. default: true
  52709. },
  52710. ]
  52711. ))
  52712. characterMakers.push(() => makeCharacter(
  52713. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52714. {
  52715. front: {
  52716. height: math.unit(10, "cm"),
  52717. weight: math.unit(850, "grams"),
  52718. name: "Front",
  52719. image: {
  52720. source: "./media/characters/owak-bone/front.svg",
  52721. extra: 1965/1801,
  52722. bottom: 31/1996
  52723. }
  52724. },
  52725. },
  52726. [
  52727. {
  52728. name: "Normal",
  52729. height: math.unit(10, "cm"),
  52730. default: true
  52731. },
  52732. ]
  52733. ))
  52734. characterMakers.push(() => makeCharacter(
  52735. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52736. {
  52737. front: {
  52738. height: math.unit(2 + 6/12, "feet"),
  52739. weight: math.unit(9, "lb"),
  52740. name: "Front",
  52741. image: {
  52742. source: "./media/characters/muffin/front.svg",
  52743. extra: 1220/1195,
  52744. bottom: 84/1304
  52745. }
  52746. },
  52747. },
  52748. [
  52749. {
  52750. name: "Normal",
  52751. height: math.unit(2 + 6/12, "feet"),
  52752. default: true
  52753. },
  52754. ]
  52755. ))
  52756. characterMakers.push(() => makeCharacter(
  52757. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52758. {
  52759. front: {
  52760. height: math.unit(7, "feet"),
  52761. name: "Front",
  52762. image: {
  52763. source: "./media/characters/chimera/front.svg",
  52764. extra: 1752/1614,
  52765. bottom: 68/1820
  52766. }
  52767. },
  52768. },
  52769. [
  52770. {
  52771. name: "Normal",
  52772. height: math.unit(7, "feet")
  52773. },
  52774. {
  52775. name: "Gigamacro",
  52776. height: math.unit(2.9, "gigameters"),
  52777. default: true
  52778. },
  52779. {
  52780. name: "Universal",
  52781. height: math.unit(1.56e26, "yottameters")
  52782. },
  52783. ]
  52784. ))
  52785. characterMakers.push(() => makeCharacter(
  52786. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52787. {
  52788. front: {
  52789. height: math.unit(3, "feet"),
  52790. weight: math.unit(20, "lb"),
  52791. name: "Front",
  52792. image: {
  52793. source: "./media/characters/kit-fennec-fox/front.svg",
  52794. extra: 1027/932,
  52795. bottom: 16/1043
  52796. }
  52797. },
  52798. back: {
  52799. height: math.unit(3, "feet"),
  52800. weight: math.unit(20, "lb"),
  52801. name: "Back",
  52802. image: {
  52803. source: "./media/characters/kit-fennec-fox/back.svg",
  52804. extra: 1027/932,
  52805. bottom: 16/1043
  52806. }
  52807. },
  52808. },
  52809. [
  52810. {
  52811. name: "Normal",
  52812. height: math.unit(3, "feet"),
  52813. default: true
  52814. },
  52815. ]
  52816. ))
  52817. characterMakers.push(() => makeCharacter(
  52818. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52819. {
  52820. front: {
  52821. height: math.unit(167, "cm"),
  52822. name: "Front",
  52823. image: {
  52824. source: "./media/characters/blue-otter/front.svg",
  52825. extra: 1951/1920,
  52826. bottom: 31/1982
  52827. }
  52828. },
  52829. },
  52830. [
  52831. {
  52832. name: "Otter-Sized",
  52833. height: math.unit(100, "cm")
  52834. },
  52835. {
  52836. name: "Normal",
  52837. height: math.unit(167, "cm"),
  52838. default: true
  52839. },
  52840. ]
  52841. ))
  52842. characterMakers.push(() => makeCharacter(
  52843. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52844. {
  52845. front: {
  52846. height: math.unit(4 + 4/12, "feet"),
  52847. name: "Front",
  52848. image: {
  52849. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52850. extra: 1072/1067,
  52851. bottom: 117/1189
  52852. }
  52853. },
  52854. back: {
  52855. height: math.unit(4 + 4/12, "feet"),
  52856. name: "Back",
  52857. image: {
  52858. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52859. extra: 1135/1129,
  52860. bottom: 57/1192
  52861. }
  52862. },
  52863. head: {
  52864. height: math.unit(1.77, "feet"),
  52865. name: "Head",
  52866. image: {
  52867. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52868. }
  52869. },
  52870. },
  52871. [
  52872. {
  52873. name: "Normal",
  52874. height: math.unit(4 + 4/12, "feet"),
  52875. default: true
  52876. },
  52877. ]
  52878. ))
  52879. characterMakers.push(() => makeCharacter(
  52880. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52881. {
  52882. front: {
  52883. height: math.unit(2, "inches"),
  52884. name: "Front",
  52885. image: {
  52886. source: "./media/characters/carley-hartford/front.svg",
  52887. extra: 1035/988,
  52888. bottom: 23/1058
  52889. }
  52890. },
  52891. back: {
  52892. height: math.unit(2, "inches"),
  52893. name: "Back",
  52894. image: {
  52895. source: "./media/characters/carley-hartford/back.svg",
  52896. extra: 1035/988,
  52897. bottom: 23/1058
  52898. }
  52899. },
  52900. dressed: {
  52901. height: math.unit(2, "inches"),
  52902. name: "Dressed",
  52903. image: {
  52904. source: "./media/characters/carley-hartford/dressed.svg",
  52905. extra: 651/620,
  52906. bottom: 0/651
  52907. }
  52908. },
  52909. },
  52910. [
  52911. {
  52912. name: "Micro",
  52913. height: math.unit(2, "inches"),
  52914. default: true
  52915. },
  52916. {
  52917. name: "Macro",
  52918. height: math.unit(6 + 3/12, "feet")
  52919. },
  52920. ]
  52921. ))
  52922. characterMakers.push(() => makeCharacter(
  52923. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52924. {
  52925. front: {
  52926. height: math.unit(2 + 3/12, "feet"),
  52927. weight: math.unit(15 + 7/16, "lb"),
  52928. name: "Front",
  52929. image: {
  52930. source: "./media/characters/duke/front.svg",
  52931. extra: 910/815,
  52932. bottom: 30/940
  52933. }
  52934. },
  52935. },
  52936. [
  52937. {
  52938. name: "Normal",
  52939. height: math.unit(2 + 3/12, "feet"),
  52940. default: true
  52941. },
  52942. ]
  52943. ))
  52944. characterMakers.push(() => makeCharacter(
  52945. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52946. {
  52947. front: {
  52948. height: math.unit(5 + 4/12, "feet"),
  52949. weight: math.unit(156, "lb"),
  52950. name: "Front",
  52951. image: {
  52952. source: "./media/characters/dein/front.svg",
  52953. extra: 855/815,
  52954. bottom: 48/903
  52955. }
  52956. },
  52957. side: {
  52958. height: math.unit(5 + 4/12, "feet"),
  52959. weight: math.unit(156, "lb"),
  52960. name: "side",
  52961. image: {
  52962. source: "./media/characters/dein/side.svg",
  52963. extra: 846/803,
  52964. bottom: 25/871
  52965. }
  52966. },
  52967. maw: {
  52968. height: math.unit(1.45, "feet"),
  52969. name: "Maw",
  52970. image: {
  52971. source: "./media/characters/dein/maw.svg"
  52972. }
  52973. },
  52974. },
  52975. [
  52976. {
  52977. name: "Ferret Sized",
  52978. height: math.unit(2 + 5/12, "feet")
  52979. },
  52980. {
  52981. name: "Normal",
  52982. height: math.unit(5 + 4/12, "feet"),
  52983. default: true
  52984. },
  52985. ]
  52986. ))
  52987. characterMakers.push(() => makeCharacter(
  52988. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52989. {
  52990. front: {
  52991. height: math.unit(84 + 8/12, "feet"),
  52992. weight: math.unit(942180, "lb"),
  52993. name: "Front",
  52994. image: {
  52995. source: "./media/characters/daurine-arima/front.svg",
  52996. extra: 1989/1782,
  52997. bottom: 37/2026
  52998. }
  52999. },
  53000. side: {
  53001. height: math.unit(84 + 8/12, "feet"),
  53002. weight: math.unit(942180, "lb"),
  53003. name: "Side",
  53004. image: {
  53005. source: "./media/characters/daurine-arima/side.svg",
  53006. extra: 1997/1790,
  53007. bottom: 21/2018
  53008. }
  53009. },
  53010. back: {
  53011. height: math.unit(84 + 8/12, "feet"),
  53012. weight: math.unit(942180, "lb"),
  53013. name: "Back",
  53014. image: {
  53015. source: "./media/characters/daurine-arima/back.svg",
  53016. extra: 1992/1800,
  53017. bottom: 12/2004
  53018. }
  53019. },
  53020. head: {
  53021. height: math.unit(15.5, "feet"),
  53022. name: "Head",
  53023. image: {
  53024. source: "./media/characters/daurine-arima/head.svg"
  53025. }
  53026. },
  53027. headAlt: {
  53028. height: math.unit(19.19, "feet"),
  53029. name: "Head (Alt)",
  53030. image: {
  53031. source: "./media/characters/daurine-arima/head-alt.svg"
  53032. }
  53033. },
  53034. },
  53035. [
  53036. {
  53037. name: "Minimum height",
  53038. height: math.unit(8 + 10/12, "feet")
  53039. },
  53040. {
  53041. name: "Comfort height",
  53042. height: math.unit(19 + 6 /12, "feet")
  53043. },
  53044. {
  53045. name: "\"Normal\" height",
  53046. height: math.unit(28 + 10/12, "feet")
  53047. },
  53048. {
  53049. name: "Base height",
  53050. height: math.unit(84 + 8/12, "feet"),
  53051. default: true
  53052. },
  53053. {
  53054. name: "Mini-macro",
  53055. height: math.unit(2360, "feet")
  53056. },
  53057. {
  53058. name: "Macro",
  53059. height: math.unit(10, "miles")
  53060. },
  53061. {
  53062. name: "Goddess",
  53063. height: math.unit(9.99e40, "yottameters")
  53064. },
  53065. ]
  53066. ))
  53067. characterMakers.push(() => makeCharacter(
  53068. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53069. {
  53070. front: {
  53071. height: math.unit(2.3, "meters"),
  53072. name: "Front",
  53073. image: {
  53074. source: "./media/characters/cilenomon/front.svg",
  53075. extra: 1963/1778,
  53076. bottom: 54/2017
  53077. }
  53078. },
  53079. },
  53080. [
  53081. {
  53082. name: "Normal",
  53083. height: math.unit(2.3, "meters"),
  53084. default: true
  53085. },
  53086. {
  53087. name: "Big",
  53088. height: math.unit(5, "meters")
  53089. },
  53090. {
  53091. name: "Macro",
  53092. height: math.unit(30, "meters")
  53093. },
  53094. {
  53095. name: "True",
  53096. height: math.unit(1, "universe")
  53097. },
  53098. ]
  53099. ))
  53100. characterMakers.push(() => makeCharacter(
  53101. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53102. {
  53103. front: {
  53104. height: math.unit(5, "feet"),
  53105. name: "Front",
  53106. image: {
  53107. source: "./media/characters/sen-mink/front.svg",
  53108. extra: 1727/1675,
  53109. bottom: 35/1762
  53110. }
  53111. },
  53112. },
  53113. [
  53114. {
  53115. name: "Normal",
  53116. height: math.unit(5, "feet"),
  53117. default: true
  53118. },
  53119. ]
  53120. ))
  53121. characterMakers.push(() => makeCharacter(
  53122. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53123. {
  53124. front: {
  53125. height: math.unit(5.42999, "feet"),
  53126. weight: math.unit(100, "lb"),
  53127. name: "Front",
  53128. image: {
  53129. source: "./media/characters/ophois/front.svg",
  53130. extra: 1429/1286,
  53131. bottom: 60/1489
  53132. }
  53133. },
  53134. },
  53135. [
  53136. {
  53137. name: "Normal",
  53138. height: math.unit(5.42999, "feet"),
  53139. default: true
  53140. },
  53141. ]
  53142. ))
  53143. characterMakers.push(() => makeCharacter(
  53144. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53145. {
  53146. front: {
  53147. height: math.unit(2, "meters"),
  53148. name: "Front",
  53149. image: {
  53150. source: "./media/characters/riley/front.svg",
  53151. extra: 1779/1754,
  53152. bottom: 139/1918
  53153. }
  53154. },
  53155. },
  53156. [
  53157. {
  53158. name: "Normal",
  53159. height: math.unit(2, "meters"),
  53160. default: true
  53161. },
  53162. ]
  53163. ))
  53164. characterMakers.push(() => makeCharacter(
  53165. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53166. {
  53167. front: {
  53168. height: math.unit(6 + 2/12, "feet"),
  53169. weight: math.unit(195, "lb"),
  53170. preyCapacity: math.unit(6, "people"),
  53171. name: "Front",
  53172. image: {
  53173. source: "./media/characters/shuken-flash/front.svg",
  53174. extra: 1905/1739,
  53175. bottom: 65/1970
  53176. }
  53177. },
  53178. back: {
  53179. height: math.unit(6 + 2/12, "feet"),
  53180. weight: math.unit(195, "lb"),
  53181. preyCapacity: math.unit(6, "people"),
  53182. name: "Back",
  53183. image: {
  53184. source: "./media/characters/shuken-flash/back.svg",
  53185. extra: 1912/1751,
  53186. bottom: 13/1925
  53187. }
  53188. },
  53189. },
  53190. [
  53191. {
  53192. name: "Normal",
  53193. height: math.unit(6 + 2/12, "feet"),
  53194. default: true
  53195. },
  53196. ]
  53197. ))
  53198. characterMakers.push(() => makeCharacter(
  53199. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53200. {
  53201. front: {
  53202. height: math.unit(5 + 9/12, "feet"),
  53203. weight: math.unit(150, "lb"),
  53204. name: "Front",
  53205. image: {
  53206. source: "./media/characters/plat/front.svg",
  53207. extra: 1816/1703,
  53208. bottom: 43/1859
  53209. }
  53210. },
  53211. side: {
  53212. height: math.unit(5 + 9/12, "feet"),
  53213. weight: math.unit(300, "lb"),
  53214. name: "Side",
  53215. image: {
  53216. source: "./media/characters/plat/side.svg",
  53217. extra: 1824/1699,
  53218. bottom: 18/1842
  53219. }
  53220. },
  53221. },
  53222. [
  53223. {
  53224. name: "Normal",
  53225. height: math.unit(5 + 9/12, "feet"),
  53226. default: true
  53227. },
  53228. ]
  53229. ))
  53230. characterMakers.push(() => makeCharacter(
  53231. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53232. {
  53233. front: {
  53234. height: math.unit(9, "feet"),
  53235. weight: math.unit(1800, "lb"),
  53236. name: "Front",
  53237. image: {
  53238. source: "./media/characters/elaine/front.svg",
  53239. extra: 1833/1354,
  53240. bottom: 25/1858
  53241. }
  53242. },
  53243. back: {
  53244. height: math.unit(8.8, "feet"),
  53245. weight: math.unit(1800, "lb"),
  53246. name: "Back",
  53247. image: {
  53248. source: "./media/characters/elaine/back.svg",
  53249. extra: 1641/1233,
  53250. bottom: 53/1694
  53251. }
  53252. },
  53253. },
  53254. [
  53255. {
  53256. name: "Normal",
  53257. height: math.unit(9, "feet"),
  53258. default: true
  53259. },
  53260. ]
  53261. ))
  53262. characterMakers.push(() => makeCharacter(
  53263. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53264. {
  53265. front: {
  53266. height: math.unit(17 + 9/12, "feet"),
  53267. weight: math.unit(8000, "lb"),
  53268. name: "Front",
  53269. image: {
  53270. source: "./media/characters/vera-raven/front.svg",
  53271. extra: 1457/1412,
  53272. bottom: 121/1578
  53273. }
  53274. },
  53275. side: {
  53276. height: math.unit(17 + 9/12, "feet"),
  53277. weight: math.unit(8000, "lb"),
  53278. name: "Side",
  53279. image: {
  53280. source: "./media/characters/vera-raven/side.svg",
  53281. extra: 1510/1464,
  53282. bottom: 54/1564
  53283. }
  53284. },
  53285. },
  53286. [
  53287. {
  53288. name: "Normal",
  53289. height: math.unit(17 + 9/12, "feet"),
  53290. default: true
  53291. },
  53292. ]
  53293. ))
  53294. characterMakers.push(() => makeCharacter(
  53295. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53296. {
  53297. dressed: {
  53298. height: math.unit(6 + 9/12, "feet"),
  53299. name: "Dressed",
  53300. image: {
  53301. source: "./media/characters/nakisha/dressed.svg",
  53302. extra: 1909/1757,
  53303. bottom: 48/1957
  53304. }
  53305. },
  53306. nude: {
  53307. height: math.unit(6 + 9/12, "feet"),
  53308. name: "Nude",
  53309. image: {
  53310. source: "./media/characters/nakisha/nude.svg",
  53311. extra: 1917/1765,
  53312. bottom: 34/1951
  53313. }
  53314. },
  53315. },
  53316. [
  53317. {
  53318. name: "Normal",
  53319. height: math.unit(6 + 9/12, "feet"),
  53320. default: true
  53321. },
  53322. ]
  53323. ))
  53324. characterMakers.push(() => makeCharacter(
  53325. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53326. {
  53327. front: {
  53328. height: math.unit(87, "meters"),
  53329. name: "Front",
  53330. image: {
  53331. source: "./media/characters/serafin/front.svg",
  53332. extra: 1919/1776,
  53333. bottom: 65/1984
  53334. }
  53335. },
  53336. },
  53337. [
  53338. {
  53339. name: "Normal",
  53340. height: math.unit(87, "meters"),
  53341. default: true
  53342. },
  53343. ]
  53344. ))
  53345. characterMakers.push(() => makeCharacter(
  53346. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53347. {
  53348. front: {
  53349. height: math.unit(6, "feet"),
  53350. weight: math.unit(200, "lb"),
  53351. name: "Front",
  53352. image: {
  53353. source: "./media/characters/poptart/front.svg",
  53354. extra: 615/583,
  53355. bottom: 23/638
  53356. }
  53357. },
  53358. back: {
  53359. height: math.unit(6, "feet"),
  53360. weight: math.unit(200, "lb"),
  53361. name: "Back",
  53362. image: {
  53363. source: "./media/characters/poptart/back.svg",
  53364. extra: 617/584,
  53365. bottom: 22/639
  53366. }
  53367. },
  53368. frontNsfw: {
  53369. height: math.unit(6, "feet"),
  53370. weight: math.unit(200, "lb"),
  53371. name: "Front (NSFW)",
  53372. image: {
  53373. source: "./media/characters/poptart/front-nsfw.svg",
  53374. extra: 615/583,
  53375. bottom: 23/638
  53376. }
  53377. },
  53378. backNsfw: {
  53379. height: math.unit(6, "feet"),
  53380. weight: math.unit(200, "lb"),
  53381. name: "Back (NSFW)",
  53382. image: {
  53383. source: "./media/characters/poptart/back-nsfw.svg",
  53384. extra: 617/584,
  53385. bottom: 22/639
  53386. }
  53387. },
  53388. hand: {
  53389. height: math.unit(1.14, "feet"),
  53390. name: "Hand",
  53391. image: {
  53392. source: "./media/characters/poptart/hand.svg"
  53393. }
  53394. },
  53395. foot: {
  53396. height: math.unit(1.5, "feet"),
  53397. name: "Foot",
  53398. image: {
  53399. source: "./media/characters/poptart/foot.svg"
  53400. }
  53401. },
  53402. },
  53403. [
  53404. {
  53405. name: "Normal",
  53406. height: math.unit(6, "feet"),
  53407. default: true
  53408. },
  53409. {
  53410. name: "Grande",
  53411. height: math.unit(350, "feet")
  53412. },
  53413. {
  53414. name: "Massif",
  53415. height: math.unit(967, "feet")
  53416. },
  53417. ]
  53418. ))
  53419. characterMakers.push(() => makeCharacter(
  53420. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53421. {
  53422. hyenaSide: {
  53423. height: math.unit(120, "cm"),
  53424. weight: math.unit(120, "lb"),
  53425. name: "Side",
  53426. image: {
  53427. source: "./media/characters/trance/hyena-side.svg",
  53428. extra: 998/904,
  53429. bottom: 76/1074
  53430. }
  53431. },
  53432. },
  53433. [
  53434. {
  53435. name: "Normal",
  53436. height: math.unit(120, "cm"),
  53437. default: true
  53438. },
  53439. {
  53440. name: "Dire",
  53441. height: math.unit(230, "cm")
  53442. },
  53443. {
  53444. name: "Macro",
  53445. height: math.unit(37, "feet")
  53446. },
  53447. ]
  53448. ))
  53449. characterMakers.push(() => makeCharacter(
  53450. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53451. {
  53452. front: {
  53453. height: math.unit(6 + 3/12, "feet"),
  53454. name: "Front",
  53455. image: {
  53456. source: "./media/characters/michael-berretta/front.svg",
  53457. extra: 515/494,
  53458. bottom: 20/535
  53459. }
  53460. },
  53461. back: {
  53462. height: math.unit(6 + 3/12, "feet"),
  53463. name: "Back",
  53464. image: {
  53465. source: "./media/characters/michael-berretta/back.svg",
  53466. extra: 520/497,
  53467. bottom: 21/541
  53468. }
  53469. },
  53470. frontNsfw: {
  53471. height: math.unit(6 + 3/12, "feet"),
  53472. name: "Front (NSFW)",
  53473. image: {
  53474. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53475. extra: 515/494,
  53476. bottom: 20/535
  53477. }
  53478. },
  53479. dick: {
  53480. height: math.unit(1, "feet"),
  53481. name: "Dick",
  53482. image: {
  53483. source: "./media/characters/michael-berretta/dick.svg"
  53484. }
  53485. },
  53486. },
  53487. [
  53488. {
  53489. name: "Normal",
  53490. height: math.unit(6 + 3/12, "feet"),
  53491. default: true
  53492. },
  53493. {
  53494. name: "Big",
  53495. height: math.unit(12, "feet")
  53496. },
  53497. {
  53498. name: "Macro",
  53499. height: math.unit(187.5, "feet")
  53500. },
  53501. ]
  53502. ))
  53503. characterMakers.push(() => makeCharacter(
  53504. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53505. {
  53506. front: {
  53507. height: math.unit(9 + 9/12, "feet"),
  53508. weight: math.unit(1244, "lb"),
  53509. name: "Front",
  53510. image: {
  53511. source: "./media/characters/stella-edgecomb/front.svg",
  53512. extra: 1835/1706,
  53513. bottom: 49/1884
  53514. }
  53515. },
  53516. pen: {
  53517. height: math.unit(0.95, "feet"),
  53518. name: "Pen",
  53519. image: {
  53520. source: "./media/characters/stella-edgecomb/pen.svg"
  53521. }
  53522. },
  53523. },
  53524. [
  53525. {
  53526. name: "Cozy Bear",
  53527. height: math.unit(0.5, "inches")
  53528. },
  53529. {
  53530. name: "Normal",
  53531. height: math.unit(9 + 9/12, "feet"),
  53532. default: true
  53533. },
  53534. {
  53535. name: "Giga Bear",
  53536. height: math.unit(1, "mile")
  53537. },
  53538. {
  53539. name: "Great Bear",
  53540. height: math.unit(53, "miles")
  53541. },
  53542. {
  53543. name: "Goddess Bear",
  53544. height: math.unit(40000, "miles")
  53545. },
  53546. {
  53547. name: "Sun Bear",
  53548. height: math.unit(900000, "miles")
  53549. },
  53550. ]
  53551. ))
  53552. characterMakers.push(() => makeCharacter(
  53553. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53554. {
  53555. anthroFront: {
  53556. height: math.unit(556, "cm"),
  53557. weight: math.unit(2650, "kg"),
  53558. preyCapacity: math.unit(3, "people"),
  53559. name: "Front",
  53560. image: {
  53561. source: "./media/characters/ash´iika/front.svg",
  53562. extra: 710/673,
  53563. bottom: 15/725
  53564. },
  53565. form: "anthro",
  53566. default: true
  53567. },
  53568. anthroSide: {
  53569. height: math.unit(556, "cm"),
  53570. weight: math.unit(2650, "kg"),
  53571. preyCapacity: math.unit(3, "people"),
  53572. name: "Side",
  53573. image: {
  53574. source: "./media/characters/ash´iika/side.svg",
  53575. extra: 696/676,
  53576. bottom: 13/709
  53577. },
  53578. form: "anthro"
  53579. },
  53580. anthroDressed: {
  53581. height: math.unit(556, "cm"),
  53582. weight: math.unit(2650, "kg"),
  53583. preyCapacity: math.unit(3, "people"),
  53584. name: "Dressed",
  53585. image: {
  53586. source: "./media/characters/ash´iika/dressed.svg",
  53587. extra: 710/673,
  53588. bottom: 15/725
  53589. },
  53590. form: "anthro"
  53591. },
  53592. anthroHead: {
  53593. height: math.unit(3.5, "feet"),
  53594. name: "Head",
  53595. image: {
  53596. source: "./media/characters/ash´iika/head.svg",
  53597. extra: 348/291,
  53598. bottom: 45/393
  53599. },
  53600. form: "anthro"
  53601. },
  53602. feralSide: {
  53603. height: math.unit(870, "cm"),
  53604. weight: math.unit(17500, "kg"),
  53605. preyCapacity: math.unit(15, "people"),
  53606. name: "Side",
  53607. image: {
  53608. source: "./media/characters/ash´iika/feral.svg",
  53609. extra: 595/199,
  53610. bottom: 7/602
  53611. },
  53612. form: "feral",
  53613. default: true,
  53614. },
  53615. },
  53616. [
  53617. {
  53618. name: "Normal",
  53619. height: math.unit(556, "cm"),
  53620. default: true,
  53621. form: "anthro"
  53622. },
  53623. {
  53624. name: "Macro",
  53625. height: math.unit(88, "meters"),
  53626. form: "anthro"
  53627. },
  53628. {
  53629. name: "Normal",
  53630. height: math.unit(870, "cm"),
  53631. default: true,
  53632. form: "feral"
  53633. },
  53634. {
  53635. name: "Large",
  53636. height: math.unit(25, "meters"),
  53637. form: "feral"
  53638. },
  53639. ],
  53640. {
  53641. "anthro": {
  53642. name: "Anthro",
  53643. default: true
  53644. },
  53645. "feral": {
  53646. name: "Feral",
  53647. },
  53648. }
  53649. ))
  53650. characterMakers.push(() => makeCharacter(
  53651. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53652. {
  53653. front: {
  53654. height: math.unit(10, "feet"),
  53655. weight: math.unit(800, "lb"),
  53656. name: "Front",
  53657. image: {
  53658. source: "./media/characters/yen/front.svg",
  53659. extra: 443/411,
  53660. bottom: 6/449
  53661. }
  53662. },
  53663. sleeping: {
  53664. height: math.unit(10, "feet"),
  53665. weight: math.unit(800, "lb"),
  53666. name: "Sleeping",
  53667. image: {
  53668. source: "./media/characters/yen/sleeping.svg",
  53669. extra: 470/422,
  53670. bottom: 0/470
  53671. }
  53672. },
  53673. head: {
  53674. height: math.unit(2.2, "feet"),
  53675. name: "Head",
  53676. image: {
  53677. source: "./media/characters/yen/head.svg"
  53678. }
  53679. },
  53680. headAlt: {
  53681. height: math.unit(2.1, "feet"),
  53682. name: "Head (Alt)",
  53683. image: {
  53684. source: "./media/characters/yen/head-alt.svg"
  53685. }
  53686. },
  53687. },
  53688. [
  53689. {
  53690. name: "Normal",
  53691. height: math.unit(10, "feet"),
  53692. default: true
  53693. },
  53694. ]
  53695. ))
  53696. characterMakers.push(() => makeCharacter(
  53697. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53698. {
  53699. front: {
  53700. height: math.unit(12, "feet"),
  53701. name: "Front",
  53702. image: {
  53703. source: "./media/characters/citra/front.svg",
  53704. extra: 1950/1710,
  53705. bottom: 47/1997
  53706. }
  53707. },
  53708. },
  53709. [
  53710. {
  53711. name: "Normal",
  53712. height: math.unit(12, "feet"),
  53713. default: true
  53714. },
  53715. ]
  53716. ))
  53717. characterMakers.push(() => makeCharacter(
  53718. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53719. {
  53720. side: {
  53721. height: math.unit(7 + 10/12, "feet"),
  53722. name: "Side",
  53723. image: {
  53724. source: "./media/characters/sholstim/side.svg",
  53725. extra: 786/682,
  53726. bottom: 40/826
  53727. }
  53728. },
  53729. },
  53730. [
  53731. {
  53732. name: "Normal",
  53733. height: math.unit(7 + 10/12, "feet"),
  53734. default: true
  53735. },
  53736. ]
  53737. ))
  53738. characterMakers.push(() => makeCharacter(
  53739. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53740. {
  53741. front: {
  53742. height: math.unit(3.10, "meters"),
  53743. name: "Front",
  53744. image: {
  53745. source: "./media/characters/aggyn/front.svg",
  53746. extra: 1188/963,
  53747. bottom: 24/1212
  53748. }
  53749. },
  53750. },
  53751. [
  53752. {
  53753. name: "Normal",
  53754. height: math.unit(3.10, "meters"),
  53755. default: true
  53756. },
  53757. ]
  53758. ))
  53759. characterMakers.push(() => makeCharacter(
  53760. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53761. {
  53762. front: {
  53763. height: math.unit(7 + 5/12, "feet"),
  53764. weight: math.unit(687, "lb"),
  53765. name: "Front",
  53766. image: {
  53767. source: "./media/characters/alsandair-hergenroether/front.svg",
  53768. extra: 1251/1186,
  53769. bottom: 75/1326
  53770. }
  53771. },
  53772. back: {
  53773. height: math.unit(7 + 5/12, "feet"),
  53774. weight: math.unit(687, "lb"),
  53775. name: "Back",
  53776. image: {
  53777. source: "./media/characters/alsandair-hergenroether/back.svg",
  53778. extra: 1290/1229,
  53779. bottom: 17/1307
  53780. }
  53781. },
  53782. },
  53783. [
  53784. {
  53785. name: "Max Compression",
  53786. height: math.unit(7 + 5/12, "feet"),
  53787. default: true
  53788. },
  53789. {
  53790. name: "\"Normal\"",
  53791. height: math.unit(2, "universes")
  53792. },
  53793. ]
  53794. ))
  53795. characterMakers.push(() => makeCharacter(
  53796. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53797. {
  53798. front: {
  53799. height: math.unit(4 + 1/12, "feet"),
  53800. weight: math.unit(92, "lb"),
  53801. name: "Front",
  53802. image: {
  53803. source: "./media/characters/ie/front.svg",
  53804. extra: 1585/1352,
  53805. bottom: 91/1676
  53806. }
  53807. },
  53808. },
  53809. [
  53810. {
  53811. name: "Normal",
  53812. height: math.unit(4 + 1/12, "feet"),
  53813. default: true
  53814. },
  53815. ]
  53816. ))
  53817. characterMakers.push(() => makeCharacter(
  53818. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53819. {
  53820. anthro: {
  53821. height: math.unit(6, "feet"),
  53822. weight: math.unit(150, "lb"),
  53823. name: "Front",
  53824. image: {
  53825. source: "./media/characters/willow/anthro.svg",
  53826. extra: 1073/986,
  53827. bottom: 34/1107
  53828. },
  53829. form: "anthro",
  53830. default: true
  53831. },
  53832. taur: {
  53833. height: math.unit(6, "feet"),
  53834. weight: math.unit(150, "lb"),
  53835. name: "Side",
  53836. image: {
  53837. source: "./media/characters/willow/taur.svg",
  53838. extra: 647/512,
  53839. bottom: 136/783
  53840. },
  53841. form: "taur",
  53842. default: true
  53843. },
  53844. },
  53845. [
  53846. {
  53847. name: "Humanoid",
  53848. height: math.unit(2.7, "meters"),
  53849. form: "anthro"
  53850. },
  53851. {
  53852. name: "Normal",
  53853. height: math.unit(9, "meters"),
  53854. form: "anthro",
  53855. default: true
  53856. },
  53857. {
  53858. name: "Humanoid",
  53859. height: math.unit(2.1, "meters"),
  53860. form: "taur"
  53861. },
  53862. {
  53863. name: "Normal",
  53864. height: math.unit(7, "meters"),
  53865. form: "taur",
  53866. default: true
  53867. },
  53868. ],
  53869. {
  53870. "anthro": {
  53871. name: "Anthro",
  53872. default: true
  53873. },
  53874. "taur": {
  53875. name: "Taur",
  53876. },
  53877. }
  53878. ))
  53879. characterMakers.push(() => makeCharacter(
  53880. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53881. {
  53882. front: {
  53883. height: math.unit(2 + 5/12, "feet"),
  53884. name: "Front",
  53885. image: {
  53886. source: "./media/characters/kyan/front.svg",
  53887. extra: 460/334,
  53888. bottom: 23/483
  53889. },
  53890. extraAttributes: {
  53891. "toeLength": {
  53892. name: "Toe Length",
  53893. power: 1,
  53894. type: "length",
  53895. base: math.unit(7, "cm")
  53896. },
  53897. "toeclawLength": {
  53898. name: "Toeclaw Length",
  53899. power: 1,
  53900. type: "length",
  53901. base: math.unit(4.7, "cm")
  53902. },
  53903. "earHeight": {
  53904. name: "Ear Height",
  53905. power: 1,
  53906. type: "length",
  53907. base: math.unit(14.1, "cm")
  53908. },
  53909. }
  53910. },
  53911. paws: {
  53912. height: math.unit(0.45, "feet"),
  53913. name: "Paws",
  53914. image: {
  53915. source: "./media/characters/kyan/paws.svg",
  53916. extra: 581/581,
  53917. bottom: 114/695
  53918. }
  53919. },
  53920. },
  53921. [
  53922. {
  53923. name: "Normal",
  53924. height: math.unit(2 + 5/12, "feet"),
  53925. default: true
  53926. },
  53927. ]
  53928. ))
  53929. characterMakers.push(() => makeCharacter(
  53930. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53931. {
  53932. front: {
  53933. height: math.unit(2 + 2/3, "feet"),
  53934. name: "Front",
  53935. image: {
  53936. source: "./media/characters/xazzon/front.svg",
  53937. extra: 1109/984,
  53938. bottom: 42/1151
  53939. }
  53940. },
  53941. back: {
  53942. height: math.unit(2 + 2/3, "feet"),
  53943. name: "Back",
  53944. image: {
  53945. source: "./media/characters/xazzon/back.svg",
  53946. extra: 1095/971,
  53947. bottom: 23/1118
  53948. }
  53949. },
  53950. },
  53951. [
  53952. {
  53953. name: "Normal",
  53954. height: math.unit(2 + 2/3, "feet"),
  53955. default: true
  53956. },
  53957. ]
  53958. ))
  53959. characterMakers.push(() => makeCharacter(
  53960. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53961. {
  53962. dressed: {
  53963. height: math.unit(5 + 7/12, "feet"),
  53964. weight: math.unit(173, "lb"),
  53965. name: "Dressed",
  53966. image: {
  53967. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53968. extra: 3262/2862,
  53969. bottom: 188/3450
  53970. }
  53971. },
  53972. undressed: {
  53973. height: math.unit(5 + 7/12, "feet"),
  53974. weight: math.unit(173, "lb"),
  53975. name: "Undressed",
  53976. image: {
  53977. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53978. extra: 3262/2862,
  53979. bottom: 188/3450
  53980. }
  53981. },
  53982. },
  53983. [
  53984. {
  53985. name: "The void",
  53986. height: math.unit(7.29193e-34, "angstroms")
  53987. },
  53988. {
  53989. name: "Uh-Oh.",
  53990. height: math.unit(5.734e-7, "angstroms")
  53991. },
  53992. {
  53993. name: "Pico",
  53994. height: math.unit(0.876, "angstroms")
  53995. },
  53996. {
  53997. name: "Nano",
  53998. height: math.unit(0.000134200, "mm")
  53999. },
  54000. {
  54001. name: "Micro",
  54002. height: math.unit(0.0673020, "mm")
  54003. },
  54004. {
  54005. name: "Tiny",
  54006. height: math.unit(2.4, "mm")
  54007. },
  54008. {
  54009. name: "Actual Normal",
  54010. height: math.unit(3, "inches"),
  54011. default: true
  54012. },
  54013. {
  54014. name: "Normal",
  54015. height: math.unit(5 + 8/12, "feet")
  54016. },
  54017. {
  54018. name: "Giant",
  54019. height: math.unit(12, "feet")
  54020. },
  54021. {
  54022. name: "City Ruler",
  54023. height: math.unit(270, "meters")
  54024. },
  54025. {
  54026. name: "Giga",
  54027. height: math.unit(1117.6, "km")
  54028. },
  54029. {
  54030. name: "All-Powerful Queen",
  54031. height: math.unit(70.8, "gigameters")
  54032. },
  54033. {
  54034. name: "'Goddess'",
  54035. height: math.unit(600, "yottameters")
  54036. },
  54037. {
  54038. name: "Biggest!",
  54039. height: math.unit(4.23e5, "yottameters")
  54040. },
  54041. ]
  54042. ))
  54043. characterMakers.push(() => makeCharacter(
  54044. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54045. {
  54046. front: {
  54047. height: math.unit(8, "feet"),
  54048. weight: math.unit(300, "lb"),
  54049. name: "Front",
  54050. image: {
  54051. source: "./media/characters/khyla-shadowsong/front.svg",
  54052. extra: 861/798,
  54053. bottom: 32/893
  54054. }
  54055. },
  54056. side: {
  54057. height: math.unit(8, "feet"),
  54058. weight: math.unit(300, "lb"),
  54059. name: "Side",
  54060. image: {
  54061. source: "./media/characters/khyla-shadowsong/side.svg",
  54062. extra: 790/750,
  54063. bottom: 87/877
  54064. }
  54065. },
  54066. back: {
  54067. height: math.unit(8, "feet"),
  54068. weight: math.unit(300, "lb"),
  54069. name: "Back",
  54070. image: {
  54071. source: "./media/characters/khyla-shadowsong/back.svg",
  54072. extra: 855/808,
  54073. bottom: 14/869
  54074. }
  54075. },
  54076. head: {
  54077. height: math.unit(2.7, "feet"),
  54078. name: "Head",
  54079. image: {
  54080. source: "./media/characters/khyla-shadowsong/head.svg"
  54081. }
  54082. },
  54083. },
  54084. [
  54085. {
  54086. name: "Micro",
  54087. height: math.unit(6, "inches")
  54088. },
  54089. {
  54090. name: "Normal",
  54091. height: math.unit(8, "feet"),
  54092. default: true
  54093. },
  54094. ]
  54095. ))
  54096. characterMakers.push(() => makeCharacter(
  54097. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54098. {
  54099. hyperFront: {
  54100. height: math.unit(9 + 4/12, "feet"),
  54101. weight: math.unit(2000, "lb"),
  54102. name: "Front",
  54103. image: {
  54104. source: "./media/characters/tiden/hyper-front.svg",
  54105. extra: 400/382,
  54106. bottom: 6/406
  54107. },
  54108. form: "hyper",
  54109. },
  54110. regularFront: {
  54111. height: math.unit(7 + 10/12, "feet"),
  54112. weight: math.unit(470, "lb"),
  54113. name: "Front",
  54114. image: {
  54115. source: "./media/characters/tiden/regular-front.svg",
  54116. extra: 468/442,
  54117. bottom: 6/474
  54118. },
  54119. form: "regular",
  54120. },
  54121. },
  54122. [
  54123. {
  54124. name: "Normal",
  54125. height: math.unit(9 + 4/12, "feet"),
  54126. default: true,
  54127. form: "hyper"
  54128. },
  54129. {
  54130. name: "Normal",
  54131. height: math.unit(7 + 10/12, "feet"),
  54132. default: true,
  54133. form: "regular"
  54134. },
  54135. ],
  54136. {
  54137. "hyper": {
  54138. name: "Hyper",
  54139. default: true
  54140. },
  54141. "regular": {
  54142. name: "Regular",
  54143. },
  54144. }
  54145. ))
  54146. characterMakers.push(() => makeCharacter(
  54147. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54148. {
  54149. side: {
  54150. height: math.unit(6, "feet"),
  54151. weight: math.unit(150, "lb"),
  54152. name: "Side",
  54153. image: {
  54154. source: "./media/characters/jason-crowe/side.svg",
  54155. extra: 1771/766,
  54156. bottom: 219/1990
  54157. }
  54158. },
  54159. },
  54160. [
  54161. {
  54162. name: "Pocket Gryphon",
  54163. height: math.unit(6, "cm")
  54164. },
  54165. {
  54166. name: "Raven",
  54167. height: math.unit(60, "cm")
  54168. },
  54169. {
  54170. name: "Normal",
  54171. height: math.unit(1, "meter"),
  54172. default: true
  54173. },
  54174. ]
  54175. ))
  54176. characterMakers.push(() => makeCharacter(
  54177. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54178. {
  54179. front: {
  54180. height: math.unit(9 + 6/12, "feet"),
  54181. weight: math.unit(1100, "lb"),
  54182. name: "Front",
  54183. image: {
  54184. source: "./media/characters/django/front.svg",
  54185. extra: 1231/1136,
  54186. bottom: 34/1265
  54187. }
  54188. },
  54189. side: {
  54190. height: math.unit(9 + 6/12, "feet"),
  54191. weight: math.unit(1100, "lb"),
  54192. name: "Side",
  54193. image: {
  54194. source: "./media/characters/django/side.svg",
  54195. extra: 1267/1174,
  54196. bottom: 9/1276
  54197. }
  54198. },
  54199. },
  54200. [
  54201. {
  54202. name: "Normal",
  54203. height: math.unit(9 + 6/12, "feet"),
  54204. default: true
  54205. },
  54206. {
  54207. name: "Macro 1",
  54208. height: math.unit(50, "feet")
  54209. },
  54210. {
  54211. name: "Macro 2",
  54212. height: math.unit(500, "feet")
  54213. },
  54214. {
  54215. name: "Mega Macro",
  54216. height: math.unit(5300, "feet")
  54217. },
  54218. ]
  54219. ))
  54220. characterMakers.push(() => makeCharacter(
  54221. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54222. {
  54223. frontSfw: {
  54224. height: math.unit(120, "cm"),
  54225. weight: math.unit(15, "kg"),
  54226. name: "Front (SFW)",
  54227. image: {
  54228. source: "./media/characters/eri/front-sfw.svg",
  54229. extra: 1014/939,
  54230. bottom: 37/1051
  54231. },
  54232. form: "moth",
  54233. },
  54234. frontNsfw: {
  54235. height: math.unit(120, "cm"),
  54236. weight: math.unit(15, "kg"),
  54237. name: "Front (NSFW)",
  54238. image: {
  54239. source: "./media/characters/eri/front-nsfw.svg",
  54240. extra: 1014/939,
  54241. bottom: 37/1051
  54242. },
  54243. form: "moth",
  54244. default: true
  54245. },
  54246. egg: {
  54247. height: math.unit(10, "cm"),
  54248. name: "Egg",
  54249. image: {
  54250. source: "./media/characters/eri/egg.svg"
  54251. },
  54252. form: "egg",
  54253. default: true
  54254. },
  54255. },
  54256. [
  54257. {
  54258. name: "Normal",
  54259. height: math.unit(120, "cm"),
  54260. default: true,
  54261. form: "moth"
  54262. },
  54263. {
  54264. name: "Normal",
  54265. height: math.unit(10, "cm"),
  54266. default: true,
  54267. form: "egg"
  54268. },
  54269. ],
  54270. {
  54271. "moth": {
  54272. name: "Moth",
  54273. default: true
  54274. },
  54275. "egg": {
  54276. name: "Egg",
  54277. },
  54278. }
  54279. ))
  54280. characterMakers.push(() => makeCharacter(
  54281. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54282. {
  54283. front: {
  54284. height: math.unit(200, "feet"),
  54285. name: "Front",
  54286. image: {
  54287. source: "./media/characters/bishop-dowser/front.svg",
  54288. extra: 933/868,
  54289. bottom: 106/1039
  54290. }
  54291. },
  54292. },
  54293. [
  54294. {
  54295. name: "Giant",
  54296. height: math.unit(200, "feet"),
  54297. default: true
  54298. },
  54299. ]
  54300. ))
  54301. characterMakers.push(() => makeCharacter(
  54302. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54303. {
  54304. front: {
  54305. height: math.unit(2, "meters"),
  54306. preyCapacity: math.unit(3, "people"),
  54307. name: "Front",
  54308. image: {
  54309. source: "./media/characters/fryra/front.svg",
  54310. extra: 1025/948,
  54311. bottom: 30/1055
  54312. },
  54313. extraAttributes: {
  54314. "breastVolume": {
  54315. name: "Breast Volume",
  54316. power: 3,
  54317. type: "volume",
  54318. base: math.unit(8, "liters")
  54319. },
  54320. }
  54321. },
  54322. back: {
  54323. height: math.unit(2, "meters"),
  54324. preyCapacity: math.unit(3, "people"),
  54325. name: "Back",
  54326. image: {
  54327. source: "./media/characters/fryra/back.svg",
  54328. extra: 993/938,
  54329. bottom: 38/1031
  54330. },
  54331. extraAttributes: {
  54332. "breastVolume": {
  54333. name: "Breast Volume",
  54334. power: 3,
  54335. type: "volume",
  54336. base: math.unit(8, "liters")
  54337. },
  54338. }
  54339. },
  54340. head: {
  54341. height: math.unit(1.33, "feet"),
  54342. name: "Head",
  54343. image: {
  54344. source: "./media/characters/fryra/head.svg"
  54345. }
  54346. },
  54347. maw: {
  54348. height: math.unit(0.56, "feet"),
  54349. name: "Maw",
  54350. image: {
  54351. source: "./media/characters/fryra/maw.svg"
  54352. }
  54353. },
  54354. },
  54355. [
  54356. {
  54357. name: "Micro",
  54358. height: math.unit(5, "cm")
  54359. },
  54360. {
  54361. name: "Normal",
  54362. height: math.unit(2, "meters"),
  54363. default: true
  54364. },
  54365. {
  54366. name: "Small Macro",
  54367. height: math.unit(8, "meters")
  54368. },
  54369. {
  54370. name: "Macro",
  54371. height: math.unit(50, "meters")
  54372. },
  54373. {
  54374. name: "Megamacro",
  54375. height: math.unit(1, "km")
  54376. },
  54377. {
  54378. name: "Planetary",
  54379. height: math.unit(300000, "km")
  54380. },
  54381. {
  54382. name: "Universal",
  54383. height: math.unit(250, "lightyears")
  54384. },
  54385. {
  54386. name: "Fabric of Reality",
  54387. height: math.unit(1000, "multiverses")
  54388. },
  54389. ]
  54390. ))
  54391. characterMakers.push(() => makeCharacter(
  54392. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54393. {
  54394. frontDressed: {
  54395. height: math.unit(6 + 2/12, "feet"),
  54396. name: "Front (Dressed)",
  54397. image: {
  54398. source: "./media/characters/fiera/front-dressed.svg",
  54399. extra: 1883/1793,
  54400. bottom: 70/1953
  54401. }
  54402. },
  54403. backDressed: {
  54404. height: math.unit(6 + 2/12, "feet"),
  54405. name: "Back (Dressed)",
  54406. image: {
  54407. source: "./media/characters/fiera/back-dressed.svg",
  54408. extra: 1847/1780,
  54409. bottom: 70/1917
  54410. }
  54411. },
  54412. frontNude: {
  54413. height: math.unit(6 + 2/12, "feet"),
  54414. name: "Front (Nude)",
  54415. image: {
  54416. source: "./media/characters/fiera/front-nude.svg",
  54417. extra: 1875/1785,
  54418. bottom: 66/1941
  54419. }
  54420. },
  54421. backNude: {
  54422. height: math.unit(6 + 2/12, "feet"),
  54423. name: "Back (Nude)",
  54424. image: {
  54425. source: "./media/characters/fiera/back-nude.svg",
  54426. extra: 1855/1788,
  54427. bottom: 44/1899
  54428. }
  54429. },
  54430. maw: {
  54431. height: math.unit(1.3, "feet"),
  54432. name: "Maw",
  54433. image: {
  54434. source: "./media/characters/fiera/maw.svg"
  54435. }
  54436. },
  54437. paw: {
  54438. height: math.unit(1, "feet"),
  54439. name: "Paw",
  54440. image: {
  54441. source: "./media/characters/fiera/paw.svg"
  54442. }
  54443. },
  54444. shoe: {
  54445. height: math.unit(1.05, "feet"),
  54446. name: "Shoe",
  54447. image: {
  54448. source: "./media/characters/fiera/shoe.svg"
  54449. }
  54450. },
  54451. },
  54452. [
  54453. {
  54454. name: "Normal",
  54455. height: math.unit(6 + 2/12, "feet"),
  54456. default: true
  54457. },
  54458. {
  54459. name: "Size Difference",
  54460. height: math.unit(13, "feet")
  54461. },
  54462. {
  54463. name: "Macro",
  54464. height: math.unit(60, "feet")
  54465. },
  54466. {
  54467. name: "Mega Macro",
  54468. height: math.unit(200, "feet")
  54469. },
  54470. ]
  54471. ))
  54472. characterMakers.push(() => makeCharacter(
  54473. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54474. {
  54475. back: {
  54476. height: math.unit(6, "feet"),
  54477. name: "Back",
  54478. image: {
  54479. source: "./media/characters/flare/back.svg",
  54480. extra: 1883/1765,
  54481. bottom: 32/1915
  54482. }
  54483. },
  54484. },
  54485. [
  54486. {
  54487. name: "Normal",
  54488. height: math.unit(6 + 2/12, "feet"),
  54489. default: true
  54490. },
  54491. {
  54492. name: "Size Difference",
  54493. height: math.unit(13, "feet")
  54494. },
  54495. {
  54496. name: "Macro",
  54497. height: math.unit(60, "feet")
  54498. },
  54499. {
  54500. name: "Macro 2",
  54501. height: math.unit(100, "feet")
  54502. },
  54503. {
  54504. name: "Mega Macro",
  54505. height: math.unit(200, "feet")
  54506. },
  54507. ]
  54508. ))
  54509. characterMakers.push(() => makeCharacter(
  54510. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54511. {
  54512. front: {
  54513. height: math.unit(2.2, "m"),
  54514. weight: math.unit(300, "kg"),
  54515. name: "Front",
  54516. image: {
  54517. source: "./media/characters/hanna/front.svg",
  54518. extra: 1696/1502,
  54519. bottom: 206/1902
  54520. }
  54521. },
  54522. },
  54523. [
  54524. {
  54525. name: "Humanoid",
  54526. height: math.unit(2.2, "meters")
  54527. },
  54528. {
  54529. name: "Normal",
  54530. height: math.unit(4.8, "meters"),
  54531. default: true
  54532. },
  54533. ]
  54534. ))
  54535. characterMakers.push(() => makeCharacter(
  54536. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54537. {
  54538. front: {
  54539. height: math.unit(2.8, "meters"),
  54540. name: "Front",
  54541. image: {
  54542. source: "./media/characters/argo/front.svg",
  54543. extra: 731/518,
  54544. bottom: 84/815
  54545. }
  54546. },
  54547. },
  54548. [
  54549. {
  54550. name: "Normal",
  54551. height: math.unit(3, "meters"),
  54552. default: true
  54553. },
  54554. ]
  54555. ))
  54556. characterMakers.push(() => makeCharacter(
  54557. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54558. {
  54559. side: {
  54560. height: math.unit(3.8, "meters"),
  54561. name: "Side",
  54562. image: {
  54563. source: "./media/characters/sybil/side.svg",
  54564. extra: 382/361,
  54565. bottom: 25/407
  54566. }
  54567. },
  54568. },
  54569. [
  54570. {
  54571. name: "Normal",
  54572. height: math.unit(3.8, "meters"),
  54573. default: true
  54574. },
  54575. ]
  54576. ))
  54577. characterMakers.push(() => makeCharacter(
  54578. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54579. {
  54580. side: {
  54581. height: math.unit(6, "meters"),
  54582. name: "Side",
  54583. image: {
  54584. source: "./media/characters/plum/side.svg",
  54585. extra: 858/755,
  54586. bottom: 45/903
  54587. },
  54588. form: "taur",
  54589. default: true
  54590. },
  54591. back: {
  54592. height: math.unit(6.3, "meters"),
  54593. name: "Back",
  54594. image: {
  54595. source: "./media/characters/plum/back.svg",
  54596. extra: 887/813,
  54597. bottom: 32/919
  54598. },
  54599. form: "taur",
  54600. },
  54601. feral: {
  54602. height: math.unit(5.5, "meter"),
  54603. name: "Front",
  54604. image: {
  54605. source: "./media/characters/plum/feral.svg",
  54606. extra: 568/403,
  54607. bottom: 51/619
  54608. },
  54609. form: "feral",
  54610. default: true
  54611. },
  54612. head: {
  54613. height: math.unit(1.46, "meter"),
  54614. name: "Head",
  54615. image: {
  54616. source: "./media/characters/plum/head.svg"
  54617. },
  54618. form: "taur"
  54619. },
  54620. tailTop: {
  54621. height: math.unit(5.6, "meter"),
  54622. name: "Tail (Top)",
  54623. image: {
  54624. source: "./media/characters/plum/tail-top.svg"
  54625. },
  54626. form: "taur",
  54627. },
  54628. tailBottom: {
  54629. height: math.unit(5.6, "meter"),
  54630. name: "Tail (Bottom)",
  54631. image: {
  54632. source: "./media/characters/plum/tail-bottom.svg"
  54633. },
  54634. form: "taur",
  54635. },
  54636. feralHead: {
  54637. height: math.unit(2.56549521, "meter"),
  54638. name: "Head",
  54639. image: {
  54640. source: "./media/characters/plum/head.svg"
  54641. },
  54642. form: "feral"
  54643. },
  54644. feralTailTop: {
  54645. height: math.unit(5.44728435, "meter"),
  54646. name: "Tail (Top)",
  54647. image: {
  54648. source: "./media/characters/plum/tail-top.svg"
  54649. },
  54650. form: "feral",
  54651. },
  54652. feralTailBottom: {
  54653. height: math.unit(5.44728435, "meter"),
  54654. name: "Tail (Bottom)",
  54655. image: {
  54656. source: "./media/characters/plum/tail-bottom.svg"
  54657. },
  54658. form: "feral",
  54659. },
  54660. },
  54661. [
  54662. {
  54663. name: "Normal",
  54664. height: math.unit(6, "meters"),
  54665. default: true,
  54666. form: "taur"
  54667. },
  54668. {
  54669. name: "Normal",
  54670. height: math.unit(5.5, "meters"),
  54671. default: true,
  54672. form: "feral"
  54673. },
  54674. ],
  54675. {
  54676. "taur": {
  54677. name: "Taur",
  54678. default: true
  54679. },
  54680. "feral": {
  54681. name: "Feral",
  54682. },
  54683. }
  54684. ))
  54685. characterMakers.push(() => makeCharacter(
  54686. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54687. {
  54688. front: {
  54689. height: math.unit(6, "feet"),
  54690. weight: math.unit(115, "lb"),
  54691. name: "Front",
  54692. image: {
  54693. source: "./media/characters/celeste-kitsune/front.svg",
  54694. extra: 393/366,
  54695. bottom: 7/400
  54696. }
  54697. },
  54698. side: {
  54699. height: math.unit(6, "feet"),
  54700. weight: math.unit(115, "lb"),
  54701. name: "Side",
  54702. image: {
  54703. source: "./media/characters/celeste-kitsune/side.svg",
  54704. extra: 818/765,
  54705. bottom: 40/858
  54706. }
  54707. },
  54708. },
  54709. [
  54710. {
  54711. name: "Megamacro",
  54712. height: math.unit(1500, "miles"),
  54713. default: true
  54714. },
  54715. ]
  54716. ))
  54717. characterMakers.push(() => makeCharacter(
  54718. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54719. {
  54720. front: {
  54721. height: math.unit(8, "meters"),
  54722. name: "Front",
  54723. image: {
  54724. source: "./media/characters/io/front.svg",
  54725. extra: 865/722,
  54726. bottom: 58/923
  54727. }
  54728. },
  54729. back: {
  54730. height: math.unit(8, "meters"),
  54731. name: "Back",
  54732. image: {
  54733. source: "./media/characters/io/back.svg",
  54734. extra: 920/776,
  54735. bottom: 42/962
  54736. }
  54737. },
  54738. head: {
  54739. height: math.unit(5.09, "meters"),
  54740. name: "Head",
  54741. image: {
  54742. source: "./media/characters/io/head.svg"
  54743. }
  54744. },
  54745. hand: {
  54746. height: math.unit(1.6, "meters"),
  54747. name: "Hand",
  54748. image: {
  54749. source: "./media/characters/io/hand.svg"
  54750. }
  54751. },
  54752. foot: {
  54753. height: math.unit(2.4, "meters"),
  54754. name: "Foot",
  54755. image: {
  54756. source: "./media/characters/io/foot.svg"
  54757. }
  54758. },
  54759. },
  54760. [
  54761. {
  54762. name: "Normal",
  54763. height: math.unit(8, "meters"),
  54764. default: true
  54765. },
  54766. ]
  54767. ))
  54768. characterMakers.push(() => makeCharacter(
  54769. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54770. {
  54771. side: {
  54772. height: math.unit(6 + 3/12, "feet"),
  54773. weight: math.unit(225, "lb"),
  54774. name: "Side",
  54775. image: {
  54776. source: "./media/characters/silas/side.svg",
  54777. extra: 703/653,
  54778. bottom: 23/726
  54779. },
  54780. extraAttributes: {
  54781. "pawLength": {
  54782. name: "Paw Length",
  54783. power: 1,
  54784. type: "length",
  54785. base: math.unit(12, "inches")
  54786. },
  54787. "pawWidth": {
  54788. name: "Paw Width",
  54789. power: 1,
  54790. type: "length",
  54791. base: math.unit(4.5, "inches")
  54792. },
  54793. "pawArea": {
  54794. name: "Paw Area",
  54795. power: 2,
  54796. type: "area",
  54797. base: math.unit(12 * 4.5, "inches^2")
  54798. },
  54799. }
  54800. },
  54801. },
  54802. [
  54803. {
  54804. name: "Normal",
  54805. height: math.unit(6 + 3/12, "feet"),
  54806. default: true
  54807. },
  54808. ]
  54809. ))
  54810. characterMakers.push(() => makeCharacter(
  54811. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54812. {
  54813. back: {
  54814. height: math.unit(1.6, "meters"),
  54815. weight: math.unit(150, "lb"),
  54816. name: "Back",
  54817. image: {
  54818. source: "./media/characters/zari/back.svg",
  54819. extra: 424/411,
  54820. bottom: 32/456
  54821. },
  54822. extraAttributes: {
  54823. "bladderCapacity": {
  54824. name: "Bladder Size",
  54825. power: 3,
  54826. type: "volume",
  54827. base: math.unit(500, "mL")
  54828. },
  54829. "bladderFlow": {
  54830. name: "Flow Rate",
  54831. power: 3,
  54832. type: "volume",
  54833. base: math.unit(25, "mL")
  54834. },
  54835. }
  54836. },
  54837. },
  54838. [
  54839. {
  54840. name: "Normal",
  54841. height: math.unit(1.6, "meters"),
  54842. default: true
  54843. },
  54844. ]
  54845. ))
  54846. characterMakers.push(() => makeCharacter(
  54847. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54848. {
  54849. front: {
  54850. height: math.unit(25, "feet"),
  54851. weight: math.unit(5, "tons"),
  54852. name: "Front",
  54853. image: {
  54854. source: "./media/characters/charlie-human/front.svg",
  54855. extra: 1870/1740,
  54856. bottom: 102/1972
  54857. },
  54858. extraAttributes: {
  54859. "dickLength": {
  54860. name: "Dick Length",
  54861. power: 1,
  54862. type: "length",
  54863. base: math.unit(9, "feet")
  54864. },
  54865. }
  54866. },
  54867. back: {
  54868. height: math.unit(25, "feet"),
  54869. weight: math.unit(5, "tons"),
  54870. name: "Back",
  54871. image: {
  54872. source: "./media/characters/charlie-human/back.svg",
  54873. extra: 1858/1733,
  54874. bottom: 105/1963
  54875. },
  54876. extraAttributes: {
  54877. "dickLength": {
  54878. name: "Dick Length",
  54879. power: 1,
  54880. type: "length",
  54881. base: math.unit(9, "feet")
  54882. },
  54883. }
  54884. },
  54885. },
  54886. [
  54887. {
  54888. name: "\"Normal\"",
  54889. height: math.unit(6 + 4/12, "feet")
  54890. },
  54891. {
  54892. name: "Big",
  54893. height: math.unit(25, "feet"),
  54894. default: true
  54895. },
  54896. ]
  54897. ))
  54898. characterMakers.push(() => makeCharacter(
  54899. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54900. {
  54901. front: {
  54902. height: math.unit(6 + 4/12, "feet"),
  54903. weight: math.unit(320, "lb"),
  54904. name: "Front",
  54905. image: {
  54906. source: "./media/characters/ookitsu/front.svg",
  54907. extra: 1160/976,
  54908. bottom: 38/1198
  54909. }
  54910. },
  54911. frontNsfw: {
  54912. height: math.unit(6 + 4/12, "feet"),
  54913. weight: math.unit(320, "lb"),
  54914. name: "Front (NSFW)",
  54915. image: {
  54916. source: "./media/characters/ookitsu/front-nsfw.svg",
  54917. extra: 1160/976,
  54918. bottom: 38/1198
  54919. }
  54920. },
  54921. back: {
  54922. height: math.unit(6 + 4/12, "feet"),
  54923. weight: math.unit(320, "lb"),
  54924. name: "Back",
  54925. image: {
  54926. source: "./media/characters/ookitsu/back.svg",
  54927. extra: 1030/975,
  54928. bottom: 70/1100
  54929. }
  54930. },
  54931. head: {
  54932. height: math.unit(1.79, "feet"),
  54933. name: "Head",
  54934. image: {
  54935. source: "./media/characters/ookitsu/head.svg"
  54936. }
  54937. },
  54938. hand: {
  54939. height: math.unit(0.92, "feet"),
  54940. name: "Hand",
  54941. image: {
  54942. source: "./media/characters/ookitsu/hand.svg"
  54943. }
  54944. },
  54945. tails: {
  54946. height: math.unit(3.3, "feet"),
  54947. name: "Tails",
  54948. image: {
  54949. source: "./media/characters/ookitsu/tails.svg"
  54950. }
  54951. },
  54952. dick: {
  54953. height: math.unit(1.10833, "feet"),
  54954. name: "Dick",
  54955. image: {
  54956. source: "./media/characters/ookitsu/dick.svg"
  54957. }
  54958. },
  54959. },
  54960. [
  54961. {
  54962. name: "Normal",
  54963. height: math.unit(6 + 4/12, "feet"),
  54964. default: true
  54965. },
  54966. {
  54967. name: "Macro",
  54968. height: math.unit(30, "feet")
  54969. },
  54970. ]
  54971. ))
  54972. characterMakers.push(() => makeCharacter(
  54973. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54974. {
  54975. anthroFront: {
  54976. height: math.unit(6, "feet"),
  54977. weight: math.unit(250, "lb"),
  54978. name: "Front",
  54979. image: {
  54980. source: "./media/characters/jhusky/anthro-front.svg",
  54981. extra: 474/439,
  54982. bottom: 7/481
  54983. },
  54984. form: "anthro",
  54985. default: true
  54986. },
  54987. taurSideSfw: {
  54988. height: math.unit(6 + 4/12, "feet"),
  54989. weight: math.unit(500, "lb"),
  54990. name: "Side (SFW)",
  54991. image: {
  54992. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54993. extra: 1741/1629,
  54994. bottom: 196/1937
  54995. },
  54996. form: "taur",
  54997. default: true
  54998. },
  54999. taurSideNsfw: {
  55000. height: math.unit(6 + 4/12, "feet"),
  55001. weight: math.unit(500, "lb"),
  55002. name: "Taur (NSFW)",
  55003. image: {
  55004. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55005. extra: 1741/1629,
  55006. bottom: 196/1937
  55007. },
  55008. form: "taur",
  55009. },
  55010. },
  55011. [
  55012. {
  55013. name: "Huge",
  55014. height: math.unit(500, "feet"),
  55015. form: "anthro"
  55016. },
  55017. {
  55018. name: "Macro",
  55019. height: math.unit(1000, "feet"),
  55020. default: true,
  55021. form: "anthro"
  55022. },
  55023. {
  55024. name: "Megamacro",
  55025. height: math.unit(10000, "feet"),
  55026. form: "anthro"
  55027. },
  55028. {
  55029. name: "Huge",
  55030. height: math.unit(528, "feet"),
  55031. form: "taur"
  55032. },
  55033. {
  55034. name: "Macro",
  55035. height: math.unit(1056, "feet"),
  55036. default: true,
  55037. form: "taur"
  55038. },
  55039. {
  55040. name: "Megamacro",
  55041. height: math.unit(10556, "feet"),
  55042. form: "taur"
  55043. },
  55044. ],
  55045. {
  55046. "anthro": {
  55047. name: "Anthro",
  55048. default: true
  55049. },
  55050. "taur": {
  55051. name: "Taur",
  55052. },
  55053. }
  55054. ))
  55055. characterMakers.push(() => makeCharacter(
  55056. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55057. {
  55058. front: {
  55059. height: math.unit(8, "feet"),
  55060. weight: math.unit(500, "lb"),
  55061. name: "Front",
  55062. image: {
  55063. source: "./media/characters/armail/front.svg",
  55064. extra: 1753/1669,
  55065. bottom: 155/1908
  55066. }
  55067. },
  55068. back: {
  55069. height: math.unit(8, "feet"),
  55070. weight: math.unit(500, "lb"),
  55071. name: "Back",
  55072. image: {
  55073. source: "./media/characters/armail/back.svg",
  55074. extra: 1872/1803,
  55075. bottom: 63/1935
  55076. }
  55077. },
  55078. },
  55079. [
  55080. {
  55081. name: "Micro",
  55082. height: math.unit(0.25, "feet")
  55083. },
  55084. {
  55085. name: "Normal",
  55086. height: math.unit(8, "feet"),
  55087. default: true
  55088. },
  55089. {
  55090. name: "Mini-macro",
  55091. height: math.unit(30, "feet")
  55092. },
  55093. {
  55094. name: "Macro",
  55095. height: math.unit(400, "feet")
  55096. },
  55097. {
  55098. name: "Mega-macro",
  55099. height: math.unit(6000, "feet")
  55100. },
  55101. ]
  55102. ))
  55103. characterMakers.push(() => makeCharacter(
  55104. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55105. {
  55106. front: {
  55107. height: math.unit(6 + 7/12, "feet"),
  55108. weight: math.unit(210, "lb"),
  55109. name: "Front",
  55110. image: {
  55111. source: "./media/characters/wilfred-t-buxton/front.svg",
  55112. extra: 1068/882,
  55113. bottom: 28/1096
  55114. }
  55115. },
  55116. },
  55117. [
  55118. {
  55119. name: "Normal",
  55120. height: math.unit(6 + 7/12, "feet"),
  55121. default: true
  55122. },
  55123. ]
  55124. ))
  55125. characterMakers.push(() => makeCharacter(
  55126. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55127. {
  55128. front: {
  55129. height: math.unit(5 + 2/12, "feet"),
  55130. weight: math.unit(120, "lb"),
  55131. name: "Front",
  55132. image: {
  55133. source: "./media/characters/leighton-marrow/front.svg",
  55134. extra: 441/409,
  55135. bottom: 37/478
  55136. }
  55137. },
  55138. },
  55139. [
  55140. {
  55141. name: "Normal",
  55142. height: math.unit(5 + 2/12, "feet"),
  55143. default: true
  55144. },
  55145. ]
  55146. ))
  55147. characterMakers.push(() => makeCharacter(
  55148. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55149. {
  55150. front: {
  55151. height: math.unit(4, "meters"),
  55152. weight: math.unit(1200, "kg"),
  55153. name: "Front",
  55154. image: {
  55155. source: "./media/characters/licos/front.svg",
  55156. extra: 1727/1604,
  55157. bottom: 101/1828
  55158. },
  55159. form: "anthro",
  55160. default: true
  55161. },
  55162. taur_side: {
  55163. height: math.unit(20, "meters"),
  55164. weight: math.unit(1100000, "kg"),
  55165. name: "Side",
  55166. image: {
  55167. source: "./media/characters/licos/taur.svg",
  55168. extra: 1158/1091,
  55169. bottom: 80/1238
  55170. },
  55171. form: "taur",
  55172. default: true
  55173. },
  55174. },
  55175. [
  55176. {
  55177. name: "Normal",
  55178. height: math.unit(4, "meters"),
  55179. default: true,
  55180. form: "anthro"
  55181. },
  55182. {
  55183. name: "Normal",
  55184. height: math.unit(20, "meters"),
  55185. default: true,
  55186. form: "taur"
  55187. },
  55188. ],
  55189. {
  55190. "anthro": {
  55191. name: "Anthro",
  55192. default: true
  55193. },
  55194. "taur": {
  55195. name: "Taur",
  55196. },
  55197. }
  55198. ))
  55199. characterMakers.push(() => makeCharacter(
  55200. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55201. {
  55202. front: {
  55203. height: math.unit(10 + 3/12, "feet"),
  55204. name: "Front",
  55205. image: {
  55206. source: "./media/characters/theo-monkey/front.svg",
  55207. extra: 1735/1658,
  55208. bottom: 73/1808
  55209. }
  55210. },
  55211. back: {
  55212. height: math.unit(10 + 3/12, "feet"),
  55213. name: "Back",
  55214. image: {
  55215. source: "./media/characters/theo-monkey/back.svg",
  55216. extra: 1742/1664,
  55217. bottom: 33/1775
  55218. }
  55219. },
  55220. head: {
  55221. height: math.unit(2.29, "feet"),
  55222. name: "Head",
  55223. image: {
  55224. source: "./media/characters/theo-monkey/head.svg"
  55225. }
  55226. },
  55227. handPalm: {
  55228. height: math.unit(1.73, "feet"),
  55229. name: "Hand (Palm)",
  55230. image: {
  55231. source: "./media/characters/theo-monkey/hand-palm.svg"
  55232. }
  55233. },
  55234. handBack: {
  55235. height: math.unit(1.63, "feet"),
  55236. name: "Hand (Back)",
  55237. image: {
  55238. source: "./media/characters/theo-monkey/hand-back.svg"
  55239. }
  55240. },
  55241. footSole: {
  55242. height: math.unit(2.15, "feet"),
  55243. name: "Foot (Sole)",
  55244. image: {
  55245. source: "./media/characters/theo-monkey/foot-sole.svg"
  55246. }
  55247. },
  55248. footSide: {
  55249. height: math.unit(1.6, "feet"),
  55250. name: "Foot (Side)",
  55251. image: {
  55252. source: "./media/characters/theo-monkey/foot-side.svg"
  55253. }
  55254. },
  55255. },
  55256. [
  55257. {
  55258. name: "Normal",
  55259. height: math.unit(10 + 3/12, "feet"),
  55260. default: true
  55261. },
  55262. ]
  55263. ))
  55264. characterMakers.push(() => makeCharacter(
  55265. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55266. {
  55267. front: {
  55268. height: math.unit(11, "feet"),
  55269. weight: math.unit(3000, "lb"),
  55270. preyCapacity: math.unit(10, "people"),
  55271. name: "Front",
  55272. image: {
  55273. source: "./media/characters/brook/front.svg",
  55274. extra: 909/835,
  55275. bottom: 108/1017
  55276. }
  55277. },
  55278. back: {
  55279. height: math.unit(11, "feet"),
  55280. weight: math.unit(3000, "lb"),
  55281. preyCapacity: math.unit(10, "people"),
  55282. name: "Back",
  55283. image: {
  55284. source: "./media/characters/brook/back.svg",
  55285. extra: 976/916,
  55286. bottom: 34/1010
  55287. }
  55288. },
  55289. backAlt: {
  55290. height: math.unit(11, "feet"),
  55291. weight: math.unit(3000, "lb"),
  55292. preyCapacity: math.unit(10, "people"),
  55293. name: "Back (Alt)",
  55294. image: {
  55295. source: "./media/characters/brook/back-alt.svg",
  55296. extra: 1283/1213,
  55297. bottom: 35/1318
  55298. }
  55299. },
  55300. bust: {
  55301. height: math.unit(9.0859030837, "feet"),
  55302. weight: math.unit(3000, "lb"),
  55303. preyCapacity: math.unit(10, "people"),
  55304. name: "Bust",
  55305. image: {
  55306. source: "./media/characters/brook/bust.svg",
  55307. extra: 2043/1923,
  55308. bottom: 0/2043
  55309. }
  55310. },
  55311. },
  55312. [
  55313. {
  55314. name: "Small",
  55315. height: math.unit(11, "feet"),
  55316. default: true
  55317. },
  55318. {
  55319. name: "Towering",
  55320. height: math.unit(5, "km")
  55321. },
  55322. {
  55323. name: "Enormous",
  55324. height: math.unit(25, "earths")
  55325. },
  55326. ]
  55327. ))
  55328. characterMakers.push(() => makeCharacter(
  55329. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55330. {
  55331. front: {
  55332. height: math.unit(4, "feet"),
  55333. weight: math.unit(150, "lb"),
  55334. name: "Front",
  55335. image: {
  55336. source: "./media/characters/squishi/front.svg",
  55337. extra: 1428/1271,
  55338. bottom: 30/1458
  55339. },
  55340. extraAttributes: {
  55341. "pawSize": {
  55342. name: "Paw Size",
  55343. power: 1,
  55344. type: "length",
  55345. base: math.unit(14, "ShoeSizeMensUS"),
  55346. defaultUnit: "ShoeSizeMensUS"
  55347. },
  55348. }
  55349. },
  55350. side: {
  55351. height: math.unit(4, "feet"),
  55352. weight: math.unit(150, "lb"),
  55353. name: "Side",
  55354. image: {
  55355. source: "./media/characters/squishi/side.svg",
  55356. extra: 1428/1271,
  55357. bottom: 30/1458
  55358. },
  55359. extraAttributes: {
  55360. "pawSize": {
  55361. name: "Paw Size",
  55362. power: 1,
  55363. type: "length",
  55364. base: math.unit(14, "ShoeSizeMensUS"),
  55365. defaultUnit: "ShoeSizeMensUS"
  55366. },
  55367. }
  55368. },
  55369. back: {
  55370. height: math.unit(4, "feet"),
  55371. weight: math.unit(150, "lb"),
  55372. name: "Back",
  55373. image: {
  55374. source: "./media/characters/squishi/back.svg",
  55375. extra: 1428/1271,
  55376. bottom: 30/1458
  55377. },
  55378. extraAttributes: {
  55379. "pawSize": {
  55380. name: "Paw Size",
  55381. power: 1,
  55382. type: "length",
  55383. base: math.unit(14, "ShoeSizeMensUS"),
  55384. defaultUnit: "ShoeSizeMensUS"
  55385. },
  55386. }
  55387. },
  55388. },
  55389. [
  55390. {
  55391. name: "Normal",
  55392. height: math.unit(4, "feet"),
  55393. default: true
  55394. },
  55395. ]
  55396. ))
  55397. characterMakers.push(() => makeCharacter(
  55398. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55399. {
  55400. front: {
  55401. height: math.unit(7 + 8/12, "feet"),
  55402. weight: math.unit(333, "lb"),
  55403. name: "Front",
  55404. image: {
  55405. source: "./media/characters/vincent-vasroc/front.svg",
  55406. extra: 1962/1860,
  55407. bottom: 41/2003
  55408. }
  55409. },
  55410. back: {
  55411. height: math.unit(7 + 8/12, "feet"),
  55412. weight: math.unit(333, "lb"),
  55413. name: "Back",
  55414. image: {
  55415. source: "./media/characters/vincent-vasroc/back.svg",
  55416. extra: 1952/1815,
  55417. bottom: 33/1985
  55418. }
  55419. },
  55420. paw: {
  55421. height: math.unit(1.24, "feet"),
  55422. name: "Paw",
  55423. image: {
  55424. source: "./media/characters/vincent-vasroc/paw.svg"
  55425. }
  55426. },
  55427. ear: {
  55428. height: math.unit(0.75, "feet"),
  55429. name: "Ear",
  55430. image: {
  55431. source: "./media/characters/vincent-vasroc/ear.svg"
  55432. }
  55433. },
  55434. },
  55435. [
  55436. {
  55437. name: "Nano",
  55438. height: math.unit(92, "micrometers")
  55439. },
  55440. {
  55441. name: "Normal",
  55442. height: math.unit(7 + 8/12, "feet"),
  55443. default: true
  55444. },
  55445. ]
  55446. ))
  55447. characterMakers.push(() => makeCharacter(
  55448. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55449. {
  55450. frontNsfw: {
  55451. height: math.unit(40, "feet"),
  55452. weight: math.unit(58, "tons"),
  55453. name: "Front (NSFW)",
  55454. image: {
  55455. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55456. extra: 1265/965,
  55457. bottom: 155/1420
  55458. }
  55459. },
  55460. frontSfw: {
  55461. height: math.unit(40, "feet"),
  55462. weight: math.unit(58, "tons"),
  55463. name: "Front (SFW)",
  55464. image: {
  55465. source: "./media/characters/ru-kahn/front-sfw.svg",
  55466. extra: 1265/965,
  55467. bottom: 80/1345
  55468. }
  55469. },
  55470. },
  55471. [
  55472. {
  55473. name: "Small",
  55474. height: math.unit(4, "feet")
  55475. },
  55476. {
  55477. name: "Normal",
  55478. height: math.unit(40, "feet"),
  55479. default: true
  55480. },
  55481. {
  55482. name: "Macro",
  55483. height: math.unit(400, "feet")
  55484. },
  55485. ]
  55486. ))
  55487. characterMakers.push(() => makeCharacter(
  55488. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55489. {
  55490. frontNude: {
  55491. height: math.unit(6 + 5/12, "feet"),
  55492. name: "Front (Nude)",
  55493. image: {
  55494. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55495. extra: 1369/1366,
  55496. bottom: 68/1437
  55497. }
  55498. },
  55499. frontDressed: {
  55500. height: math.unit(6 + 5/12, "feet"),
  55501. name: "Front (Dressed)",
  55502. image: {
  55503. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55504. extra: 1369/1366,
  55505. bottom: 68/1437
  55506. }
  55507. },
  55508. },
  55509. [
  55510. {
  55511. name: "Normal",
  55512. height: math.unit(6 + 5/12, "feet"),
  55513. default: true
  55514. },
  55515. {
  55516. name: "Maximum",
  55517. height: math.unit(1930, "feet")
  55518. },
  55519. ]
  55520. ))
  55521. characterMakers.push(() => makeCharacter(
  55522. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55523. {
  55524. front: {
  55525. height: math.unit(5 + 6/12, "feet"),
  55526. name: "Front",
  55527. image: {
  55528. source: "./media/characters/kaja/front.svg",
  55529. extra: 1874/1514,
  55530. bottom: 117/1991
  55531. }
  55532. },
  55533. },
  55534. [
  55535. {
  55536. name: "Normal",
  55537. height: math.unit(5 + 6/12, "feet"),
  55538. default: true
  55539. },
  55540. ]
  55541. ))
  55542. characterMakers.push(() => makeCharacter(
  55543. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55544. {
  55545. front: {
  55546. height: math.unit(5 + 9/12, "feet"),
  55547. weight: math.unit(200, "lb"),
  55548. name: "Front",
  55549. image: {
  55550. source: "./media/characters/mark-smith/front.svg",
  55551. extra: 1004/943,
  55552. bottom: 58/1062
  55553. }
  55554. },
  55555. back: {
  55556. height: math.unit(5 + 9/12, "feet"),
  55557. weight: math.unit(200, "lb"),
  55558. name: "Back",
  55559. image: {
  55560. source: "./media/characters/mark-smith/back.svg",
  55561. extra: 1023/953,
  55562. bottom: 24/1047
  55563. }
  55564. },
  55565. head: {
  55566. height: math.unit(1.82, "feet"),
  55567. name: "Head",
  55568. image: {
  55569. source: "./media/characters/mark-smith/head.svg"
  55570. }
  55571. },
  55572. hand: {
  55573. height: math.unit(1.4, "feet"),
  55574. name: "Hand",
  55575. image: {
  55576. source: "./media/characters/mark-smith/hand.svg"
  55577. }
  55578. },
  55579. paw: {
  55580. height: math.unit(1.69, "feet"),
  55581. name: "Paw",
  55582. image: {
  55583. source: "./media/characters/mark-smith/paw.svg"
  55584. }
  55585. },
  55586. },
  55587. [
  55588. {
  55589. name: "Micro",
  55590. height: math.unit(0.25, "inches")
  55591. },
  55592. {
  55593. name: "Normal",
  55594. height: math.unit(5 + 9/12, "feet"),
  55595. default: true
  55596. },
  55597. {
  55598. name: "Macro",
  55599. height: math.unit(500, "feet")
  55600. },
  55601. ]
  55602. ))
  55603. characterMakers.push(() => makeCharacter(
  55604. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55605. {
  55606. frontNude: {
  55607. height: math.unit(6, "feet"),
  55608. name: "Front (Nude)",
  55609. image: {
  55610. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55611. extra: 1384/1321,
  55612. bottom: 57/1441
  55613. }
  55614. },
  55615. frontDressed: {
  55616. height: math.unit(6, "feet"),
  55617. name: "Front (Dressed)",
  55618. image: {
  55619. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55620. extra: 1384/1321,
  55621. bottom: 57/1441
  55622. }
  55623. },
  55624. },
  55625. [
  55626. {
  55627. name: "Normal",
  55628. height: math.unit(6, "feet"),
  55629. default: true
  55630. },
  55631. {
  55632. name: "Maximum",
  55633. height: math.unit(1776, "feet")
  55634. },
  55635. ]
  55636. ))
  55637. characterMakers.push(() => makeCharacter(
  55638. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55639. {
  55640. front: {
  55641. height: math.unit(2 + 4/12, "feet"),
  55642. weight: math.unit(350, "lb"),
  55643. name: "Front",
  55644. image: {
  55645. source: "./media/characters/devos/front.svg",
  55646. extra: 958/852,
  55647. bottom: 143/1101
  55648. }
  55649. },
  55650. },
  55651. [
  55652. {
  55653. name: "Base",
  55654. height: math.unit(2 + 4/12, "feet"),
  55655. default: true
  55656. },
  55657. ]
  55658. ))
  55659. characterMakers.push(() => makeCharacter(
  55660. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55661. {
  55662. front: {
  55663. height: math.unit(9 + 2/12, "feet"),
  55664. name: "Front",
  55665. image: {
  55666. source: "./media/characters/hiveheart/front.svg",
  55667. extra: 394/364,
  55668. bottom: 65/459
  55669. }
  55670. },
  55671. back: {
  55672. height: math.unit(9 + 2/12, "feet"),
  55673. name: "Back",
  55674. image: {
  55675. source: "./media/characters/hiveheart/back.svg",
  55676. extra: 374/357,
  55677. bottom: 63/437
  55678. }
  55679. },
  55680. },
  55681. [
  55682. {
  55683. name: "Base",
  55684. height: math.unit(9 + 2/12, "feet"),
  55685. default: true
  55686. },
  55687. ]
  55688. ))
  55689. characterMakers.push(() => makeCharacter(
  55690. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55691. {
  55692. front: {
  55693. height: math.unit(2.5, "inches"),
  55694. weight: math.unit(0.6, "oz"),
  55695. name: "Front",
  55696. image: {
  55697. source: "./media/characters/bryn/front.svg",
  55698. extra: 1480/1205,
  55699. bottom: 27/1507
  55700. }
  55701. },
  55702. back: {
  55703. height: math.unit(2.5, "inches"),
  55704. weight: math.unit(0.6, "oz"),
  55705. name: "Back",
  55706. image: {
  55707. source: "./media/characters/bryn/back.svg",
  55708. extra: 1475/1201,
  55709. bottom: 39/1514
  55710. }
  55711. },
  55712. foot: {
  55713. height: math.unit(0.4, "inches"),
  55714. name: "Foot",
  55715. image: {
  55716. source: "./media/characters/bryn/foot.svg"
  55717. }
  55718. },
  55719. },
  55720. [
  55721. {
  55722. name: "Normal",
  55723. height: math.unit(2.5, "inches"),
  55724. default: true
  55725. },
  55726. ]
  55727. ))
  55728. characterMakers.push(() => makeCharacter(
  55729. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55730. {
  55731. side: {
  55732. height: math.unit(7, "feet"),
  55733. weight: math.unit(657, "kg"),
  55734. name: "Side",
  55735. image: {
  55736. source: "./media/characters/delta/side.svg",
  55737. extra: 781/212,
  55738. bottom: 7/788
  55739. },
  55740. extraAttributes: {
  55741. "wingspan": {
  55742. name: "Wingspan",
  55743. power: 1,
  55744. type: "length",
  55745. base: math.unit(48, "feet")
  55746. },
  55747. "length": {
  55748. name: "Length",
  55749. power: 1,
  55750. type: "length",
  55751. base: math.unit(21, "feet")
  55752. },
  55753. "pawSize": {
  55754. name: "Paw Size",
  55755. power: 2,
  55756. type: "area",
  55757. base: math.unit(1.5*1.4, "feet^2")
  55758. },
  55759. }
  55760. },
  55761. },
  55762. [
  55763. {
  55764. name: "Normal",
  55765. height: math.unit(6, "feet"),
  55766. default: true
  55767. },
  55768. ]
  55769. ))
  55770. characterMakers.push(() => makeCharacter(
  55771. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55772. {
  55773. front: {
  55774. height: math.unit(6, "feet"),
  55775. name: "Front",
  55776. image: {
  55777. source: "./media/characters/pyrow/front.svg",
  55778. extra: 513/486,
  55779. bottom: 14/527
  55780. }
  55781. },
  55782. frontWing: {
  55783. height: math.unit(6, "feet"),
  55784. name: "Front (Wing)",
  55785. image: {
  55786. source: "./media/characters/pyrow/front-wing.svg",
  55787. extra: 539/383,
  55788. bottom: 20/559
  55789. }
  55790. },
  55791. back: {
  55792. height: math.unit(6, "feet"),
  55793. name: "Back",
  55794. image: {
  55795. source: "./media/characters/pyrow/back.svg",
  55796. extra: 500/473,
  55797. bottom: 9/509
  55798. }
  55799. },
  55800. },
  55801. [
  55802. {
  55803. name: "Normal",
  55804. height: math.unit(6, "feet"),
  55805. default: true
  55806. },
  55807. ]
  55808. ))
  55809. characterMakers.push(() => makeCharacter(
  55810. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55811. {
  55812. front: {
  55813. height: math.unit(5, "meters"),
  55814. weight: math.unit(3, "tonnes"),
  55815. name: "Front",
  55816. image: {
  55817. source: "./media/characters/velikan/front.svg",
  55818. extra: 867/744,
  55819. bottom: 71/938
  55820. },
  55821. extraAttributes: {
  55822. "shoeSize": {
  55823. name: "Shoe Size",
  55824. power: 1,
  55825. type: "length",
  55826. base: math.unit(135, "ShoeSizeUK"),
  55827. defaultUnit: "ShoeSizeUK"
  55828. },
  55829. }
  55830. },
  55831. },
  55832. [
  55833. {
  55834. name: "Normal",
  55835. height: math.unit(5, "meters"),
  55836. default: true
  55837. },
  55838. {
  55839. name: "Macro",
  55840. height: math.unit(1, "km")
  55841. },
  55842. {
  55843. name: "Mega Macro",
  55844. height: math.unit(100, "km")
  55845. },
  55846. {
  55847. name: "Giga Macro",
  55848. height: math.unit(2, "megameters")
  55849. },
  55850. {
  55851. name: "Planetary",
  55852. height: math.unit(22, "megameters")
  55853. },
  55854. {
  55855. name: "Solar",
  55856. height: math.unit(8, "gigameters")
  55857. },
  55858. {
  55859. name: "Cosmic",
  55860. height: math.unit(10, "zettameters")
  55861. },
  55862. {
  55863. name: "Omni",
  55864. height: math.unit(9e260, "multiverses")
  55865. },
  55866. ]
  55867. ))
  55868. characterMakers.push(() => makeCharacter(
  55869. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55870. {
  55871. front: {
  55872. height: math.unit(4 + 3/12, "feet"),
  55873. weight: math.unit(90, "lb"),
  55874. name: "Front",
  55875. image: {
  55876. source: "./media/characters/sabiki/front.svg",
  55877. extra: 1662/1423,
  55878. bottom: 65/1727
  55879. }
  55880. },
  55881. },
  55882. [
  55883. {
  55884. name: "Normal",
  55885. height: math.unit(4 + 3/12, "feet"),
  55886. default: true
  55887. },
  55888. ]
  55889. ))
  55890. characterMakers.push(() => makeCharacter(
  55891. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55892. {
  55893. frontSfw: {
  55894. height: math.unit(2, "mm"),
  55895. name: "Front (SFW)",
  55896. image: {
  55897. source: "./media/characters/carmel/front-sfw.svg",
  55898. extra: 1131/1006,
  55899. bottom: 66/1197
  55900. }
  55901. },
  55902. frontNsfw: {
  55903. height: math.unit(2, "mm"),
  55904. name: "Front (NSFW)",
  55905. image: {
  55906. source: "./media/characters/carmel/front-nsfw.svg",
  55907. extra: 1131/1006,
  55908. bottom: 66/1197
  55909. }
  55910. },
  55911. foot: {
  55912. height: math.unit(0.3, "mm"),
  55913. name: "Foot",
  55914. image: {
  55915. source: "./media/characters/carmel/foot.svg"
  55916. }
  55917. },
  55918. tongue: {
  55919. height: math.unit(0.71, "mm"),
  55920. name: "Tongue",
  55921. image: {
  55922. source: "./media/characters/carmel/tongue.svg"
  55923. }
  55924. },
  55925. dick: {
  55926. height: math.unit(0.085, "mm"),
  55927. name: "Dick",
  55928. image: {
  55929. source: "./media/characters/carmel/dick.svg"
  55930. }
  55931. },
  55932. },
  55933. [
  55934. {
  55935. name: "Micro",
  55936. height: math.unit(2, "mm"),
  55937. default: true
  55938. },
  55939. {
  55940. name: "Normal",
  55941. height: math.unit(4 + 8/12, "feet")
  55942. },
  55943. {
  55944. name: "Mega Macro",
  55945. height: math.unit(250, "feet")
  55946. },
  55947. {
  55948. name: "BIGGER",
  55949. height: math.unit(1000, "feet")
  55950. },
  55951. {
  55952. name: "BIGGEST",
  55953. height: math.unit(2, "miles")
  55954. },
  55955. ]
  55956. ))
  55957. characterMakers.push(() => makeCharacter(
  55958. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55959. {
  55960. front: {
  55961. height: math.unit(6.5, "feet"),
  55962. weight: math.unit(198, "lb"),
  55963. name: "Front",
  55964. image: {
  55965. source: "./media/characters/tamani/anthro.svg",
  55966. extra: 930/890,
  55967. bottom: 34/964
  55968. },
  55969. form: "anthro",
  55970. default: true
  55971. },
  55972. side: {
  55973. height: math.unit(6, "feet"),
  55974. weight: math.unit(198*2, "lb"),
  55975. name: "Side",
  55976. image: {
  55977. source: "./media/characters/tamani/feral.svg",
  55978. extra: 559/519,
  55979. bottom: 43/602
  55980. },
  55981. form: "feral"
  55982. },
  55983. },
  55984. [
  55985. {
  55986. name: "Normal",
  55987. height: math.unit(6.5, "feet"),
  55988. default: true,
  55989. form: "anthro"
  55990. },
  55991. {
  55992. name: "Normal",
  55993. height: math.unit(6, "feet"),
  55994. default: true,
  55995. form: "feral"
  55996. },
  55997. ],
  55998. {
  55999. "anthro": {
  56000. name: "Anthro",
  56001. default: true
  56002. },
  56003. "feral": {
  56004. name: "Feral",
  56005. },
  56006. }
  56007. ))
  56008. characterMakers.push(() => makeCharacter(
  56009. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56010. {
  56011. front: {
  56012. height: math.unit(4 + 1/12, "feet"),
  56013. weight: math.unit(114, "lb"),
  56014. name: "Front",
  56015. image: {
  56016. source: "./media/characters/dex/front.svg",
  56017. extra: 787/680,
  56018. bottom: 18/805
  56019. }
  56020. },
  56021. side: {
  56022. height: math.unit(4 + 1/12, "feet"),
  56023. weight: math.unit(114, "lb"),
  56024. name: "Side",
  56025. image: {
  56026. source: "./media/characters/dex/side.svg",
  56027. extra: 785/680,
  56028. bottom: 12/797
  56029. }
  56030. },
  56031. back: {
  56032. height: math.unit(4 + 1/12, "feet"),
  56033. weight: math.unit(114, "lb"),
  56034. name: "Back",
  56035. image: {
  56036. source: "./media/characters/dex/back.svg",
  56037. extra: 785/681,
  56038. bottom: 17/802
  56039. }
  56040. },
  56041. loungewear: {
  56042. height: math.unit(4 + 1/12, "feet"),
  56043. weight: math.unit(114, "lb"),
  56044. name: "Loungewear",
  56045. image: {
  56046. source: "./media/characters/dex/loungewear.svg",
  56047. extra: 787/680,
  56048. bottom: 18/805
  56049. }
  56050. },
  56051. workout: {
  56052. height: math.unit(4 + 1/12, "feet"),
  56053. weight: math.unit(114, "lb"),
  56054. name: "Workout",
  56055. image: {
  56056. source: "./media/characters/dex/workout.svg",
  56057. extra: 787/680,
  56058. bottom: 18/805
  56059. }
  56060. },
  56061. schoolUniform: {
  56062. height: math.unit(4 + 1/12, "feet"),
  56063. weight: math.unit(114, "lb"),
  56064. name: "School-uniform",
  56065. image: {
  56066. source: "./media/characters/dex/school-uniform.svg",
  56067. extra: 787/680,
  56068. bottom: 18/805
  56069. }
  56070. },
  56071. maw: {
  56072. height: math.unit(0.55, "feet"),
  56073. name: "Maw",
  56074. image: {
  56075. source: "./media/characters/dex/maw.svg"
  56076. }
  56077. },
  56078. paw: {
  56079. height: math.unit(0.87, "feet"),
  56080. name: "Paw",
  56081. image: {
  56082. source: "./media/characters/dex/paw.svg"
  56083. }
  56084. },
  56085. bust: {
  56086. height: math.unit(1.67, "feet"),
  56087. name: "Bust",
  56088. image: {
  56089. source: "./media/characters/dex/bust.svg"
  56090. }
  56091. },
  56092. },
  56093. [
  56094. {
  56095. name: "Normal",
  56096. height: math.unit(4 + 1/12, "feet"),
  56097. default: true
  56098. },
  56099. ]
  56100. ))
  56101. characterMakers.push(() => makeCharacter(
  56102. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56103. {
  56104. front: {
  56105. height: math.unit(4 + 3/12, "feet"),
  56106. weight: math.unit(60, "lb"),
  56107. name: "Front",
  56108. image: {
  56109. source: "./media/characters/silke/front.svg",
  56110. extra: 1334/1122,
  56111. bottom: 21/1355
  56112. }
  56113. },
  56114. back: {
  56115. height: math.unit(4 + 3/12, "feet"),
  56116. weight: math.unit(60, "lb"),
  56117. name: "Back",
  56118. image: {
  56119. source: "./media/characters/silke/back.svg",
  56120. extra: 1328/1092,
  56121. bottom: 16/1344
  56122. }
  56123. },
  56124. dressed: {
  56125. height: math.unit(4 + 3/12, "feet"),
  56126. weight: math.unit(60, "lb"),
  56127. name: "Dressed",
  56128. image: {
  56129. source: "./media/characters/silke/dressed.svg",
  56130. extra: 1334/1122,
  56131. bottom: 43/1377
  56132. }
  56133. },
  56134. },
  56135. [
  56136. {
  56137. name: "Normal",
  56138. height: math.unit(4 + 3/12, "feet"),
  56139. default: true
  56140. },
  56141. ]
  56142. ))
  56143. characterMakers.push(() => makeCharacter(
  56144. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56145. {
  56146. front: {
  56147. height: math.unit(1.58, "meters"),
  56148. weight: math.unit(47, "kg"),
  56149. name: "Front",
  56150. image: {
  56151. source: "./media/characters/wireshark/front.svg",
  56152. extra: 883/838,
  56153. bottom: 66/949
  56154. }
  56155. },
  56156. },
  56157. [
  56158. {
  56159. name: "Normal",
  56160. height: math.unit(1.58, "meters"),
  56161. default: true
  56162. },
  56163. ]
  56164. ))
  56165. characterMakers.push(() => makeCharacter(
  56166. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56167. {
  56168. front: {
  56169. height: math.unit(6, "meters"),
  56170. weight: math.unit(15000, "kg"),
  56171. name: "Front",
  56172. image: {
  56173. source: "./media/characters/gallagher/front.svg",
  56174. extra: 532/493,
  56175. bottom: 0/532
  56176. }
  56177. },
  56178. },
  56179. [
  56180. {
  56181. name: "Normal",
  56182. height: math.unit(6, "meters"),
  56183. default: true
  56184. },
  56185. ]
  56186. ))
  56187. characterMakers.push(() => makeCharacter(
  56188. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56189. {
  56190. front: {
  56191. height: math.unit(2.4, "meters"),
  56192. weight: math.unit(270, "kg"),
  56193. name: "Front",
  56194. image: {
  56195. source: "./media/characters/alice/front.svg",
  56196. extra: 950/900,
  56197. bottom: 36/986
  56198. }
  56199. },
  56200. side: {
  56201. height: math.unit(2.4, "meters"),
  56202. weight: math.unit(270, "kg"),
  56203. name: "Side",
  56204. image: {
  56205. source: "./media/characters/alice/side.svg",
  56206. extra: 921/876,
  56207. bottom: 19/940
  56208. }
  56209. },
  56210. dressed: {
  56211. height: math.unit(2.4, "meters"),
  56212. weight: math.unit(270, "kg"),
  56213. name: "Dressed",
  56214. image: {
  56215. source: "./media/characters/alice/dressed.svg",
  56216. extra: 905/850,
  56217. bottom: 81/986
  56218. }
  56219. },
  56220. fishnet: {
  56221. height: math.unit(2.4, "meters"),
  56222. weight: math.unit(270, "kg"),
  56223. name: "Fishnet",
  56224. image: {
  56225. source: "./media/characters/alice/fishnet.svg",
  56226. extra: 905/850,
  56227. bottom: 81/986
  56228. }
  56229. },
  56230. },
  56231. [
  56232. {
  56233. name: "Normal",
  56234. height: math.unit(2.4, "meters"),
  56235. default: true
  56236. },
  56237. ]
  56238. ))
  56239. characterMakers.push(() => makeCharacter(
  56240. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56241. {
  56242. front: {
  56243. height: math.unit(175.25, "feet"),
  56244. name: "Front",
  56245. image: {
  56246. source: "./media/characters/fio/front.svg",
  56247. extra: 1883/1591,
  56248. bottom: 34/1917
  56249. }
  56250. },
  56251. },
  56252. [
  56253. {
  56254. name: "Normal",
  56255. height: math.unit(175.25, "cm"),
  56256. default: true
  56257. },
  56258. ]
  56259. ))
  56260. characterMakers.push(() => makeCharacter(
  56261. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56262. {
  56263. side: {
  56264. height: math.unit(6, "meters"),
  56265. weight: math.unit(3400, "kg"),
  56266. preyCapacity: math.unit(1700, "liters"),
  56267. name: "Side",
  56268. image: {
  56269. source: "./media/characters/hass/side.svg",
  56270. extra: 1058/997,
  56271. bottom: 177/1235
  56272. }
  56273. },
  56274. feeding: {
  56275. height: math.unit(6*0.63, "meters"),
  56276. weight: math.unit(3400, "kg"),
  56277. preyCapacity: math.unit(1700, "liters"),
  56278. name: "Feeding",
  56279. image: {
  56280. source: "./media/characters/hass/feeding.svg",
  56281. extra: 689/579,
  56282. bottom: 146/835
  56283. }
  56284. },
  56285. guts: {
  56286. height: math.unit(6, "meters"),
  56287. weight: math.unit(3400, "kg"),
  56288. name: "Guts",
  56289. image: {
  56290. source: "./media/characters/hass/guts.svg",
  56291. extra: 1223/1198,
  56292. bottom: 182/1405
  56293. }
  56294. },
  56295. dickFront: {
  56296. height: math.unit(1.4, "meters"),
  56297. name: "Dick (Front)",
  56298. image: {
  56299. source: "./media/characters/hass/dick-front.svg"
  56300. }
  56301. },
  56302. dickSide: {
  56303. height: math.unit(1.3, "meters"),
  56304. name: "Dick (Side)",
  56305. image: {
  56306. source: "./media/characters/hass/dick-side.svg"
  56307. }
  56308. },
  56309. dickBack: {
  56310. height: math.unit(1.4, "meters"),
  56311. name: "Dick (Back)",
  56312. image: {
  56313. source: "./media/characters/hass/dick-back.svg"
  56314. }
  56315. },
  56316. },
  56317. [
  56318. {
  56319. name: "Normal",
  56320. height: math.unit(6, "meters"),
  56321. default: true
  56322. },
  56323. ]
  56324. ))
  56325. characterMakers.push(() => makeCharacter(
  56326. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56327. {
  56328. front: {
  56329. height: math.unit(4, "feet"),
  56330. weight: math.unit(60, "lb"),
  56331. name: "Front",
  56332. image: {
  56333. source: "./media/characters/hickory-finnegan/front.svg",
  56334. extra: 444/411,
  56335. bottom: 10/454
  56336. }
  56337. },
  56338. side: {
  56339. height: math.unit(4, "feet"),
  56340. weight: math.unit(60, "lb"),
  56341. name: "Side",
  56342. image: {
  56343. source: "./media/characters/hickory-finnegan/side.svg",
  56344. extra: 444/411,
  56345. bottom: 10/454
  56346. }
  56347. },
  56348. back: {
  56349. height: math.unit(4, "feet"),
  56350. weight: math.unit(60, "lb"),
  56351. name: "Back",
  56352. image: {
  56353. source: "./media/characters/hickory-finnegan/back.svg",
  56354. extra: 444/411,
  56355. bottom: 10/454
  56356. }
  56357. },
  56358. },
  56359. [
  56360. {
  56361. name: "Normal",
  56362. height: math.unit(4, "feet"),
  56363. default: true
  56364. },
  56365. ]
  56366. ))
  56367. characterMakers.push(() => makeCharacter(
  56368. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56369. {
  56370. snivy_front: {
  56371. height: math.unit(2, "feet"),
  56372. weight: math.unit(17.9, "lb"),
  56373. name: "Front",
  56374. image: {
  56375. source: "./media/characters/robin-phox/snivy-front.svg",
  56376. extra: 569/504,
  56377. bottom: 33/602
  56378. },
  56379. form: "snivy",
  56380. default: true
  56381. },
  56382. snivy_frontNsfw: {
  56383. height: math.unit(2, "feet"),
  56384. weight: math.unit(17.9, "lb"),
  56385. name: "Front (NSFW)",
  56386. image: {
  56387. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56388. extra: 569/504,
  56389. bottom: 33/602
  56390. },
  56391. form: "snivy",
  56392. },
  56393. snivy_back: {
  56394. height: math.unit(2, "feet"),
  56395. weight: math.unit(17.9, "lb"),
  56396. name: "Back",
  56397. image: {
  56398. source: "./media/characters/robin-phox/snivy-back.svg",
  56399. extra: 577/508,
  56400. bottom: 21/598
  56401. },
  56402. form: "snivy",
  56403. },
  56404. snivy_foot: {
  56405. height: math.unit(0.68, "feet"),
  56406. name: "Foot",
  56407. image: {
  56408. source: "./media/characters/robin-phox/snivy-foot.svg"
  56409. },
  56410. form: "snivy",
  56411. },
  56412. snivy_sole: {
  56413. height: math.unit(0.68, "feet"),
  56414. name: "Sole",
  56415. image: {
  56416. source: "./media/characters/robin-phox/snivy-sole.svg"
  56417. },
  56418. form: "snivy",
  56419. },
  56420. yoshi_front: {
  56421. height: math.unit(6, "feet"),
  56422. weight: math.unit(150, "lb"),
  56423. name: "Front",
  56424. image: {
  56425. source: "./media/characters/robin-phox/yoshi-front.svg",
  56426. extra: 890/792,
  56427. bottom: 29/919
  56428. },
  56429. form: "yoshi",
  56430. default: true
  56431. },
  56432. yoshi_frontNsfw: {
  56433. height: math.unit(6, "feet"),
  56434. weight: math.unit(150, "lb"),
  56435. name: "Front (NSFW)",
  56436. image: {
  56437. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56438. extra: 890/792,
  56439. bottom: 29/919
  56440. },
  56441. form: "yoshi",
  56442. },
  56443. yoshi_back: {
  56444. height: math.unit(6, "feet"),
  56445. weight: math.unit(150, "lb"),
  56446. name: "Back",
  56447. image: {
  56448. source: "./media/characters/robin-phox/yoshi-back.svg",
  56449. extra: 890/792,
  56450. bottom: 29/919
  56451. },
  56452. form: "yoshi",
  56453. },
  56454. yoshi_foot: {
  56455. height: math.unit(1.5, "feet"),
  56456. name: "Foot",
  56457. image: {
  56458. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56459. },
  56460. form: "yoshi",
  56461. },
  56462. delphox_front: {
  56463. height: math.unit(4 + 11/12, "feet"),
  56464. weight: math.unit(86, "lb"),
  56465. name: "Front",
  56466. image: {
  56467. source: "./media/characters/robin-phox/delphox-front.svg",
  56468. extra: 1266/1069,
  56469. bottom: 32/1298
  56470. },
  56471. form: "delphox",
  56472. default: true
  56473. },
  56474. delphox_frontNsfw: {
  56475. height: math.unit(4 + 11/12, "feet"),
  56476. weight: math.unit(86, "lb"),
  56477. name: "Front (NSFW)",
  56478. image: {
  56479. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56480. extra: 1266/1069,
  56481. bottom: 32/1298
  56482. },
  56483. form: "delphox",
  56484. },
  56485. delphox_back: {
  56486. height: math.unit(4 + 11/12, "feet"),
  56487. weight: math.unit(86, "lb"),
  56488. name: "Back",
  56489. image: {
  56490. source: "./media/characters/robin-phox/delphox-back.svg",
  56491. extra: 1269/1083,
  56492. bottom: 15/1284
  56493. },
  56494. form: "delphox",
  56495. },
  56496. mienshao_front: {
  56497. height: math.unit(4 + 7/12, "feet"),
  56498. weight: math.unit(78.3, "lb"),
  56499. name: "Front",
  56500. image: {
  56501. source: "./media/characters/robin-phox/mienshao-front.svg",
  56502. extra: 1052/970,
  56503. bottom: 108/1160
  56504. },
  56505. form: "mienshao",
  56506. default: true
  56507. },
  56508. mienshao_frontNsfw: {
  56509. height: math.unit(4 + 7/12, "feet"),
  56510. weight: math.unit(78.3, "lb"),
  56511. name: "Front (NSFW)",
  56512. image: {
  56513. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56514. extra: 1052/970,
  56515. bottom: 108/1160
  56516. },
  56517. form: "mienshao",
  56518. },
  56519. mienshao_back: {
  56520. height: math.unit(4 + 7/12, "feet"),
  56521. weight: math.unit(78.3, "lb"),
  56522. name: "Back",
  56523. image: {
  56524. source: "./media/characters/robin-phox/mienshao-back.svg",
  56525. extra: 1102/982,
  56526. bottom: 32/1134
  56527. },
  56528. form: "mienshao",
  56529. },
  56530. inteleon_front: {
  56531. height: math.unit(6 + 3/12, "feet"),
  56532. weight: math.unit(99.6, "lb"),
  56533. name: "Front",
  56534. image: {
  56535. source: "./media/characters/robin-phox/inteleon-front.svg",
  56536. extra: 910/799,
  56537. bottom: 76/986
  56538. },
  56539. form: "inteleon",
  56540. default: true
  56541. },
  56542. inteleon_frontNsfw: {
  56543. height: math.unit(6 + 3/12, "feet"),
  56544. weight: math.unit(99.6, "lb"),
  56545. name: "Front (NSFW)",
  56546. image: {
  56547. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56548. extra: 910/799,
  56549. bottom: 76/986
  56550. },
  56551. form: "inteleon",
  56552. },
  56553. inteleon_back: {
  56554. height: math.unit(6 + 3/12, "feet"),
  56555. weight: math.unit(99.6, "lb"),
  56556. name: "Back",
  56557. image: {
  56558. source: "./media/characters/robin-phox/inteleon-back.svg",
  56559. extra: 907/796,
  56560. bottom: 25/932
  56561. },
  56562. form: "inteleon",
  56563. },
  56564. reshiram_front: {
  56565. height: math.unit(10 + 6/12, "feet"),
  56566. weight: math.unit(727.5, "lb"),
  56567. name: "Front",
  56568. image: {
  56569. source: "./media/characters/robin-phox/reshiram-front.svg",
  56570. extra: 1198/940,
  56571. bottom: 123/1321
  56572. },
  56573. form: "reshiram",
  56574. },
  56575. reshiram_frontNsfw: {
  56576. height: math.unit(10 + 6/12, "feet"),
  56577. weight: math.unit(727.5, "lb"),
  56578. name: "Front-nsfw",
  56579. image: {
  56580. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56581. extra: 1198/940,
  56582. bottom: 123/1321
  56583. },
  56584. form: "reshiram",
  56585. },
  56586. reshiram_back: {
  56587. height: math.unit(10 + 6/12, "feet"),
  56588. weight: math.unit(727.5, "lb"),
  56589. name: "Back",
  56590. image: {
  56591. source: "./media/characters/robin-phox/reshiram-back.svg",
  56592. extra: 1024/904,
  56593. bottom: 85/1109
  56594. },
  56595. form: "reshiram",
  56596. },
  56597. samurott_front: {
  56598. height: math.unit(8, "feet"),
  56599. weight: math.unit(208.6, "lb"),
  56600. name: "Front",
  56601. image: {
  56602. source: "./media/characters/robin-phox/samurott-front.svg",
  56603. extra: 1048/984,
  56604. bottom: 100/1148
  56605. },
  56606. form: "samurott",
  56607. },
  56608. samurott_frontNsfw: {
  56609. height: math.unit(8, "feet"),
  56610. weight: math.unit(208.6, "lb"),
  56611. name: "Front-nsfw",
  56612. image: {
  56613. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56614. extra: 1048/984,
  56615. bottom: 100/1148
  56616. },
  56617. form: "samurott",
  56618. },
  56619. samurott_back: {
  56620. height: math.unit(8, "feet"),
  56621. weight: math.unit(208.6, "lb"),
  56622. name: "Back",
  56623. image: {
  56624. source: "./media/characters/robin-phox/samurott-back.svg",
  56625. extra: 1110/1042,
  56626. bottom: 12/1122
  56627. },
  56628. form: "samurott",
  56629. },
  56630. samurott_feral: {
  56631. height: math.unit(4 + 11/12, "feet"),
  56632. weight: math.unit(208.6, "lb"),
  56633. name: "Feral",
  56634. image: {
  56635. source: "./media/characters/robin-phox/samurott-feral.svg",
  56636. extra: 766/681,
  56637. bottom: 108/874
  56638. },
  56639. form: "samurott",
  56640. },
  56641. },
  56642. [
  56643. {
  56644. name: "Normal",
  56645. height: math.unit(2, "feet"),
  56646. default: true,
  56647. form: "snivy"
  56648. },
  56649. {
  56650. name: "Normal",
  56651. height: math.unit(6, "feet"),
  56652. default: true,
  56653. form: "yoshi"
  56654. },
  56655. {
  56656. name: "Normal",
  56657. height: math.unit(4 + 11/12, "feet"),
  56658. default: true,
  56659. form: "delphox"
  56660. },
  56661. {
  56662. name: "Normal",
  56663. height: math.unit(4 + 7/12, "feet"),
  56664. default: true,
  56665. form: "mienshao"
  56666. },
  56667. {
  56668. name: "Normal",
  56669. height: math.unit(6 + 3/12, "feet"),
  56670. default: true,
  56671. form: "inteleon"
  56672. },
  56673. {
  56674. name: "Normal",
  56675. height: math.unit(10 + 6/12, "feet"),
  56676. default: true,
  56677. form: "reshiram"
  56678. },
  56679. {
  56680. name: "Normal",
  56681. height: math.unit(8, "feet"),
  56682. default: true,
  56683. form: "samurott"
  56684. },
  56685. {
  56686. name: "Macro",
  56687. height: math.unit(500, "feet"),
  56688. allForms: true
  56689. },
  56690. {
  56691. name: "Mega Macro",
  56692. height: math.unit(10, "earths"),
  56693. allForms: true
  56694. },
  56695. {
  56696. name: "Giga Macro",
  56697. height: math.unit(1, "galaxy"),
  56698. allForms: true
  56699. },
  56700. {
  56701. name: "Godly Macro",
  56702. height: math.unit(1e10, "multiverses"),
  56703. allForms: true
  56704. },
  56705. ],
  56706. {
  56707. "snivy": {
  56708. name: "Snivy",
  56709. default: true
  56710. },
  56711. "yoshi": {
  56712. name: "Yoshi",
  56713. },
  56714. "delphox": {
  56715. name: "Delphox",
  56716. },
  56717. "mienshao": {
  56718. name: "Mienshao",
  56719. },
  56720. "inteleon": {
  56721. name: "Inteleon",
  56722. },
  56723. "reshiram": {
  56724. name: "Reshiram",
  56725. },
  56726. "samurott": {
  56727. name: "Samurott",
  56728. },
  56729. }
  56730. ))
  56731. characterMakers.push(() => makeCharacter(
  56732. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56733. {
  56734. front: {
  56735. height: math.unit(4, "feet"),
  56736. name: "Front",
  56737. image: {
  56738. source: "./media/characters/ash-leung/front.svg",
  56739. extra: 1916/1792,
  56740. bottom: 50/1966
  56741. }
  56742. },
  56743. },
  56744. [
  56745. {
  56746. name: "Atomic",
  56747. height: math.unit(1, "angstrom")
  56748. },
  56749. {
  56750. name: "Microscopic",
  56751. height: math.unit(4000, "angstroms")
  56752. },
  56753. {
  56754. name: "Speck",
  56755. height: math.unit(1, "mm")
  56756. },
  56757. {
  56758. name: "Small",
  56759. height: math.unit(1, "inch")
  56760. },
  56761. {
  56762. name: "Normal",
  56763. height: math.unit(4, "feet"),
  56764. default: true
  56765. },
  56766. ]
  56767. ))
  56768. characterMakers.push(() => makeCharacter(
  56769. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56770. {
  56771. frontDressed: {
  56772. height: math.unit(2.08, "meters"),
  56773. weight: math.unit(175, "lb"),
  56774. name: "Front (Dressed)",
  56775. image: {
  56776. source: "./media/characters/carie/front-dressed.svg",
  56777. extra: 456/417,
  56778. bottom: 7/463
  56779. }
  56780. },
  56781. backDressed: {
  56782. height: math.unit(2.08, "meters"),
  56783. weight: math.unit(175, "lb"),
  56784. name: "Back (Dressed)",
  56785. image: {
  56786. source: "./media/characters/carie/back-dressed.svg",
  56787. extra: 455/414,
  56788. bottom: 11/466
  56789. }
  56790. },
  56791. front: {
  56792. height: math.unit(2, "meters"),
  56793. weight: math.unit(175, "lb"),
  56794. name: "Front",
  56795. image: {
  56796. source: "./media/characters/carie/front.svg",
  56797. extra: 438/399,
  56798. bottom: 12/450
  56799. }
  56800. },
  56801. back: {
  56802. height: math.unit(2, "meters"),
  56803. weight: math.unit(175, "lb"),
  56804. name: "Back",
  56805. image: {
  56806. source: "./media/characters/carie/back.svg",
  56807. extra: 438/397,
  56808. bottom: 7/445
  56809. }
  56810. },
  56811. },
  56812. [
  56813. {
  56814. name: "Normal",
  56815. height: math.unit(2.08, "meters"),
  56816. default: true
  56817. },
  56818. {
  56819. name: "Macro",
  56820. height: math.unit(2.08e3, "meters")
  56821. },
  56822. {
  56823. name: "Mega Macro",
  56824. height: math.unit(2.08e6, "meters")
  56825. },
  56826. {
  56827. name: "Giga Macro",
  56828. height: math.unit(2.08e9, "meters")
  56829. },
  56830. {
  56831. name: "Tera Macro",
  56832. height: math.unit(2.08e12, "meters")
  56833. },
  56834. {
  56835. name: "Peta Macro",
  56836. height: math.unit(2.08e15, "meters")
  56837. },
  56838. {
  56839. name: "Exa Macro",
  56840. height: math.unit(2.08e18, "meters")
  56841. },
  56842. {
  56843. name: "Zetta Macro",
  56844. height: math.unit(2.08e21, "meters")
  56845. },
  56846. {
  56847. name: "Yotta Macro",
  56848. height: math.unit(2.08e24, "meters")
  56849. },
  56850. ]
  56851. ))
  56852. characterMakers.push(() => makeCharacter(
  56853. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  56854. {
  56855. front: {
  56856. height: math.unit(5 + 2/12, "feet"),
  56857. weight: math.unit(120, "lb"),
  56858. name: "Front",
  56859. image: {
  56860. source: "./media/characters/sai-bree/front.svg",
  56861. extra: 1843/1702,
  56862. bottom: 91/1934
  56863. }
  56864. },
  56865. back: {
  56866. height: math.unit(5 + 2/12, "feet"),
  56867. weight: math.unit(120, "lb"),
  56868. name: "Back",
  56869. image: {
  56870. source: "./media/characters/sai-bree/back.svg",
  56871. extra: 1809/1637,
  56872. bottom: 56/1865
  56873. }
  56874. },
  56875. },
  56876. [
  56877. {
  56878. name: "Normal",
  56879. height: math.unit(5 + 2/12, "feet"),
  56880. default: true
  56881. },
  56882. {
  56883. name: "Macro",
  56884. height: math.unit(500, "feet")
  56885. },
  56886. ]
  56887. ))
  56888. characterMakers.push(() => makeCharacter(
  56889. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  56890. {
  56891. side: {
  56892. height: math.unit(0.77, "meters"),
  56893. weight: math.unit(120, "lb"),
  56894. name: "Side",
  56895. image: {
  56896. source: "./media/characters/davwyn/side.svg",
  56897. extra: 1557/1225,
  56898. bottom: 131/1688
  56899. }
  56900. },
  56901. front: {
  56902. height: math.unit(0.835410, "meters"),
  56903. weight: math.unit(120, "lb"),
  56904. name: "Front",
  56905. image: {
  56906. source: "./media/characters/davwyn/front.svg",
  56907. extra: 870/843,
  56908. bottom: 175/1045
  56909. }
  56910. },
  56911. },
  56912. [
  56913. {
  56914. name: "Minidrake",
  56915. height: math.unit(0.77/4, "meters")
  56916. },
  56917. {
  56918. name: "Normal",
  56919. height: math.unit(0.77, "meters"),
  56920. default: true
  56921. },
  56922. ]
  56923. ))
  56924. characterMakers.push(() => makeCharacter(
  56925. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  56926. {
  56927. front: {
  56928. height: math.unit(10 + 3/12, "feet"),
  56929. weight: math.unit(2857, "lb"),
  56930. name: "Front",
  56931. image: {
  56932. source: "./media/characters/balans/front.svg",
  56933. extra: 427/402,
  56934. bottom: 26/453
  56935. }
  56936. },
  56937. side: {
  56938. height: math.unit(10 + 3/12, "feet"),
  56939. weight: math.unit(2857, "lb"),
  56940. name: "Side",
  56941. image: {
  56942. source: "./media/characters/balans/side.svg",
  56943. extra: 397/371,
  56944. bottom: 17/414
  56945. }
  56946. },
  56947. back: {
  56948. height: math.unit(10 + 3/12, "feet"),
  56949. weight: math.unit(2857, "lb"),
  56950. name: "Back",
  56951. image: {
  56952. source: "./media/characters/balans/back.svg",
  56953. extra: 408/381,
  56954. bottom: 14/422
  56955. }
  56956. },
  56957. hand: {
  56958. height: math.unit(1.15, "feet"),
  56959. name: "Hand",
  56960. image: {
  56961. source: "./media/characters/balans/hand.svg"
  56962. }
  56963. },
  56964. footRest: {
  56965. height: math.unit(3.1, "feet"),
  56966. name: "Foot (Rest)",
  56967. image: {
  56968. source: "./media/characters/balans/foot-rest.svg"
  56969. }
  56970. },
  56971. footActive: {
  56972. height: math.unit(3.5, "feet"),
  56973. name: "Foot (Active)",
  56974. image: {
  56975. source: "./media/characters/balans/foot-active.svg"
  56976. }
  56977. },
  56978. },
  56979. [
  56980. {
  56981. name: "Normal",
  56982. height: math.unit(10 + 3/12, "feet"),
  56983. default: true
  56984. },
  56985. ]
  56986. ))
  56987. characterMakers.push(() => makeCharacter(
  56988. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  56989. {
  56990. side: {
  56991. height: math.unit(9, "meters"),
  56992. weight: math.unit(114, "tonnes"),
  56993. name: "Side",
  56994. image: {
  56995. source: "./media/characters/eldkveikir/side.svg",
  56996. extra: 1927/338,
  56997. bottom: 42/1969
  56998. }
  56999. },
  57000. sitting: {
  57001. height: math.unit(13.4, "meters"),
  57002. weight: math.unit(114, "tonnes"),
  57003. name: "Sitting",
  57004. image: {
  57005. source: "./media/characters/eldkveikir/sitting.svg",
  57006. extra: 1108/963,
  57007. bottom: 610/1718
  57008. }
  57009. },
  57010. maw: {
  57011. height: math.unit(8.36, "meters"),
  57012. name: "Maw",
  57013. image: {
  57014. source: "./media/characters/eldkveikir/maw.svg"
  57015. }
  57016. },
  57017. hand: {
  57018. height: math.unit(4.84, "meters"),
  57019. name: "Hand",
  57020. image: {
  57021. source: "./media/characters/eldkveikir/hand.svg"
  57022. }
  57023. },
  57024. foot: {
  57025. height: math.unit(6.9, "meters"),
  57026. name: "Foot",
  57027. image: {
  57028. source: "./media/characters/eldkveikir/foot.svg"
  57029. }
  57030. },
  57031. genitals: {
  57032. height: math.unit(9.6, "meters"),
  57033. name: "Genitals",
  57034. image: {
  57035. source: "./media/characters/eldkveikir/genitals.svg"
  57036. }
  57037. },
  57038. },
  57039. [
  57040. {
  57041. name: "Normal",
  57042. height: math.unit(9, "meters"),
  57043. default: true
  57044. },
  57045. ]
  57046. ))
  57047. characterMakers.push(() => makeCharacter(
  57048. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57049. {
  57050. front: {
  57051. height: math.unit(14, "feet"),
  57052. weight: math.unit(4100, "lb"),
  57053. name: "Front",
  57054. image: {
  57055. source: "./media/characters/arrow/front.svg",
  57056. extra: 330/318,
  57057. bottom: 56/386
  57058. }
  57059. },
  57060. },
  57061. [
  57062. {
  57063. name: "Normal",
  57064. height: math.unit(14, "feet"),
  57065. default: true
  57066. },
  57067. {
  57068. name: "Minimacro",
  57069. height: math.unit(63, "feet")
  57070. },
  57071. {
  57072. name: "Macro",
  57073. height: math.unit(630, "feet")
  57074. },
  57075. {
  57076. name: "Megamacro",
  57077. height: math.unit(12600, "feet")
  57078. },
  57079. {
  57080. name: "Gigamacro",
  57081. height: math.unit(18000, "miles")
  57082. },
  57083. ]
  57084. ))
  57085. characterMakers.push(() => makeCharacter(
  57086. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57087. {
  57088. front: {
  57089. height: math.unit(10, "feet"),
  57090. weight: math.unit(2.4, "tons"),
  57091. name: "Front",
  57092. image: {
  57093. source: "./media/characters/3yk-k0-unit/front.svg",
  57094. extra: 573/561,
  57095. bottom: 33/606
  57096. }
  57097. },
  57098. back: {
  57099. height: math.unit(10, "feet"),
  57100. weight: math.unit(2.4, "tons"),
  57101. name: "Back",
  57102. image: {
  57103. source: "./media/characters/3yk-k0-unit/back.svg",
  57104. extra: 614/573,
  57105. bottom: 32/646
  57106. }
  57107. },
  57108. maw: {
  57109. height: math.unit(2.15, "feet"),
  57110. name: "Maw",
  57111. image: {
  57112. source: "./media/characters/3yk-k0-unit/maw.svg"
  57113. }
  57114. },
  57115. },
  57116. [
  57117. {
  57118. name: "Normal",
  57119. height: math.unit(10, "feet"),
  57120. default: true
  57121. },
  57122. ]
  57123. ))
  57124. characterMakers.push(() => makeCharacter(
  57125. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57126. {
  57127. front: {
  57128. height: math.unit(8 + 8/12, "feet"),
  57129. name: "Front",
  57130. image: {
  57131. source: "./media/characters/nemo/front.svg",
  57132. extra: 1308/1217,
  57133. bottom: 57/1365
  57134. }
  57135. },
  57136. },
  57137. [
  57138. {
  57139. name: "Normal",
  57140. height: math.unit(8 + 8/12, "feet"),
  57141. default: true
  57142. },
  57143. ]
  57144. ))
  57145. characterMakers.push(() => makeCharacter(
  57146. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57147. {
  57148. front: {
  57149. height: math.unit(8, "feet"),
  57150. weight: math.unit(760, "lb"),
  57151. name: "Front",
  57152. image: {
  57153. source: "./media/characters/rexx/front.svg",
  57154. extra: 786/750,
  57155. bottom: 17/803
  57156. },
  57157. extraAttributes: {
  57158. "pawLength": {
  57159. name: "Paw Length",
  57160. power: 1,
  57161. type: "length",
  57162. base: math.unit(27, "inches")
  57163. },
  57164. }
  57165. },
  57166. },
  57167. [
  57168. {
  57169. name: "Micro",
  57170. height: math.unit(2, "inches")
  57171. },
  57172. {
  57173. name: "Normal",
  57174. height: math.unit(8, "feet"),
  57175. default: true
  57176. },
  57177. {
  57178. name: "Macro",
  57179. height: math.unit(150, "feet")
  57180. },
  57181. ]
  57182. ))
  57183. characterMakers.push(() => makeCharacter(
  57184. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57185. {
  57186. front: {
  57187. height: math.unit(18, "feet"),
  57188. weight: math.unit(1975, "lb"),
  57189. name: "Front",
  57190. image: {
  57191. source: "./media/characters/draco/front.svg",
  57192. extra: 1325/1241,
  57193. bottom: 83/1408
  57194. }
  57195. },
  57196. back: {
  57197. height: math.unit(18, "feet"),
  57198. weight: math.unit(1975, "lb"),
  57199. name: "Back",
  57200. image: {
  57201. source: "./media/characters/draco/back.svg",
  57202. extra: 1332/1250,
  57203. bottom: 43/1375
  57204. }
  57205. },
  57206. dick: {
  57207. height: math.unit(7.5, "feet"),
  57208. name: "Dick",
  57209. image: {
  57210. source: "./media/characters/draco/dick.svg"
  57211. }
  57212. },
  57213. },
  57214. [
  57215. {
  57216. name: "Normal",
  57217. height: math.unit(18, "feet"),
  57218. default: true
  57219. },
  57220. ]
  57221. ))
  57222. //characters
  57223. function makeCharacters() {
  57224. const results = [];
  57225. characterMakers.forEach(character => {
  57226. results.push(character());
  57227. });
  57228. return results;
  57229. }