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

61877 строки
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: ["theropod"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["primate"]
  2132. },
  2133. "serval": {
  2134. name: "Serval",
  2135. parents: ["cat"]
  2136. },
  2137. "swampert": {
  2138. name: "Swampert",
  2139. parents: ["pokemon"]
  2140. },
  2141. "red-fox": {
  2142. name: "Red Fox",
  2143. parents: ["fox"]
  2144. },
  2145. "sliver": {
  2146. name: "Sliver",
  2147. parents: ["alien"]
  2148. },
  2149. "sergix": {
  2150. name: "Sergix",
  2151. parents: ["demon", "sergal", "phoenix"]
  2152. },
  2153. "behemoth": {
  2154. name: "Behemoth",
  2155. parents: ["monster", "dragon", "final-fantasy"]
  2156. },
  2157. "final-fantasy": {
  2158. name: "Final Fantasy",
  2159. parents: ["video-games"]
  2160. },
  2161. "video-games": {
  2162. name: "Video Games",
  2163. parents: []
  2164. },
  2165. "eastern-cottontail-rabbit": {
  2166. name: "Eastern Cottontail Rabbit",
  2167. parents: ["rabbit"]
  2168. },
  2169. "thresher-shark": {
  2170. name: "Thresher Shark",
  2171. parents: ["shark"]
  2172. },
  2173. "ai": {
  2174. name: "AI",
  2175. parents: []
  2176. },
  2177. "black-tip-reef-shark": {
  2178. name: "Black Tip Reef Shark",
  2179. parents: ["shark"]
  2180. },
  2181. "quetzalcoatlus-northropi": {
  2182. name: "Quetzalcoatlus Northropi",
  2183. parents: ["dinosaur"]
  2184. },
  2185. "snivy": {
  2186. name: "Snivy",
  2187. parents: ["pokemon", "snake"]
  2188. },
  2189. "nedynvor": {
  2190. name: "Nedynvor",
  2191. parents: ["avian"]
  2192. },
  2193. "marbled-polecat": {
  2194. name: "Marbled Polecat",
  2195. parents: ["polecat"]
  2196. },
  2197. "ape": {
  2198. name: "Ape",
  2199. parents: ["primate"]
  2200. },
  2201. "primate": {
  2202. name: "Primate",
  2203. parents: ["mammal"]
  2204. },
  2205. "kulve-taroth": {
  2206. name: "Kulve Taroth",
  2207. parents: ["monster-hunter", "dragon"]
  2208. },
  2209. "irthos": {
  2210. name: "Irthos",
  2211. parents: ["dragon"]
  2212. },
  2213. "furred-dragon": {
  2214. name: "Furred Dragon",
  2215. parents: ["dragon"]
  2216. },
  2217. "hippogriff": {
  2218. name: "Hippogriff",
  2219. parents: ["gryphon", "horse"]
  2220. },
  2221. "peregrine-falcon": {
  2222. name: "Peregrine Falcon",
  2223. parents: ["falcon"]
  2224. },
  2225. "deinonychus": {
  2226. name: "Deinonychus",
  2227. parents: ["theropod"]
  2228. },
  2229. "theropod": {
  2230. name: "Theropod",
  2231. parents: ["dinosaur"]
  2232. },
  2233. "chocobo": {
  2234. name: "Chocobo",
  2235. parents: ["avian"]
  2236. },
  2237. "stilio": {
  2238. name: "Stilio",
  2239. parents: ["snake"]
  2240. },
  2241. "kardox": {
  2242. name: "Kardox",
  2243. parents: ["wolf", "dragon", "horse"]
  2244. },
  2245. "food": {
  2246. name: "Food",
  2247. parents: ["object"]
  2248. },
  2249. "object": {
  2250. name: "Object",
  2251. parents: []
  2252. },
  2253. "honey-badger": {
  2254. name: "honey-badger",
  2255. parents: ["badger"]
  2256. },
  2257. "badger": {
  2258. name: "Badger",
  2259. parents: ["mustelid"]
  2260. },
  2261. "rattlesnake": {
  2262. name: "Rattlesnake",
  2263. parents: ["snake"]
  2264. },
  2265. "diamondback": {
  2266. name: "Diamondback",
  2267. parents: ["snake"]
  2268. },
  2269. "spidox": {
  2270. name: "Spidox",
  2271. parents: ["spider", "fox"]
  2272. },
  2273. }
  2274. //species
  2275. function getSpeciesInfo(speciesList) {
  2276. let result = new Set();
  2277. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2278. result.add(entry)
  2279. });
  2280. return Array.from(result);
  2281. };
  2282. function getSpeciesInfoHelper(species) {
  2283. if (!speciesData[species]) {
  2284. console.warn(species + " doesn't exist");
  2285. return [];
  2286. }
  2287. if (speciesData[species].parents) {
  2288. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2289. } else {
  2290. return [species];
  2291. }
  2292. }
  2293. characterMakers.push(() => makeCharacter(
  2294. {
  2295. name: "Fen",
  2296. species: ["crux"],
  2297. description: {
  2298. title: "Bio",
  2299. text: "Very furry. Sheds on everything."
  2300. },
  2301. tags: [
  2302. "anthro",
  2303. "goo"
  2304. ]
  2305. },
  2306. {
  2307. front: {
  2308. height: math.unit(12, "feet"),
  2309. weight: math.unit(2400, "lb"),
  2310. preyCapacity: math.unit(1, "people"),
  2311. name: "Front",
  2312. image: {
  2313. source: "./media/characters/fen/front.svg",
  2314. extra: 1804/1562,
  2315. bottom: 205/2009
  2316. },
  2317. extraAttributes: {
  2318. pawSize: {
  2319. name: "Paw Size",
  2320. power: 2,
  2321. type: "area",
  2322. base: math.unit(0.35, "m^2")
  2323. }
  2324. }
  2325. },
  2326. diving: {
  2327. height: math.unit(4.9, "meters"),
  2328. weight: math.unit(2400, "lb"),
  2329. name: "Diving",
  2330. image: {
  2331. source: "./media/characters/fen/diving.svg"
  2332. }
  2333. },
  2334. sleeby: {
  2335. height: math.unit(3.45, "meters"),
  2336. weight: math.unit(2400, "lb"),
  2337. name: "Sleeby",
  2338. image: {
  2339. source: "./media/characters/fen/sleeby.svg"
  2340. }
  2341. },
  2342. goo: {
  2343. height: math.unit(12, "feet"),
  2344. weight: math.unit(3600, "lb"),
  2345. volume: math.unit(1000, "liters"),
  2346. preyCapacity: math.unit(6, "people"),
  2347. name: "Goo",
  2348. image: {
  2349. source: "./media/characters/fen/goo.svg",
  2350. extra: 1307/1071,
  2351. bottom: 134/1441
  2352. }
  2353. },
  2354. horror: {
  2355. height: math.unit(13.6, "feet"),
  2356. weight: math.unit(2400, "lb"),
  2357. preyCapacity: math.unit(1, "people"),
  2358. name: "Horror",
  2359. image: {
  2360. source: "./media/characters/fen/horror.svg",
  2361. extra: 893/797,
  2362. bottom: 0/893
  2363. }
  2364. },
  2365. gooNsfw: {
  2366. height: math.unit(12, "feet"),
  2367. weight: math.unit(3750, "lb"),
  2368. volume: math.unit(1000, "liters"),
  2369. preyCapacity: math.unit(6, "people"),
  2370. name: "Goo (NSFW)",
  2371. image: {
  2372. source: "./media/characters/fen/goo-nsfw.svg",
  2373. extra: 1875/1734,
  2374. bottom: 122/1997
  2375. }
  2376. },
  2377. maw: {
  2378. height: math.unit(5.03, "feet"),
  2379. name: "Maw",
  2380. image: {
  2381. source: "./media/characters/fen/maw.svg"
  2382. }
  2383. },
  2384. gooCeiling: {
  2385. height: math.unit(6.6, "feet"),
  2386. weight: math.unit(3000, "lb"),
  2387. volume: math.unit(1000, "liters"),
  2388. preyCapacity: math.unit(6, "people"),
  2389. name: "Maw (Goo)",
  2390. image: {
  2391. source: "./media/characters/fen/goo-maw.svg"
  2392. }
  2393. },
  2394. paw: {
  2395. height: math.unit(3.77, "feet"),
  2396. name: "Paw",
  2397. image: {
  2398. source: "./media/characters/fen/paw.svg"
  2399. },
  2400. extraAttributes: {
  2401. "toeSize": {
  2402. name: "Toe Size",
  2403. power: 2,
  2404. type: "area",
  2405. base: math.unit(0.02875, "m^2")
  2406. },
  2407. "pawSize": {
  2408. name: "Paw Size",
  2409. power: 2,
  2410. type: "area",
  2411. base: math.unit(0.378, "m^2")
  2412. },
  2413. }
  2414. },
  2415. tail: {
  2416. height: math.unit(12.1, "feet"),
  2417. name: "Tail",
  2418. image: {
  2419. source: "./media/characters/fen/tail.svg"
  2420. }
  2421. },
  2422. tailFull: {
  2423. height: math.unit(12.1, "feet"),
  2424. name: "Full Tail",
  2425. image: {
  2426. source: "./media/characters/fen/tail-full.svg"
  2427. }
  2428. },
  2429. back: {
  2430. height: math.unit(12, "feet"),
  2431. weight: math.unit(2400, "lb"),
  2432. name: "Back",
  2433. image: {
  2434. source: "./media/characters/fen/back.svg",
  2435. },
  2436. info: {
  2437. description: {
  2438. mode: "append",
  2439. text: "\n\nHe is not currently looking at you."
  2440. }
  2441. }
  2442. },
  2443. full: {
  2444. height: math.unit(1.85, "meter"),
  2445. weight: math.unit(3200, "lb"),
  2446. name: "Full",
  2447. image: {
  2448. source: "./media/characters/fen/full.svg",
  2449. extra: 1133/859,
  2450. bottom: 145/1278
  2451. },
  2452. info: {
  2453. description: {
  2454. mode: "append",
  2455. text: "\n\nMunch."
  2456. }
  2457. }
  2458. },
  2459. gooLounging: {
  2460. height: math.unit(4.53, "feet"),
  2461. weight: math.unit(3000, "lb"),
  2462. preyCapacity: math.unit(6, "people"),
  2463. name: "Goo (Lounging)",
  2464. image: {
  2465. source: "./media/characters/fen/goo-lounging.svg",
  2466. bottom: 116 / 613
  2467. }
  2468. },
  2469. lounging: {
  2470. height: math.unit(10.52, "feet"),
  2471. weight: math.unit(2400, "lb"),
  2472. name: "Lounging",
  2473. image: {
  2474. source: "./media/characters/fen/lounging.svg"
  2475. }
  2476. },
  2477. },
  2478. [
  2479. {
  2480. name: "Small",
  2481. height: math.unit(2.2428, "meter")
  2482. },
  2483. {
  2484. name: "Normal",
  2485. height: math.unit(12, "feet"),
  2486. default: true,
  2487. },
  2488. {
  2489. name: "Big",
  2490. height: math.unit(20, "feet")
  2491. },
  2492. {
  2493. name: "Minimacro",
  2494. height: math.unit(40, "feet"),
  2495. info: {
  2496. description: {
  2497. mode: "append",
  2498. text: "\n\nTOO DAMN BIG"
  2499. }
  2500. }
  2501. },
  2502. {
  2503. name: "Macro",
  2504. height: math.unit(100, "feet"),
  2505. info: {
  2506. description: {
  2507. mode: "append",
  2508. text: "\n\nTOO DAMN BIG"
  2509. }
  2510. }
  2511. },
  2512. {
  2513. name: "Megamacro",
  2514. height: math.unit(2, "miles")
  2515. },
  2516. {
  2517. name: "Gigamacro",
  2518. height: math.unit(10, "earths")
  2519. },
  2520. ]
  2521. ))
  2522. characterMakers.push(() => makeCharacter(
  2523. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2524. {
  2525. front: {
  2526. height: math.unit(183, "cm"),
  2527. weight: math.unit(80, "kg"),
  2528. name: "Front",
  2529. image: {
  2530. source: "./media/characters/sofia-fluttertail/front.svg",
  2531. bottom: 0.01,
  2532. extra: 2154 / 2081
  2533. }
  2534. },
  2535. frontAlt: {
  2536. height: math.unit(183, "cm"),
  2537. weight: math.unit(80, "kg"),
  2538. name: "Front (alt)",
  2539. image: {
  2540. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2541. }
  2542. },
  2543. back: {
  2544. height: math.unit(183, "cm"),
  2545. weight: math.unit(80, "kg"),
  2546. name: "Back",
  2547. image: {
  2548. source: "./media/characters/sofia-fluttertail/back.svg"
  2549. }
  2550. },
  2551. kneeling: {
  2552. height: math.unit(125, "cm"),
  2553. weight: math.unit(80, "kg"),
  2554. name: "Kneeling",
  2555. image: {
  2556. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2557. extra: 1033 / 977,
  2558. bottom: 23.7 / 1057
  2559. }
  2560. },
  2561. maw: {
  2562. height: math.unit(183 / 5, "cm"),
  2563. name: "Maw",
  2564. image: {
  2565. source: "./media/characters/sofia-fluttertail/maw.svg"
  2566. }
  2567. },
  2568. mawcloseup: {
  2569. height: math.unit(183 / 5 * 0.41, "cm"),
  2570. name: "Maw (Closeup)",
  2571. image: {
  2572. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2573. }
  2574. },
  2575. paws: {
  2576. height: math.unit(1.17, "feet"),
  2577. name: "Paws",
  2578. image: {
  2579. source: "./media/characters/sofia-fluttertail/paws.svg",
  2580. extra: 851 / 851,
  2581. bottom: 17 / 868
  2582. }
  2583. },
  2584. },
  2585. [
  2586. {
  2587. name: "Normal",
  2588. height: math.unit(1.83, "meter")
  2589. },
  2590. {
  2591. name: "Size Thief",
  2592. height: math.unit(18, "feet")
  2593. },
  2594. {
  2595. name: "50 Foot Collie",
  2596. height: math.unit(50, "feet")
  2597. },
  2598. {
  2599. name: "Macro",
  2600. height: math.unit(96, "feet"),
  2601. default: true
  2602. },
  2603. {
  2604. name: "Megamerger",
  2605. height: math.unit(650, "feet")
  2606. },
  2607. ]
  2608. ))
  2609. characterMakers.push(() => makeCharacter(
  2610. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2611. {
  2612. front: {
  2613. height: math.unit(7, "feet"),
  2614. weight: math.unit(100, "kg"),
  2615. name: "Front",
  2616. image: {
  2617. source: "./media/characters/march/front.svg",
  2618. extra: 1992/1851,
  2619. bottom: 39/2031
  2620. }
  2621. },
  2622. foot: {
  2623. height: math.unit(0.9, "feet"),
  2624. name: "Foot",
  2625. image: {
  2626. source: "./media/characters/march/foot.svg"
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(7.9, "feet")
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(220, "meters")
  2638. },
  2639. {
  2640. name: "Megamacro",
  2641. height: math.unit(2.98, "km"),
  2642. default: true
  2643. },
  2644. {
  2645. name: "Gigamacro",
  2646. height: math.unit(15963, "km")
  2647. },
  2648. {
  2649. name: "Teramacro",
  2650. height: math.unit(2980000000, "km")
  2651. },
  2652. {
  2653. name: "Examacro",
  2654. height: math.unit(250, "parsecs")
  2655. },
  2656. ]
  2657. ))
  2658. characterMakers.push(() => makeCharacter(
  2659. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2660. {
  2661. front: {
  2662. height: math.unit(6, "feet"),
  2663. weight: math.unit(60, "kg"),
  2664. name: "Front",
  2665. image: {
  2666. source: "./media/characters/noir/front.svg",
  2667. extra: 1,
  2668. bottom: 0.032
  2669. }
  2670. },
  2671. },
  2672. [
  2673. {
  2674. name: "Normal",
  2675. height: math.unit(6.6, "feet")
  2676. },
  2677. {
  2678. name: "Macro",
  2679. height: math.unit(500, "feet")
  2680. },
  2681. {
  2682. name: "Megamacro",
  2683. height: math.unit(2.5, "km"),
  2684. default: true
  2685. },
  2686. {
  2687. name: "Gigamacro",
  2688. height: math.unit(22500, "km")
  2689. },
  2690. {
  2691. name: "Teramacro",
  2692. height: math.unit(2500000000, "km")
  2693. },
  2694. {
  2695. name: "Examacro",
  2696. height: math.unit(200, "parsecs")
  2697. },
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(7, "feet"),
  2705. weight: math.unit(100, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/okuri/front.svg",
  2709. extra: 739/665,
  2710. bottom: 39/778
  2711. }
  2712. },
  2713. back: {
  2714. height: math.unit(7, "feet"),
  2715. weight: math.unit(100, "kg"),
  2716. name: "Back",
  2717. image: {
  2718. source: "./media/characters/okuri/back.svg",
  2719. extra: 734/653,
  2720. bottom: 13/747
  2721. }
  2722. },
  2723. sitting: {
  2724. height: math.unit(2.95, "feet"),
  2725. weight: math.unit(100, "kg"),
  2726. name: "Sitting",
  2727. image: {
  2728. source: "./media/characters/okuri/sitting.svg",
  2729. extra: 370/318,
  2730. bottom: 99/469
  2731. }
  2732. },
  2733. },
  2734. [
  2735. {
  2736. name: "Smallest",
  2737. height: math.unit(5 + 2/12, "feet")
  2738. },
  2739. {
  2740. name: "Smaller",
  2741. height: math.unit(300, "feet")
  2742. },
  2743. {
  2744. name: "Small",
  2745. height: math.unit(1000, "feet")
  2746. },
  2747. {
  2748. name: "Macro",
  2749. height: math.unit(1, "mile")
  2750. },
  2751. {
  2752. name: "Mega Macro (Small)",
  2753. height: math.unit(20, "km")
  2754. },
  2755. {
  2756. name: "Mega Macro (Large)",
  2757. height: math.unit(600, "km")
  2758. },
  2759. {
  2760. name: "Giga Macro",
  2761. height: math.unit(10000, "km")
  2762. },
  2763. {
  2764. name: "Normal",
  2765. height: math.unit(577560, "km"),
  2766. default: true
  2767. },
  2768. {
  2769. name: "Large",
  2770. height: math.unit(4, "galaxies")
  2771. },
  2772. {
  2773. name: "Largest",
  2774. height: math.unit(15, "multiverses")
  2775. },
  2776. ]
  2777. ))
  2778. characterMakers.push(() => makeCharacter(
  2779. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2780. {
  2781. front: {
  2782. height: math.unit(7, "feet"),
  2783. weight: math.unit(100, "kg"),
  2784. name: "Front",
  2785. image: {
  2786. source: "./media/characters/manny/front.svg",
  2787. extra: 1,
  2788. bottom: 0.06
  2789. }
  2790. },
  2791. back: {
  2792. height: math.unit(7, "feet"),
  2793. weight: math.unit(100, "kg"),
  2794. name: "Back",
  2795. image: {
  2796. source: "./media/characters/manny/back.svg",
  2797. extra: 1,
  2798. bottom: 0.014
  2799. }
  2800. },
  2801. },
  2802. [
  2803. {
  2804. name: "Normal",
  2805. height: math.unit(7, "feet"),
  2806. },
  2807. {
  2808. name: "Macro",
  2809. height: math.unit(78, "feet"),
  2810. default: true
  2811. },
  2812. {
  2813. name: "Macro+",
  2814. height: math.unit(300, "meters")
  2815. },
  2816. {
  2817. name: "Macro++",
  2818. height: math.unit(2400, "meters")
  2819. },
  2820. {
  2821. name: "Megamacro",
  2822. height: math.unit(5167, "meters")
  2823. },
  2824. {
  2825. name: "Gigamacro",
  2826. height: math.unit(41769, "miles")
  2827. },
  2828. ]
  2829. ))
  2830. characterMakers.push(() => makeCharacter(
  2831. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2832. {
  2833. front: {
  2834. height: math.unit(7, "feet"),
  2835. weight: math.unit(100, "kg"),
  2836. name: "Front",
  2837. image: {
  2838. source: "./media/characters/adake/front-1.svg"
  2839. }
  2840. },
  2841. frontAlt: {
  2842. height: math.unit(7, "feet"),
  2843. weight: math.unit(100, "kg"),
  2844. name: "Front (Alt)",
  2845. image: {
  2846. source: "./media/characters/adake/front-2.svg",
  2847. extra: 1,
  2848. bottom: 0.01
  2849. }
  2850. },
  2851. back: {
  2852. height: math.unit(7, "feet"),
  2853. weight: math.unit(100, "kg"),
  2854. name: "Back",
  2855. image: {
  2856. source: "./media/characters/adake/back.svg",
  2857. }
  2858. },
  2859. kneel: {
  2860. height: math.unit(5.385, "feet"),
  2861. weight: math.unit(100, "kg"),
  2862. name: "Kneeling",
  2863. image: {
  2864. source: "./media/characters/adake/kneel.svg",
  2865. bottom: 0.052
  2866. }
  2867. },
  2868. },
  2869. [
  2870. {
  2871. name: "Normal",
  2872. height: math.unit(7, "feet"),
  2873. },
  2874. {
  2875. name: "Macro",
  2876. height: math.unit(78, "feet"),
  2877. default: true
  2878. },
  2879. {
  2880. name: "Macro+",
  2881. height: math.unit(300, "meters")
  2882. },
  2883. {
  2884. name: "Macro++",
  2885. height: math.unit(2400, "meters")
  2886. },
  2887. {
  2888. name: "Megamacro",
  2889. height: math.unit(5167, "meters")
  2890. },
  2891. {
  2892. name: "Gigamacro",
  2893. height: math.unit(41769, "miles")
  2894. },
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(1.65, "meters"),
  2902. weight: math.unit(50, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/elijah/front.svg",
  2906. extra: 858 / 830,
  2907. bottom: 95.5 / 953.8559
  2908. }
  2909. },
  2910. back: {
  2911. height: math.unit(1.65, "meters"),
  2912. weight: math.unit(50, "kg"),
  2913. name: "Back",
  2914. image: {
  2915. source: "./media/characters/elijah/back.svg",
  2916. extra: 895 / 850,
  2917. bottom: 5.3 / 897.956
  2918. }
  2919. },
  2920. frontNsfw: {
  2921. height: math.unit(1.65, "meters"),
  2922. weight: math.unit(50, "kg"),
  2923. name: "Front (NSFW)",
  2924. image: {
  2925. source: "./media/characters/elijah/front-nsfw.svg",
  2926. extra: 858 / 830,
  2927. bottom: 95.5 / 953.8559
  2928. }
  2929. },
  2930. backNsfw: {
  2931. height: math.unit(1.65, "meters"),
  2932. weight: math.unit(50, "kg"),
  2933. name: "Back (NSFW)",
  2934. image: {
  2935. source: "./media/characters/elijah/back-nsfw.svg",
  2936. extra: 895 / 850,
  2937. bottom: 5.3 / 897.956
  2938. }
  2939. },
  2940. dick: {
  2941. height: math.unit(1, "feet"),
  2942. name: "Dick",
  2943. image: {
  2944. source: "./media/characters/elijah/dick.svg"
  2945. }
  2946. },
  2947. beakOpen: {
  2948. height: math.unit(1.25, "feet"),
  2949. name: "Beak (Open)",
  2950. image: {
  2951. source: "./media/characters/elijah/beak-open.svg"
  2952. }
  2953. },
  2954. beakShut: {
  2955. height: math.unit(1.25, "feet"),
  2956. name: "Beak (Shut)",
  2957. image: {
  2958. source: "./media/characters/elijah/beak-shut.svg"
  2959. }
  2960. },
  2961. footFlexing: {
  2962. height: math.unit(1.61, "feet"),
  2963. name: "Foot (Flexing)",
  2964. image: {
  2965. source: "./media/characters/elijah/foot-flexing.svg"
  2966. }
  2967. },
  2968. footStepping: {
  2969. height: math.unit(1.44, "feet"),
  2970. name: "Foot (Stepping)",
  2971. image: {
  2972. source: "./media/characters/elijah/foot-stepping.svg"
  2973. }
  2974. },
  2975. plantigradeLeg: {
  2976. height: math.unit(2.34, "feet"),
  2977. name: "Plantigrade Leg",
  2978. image: {
  2979. source: "./media/characters/elijah/plantigrade-leg.svg"
  2980. }
  2981. },
  2982. plantigradeFootLeft: {
  2983. height: math.unit(0.9, "feet"),
  2984. name: "Plantigrade Foot (Left)",
  2985. image: {
  2986. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2987. }
  2988. },
  2989. plantigradeFootRight: {
  2990. height: math.unit(0.9, "feet"),
  2991. name: "Plantigrade Foot (Right)",
  2992. image: {
  2993. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2994. }
  2995. },
  2996. },
  2997. [
  2998. {
  2999. name: "Normal",
  3000. height: math.unit(1.65, "meters")
  3001. },
  3002. {
  3003. name: "Macro",
  3004. height: math.unit(55, "meters"),
  3005. default: true
  3006. },
  3007. {
  3008. name: "Macro+",
  3009. height: math.unit(105, "meters")
  3010. },
  3011. ]
  3012. ))
  3013. characterMakers.push(() => makeCharacter(
  3014. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3015. {
  3016. front: {
  3017. height: math.unit(7 + 2/12, "feet"),
  3018. weight: math.unit(320, "kg"),
  3019. preyCapacity: math.unit(0.276549935, "people"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/rai/front.svg",
  3023. extra: 1802/1696,
  3024. bottom: 68/1870
  3025. },
  3026. form: "anthro",
  3027. default: true
  3028. },
  3029. frontDressed: {
  3030. height: math.unit(7 + 2/12, "feet"),
  3031. weight: math.unit(320, "kg"),
  3032. preyCapacity: math.unit(0.276549935, "people"),
  3033. name: "Front (Dressed)",
  3034. image: {
  3035. source: "./media/characters/rai/front-dressed.svg",
  3036. extra: 1802/1696,
  3037. bottom: 68/1870
  3038. },
  3039. form: "anthro"
  3040. },
  3041. side: {
  3042. height: math.unit(7 + 2/12, "feet"),
  3043. weight: math.unit(320, "kg"),
  3044. preyCapacity: math.unit(0.276549935, "people"),
  3045. name: "Side",
  3046. image: {
  3047. source: "./media/characters/rai/side.svg",
  3048. extra: 1789/1710,
  3049. bottom: 115/1904
  3050. },
  3051. form: "anthro"
  3052. },
  3053. back: {
  3054. height: math.unit(7 + 2/12, "feet"),
  3055. weight: math.unit(320, "kg"),
  3056. preyCapacity: math.unit(0.276549935, "people"),
  3057. name: "Back",
  3058. image: {
  3059. source: "./media/characters/rai/back.svg",
  3060. extra: 1770/1707,
  3061. bottom: 28/1798
  3062. },
  3063. form: "anthro"
  3064. },
  3065. feral: {
  3066. height: math.unit(9.5, "feet"),
  3067. weight: math.unit(640, "kg"),
  3068. preyCapacity: math.unit(4, "people"),
  3069. name: "Feral",
  3070. image: {
  3071. source: "./media/characters/rai/feral.svg",
  3072. extra: 945/553,
  3073. bottom: 176/1121
  3074. },
  3075. form: "feral",
  3076. default: true
  3077. },
  3078. dragon: {
  3079. height: math.unit(23, "feet"),
  3080. weight: math.unit(50000, "lb"),
  3081. name: "Dragon",
  3082. image: {
  3083. source: "./media/characters/rai/dragon.svg",
  3084. extra: 2498 / 2030,
  3085. bottom: 85.2 / 2584
  3086. },
  3087. form: "dragon",
  3088. default: true
  3089. },
  3090. maw: {
  3091. height: math.unit(1.69, "feet"),
  3092. name: "Maw",
  3093. image: {
  3094. source: "./media/characters/rai/maw.svg"
  3095. },
  3096. form: "anthro"
  3097. },
  3098. },
  3099. [
  3100. {
  3101. name: "Normal",
  3102. height: math.unit(7 + 2/12, "feet"),
  3103. form: "anthro"
  3104. },
  3105. {
  3106. name: "Big",
  3107. height: math.unit(11, "feet"),
  3108. form: "anthro"
  3109. },
  3110. {
  3111. name: "Minimacro",
  3112. height: math.unit(77, "feet"),
  3113. form: "anthro"
  3114. },
  3115. {
  3116. name: "Macro",
  3117. height: math.unit(302, "feet"),
  3118. default: true,
  3119. form: "anthro"
  3120. },
  3121. {
  3122. name: "Normal",
  3123. height: math.unit(9.5, "feet"),
  3124. form: "feral",
  3125. default: true
  3126. },
  3127. {
  3128. name: "Normal",
  3129. height: math.unit(23, "feet"),
  3130. form: "dragon",
  3131. default: true
  3132. }
  3133. ],
  3134. {
  3135. "anthro": {
  3136. name: "Anthro",
  3137. default: true
  3138. },
  3139. "feral": {
  3140. name: "Feral",
  3141. },
  3142. "dragon": {
  3143. name: "Dragon",
  3144. },
  3145. }
  3146. ))
  3147. characterMakers.push(() => makeCharacter(
  3148. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3149. {
  3150. frontDressed: {
  3151. height: math.unit(216, "feet"),
  3152. weight: math.unit(7000000, "lb"),
  3153. preyCapacity: math.unit(1321, "people"),
  3154. name: "Front (Dressed)",
  3155. image: {
  3156. source: "./media/characters/jazzy/front-dressed.svg",
  3157. extra: 2738 / 2651,
  3158. bottom: 41.8 / 2786
  3159. }
  3160. },
  3161. backDressed: {
  3162. height: math.unit(216, "feet"),
  3163. weight: math.unit(7000000, "lb"),
  3164. preyCapacity: math.unit(1321, "people"),
  3165. name: "Back (Dressed)",
  3166. image: {
  3167. source: "./media/characters/jazzy/back-dressed.svg",
  3168. extra: 2775 / 2673,
  3169. bottom: 36.8 / 2817
  3170. }
  3171. },
  3172. front: {
  3173. height: math.unit(216, "feet"),
  3174. weight: math.unit(7000000, "lb"),
  3175. preyCapacity: math.unit(1321, "people"),
  3176. name: "Front",
  3177. image: {
  3178. source: "./media/characters/jazzy/front.svg",
  3179. extra: 2738 / 2651,
  3180. bottom: 41.8 / 2786
  3181. }
  3182. },
  3183. back: {
  3184. height: math.unit(216, "feet"),
  3185. weight: math.unit(7000000, "lb"),
  3186. preyCapacity: math.unit(1321, "people"),
  3187. name: "Back",
  3188. image: {
  3189. source: "./media/characters/jazzy/back.svg",
  3190. extra: 2775 / 2673,
  3191. bottom: 36.8 / 2817
  3192. }
  3193. },
  3194. maw: {
  3195. height: math.unit(20, "feet"),
  3196. name: "Maw",
  3197. image: {
  3198. source: "./media/characters/jazzy/maw.svg"
  3199. }
  3200. },
  3201. paws: {
  3202. height: math.unit(27.5, "feet"),
  3203. name: "Paws",
  3204. image: {
  3205. source: "./media/characters/jazzy/paws.svg"
  3206. }
  3207. },
  3208. eye: {
  3209. height: math.unit(4.4, "feet"),
  3210. name: "Eye",
  3211. image: {
  3212. source: "./media/characters/jazzy/eye.svg"
  3213. }
  3214. },
  3215. droneOffense: {
  3216. height: math.unit(9.5, "inches"),
  3217. name: "Drone (Offense)",
  3218. image: {
  3219. source: "./media/characters/jazzy/drone-offense.svg"
  3220. }
  3221. },
  3222. droneRecon: {
  3223. height: math.unit(9.5, "inches"),
  3224. name: "Drone (Recon)",
  3225. image: {
  3226. source: "./media/characters/jazzy/drone-recon.svg"
  3227. }
  3228. },
  3229. droneDefense: {
  3230. height: math.unit(9.5, "inches"),
  3231. name: "Drone (Defense)",
  3232. image: {
  3233. source: "./media/characters/jazzy/drone-defense.svg"
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Macro",
  3240. height: math.unit(216, "feet"),
  3241. default: true
  3242. },
  3243. ]
  3244. ))
  3245. characterMakers.push(() => makeCharacter(
  3246. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3247. {
  3248. front: {
  3249. height: math.unit(9 + 6/12, "feet"),
  3250. weight: math.unit(700, "lb"),
  3251. name: "Front",
  3252. image: {
  3253. source: "./media/characters/flamm/front.svg",
  3254. extra: 1736/1596,
  3255. bottom: 93/1829
  3256. }
  3257. },
  3258. buff: {
  3259. height: math.unit(9 + 6/12, "feet"),
  3260. weight: math.unit(950, "lb"),
  3261. name: "Buff",
  3262. image: {
  3263. source: "./media/characters/flamm/buff.svg",
  3264. extra: 3018/2874,
  3265. bottom: 221/3239
  3266. }
  3267. },
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(9.5, "feet")
  3273. },
  3274. {
  3275. name: "Macro",
  3276. height: math.unit(200, "feet"),
  3277. default: true
  3278. },
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(5 + 3/12, "feet"),
  3286. weight: math.unit(60, "kg"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/zephiro/front.svg",
  3290. extra: 1873/1761,
  3291. bottom: 147/2020
  3292. }
  3293. },
  3294. side: {
  3295. height: math.unit(5 + 3/12, "feet"),
  3296. weight: math.unit(60, "kg"),
  3297. name: "Side",
  3298. image: {
  3299. source: "./media/characters/zephiro/side.svg",
  3300. extra: 1929/1827,
  3301. bottom: 65/1994
  3302. }
  3303. },
  3304. back: {
  3305. height: math.unit(5 + 3/12, "feet"),
  3306. weight: math.unit(60, "kg"),
  3307. name: "Back",
  3308. image: {
  3309. source: "./media/characters/zephiro/back.svg",
  3310. extra: 1926/1816,
  3311. bottom: 41/1967
  3312. }
  3313. },
  3314. hand: {
  3315. height: math.unit(0.68, "feet"),
  3316. name: "Hand",
  3317. image: {
  3318. source: "./media/characters/zephiro/hand.svg"
  3319. }
  3320. },
  3321. paw: {
  3322. height: math.unit(1, "feet"),
  3323. name: "Paw",
  3324. image: {
  3325. source: "./media/characters/zephiro/paw.svg"
  3326. }
  3327. },
  3328. beans: {
  3329. height: math.unit(0.93, "feet"),
  3330. name: "Beans",
  3331. image: {
  3332. source: "./media/characters/zephiro/beans.svg"
  3333. }
  3334. },
  3335. },
  3336. [
  3337. {
  3338. name: "Micro",
  3339. height: math.unit(3, "inches")
  3340. },
  3341. {
  3342. name: "Normal",
  3343. height: math.unit(5 + 3 / 12, "feet"),
  3344. default: true
  3345. },
  3346. {
  3347. name: "Macro",
  3348. height: math.unit(118, "feet")
  3349. },
  3350. ]
  3351. ))
  3352. characterMakers.push(() => makeCharacter(
  3353. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3354. {
  3355. front: {
  3356. height: math.unit(5, "feet"),
  3357. weight: math.unit(90, "kg"),
  3358. preyCapacity: math.unit(14, "people"),
  3359. name: "Front",
  3360. image: {
  3361. source: "./media/characters/fory/front.svg",
  3362. extra: 2862 / 2674,
  3363. bottom: 180 / 3043.8
  3364. },
  3365. form: "weaselbun",
  3366. default: true,
  3367. extraAttributes: {
  3368. "pawSize": {
  3369. name: "Paw Size",
  3370. power: 2,
  3371. type: "area",
  3372. base: math.unit(0.1596, "m^2")
  3373. },
  3374. "pawLength": {
  3375. name: "Paw Length",
  3376. power: 1,
  3377. type: "length",
  3378. base: math.unit(0.7, "m")
  3379. }
  3380. }
  3381. },
  3382. back: {
  3383. height: math.unit(5, "feet"),
  3384. weight: math.unit(90, "kg"),
  3385. preyCapacity: math.unit(14, "people"),
  3386. name: "Back",
  3387. image: {
  3388. source: "./media/characters/fory/back.svg",
  3389. extra: 1790/1672,
  3390. bottom: 84/1874
  3391. },
  3392. form: "weaselbun",
  3393. extraAttributes: {
  3394. "pawSize": {
  3395. name: "Paw Size",
  3396. power: 2,
  3397. type: "area",
  3398. base: math.unit(0.1596, "m^2")
  3399. },
  3400. "pawLength": {
  3401. name: "Paw Length",
  3402. power: 1,
  3403. type: "length",
  3404. base: math.unit(0.7, "m")
  3405. }
  3406. }
  3407. },
  3408. paw: {
  3409. height: math.unit(2.14, "feet"),
  3410. name: "Paw",
  3411. image: {
  3412. source: "./media/characters/fory/paw.svg"
  3413. },
  3414. form: "weaselbun",
  3415. extraAttributes: {
  3416. "pawSize": {
  3417. name: "Paw Size",
  3418. power: 2,
  3419. type: "area",
  3420. base: math.unit(0.1596, "m^2")
  3421. },
  3422. "pawLength": {
  3423. name: "Paw Length",
  3424. power: 1,
  3425. type: "length",
  3426. base: math.unit(0.48, "m")
  3427. }
  3428. }
  3429. },
  3430. bunBack: {
  3431. height: math.unit(3, "feet"),
  3432. weight: math.unit(20, "kg"),
  3433. preyCapacity: math.unit(3, "people"),
  3434. name: "Back",
  3435. image: {
  3436. source: "./media/characters/fory/bun-back.svg",
  3437. extra: 1749/1564,
  3438. bottom: 246/1995
  3439. },
  3440. form: "bun",
  3441. default: true,
  3442. extraAttributes: {
  3443. "pawSize": {
  3444. name: "Paw Size",
  3445. power: 2,
  3446. type: "area",
  3447. base: math.unit(0.072, "m^2")
  3448. },
  3449. "pawLength": {
  3450. name: "Paw Length",
  3451. power: 1,
  3452. type: "length",
  3453. base: math.unit(0.45, "m")
  3454. }
  3455. }
  3456. },
  3457. },
  3458. [
  3459. {
  3460. name: "Normal",
  3461. height: math.unit(5, "feet"),
  3462. form: "weaselbun"
  3463. },
  3464. {
  3465. name: "Macro",
  3466. height: math.unit(50, "feet"),
  3467. default: true,
  3468. form: "weaselbun"
  3469. },
  3470. {
  3471. name: "Megamacro",
  3472. height: math.unit(10, "miles"),
  3473. form: "weaselbun"
  3474. },
  3475. {
  3476. name: "Gigamacro",
  3477. height: math.unit(5, "earths"),
  3478. form: "weaselbun"
  3479. },
  3480. {
  3481. name: "Normal",
  3482. height: math.unit(3, "feet"),
  3483. default: true,
  3484. form: "bun"
  3485. },
  3486. {
  3487. name: "Fun-Size",
  3488. height: math.unit(12, "feet"),
  3489. form: "bun"
  3490. },
  3491. {
  3492. name: "Macro",
  3493. height: math.unit(100, "feet"),
  3494. form: "bun"
  3495. },
  3496. {
  3497. name: "Planetary",
  3498. height: math.unit(3, "earths"),
  3499. form: "bun"
  3500. },
  3501. ],
  3502. {
  3503. "weaselbun": {
  3504. name: "Weaselbun",
  3505. default: true
  3506. },
  3507. "bun": {
  3508. name: "Bun",
  3509. },
  3510. }
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3514. {
  3515. front: {
  3516. height: math.unit(7, "feet"),
  3517. weight: math.unit(90, "kg"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/kurrikage/front.svg",
  3521. extra: 1845/1733,
  3522. bottom: 119/1964
  3523. }
  3524. },
  3525. back: {
  3526. height: math.unit(7, "feet"),
  3527. weight: math.unit(90, "kg"),
  3528. name: "Back",
  3529. image: {
  3530. source: "./media/characters/kurrikage/back.svg",
  3531. extra: 1790/1677,
  3532. bottom: 61/1851
  3533. }
  3534. },
  3535. dressed: {
  3536. height: math.unit(7, "feet"),
  3537. weight: math.unit(90, "kg"),
  3538. name: "Dressed",
  3539. image: {
  3540. source: "./media/characters/kurrikage/dressed.svg",
  3541. extra: 1845/1733,
  3542. bottom: 119/1964
  3543. }
  3544. },
  3545. foot: {
  3546. height: math.unit(1.5, "feet"),
  3547. name: "Foot",
  3548. image: {
  3549. source: "./media/characters/kurrikage/foot.svg"
  3550. }
  3551. },
  3552. staff: {
  3553. height: math.unit(6.7, "feet"),
  3554. name: "Staff",
  3555. image: {
  3556. source: "./media/characters/kurrikage/staff.svg"
  3557. }
  3558. },
  3559. peek: {
  3560. height: math.unit(1.05, "feet"),
  3561. name: "Peeking",
  3562. image: {
  3563. source: "./media/characters/kurrikage/peek.svg",
  3564. bottom: 0.08
  3565. }
  3566. },
  3567. },
  3568. [
  3569. {
  3570. name: "Normal",
  3571. height: math.unit(12, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Big",
  3576. height: math.unit(20, "feet")
  3577. },
  3578. {
  3579. name: "Macro",
  3580. height: math.unit(500, "feet")
  3581. },
  3582. {
  3583. name: "Megamacro",
  3584. height: math.unit(20, "miles")
  3585. },
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(6, "feet"),
  3593. weight: math.unit(75, "kg"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/shingo/front.svg",
  3597. extra: 1900/1825,
  3598. bottom: 82/1982
  3599. }
  3600. },
  3601. side: {
  3602. height: math.unit(6, "feet"),
  3603. weight: math.unit(75, "kg"),
  3604. name: "Side",
  3605. image: {
  3606. source: "./media/characters/shingo/side.svg",
  3607. extra: 1930/1865,
  3608. bottom: 16/1946
  3609. }
  3610. },
  3611. back: {
  3612. height: math.unit(6, "feet"),
  3613. weight: math.unit(75, "kg"),
  3614. name: "Back",
  3615. image: {
  3616. source: "./media/characters/shingo/back.svg",
  3617. extra: 1922/1852,
  3618. bottom: 16/1938
  3619. }
  3620. },
  3621. frontDressed: {
  3622. height: math.unit(6, "feet"),
  3623. weight: math.unit(150, "lb"),
  3624. name: "Front-dressed",
  3625. image: {
  3626. source: "./media/characters/shingo/front-dressed.svg",
  3627. extra: 1900/1825,
  3628. bottom: 82/1982
  3629. }
  3630. },
  3631. paw: {
  3632. height: math.unit(1.29, "feet"),
  3633. name: "Paw",
  3634. image: {
  3635. source: "./media/characters/shingo/paw.svg"
  3636. }
  3637. },
  3638. hand: {
  3639. height: math.unit(1.07, "feet"),
  3640. name: "Hand",
  3641. image: {
  3642. source: "./media/characters/shingo/hand.svg"
  3643. }
  3644. },
  3645. frontAlt: {
  3646. height: math.unit(6, "feet"),
  3647. weight: math.unit(75, "kg"),
  3648. name: "Front (Alt)",
  3649. image: {
  3650. source: "./media/characters/shingo/front-alt.svg",
  3651. extra: 3511 / 3338,
  3652. bottom: 0.005
  3653. }
  3654. },
  3655. frontAlt2: {
  3656. height: math.unit(6, "feet"),
  3657. weight: math.unit(75, "kg"),
  3658. name: "Front (Alt 2)",
  3659. image: {
  3660. source: "./media/characters/shingo/front-alt-2.svg",
  3661. extra: 706/681,
  3662. bottom: 11/717
  3663. }
  3664. },
  3665. pawAlt: {
  3666. height: math.unit(1, "feet"),
  3667. name: "Paw (Alt)",
  3668. image: {
  3669. source: "./media/characters/shingo/paw-alt.svg"
  3670. }
  3671. },
  3672. },
  3673. [
  3674. {
  3675. name: "Micro",
  3676. height: math.unit(4, "inches")
  3677. },
  3678. {
  3679. name: "Normal",
  3680. height: math.unit(6, "feet"),
  3681. default: true
  3682. },
  3683. {
  3684. name: "Macro",
  3685. height: math.unit(108, "feet")
  3686. },
  3687. {
  3688. name: "Macro+",
  3689. height: math.unit(1500, "feet")
  3690. },
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3695. {
  3696. side: {
  3697. height: math.unit(6, "feet"),
  3698. weight: math.unit(75, "kg"),
  3699. name: "Side",
  3700. image: {
  3701. source: "./media/characters/aigey/side.svg"
  3702. }
  3703. },
  3704. },
  3705. [
  3706. {
  3707. name: "Macro",
  3708. height: math.unit(200, "feet"),
  3709. default: true
  3710. },
  3711. {
  3712. name: "Megamacro",
  3713. height: math.unit(100, "miles")
  3714. },
  3715. ]
  3716. )
  3717. )
  3718. characterMakers.push(() => makeCharacter(
  3719. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3720. {
  3721. front: {
  3722. height: math.unit(5 + 5 / 12, "feet"),
  3723. weight: math.unit(75, "kg"),
  3724. name: "Front",
  3725. image: {
  3726. source: "./media/characters/natasha/front.svg",
  3727. extra: 859 / 824,
  3728. bottom: 23 / 879.6
  3729. }
  3730. },
  3731. frontNsfw: {
  3732. height: math.unit(5 + 5 / 12, "feet"),
  3733. weight: math.unit(75, "kg"),
  3734. name: "Front (NSFW)",
  3735. image: {
  3736. source: "./media/characters/natasha/front-nsfw.svg",
  3737. extra: 859 / 824,
  3738. bottom: 23 / 879.6
  3739. }
  3740. },
  3741. frontErect: {
  3742. height: math.unit(5 + 5 / 12, "feet"),
  3743. weight: math.unit(75, "kg"),
  3744. name: "Front (Erect)",
  3745. image: {
  3746. source: "./media/characters/natasha/front-erect.svg",
  3747. extra: 859 / 824,
  3748. bottom: 23 / 879.6
  3749. }
  3750. },
  3751. back: {
  3752. height: math.unit(5 + 5 / 12, "feet"),
  3753. weight: math.unit(75, "kg"),
  3754. name: "Back",
  3755. image: {
  3756. source: "./media/characters/natasha/back.svg",
  3757. extra: 887.9 / 852.6,
  3758. bottom: 9.7 / 896.4
  3759. }
  3760. },
  3761. backAlt: {
  3762. height: math.unit(5 + 5 / 12, "feet"),
  3763. weight: math.unit(75, "kg"),
  3764. name: "Back (Alt)",
  3765. image: {
  3766. source: "./media/characters/natasha/back-alt.svg",
  3767. extra: 1236.7 / 1192,
  3768. bottom: 22.3 / 1258.2
  3769. }
  3770. },
  3771. dick: {
  3772. height: math.unit(1.772, "feet"),
  3773. name: "Dick",
  3774. image: {
  3775. source: "./media/characters/natasha/dick.svg"
  3776. }
  3777. },
  3778. paw: {
  3779. height: math.unit(0.250, "meters"),
  3780. name: "Paw",
  3781. image: {
  3782. source: "./media/characters/natasha/paw.svg"
  3783. },
  3784. extraAttributes: {
  3785. "toeSize": {
  3786. name: "Toe Size",
  3787. power: 2,
  3788. type: "area",
  3789. base: math.unit(0.0024, "m^2")
  3790. },
  3791. "padSize": {
  3792. name: "Pad Size",
  3793. power: 2,
  3794. type: "area",
  3795. base: math.unit(0.00889, "m^2")
  3796. },
  3797. "pawSize": {
  3798. name: "Paw Size",
  3799. power: 2,
  3800. type: "area",
  3801. base: math.unit(0.023667, "m^2")
  3802. },
  3803. }
  3804. },
  3805. },
  3806. [
  3807. {
  3808. name: "Shortstack",
  3809. height: math.unit(3, "feet"),
  3810. default: true
  3811. },
  3812. {
  3813. name: "Normal",
  3814. height: math.unit(5 + 5 / 12, "feet")
  3815. },
  3816. {
  3817. name: "Large",
  3818. height: math.unit(12, "feet")
  3819. },
  3820. {
  3821. name: "Macro",
  3822. height: math.unit(100, "feet")
  3823. },
  3824. {
  3825. name: "Macro+",
  3826. height: math.unit(260, "feet")
  3827. },
  3828. {
  3829. name: "Macro++",
  3830. height: math.unit(1, "mile")
  3831. },
  3832. ]
  3833. ))
  3834. characterMakers.push(() => makeCharacter(
  3835. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3836. {
  3837. front: {
  3838. height: math.unit(6, "feet"),
  3839. weight: math.unit(75, "kg"),
  3840. name: "Front",
  3841. image: {
  3842. source: "./media/characters/malik/front.svg",
  3843. extra: 1750/1561,
  3844. bottom: 80/1830
  3845. },
  3846. extraAttributes: {
  3847. "toeSize": {
  3848. name: "Toe Size",
  3849. power: 2,
  3850. type: "area",
  3851. base: math.unit(0.0159, "m^2")
  3852. },
  3853. "pawSize": {
  3854. name: "Paw Size",
  3855. power: 2,
  3856. type: "area",
  3857. base: math.unit(0.09834, "m^2")
  3858. },
  3859. }
  3860. },
  3861. side: {
  3862. height: math.unit(6, "feet"),
  3863. weight: math.unit(75, "kg"),
  3864. name: "Side",
  3865. image: {
  3866. source: "./media/characters/malik/side.svg",
  3867. extra: 1802/1685,
  3868. bottom: 42/1844
  3869. },
  3870. extraAttributes: {
  3871. "toeSize": {
  3872. name: "Toe Size",
  3873. power: 2,
  3874. type: "area",
  3875. base: math.unit(0.0159, "m^2")
  3876. },
  3877. "pawSize": {
  3878. name: "Paw Size",
  3879. power: 2,
  3880. type: "area",
  3881. base: math.unit(0.09834, "m^2")
  3882. },
  3883. }
  3884. },
  3885. back: {
  3886. height: math.unit(6, "feet"),
  3887. weight: math.unit(75, "kg"),
  3888. name: "Back",
  3889. image: {
  3890. source: "./media/characters/malik/back.svg",
  3891. extra: 1803/1607,
  3892. bottom: 33/1836
  3893. },
  3894. extraAttributes: {
  3895. "toeSize": {
  3896. name: "Toe Size",
  3897. power: 2,
  3898. type: "area",
  3899. base: math.unit(0.0159, "m^2")
  3900. },
  3901. "pawSize": {
  3902. name: "Paw Size",
  3903. power: 2,
  3904. type: "area",
  3905. base: math.unit(0.09834, "m^2")
  3906. },
  3907. }
  3908. },
  3909. },
  3910. [
  3911. {
  3912. name: "Macro",
  3913. height: math.unit(156, "feet"),
  3914. default: true
  3915. },
  3916. {
  3917. name: "Macro+",
  3918. height: math.unit(1188, "feet")
  3919. },
  3920. ]
  3921. ))
  3922. characterMakers.push(() => makeCharacter(
  3923. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3924. {
  3925. front: {
  3926. height: math.unit(6, "feet"),
  3927. weight: math.unit(75, "kg"),
  3928. name: "Front",
  3929. image: {
  3930. source: "./media/characters/sefer/front.svg",
  3931. extra: 848 / 659,
  3932. bottom: 28.3 / 876.442
  3933. }
  3934. },
  3935. back: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(75, "kg"),
  3938. name: "Back",
  3939. image: {
  3940. source: "./media/characters/sefer/back.svg",
  3941. extra: 864 / 695,
  3942. bottom: 10 / 871
  3943. }
  3944. },
  3945. frontDressed: {
  3946. height: math.unit(6, "feet"),
  3947. weight: math.unit(75, "kg"),
  3948. name: "Dressed",
  3949. image: {
  3950. source: "./media/characters/sefer/dressed.svg",
  3951. extra: 839 / 653,
  3952. bottom: 37.6 / 878
  3953. }
  3954. },
  3955. },
  3956. [
  3957. {
  3958. name: "Normal",
  3959. height: math.unit(6, "feet"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Big",
  3964. height: math.unit(8, "meters")
  3965. },
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3970. {
  3971. body: {
  3972. height: math.unit(2.2428, "meter"),
  3973. weight: math.unit(124.738, "kg"),
  3974. name: "Body",
  3975. image: {
  3976. extra: 1225 / 1050,
  3977. source: "./media/characters/north/front.svg"
  3978. }
  3979. }
  3980. },
  3981. [
  3982. {
  3983. name: "Micro",
  3984. height: math.unit(4, "inches")
  3985. },
  3986. {
  3987. name: "Macro",
  3988. height: math.unit(63, "meters")
  3989. },
  3990. {
  3991. name: "Megamacro",
  3992. height: math.unit(101, "miles"),
  3993. default: true
  3994. }
  3995. ]
  3996. ))
  3997. characterMakers.push(() => makeCharacter(
  3998. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3999. {
  4000. angled: {
  4001. height: math.unit(4, "meter"),
  4002. weight: math.unit(150, "kg"),
  4003. name: "Angled",
  4004. image: {
  4005. source: "./media/characters/talan/angled-sfw.svg",
  4006. bottom: 29 / 3734
  4007. }
  4008. },
  4009. angledNsfw: {
  4010. height: math.unit(4, "meter"),
  4011. weight: math.unit(150, "kg"),
  4012. name: "Angled (NSFW)",
  4013. image: {
  4014. source: "./media/characters/talan/angled-nsfw.svg",
  4015. bottom: 29 / 3734
  4016. }
  4017. },
  4018. frontNsfw: {
  4019. height: math.unit(4, "meter"),
  4020. weight: math.unit(150, "kg"),
  4021. name: "Front (NSFW)",
  4022. image: {
  4023. source: "./media/characters/talan/front-nsfw.svg",
  4024. bottom: 29 / 3734
  4025. }
  4026. },
  4027. sideNsfw: {
  4028. height: math.unit(4, "meter"),
  4029. weight: math.unit(150, "kg"),
  4030. name: "Side (NSFW)",
  4031. image: {
  4032. source: "./media/characters/talan/side-nsfw.svg",
  4033. bottom: 29 / 3734
  4034. }
  4035. },
  4036. back: {
  4037. height: math.unit(4, "meter"),
  4038. weight: math.unit(150, "kg"),
  4039. name: "Back",
  4040. image: {
  4041. source: "./media/characters/talan/back.svg"
  4042. }
  4043. },
  4044. dickBottom: {
  4045. height: math.unit(0.621, "meter"),
  4046. name: "Dick (Bottom)",
  4047. image: {
  4048. source: "./media/characters/talan/dick-bottom.svg"
  4049. }
  4050. },
  4051. dickTop: {
  4052. height: math.unit(0.621, "meter"),
  4053. name: "Dick (Top)",
  4054. image: {
  4055. source: "./media/characters/talan/dick-top.svg"
  4056. }
  4057. },
  4058. dickSide: {
  4059. height: math.unit(0.305, "meter"),
  4060. name: "Dick (Side)",
  4061. image: {
  4062. source: "./media/characters/talan/dick-side.svg"
  4063. }
  4064. },
  4065. dickFront: {
  4066. height: math.unit(0.305, "meter"),
  4067. name: "Dick (Front)",
  4068. image: {
  4069. source: "./media/characters/talan/dick-front.svg"
  4070. }
  4071. },
  4072. },
  4073. [
  4074. {
  4075. name: "Normal",
  4076. height: math.unit(4, "meters")
  4077. },
  4078. {
  4079. name: "Macro",
  4080. height: math.unit(100, "meters")
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(2, "miles"),
  4085. default: true
  4086. },
  4087. {
  4088. name: "Gigamacro",
  4089. height: math.unit(5000, "miles")
  4090. },
  4091. {
  4092. name: "Teramacro",
  4093. height: math.unit(100, "parsecs")
  4094. }
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4099. {
  4100. front: {
  4101. height: math.unit(2, "meter"),
  4102. weight: math.unit(90, "kg"),
  4103. name: "Front",
  4104. image: {
  4105. source: "./media/characters/gael'rathus/front.svg"
  4106. }
  4107. },
  4108. frontAlt: {
  4109. height: math.unit(2, "meter"),
  4110. weight: math.unit(90, "kg"),
  4111. name: "Front (alt)",
  4112. image: {
  4113. source: "./media/characters/gael'rathus/front-alt.svg"
  4114. }
  4115. },
  4116. frontAlt2: {
  4117. height: math.unit(2, "meter"),
  4118. weight: math.unit(90, "kg"),
  4119. name: "Front (alt 2)",
  4120. image: {
  4121. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4122. }
  4123. }
  4124. },
  4125. [
  4126. {
  4127. name: "Normal",
  4128. height: math.unit(9, "feet"),
  4129. default: true
  4130. },
  4131. {
  4132. name: "Large",
  4133. height: math.unit(25, "feet")
  4134. },
  4135. {
  4136. name: "Macro",
  4137. height: math.unit(0.25, "miles")
  4138. },
  4139. {
  4140. name: "Megamacro",
  4141. height: math.unit(10, "miles")
  4142. }
  4143. ]
  4144. ))
  4145. characterMakers.push(() => makeCharacter(
  4146. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4147. {
  4148. side: {
  4149. height: math.unit(2, "meter"),
  4150. weight: math.unit(140, "kg"),
  4151. name: "Side",
  4152. image: {
  4153. source: "./media/characters/sosha/side.svg",
  4154. extra: 1170/1006,
  4155. bottom: 94/1264
  4156. }
  4157. },
  4158. maw: {
  4159. height: math.unit(2.87, "feet"),
  4160. name: "Maw",
  4161. image: {
  4162. source: "./media/characters/sosha/maw.svg",
  4163. extra: 966/865,
  4164. bottom: 0/966
  4165. }
  4166. },
  4167. cooch: {
  4168. height: math.unit(5.6, "feet"),
  4169. name: "Cooch",
  4170. image: {
  4171. source: "./media/characters/sosha/cooch.svg"
  4172. }
  4173. },
  4174. },
  4175. [
  4176. {
  4177. name: "Normal",
  4178. height: math.unit(12, "feet"),
  4179. default: true
  4180. }
  4181. ]
  4182. ))
  4183. characterMakers.push(() => makeCharacter(
  4184. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4185. {
  4186. side: {
  4187. height: math.unit(5 + 5 / 12, "feet"),
  4188. weight: math.unit(170, "kg"),
  4189. name: "Side",
  4190. image: {
  4191. source: "./media/characters/runnola/side.svg",
  4192. extra: 741 / 448,
  4193. bottom: 0.05
  4194. }
  4195. },
  4196. },
  4197. [
  4198. {
  4199. name: "Small",
  4200. height: math.unit(3, "feet")
  4201. },
  4202. {
  4203. name: "Normal",
  4204. height: math.unit(5 + 5 / 12, "feet"),
  4205. default: true
  4206. },
  4207. {
  4208. name: "Big",
  4209. height: math.unit(10, "feet")
  4210. },
  4211. ]
  4212. ))
  4213. characterMakers.push(() => makeCharacter(
  4214. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4215. {
  4216. front: {
  4217. height: math.unit(2, "meter"),
  4218. weight: math.unit(50, "kg"),
  4219. name: "Front",
  4220. image: {
  4221. source: "./media/characters/kurribird/front.svg",
  4222. bottom: 0.015
  4223. }
  4224. },
  4225. frontAlt: {
  4226. height: math.unit(1.5, "meter"),
  4227. weight: math.unit(50, "kg"),
  4228. name: "Front (Alt)",
  4229. image: {
  4230. source: "./media/characters/kurribird/front-alt.svg",
  4231. extra: 1.45
  4232. }
  4233. },
  4234. },
  4235. [
  4236. {
  4237. name: "Normal",
  4238. height: math.unit(7, "feet")
  4239. },
  4240. {
  4241. name: "Big",
  4242. height: math.unit(12, "feet"),
  4243. default: true
  4244. },
  4245. {
  4246. name: "Macro",
  4247. height: math.unit(1500, "feet")
  4248. },
  4249. {
  4250. name: "Megamacro",
  4251. height: math.unit(2, "miles")
  4252. }
  4253. ]
  4254. ))
  4255. characterMakers.push(() => makeCharacter(
  4256. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4257. {
  4258. front: {
  4259. height: math.unit(2, "meter"),
  4260. weight: math.unit(80, "kg"),
  4261. name: "Front",
  4262. image: {
  4263. source: "./media/characters/elbial/front.svg",
  4264. extra: 1643 / 1556,
  4265. bottom: 60.2 / 1696
  4266. }
  4267. },
  4268. side: {
  4269. height: math.unit(2, "meter"),
  4270. weight: math.unit(80, "kg"),
  4271. name: "Side",
  4272. image: {
  4273. source: "./media/characters/elbial/side.svg",
  4274. extra: 1601/1528,
  4275. bottom: 97/1698
  4276. }
  4277. },
  4278. back: {
  4279. height: math.unit(2, "meter"),
  4280. weight: math.unit(80, "kg"),
  4281. name: "Back",
  4282. image: {
  4283. source: "./media/characters/elbial/back.svg",
  4284. extra: 1653/1569,
  4285. bottom: 20/1673
  4286. }
  4287. },
  4288. frontDressed: {
  4289. height: math.unit(2, "meter"),
  4290. weight: math.unit(80, "kg"),
  4291. name: "Front (Dressed)",
  4292. image: {
  4293. source: "./media/characters/elbial/front-dressed.svg",
  4294. extra: 1638/1569,
  4295. bottom: 70/1708
  4296. }
  4297. },
  4298. genitals: {
  4299. height: math.unit(2 / 3.367, "meter"),
  4300. name: "Genitals",
  4301. image: {
  4302. source: "./media/characters/elbial/genitals.svg"
  4303. }
  4304. },
  4305. },
  4306. [
  4307. {
  4308. name: "Large",
  4309. height: math.unit(100, "feet")
  4310. },
  4311. {
  4312. name: "Macro",
  4313. height: math.unit(500, "feet"),
  4314. default: true
  4315. },
  4316. {
  4317. name: "Megamacro",
  4318. height: math.unit(10, "miles")
  4319. },
  4320. {
  4321. name: "Gigamacro",
  4322. height: math.unit(25000, "miles")
  4323. },
  4324. {
  4325. name: "Full-Size",
  4326. height: math.unit(8000000, "gigaparsecs")
  4327. }
  4328. ]
  4329. ))
  4330. characterMakers.push(() => makeCharacter(
  4331. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4332. {
  4333. front: {
  4334. height: math.unit(2, "meter"),
  4335. weight: math.unit(60, "kg"),
  4336. name: "Front",
  4337. image: {
  4338. source: "./media/characters/noah/front.svg",
  4339. extra: 1383/1313,
  4340. bottom: 104/1487
  4341. }
  4342. },
  4343. hand: {
  4344. height: math.unit(0.6, "feet"),
  4345. name: "Hand",
  4346. image: {
  4347. source: "./media/characters/noah/hand.svg"
  4348. }
  4349. },
  4350. talons: {
  4351. height: math.unit(1.385, "feet"),
  4352. name: "Talons",
  4353. image: {
  4354. source: "./media/characters/noah/talons.svg"
  4355. }
  4356. },
  4357. beak: {
  4358. height: math.unit(0.43, "feet"),
  4359. name: "Beak",
  4360. image: {
  4361. source: "./media/characters/noah/beak.svg"
  4362. }
  4363. },
  4364. collar: {
  4365. height: math.unit(0.88, "feet"),
  4366. name: "Collar",
  4367. image: {
  4368. source: "./media/characters/noah/collar.svg"
  4369. }
  4370. },
  4371. eyeNarrow: {
  4372. height: math.unit(0.18, "feet"),
  4373. name: "Eye (Narrow)",
  4374. image: {
  4375. source: "./media/characters/noah/eye-narrow.svg"
  4376. }
  4377. },
  4378. eyeNormal: {
  4379. height: math.unit(0.18, "feet"),
  4380. name: "Eye (Normal)",
  4381. image: {
  4382. source: "./media/characters/noah/eye-normal.svg"
  4383. }
  4384. },
  4385. eyeWide: {
  4386. height: math.unit(0.18, "feet"),
  4387. name: "Eye (Wide)",
  4388. image: {
  4389. source: "./media/characters/noah/eye-wide.svg"
  4390. }
  4391. },
  4392. ear: {
  4393. height: math.unit(0.64, "feet"),
  4394. name: "Ear",
  4395. image: {
  4396. source: "./media/characters/noah/ear.svg"
  4397. }
  4398. },
  4399. },
  4400. [
  4401. {
  4402. name: "Large",
  4403. height: math.unit(50, "feet")
  4404. },
  4405. {
  4406. name: "Macro",
  4407. height: math.unit(750, "feet"),
  4408. default: true
  4409. },
  4410. {
  4411. name: "Megamacro",
  4412. height: math.unit(50, "miles")
  4413. },
  4414. {
  4415. name: "Gigamacro",
  4416. height: math.unit(100000, "miles")
  4417. },
  4418. {
  4419. name: "Full-Size",
  4420. height: math.unit(3000000000, "miles")
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4426. {
  4427. front: {
  4428. height: math.unit(2, "meter"),
  4429. weight: math.unit(80, "kg"),
  4430. name: "Front",
  4431. image: {
  4432. source: "./media/characters/natalya/front.svg"
  4433. }
  4434. },
  4435. back: {
  4436. height: math.unit(2, "meter"),
  4437. weight: math.unit(80, "kg"),
  4438. name: "Back",
  4439. image: {
  4440. source: "./media/characters/natalya/back.svg"
  4441. }
  4442. }
  4443. },
  4444. [
  4445. {
  4446. name: "Normal",
  4447. height: math.unit(150, "feet"),
  4448. default: true
  4449. },
  4450. {
  4451. name: "Megamacro",
  4452. height: math.unit(5, "miles")
  4453. },
  4454. {
  4455. name: "Full-Size",
  4456. height: math.unit(600, "kiloparsecs")
  4457. }
  4458. ]
  4459. ))
  4460. characterMakers.push(() => makeCharacter(
  4461. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4462. {
  4463. front: {
  4464. height: math.unit(2, "meter"),
  4465. weight: math.unit(50, "kg"),
  4466. name: "Front",
  4467. image: {
  4468. source: "./media/characters/erestrebah/front.svg",
  4469. extra: 1262/1162,
  4470. bottom: 96/1358
  4471. }
  4472. },
  4473. back: {
  4474. height: math.unit(2, "meter"),
  4475. weight: math.unit(50, "kg"),
  4476. name: "Back",
  4477. image: {
  4478. source: "./media/characters/erestrebah/back.svg",
  4479. extra: 1257/1139,
  4480. bottom: 13/1270
  4481. }
  4482. },
  4483. wing: {
  4484. height: math.unit(2, "meter"),
  4485. weight: math.unit(50, "kg"),
  4486. name: "Wing",
  4487. image: {
  4488. source: "./media/characters/erestrebah/wing.svg",
  4489. extra: 1262/1162,
  4490. bottom: 96/1358
  4491. }
  4492. },
  4493. mouth: {
  4494. height: math.unit(0.39, "feet"),
  4495. name: "Mouth",
  4496. image: {
  4497. source: "./media/characters/erestrebah/mouth.svg"
  4498. }
  4499. }
  4500. },
  4501. [
  4502. {
  4503. name: "Normal",
  4504. height: math.unit(10, "feet")
  4505. },
  4506. {
  4507. name: "Large",
  4508. height: math.unit(50, "feet"),
  4509. default: true
  4510. },
  4511. {
  4512. name: "Macro",
  4513. height: math.unit(300, "feet")
  4514. },
  4515. {
  4516. name: "Macro+",
  4517. height: math.unit(750, "feet")
  4518. },
  4519. {
  4520. name: "Megamacro",
  4521. height: math.unit(3, "miles")
  4522. }
  4523. ]
  4524. ))
  4525. characterMakers.push(() => makeCharacter(
  4526. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4527. {
  4528. front: {
  4529. height: math.unit(2, "meter"),
  4530. weight: math.unit(80, "kg"),
  4531. name: "Front",
  4532. image: {
  4533. source: "./media/characters/jennifer/front.svg",
  4534. bottom: 0.11,
  4535. extra: 1.16
  4536. }
  4537. },
  4538. frontAlt: {
  4539. height: math.unit(2, "meter"),
  4540. weight: math.unit(80, "kg"),
  4541. name: "Front (Alt)",
  4542. image: {
  4543. source: "./media/characters/jennifer/front-alt.svg"
  4544. }
  4545. }
  4546. },
  4547. [
  4548. {
  4549. name: "Canon Height",
  4550. height: math.unit(120, "feet"),
  4551. default: true
  4552. },
  4553. {
  4554. name: "Macro+",
  4555. height: math.unit(300, "feet")
  4556. },
  4557. {
  4558. name: "Megamacro",
  4559. height: math.unit(20000, "feet")
  4560. }
  4561. ]
  4562. ))
  4563. characterMakers.push(() => makeCharacter(
  4564. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4565. {
  4566. front: {
  4567. height: math.unit(2, "meter"),
  4568. weight: math.unit(50, "kg"),
  4569. name: "Front",
  4570. image: {
  4571. source: "./media/characters/kalista/front.svg",
  4572. extra: 1314/1145,
  4573. bottom: 101/1415
  4574. }
  4575. },
  4576. back: {
  4577. height: math.unit(2, "meter"),
  4578. weight: math.unit(50, "kg"),
  4579. name: "Back",
  4580. image: {
  4581. source: "./media/characters/kalista/back.svg",
  4582. extra: 1366 / 1156,
  4583. bottom: 33.9 / 1362.78
  4584. }
  4585. }
  4586. },
  4587. [
  4588. {
  4589. name: "Uncomfortably Small",
  4590. height: math.unit(10, "feet")
  4591. },
  4592. {
  4593. name: "Small",
  4594. height: math.unit(30, "feet")
  4595. },
  4596. {
  4597. name: "Macro",
  4598. height: math.unit(100, "feet"),
  4599. default: true
  4600. },
  4601. {
  4602. name: "Macro+",
  4603. height: math.unit(2000, "feet")
  4604. },
  4605. {
  4606. name: "True Form",
  4607. height: math.unit(8924, "miles")
  4608. }
  4609. ]
  4610. ))
  4611. characterMakers.push(() => makeCharacter(
  4612. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4613. {
  4614. front: {
  4615. height: math.unit(2, "meter"),
  4616. weight: math.unit(120, "kg"),
  4617. name: "Front",
  4618. image: {
  4619. source: "./media/characters/ggv/front.svg"
  4620. }
  4621. },
  4622. side: {
  4623. height: math.unit(2, "meter"),
  4624. weight: math.unit(120, "kg"),
  4625. name: "Side",
  4626. image: {
  4627. source: "./media/characters/ggv/side.svg"
  4628. }
  4629. }
  4630. },
  4631. [
  4632. {
  4633. name: "Extremely Puny",
  4634. height: math.unit(9 + 5 / 12, "feet")
  4635. },
  4636. {
  4637. name: "Horribly Small",
  4638. height: math.unit(47.7, "miles"),
  4639. default: true
  4640. },
  4641. {
  4642. name: "Reasonably Sized",
  4643. height: math.unit(25000, "parsecs")
  4644. },
  4645. {
  4646. name: "Slightly Uncompressed",
  4647. height: math.unit(7.77e31, "parsecs")
  4648. },
  4649. {
  4650. name: "Omniversal",
  4651. height: math.unit(1e300, "meters")
  4652. },
  4653. ]
  4654. ))
  4655. characterMakers.push(() => makeCharacter(
  4656. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4657. {
  4658. front: {
  4659. height: math.unit(2, "meter"),
  4660. weight: math.unit(75, "lb"),
  4661. name: "Front",
  4662. image: {
  4663. source: "./media/characters/napalm/front.svg"
  4664. }
  4665. },
  4666. back: {
  4667. height: math.unit(2, "meter"),
  4668. weight: math.unit(75, "lb"),
  4669. name: "Back",
  4670. image: {
  4671. source: "./media/characters/napalm/back.svg"
  4672. }
  4673. }
  4674. },
  4675. [
  4676. {
  4677. name: "Standard",
  4678. height: math.unit(55, "feet"),
  4679. default: true
  4680. }
  4681. ]
  4682. ))
  4683. characterMakers.push(() => makeCharacter(
  4684. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4685. {
  4686. front: {
  4687. height: math.unit(7 + 5 / 6, "feet"),
  4688. weight: math.unit(325, "lb"),
  4689. name: "Front",
  4690. image: {
  4691. source: "./media/characters/asana/front.svg",
  4692. extra: 1133 / 1060,
  4693. bottom: 15.2 / 1148.6
  4694. }
  4695. },
  4696. back: {
  4697. height: math.unit(7 + 5 / 6, "feet"),
  4698. weight: math.unit(325, "lb"),
  4699. name: "Back",
  4700. image: {
  4701. source: "./media/characters/asana/back.svg",
  4702. extra: 1114 / 1043,
  4703. bottom: 5 / 1120
  4704. }
  4705. },
  4706. dressedDark: {
  4707. height: math.unit(7 + 5 / 6, "feet"),
  4708. weight: math.unit(325, "lb"),
  4709. name: "Dressed (Dark)",
  4710. image: {
  4711. source: "./media/characters/asana/dressed-dark.svg",
  4712. extra: 1133 / 1060,
  4713. bottom: 15.2 / 1148.6
  4714. }
  4715. },
  4716. dressedLight: {
  4717. height: math.unit(7 + 5 / 6, "feet"),
  4718. weight: math.unit(325, "lb"),
  4719. name: "Dressed (Light)",
  4720. image: {
  4721. source: "./media/characters/asana/dressed-light.svg",
  4722. extra: 1133 / 1060,
  4723. bottom: 15.2 / 1148.6
  4724. }
  4725. },
  4726. },
  4727. [
  4728. {
  4729. name: "Standard",
  4730. height: math.unit(7 + 5 / 6, "feet"),
  4731. default: true
  4732. },
  4733. {
  4734. name: "Large",
  4735. height: math.unit(10, "meters")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(2500, "meters")
  4740. },
  4741. {
  4742. name: "Megamacro",
  4743. height: math.unit(5e6, "meters")
  4744. },
  4745. {
  4746. name: "Examacro",
  4747. height: math.unit(5e12, "lightyears")
  4748. },
  4749. {
  4750. name: "Max Size",
  4751. height: math.unit(1e31, "lightyears")
  4752. }
  4753. ]
  4754. ))
  4755. characterMakers.push(() => makeCharacter(
  4756. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4757. {
  4758. front: {
  4759. height: math.unit(2, "meter"),
  4760. weight: math.unit(60, "kg"),
  4761. name: "Front",
  4762. image: {
  4763. source: "./media/characters/ebony/front.svg",
  4764. bottom: 0.03,
  4765. extra: 1045 / 810 + 0.03
  4766. }
  4767. },
  4768. side: {
  4769. height: math.unit(2, "meter"),
  4770. weight: math.unit(60, "kg"),
  4771. name: "Side",
  4772. image: {
  4773. source: "./media/characters/ebony/side.svg",
  4774. bottom: 0.03,
  4775. extra: 1045 / 810 + 0.03
  4776. }
  4777. },
  4778. back: {
  4779. height: math.unit(2, "meter"),
  4780. weight: math.unit(60, "kg"),
  4781. name: "Back",
  4782. image: {
  4783. source: "./media/characters/ebony/back.svg",
  4784. bottom: 0.01,
  4785. extra: 1045 / 810 + 0.01
  4786. }
  4787. },
  4788. },
  4789. [
  4790. // TODO check why I did this lol
  4791. {
  4792. name: "Standard",
  4793. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4794. default: true
  4795. },
  4796. {
  4797. name: "Macro",
  4798. height: math.unit(200, "feet")
  4799. },
  4800. {
  4801. name: "Gigamacro",
  4802. height: math.unit(13000, "km")
  4803. }
  4804. ]
  4805. ))
  4806. characterMakers.push(() => makeCharacter(
  4807. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4808. {
  4809. front: {
  4810. height: math.unit(6, "feet"),
  4811. weight: math.unit(175, "lb"),
  4812. name: "Front",
  4813. image: {
  4814. source: "./media/characters/mountain/front.svg",
  4815. extra: 972 / 955,
  4816. bottom: 64 / 1036.6
  4817. }
  4818. },
  4819. back: {
  4820. height: math.unit(6, "feet"),
  4821. weight: math.unit(175, "lb"),
  4822. name: "Back",
  4823. image: {
  4824. source: "./media/characters/mountain/back.svg",
  4825. extra: 970 / 950,
  4826. bottom: 28.25 / 999
  4827. }
  4828. },
  4829. },
  4830. [
  4831. {
  4832. name: "Large",
  4833. height: math.unit(20, "meters")
  4834. },
  4835. {
  4836. name: "Macro",
  4837. height: math.unit(300, "meters")
  4838. },
  4839. {
  4840. name: "Gigamacro",
  4841. height: math.unit(10000, "km"),
  4842. default: true
  4843. },
  4844. {
  4845. name: "Examacro",
  4846. height: math.unit(10e9, "lightyears")
  4847. }
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4852. {
  4853. front: {
  4854. height: math.unit(8, "feet"),
  4855. weight: math.unit(500, "lb"),
  4856. name: "Front",
  4857. image: {
  4858. source: "./media/characters/rick/front.svg"
  4859. }
  4860. }
  4861. },
  4862. [
  4863. {
  4864. name: "Normal",
  4865. height: math.unit(8, "feet"),
  4866. default: true
  4867. },
  4868. {
  4869. name: "Macro",
  4870. height: math.unit(5, "km")
  4871. }
  4872. ]
  4873. ))
  4874. characterMakers.push(() => makeCharacter(
  4875. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4876. {
  4877. front: {
  4878. height: math.unit(8, "feet"),
  4879. weight: math.unit(120, "lb"),
  4880. name: "Front",
  4881. image: {
  4882. source: "./media/characters/ona/front.svg"
  4883. }
  4884. },
  4885. frontAlt: {
  4886. height: math.unit(8, "feet"),
  4887. weight: math.unit(120, "lb"),
  4888. name: "Front (Alt)",
  4889. image: {
  4890. source: "./media/characters/ona/front-alt.svg"
  4891. }
  4892. },
  4893. back: {
  4894. height: math.unit(8, "feet"),
  4895. weight: math.unit(120, "lb"),
  4896. name: "Back",
  4897. image: {
  4898. source: "./media/characters/ona/back.svg"
  4899. }
  4900. },
  4901. foot: {
  4902. height: math.unit(1.1, "feet"),
  4903. name: "Foot",
  4904. image: {
  4905. source: "./media/characters/ona/foot.svg"
  4906. }
  4907. }
  4908. },
  4909. [
  4910. {
  4911. name: "Megamacro",
  4912. height: math.unit(70, "km"),
  4913. default: true
  4914. },
  4915. {
  4916. name: "Gigamacro",
  4917. height: math.unit(681818, "miles")
  4918. },
  4919. {
  4920. name: "Examacro",
  4921. height: math.unit(3800000, "lightyears")
  4922. },
  4923. ]
  4924. ))
  4925. characterMakers.push(() => makeCharacter(
  4926. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4927. {
  4928. front: {
  4929. height: math.unit(12, "feet"),
  4930. weight: math.unit(3000, "lb"),
  4931. name: "Front",
  4932. image: {
  4933. source: "./media/characters/mech/front.svg",
  4934. extra: 2900 / 2770,
  4935. bottom: 110 / 3010
  4936. }
  4937. },
  4938. back: {
  4939. height: math.unit(12, "feet"),
  4940. weight: math.unit(3000, "lb"),
  4941. name: "Back",
  4942. image: {
  4943. source: "./media/characters/mech/back.svg",
  4944. extra: 3011 / 2890,
  4945. bottom: 94 / 3105
  4946. }
  4947. },
  4948. maw: {
  4949. height: math.unit(3.07, "feet"),
  4950. name: "Maw",
  4951. image: {
  4952. source: "./media/characters/mech/maw.svg"
  4953. }
  4954. },
  4955. head: {
  4956. height: math.unit(3.07, "feet"),
  4957. name: "Head",
  4958. image: {
  4959. source: "./media/characters/mech/head.svg"
  4960. }
  4961. },
  4962. dick: {
  4963. height: math.unit(1.43, "feet"),
  4964. name: "Dick",
  4965. image: {
  4966. source: "./media/characters/mech/dick.svg"
  4967. }
  4968. },
  4969. },
  4970. [
  4971. {
  4972. name: "Normal",
  4973. height: math.unit(12, "feet")
  4974. },
  4975. {
  4976. name: "Macro",
  4977. height: math.unit(300, "feet"),
  4978. default: true
  4979. },
  4980. {
  4981. name: "Macro+",
  4982. height: math.unit(1500, "feet")
  4983. },
  4984. ]
  4985. ))
  4986. characterMakers.push(() => makeCharacter(
  4987. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4988. {
  4989. front: {
  4990. height: math.unit(1.3, "meter"),
  4991. weight: math.unit(30, "kg"),
  4992. name: "Front",
  4993. image: {
  4994. source: "./media/characters/gregory/front.svg",
  4995. }
  4996. }
  4997. },
  4998. [
  4999. {
  5000. name: "Normal",
  5001. height: math.unit(1.3, "meter"),
  5002. default: true
  5003. },
  5004. {
  5005. name: "Macro",
  5006. height: math.unit(20, "meter")
  5007. }
  5008. ]
  5009. ))
  5010. characterMakers.push(() => makeCharacter(
  5011. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5012. {
  5013. front: {
  5014. height: math.unit(2.8, "meter"),
  5015. weight: math.unit(200, "kg"),
  5016. name: "Front",
  5017. image: {
  5018. source: "./media/characters/elory/front.svg",
  5019. }
  5020. }
  5021. },
  5022. [
  5023. {
  5024. name: "Normal",
  5025. height: math.unit(2.8, "meter"),
  5026. default: true
  5027. },
  5028. {
  5029. name: "Macro",
  5030. height: math.unit(38, "meter")
  5031. }
  5032. ]
  5033. ))
  5034. characterMakers.push(() => makeCharacter(
  5035. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5036. {
  5037. front: {
  5038. height: math.unit(470, "feet"),
  5039. weight: math.unit(924, "tons"),
  5040. name: "Front",
  5041. image: {
  5042. source: "./media/characters/angelpatamon/front.svg",
  5043. }
  5044. }
  5045. },
  5046. [
  5047. {
  5048. name: "Normal",
  5049. height: math.unit(470, "feet"),
  5050. default: true
  5051. },
  5052. {
  5053. name: "Deity Size I",
  5054. height: math.unit(28651.2, "km")
  5055. },
  5056. {
  5057. name: "Deity Size II",
  5058. height: math.unit(171907.2, "km")
  5059. }
  5060. ]
  5061. ))
  5062. characterMakers.push(() => makeCharacter(
  5063. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5064. {
  5065. side: {
  5066. height: math.unit(7.2, "meter"),
  5067. weight: math.unit(8.2, "tons"),
  5068. name: "Side",
  5069. image: {
  5070. source: "./media/characters/cryae/side.svg",
  5071. extra: 3500 / 1500
  5072. }
  5073. }
  5074. },
  5075. [
  5076. {
  5077. name: "Normal",
  5078. height: math.unit(7.2, "meter"),
  5079. default: true
  5080. }
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5085. {
  5086. front: {
  5087. height: math.unit(6, "feet"),
  5088. weight: math.unit(175, "lb"),
  5089. name: "Front",
  5090. image: {
  5091. source: "./media/characters/xera/front.svg",
  5092. extra: 2377 / 1972,
  5093. bottom: 75.5 / 2452
  5094. }
  5095. },
  5096. side: {
  5097. height: math.unit(6, "feet"),
  5098. weight: math.unit(175, "lb"),
  5099. name: "Side",
  5100. image: {
  5101. source: "./media/characters/xera/side.svg",
  5102. extra: 2345 / 2019,
  5103. bottom: 39.7 / 2384
  5104. }
  5105. },
  5106. back: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(175, "lb"),
  5109. name: "Back",
  5110. image: {
  5111. source: "./media/characters/xera/back.svg",
  5112. extra: 2095 / 1984,
  5113. bottom: 67 / 2166
  5114. }
  5115. },
  5116. },
  5117. [
  5118. {
  5119. name: "Small",
  5120. height: math.unit(10, "feet")
  5121. },
  5122. {
  5123. name: "Macro",
  5124. height: math.unit(500, "meters"),
  5125. default: true
  5126. },
  5127. {
  5128. name: "Macro+",
  5129. height: math.unit(10, "km")
  5130. },
  5131. {
  5132. name: "Gigamacro",
  5133. height: math.unit(25000, "km")
  5134. },
  5135. {
  5136. name: "Teramacro",
  5137. height: math.unit(3e6, "km")
  5138. }
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5143. {
  5144. front: {
  5145. height: math.unit(6, "feet"),
  5146. weight: math.unit(175, "lb"),
  5147. name: "Front",
  5148. image: {
  5149. source: "./media/characters/nebula/front.svg",
  5150. extra: 2566 / 2362,
  5151. bottom: 81 / 2644
  5152. }
  5153. }
  5154. },
  5155. [
  5156. {
  5157. name: "Small",
  5158. height: math.unit(4.5, "meters")
  5159. },
  5160. {
  5161. name: "Macro",
  5162. height: math.unit(1500, "meters"),
  5163. default: true
  5164. },
  5165. {
  5166. name: "Megamacro",
  5167. height: math.unit(150, "km")
  5168. },
  5169. {
  5170. name: "Gigamacro",
  5171. height: math.unit(27000, "km")
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5177. {
  5178. front: {
  5179. height: math.unit(6, "feet"),
  5180. weight: math.unit(225, "lb"),
  5181. name: "Front",
  5182. image: {
  5183. source: "./media/characters/abysgar/front.svg",
  5184. extra: 1739/1614,
  5185. bottom: 71/1810
  5186. }
  5187. },
  5188. frontNsfw: {
  5189. height: math.unit(6, "feet"),
  5190. weight: math.unit(225, "lb"),
  5191. name: "Front (NSFW)",
  5192. image: {
  5193. source: "./media/characters/abysgar/front-nsfw.svg",
  5194. extra: 1739/1614,
  5195. bottom: 71/1810
  5196. }
  5197. },
  5198. back: {
  5199. height: math.unit(4.6, "feet"),
  5200. weight: math.unit(225, "lb"),
  5201. name: "Back",
  5202. image: {
  5203. source: "./media/characters/abysgar/back.svg",
  5204. extra: 1384/1327,
  5205. bottom: 0/1384
  5206. }
  5207. },
  5208. head: {
  5209. height: math.unit(1.25, "feet"),
  5210. name: "Head",
  5211. image: {
  5212. source: "./media/characters/abysgar/head.svg",
  5213. extra: 669/569,
  5214. bottom: 0/669
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Small",
  5221. height: math.unit(4.5, "meters")
  5222. },
  5223. {
  5224. name: "Macro",
  5225. height: math.unit(1250, "meters"),
  5226. default: true
  5227. },
  5228. {
  5229. name: "Megamacro",
  5230. height: math.unit(125, "km")
  5231. },
  5232. {
  5233. name: "Gigamacro",
  5234. height: math.unit(26000, "km")
  5235. }
  5236. ]
  5237. ))
  5238. characterMakers.push(() => makeCharacter(
  5239. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5240. {
  5241. front: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(180, "lb"),
  5244. name: "Front",
  5245. image: {
  5246. source: "./media/characters/yakuz/front.svg"
  5247. }
  5248. }
  5249. },
  5250. [
  5251. {
  5252. name: "Small",
  5253. height: math.unit(5, "meters")
  5254. },
  5255. {
  5256. name: "Macro",
  5257. height: math.unit(1500, "meters"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Megamacro",
  5262. height: math.unit(200, "km")
  5263. },
  5264. {
  5265. name: "Gigamacro",
  5266. height: math.unit(100000, "km")
  5267. }
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(175, "lb"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/mirova/front.svg",
  5279. extra: 3334 / 3071,
  5280. bottom: 42 / 3375.6
  5281. }
  5282. }
  5283. },
  5284. [
  5285. {
  5286. name: "Small",
  5287. height: math.unit(5, "meters")
  5288. },
  5289. {
  5290. name: "Macro",
  5291. height: math.unit(900, "meters"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Megamacro",
  5296. height: math.unit(135, "km")
  5297. },
  5298. {
  5299. name: "Gigamacro",
  5300. height: math.unit(20000, "km")
  5301. }
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5306. {
  5307. side: {
  5308. height: math.unit(28.35, "feet"),
  5309. weight: math.unit(99.75, "tons"),
  5310. name: "Side",
  5311. image: {
  5312. source: "./media/characters/asana-mech/side.svg",
  5313. extra: 923 / 699,
  5314. bottom: 50 / 975
  5315. }
  5316. },
  5317. chaingun: {
  5318. height: math.unit(7, "feet"),
  5319. weight: math.unit(2400, "lb"),
  5320. name: "Chaingun",
  5321. image: {
  5322. source: "./media/characters/asana-mech/chaingun.svg"
  5323. }
  5324. },
  5325. laser: {
  5326. height: math.unit(7.12, "feet"),
  5327. weight: math.unit(2000, "lb"),
  5328. name: "Laser",
  5329. image: {
  5330. source: "./media/characters/asana-mech/laser.svg"
  5331. }
  5332. },
  5333. },
  5334. [
  5335. {
  5336. name: "Normal",
  5337. height: math.unit(28.35, "feet"),
  5338. default: true
  5339. },
  5340. {
  5341. name: "Macro",
  5342. height: math.unit(2500, "feet")
  5343. },
  5344. {
  5345. name: "Megamacro",
  5346. height: math.unit(25, "miles")
  5347. },
  5348. {
  5349. name: "Examacro",
  5350. height: math.unit(6e8, "lightyears")
  5351. },
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5356. {
  5357. front: {
  5358. height: math.unit(5, "meters"),
  5359. weight: math.unit(1000, "kg"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/asche/front.svg",
  5363. extra: 1258 / 1190,
  5364. bottom: 47 / 1305
  5365. }
  5366. },
  5367. frontUnderwear: {
  5368. height: math.unit(5, "meters"),
  5369. weight: math.unit(1000, "kg"),
  5370. name: "Front (Underwear)",
  5371. image: {
  5372. source: "./media/characters/asche/front-underwear.svg",
  5373. extra: 1258 / 1190,
  5374. bottom: 47 / 1305
  5375. }
  5376. },
  5377. frontDressed: {
  5378. height: math.unit(5, "meters"),
  5379. weight: math.unit(1000, "kg"),
  5380. name: "Front (Dressed)",
  5381. image: {
  5382. source: "./media/characters/asche/front-dressed.svg",
  5383. extra: 1258 / 1190,
  5384. bottom: 47 / 1305
  5385. }
  5386. },
  5387. frontArmor: {
  5388. height: math.unit(5, "meters"),
  5389. weight: math.unit(1000, "kg"),
  5390. name: "Front (Armored)",
  5391. image: {
  5392. source: "./media/characters/asche/front-armored.svg",
  5393. extra: 1374 / 1308,
  5394. bottom: 23 / 1397
  5395. }
  5396. },
  5397. mp724: {
  5398. height: math.unit(0.96, "meters"),
  5399. weight: math.unit(38, "kg"),
  5400. name: "H&K MP724",
  5401. image: {
  5402. source: "./media/characters/asche/h&k-mp724.svg"
  5403. }
  5404. },
  5405. side: {
  5406. height: math.unit(5, "meters"),
  5407. weight: math.unit(1000, "kg"),
  5408. name: "Side",
  5409. image: {
  5410. source: "./media/characters/asche/side.svg",
  5411. extra: 1717 / 1609,
  5412. bottom: 0.005
  5413. }
  5414. },
  5415. back: {
  5416. height: math.unit(5, "meters"),
  5417. weight: math.unit(1000, "kg"),
  5418. name: "Back",
  5419. image: {
  5420. source: "./media/characters/asche/back.svg",
  5421. extra: 1570 / 1501
  5422. }
  5423. },
  5424. },
  5425. [
  5426. {
  5427. name: "DEFCON 5",
  5428. height: math.unit(5, "meters")
  5429. },
  5430. {
  5431. name: "DEFCON 4",
  5432. height: math.unit(500, "meters"),
  5433. default: true
  5434. },
  5435. {
  5436. name: "DEFCON 3",
  5437. height: math.unit(5, "km")
  5438. },
  5439. {
  5440. name: "DEFCON 2",
  5441. height: math.unit(500, "km")
  5442. },
  5443. {
  5444. name: "DEFCON 1",
  5445. height: math.unit(500000, "km")
  5446. },
  5447. {
  5448. name: "DEFCON 0",
  5449. height: math.unit(3, "gigaparsecs")
  5450. },
  5451. ]
  5452. ))
  5453. characterMakers.push(() => makeCharacter(
  5454. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5455. {
  5456. front: {
  5457. height: math.unit(7, "feet"),
  5458. weight: math.unit(92.7, "kg"),
  5459. name: "Front",
  5460. image: {
  5461. source: "./media/characters/gale/front.svg",
  5462. extra: 977/919,
  5463. bottom: 105/1082
  5464. }
  5465. },
  5466. side: {
  5467. height: math.unit(6.7, "feet"),
  5468. weight: math.unit(92.7, "kg"),
  5469. name: "Side",
  5470. image: {
  5471. source: "./media/characters/gale/side.svg",
  5472. extra: 978/922,
  5473. bottom: 140/1118
  5474. }
  5475. },
  5476. back: {
  5477. height: math.unit(7, "feet"),
  5478. weight: math.unit(92.7, "kg"),
  5479. name: "Back",
  5480. image: {
  5481. source: "./media/characters/gale/back.svg",
  5482. extra: 966/920,
  5483. bottom: 61/1027
  5484. }
  5485. },
  5486. maw: {
  5487. height: math.unit(2.23, "feet"),
  5488. name: "Maw",
  5489. image: {
  5490. source: "./media/characters/gale/maw.svg"
  5491. }
  5492. },
  5493. foot: {
  5494. height: math.unit(2.1, "feet"),
  5495. name: "Foot",
  5496. image: {
  5497. source: "./media/characters/gale/foot.svg"
  5498. }
  5499. },
  5500. },
  5501. [
  5502. {
  5503. name: "Normal",
  5504. height: math.unit(7, "feet")
  5505. },
  5506. {
  5507. name: "Macro",
  5508. height: math.unit(150, "feet"),
  5509. default: true
  5510. },
  5511. {
  5512. name: "Macro+",
  5513. height: math.unit(300, "feet")
  5514. },
  5515. ]
  5516. ))
  5517. characterMakers.push(() => makeCharacter(
  5518. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5519. {
  5520. front: {
  5521. height: math.unit(5 + 10/12, "feet"),
  5522. weight: math.unit(67, "kg"),
  5523. name: "Front",
  5524. image: {
  5525. source: "./media/characters/draylen/front.svg",
  5526. extra: 832/777,
  5527. bottom: 85/917
  5528. }
  5529. }
  5530. },
  5531. [
  5532. {
  5533. name: "Normal",
  5534. height: math.unit(5 + 10/12, "feet")
  5535. },
  5536. {
  5537. name: "Macro",
  5538. height: math.unit(150, "feet"),
  5539. default: true
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5545. {
  5546. front: {
  5547. height: math.unit(7 + 9 / 12, "feet"),
  5548. weight: math.unit(379, "lbs"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/chez/front.svg"
  5552. }
  5553. },
  5554. side: {
  5555. height: math.unit(7 + 9 / 12, "feet"),
  5556. weight: math.unit(379, "lbs"),
  5557. name: "Side",
  5558. image: {
  5559. source: "./media/characters/chez/side.svg"
  5560. }
  5561. }
  5562. },
  5563. [
  5564. {
  5565. name: "Normal",
  5566. height: math.unit(7 + 9 / 12, "feet"),
  5567. default: true
  5568. },
  5569. {
  5570. name: "God King",
  5571. height: math.unit(9750000, "meters")
  5572. }
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5577. {
  5578. front: {
  5579. height: math.unit(6, "feet"),
  5580. weight: math.unit(275, "lbs"),
  5581. name: "Front",
  5582. image: {
  5583. source: "./media/characters/kaylum/front.svg",
  5584. bottom: 0.01,
  5585. extra: 1166 / 1031
  5586. }
  5587. },
  5588. frontWingless: {
  5589. height: math.unit(6, "feet"),
  5590. weight: math.unit(275, "lbs"),
  5591. name: "Front (Wingless)",
  5592. image: {
  5593. source: "./media/characters/kaylum/front-wingless.svg",
  5594. bottom: 0.01,
  5595. extra: 1117 / 1031
  5596. }
  5597. }
  5598. },
  5599. [
  5600. {
  5601. name: "Normal",
  5602. height: math.unit(3.05, "meters")
  5603. },
  5604. {
  5605. name: "Master",
  5606. height: math.unit(5.5, "meters")
  5607. },
  5608. {
  5609. name: "Rampage",
  5610. height: math.unit(19, "meters")
  5611. },
  5612. {
  5613. name: "Macro Lite",
  5614. height: math.unit(37, "meters")
  5615. },
  5616. {
  5617. name: "Hyper Predator",
  5618. height: math.unit(61, "meters")
  5619. },
  5620. {
  5621. name: "Macro",
  5622. height: math.unit(138, "meters"),
  5623. default: true
  5624. }
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5629. {
  5630. front: {
  5631. height: math.unit(5 + 5 / 12, "feet"),
  5632. weight: math.unit(120, "lbs"),
  5633. name: "Front",
  5634. image: {
  5635. source: "./media/characters/geta/front.svg",
  5636. extra: 1003/933,
  5637. bottom: 21/1024
  5638. }
  5639. },
  5640. paw: {
  5641. height: math.unit(0.35, "feet"),
  5642. name: "Paw",
  5643. image: {
  5644. source: "./media/characters/geta/paw.svg"
  5645. }
  5646. },
  5647. },
  5648. [
  5649. {
  5650. name: "Micro",
  5651. height: math.unit(3, "inches"),
  5652. default: true
  5653. },
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(5 + 5 / 12, "feet")
  5657. }
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5662. {
  5663. front: {
  5664. height: math.unit(6, "feet"),
  5665. weight: math.unit(300, "lbs"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/tyrnn/front.svg"
  5669. }
  5670. }
  5671. },
  5672. [
  5673. {
  5674. name: "Main Height",
  5675. height: math.unit(355, "feet"),
  5676. default: true
  5677. },
  5678. {
  5679. name: "Fave. Height",
  5680. height: math.unit(2400, "feet")
  5681. }
  5682. ]
  5683. ))
  5684. characterMakers.push(() => makeCharacter(
  5685. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5686. {
  5687. front: {
  5688. height: math.unit(6, "feet"),
  5689. weight: math.unit(300, "lbs"),
  5690. name: "Front",
  5691. image: {
  5692. source: "./media/characters/appledectomy/front.svg"
  5693. }
  5694. }
  5695. },
  5696. [
  5697. {
  5698. name: "Macro",
  5699. height: math.unit(2500, "feet")
  5700. },
  5701. {
  5702. name: "Megamacro",
  5703. height: math.unit(50, "miles"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "Gigamacro",
  5708. height: math.unit(5000, "miles")
  5709. },
  5710. {
  5711. name: "Teramacro",
  5712. height: math.unit(250000, "miles")
  5713. },
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5718. {
  5719. front: {
  5720. height: math.unit(6, "feet"),
  5721. weight: math.unit(200, "lbs"),
  5722. name: "Front",
  5723. image: {
  5724. source: "./media/characters/vulpes/front.svg",
  5725. extra: 573 / 543,
  5726. bottom: 0.033
  5727. }
  5728. },
  5729. side: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(200, "lbs"),
  5732. name: "Side",
  5733. image: {
  5734. source: "./media/characters/vulpes/side.svg",
  5735. extra: 577 / 549,
  5736. bottom: 11 / 588
  5737. }
  5738. },
  5739. back: {
  5740. height: math.unit(6, "feet"),
  5741. weight: math.unit(200, "lbs"),
  5742. name: "Back",
  5743. image: {
  5744. source: "./media/characters/vulpes/back.svg",
  5745. extra: 573 / 549,
  5746. bottom: 20 / 593
  5747. }
  5748. },
  5749. feet: {
  5750. height: math.unit(1.276, "feet"),
  5751. name: "Feet",
  5752. image: {
  5753. source: "./media/characters/vulpes/feet.svg"
  5754. }
  5755. },
  5756. maw: {
  5757. height: math.unit(1.18, "feet"),
  5758. name: "Maw",
  5759. image: {
  5760. source: "./media/characters/vulpes/maw.svg"
  5761. }
  5762. },
  5763. },
  5764. [
  5765. {
  5766. name: "Micro",
  5767. height: math.unit(2, "inches")
  5768. },
  5769. {
  5770. name: "Normal",
  5771. height: math.unit(6.3, "feet")
  5772. },
  5773. {
  5774. name: "Macro",
  5775. height: math.unit(850, "feet")
  5776. },
  5777. {
  5778. name: "Megamacro",
  5779. height: math.unit(7500, "feet"),
  5780. default: true
  5781. },
  5782. {
  5783. name: "Gigamacro",
  5784. height: math.unit(570000, "miles")
  5785. }
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5790. {
  5791. front: {
  5792. height: math.unit(6, "feet"),
  5793. weight: math.unit(210, "lbs"),
  5794. name: "Front",
  5795. image: {
  5796. source: "./media/characters/rain-fallen/front.svg"
  5797. }
  5798. },
  5799. side: {
  5800. height: math.unit(6, "feet"),
  5801. weight: math.unit(210, "lbs"),
  5802. name: "Side",
  5803. image: {
  5804. source: "./media/characters/rain-fallen/side.svg"
  5805. }
  5806. },
  5807. back: {
  5808. height: math.unit(6, "feet"),
  5809. weight: math.unit(210, "lbs"),
  5810. name: "Back",
  5811. image: {
  5812. source: "./media/characters/rain-fallen/back.svg"
  5813. }
  5814. },
  5815. feral: {
  5816. height: math.unit(9, "feet"),
  5817. weight: math.unit(700, "lbs"),
  5818. name: "Feral",
  5819. image: {
  5820. source: "./media/characters/rain-fallen/feral.svg"
  5821. }
  5822. },
  5823. },
  5824. [
  5825. {
  5826. name: "Meddling with Mortals",
  5827. height: math.unit(8 + 8/12, "feet")
  5828. },
  5829. {
  5830. name: "Normal",
  5831. height: math.unit(5, "meter")
  5832. },
  5833. {
  5834. name: "Macro",
  5835. height: math.unit(150, "meter"),
  5836. default: true
  5837. },
  5838. {
  5839. name: "Megamacro",
  5840. height: math.unit(278e6, "meter")
  5841. },
  5842. {
  5843. name: "Gigamacro",
  5844. height: math.unit(2e9, "meter")
  5845. },
  5846. {
  5847. name: "Teramacro",
  5848. height: math.unit(8e12, "meter")
  5849. },
  5850. {
  5851. name: "Devourer",
  5852. height: math.unit(14, "zettameters")
  5853. },
  5854. {
  5855. name: "Scarlet King",
  5856. height: math.unit(18, "yottameters")
  5857. },
  5858. {
  5859. name: "Void",
  5860. height: math.unit(1e88, "yottameters")
  5861. }
  5862. ]
  5863. ))
  5864. characterMakers.push(() => makeCharacter(
  5865. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5866. {
  5867. standing: {
  5868. height: math.unit(6, "feet"),
  5869. weight: math.unit(180, "lbs"),
  5870. name: "Standing",
  5871. image: {
  5872. source: "./media/characters/zaakira/standing.svg",
  5873. extra: 1599/1504,
  5874. bottom: 39/1638
  5875. }
  5876. },
  5877. laying: {
  5878. height: math.unit(3.3, "feet"),
  5879. weight: math.unit(180, "lbs"),
  5880. name: "Laying",
  5881. image: {
  5882. source: "./media/characters/zaakira/laying.svg"
  5883. }
  5884. },
  5885. },
  5886. [
  5887. {
  5888. name: "Normal",
  5889. height: math.unit(12, "feet")
  5890. },
  5891. {
  5892. name: "Macro",
  5893. height: math.unit(279, "feet"),
  5894. default: true
  5895. }
  5896. ]
  5897. ))
  5898. characterMakers.push(() => makeCharacter(
  5899. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5900. {
  5901. femSfw: {
  5902. height: math.unit(8, "feet"),
  5903. weight: math.unit(350, "lb"),
  5904. name: "Fem",
  5905. image: {
  5906. source: "./media/characters/sigvald/fem-sfw.svg",
  5907. extra: 182 / 164,
  5908. bottom: 8.7 / 190.5
  5909. }
  5910. },
  5911. femNsfw: {
  5912. height: math.unit(8, "feet"),
  5913. weight: math.unit(350, "lb"),
  5914. name: "Fem (NSFW)",
  5915. image: {
  5916. source: "./media/characters/sigvald/fem-nsfw.svg",
  5917. extra: 182 / 164,
  5918. bottom: 8.7 / 190.5
  5919. }
  5920. },
  5921. maleNsfw: {
  5922. height: math.unit(8, "feet"),
  5923. weight: math.unit(350, "lb"),
  5924. name: "Male (NSFW)",
  5925. image: {
  5926. source: "./media/characters/sigvald/male-nsfw.svg",
  5927. extra: 182 / 164,
  5928. bottom: 8.7 / 190.5
  5929. }
  5930. },
  5931. hermNsfw: {
  5932. height: math.unit(8, "feet"),
  5933. weight: math.unit(350, "lb"),
  5934. name: "Herm (NSFW)",
  5935. image: {
  5936. source: "./media/characters/sigvald/herm-nsfw.svg",
  5937. extra: 182 / 164,
  5938. bottom: 8.7 / 190.5
  5939. }
  5940. },
  5941. dick: {
  5942. height: math.unit(2.36, "feet"),
  5943. name: "Dick",
  5944. image: {
  5945. source: "./media/characters/sigvald/dick.svg"
  5946. }
  5947. },
  5948. eye: {
  5949. height: math.unit(0.31, "feet"),
  5950. name: "Eye",
  5951. image: {
  5952. source: "./media/characters/sigvald/eye.svg"
  5953. }
  5954. },
  5955. mouth: {
  5956. height: math.unit(0.92, "feet"),
  5957. name: "Mouth",
  5958. image: {
  5959. source: "./media/characters/sigvald/mouth.svg"
  5960. }
  5961. },
  5962. paws: {
  5963. height: math.unit(2.2, "feet"),
  5964. name: "Paws",
  5965. image: {
  5966. source: "./media/characters/sigvald/paws.svg"
  5967. }
  5968. }
  5969. },
  5970. [
  5971. {
  5972. name: "Normal",
  5973. height: math.unit(8, "feet")
  5974. },
  5975. {
  5976. name: "Large",
  5977. height: math.unit(12, "feet")
  5978. },
  5979. {
  5980. name: "Larger",
  5981. height: math.unit(20, "feet")
  5982. },
  5983. {
  5984. name: "Macro",
  5985. height: math.unit(150, "feet")
  5986. },
  5987. {
  5988. name: "Macro+",
  5989. height: math.unit(200, "feet"),
  5990. default: true
  5991. },
  5992. ]
  5993. ))
  5994. characterMakers.push(() => makeCharacter(
  5995. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5996. {
  5997. side: {
  5998. height: math.unit(12, "feet"),
  5999. weight: math.unit(2000, "kg"),
  6000. name: "Side",
  6001. image: {
  6002. source: "./media/characters/scott/side.svg",
  6003. extra: 754 / 724,
  6004. bottom: 0.069
  6005. }
  6006. },
  6007. upright: {
  6008. height: math.unit(12, "feet"),
  6009. weight: math.unit(2000, "kg"),
  6010. name: "Upright",
  6011. image: {
  6012. source: "./media/characters/scott/upright.svg",
  6013. extra: 3881 / 3722,
  6014. bottom: 0.05
  6015. }
  6016. },
  6017. },
  6018. [
  6019. {
  6020. name: "Normal",
  6021. height: math.unit(12, "feet"),
  6022. default: true
  6023. },
  6024. ]
  6025. ))
  6026. characterMakers.push(() => makeCharacter(
  6027. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6028. {
  6029. side: {
  6030. height: math.unit(8, "meters"),
  6031. weight: math.unit(84755, "lbs"),
  6032. name: "Side",
  6033. image: {
  6034. source: "./media/characters/tobias/side.svg",
  6035. extra: 1474 / 1096,
  6036. bottom: 38.9 / 1513.1235
  6037. }
  6038. },
  6039. },
  6040. [
  6041. {
  6042. name: "Normal",
  6043. height: math.unit(8, "meters"),
  6044. default: true
  6045. },
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6050. {
  6051. front: {
  6052. height: math.unit(5.5, "feet"),
  6053. weight: math.unit(400, "lbs"),
  6054. name: "Front",
  6055. image: {
  6056. source: "./media/characters/kieran/front.svg",
  6057. extra: 2694 / 2364,
  6058. bottom: 217 / 2908
  6059. }
  6060. },
  6061. side: {
  6062. height: math.unit(5.5, "feet"),
  6063. weight: math.unit(400, "lbs"),
  6064. name: "Side",
  6065. image: {
  6066. source: "./media/characters/kieran/side.svg",
  6067. extra: 875 / 777,
  6068. bottom: 84.6 / 959
  6069. }
  6070. },
  6071. },
  6072. [
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(5.5, "feet"),
  6076. default: true
  6077. },
  6078. ]
  6079. ))
  6080. characterMakers.push(() => makeCharacter(
  6081. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6082. {
  6083. side: {
  6084. height: math.unit(2, "meters"),
  6085. weight: math.unit(70, "kg"),
  6086. name: "Side",
  6087. image: {
  6088. source: "./media/characters/sanya/side.svg",
  6089. bottom: 0.02,
  6090. extra: 1.02
  6091. }
  6092. },
  6093. },
  6094. [
  6095. {
  6096. name: "Small",
  6097. height: math.unit(2, "meters")
  6098. },
  6099. {
  6100. name: "Normal",
  6101. height: math.unit(3, "meters")
  6102. },
  6103. {
  6104. name: "Macro",
  6105. height: math.unit(16, "meters"),
  6106. default: true
  6107. },
  6108. ]
  6109. ))
  6110. characterMakers.push(() => makeCharacter(
  6111. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6112. {
  6113. front: {
  6114. height: math.unit(2, "meters"),
  6115. weight: math.unit(120, "kg"),
  6116. name: "Front",
  6117. image: {
  6118. source: "./media/characters/miranda/front.svg",
  6119. extra: 195 / 185,
  6120. bottom: 10.9 / 206.5
  6121. }
  6122. },
  6123. back: {
  6124. height: math.unit(2, "meters"),
  6125. weight: math.unit(120, "kg"),
  6126. name: "Back",
  6127. image: {
  6128. source: "./media/characters/miranda/back.svg",
  6129. extra: 201 / 193,
  6130. bottom: 2.3 / 203.7
  6131. }
  6132. },
  6133. },
  6134. [
  6135. {
  6136. name: "Normal",
  6137. height: math.unit(10, "feet"),
  6138. default: true
  6139. }
  6140. ]
  6141. ))
  6142. characterMakers.push(() => makeCharacter(
  6143. { name: "James", species: ["deer"], tags: ["anthro"] },
  6144. {
  6145. side: {
  6146. height: math.unit(2, "meters"),
  6147. weight: math.unit(100, "kg"),
  6148. name: "Front",
  6149. image: {
  6150. source: "./media/characters/james/front.svg",
  6151. extra: 10 / 8.5
  6152. }
  6153. },
  6154. },
  6155. [
  6156. {
  6157. name: "Normal",
  6158. height: math.unit(8.5, "feet"),
  6159. default: true
  6160. }
  6161. ]
  6162. ))
  6163. characterMakers.push(() => makeCharacter(
  6164. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6165. {
  6166. side: {
  6167. height: math.unit(9.5, "feet"),
  6168. weight: math.unit(2500, "lbs"),
  6169. name: "Side",
  6170. image: {
  6171. source: "./media/characters/heather/side.svg"
  6172. }
  6173. },
  6174. },
  6175. [
  6176. {
  6177. name: "Normal",
  6178. height: math.unit(9.5, "feet"),
  6179. default: true
  6180. }
  6181. ]
  6182. ))
  6183. characterMakers.push(() => makeCharacter(
  6184. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6185. {
  6186. side: {
  6187. height: math.unit(6.5, "feet"),
  6188. weight: math.unit(400, "lbs"),
  6189. name: "Side",
  6190. image: {
  6191. source: "./media/characters/lukas/side.svg",
  6192. extra: 7.25 / 6.5
  6193. }
  6194. },
  6195. },
  6196. [
  6197. {
  6198. name: "Normal",
  6199. height: math.unit(6.5, "feet"),
  6200. default: true
  6201. }
  6202. ]
  6203. ))
  6204. characterMakers.push(() => makeCharacter(
  6205. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6206. {
  6207. side: {
  6208. height: math.unit(5, "feet"),
  6209. weight: math.unit(3000, "lbs"),
  6210. name: "Side",
  6211. image: {
  6212. source: "./media/characters/louise/side.svg"
  6213. }
  6214. },
  6215. },
  6216. [
  6217. {
  6218. name: "Normal",
  6219. height: math.unit(5, "feet"),
  6220. default: true
  6221. }
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6226. {
  6227. side: {
  6228. height: math.unit(6, "feet"),
  6229. weight: math.unit(150, "lbs"),
  6230. name: "Side",
  6231. image: {
  6232. source: "./media/characters/ramona/side.svg",
  6233. extra: 871/854,
  6234. bottom: 41/912
  6235. }
  6236. },
  6237. },
  6238. [
  6239. {
  6240. name: "Normal",
  6241. height: math.unit(6 + 4/12, "feet")
  6242. },
  6243. {
  6244. name: "Minimacro",
  6245. height: math.unit(5.3, "meters"),
  6246. default: true
  6247. },
  6248. {
  6249. name: "Macro",
  6250. height: math.unit(20, "stories")
  6251. },
  6252. {
  6253. name: "Macro+",
  6254. height: math.unit(50, "stories")
  6255. },
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6260. {
  6261. standing: {
  6262. height: math.unit(5.75, "feet"),
  6263. weight: math.unit(160, "lbs"),
  6264. name: "Standing",
  6265. image: {
  6266. source: "./media/characters/deerpuff/standing.svg",
  6267. extra: 682 / 624
  6268. }
  6269. },
  6270. sitting: {
  6271. height: math.unit(5.75 / 1.79, "feet"),
  6272. weight: math.unit(160, "lbs"),
  6273. name: "Sitting",
  6274. image: {
  6275. source: "./media/characters/deerpuff/sitting.svg",
  6276. bottom: 44 / 400,
  6277. extra: 1
  6278. }
  6279. },
  6280. taurLaying: {
  6281. height: math.unit(6, "feet"),
  6282. weight: math.unit(400, "lbs"),
  6283. name: "Taur (Laying)",
  6284. image: {
  6285. source: "./media/characters/deerpuff/taur-laying.svg"
  6286. }
  6287. },
  6288. },
  6289. [
  6290. {
  6291. name: "Puffball",
  6292. height: math.unit(6, "inches")
  6293. },
  6294. {
  6295. name: "Normalpuff",
  6296. height: math.unit(5.75, "feet")
  6297. },
  6298. {
  6299. name: "Macropuff",
  6300. height: math.unit(1500, "feet"),
  6301. default: true
  6302. },
  6303. {
  6304. name: "Megapuff",
  6305. height: math.unit(500, "miles")
  6306. },
  6307. {
  6308. name: "Gigapuff",
  6309. height: math.unit(250000, "miles")
  6310. },
  6311. {
  6312. name: "Omegapuff",
  6313. height: math.unit(1000, "lightyears")
  6314. },
  6315. ]
  6316. ))
  6317. characterMakers.push(() => makeCharacter(
  6318. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6319. {
  6320. stomping: {
  6321. height: math.unit(6, "feet"),
  6322. weight: math.unit(170, "lbs"),
  6323. name: "Stomping",
  6324. image: {
  6325. source: "./media/characters/vivian/stomping.svg"
  6326. }
  6327. },
  6328. sitting: {
  6329. height: math.unit(6 / 1.75, "feet"),
  6330. weight: math.unit(170, "lbs"),
  6331. name: "Sitting",
  6332. image: {
  6333. source: "./media/characters/vivian/sitting.svg",
  6334. bottom: 1 / 6.4,
  6335. extra: 1,
  6336. }
  6337. },
  6338. },
  6339. [
  6340. {
  6341. name: "Normal",
  6342. height: math.unit(7, "feet"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Macro",
  6347. height: math.unit(10, "stories")
  6348. },
  6349. {
  6350. name: "Macro+",
  6351. height: math.unit(30, "stories")
  6352. },
  6353. {
  6354. name: "Megamacro",
  6355. height: math.unit(10, "miles")
  6356. },
  6357. {
  6358. name: "Megamacro+",
  6359. height: math.unit(2750000, "meters")
  6360. },
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6365. {
  6366. front: {
  6367. height: math.unit(6, "feet"),
  6368. weight: math.unit(160, "lbs"),
  6369. name: "Front",
  6370. image: {
  6371. source: "./media/characters/prince/front.svg",
  6372. extra: 1938/1682,
  6373. bottom: 45/1983
  6374. }
  6375. },
  6376. back: {
  6377. height: math.unit(6, "feet"),
  6378. weight: math.unit(160, "lbs"),
  6379. name: "Back",
  6380. image: {
  6381. source: "./media/characters/prince/back.svg",
  6382. extra: 1955/1726,
  6383. bottom: 6/1961
  6384. }
  6385. },
  6386. },
  6387. [
  6388. {
  6389. name: "Normal",
  6390. height: math.unit(7.75, "feet"),
  6391. default: true
  6392. },
  6393. {
  6394. name: "Not cute",
  6395. height: math.unit(17, "feet")
  6396. },
  6397. {
  6398. name: "I said NOT",
  6399. height: math.unit(91, "feet")
  6400. },
  6401. {
  6402. name: "Please stop",
  6403. height: math.unit(560, "feet")
  6404. },
  6405. {
  6406. name: "What have you done",
  6407. height: math.unit(2200, "feet")
  6408. },
  6409. {
  6410. name: "Deer God",
  6411. height: math.unit(3.6, "miles")
  6412. },
  6413. ]
  6414. ))
  6415. characterMakers.push(() => makeCharacter(
  6416. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6417. {
  6418. standing: {
  6419. height: math.unit(6, "feet"),
  6420. weight: math.unit(300, "lbs"),
  6421. name: "Standing",
  6422. image: {
  6423. source: "./media/characters/psymon/standing.svg",
  6424. extra: 1888 / 1810,
  6425. bottom: 0.05
  6426. }
  6427. },
  6428. slithering: {
  6429. height: math.unit(6, "feet"),
  6430. weight: math.unit(300, "lbs"),
  6431. name: "Slithering",
  6432. image: {
  6433. source: "./media/characters/psymon/slithering.svg",
  6434. extra: 1330 / 1224
  6435. }
  6436. },
  6437. slitheringAlt: {
  6438. height: math.unit(6, "feet"),
  6439. weight: math.unit(300, "lbs"),
  6440. name: "Slithering (Alt)",
  6441. image: {
  6442. source: "./media/characters/psymon/slithering-alt.svg",
  6443. extra: 1330 / 1224
  6444. }
  6445. },
  6446. },
  6447. [
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(11.25, "feet"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Large",
  6455. height: math.unit(27, "feet")
  6456. },
  6457. {
  6458. name: "Giant",
  6459. height: math.unit(87, "feet")
  6460. },
  6461. {
  6462. name: "Macro",
  6463. height: math.unit(365, "feet")
  6464. },
  6465. {
  6466. name: "Megamacro",
  6467. height: math.unit(3, "miles")
  6468. },
  6469. {
  6470. name: "World Serpent",
  6471. height: math.unit(8000, "miles")
  6472. },
  6473. ]
  6474. ))
  6475. characterMakers.push(() => makeCharacter(
  6476. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6477. {
  6478. front: {
  6479. height: math.unit(6, "feet"),
  6480. weight: math.unit(180, "lbs"),
  6481. name: "Front",
  6482. image: {
  6483. source: "./media/characters/daimos/front.svg",
  6484. extra: 4160 / 3897,
  6485. bottom: 0.021
  6486. }
  6487. }
  6488. },
  6489. [
  6490. {
  6491. name: "Normal",
  6492. height: math.unit(8, "feet"),
  6493. default: true
  6494. },
  6495. {
  6496. name: "Big Dog",
  6497. height: math.unit(22, "feet")
  6498. },
  6499. {
  6500. name: "Macro",
  6501. height: math.unit(127, "feet")
  6502. },
  6503. {
  6504. name: "Megamacro",
  6505. height: math.unit(3600, "feet")
  6506. },
  6507. ]
  6508. ))
  6509. characterMakers.push(() => makeCharacter(
  6510. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6511. {
  6512. side: {
  6513. height: math.unit(6, "feet"),
  6514. weight: math.unit(180, "lbs"),
  6515. name: "Side",
  6516. image: {
  6517. source: "./media/characters/blake/side.svg",
  6518. extra: 1212 / 1120,
  6519. bottom: 0.05
  6520. }
  6521. },
  6522. crouched: {
  6523. height: math.unit(6 * 0.57, "feet"),
  6524. weight: math.unit(180, "lbs"),
  6525. name: "Crouched",
  6526. image: {
  6527. source: "./media/characters/blake/crouched.svg",
  6528. extra: 840 / 587,
  6529. bottom: 0.04
  6530. }
  6531. },
  6532. bent: {
  6533. height: math.unit(6 * 0.75, "feet"),
  6534. weight: math.unit(180, "lbs"),
  6535. name: "Bent",
  6536. image: {
  6537. source: "./media/characters/blake/bent.svg",
  6538. extra: 592 / 544,
  6539. bottom: 0.035
  6540. }
  6541. },
  6542. },
  6543. [
  6544. {
  6545. name: "Normal",
  6546. height: math.unit(8 + 1 / 6, "feet"),
  6547. default: true
  6548. },
  6549. {
  6550. name: "Big Backside",
  6551. height: math.unit(37, "feet")
  6552. },
  6553. {
  6554. name: "Subway Shredder",
  6555. height: math.unit(72, "feet")
  6556. },
  6557. {
  6558. name: "City Carver",
  6559. height: math.unit(1675, "feet")
  6560. },
  6561. {
  6562. name: "Tectonic Tweaker",
  6563. height: math.unit(2300, "miles")
  6564. },
  6565. ]
  6566. ))
  6567. characterMakers.push(() => makeCharacter(
  6568. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6569. {
  6570. front: {
  6571. height: math.unit(6, "feet"),
  6572. weight: math.unit(180, "lbs"),
  6573. name: "Front",
  6574. image: {
  6575. source: "./media/characters/guisetto/front.svg",
  6576. extra: 856 / 817,
  6577. bottom: 0.06
  6578. }
  6579. },
  6580. airborne: {
  6581. height: math.unit(6, "feet"),
  6582. weight: math.unit(180, "lbs"),
  6583. name: "Airborne",
  6584. image: {
  6585. source: "./media/characters/guisetto/airborne.svg",
  6586. extra: 584 / 525
  6587. }
  6588. },
  6589. },
  6590. [
  6591. {
  6592. name: "Normal",
  6593. height: math.unit(10 + 11 / 12, "feet"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Large",
  6598. height: math.unit(35, "feet")
  6599. },
  6600. {
  6601. name: "Macro",
  6602. height: math.unit(475, "feet")
  6603. },
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6608. {
  6609. front: {
  6610. height: math.unit(6, "feet"),
  6611. weight: math.unit(180, "lbs"),
  6612. name: "Front",
  6613. image: {
  6614. source: "./media/characters/luxor/front.svg",
  6615. extra: 2940 / 2152
  6616. }
  6617. },
  6618. back: {
  6619. height: math.unit(6, "feet"),
  6620. weight: math.unit(180, "lbs"),
  6621. name: "Back",
  6622. image: {
  6623. source: "./media/characters/luxor/back.svg",
  6624. extra: 1083 / 960
  6625. }
  6626. },
  6627. },
  6628. [
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(5 + 5 / 6, "feet"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Lamp",
  6636. height: math.unit(50, "feet")
  6637. },
  6638. {
  6639. name: "Lämp",
  6640. height: math.unit(300, "feet")
  6641. },
  6642. {
  6643. name: "The sun is a lamp",
  6644. height: math.unit(250000, "miles")
  6645. },
  6646. ]
  6647. ))
  6648. characterMakers.push(() => makeCharacter(
  6649. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6650. {
  6651. front: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(50, "lbs"),
  6654. name: "Front",
  6655. image: {
  6656. source: "./media/characters/huoyan/front.svg"
  6657. }
  6658. },
  6659. side: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(180, "lbs"),
  6662. name: "Side",
  6663. image: {
  6664. source: "./media/characters/huoyan/side.svg"
  6665. }
  6666. },
  6667. },
  6668. [
  6669. {
  6670. name: "Chef",
  6671. height: math.unit(9, "feet")
  6672. },
  6673. {
  6674. name: "Normal",
  6675. height: math.unit(65, "feet"),
  6676. default: true
  6677. },
  6678. {
  6679. name: "Macro",
  6680. height: math.unit(780, "feet")
  6681. },
  6682. {
  6683. name: "Flaming Mountain",
  6684. height: math.unit(4.8, "miles")
  6685. },
  6686. {
  6687. name: "Celestial",
  6688. height: math.unit(765000, "miles")
  6689. },
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6694. {
  6695. front: {
  6696. height: math.unit(5 + 3 / 4, "feet"),
  6697. weight: math.unit(120, "lbs"),
  6698. name: "Front",
  6699. image: {
  6700. source: "./media/characters/tails/front.svg"
  6701. }
  6702. }
  6703. },
  6704. [
  6705. {
  6706. name: "Normal",
  6707. height: math.unit(5 + 3 / 4, "feet"),
  6708. default: true
  6709. }
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6714. {
  6715. front: {
  6716. height: math.unit(4, "feet"),
  6717. weight: math.unit(50, "lbs"),
  6718. name: "Front",
  6719. image: {
  6720. source: "./media/characters/rainy/front.svg"
  6721. }
  6722. }
  6723. },
  6724. [
  6725. {
  6726. name: "Macro",
  6727. height: math.unit(800, "feet"),
  6728. default: true
  6729. }
  6730. ]
  6731. ))
  6732. characterMakers.push(() => makeCharacter(
  6733. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6734. {
  6735. front: {
  6736. height: math.unit(6, "feet"),
  6737. weight: math.unit(150, "lbs"),
  6738. name: "Front",
  6739. image: {
  6740. source: "./media/characters/rainier/front.svg"
  6741. }
  6742. }
  6743. },
  6744. [
  6745. {
  6746. name: "Micro",
  6747. height: math.unit(2, "mm"),
  6748. default: true
  6749. }
  6750. ]
  6751. ))
  6752. characterMakers.push(() => makeCharacter(
  6753. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6754. {
  6755. front: {
  6756. height: math.unit(8 + 4/12, "feet"),
  6757. weight: math.unit(450, "kilograms"),
  6758. volume: math.unit(5, "cups"),
  6759. name: "Front",
  6760. image: {
  6761. source: "./media/characters/andy-renard/front.svg",
  6762. extra: 1839/1726,
  6763. bottom: 134/1973
  6764. }
  6765. },
  6766. back: {
  6767. height: math.unit(8 + 4/12, "feet"),
  6768. weight: math.unit(450, "kilograms"),
  6769. volume: math.unit(5, "cups"),
  6770. name: "Back",
  6771. image: {
  6772. source: "./media/characters/andy-renard/back.svg",
  6773. extra: 1838/1710,
  6774. bottom: 105/1943
  6775. }
  6776. },
  6777. },
  6778. [
  6779. {
  6780. name: "Tall",
  6781. height: math.unit(8 + 4/12, "feet")
  6782. },
  6783. {
  6784. name: "Mini Macro",
  6785. height: math.unit(15, "feet"),
  6786. default: true
  6787. },
  6788. {
  6789. name: "Macro",
  6790. height: math.unit(100, "feet")
  6791. },
  6792. {
  6793. name: "Mega Macro",
  6794. height: math.unit(1000, "feet")
  6795. },
  6796. {
  6797. name: "Giga Macro",
  6798. height: math.unit(10, "miles")
  6799. },
  6800. {
  6801. name: "God Macro",
  6802. height: math.unit(1, "multiverse")
  6803. },
  6804. ]
  6805. ))
  6806. characterMakers.push(() => makeCharacter(
  6807. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6808. {
  6809. front: {
  6810. height: math.unit(6, "feet"),
  6811. weight: math.unit(210, "lbs"),
  6812. name: "Front",
  6813. image: {
  6814. source: "./media/characters/cimmaron/front-sfw.svg",
  6815. extra: 701 / 676,
  6816. bottom: 0.046
  6817. }
  6818. },
  6819. back: {
  6820. height: math.unit(6, "feet"),
  6821. weight: math.unit(210, "lbs"),
  6822. name: "Back",
  6823. image: {
  6824. source: "./media/characters/cimmaron/back-sfw.svg",
  6825. extra: 701 / 676,
  6826. bottom: 0.046
  6827. }
  6828. },
  6829. frontNsfw: {
  6830. height: math.unit(6, "feet"),
  6831. weight: math.unit(210, "lbs"),
  6832. name: "Front (NSFW)",
  6833. image: {
  6834. source: "./media/characters/cimmaron/front-nsfw.svg",
  6835. extra: 701 / 676,
  6836. bottom: 0.046
  6837. }
  6838. },
  6839. backNsfw: {
  6840. height: math.unit(6, "feet"),
  6841. weight: math.unit(210, "lbs"),
  6842. name: "Back (NSFW)",
  6843. image: {
  6844. source: "./media/characters/cimmaron/back-nsfw.svg",
  6845. extra: 701 / 676,
  6846. bottom: 0.046
  6847. }
  6848. },
  6849. dick: {
  6850. height: math.unit(1.714, "feet"),
  6851. name: "Dick",
  6852. image: {
  6853. source: "./media/characters/cimmaron/dick.svg"
  6854. }
  6855. },
  6856. },
  6857. [
  6858. {
  6859. name: "Normal",
  6860. height: math.unit(6, "feet"),
  6861. default: true
  6862. },
  6863. {
  6864. name: "Macro Mayor",
  6865. height: math.unit(350, "meters")
  6866. },
  6867. ]
  6868. ))
  6869. characterMakers.push(() => makeCharacter(
  6870. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6871. {
  6872. front: {
  6873. height: math.unit(6, "feet"),
  6874. weight: math.unit(200, "lbs"),
  6875. name: "Front",
  6876. image: {
  6877. source: "./media/characters/akari/front.svg",
  6878. extra: 962 / 901,
  6879. bottom: 0.04
  6880. }
  6881. }
  6882. },
  6883. [
  6884. {
  6885. name: "Micro",
  6886. height: math.unit(5, "inches"),
  6887. default: true
  6888. },
  6889. {
  6890. name: "Normal",
  6891. height: math.unit(7, "feet")
  6892. },
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(6, "feet"),
  6900. weight: math.unit(140, "lbs"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/cynosura/front.svg",
  6904. extra: 437/410,
  6905. bottom: 9/446
  6906. }
  6907. },
  6908. back: {
  6909. height: math.unit(6, "feet"),
  6910. weight: math.unit(140, "lbs"),
  6911. name: "Back",
  6912. image: {
  6913. source: "./media/characters/cynosura/back.svg",
  6914. extra: 1304/1160,
  6915. bottom: 71/1375
  6916. }
  6917. },
  6918. },
  6919. [
  6920. {
  6921. name: "Micro",
  6922. height: math.unit(4, "inches")
  6923. },
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(5.75, "feet"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Tall",
  6931. height: math.unit(10, "feet")
  6932. },
  6933. {
  6934. name: "Big",
  6935. height: math.unit(20, "feet")
  6936. },
  6937. {
  6938. name: "Macro",
  6939. height: math.unit(50, "feet")
  6940. },
  6941. ]
  6942. ))
  6943. characterMakers.push(() => makeCharacter(
  6944. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6945. {
  6946. front: {
  6947. height: math.unit(13 + 2/12, "feet"),
  6948. weight: math.unit(800, "kg"),
  6949. name: "Front",
  6950. image: {
  6951. source: "./media/characters/gin/front.svg",
  6952. extra: 1312/1191,
  6953. bottom: 45/1357
  6954. }
  6955. },
  6956. mouth: {
  6957. height: math.unit(2.39 * 1.8, "feet"),
  6958. name: "Mouth",
  6959. image: {
  6960. source: "./media/characters/gin/mouth.svg"
  6961. }
  6962. },
  6963. hand: {
  6964. height: math.unit(1.57 * 2.19, "feet"),
  6965. name: "Hand",
  6966. image: {
  6967. source: "./media/characters/gin/hand.svg"
  6968. }
  6969. },
  6970. foot: {
  6971. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6972. name: "Foot",
  6973. image: {
  6974. source: "./media/characters/gin/foot.svg"
  6975. }
  6976. },
  6977. sole: {
  6978. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6979. name: "Sole",
  6980. image: {
  6981. source: "./media/characters/gin/sole.svg"
  6982. }
  6983. },
  6984. },
  6985. [
  6986. {
  6987. name: "Very Small",
  6988. height: math.unit(13 + 2 / 12, "feet")
  6989. },
  6990. {
  6991. name: "Micro",
  6992. height: math.unit(600, "miles")
  6993. },
  6994. {
  6995. name: "Regular",
  6996. height: math.unit(20, "earths"),
  6997. default: true
  6998. },
  6999. {
  7000. name: "Macro",
  7001. height: math.unit(2.2, "solarradii")
  7002. },
  7003. {
  7004. name: "Teramacro",
  7005. height: math.unit(1.2, "galaxies")
  7006. },
  7007. {
  7008. name: "Omegamacro",
  7009. height: math.unit(200, "universes")
  7010. },
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7015. {
  7016. front: {
  7017. height: math.unit(6 + 1 / 6, "feet"),
  7018. weight: math.unit(178, "lbs"),
  7019. name: "Front",
  7020. image: {
  7021. source: "./media/characters/guy/front.svg"
  7022. }
  7023. }
  7024. },
  7025. [
  7026. {
  7027. name: "Normal",
  7028. height: math.unit(6 + 1 / 6, "feet"),
  7029. default: true
  7030. },
  7031. {
  7032. name: "Large",
  7033. height: math.unit(25 + 7 / 12, "feet")
  7034. },
  7035. {
  7036. name: "Macro",
  7037. height: math.unit(60 + 9 / 12, "feet")
  7038. },
  7039. {
  7040. name: "Macro+",
  7041. height: math.unit(246, "feet")
  7042. },
  7043. {
  7044. name: "Macro++",
  7045. height: math.unit(878, "feet")
  7046. }
  7047. ]
  7048. ))
  7049. characterMakers.push(() => makeCharacter(
  7050. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7051. {
  7052. front: {
  7053. height: math.unit(9, "feet"),
  7054. weight: math.unit(800, "lbs"),
  7055. name: "Front",
  7056. image: {
  7057. source: "./media/characters/tiberius/front.svg",
  7058. extra: 2295 / 2071
  7059. }
  7060. },
  7061. back: {
  7062. height: math.unit(9, "feet"),
  7063. weight: math.unit(800, "lbs"),
  7064. name: "Back",
  7065. image: {
  7066. source: "./media/characters/tiberius/back.svg",
  7067. extra: 2373 / 2160
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(9, "feet"),
  7075. default: true
  7076. }
  7077. ]
  7078. ))
  7079. characterMakers.push(() => makeCharacter(
  7080. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7081. {
  7082. front: {
  7083. height: math.unit(6, "feet"),
  7084. weight: math.unit(600, "lbs"),
  7085. name: "Front",
  7086. image: {
  7087. source: "./media/characters/surgo/front.svg",
  7088. extra: 3591 / 2227
  7089. }
  7090. },
  7091. back: {
  7092. height: math.unit(6, "feet"),
  7093. weight: math.unit(600, "lbs"),
  7094. name: "Back",
  7095. image: {
  7096. source: "./media/characters/surgo/back.svg",
  7097. extra: 3557 / 2228
  7098. }
  7099. },
  7100. laying: {
  7101. height: math.unit(6 * 0.85, "feet"),
  7102. weight: math.unit(600, "lbs"),
  7103. name: "Laying",
  7104. image: {
  7105. source: "./media/characters/surgo/laying.svg"
  7106. }
  7107. },
  7108. },
  7109. [
  7110. {
  7111. name: "Normal",
  7112. height: math.unit(6, "feet"),
  7113. default: true
  7114. }
  7115. ]
  7116. ))
  7117. characterMakers.push(() => makeCharacter(
  7118. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7119. {
  7120. side: {
  7121. height: math.unit(6, "feet"),
  7122. weight: math.unit(150, "lbs"),
  7123. name: "Side",
  7124. image: {
  7125. source: "./media/characters/cibus/side.svg",
  7126. extra: 800 / 400
  7127. }
  7128. },
  7129. },
  7130. [
  7131. {
  7132. name: "Normal",
  7133. height: math.unit(6, "feet"),
  7134. default: true
  7135. }
  7136. ]
  7137. ))
  7138. characterMakers.push(() => makeCharacter(
  7139. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7140. {
  7141. front: {
  7142. height: math.unit(6, "feet"),
  7143. weight: math.unit(240, "lbs"),
  7144. name: "Front",
  7145. image: {
  7146. source: "./media/characters/nibbles/front.svg"
  7147. }
  7148. },
  7149. side: {
  7150. height: math.unit(6, "feet"),
  7151. weight: math.unit(240, "lbs"),
  7152. name: "Side",
  7153. image: {
  7154. source: "./media/characters/nibbles/side.svg"
  7155. }
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "Normal",
  7161. height: math.unit(9, "feet"),
  7162. default: true
  7163. }
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7168. {
  7169. side: {
  7170. height: math.unit(5 + 1 / 6, "feet"),
  7171. weight: math.unit(130, "lbs"),
  7172. name: "Side",
  7173. image: {
  7174. source: "./media/characters/rikky/side.svg",
  7175. extra: 851 / 801
  7176. }
  7177. },
  7178. },
  7179. [
  7180. {
  7181. name: "Normal",
  7182. height: math.unit(5 + 1 / 6, "feet")
  7183. },
  7184. {
  7185. name: "Macro",
  7186. height: math.unit(152, "feet"),
  7187. default: true
  7188. },
  7189. {
  7190. name: "Megamacro",
  7191. height: math.unit(7, "miles")
  7192. }
  7193. ]
  7194. ))
  7195. characterMakers.push(() => makeCharacter(
  7196. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7197. {
  7198. side: {
  7199. height: math.unit(370, "cm"),
  7200. weight: math.unit(350, "lbs"),
  7201. name: "Side",
  7202. image: {
  7203. source: "./media/characters/malfressa/side.svg"
  7204. }
  7205. },
  7206. walking: {
  7207. height: math.unit(370, "cm"),
  7208. weight: math.unit(350, "lbs"),
  7209. name: "Walking",
  7210. image: {
  7211. source: "./media/characters/malfressa/walking.svg"
  7212. }
  7213. },
  7214. feral: {
  7215. height: math.unit(2500, "cm"),
  7216. weight: math.unit(100000, "lbs"),
  7217. name: "Feral",
  7218. image: {
  7219. source: "./media/characters/malfressa/feral.svg",
  7220. extra: 2108 / 837,
  7221. bottom: 0.02
  7222. }
  7223. },
  7224. },
  7225. [
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(370, "cm")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(300, "meters"),
  7233. default: true
  7234. }
  7235. ]
  7236. ))
  7237. characterMakers.push(() => makeCharacter(
  7238. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7239. {
  7240. front: {
  7241. height: math.unit(6, "feet"),
  7242. weight: math.unit(60, "kg"),
  7243. name: "Front",
  7244. image: {
  7245. source: "./media/characters/jaro/front.svg",
  7246. extra: 845/817,
  7247. bottom: 45/890
  7248. }
  7249. },
  7250. back: {
  7251. height: math.unit(6, "feet"),
  7252. weight: math.unit(60, "kg"),
  7253. name: "Back",
  7254. image: {
  7255. source: "./media/characters/jaro/back.svg",
  7256. extra: 847/817,
  7257. bottom: 34/881
  7258. }
  7259. },
  7260. },
  7261. [
  7262. {
  7263. name: "Micro",
  7264. height: math.unit(7, "inches")
  7265. },
  7266. {
  7267. name: "Normal",
  7268. height: math.unit(5.5, "feet"),
  7269. default: true
  7270. },
  7271. {
  7272. name: "Minimacro",
  7273. height: math.unit(20, "feet")
  7274. },
  7275. {
  7276. name: "Macro",
  7277. height: math.unit(200, "meters")
  7278. }
  7279. ]
  7280. ))
  7281. characterMakers.push(() => makeCharacter(
  7282. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7283. {
  7284. front: {
  7285. height: math.unit(6, "feet"),
  7286. weight: math.unit(195, "lb"),
  7287. name: "Front",
  7288. image: {
  7289. source: "./media/characters/rogue/front.svg"
  7290. }
  7291. },
  7292. },
  7293. [
  7294. {
  7295. name: "Macro",
  7296. height: math.unit(90, "feet"),
  7297. default: true
  7298. },
  7299. ]
  7300. ))
  7301. characterMakers.push(() => makeCharacter(
  7302. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7303. {
  7304. standing: {
  7305. height: math.unit(5 + 8 / 12, "feet"),
  7306. weight: math.unit(140, "lb"),
  7307. name: "Standing",
  7308. image: {
  7309. source: "./media/characters/piper/standing.svg",
  7310. extra: 1440/1284,
  7311. bottom: 66/1506
  7312. }
  7313. },
  7314. running: {
  7315. height: math.unit(5 + 8 / 12, "feet"),
  7316. weight: math.unit(140, "lb"),
  7317. name: "Running",
  7318. image: {
  7319. source: "./media/characters/piper/running.svg",
  7320. extra: 3948/3655,
  7321. bottom: 0/3948
  7322. }
  7323. },
  7324. sole: {
  7325. height: math.unit(0.81, "feet"),
  7326. weight: math.unit(2, "kg"),
  7327. name: "Sole",
  7328. image: {
  7329. source: "./media/characters/piper/sole.svg"
  7330. }
  7331. },
  7332. nipple: {
  7333. height: math.unit(0.25, "feet"),
  7334. weight: math.unit(1.5, "lb"),
  7335. name: "Nipple",
  7336. image: {
  7337. source: "./media/characters/piper/nipple.svg"
  7338. }
  7339. },
  7340. head: {
  7341. height: math.unit(1.1, "feet"),
  7342. name: "Head",
  7343. image: {
  7344. source: "./media/characters/piper/head.svg"
  7345. }
  7346. },
  7347. },
  7348. [
  7349. {
  7350. name: "Micro",
  7351. height: math.unit(2, "inches")
  7352. },
  7353. {
  7354. name: "Normal",
  7355. height: math.unit(5 + 8 / 12, "feet")
  7356. },
  7357. {
  7358. name: "Macro",
  7359. height: math.unit(250, "feet"),
  7360. default: true
  7361. },
  7362. {
  7363. name: "Megamacro",
  7364. height: math.unit(7, "miles")
  7365. },
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(6, "feet"),
  7373. weight: math.unit(220, "lb"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/gemini/front.svg"
  7377. }
  7378. },
  7379. back: {
  7380. height: math.unit(6, "feet"),
  7381. weight: math.unit(220, "lb"),
  7382. name: "Back",
  7383. image: {
  7384. source: "./media/characters/gemini/back.svg"
  7385. }
  7386. },
  7387. kneeling: {
  7388. height: math.unit(6 / 1.5, "feet"),
  7389. weight: math.unit(220, "lb"),
  7390. name: "Kneeling",
  7391. image: {
  7392. source: "./media/characters/gemini/kneeling.svg",
  7393. bottom: 0.02
  7394. }
  7395. },
  7396. },
  7397. [
  7398. {
  7399. name: "Macro",
  7400. height: math.unit(300, "meters"),
  7401. default: true
  7402. },
  7403. {
  7404. name: "Megamacro",
  7405. height: math.unit(6900, "meters")
  7406. },
  7407. ]
  7408. ))
  7409. characterMakers.push(() => makeCharacter(
  7410. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7411. {
  7412. anthro: {
  7413. height: math.unit(2.35, "meters"),
  7414. weight: math.unit(73, "kg"),
  7415. name: "Anthro",
  7416. image: {
  7417. source: "./media/characters/alicia/anthro.svg",
  7418. extra: 2571 / 2385,
  7419. bottom: 75 / 2648
  7420. }
  7421. },
  7422. paw: {
  7423. height: math.unit(1.32, "feet"),
  7424. name: "Paw",
  7425. image: {
  7426. source: "./media/characters/alicia/paw.svg"
  7427. }
  7428. },
  7429. feral: {
  7430. height: math.unit(1.69, "meters"),
  7431. weight: math.unit(73, "kg"),
  7432. name: "Feral",
  7433. image: {
  7434. source: "./media/characters/alicia/feral.svg",
  7435. extra: 2123 / 1715,
  7436. bottom: 222 / 2349
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(2.35, "meters")
  7444. },
  7445. {
  7446. name: "Macro",
  7447. height: math.unit(60, "meters"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Megamacro",
  7452. height: math.unit(10000, "kilometers")
  7453. },
  7454. ]
  7455. ))
  7456. characterMakers.push(() => makeCharacter(
  7457. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7458. {
  7459. front: {
  7460. height: math.unit(7, "feet"),
  7461. weight: math.unit(250, "lbs"),
  7462. name: "Front",
  7463. image: {
  7464. source: "./media/characters/archy/front.svg"
  7465. }
  7466. }
  7467. },
  7468. [
  7469. {
  7470. name: "Micro",
  7471. height: math.unit(1, "inch")
  7472. },
  7473. {
  7474. name: "Shorty",
  7475. height: math.unit(5, "feet")
  7476. },
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(7, "feet")
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(600, "meters"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(1, "mile")
  7489. },
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7494. {
  7495. front: {
  7496. height: math.unit(1.65, "meters"),
  7497. weight: math.unit(74, "kg"),
  7498. name: "Front",
  7499. image: {
  7500. source: "./media/characters/berri/front.svg",
  7501. extra: 857 / 837,
  7502. bottom: 18 / 877
  7503. }
  7504. },
  7505. bum: {
  7506. height: math.unit(1.46, "feet"),
  7507. name: "Bum",
  7508. image: {
  7509. source: "./media/characters/berri/bum.svg"
  7510. }
  7511. },
  7512. mouth: {
  7513. height: math.unit(0.44, "feet"),
  7514. name: "Mouth",
  7515. image: {
  7516. source: "./media/characters/berri/mouth.svg"
  7517. }
  7518. },
  7519. paw: {
  7520. height: math.unit(0.826, "feet"),
  7521. name: "Paw",
  7522. image: {
  7523. source: "./media/characters/berri/paw.svg"
  7524. }
  7525. },
  7526. },
  7527. [
  7528. {
  7529. name: "Normal",
  7530. height: math.unit(1.65, "meters")
  7531. },
  7532. {
  7533. name: "Macro",
  7534. height: math.unit(60, "m"),
  7535. default: true
  7536. },
  7537. {
  7538. name: "Megamacro",
  7539. height: math.unit(9.213, "km")
  7540. },
  7541. {
  7542. name: "Planet Eater",
  7543. height: math.unit(489, "megameters")
  7544. },
  7545. {
  7546. name: "Teramacro",
  7547. height: math.unit(2471635000000, "meters")
  7548. },
  7549. {
  7550. name: "Examacro",
  7551. height: math.unit(8.0624e+26, "meters")
  7552. }
  7553. ]
  7554. ))
  7555. characterMakers.push(() => makeCharacter(
  7556. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7557. {
  7558. front: {
  7559. height: math.unit(1.72, "meters"),
  7560. weight: math.unit(68, "kg"),
  7561. name: "Front",
  7562. image: {
  7563. source: "./media/characters/lexi/front.svg"
  7564. }
  7565. }
  7566. },
  7567. [
  7568. {
  7569. name: "Very Smol",
  7570. height: math.unit(10, "mm")
  7571. },
  7572. {
  7573. name: "Micro",
  7574. height: math.unit(6.8, "cm"),
  7575. default: true
  7576. },
  7577. {
  7578. name: "Normal",
  7579. height: math.unit(1.72, "m")
  7580. }
  7581. ]
  7582. ))
  7583. characterMakers.push(() => makeCharacter(
  7584. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7585. {
  7586. front: {
  7587. height: math.unit(1.69, "meters"),
  7588. weight: math.unit(68, "kg"),
  7589. name: "Front",
  7590. image: {
  7591. source: "./media/characters/martin/front.svg",
  7592. extra: 596 / 581
  7593. }
  7594. }
  7595. },
  7596. [
  7597. {
  7598. name: "Micro",
  7599. height: math.unit(6.85, "cm"),
  7600. default: true
  7601. },
  7602. {
  7603. name: "Normal",
  7604. height: math.unit(1.69, "m")
  7605. }
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(1.69, "meters"),
  7613. weight: math.unit(68, "kg"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/juno/front.svg"
  7617. }
  7618. }
  7619. },
  7620. [
  7621. {
  7622. name: "Micro",
  7623. height: math.unit(7, "cm")
  7624. },
  7625. {
  7626. name: "Normal",
  7627. height: math.unit(1.89, "m")
  7628. },
  7629. {
  7630. name: "Macro",
  7631. height: math.unit(353, "meters"),
  7632. default: true
  7633. }
  7634. ]
  7635. ))
  7636. characterMakers.push(() => makeCharacter(
  7637. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7638. {
  7639. front: {
  7640. height: math.unit(1.93, "meters"),
  7641. weight: math.unit(83, "kg"),
  7642. name: "Front",
  7643. image: {
  7644. source: "./media/characters/samantha/front.svg"
  7645. }
  7646. },
  7647. frontClothed: {
  7648. height: math.unit(1.93, "meters"),
  7649. weight: math.unit(83, "kg"),
  7650. name: "Front (Clothed)",
  7651. image: {
  7652. source: "./media/characters/samantha/front-clothed.svg"
  7653. }
  7654. },
  7655. back: {
  7656. height: math.unit(1.93, "meters"),
  7657. weight: math.unit(83, "kg"),
  7658. name: "Back",
  7659. image: {
  7660. source: "./media/characters/samantha/back.svg"
  7661. }
  7662. },
  7663. },
  7664. [
  7665. {
  7666. name: "Normal",
  7667. height: math.unit(1.93, "m")
  7668. },
  7669. {
  7670. name: "Macro",
  7671. height: math.unit(74, "meters"),
  7672. default: true
  7673. },
  7674. {
  7675. name: "Macro+",
  7676. height: math.unit(223, "meters"),
  7677. },
  7678. {
  7679. name: "Megamacro",
  7680. height: math.unit(8381, "meters"),
  7681. },
  7682. {
  7683. name: "Megamacro+",
  7684. height: math.unit(12000, "kilometers")
  7685. },
  7686. ]
  7687. ))
  7688. characterMakers.push(() => makeCharacter(
  7689. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7690. {
  7691. front: {
  7692. height: math.unit(1.92, "meters"),
  7693. weight: math.unit(80, "kg"),
  7694. name: "Front",
  7695. image: {
  7696. source: "./media/characters/dr-clay/front.svg"
  7697. }
  7698. },
  7699. frontClothed: {
  7700. height: math.unit(1.92, "meters"),
  7701. weight: math.unit(80, "kg"),
  7702. name: "Front (Clothed)",
  7703. image: {
  7704. source: "./media/characters/dr-clay/front-clothed.svg"
  7705. }
  7706. }
  7707. },
  7708. [
  7709. {
  7710. name: "Normal",
  7711. height: math.unit(1.92, "m")
  7712. },
  7713. {
  7714. name: "Macro",
  7715. height: math.unit(214, "meters"),
  7716. default: true
  7717. },
  7718. {
  7719. name: "Macro+",
  7720. height: math.unit(12.237, "meters"),
  7721. },
  7722. {
  7723. name: "Megamacro",
  7724. height: math.unit(557, "megameters"),
  7725. },
  7726. {
  7727. name: "Unimaginable",
  7728. height: math.unit(120e9, "lightyears")
  7729. },
  7730. ]
  7731. ))
  7732. characterMakers.push(() => makeCharacter(
  7733. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7734. {
  7735. front: {
  7736. height: math.unit(2, "meters"),
  7737. weight: math.unit(80, "kg"),
  7738. name: "Front",
  7739. image: {
  7740. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7741. }
  7742. }
  7743. },
  7744. [
  7745. {
  7746. name: "Teramacro",
  7747. height: math.unit(500000, "lightyears"),
  7748. default: true
  7749. },
  7750. ]
  7751. ))
  7752. characterMakers.push(() => makeCharacter(
  7753. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7754. {
  7755. crux: {
  7756. height: math.unit(2, "meters"),
  7757. weight: math.unit(150, "kg"),
  7758. name: "Crux",
  7759. image: {
  7760. source: "./media/characters/vemus/crux.svg",
  7761. extra: 1074/936,
  7762. bottom: 23/1097
  7763. }
  7764. },
  7765. skunkTanuki: {
  7766. height: math.unit(2, "meters"),
  7767. weight: math.unit(150, "kg"),
  7768. name: "Skunk-Tanuki",
  7769. image: {
  7770. source: "./media/characters/vemus/skunk-tanuki.svg",
  7771. extra: 926/893,
  7772. bottom: 20/946
  7773. }
  7774. },
  7775. },
  7776. [
  7777. {
  7778. name: "Normal",
  7779. height: math.unit(4, "meters"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Big",
  7784. height: math.unit(8, "meters")
  7785. },
  7786. {
  7787. name: "Macro",
  7788. height: math.unit(100, "meters")
  7789. },
  7790. {
  7791. name: "Macro+",
  7792. height: math.unit(1500, "meters")
  7793. },
  7794. {
  7795. name: "Stellar",
  7796. height: math.unit(14e8, "meters")
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(2, "meters"),
  7805. weight: math.unit(70, "kg"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/beherit/front.svg",
  7809. extra: 1234/1109,
  7810. bottom: 55/1289
  7811. }
  7812. }
  7813. },
  7814. [
  7815. {
  7816. name: "Normal",
  7817. height: math.unit(6, "feet")
  7818. },
  7819. {
  7820. name: "Lorg",
  7821. height: math.unit(25, "feet"),
  7822. default: true
  7823. },
  7824. {
  7825. name: "Lorger",
  7826. height: math.unit(75, "feet")
  7827. },
  7828. {
  7829. name: "Macro",
  7830. height: math.unit(200, "meters")
  7831. },
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7836. {
  7837. front: {
  7838. height: math.unit(2, "meters"),
  7839. weight: math.unit(150, "kg"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/everett/front.svg",
  7843. extra: 1017/866,
  7844. bottom: 86/1103
  7845. }
  7846. },
  7847. paw: {
  7848. height: math.unit(2 / 3.6, "meters"),
  7849. name: "Paw",
  7850. image: {
  7851. source: "./media/characters/everett/paw.svg"
  7852. }
  7853. },
  7854. },
  7855. [
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(15, "feet"),
  7859. default: true
  7860. },
  7861. {
  7862. name: "Lorg",
  7863. height: math.unit(70, "feet"),
  7864. default: true
  7865. },
  7866. {
  7867. name: "Lorger",
  7868. height: math.unit(250, "feet")
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(500, "meters")
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(2, "meters"),
  7881. weight: math.unit(86, "kg"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/rose/front.svg",
  7885. extra: 1785/1636,
  7886. bottom: 30/1815
  7887. },
  7888. form: "liom",
  7889. default: true
  7890. },
  7891. frontSporty: {
  7892. height: math.unit(2, "meters"),
  7893. weight: math.unit(86, "kg"),
  7894. name: "Front (Sporty)",
  7895. image: {
  7896. source: "./media/characters/rose/front-sporty.svg",
  7897. extra: 350/335,
  7898. bottom: 10/360
  7899. },
  7900. form: "liom"
  7901. },
  7902. frontAlt: {
  7903. height: math.unit(1.6, "meters"),
  7904. weight: math.unit(86, "kg"),
  7905. name: "Front (Alt)",
  7906. image: {
  7907. source: "./media/characters/rose/front-alt.svg",
  7908. extra: 299/283,
  7909. bottom: 3/302
  7910. },
  7911. form: "liom"
  7912. },
  7913. plush: {
  7914. height: math.unit(2, "meters"),
  7915. weight: math.unit(86/3, "kg"),
  7916. name: "Plush",
  7917. image: {
  7918. source: "./media/characters/rose/plush.svg",
  7919. extra: 361/337,
  7920. bottom: 11/372
  7921. },
  7922. form: "plush",
  7923. default: true
  7924. },
  7925. faeStanding: {
  7926. height: math.unit(10, "cm"),
  7927. weight: math.unit(10, "grams"),
  7928. name: "Standing",
  7929. image: {
  7930. source: "./media/characters/rose/fae-standing.svg",
  7931. extra: 1189/1060,
  7932. bottom: 27/1216
  7933. },
  7934. form: "fae",
  7935. default: true
  7936. },
  7937. faeSitting: {
  7938. height: math.unit(5, "cm"),
  7939. weight: math.unit(10, "grams"),
  7940. name: "Sitting",
  7941. image: {
  7942. source: "./media/characters/rose/fae-sitting.svg",
  7943. extra: 737/577,
  7944. bottom: 356/1093
  7945. },
  7946. form: "fae"
  7947. },
  7948. faePaw: {
  7949. height: math.unit(1.35, "cm"),
  7950. name: "Paw",
  7951. image: {
  7952. source: "./media/characters/rose/fae-paw.svg"
  7953. },
  7954. form: "fae"
  7955. },
  7956. },
  7957. [
  7958. {
  7959. name: "True Micro",
  7960. height: math.unit(9, "cm"),
  7961. form: "liom"
  7962. },
  7963. {
  7964. name: "Micro",
  7965. height: math.unit(16, "cm"),
  7966. form: "liom"
  7967. },
  7968. {
  7969. name: "Normal",
  7970. height: math.unit(1.85, "meters"),
  7971. default: true,
  7972. form: "liom"
  7973. },
  7974. {
  7975. name: "Mini-Macro",
  7976. height: math.unit(5, "meters"),
  7977. form: "liom"
  7978. },
  7979. {
  7980. name: "Macro",
  7981. height: math.unit(15, "meters"),
  7982. form: "liom"
  7983. },
  7984. {
  7985. name: "True Macro",
  7986. height: math.unit(40, "meters"),
  7987. form: "liom"
  7988. },
  7989. {
  7990. name: "City Scale",
  7991. height: math.unit(1, "km"),
  7992. form: "liom"
  7993. },
  7994. {
  7995. name: "Plushie",
  7996. height: math.unit(9, "cm"),
  7997. form: "plush",
  7998. default: true
  7999. },
  8000. {
  8001. name: "Fae",
  8002. height: math.unit(10, "cm"),
  8003. form: "fae",
  8004. default: true
  8005. },
  8006. ],
  8007. {
  8008. "liom": {
  8009. name: "Liom"
  8010. },
  8011. "plush": {
  8012. name: "Plush"
  8013. },
  8014. "fae": {
  8015. name: "Fae Fox",
  8016. default: true
  8017. }
  8018. }
  8019. ))
  8020. characterMakers.push(() => makeCharacter(
  8021. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8022. {
  8023. front: {
  8024. height: math.unit(2, "meters"),
  8025. weight: math.unit(350, "lbs"),
  8026. name: "Front",
  8027. image: {
  8028. source: "./media/characters/regal/front.svg"
  8029. }
  8030. },
  8031. back: {
  8032. height: math.unit(2, "meters"),
  8033. weight: math.unit(350, "lbs"),
  8034. name: "Back",
  8035. image: {
  8036. source: "./media/characters/regal/back.svg"
  8037. }
  8038. },
  8039. },
  8040. [
  8041. {
  8042. name: "Macro",
  8043. height: math.unit(350, "feet"),
  8044. default: true
  8045. }
  8046. ]
  8047. ))
  8048. characterMakers.push(() => makeCharacter(
  8049. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8050. {
  8051. front: {
  8052. height: math.unit(4 + 11 / 12, "feet"),
  8053. weight: math.unit(100, "lbs"),
  8054. name: "Front",
  8055. image: {
  8056. source: "./media/characters/opal/front.svg"
  8057. }
  8058. },
  8059. frontAlt: {
  8060. height: math.unit(4 + 11 / 12, "feet"),
  8061. weight: math.unit(100, "lbs"),
  8062. name: "Front (Alt)",
  8063. image: {
  8064. source: "./media/characters/opal/front-alt.svg"
  8065. }
  8066. },
  8067. },
  8068. [
  8069. {
  8070. name: "Small",
  8071. height: math.unit(4 + 11 / 12, "feet")
  8072. },
  8073. {
  8074. name: "Normal",
  8075. height: math.unit(20, "feet"),
  8076. default: true
  8077. },
  8078. {
  8079. name: "Macro",
  8080. height: math.unit(120, "feet")
  8081. },
  8082. {
  8083. name: "Megamacro",
  8084. height: math.unit(80, "miles")
  8085. },
  8086. {
  8087. name: "True Size",
  8088. height: math.unit(100000, "lightyears")
  8089. },
  8090. ]
  8091. ))
  8092. characterMakers.push(() => makeCharacter(
  8093. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8094. {
  8095. front: {
  8096. height: math.unit(6, "feet"),
  8097. weight: math.unit(200, "lbs"),
  8098. name: "Front",
  8099. image: {
  8100. source: "./media/characters/vector-wuff/front.svg"
  8101. }
  8102. }
  8103. },
  8104. [
  8105. {
  8106. name: "Normal",
  8107. height: math.unit(2.8, "meters")
  8108. },
  8109. {
  8110. name: "Macro",
  8111. height: math.unit(450, "meters"),
  8112. default: true
  8113. },
  8114. {
  8115. name: "Megamacro",
  8116. height: math.unit(15, "kilometers")
  8117. }
  8118. ]
  8119. ))
  8120. characterMakers.push(() => makeCharacter(
  8121. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8122. {
  8123. front: {
  8124. height: math.unit(6, "feet"),
  8125. weight: math.unit(256, "lbs"),
  8126. name: "Front",
  8127. image: {
  8128. source: "./media/characters/dannik/front.svg"
  8129. }
  8130. }
  8131. },
  8132. [
  8133. {
  8134. name: "Macro",
  8135. height: math.unit(69.57, "meters"),
  8136. default: true
  8137. },
  8138. ]
  8139. ))
  8140. characterMakers.push(() => makeCharacter(
  8141. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8142. {
  8143. front: {
  8144. height: math.unit(6, "feet"),
  8145. weight: math.unit(120, "lbs"),
  8146. name: "Front",
  8147. image: {
  8148. source: "./media/characters/azura-saharah/front.svg"
  8149. }
  8150. },
  8151. back: {
  8152. height: math.unit(6, "feet"),
  8153. weight: math.unit(120, "lbs"),
  8154. name: "Back",
  8155. image: {
  8156. source: "./media/characters/azura-saharah/back.svg"
  8157. }
  8158. },
  8159. },
  8160. [
  8161. {
  8162. name: "Macro",
  8163. height: math.unit(100, "feet"),
  8164. default: true
  8165. },
  8166. ]
  8167. ))
  8168. characterMakers.push(() => makeCharacter(
  8169. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8170. {
  8171. side: {
  8172. height: math.unit(5 + 4 / 12, "feet"),
  8173. weight: math.unit(163, "lbs"),
  8174. name: "Side",
  8175. image: {
  8176. source: "./media/characters/kennedy/side.svg"
  8177. }
  8178. }
  8179. },
  8180. [
  8181. {
  8182. name: "Standard Doggo",
  8183. height: math.unit(5 + 4 / 12, "feet")
  8184. },
  8185. {
  8186. name: "Big Doggo",
  8187. height: math.unit(25 + 3 / 12, "feet"),
  8188. default: true
  8189. },
  8190. ]
  8191. ))
  8192. characterMakers.push(() => makeCharacter(
  8193. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8194. {
  8195. front: {
  8196. height: math.unit(5 + 5/12, "feet"),
  8197. weight: math.unit(100, "lbs"),
  8198. name: "Front",
  8199. image: {
  8200. source: "./media/characters/odios-de-lunar/front.svg",
  8201. extra: 1468/1323,
  8202. bottom: 22/1490
  8203. }
  8204. }
  8205. },
  8206. [
  8207. {
  8208. name: "Micro",
  8209. height: math.unit(3, "inches")
  8210. },
  8211. {
  8212. name: "Normal",
  8213. height: math.unit(5.5, "feet"),
  8214. default: true
  8215. },
  8216. {
  8217. name: "Macro",
  8218. height: math.unit(100, "feet")
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8224. {
  8225. back: {
  8226. height: math.unit(6, "feet"),
  8227. weight: math.unit(220, "lbs"),
  8228. name: "Back",
  8229. image: {
  8230. source: "./media/characters/mandake/back.svg"
  8231. }
  8232. }
  8233. },
  8234. [
  8235. {
  8236. name: "Normal",
  8237. height: math.unit(7, "feet"),
  8238. default: true
  8239. },
  8240. {
  8241. name: "Macro",
  8242. height: math.unit(78, "feet")
  8243. },
  8244. {
  8245. name: "Macro+",
  8246. height: math.unit(300, "meters")
  8247. },
  8248. {
  8249. name: "Macro++",
  8250. height: math.unit(2400, "feet")
  8251. },
  8252. {
  8253. name: "Megamacro",
  8254. height: math.unit(5167, "meters")
  8255. },
  8256. {
  8257. name: "Gigamacro",
  8258. height: math.unit(41769, "miles")
  8259. },
  8260. ]
  8261. ))
  8262. characterMakers.push(() => makeCharacter(
  8263. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8264. {
  8265. front: {
  8266. height: math.unit(6, "feet"),
  8267. weight: math.unit(120, "lbs"),
  8268. name: "Front",
  8269. image: {
  8270. source: "./media/characters/yozey/front.svg"
  8271. }
  8272. },
  8273. frontAlt: {
  8274. height: math.unit(6, "feet"),
  8275. weight: math.unit(120, "lbs"),
  8276. name: "Front (Alt)",
  8277. image: {
  8278. source: "./media/characters/yozey/front-alt.svg"
  8279. }
  8280. },
  8281. side: {
  8282. height: math.unit(6, "feet"),
  8283. weight: math.unit(120, "lbs"),
  8284. name: "Side",
  8285. image: {
  8286. source: "./media/characters/yozey/side.svg"
  8287. }
  8288. },
  8289. },
  8290. [
  8291. {
  8292. name: "Micro",
  8293. height: math.unit(3, "inches"),
  8294. default: true
  8295. },
  8296. {
  8297. name: "Normal",
  8298. height: math.unit(6, "feet")
  8299. }
  8300. ]
  8301. ))
  8302. characterMakers.push(() => makeCharacter(
  8303. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8304. {
  8305. front: {
  8306. height: math.unit(6, "feet"),
  8307. weight: math.unit(103, "lbs"),
  8308. name: "Front",
  8309. image: {
  8310. source: "./media/characters/valeska-voss/front.svg"
  8311. }
  8312. }
  8313. },
  8314. [
  8315. {
  8316. name: "Mini-Sized Sub",
  8317. height: math.unit(3.1, "inches")
  8318. },
  8319. {
  8320. name: "Mid-Sized Sub",
  8321. height: math.unit(6.2, "inches")
  8322. },
  8323. {
  8324. name: "Full-Sized Sub",
  8325. height: math.unit(9.3, "inches")
  8326. },
  8327. {
  8328. name: "Normal",
  8329. height: math.unit(5 + 2 / 12, "foot"),
  8330. default: true
  8331. },
  8332. ]
  8333. ))
  8334. characterMakers.push(() => makeCharacter(
  8335. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8336. {
  8337. front: {
  8338. height: math.unit(6, "feet"),
  8339. weight: math.unit(160, "lbs"),
  8340. name: "Front",
  8341. image: {
  8342. source: "./media/characters/gene-zeta/front.svg",
  8343. extra: 3006 / 2826,
  8344. bottom: 182 / 3188
  8345. }
  8346. }
  8347. },
  8348. [
  8349. {
  8350. name: "Micro",
  8351. height: math.unit(6, "inches")
  8352. },
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(5 + 11 / 12, "foot"),
  8356. default: true
  8357. },
  8358. {
  8359. name: "Macro",
  8360. height: math.unit(140, "feet")
  8361. },
  8362. {
  8363. name: "Supercharged",
  8364. height: math.unit(2500, "feet")
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(350, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/razinox/front.svg",
  8377. extra: 1686 / 1548,
  8378. bottom: 28.2 / 1868
  8379. }
  8380. },
  8381. back: {
  8382. height: math.unit(6, "feet"),
  8383. weight: math.unit(350, "lbs"),
  8384. name: "Back",
  8385. image: {
  8386. source: "./media/characters/razinox/back.svg",
  8387. extra: 1660 / 1590,
  8388. bottom: 15 / 1665
  8389. }
  8390. },
  8391. },
  8392. [
  8393. {
  8394. name: "Normal",
  8395. height: math.unit(10 + 8 / 12, "foot")
  8396. },
  8397. {
  8398. name: "Minimacro",
  8399. height: math.unit(15, "foot")
  8400. },
  8401. {
  8402. name: "Macro",
  8403. height: math.unit(60, "foot"),
  8404. default: true
  8405. },
  8406. {
  8407. name: "Megamacro",
  8408. height: math.unit(5, "miles")
  8409. },
  8410. {
  8411. name: "Gigamacro",
  8412. height: math.unit(6000, "miles")
  8413. },
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8418. {
  8419. front: {
  8420. height: math.unit(6, "feet"),
  8421. weight: math.unit(150, "lbs"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/cobalt/front.svg"
  8425. }
  8426. }
  8427. },
  8428. [
  8429. {
  8430. name: "Normal",
  8431. height: math.unit(8 + 1 / 12, "foot")
  8432. },
  8433. {
  8434. name: "Macro",
  8435. height: math.unit(111, "foot"),
  8436. default: true
  8437. },
  8438. {
  8439. name: "Supracosmic",
  8440. height: math.unit(1e42, "feet")
  8441. },
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8446. {
  8447. front: {
  8448. height: math.unit(5, "inches"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/amanda/front.svg",
  8452. extra: 926/791,
  8453. bottom: 38/964
  8454. }
  8455. },
  8456. back: {
  8457. height: math.unit(5, "inches"),
  8458. name: "Back",
  8459. image: {
  8460. source: "./media/characters/amanda/back.svg",
  8461. extra: 909/805,
  8462. bottom: 43/952
  8463. }
  8464. },
  8465. },
  8466. [
  8467. {
  8468. name: "Micro",
  8469. height: math.unit(5, "inches"),
  8470. default: true
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8476. {
  8477. front: {
  8478. height: math.unit(2.75, "meters"),
  8479. weight: math.unit(1200, "lb"),
  8480. name: "Front",
  8481. image: {
  8482. source: "./media/characters/teal/front.svg",
  8483. extra: 2463 / 2320,
  8484. bottom: 166 / 2629
  8485. }
  8486. },
  8487. back: {
  8488. height: math.unit(2.75, "meters"),
  8489. weight: math.unit(1200, "lb"),
  8490. name: "Back",
  8491. image: {
  8492. source: "./media/characters/teal/back.svg",
  8493. extra: 2580 / 2489,
  8494. bottom: 151 / 2731
  8495. }
  8496. },
  8497. sitting: {
  8498. height: math.unit(1.9, "meters"),
  8499. weight: math.unit(1200, "lb"),
  8500. name: "Sitting",
  8501. image: {
  8502. source: "./media/characters/teal/sitting.svg",
  8503. extra: 623 / 590,
  8504. bottom: 121 / 744
  8505. }
  8506. },
  8507. standing: {
  8508. height: math.unit(2.75, "meters"),
  8509. weight: math.unit(1200, "lb"),
  8510. name: "Standing",
  8511. image: {
  8512. source: "./media/characters/teal/standing.svg",
  8513. extra: 923 / 893,
  8514. bottom: 60 / 983
  8515. }
  8516. },
  8517. stretching: {
  8518. height: math.unit(3.65, "meters"),
  8519. weight: math.unit(1200, "lb"),
  8520. name: "Stretching",
  8521. image: {
  8522. source: "./media/characters/teal/stretching.svg",
  8523. extra: 1276 / 1244,
  8524. bottom: 0 / 1276
  8525. }
  8526. },
  8527. legged: {
  8528. height: math.unit(1.3, "meters"),
  8529. weight: math.unit(100, "lb"),
  8530. name: "Legged",
  8531. image: {
  8532. source: "./media/characters/teal/legged.svg",
  8533. extra: 462 / 437,
  8534. bottom: 24 / 486
  8535. }
  8536. },
  8537. naga: {
  8538. height: math.unit(5.4, "meters"),
  8539. weight: math.unit(4000, "lb"),
  8540. name: "Naga",
  8541. image: {
  8542. source: "./media/characters/teal/naga.svg",
  8543. extra: 1902 / 1858,
  8544. bottom: 0 / 1902
  8545. }
  8546. },
  8547. hand: {
  8548. height: math.unit(0.52, "meters"),
  8549. name: "Hand",
  8550. image: {
  8551. source: "./media/characters/teal/hand.svg"
  8552. }
  8553. },
  8554. maw: {
  8555. height: math.unit(0.43, "meters"),
  8556. name: "Maw",
  8557. image: {
  8558. source: "./media/characters/teal/maw.svg"
  8559. }
  8560. },
  8561. slit: {
  8562. height: math.unit(0.25, "meters"),
  8563. name: "Slit",
  8564. image: {
  8565. source: "./media/characters/teal/slit.svg"
  8566. }
  8567. },
  8568. },
  8569. [
  8570. {
  8571. name: "Normal",
  8572. height: math.unit(2.75, "meters"),
  8573. default: true
  8574. },
  8575. {
  8576. name: "Macro",
  8577. height: math.unit(300, "feet")
  8578. },
  8579. {
  8580. name: "Macro+",
  8581. height: math.unit(2000, "feet")
  8582. },
  8583. ]
  8584. ))
  8585. characterMakers.push(() => makeCharacter(
  8586. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8587. {
  8588. frontCat: {
  8589. height: math.unit(6, "feet"),
  8590. weight: math.unit(180, "lbs"),
  8591. name: "Front (Cat)",
  8592. image: {
  8593. source: "./media/characters/ravin-amulet/front-cat.svg"
  8594. }
  8595. },
  8596. frontCatAlt: {
  8597. height: math.unit(6, "feet"),
  8598. weight: math.unit(180, "lbs"),
  8599. name: "Front (Alt, Cat)",
  8600. image: {
  8601. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8602. }
  8603. },
  8604. frontWerewolf: {
  8605. height: math.unit(6 * 1.2, "feet"),
  8606. weight: math.unit(225, "lbs"),
  8607. name: "Front (Werewolf)",
  8608. image: {
  8609. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8610. }
  8611. },
  8612. backWerewolf: {
  8613. height: math.unit(6 * 1.2, "feet"),
  8614. weight: math.unit(225, "lbs"),
  8615. name: "Back (Werewolf)",
  8616. image: {
  8617. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8618. }
  8619. },
  8620. },
  8621. [
  8622. {
  8623. name: "Nano",
  8624. height: math.unit(1, "micrometer")
  8625. },
  8626. {
  8627. name: "Micro",
  8628. height: math.unit(1, "inch")
  8629. },
  8630. {
  8631. name: "Normal",
  8632. height: math.unit(6, "feet"),
  8633. default: true
  8634. },
  8635. {
  8636. name: "Macro",
  8637. height: math.unit(60, "feet")
  8638. }
  8639. ]
  8640. ))
  8641. characterMakers.push(() => makeCharacter(
  8642. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8643. {
  8644. front: {
  8645. height: math.unit(6, "feet"),
  8646. weight: math.unit(165, "lbs"),
  8647. name: "Front",
  8648. image: {
  8649. source: "./media/characters/fluoresce/front.svg"
  8650. }
  8651. }
  8652. },
  8653. [
  8654. {
  8655. name: "Micro",
  8656. height: math.unit(6, "cm")
  8657. },
  8658. {
  8659. name: "Normal",
  8660. height: math.unit(5 + 7 / 12, "feet"),
  8661. default: true
  8662. },
  8663. {
  8664. name: "Macro",
  8665. height: math.unit(56, "feet")
  8666. },
  8667. {
  8668. name: "Megamacro",
  8669. height: math.unit(1.9, "miles")
  8670. },
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8675. {
  8676. front: {
  8677. height: math.unit(9 + 6 / 12, "feet"),
  8678. weight: math.unit(523, "lbs"),
  8679. name: "Side",
  8680. image: {
  8681. source: "./media/characters/aurora/side.svg",
  8682. extra: 474/393,
  8683. bottom: 5/479
  8684. }
  8685. }
  8686. },
  8687. [
  8688. {
  8689. name: "Normal",
  8690. height: math.unit(9 + 6 / 12, "feet")
  8691. },
  8692. {
  8693. name: "Macro",
  8694. height: math.unit(96, "feet"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "Macro+",
  8699. height: math.unit(243, "feet")
  8700. },
  8701. ]
  8702. ))
  8703. characterMakers.push(() => makeCharacter(
  8704. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8705. {
  8706. front: {
  8707. height: math.unit(194, "cm"),
  8708. weight: math.unit(90, "kg"),
  8709. name: "Front",
  8710. image: {
  8711. source: "./media/characters/ranek/front.svg",
  8712. extra: 1862/1791,
  8713. bottom: 80/1942
  8714. }
  8715. },
  8716. back: {
  8717. height: math.unit(194, "cm"),
  8718. weight: math.unit(90, "kg"),
  8719. name: "Back",
  8720. image: {
  8721. source: "./media/characters/ranek/back.svg",
  8722. extra: 1853/1787,
  8723. bottom: 74/1927
  8724. }
  8725. },
  8726. feral: {
  8727. height: math.unit(30, "cm"),
  8728. weight: math.unit(1.6, "lbs"),
  8729. name: "Feral",
  8730. image: {
  8731. source: "./media/characters/ranek/feral.svg",
  8732. extra: 990/631,
  8733. bottom: 29/1019
  8734. }
  8735. },
  8736. },
  8737. [
  8738. {
  8739. name: "Normal",
  8740. height: math.unit(194, "cm"),
  8741. default: true
  8742. },
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(100, "meters")
  8746. },
  8747. ]
  8748. ))
  8749. characterMakers.push(() => makeCharacter(
  8750. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8751. {
  8752. front: {
  8753. height: math.unit(5 + 6 / 12, "feet"),
  8754. weight: math.unit(153, "lbs"),
  8755. name: "Front",
  8756. image: {
  8757. source: "./media/characters/andrew-cooper/front.svg"
  8758. }
  8759. },
  8760. },
  8761. [
  8762. {
  8763. name: "Nano",
  8764. height: math.unit(1, "mm")
  8765. },
  8766. {
  8767. name: "Micro",
  8768. height: math.unit(2, "inches")
  8769. },
  8770. {
  8771. name: "Normal",
  8772. height: math.unit(5 + 6 / 12, "feet"),
  8773. default: true
  8774. }
  8775. ]
  8776. ))
  8777. characterMakers.push(() => makeCharacter(
  8778. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8779. {
  8780. front: {
  8781. height: math.unit(6, "feet"),
  8782. weight: math.unit(180, "lbs"),
  8783. name: "Front",
  8784. image: {
  8785. source: "./media/characters/akane-sato/front.svg",
  8786. extra: 1219 / 1140
  8787. }
  8788. },
  8789. back: {
  8790. height: math.unit(6, "feet"),
  8791. weight: math.unit(180, "lbs"),
  8792. name: "Back",
  8793. image: {
  8794. source: "./media/characters/akane-sato/back.svg",
  8795. extra: 1219 / 1170
  8796. }
  8797. },
  8798. },
  8799. [
  8800. {
  8801. name: "Normal",
  8802. height: math.unit(2.5, "meters")
  8803. },
  8804. {
  8805. name: "Macro",
  8806. height: math.unit(250, "meters"),
  8807. default: true
  8808. },
  8809. {
  8810. name: "Megamacro",
  8811. height: math.unit(25, "km")
  8812. },
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8817. {
  8818. front: {
  8819. height: math.unit(6, "feet"),
  8820. weight: math.unit(65, "kg"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/rook/front.svg",
  8824. extra: 960 / 950
  8825. }
  8826. }
  8827. },
  8828. [
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(8.8, "feet")
  8832. },
  8833. {
  8834. name: "Macro",
  8835. height: math.unit(88, "feet"),
  8836. default: true
  8837. },
  8838. {
  8839. name: "Megamacro",
  8840. height: math.unit(8, "miles")
  8841. },
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8846. {
  8847. front: {
  8848. height: math.unit(12 + 2 / 12, "feet"),
  8849. weight: math.unit(808, "lbs"),
  8850. name: "Front",
  8851. image: {
  8852. source: "./media/characters/prodigy/front.svg"
  8853. }
  8854. }
  8855. },
  8856. [
  8857. {
  8858. name: "Normal",
  8859. height: math.unit(12 + 2 / 12, "feet"),
  8860. default: true
  8861. },
  8862. {
  8863. name: "Macro",
  8864. height: math.unit(143, "feet")
  8865. },
  8866. {
  8867. name: "Macro+",
  8868. height: math.unit(400, "feet")
  8869. },
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(6, "feet"),
  8877. weight: math.unit(225, "lbs"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/daniel/front.svg"
  8881. }
  8882. },
  8883. leaning: {
  8884. height: math.unit(6, "feet"),
  8885. weight: math.unit(225, "lbs"),
  8886. name: "Leaning",
  8887. image: {
  8888. source: "./media/characters/daniel/leaning.svg"
  8889. }
  8890. },
  8891. },
  8892. [
  8893. {
  8894. name: "Macro",
  8895. height: math.unit(1000, "feet"),
  8896. default: true
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8902. {
  8903. front: {
  8904. height: math.unit(6, "feet"),
  8905. weight: math.unit(88, "lbs"),
  8906. name: "Front",
  8907. image: {
  8908. source: "./media/characters/chiros/front.svg",
  8909. extra: 306 / 226
  8910. }
  8911. },
  8912. side: {
  8913. height: math.unit(6, "feet"),
  8914. weight: math.unit(88, "lbs"),
  8915. name: "Side",
  8916. image: {
  8917. source: "./media/characters/chiros/side.svg",
  8918. extra: 306 / 226
  8919. }
  8920. },
  8921. },
  8922. [
  8923. {
  8924. name: "Normal",
  8925. height: math.unit(6, "cm"),
  8926. default: true
  8927. },
  8928. ]
  8929. ))
  8930. characterMakers.push(() => makeCharacter(
  8931. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8932. {
  8933. front: {
  8934. height: math.unit(6, "feet"),
  8935. weight: math.unit(100, "lbs"),
  8936. name: "Front",
  8937. image: {
  8938. source: "./media/characters/selka/front.svg",
  8939. extra: 947 / 887
  8940. }
  8941. }
  8942. },
  8943. [
  8944. {
  8945. name: "Normal",
  8946. height: math.unit(5, "cm"),
  8947. default: true
  8948. },
  8949. ]
  8950. ))
  8951. characterMakers.push(() => makeCharacter(
  8952. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8953. {
  8954. front: {
  8955. height: math.unit(8 + 3 / 12, "feet"),
  8956. weight: math.unit(424, "lbs"),
  8957. name: "Front",
  8958. image: {
  8959. source: "./media/characters/verin/front.svg",
  8960. extra: 1845 / 1550
  8961. }
  8962. },
  8963. frontArmored: {
  8964. height: math.unit(8 + 3 / 12, "feet"),
  8965. weight: math.unit(424, "lbs"),
  8966. name: "Front (Armored)",
  8967. image: {
  8968. source: "./media/characters/verin/front-armor.svg",
  8969. extra: 1845 / 1550,
  8970. bottom: 0.01
  8971. }
  8972. },
  8973. back: {
  8974. height: math.unit(8 + 3 / 12, "feet"),
  8975. weight: math.unit(424, "lbs"),
  8976. name: "Back",
  8977. image: {
  8978. source: "./media/characters/verin/back.svg",
  8979. bottom: 0.1,
  8980. extra: 1
  8981. }
  8982. },
  8983. foot: {
  8984. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8985. name: "Foot",
  8986. image: {
  8987. source: "./media/characters/verin/foot.svg"
  8988. }
  8989. },
  8990. },
  8991. [
  8992. {
  8993. name: "Normal",
  8994. height: math.unit(8 + 3 / 12, "feet")
  8995. },
  8996. {
  8997. name: "Minimacro",
  8998. height: math.unit(21, "feet"),
  8999. default: true
  9000. },
  9001. {
  9002. name: "Macro",
  9003. height: math.unit(626, "feet")
  9004. },
  9005. ]
  9006. ))
  9007. characterMakers.push(() => makeCharacter(
  9008. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9009. {
  9010. front: {
  9011. height: math.unit(2.718, "meters"),
  9012. weight: math.unit(150, "lbs"),
  9013. name: "Front",
  9014. image: {
  9015. source: "./media/characters/sovrim-terraquian/front.svg",
  9016. extra: 1752/1689,
  9017. bottom: 36/1788
  9018. }
  9019. },
  9020. back: {
  9021. height: math.unit(2.718, "meters"),
  9022. weight: math.unit(150, "lbs"),
  9023. name: "Back",
  9024. image: {
  9025. source: "./media/characters/sovrim-terraquian/back.svg",
  9026. extra: 1698/1657,
  9027. bottom: 58/1756
  9028. }
  9029. },
  9030. tongue: {
  9031. height: math.unit(2.865, "feet"),
  9032. name: "Tongue",
  9033. image: {
  9034. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9035. }
  9036. },
  9037. hand: {
  9038. height: math.unit(1.61, "feet"),
  9039. name: "Hand",
  9040. image: {
  9041. source: "./media/characters/sovrim-terraquian/hand.svg"
  9042. }
  9043. },
  9044. foot: {
  9045. height: math.unit(1.05, "feet"),
  9046. name: "Foot",
  9047. image: {
  9048. source: "./media/characters/sovrim-terraquian/foot.svg"
  9049. }
  9050. },
  9051. footAlt: {
  9052. height: math.unit(0.88, "feet"),
  9053. name: "Foot (Alt)",
  9054. image: {
  9055. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9056. }
  9057. },
  9058. },
  9059. [
  9060. {
  9061. name: "Micro",
  9062. height: math.unit(2, "inches")
  9063. },
  9064. {
  9065. name: "Small",
  9066. height: math.unit(1, "meter")
  9067. },
  9068. {
  9069. name: "Normal",
  9070. height: math.unit(Math.E, "meters"),
  9071. default: true
  9072. },
  9073. {
  9074. name: "Macro",
  9075. height: math.unit(20, "meters")
  9076. },
  9077. {
  9078. name: "Macro+",
  9079. height: math.unit(400, "meters")
  9080. },
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9085. {
  9086. front: {
  9087. height: math.unit(7, "feet"),
  9088. weight: math.unit(489, "lbs"),
  9089. name: "Front",
  9090. image: {
  9091. source: "./media/characters/reece-silvermane/front.svg",
  9092. bottom: 0.02,
  9093. extra: 1
  9094. }
  9095. },
  9096. },
  9097. [
  9098. {
  9099. name: "Macro",
  9100. height: math.unit(1.5, "miles"),
  9101. default: true
  9102. },
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(6, "feet"),
  9110. weight: math.unit(78, "kg"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/kane/front.svg",
  9114. extra: 978 / 899
  9115. }
  9116. },
  9117. back: {
  9118. height: math.unit(6, "feet"),
  9119. weight: math.unit(78, "kg"),
  9120. name: "Back",
  9121. image: {
  9122. source: "./media/characters/kane/back.svg",
  9123. extra: 1966/1800,
  9124. bottom: 0/1966
  9125. }
  9126. },
  9127. head: {
  9128. height: math.unit(1.4, "feet"),
  9129. name: "Head",
  9130. image: {
  9131. source: "./media/characters/kane/head.svg"
  9132. }
  9133. },
  9134. },
  9135. [
  9136. {
  9137. name: "Normal",
  9138. height: math.unit(2.1, "m"),
  9139. },
  9140. {
  9141. name: "Macro",
  9142. height: math.unit(1, "km"),
  9143. default: true
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(6, "feet"),
  9152. weight: math.unit(200, "kg"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/tegon/front.svg",
  9156. bottom: 0.01,
  9157. extra: 1
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Micro",
  9164. height: math.unit(1, "inch")
  9165. },
  9166. {
  9167. name: "Normal",
  9168. height: math.unit(6 + 3 / 12, "feet"),
  9169. default: true
  9170. },
  9171. {
  9172. name: "Macro",
  9173. height: math.unit(300, "feet")
  9174. },
  9175. {
  9176. name: "Megamacro",
  9177. height: math.unit(69, "miles")
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9183. {
  9184. side: {
  9185. height: math.unit(6, "feet"),
  9186. weight: math.unit(2304, "lbs"),
  9187. name: "Side",
  9188. image: {
  9189. source: "./media/characters/arcturax/side.svg",
  9190. extra: 790 / 376,
  9191. bottom: 0.01
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Micro",
  9198. height: math.unit(2, "inch")
  9199. },
  9200. {
  9201. name: "Normal",
  9202. height: math.unit(6, "feet")
  9203. },
  9204. {
  9205. name: "Macro",
  9206. height: math.unit(39, "feet"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Megamacro",
  9211. height: math.unit(7, "miles")
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(6, "feet"),
  9220. weight: math.unit(50, "lbs"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/sentri/front.svg",
  9224. extra: 1750 / 1570,
  9225. bottom: 0.025
  9226. }
  9227. },
  9228. frontAlt: {
  9229. height: math.unit(6, "feet"),
  9230. weight: math.unit(50, "lbs"),
  9231. name: "Front (Alt)",
  9232. image: {
  9233. source: "./media/characters/sentri/front-alt.svg",
  9234. extra: 1750 / 1570,
  9235. bottom: 0.025
  9236. }
  9237. },
  9238. },
  9239. [
  9240. {
  9241. name: "Normal",
  9242. height: math.unit(15, "feet"),
  9243. default: true
  9244. },
  9245. {
  9246. name: "Macro",
  9247. height: math.unit(2500, "feet")
  9248. }
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9253. {
  9254. front: {
  9255. height: math.unit(5 + 8 / 12, "feet"),
  9256. weight: math.unit(130, "lbs"),
  9257. name: "Front",
  9258. image: {
  9259. source: "./media/characters/corvin/front.svg",
  9260. extra: 1803 / 1629
  9261. }
  9262. },
  9263. frontShirt: {
  9264. height: math.unit(5 + 8 / 12, "feet"),
  9265. weight: math.unit(130, "lbs"),
  9266. name: "Front (Shirt)",
  9267. image: {
  9268. source: "./media/characters/corvin/front-shirt.svg",
  9269. extra: 1803 / 1629
  9270. }
  9271. },
  9272. frontPoncho: {
  9273. height: math.unit(5 + 8 / 12, "feet"),
  9274. weight: math.unit(130, "lbs"),
  9275. name: "Front (Poncho)",
  9276. image: {
  9277. source: "./media/characters/corvin/front-poncho.svg",
  9278. extra: 1803 / 1629
  9279. }
  9280. },
  9281. side: {
  9282. height: math.unit(5 + 8 / 12, "feet"),
  9283. weight: math.unit(130, "lbs"),
  9284. name: "Side",
  9285. image: {
  9286. source: "./media/characters/corvin/side.svg",
  9287. extra: 1012 / 945
  9288. }
  9289. },
  9290. back: {
  9291. height: math.unit(5 + 8 / 12, "feet"),
  9292. weight: math.unit(130, "lbs"),
  9293. name: "Back",
  9294. image: {
  9295. source: "./media/characters/corvin/back.svg",
  9296. extra: 1803 / 1629
  9297. }
  9298. },
  9299. },
  9300. [
  9301. {
  9302. name: "Micro",
  9303. height: math.unit(3, "inches")
  9304. },
  9305. {
  9306. name: "Normal",
  9307. height: math.unit(5 + 8 / 12, "feet")
  9308. },
  9309. {
  9310. name: "Macro",
  9311. height: math.unit(300, "feet"),
  9312. default: true
  9313. },
  9314. {
  9315. name: "Megamacro",
  9316. height: math.unit(500, "miles")
  9317. }
  9318. ]
  9319. ))
  9320. characterMakers.push(() => makeCharacter(
  9321. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9322. {
  9323. front: {
  9324. height: math.unit(6, "feet"),
  9325. weight: math.unit(135, "lbs"),
  9326. name: "Front",
  9327. image: {
  9328. source: "./media/characters/q/front.svg",
  9329. extra: 854 / 752,
  9330. bottom: 0.005
  9331. }
  9332. },
  9333. back: {
  9334. height: math.unit(6, "feet"),
  9335. weight: math.unit(130, "lbs"),
  9336. name: "Back",
  9337. image: {
  9338. source: "./media/characters/q/back.svg",
  9339. extra: 854 / 752
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Macro",
  9346. height: math.unit(90, "feet"),
  9347. default: true
  9348. },
  9349. {
  9350. name: "Extra Macro",
  9351. height: math.unit(300, "feet"),
  9352. },
  9353. {
  9354. name: "BIG WALF",
  9355. height: math.unit(750, "feet"),
  9356. },
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(3, "feet"),
  9364. weight: math.unit(28, "lbs"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/citrine/front.svg"
  9368. }
  9369. }
  9370. },
  9371. [
  9372. {
  9373. name: "Normal",
  9374. height: math.unit(3, "feet"),
  9375. default: true
  9376. }
  9377. ]
  9378. ))
  9379. characterMakers.push(() => makeCharacter(
  9380. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9381. {
  9382. front: {
  9383. height: math.unit(14, "feet"),
  9384. weight: math.unit(1450, "kg"),
  9385. preyCapacity: math.unit(15, "people"),
  9386. name: "Front",
  9387. image: {
  9388. source: "./media/characters/aura-starwind/front.svg",
  9389. extra: 1440/1327,
  9390. bottom: 11/1451
  9391. }
  9392. },
  9393. side: {
  9394. height: math.unit(14, "feet"),
  9395. weight: math.unit(1450, "kg"),
  9396. preyCapacity: math.unit(15, "people"),
  9397. name: "Side",
  9398. image: {
  9399. source: "./media/characters/aura-starwind/side.svg",
  9400. extra: 1654 / 1497
  9401. }
  9402. },
  9403. taur: {
  9404. height: math.unit(18, "feet"),
  9405. weight: math.unit(5500, "kg"),
  9406. preyCapacity: math.unit(50, "people"),
  9407. name: "Taur",
  9408. image: {
  9409. source: "./media/characters/aura-starwind/taur.svg",
  9410. extra: 1760 / 1650
  9411. }
  9412. },
  9413. feral: {
  9414. height: math.unit(46, "feet"),
  9415. weight: math.unit(25000, "kg"),
  9416. preyCapacity: math.unit(120, "people"),
  9417. name: "Feral",
  9418. image: {
  9419. source: "./media/characters/aura-starwind/feral.svg"
  9420. }
  9421. },
  9422. },
  9423. [
  9424. {
  9425. name: "Normal",
  9426. height: math.unit(14, "feet"),
  9427. default: true
  9428. },
  9429. {
  9430. name: "Macro",
  9431. height: math.unit(50, "meters")
  9432. },
  9433. {
  9434. name: "Megamacro",
  9435. height: math.unit(5000, "meters")
  9436. },
  9437. {
  9438. name: "Gigamacro",
  9439. height: math.unit(100000, "kilometers")
  9440. },
  9441. ]
  9442. ))
  9443. characterMakers.push(() => makeCharacter(
  9444. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9445. {
  9446. front: {
  9447. height: math.unit(2 + 7 / 12, "feet"),
  9448. weight: math.unit(32, "lbs"),
  9449. name: "Front",
  9450. image: {
  9451. source: "./media/characters/rivet/front.svg",
  9452. extra: 1716 / 1658,
  9453. bottom: 0.03
  9454. }
  9455. },
  9456. foot: {
  9457. height: math.unit(0.551, "feet"),
  9458. name: "Rivet's Foot",
  9459. image: {
  9460. source: "./media/characters/rivet/foot.svg"
  9461. },
  9462. rename: true
  9463. }
  9464. },
  9465. [
  9466. {
  9467. name: "Micro",
  9468. height: math.unit(1.5, "inches"),
  9469. },
  9470. {
  9471. name: "Normal",
  9472. height: math.unit(2 + 7 / 12, "feet"),
  9473. default: true
  9474. },
  9475. {
  9476. name: "Macro",
  9477. height: math.unit(85, "feet")
  9478. },
  9479. {
  9480. name: "Megamacro",
  9481. height: math.unit(2.2, "km")
  9482. }
  9483. ]
  9484. ))
  9485. characterMakers.push(() => makeCharacter(
  9486. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9487. {
  9488. front: {
  9489. height: math.unit(5 + 9 / 12, "feet"),
  9490. weight: math.unit(150, "lbs"),
  9491. name: "Front",
  9492. image: {
  9493. source: "./media/characters/coffee/front.svg",
  9494. extra: 946/880,
  9495. bottom: 66/1012
  9496. }
  9497. },
  9498. foot: {
  9499. height: math.unit(1.29, "feet"),
  9500. name: "Foot",
  9501. image: {
  9502. source: "./media/characters/coffee/foot.svg"
  9503. }
  9504. },
  9505. },
  9506. [
  9507. {
  9508. name: "Micro",
  9509. height: math.unit(2, "inches"),
  9510. },
  9511. {
  9512. name: "Normal",
  9513. height: math.unit(5 + 9 / 12, "feet"),
  9514. default: true
  9515. },
  9516. {
  9517. name: "Macro",
  9518. height: math.unit(800, "feet")
  9519. },
  9520. {
  9521. name: "Megamacro",
  9522. height: math.unit(25, "miles")
  9523. }
  9524. ]
  9525. ))
  9526. characterMakers.push(() => makeCharacter(
  9527. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9528. {
  9529. front: {
  9530. height: math.unit(6, "feet"),
  9531. weight: math.unit(200, "lbs"),
  9532. name: "Front",
  9533. image: {
  9534. source: "./media/characters/chari-gal/front.svg",
  9535. extra: 735/649,
  9536. bottom: 55/790
  9537. },
  9538. form: "normal",
  9539. default: true
  9540. },
  9541. back: {
  9542. height: math.unit(6, "feet"),
  9543. weight: math.unit(200, "lb"),
  9544. name: "Back",
  9545. image: {
  9546. source: "./media/characters/chari-gal/back.svg",
  9547. extra: 762/666,
  9548. bottom: 31/793
  9549. },
  9550. form: "normal"
  9551. },
  9552. mouth: {
  9553. height: math.unit(1.35, "feet"),
  9554. name: "Mouth",
  9555. image: {
  9556. source: "./media/characters/chari-gal/mouth.svg"
  9557. },
  9558. form: "normal"
  9559. },
  9560. gigantamax: {
  9561. height: math.unit(6 * 16, "feet"),
  9562. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9563. name: "Gigantamax",
  9564. image: {
  9565. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9566. extra: 1507/1149,
  9567. bottom: 254/1761
  9568. },
  9569. form: "gigantamax",
  9570. default: true
  9571. },
  9572. },
  9573. [
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(5 + 7 / 12, "feet"),
  9577. form: "normal",
  9578. },
  9579. {
  9580. name: "Macro",
  9581. height: math.unit(200, "feet"),
  9582. default: true,
  9583. form: "normal"
  9584. },
  9585. {
  9586. name: "Normal",
  9587. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9588. form: "gigantamax",
  9589. },
  9590. {
  9591. name: "Macro",
  9592. height: math.unit(16 * 200, "feet"),
  9593. default: true,
  9594. form: "gigantamax"
  9595. },
  9596. ],
  9597. {
  9598. "normal": {
  9599. name: "Normal",
  9600. default: true
  9601. },
  9602. "gigantamax": {
  9603. name: "Gigantamax",
  9604. },
  9605. }
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9609. {
  9610. front: {
  9611. height: math.unit(6, "feet"),
  9612. weight: math.unit(150, "lbs"),
  9613. name: "Front",
  9614. image: {
  9615. source: "./media/characters/nova/front.svg",
  9616. extra: 5000 / 4722,
  9617. bottom: 0.02
  9618. }
  9619. }
  9620. },
  9621. [
  9622. {
  9623. name: "Micro-",
  9624. height: math.unit(0.8, "inches")
  9625. },
  9626. {
  9627. name: "Micro",
  9628. height: math.unit(2, "inches"),
  9629. default: true
  9630. },
  9631. ]
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9635. {
  9636. koboldFront: {
  9637. height: math.unit(3 + 1 / 12, "feet"),
  9638. weight: math.unit(21.7, "lbs"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/argent/kobold-front.svg",
  9642. extra: 1471 / 1331,
  9643. bottom: 100.8 / 1575.5
  9644. },
  9645. form: "kobold",
  9646. default: true
  9647. },
  9648. dragonFront: {
  9649. height: math.unit(75, "inches"),
  9650. name: "Front",
  9651. image: {
  9652. source: "./media/characters/argent/dragon-front.svg",
  9653. extra: 1389/1248,
  9654. bottom: 54/1443
  9655. },
  9656. form: "dragon",
  9657. },
  9658. dragonBack: {
  9659. height: math.unit(75, "inches"),
  9660. name: "Back",
  9661. image: {
  9662. source: "./media/characters/argent/dragon-back.svg",
  9663. extra: 1399/1271,
  9664. bottom: 23/1422
  9665. },
  9666. form: "dragon",
  9667. },
  9668. dragonDressed: {
  9669. height: math.unit(75, "inches"),
  9670. name: "Dressed",
  9671. image: {
  9672. source: "./media/characters/argent/dragon-dressed.svg",
  9673. extra: 1350/1215,
  9674. bottom: 26/1376
  9675. },
  9676. form: "dragon"
  9677. },
  9678. dragonHead: {
  9679. height: math.unit(23.5, "inches"),
  9680. name: "Head",
  9681. image: {
  9682. source: "./media/characters/argent/dragon-head.svg"
  9683. },
  9684. form: "dragon",
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Micro",
  9690. height: math.unit(2, "inches"),
  9691. form: "kobold",
  9692. },
  9693. {
  9694. name: "Normal",
  9695. height: math.unit(3 + 1 / 12, "feet"),
  9696. form: "kobold",
  9697. default: true
  9698. },
  9699. {
  9700. name: "Macro",
  9701. height: math.unit(120, "feet"),
  9702. form: "kobold",
  9703. },
  9704. {
  9705. name: "Speck",
  9706. height: math.unit(1, "mm"),
  9707. form: "dragon",
  9708. },
  9709. {
  9710. name: "Tiny",
  9711. height: math.unit(1, "cm"),
  9712. form: "dragon",
  9713. },
  9714. {
  9715. name: "Micro",
  9716. height: math.unit(5, "cm"),
  9717. form: "dragon",
  9718. },
  9719. {
  9720. name: "Normal",
  9721. height: math.unit(75, "inches"),
  9722. form: "dragon",
  9723. default: true
  9724. },
  9725. {
  9726. name: "Extra Tall",
  9727. height: math.unit(9, "feet"),
  9728. form: "dragon",
  9729. },
  9730. {
  9731. name: "Inconvenient",
  9732. height: math.unit(5, "meters"),
  9733. form: "dragon",
  9734. },
  9735. {
  9736. name: "Macro",
  9737. height: math.unit(70, "meters"),
  9738. form: "dragon",
  9739. },
  9740. {
  9741. name: "Macro+",
  9742. height: math.unit(250, "meters"),
  9743. form: "dragon",
  9744. },
  9745. {
  9746. name: "Megamacro",
  9747. height: math.unit(20, "km"),
  9748. form: "dragon",
  9749. },
  9750. {
  9751. name: "Mountainous",
  9752. height: math.unit(100, "km"),
  9753. form: "dragon",
  9754. },
  9755. {
  9756. name: "Continental",
  9757. height: math.unit(2, "megameters"),
  9758. form: "dragon",
  9759. },
  9760. {
  9761. name: "Too Big",
  9762. height: math.unit(900, "megameters"),
  9763. form: "dragon",
  9764. },
  9765. ],
  9766. {
  9767. "kobold": {
  9768. name: "Kobold",
  9769. default: true
  9770. },
  9771. "dragon": {
  9772. name: "Dragon",
  9773. },
  9774. }
  9775. ))
  9776. characterMakers.push(() => makeCharacter(
  9777. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9778. {
  9779. lamp: {
  9780. height: math.unit(7 * 1559 / 989, "feet"),
  9781. name: "Magic Lamp",
  9782. image: {
  9783. source: "./media/characters/mira-al-cul/lamp.svg",
  9784. extra: 1617 / 1559
  9785. }
  9786. },
  9787. front: {
  9788. height: math.unit(7, "feet"),
  9789. name: "Front",
  9790. image: {
  9791. source: "./media/characters/mira-al-cul/front.svg",
  9792. extra: 1044 / 990
  9793. }
  9794. },
  9795. },
  9796. [
  9797. {
  9798. name: "Heavily Restricted",
  9799. height: math.unit(7 * 1559 / 989, "feet")
  9800. },
  9801. {
  9802. name: "Freshly Freed",
  9803. height: math.unit(50 * 1559 / 989, "feet")
  9804. },
  9805. {
  9806. name: "World Encompassing",
  9807. height: math.unit(10000 * 1559 / 989, "miles")
  9808. },
  9809. {
  9810. name: "Galactic",
  9811. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9812. },
  9813. {
  9814. name: "Palmed Universe",
  9815. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9816. default: true
  9817. },
  9818. {
  9819. name: "Multiversal Matriarch",
  9820. height: math.unit(8.87e10, "yottameters")
  9821. },
  9822. {
  9823. name: "Void Mother",
  9824. height: math.unit(3.14e110, "yottaparsecs")
  9825. },
  9826. {
  9827. name: "Toying with Transcendence",
  9828. height: math.unit(1e307, "meters")
  9829. },
  9830. ]
  9831. ))
  9832. characterMakers.push(() => makeCharacter(
  9833. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9834. {
  9835. front: {
  9836. height: math.unit(17 + 1 / 12, "feet"),
  9837. weight: math.unit(476.2 * 5, "lbs"),
  9838. name: "Front",
  9839. image: {
  9840. source: "./media/characters/kuro-shi-uchū/front.svg",
  9841. extra: 2329 / 1835,
  9842. bottom: 0.02
  9843. }
  9844. },
  9845. },
  9846. [
  9847. {
  9848. name: "Micro",
  9849. height: math.unit(2, "inches")
  9850. },
  9851. {
  9852. name: "Normal",
  9853. height: math.unit(12, "meters")
  9854. },
  9855. {
  9856. name: "Planetary",
  9857. height: math.unit(0.00929, "AU"),
  9858. default: true
  9859. },
  9860. {
  9861. name: "Universal",
  9862. height: math.unit(20, "gigaparsecs")
  9863. },
  9864. ]
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9868. {
  9869. front: {
  9870. height: math.unit(5 + 2 / 12, "feet"),
  9871. weight: math.unit(120, "lbs"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/katherine/front.svg",
  9875. extra: 2075 / 1969
  9876. }
  9877. },
  9878. dress: {
  9879. height: math.unit(5 + 2 / 12, "feet"),
  9880. weight: math.unit(120, "lbs"),
  9881. name: "Dress",
  9882. image: {
  9883. source: "./media/characters/katherine/dress.svg",
  9884. extra: 2258 / 2064
  9885. }
  9886. },
  9887. },
  9888. [
  9889. {
  9890. name: "Micro",
  9891. height: math.unit(1, "inches"),
  9892. default: true
  9893. },
  9894. {
  9895. name: "Normal",
  9896. height: math.unit(5 + 2 / 12, "feet")
  9897. },
  9898. {
  9899. name: "Macro",
  9900. height: math.unit(100, "meters")
  9901. },
  9902. {
  9903. name: "Megamacro",
  9904. height: math.unit(80, "miles")
  9905. },
  9906. ]
  9907. ))
  9908. characterMakers.push(() => makeCharacter(
  9909. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9910. {
  9911. front: {
  9912. height: math.unit(7 + 8 / 12, "feet"),
  9913. weight: math.unit(250, "lbs"),
  9914. name: "Front",
  9915. image: {
  9916. source: "./media/characters/yevis/front.svg",
  9917. extra: 1938 / 1755
  9918. }
  9919. }
  9920. },
  9921. [
  9922. {
  9923. name: "Mortal",
  9924. height: math.unit(7 + 8 / 12, "feet")
  9925. },
  9926. {
  9927. name: "Battle",
  9928. height: math.unit(25 + 11 / 12, "feet")
  9929. },
  9930. {
  9931. name: "Wrath",
  9932. height: math.unit(1654 + 11 / 12, "feet")
  9933. },
  9934. {
  9935. name: "Planet Destroyer",
  9936. height: math.unit(12000, "miles")
  9937. },
  9938. {
  9939. name: "Galaxy Conqueror",
  9940. height: math.unit(1.45, "zettameters"),
  9941. default: true
  9942. },
  9943. {
  9944. name: "Universal War",
  9945. height: math.unit(184, "gigaparsecs")
  9946. },
  9947. {
  9948. name: "Eternity War",
  9949. height: math.unit(1.98e55, "yottaparsecs")
  9950. },
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(5 + 8 / 12, "feet"),
  9958. weight: math.unit(63, "kg"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/xavier/front.svg",
  9962. extra: 944 / 883
  9963. }
  9964. },
  9965. frontStretch: {
  9966. height: math.unit(5 + 8 / 12, "feet"),
  9967. weight: math.unit(63, "kg"),
  9968. name: "Stretching",
  9969. image: {
  9970. source: "./media/characters/xavier/front-stretch.svg",
  9971. extra: 962 / 820
  9972. }
  9973. },
  9974. },
  9975. [
  9976. {
  9977. name: "Normal",
  9978. height: math.unit(5 + 8 / 12, "feet")
  9979. },
  9980. {
  9981. name: "Macro",
  9982. height: math.unit(100, "meters"),
  9983. default: true
  9984. },
  9985. {
  9986. name: "McLargeHuge",
  9987. height: math.unit(10, "miles")
  9988. },
  9989. ]
  9990. ))
  9991. characterMakers.push(() => makeCharacter(
  9992. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9993. {
  9994. front: {
  9995. height: math.unit(5 + 5 / 12, "feet"),
  9996. weight: math.unit(150, "lb"),
  9997. name: "Front",
  9998. image: {
  9999. source: "./media/characters/joshii/front.svg",
  10000. extra: 765 / 653,
  10001. bottom: 51 / 816
  10002. }
  10003. },
  10004. foot: {
  10005. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10006. name: "Foot",
  10007. image: {
  10008. source: "./media/characters/joshii/foot.svg"
  10009. }
  10010. },
  10011. },
  10012. [
  10013. {
  10014. name: "Micro",
  10015. height: math.unit(2, "inches")
  10016. },
  10017. {
  10018. name: "Normal",
  10019. height: math.unit(5 + 5 / 12, "feet")
  10020. },
  10021. {
  10022. name: "Macro",
  10023. height: math.unit(785, "feet"),
  10024. default: true
  10025. },
  10026. {
  10027. name: "Megamacro",
  10028. height: math.unit(24.5, "miles")
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10034. {
  10035. front: {
  10036. height: math.unit(6, "feet"),
  10037. weight: math.unit(150, "lb"),
  10038. name: "Front",
  10039. image: {
  10040. source: "./media/characters/goddess-elizabeth/front.svg",
  10041. extra: 1800 / 1525,
  10042. bottom: 0.005
  10043. }
  10044. },
  10045. foot: {
  10046. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10047. name: "Foot",
  10048. image: {
  10049. source: "./media/characters/goddess-elizabeth/foot.svg"
  10050. }
  10051. },
  10052. mouth: {
  10053. height: math.unit(6, "feet"),
  10054. name: "Mouth",
  10055. image: {
  10056. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10057. }
  10058. },
  10059. },
  10060. [
  10061. {
  10062. name: "Micro",
  10063. height: math.unit(12, "feet")
  10064. },
  10065. {
  10066. name: "Normal",
  10067. height: math.unit(80, "miles"),
  10068. default: true
  10069. },
  10070. {
  10071. name: "Macro",
  10072. height: math.unit(15000, "parsecs")
  10073. },
  10074. ]
  10075. ))
  10076. characterMakers.push(() => makeCharacter(
  10077. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10078. {
  10079. front: {
  10080. height: math.unit(5 + 9 / 12, "feet"),
  10081. weight: math.unit(144, "lb"),
  10082. name: "Front",
  10083. image: {
  10084. source: "./media/characters/kara/front.svg"
  10085. }
  10086. },
  10087. feet: {
  10088. height: math.unit(6 / 6.765, "feet"),
  10089. name: "Kara's Feet",
  10090. rename: true,
  10091. image: {
  10092. source: "./media/characters/kara/feet.svg"
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(5 + 9 / 12, "feet")
  10100. },
  10101. {
  10102. name: "Macro",
  10103. height: math.unit(174, "feet"),
  10104. default: true
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10110. {
  10111. front: {
  10112. height: math.unit(18, "feet"),
  10113. weight: math.unit(4050, "lb"),
  10114. name: "Front",
  10115. image: {
  10116. source: "./media/characters/tyrone/front.svg",
  10117. extra: 2405 / 2270,
  10118. bottom: 182 / 2587
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Normal",
  10125. height: math.unit(18, "feet"),
  10126. default: true
  10127. },
  10128. {
  10129. name: "Macro",
  10130. height: math.unit(300, "feet")
  10131. },
  10132. {
  10133. name: "Megamacro",
  10134. height: math.unit(15, "km")
  10135. },
  10136. {
  10137. name: "Gigamacro",
  10138. height: math.unit(500, "km")
  10139. },
  10140. {
  10141. name: "Teramacro",
  10142. height: math.unit(0.5, "gigameters")
  10143. },
  10144. {
  10145. name: "Omnimacro",
  10146. height: math.unit(1e252, "yottauniverse")
  10147. },
  10148. ]
  10149. ))
  10150. characterMakers.push(() => makeCharacter(
  10151. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10152. {
  10153. front: {
  10154. height: math.unit(7 + 8 / 12, "feet"),
  10155. weight: math.unit(120, "lb"),
  10156. name: "Front",
  10157. image: {
  10158. source: "./media/characters/danny/front.svg",
  10159. extra: 1490 / 1350
  10160. }
  10161. },
  10162. back: {
  10163. height: math.unit(7 + 8 / 12, "feet"),
  10164. weight: math.unit(120, "lb"),
  10165. name: "Back",
  10166. image: {
  10167. source: "./media/characters/danny/back.svg",
  10168. extra: 1490 / 1350
  10169. }
  10170. },
  10171. },
  10172. [
  10173. {
  10174. name: "Normal",
  10175. height: math.unit(7 + 8 / 12, "feet"),
  10176. default: true
  10177. },
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10182. {
  10183. front: {
  10184. height: math.unit(3.5, "inches"),
  10185. weight: math.unit(19, "grams"),
  10186. name: "Front",
  10187. image: {
  10188. source: "./media/characters/mallow/front.svg",
  10189. extra: 471 / 431
  10190. }
  10191. },
  10192. back: {
  10193. height: math.unit(3.5, "inches"),
  10194. weight: math.unit(19, "grams"),
  10195. name: "Back",
  10196. image: {
  10197. source: "./media/characters/mallow/back.svg",
  10198. extra: 471 / 431
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Normal",
  10205. height: math.unit(3.5, "inches"),
  10206. default: true
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(9, "feet"),
  10215. weight: math.unit(230, "kg"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/starry-aqua/front.svg"
  10219. }
  10220. },
  10221. back: {
  10222. height: math.unit(9, "feet"),
  10223. weight: math.unit(230, "kg"),
  10224. name: "Back",
  10225. image: {
  10226. source: "./media/characters/starry-aqua/back.svg"
  10227. }
  10228. },
  10229. hand: {
  10230. height: math.unit(9 * 0.1168, "feet"),
  10231. name: "Hand",
  10232. image: {
  10233. source: "./media/characters/starry-aqua/hand.svg"
  10234. }
  10235. },
  10236. foot: {
  10237. height: math.unit(9 * 0.18, "feet"),
  10238. name: "Foot",
  10239. image: {
  10240. source: "./media/characters/starry-aqua/foot.svg"
  10241. }
  10242. }
  10243. },
  10244. [
  10245. {
  10246. name: "Micro",
  10247. height: math.unit(3, "inches")
  10248. },
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(9, "feet")
  10252. },
  10253. {
  10254. name: "Macro",
  10255. height: math.unit(300, "feet"),
  10256. default: true
  10257. },
  10258. {
  10259. name: "Megamacro",
  10260. height: math.unit(3200, "feet")
  10261. }
  10262. ]
  10263. ))
  10264. characterMakers.push(() => makeCharacter(
  10265. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10266. {
  10267. front: {
  10268. height: math.unit(15, "feet"),
  10269. weight: math.unit(5026, "lb"),
  10270. name: "Front",
  10271. image: {
  10272. source: "./media/characters/luka-towers/front.svg",
  10273. extra: 1269/1133,
  10274. bottom: 51/1320
  10275. }
  10276. },
  10277. },
  10278. [
  10279. {
  10280. name: "Normal",
  10281. height: math.unit(15, "feet"),
  10282. default: true
  10283. },
  10284. {
  10285. name: "Minimacro",
  10286. height: math.unit(25, "feet")
  10287. },
  10288. {
  10289. name: "Macro",
  10290. height: math.unit(320, "feet")
  10291. },
  10292. {
  10293. name: "Megamacro",
  10294. height: math.unit(35000, "feet")
  10295. },
  10296. {
  10297. name: "Gigamacro",
  10298. height: math.unit(4000, "miles")
  10299. },
  10300. {
  10301. name: "Teramacro",
  10302. height: math.unit(15000, "miles")
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(6, "feet"),
  10311. weight: math.unit(150, "lb"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/natalie-nightring/front.svg",
  10315. extra: 1,
  10316. bottom: 0.06
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Uh Oh",
  10323. height: math.unit(0.1, "mm")
  10324. },
  10325. {
  10326. name: "Small",
  10327. height: math.unit(3, "inches")
  10328. },
  10329. {
  10330. name: "Human Scale",
  10331. height: math.unit(6, "feet")
  10332. },
  10333. {
  10334. name: "Librarian",
  10335. height: math.unit(50, "feet"),
  10336. default: true
  10337. },
  10338. {
  10339. name: "Immense",
  10340. height: math.unit(200, "miles")
  10341. },
  10342. ]
  10343. ))
  10344. characterMakers.push(() => makeCharacter(
  10345. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10346. {
  10347. front: {
  10348. height: math.unit(6, "feet"),
  10349. weight: math.unit(180, "lbs"),
  10350. name: "Front",
  10351. image: {
  10352. source: "./media/characters/danni-rosie/front.svg",
  10353. extra: 1260 / 1128,
  10354. bottom: 0.022
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Micro",
  10361. height: math.unit(2, "inches"),
  10362. default: true
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10368. {
  10369. front: {
  10370. height: math.unit(5 + 9 / 12, "feet"),
  10371. weight: math.unit(220, "lb"),
  10372. name: "Front",
  10373. image: {
  10374. source: "./media/characters/samantha-kruse/front.svg",
  10375. extra: (985 / 935),
  10376. bottom: 0.03
  10377. }
  10378. },
  10379. frontUndressed: {
  10380. height: math.unit(5 + 9 / 12, "feet"),
  10381. weight: math.unit(220, "lb"),
  10382. name: "Front (Undressed)",
  10383. image: {
  10384. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10385. extra: (973 / 923),
  10386. bottom: 0.025
  10387. }
  10388. },
  10389. fat: {
  10390. height: math.unit(5 + 9 / 12, "feet"),
  10391. weight: math.unit(900, "lb"),
  10392. name: "Front (Fat)",
  10393. image: {
  10394. source: "./media/characters/samantha-kruse/fat.svg",
  10395. extra: 2688 / 2561
  10396. }
  10397. },
  10398. },
  10399. [
  10400. {
  10401. name: "Normal",
  10402. height: math.unit(5 + 9 / 12, "feet"),
  10403. default: true
  10404. }
  10405. ]
  10406. ))
  10407. characterMakers.push(() => makeCharacter(
  10408. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10409. {
  10410. back: {
  10411. height: math.unit(5 + 4 / 12, "feet"),
  10412. weight: math.unit(4963, "lb"),
  10413. name: "Back",
  10414. image: {
  10415. source: "./media/characters/amelia-rosie/back.svg",
  10416. extra: 1113 / 963,
  10417. bottom: 0.01
  10418. }
  10419. },
  10420. },
  10421. [
  10422. {
  10423. name: "Level 0",
  10424. height: math.unit(5 + 4 / 12, "feet")
  10425. },
  10426. {
  10427. name: "Level 1",
  10428. height: math.unit(164597, "feet"),
  10429. default: true
  10430. },
  10431. {
  10432. name: "Level 2",
  10433. height: math.unit(956243, "miles")
  10434. },
  10435. {
  10436. name: "Level 3",
  10437. height: math.unit(29421709423, "miles")
  10438. },
  10439. {
  10440. name: "Level 4",
  10441. height: math.unit(154, "lightyears")
  10442. },
  10443. {
  10444. name: "Level 5",
  10445. height: math.unit(4738272, "lightyears")
  10446. },
  10447. {
  10448. name: "Level 6",
  10449. height: math.unit(145787152896, "lightyears")
  10450. },
  10451. ]
  10452. ))
  10453. characterMakers.push(() => makeCharacter(
  10454. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10455. {
  10456. front: {
  10457. height: math.unit(5 + 11 / 12, "feet"),
  10458. weight: math.unit(65, "kg"),
  10459. name: "Front",
  10460. image: {
  10461. source: "./media/characters/rook-kitara/front.svg",
  10462. extra: 1347 / 1274,
  10463. bottom: 0.005
  10464. }
  10465. },
  10466. },
  10467. [
  10468. {
  10469. name: "Totally Unfair",
  10470. height: math.unit(1.8, "mm")
  10471. },
  10472. {
  10473. name: "Lap Rookie",
  10474. height: math.unit(1.4, "feet")
  10475. },
  10476. {
  10477. name: "Normal",
  10478. height: math.unit(5 + 11 / 12, "feet"),
  10479. default: true
  10480. },
  10481. {
  10482. name: "How Did This Happen",
  10483. height: math.unit(80, "miles")
  10484. }
  10485. ]
  10486. ))
  10487. characterMakers.push(() => makeCharacter(
  10488. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10489. {
  10490. front: {
  10491. height: math.unit(7, "feet"),
  10492. weight: math.unit(300, "lb"),
  10493. name: "Front",
  10494. image: {
  10495. source: "./media/characters/pisces/front.svg",
  10496. extra: 2255 / 2115,
  10497. bottom: 0.03
  10498. }
  10499. },
  10500. back: {
  10501. height: math.unit(7, "feet"),
  10502. weight: math.unit(300, "lb"),
  10503. name: "Back",
  10504. image: {
  10505. source: "./media/characters/pisces/back.svg",
  10506. extra: 2146 / 2055,
  10507. bottom: 0.04
  10508. }
  10509. },
  10510. },
  10511. [
  10512. {
  10513. name: "Normal",
  10514. height: math.unit(7, "feet"),
  10515. default: true
  10516. },
  10517. {
  10518. name: "Swimming Pool",
  10519. height: math.unit(12.2, "meters")
  10520. },
  10521. {
  10522. name: "Olympic Swimming Pool",
  10523. height: math.unit(56.3, "meters")
  10524. },
  10525. {
  10526. name: "Lake Superior",
  10527. height: math.unit(93900, "meters")
  10528. },
  10529. {
  10530. name: "Mediterranean Sea",
  10531. height: math.unit(644457, "meters")
  10532. },
  10533. {
  10534. name: "World's Oceans",
  10535. height: math.unit(4567491, "meters")
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10541. {
  10542. front: {
  10543. height: math.unit(2.3, "meters"),
  10544. weight: math.unit(120, "kg"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/zelas/front.svg"
  10548. }
  10549. },
  10550. side: {
  10551. height: math.unit(2.3, "meters"),
  10552. weight: math.unit(120, "kg"),
  10553. name: "Side",
  10554. image: {
  10555. source: "./media/characters/zelas/side.svg"
  10556. }
  10557. },
  10558. back: {
  10559. height: math.unit(2.3, "meters"),
  10560. weight: math.unit(120, "kg"),
  10561. name: "Back",
  10562. image: {
  10563. source: "./media/characters/zelas/back.svg"
  10564. }
  10565. },
  10566. foot: {
  10567. height: math.unit(1.116, "feet"),
  10568. name: "Foot",
  10569. image: {
  10570. source: "./media/characters/zelas/foot.svg"
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(2.3, "meters")
  10578. },
  10579. {
  10580. name: "Macro",
  10581. height: math.unit(30, "meters"),
  10582. default: true
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10588. {
  10589. front: {
  10590. height: math.unit(1, "inch"),
  10591. weight: math.unit(0.21, "grams"),
  10592. name: "Front",
  10593. image: {
  10594. source: "./media/characters/talbot/front.svg",
  10595. extra: 594 / 544
  10596. }
  10597. },
  10598. },
  10599. [
  10600. {
  10601. name: "Micro",
  10602. height: math.unit(1, "inch"),
  10603. default: true
  10604. },
  10605. ]
  10606. ))
  10607. characterMakers.push(() => makeCharacter(
  10608. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10609. {
  10610. front: {
  10611. height: math.unit(3 + 3 / 12, "feet"),
  10612. weight: math.unit(51.8, "lb"),
  10613. name: "Front",
  10614. image: {
  10615. source: "./media/characters/fliss/front.svg",
  10616. extra: 840 / 640
  10617. }
  10618. },
  10619. },
  10620. [
  10621. {
  10622. name: "Teeny Tiny",
  10623. height: math.unit(1, "mm")
  10624. },
  10625. {
  10626. name: "Small",
  10627. height: math.unit(1, "inch"),
  10628. default: true
  10629. },
  10630. {
  10631. name: "Standard Sylveon",
  10632. height: math.unit(3 + 3 / 12, "feet")
  10633. },
  10634. {
  10635. name: "Large Nuisance",
  10636. height: math.unit(33, "feet")
  10637. },
  10638. {
  10639. name: "City Filler",
  10640. height: math.unit(3000, "feet")
  10641. },
  10642. {
  10643. name: "New Horizon",
  10644. height: math.unit(6000, "miles")
  10645. },
  10646. ]
  10647. ))
  10648. characterMakers.push(() => makeCharacter(
  10649. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10650. {
  10651. front: {
  10652. height: math.unit(5, "cm"),
  10653. weight: math.unit(1.94, "g"),
  10654. name: "Front",
  10655. image: {
  10656. source: "./media/characters/fleta/front.svg",
  10657. extra: 835 / 803
  10658. }
  10659. },
  10660. back: {
  10661. height: math.unit(5, "cm"),
  10662. weight: math.unit(1.94, "g"),
  10663. name: "Back",
  10664. image: {
  10665. source: "./media/characters/fleta/back.svg",
  10666. extra: 835 / 803
  10667. }
  10668. },
  10669. },
  10670. [
  10671. {
  10672. name: "Micro",
  10673. height: math.unit(5, "cm"),
  10674. default: true
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10680. {
  10681. front: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(225, "lb"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/dominic/front.svg",
  10687. extra: 1770 / 1620,
  10688. bottom: 0.025
  10689. }
  10690. },
  10691. back: {
  10692. height: math.unit(6, "feet"),
  10693. weight: math.unit(225, "lb"),
  10694. name: "Back",
  10695. image: {
  10696. source: "./media/characters/dominic/back.svg",
  10697. extra: 1745 / 1620,
  10698. bottom: 0.065
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Nano",
  10705. height: math.unit(0.1, "mm")
  10706. },
  10707. {
  10708. name: "Micro-",
  10709. height: math.unit(1, "mm")
  10710. },
  10711. {
  10712. name: "Micro",
  10713. height: math.unit(4, "inches")
  10714. },
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(6 + 4 / 12, "feet"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "Macro",
  10722. height: math.unit(115, "feet")
  10723. },
  10724. {
  10725. name: "Macro+",
  10726. height: math.unit(955, "feet")
  10727. },
  10728. {
  10729. name: "Megamacro",
  10730. height: math.unit(8990, "feet")
  10731. },
  10732. {
  10733. name: "Gigmacro",
  10734. height: math.unit(9310, "miles")
  10735. },
  10736. {
  10737. name: "Teramacro",
  10738. height: math.unit(1567005010, "miles")
  10739. },
  10740. {
  10741. name: "Examacro",
  10742. height: math.unit(1425, "parsecs")
  10743. },
  10744. ]
  10745. ))
  10746. characterMakers.push(() => makeCharacter(
  10747. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10748. {
  10749. front: {
  10750. height: math.unit(400, "feet"),
  10751. weight: math.unit(44444444, "lb"),
  10752. name: "Front",
  10753. image: {
  10754. source: "./media/characters/major-colonel/front.svg"
  10755. }
  10756. },
  10757. back: {
  10758. height: math.unit(400, "feet"),
  10759. weight: math.unit(44444444, "lb"),
  10760. name: "Back",
  10761. image: {
  10762. source: "./media/characters/major-colonel/back.svg"
  10763. }
  10764. },
  10765. },
  10766. [
  10767. {
  10768. name: "Macro",
  10769. height: math.unit(400, "feet"),
  10770. default: true
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10776. {
  10777. catFront: {
  10778. height: math.unit(6, "feet"),
  10779. weight: math.unit(120, "lb"),
  10780. name: "Front (Cat Side)",
  10781. image: {
  10782. source: "./media/characters/axel-lycan/cat-front.svg",
  10783. extra: 430 / 402,
  10784. bottom: 43 / 472.35
  10785. }
  10786. },
  10787. catBack: {
  10788. height: math.unit(6, "feet"),
  10789. weight: math.unit(120, "lb"),
  10790. name: "Back (Cat Side)",
  10791. image: {
  10792. source: "./media/characters/axel-lycan/cat-back.svg",
  10793. extra: 447 / 419,
  10794. bottom: 23.3 / 469
  10795. }
  10796. },
  10797. wolfFront: {
  10798. height: math.unit(6, "feet"),
  10799. weight: math.unit(120, "lb"),
  10800. name: "Front (Wolf Side)",
  10801. image: {
  10802. source: "./media/characters/axel-lycan/wolf-front.svg",
  10803. extra: 485 / 456,
  10804. bottom: 19 / 504
  10805. }
  10806. },
  10807. wolfBack: {
  10808. height: math.unit(6, "feet"),
  10809. weight: math.unit(120, "lb"),
  10810. name: "Back (Wolf Side)",
  10811. image: {
  10812. source: "./media/characters/axel-lycan/wolf-back.svg",
  10813. extra: 475 / 438,
  10814. bottom: 39.2 / 514
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Macro",
  10821. height: math.unit(1, "km"),
  10822. default: true
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(5 + 9 / 12, "feet"),
  10831. weight: math.unit(175, "lb"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/vanrel-hyena/front.svg",
  10835. extra: 1086 / 1010,
  10836. bottom: 0.04
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Normal",
  10843. height: math.unit(5 + 9 / 12, "feet"),
  10844. default: true
  10845. },
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(6, "feet"),
  10853. weight: math.unit(103, "lb"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/abbott-absol/front.svg",
  10857. extra: 2010 / 1842
  10858. }
  10859. },
  10860. },
  10861. [
  10862. {
  10863. name: "Megamicro",
  10864. height: math.unit(0.1, "mm")
  10865. },
  10866. {
  10867. name: "Micro",
  10868. height: math.unit(1, "inch")
  10869. },
  10870. {
  10871. name: "Normal",
  10872. height: math.unit(6, "feet"),
  10873. default: true
  10874. },
  10875. ]
  10876. ))
  10877. characterMakers.push(() => makeCharacter(
  10878. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10879. {
  10880. front: {
  10881. height: math.unit(6, "feet"),
  10882. weight: math.unit(264, "lb"),
  10883. name: "Front",
  10884. image: {
  10885. source: "./media/characters/hector/front.svg",
  10886. extra: 2280 / 2130,
  10887. bottom: 0.07
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(12.25, "foot"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(160, "feet")
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(6, "feet"),
  10908. weight: math.unit(150, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/sal/front.svg",
  10912. extra: 1846 / 1699,
  10913. bottom: 0.04
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Megamacro",
  10920. height: math.unit(10, "miles"),
  10921. default: true
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10927. {
  10928. front: {
  10929. height: math.unit(3, "meters"),
  10930. weight: math.unit(450, "kg"),
  10931. name: "front",
  10932. image: {
  10933. source: "./media/characters/ranger/front.svg",
  10934. extra: 2401 / 2243,
  10935. bottom: 0.05
  10936. }
  10937. },
  10938. },
  10939. [
  10940. {
  10941. name: "Normal",
  10942. height: math.unit(3, "meters"),
  10943. default: true
  10944. },
  10945. ]
  10946. ))
  10947. characterMakers.push(() => makeCharacter(
  10948. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10949. {
  10950. front: {
  10951. height: math.unit(14, "feet"),
  10952. weight: math.unit(800, "kg"),
  10953. name: "Front",
  10954. image: {
  10955. source: "./media/characters/theresa/front.svg",
  10956. extra: 3575 / 3346,
  10957. bottom: 0.03
  10958. }
  10959. },
  10960. },
  10961. [
  10962. {
  10963. name: "Normal",
  10964. height: math.unit(14, "feet"),
  10965. default: true
  10966. },
  10967. ]
  10968. ))
  10969. characterMakers.push(() => makeCharacter(
  10970. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10971. {
  10972. front: {
  10973. height: math.unit(6, "feet"),
  10974. weight: math.unit(3, "kg"),
  10975. name: "Front",
  10976. image: {
  10977. source: "./media/characters/ine/front.svg",
  10978. extra: 678 / 539,
  10979. bottom: 0.023
  10980. }
  10981. },
  10982. },
  10983. [
  10984. {
  10985. name: "Normal",
  10986. height: math.unit(2.265, "feet"),
  10987. default: true
  10988. },
  10989. ]
  10990. ))
  10991. characterMakers.push(() => makeCharacter(
  10992. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10993. {
  10994. front: {
  10995. height: math.unit(5, "feet"),
  10996. weight: math.unit(30, "kg"),
  10997. name: "Front",
  10998. image: {
  10999. source: "./media/characters/vial/front.svg",
  11000. extra: 1365 / 1277,
  11001. bottom: 0.04
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(5, "feet"),
  11009. default: true
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11015. {
  11016. side: {
  11017. height: math.unit(3.4, "meters"),
  11018. weight: math.unit(1000, "lb"),
  11019. name: "Side",
  11020. image: {
  11021. source: "./media/characters/rovoska/side.svg",
  11022. extra: 4403 / 1515
  11023. }
  11024. },
  11025. },
  11026. [
  11027. {
  11028. name: "Normal",
  11029. height: math.unit(3.4, "meters"),
  11030. default: true
  11031. },
  11032. ]
  11033. ))
  11034. characterMakers.push(() => makeCharacter(
  11035. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11036. {
  11037. front: {
  11038. height: math.unit(8, "feet"),
  11039. weight: math.unit(315, "lb"),
  11040. name: "Front",
  11041. image: {
  11042. source: "./media/characters/gunner-rotthbauer/front.svg"
  11043. }
  11044. },
  11045. back: {
  11046. height: math.unit(8, "feet"),
  11047. weight: math.unit(315, "lb"),
  11048. name: "Back",
  11049. image: {
  11050. source: "./media/characters/gunner-rotthbauer/back.svg"
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Micro",
  11057. height: math.unit(3.5, "inches")
  11058. },
  11059. {
  11060. name: "Normal",
  11061. height: math.unit(8, "feet"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Macro",
  11066. height: math.unit(250, "feet")
  11067. },
  11068. {
  11069. name: "Megamacro",
  11070. height: math.unit(1, "AU")
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11076. {
  11077. front: {
  11078. height: math.unit(5 + 5 / 12, "feet"),
  11079. weight: math.unit(140, "lb"),
  11080. name: "Front",
  11081. image: {
  11082. source: "./media/characters/allatia/front.svg",
  11083. extra: 1227 / 1180,
  11084. bottom: 0.027
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(5 + 5 / 12, "feet")
  11092. },
  11093. {
  11094. name: "Macro",
  11095. height: math.unit(250, "feet"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Megamacro",
  11100. height: math.unit(8, "miles")
  11101. }
  11102. ]
  11103. ))
  11104. characterMakers.push(() => makeCharacter(
  11105. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11106. {
  11107. front: {
  11108. height: math.unit(6, "feet"),
  11109. weight: math.unit(120, "lb"),
  11110. name: "Front",
  11111. image: {
  11112. source: "./media/characters/tene/front.svg",
  11113. extra: 814/750,
  11114. bottom: 36/850
  11115. }
  11116. },
  11117. stomping: {
  11118. height: math.unit(2.025, "meters"),
  11119. weight: math.unit(120, "lb"),
  11120. name: "Stomping",
  11121. image: {
  11122. source: "./media/characters/tene/stomping.svg",
  11123. extra: 885/821,
  11124. bottom: 15/900
  11125. }
  11126. },
  11127. sitting: {
  11128. height: math.unit(1, "meter"),
  11129. weight: math.unit(120, "lb"),
  11130. name: "Sitting",
  11131. image: {
  11132. source: "./media/characters/tene/sitting.svg",
  11133. extra: 396/366,
  11134. bottom: 79/475
  11135. }
  11136. },
  11137. smiling: {
  11138. height: math.unit(1.2, "feet"),
  11139. name: "Smiling",
  11140. image: {
  11141. source: "./media/characters/tene/smiling.svg",
  11142. extra: 1364/1071,
  11143. bottom: 0/1364
  11144. }
  11145. },
  11146. smug: {
  11147. height: math.unit(1.3, "feet"),
  11148. name: "Smug",
  11149. image: {
  11150. source: "./media/characters/tene/smug.svg",
  11151. extra: 1323/1082,
  11152. bottom: 0/1323
  11153. }
  11154. },
  11155. feral: {
  11156. height: math.unit(3.9, "feet"),
  11157. weight: math.unit(250, "lb"),
  11158. name: "Feral",
  11159. image: {
  11160. source: "./media/characters/tene/feral.svg",
  11161. extra: 717 / 458,
  11162. bottom: 0.179
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Normal",
  11169. height: math.unit(6, "feet")
  11170. },
  11171. {
  11172. name: "Macro",
  11173. height: math.unit(300, "feet"),
  11174. default: true
  11175. },
  11176. {
  11177. name: "Megamacro",
  11178. height: math.unit(5, "miles")
  11179. },
  11180. ]
  11181. ))
  11182. characterMakers.push(() => makeCharacter(
  11183. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11184. {
  11185. side: {
  11186. height: math.unit(6, "feet"),
  11187. name: "Side",
  11188. image: {
  11189. source: "./media/characters/evander/side.svg",
  11190. extra: 877 / 477
  11191. }
  11192. },
  11193. },
  11194. [
  11195. {
  11196. name: "Normal",
  11197. height: math.unit(0.83, "meters"),
  11198. default: true
  11199. },
  11200. ]
  11201. ))
  11202. characterMakers.push(() => makeCharacter(
  11203. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11204. {
  11205. front: {
  11206. height: math.unit(12, "feet"),
  11207. weight: math.unit(1000, "lb"),
  11208. name: "Front",
  11209. image: {
  11210. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11211. extra: 1762 / 1611
  11212. }
  11213. },
  11214. back: {
  11215. height: math.unit(12, "feet"),
  11216. weight: math.unit(1000, "lb"),
  11217. name: "Back",
  11218. image: {
  11219. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11220. extra: 1762 / 1611
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Normal",
  11227. height: math.unit(12, "feet"),
  11228. default: true
  11229. },
  11230. {
  11231. name: "Kaiju",
  11232. height: math.unit(150, "feet")
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(6, "feet"),
  11241. weight: math.unit(150, "lb"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/zero-alurus/front.svg"
  11245. }
  11246. },
  11247. back: {
  11248. height: math.unit(6, "feet"),
  11249. weight: math.unit(150, "lb"),
  11250. name: "Back",
  11251. image: {
  11252. source: "./media/characters/zero-alurus/back.svg"
  11253. }
  11254. },
  11255. },
  11256. [
  11257. {
  11258. name: "Normal",
  11259. height: math.unit(5 + 10 / 12, "feet")
  11260. },
  11261. {
  11262. name: "Macro",
  11263. height: math.unit(60, "feet"),
  11264. default: true
  11265. },
  11266. {
  11267. name: "Macro+",
  11268. height: math.unit(450, "feet")
  11269. },
  11270. ]
  11271. ))
  11272. characterMakers.push(() => makeCharacter(
  11273. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11274. {
  11275. front: {
  11276. height: math.unit(6, "feet"),
  11277. weight: math.unit(200, "lb"),
  11278. name: "Front",
  11279. image: {
  11280. source: "./media/characters/mega-shi/front.svg",
  11281. extra: 1279 / 1250,
  11282. bottom: 0.02
  11283. }
  11284. },
  11285. back: {
  11286. height: math.unit(6, "feet"),
  11287. weight: math.unit(200, "lb"),
  11288. name: "Back",
  11289. image: {
  11290. source: "./media/characters/mega-shi/back.svg",
  11291. extra: 1279 / 1250,
  11292. bottom: 0.02
  11293. }
  11294. },
  11295. },
  11296. [
  11297. {
  11298. name: "Micro",
  11299. height: math.unit(16 + 6 / 12, "feet")
  11300. },
  11301. {
  11302. name: "Third Dimension",
  11303. height: math.unit(40, "meters")
  11304. },
  11305. {
  11306. name: "Normal",
  11307. height: math.unit(660, "feet"),
  11308. default: true
  11309. },
  11310. {
  11311. name: "Megamacro",
  11312. height: math.unit(10, "miles")
  11313. },
  11314. {
  11315. name: "Planetary Launch",
  11316. height: math.unit(500, "miles")
  11317. },
  11318. {
  11319. name: "Interstellar",
  11320. height: math.unit(1e9, "miles")
  11321. },
  11322. {
  11323. name: "Leaving the Universe",
  11324. height: math.unit(1, "gigaparsec")
  11325. },
  11326. {
  11327. name: "Travelling Universes",
  11328. height: math.unit(30e15, "parsecs")
  11329. },
  11330. ]
  11331. ))
  11332. characterMakers.push(() => makeCharacter(
  11333. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11334. {
  11335. front: {
  11336. height: math.unit(5 + 4/12, "feet"),
  11337. weight: math.unit(120, "lb"),
  11338. name: "Front",
  11339. image: {
  11340. source: "./media/characters/odyssey/front.svg",
  11341. extra: 1747/1571,
  11342. bottom: 47/1794
  11343. }
  11344. },
  11345. side: {
  11346. height: math.unit(5.1, "feet"),
  11347. weight: math.unit(120, "lb"),
  11348. name: "Side",
  11349. image: {
  11350. source: "./media/characters/odyssey/side.svg",
  11351. extra: 1847/1619,
  11352. bottom: 47/1894
  11353. }
  11354. },
  11355. lounging: {
  11356. height: math.unit(1.464, "feet"),
  11357. weight: math.unit(120, "lb"),
  11358. name: "Lounging",
  11359. image: {
  11360. source: "./media/characters/odyssey/lounging.svg",
  11361. extra: 1235/837,
  11362. bottom: 551/1786
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(5 + 4 / 12, "feet")
  11370. },
  11371. {
  11372. name: "Macro",
  11373. height: math.unit(1, "km")
  11374. },
  11375. {
  11376. name: "Megamacro",
  11377. height: math.unit(3000, "km")
  11378. },
  11379. {
  11380. name: "Gigamacro",
  11381. height: math.unit(1, "AU"),
  11382. default: true
  11383. },
  11384. {
  11385. name: "Omniversal",
  11386. height: math.unit(100e14, "lightyears")
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11392. {
  11393. front: {
  11394. height: math.unit(5 + 10/12, "feet"),
  11395. name: "Front",
  11396. image: {
  11397. source: "./media/characters/mekuto/front.svg",
  11398. extra: 875/835,
  11399. bottom: 46/921
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Minimicro",
  11406. height: math.unit(0.2, "inches")
  11407. },
  11408. {
  11409. name: "Micro",
  11410. height: math.unit(1.5, "inches")
  11411. },
  11412. {
  11413. name: "Normal",
  11414. height: math.unit(5 + 10 / 12, "feet"),
  11415. default: true
  11416. },
  11417. {
  11418. name: "Minimacro",
  11419. height: math.unit(17 + 9 / 12, "feet")
  11420. },
  11421. {
  11422. name: "Macro",
  11423. height: math.unit(177.5, "feet")
  11424. },
  11425. {
  11426. name: "Megamacro",
  11427. height: math.unit(152, "miles")
  11428. },
  11429. ]
  11430. ))
  11431. characterMakers.push(() => makeCharacter(
  11432. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11433. {
  11434. front: {
  11435. height: math.unit(6.5, "inches"),
  11436. weight: math.unit(13, "oz"),
  11437. name: "Front",
  11438. image: {
  11439. source: "./media/characters/dafydd-tomos/front.svg",
  11440. extra: 2990 / 2603,
  11441. bottom: 0.03
  11442. }
  11443. },
  11444. },
  11445. [
  11446. {
  11447. name: "Micro",
  11448. height: math.unit(6.5, "inches"),
  11449. default: true
  11450. },
  11451. ]
  11452. ))
  11453. characterMakers.push(() => makeCharacter(
  11454. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11455. {
  11456. front: {
  11457. height: math.unit(6, "feet"),
  11458. weight: math.unit(150, "lb"),
  11459. name: "Front",
  11460. image: {
  11461. source: "./media/characters/splinter/front.svg",
  11462. extra: 2990 / 2882,
  11463. bottom: 0.04
  11464. }
  11465. },
  11466. back: {
  11467. height: math.unit(6, "feet"),
  11468. weight: math.unit(150, "lb"),
  11469. name: "Back",
  11470. image: {
  11471. source: "./media/characters/splinter/back.svg",
  11472. extra: 2990 / 2882,
  11473. bottom: 0.04
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Normal",
  11480. height: math.unit(6, "feet")
  11481. },
  11482. {
  11483. name: "Macro",
  11484. height: math.unit(230, "meters"),
  11485. default: true
  11486. },
  11487. ]
  11488. ))
  11489. characterMakers.push(() => makeCharacter(
  11490. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11491. {
  11492. front: {
  11493. height: math.unit(4 + 10 / 12, "feet"),
  11494. weight: math.unit(480, "lb"),
  11495. name: "Front",
  11496. image: {
  11497. source: "./media/characters/snow-gabumon/front.svg",
  11498. extra: 1140 / 963,
  11499. bottom: 0.058
  11500. }
  11501. },
  11502. back: {
  11503. height: math.unit(4 + 10 / 12, "feet"),
  11504. weight: math.unit(480, "lb"),
  11505. name: "Back",
  11506. image: {
  11507. source: "./media/characters/snow-gabumon/back.svg",
  11508. extra: 1115 / 962,
  11509. bottom: 0.041
  11510. }
  11511. },
  11512. frontUndresed: {
  11513. height: math.unit(4 + 10 / 12, "feet"),
  11514. weight: math.unit(480, "lb"),
  11515. name: "Front (Undressed)",
  11516. image: {
  11517. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11518. extra: 1061 / 960,
  11519. bottom: 0.045
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Micro",
  11526. height: math.unit(1, "inch")
  11527. },
  11528. {
  11529. name: "Normal",
  11530. height: math.unit(4 + 10 / 12, "feet"),
  11531. default: true
  11532. },
  11533. {
  11534. name: "Macro",
  11535. height: math.unit(200, "feet")
  11536. },
  11537. {
  11538. name: "Megamacro",
  11539. height: math.unit(120, "miles")
  11540. },
  11541. {
  11542. name: "Gigamacro",
  11543. height: math.unit(9800, "miles")
  11544. },
  11545. ]
  11546. ))
  11547. characterMakers.push(() => makeCharacter(
  11548. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11549. {
  11550. front: {
  11551. height: math.unit(1.7, "meters"),
  11552. weight: math.unit(140, "lb"),
  11553. name: "Front",
  11554. image: {
  11555. source: "./media/characters/moody/front.svg",
  11556. extra: 3226 / 3007,
  11557. bottom: 0.087
  11558. }
  11559. },
  11560. },
  11561. [
  11562. {
  11563. name: "Micro",
  11564. height: math.unit(1, "mm")
  11565. },
  11566. {
  11567. name: "Normal",
  11568. height: math.unit(1.7, "meters"),
  11569. default: true
  11570. },
  11571. {
  11572. name: "Macro",
  11573. height: math.unit(80, "meters")
  11574. },
  11575. {
  11576. name: "Macro+",
  11577. height: math.unit(500, "meters")
  11578. },
  11579. ]
  11580. ))
  11581. characterMakers.push(() => makeCharacter(
  11582. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11583. {
  11584. front: {
  11585. height: math.unit(6, "feet"),
  11586. weight: math.unit(150, "lb"),
  11587. name: "Front",
  11588. image: {
  11589. source: "./media/characters/zyas/front.svg",
  11590. extra: 1180 / 1120,
  11591. bottom: 0.045
  11592. }
  11593. },
  11594. },
  11595. [
  11596. {
  11597. name: "Normal",
  11598. height: math.unit(10, "feet"),
  11599. default: true
  11600. },
  11601. {
  11602. name: "Macro",
  11603. height: math.unit(500, "feet")
  11604. },
  11605. {
  11606. name: "Megamacro",
  11607. height: math.unit(5, "miles")
  11608. },
  11609. {
  11610. name: "Teramacro",
  11611. height: math.unit(150000, "miles")
  11612. },
  11613. ]
  11614. ))
  11615. characterMakers.push(() => makeCharacter(
  11616. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11617. {
  11618. front: {
  11619. height: math.unit(6, "feet"),
  11620. weight: math.unit(150, "lb"),
  11621. name: "Front",
  11622. image: {
  11623. source: "./media/characters/cuon/front.svg",
  11624. extra: 1390 / 1320,
  11625. bottom: 0.008
  11626. }
  11627. },
  11628. },
  11629. [
  11630. {
  11631. name: "Micro",
  11632. height: math.unit(3, "inches")
  11633. },
  11634. {
  11635. name: "Normal",
  11636. height: math.unit(18 + 9 / 12, "feet"),
  11637. default: true
  11638. },
  11639. {
  11640. name: "Macro",
  11641. height: math.unit(360, "feet")
  11642. },
  11643. {
  11644. name: "Megamacro",
  11645. height: math.unit(360, "miles")
  11646. },
  11647. ]
  11648. ))
  11649. characterMakers.push(() => makeCharacter(
  11650. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11651. {
  11652. front: {
  11653. height: math.unit(2.4, "meters"),
  11654. weight: math.unit(70, "kg"),
  11655. name: "Front",
  11656. image: {
  11657. source: "./media/characters/nyanuxk/front.svg",
  11658. extra: 1172 / 1084,
  11659. bottom: 0.065
  11660. }
  11661. },
  11662. side: {
  11663. height: math.unit(2.4, "meters"),
  11664. weight: math.unit(70, "kg"),
  11665. name: "Side",
  11666. image: {
  11667. source: "./media/characters/nyanuxk/side.svg",
  11668. extra: 1190 / 1132,
  11669. bottom: 0.007
  11670. }
  11671. },
  11672. back: {
  11673. height: math.unit(2.4, "meters"),
  11674. weight: math.unit(70, "kg"),
  11675. name: "Back",
  11676. image: {
  11677. source: "./media/characters/nyanuxk/back.svg",
  11678. extra: 1200 / 1141,
  11679. bottom: 0.015
  11680. }
  11681. },
  11682. foot: {
  11683. height: math.unit(0.52, "meters"),
  11684. name: "Foot",
  11685. image: {
  11686. source: "./media/characters/nyanuxk/foot.svg"
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Micro",
  11693. height: math.unit(2, "cm")
  11694. },
  11695. {
  11696. name: "Normal",
  11697. height: math.unit(2.4, "meters"),
  11698. default: true
  11699. },
  11700. {
  11701. name: "Smaller Macro",
  11702. height: math.unit(120, "meters")
  11703. },
  11704. {
  11705. name: "Bigger Macro",
  11706. height: math.unit(1.2, "km")
  11707. },
  11708. {
  11709. name: "Megamacro",
  11710. height: math.unit(15, "kilometers")
  11711. },
  11712. {
  11713. name: "Gigamacro",
  11714. height: math.unit(2000, "km")
  11715. },
  11716. {
  11717. name: "Teramacro",
  11718. height: math.unit(500000, "km")
  11719. },
  11720. ]
  11721. ))
  11722. characterMakers.push(() => makeCharacter(
  11723. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11724. {
  11725. side: {
  11726. height: math.unit(6, "feet"),
  11727. name: "Side",
  11728. image: {
  11729. source: "./media/characters/ailbhe/side.svg",
  11730. extra: 757 / 464,
  11731. bottom: 0.041
  11732. }
  11733. },
  11734. },
  11735. [
  11736. {
  11737. name: "Normal",
  11738. height: math.unit(1.07, "meters"),
  11739. default: true
  11740. },
  11741. ]
  11742. ))
  11743. characterMakers.push(() => makeCharacter(
  11744. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11745. {
  11746. front: {
  11747. height: math.unit(6, "feet"),
  11748. weight: math.unit(120, "kg"),
  11749. name: "Front",
  11750. image: {
  11751. source: "./media/characters/zevulfius/front.svg",
  11752. extra: 965 / 903
  11753. }
  11754. },
  11755. side: {
  11756. height: math.unit(6, "feet"),
  11757. weight: math.unit(120, "kg"),
  11758. name: "Side",
  11759. image: {
  11760. source: "./media/characters/zevulfius/side.svg",
  11761. extra: 939 / 900
  11762. }
  11763. },
  11764. back: {
  11765. height: math.unit(6, "feet"),
  11766. weight: math.unit(120, "kg"),
  11767. name: "Back",
  11768. image: {
  11769. source: "./media/characters/zevulfius/back.svg",
  11770. extra: 918 / 854,
  11771. bottom: 0.005
  11772. }
  11773. },
  11774. foot: {
  11775. height: math.unit(6 / 3.72, "feet"),
  11776. name: "Foot",
  11777. image: {
  11778. source: "./media/characters/zevulfius/foot.svg"
  11779. }
  11780. },
  11781. },
  11782. [
  11783. {
  11784. name: "Macro",
  11785. height: math.unit(750, "meters")
  11786. },
  11787. {
  11788. name: "Megamacro",
  11789. height: math.unit(20, "km"),
  11790. default: true
  11791. },
  11792. {
  11793. name: "Gigamacro",
  11794. height: math.unit(2000, "km")
  11795. },
  11796. {
  11797. name: "Teramacro",
  11798. height: math.unit(250000, "km")
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11804. {
  11805. front: {
  11806. height: math.unit(100, "feet"),
  11807. weight: math.unit(350, "kg"),
  11808. name: "Front",
  11809. image: {
  11810. source: "./media/characters/rikes/front.svg",
  11811. extra: 1565 / 1483,
  11812. bottom: 0.017
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Macro",
  11819. height: math.unit(100, "feet"),
  11820. default: true
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11826. {
  11827. front: {
  11828. height: math.unit(8, "feet"),
  11829. weight: math.unit(356, "lb"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/adam-silver-mane/front.svg",
  11833. extra: 1036/937,
  11834. bottom: 63/1099
  11835. }
  11836. },
  11837. side: {
  11838. height: math.unit(8, "feet"),
  11839. weight: math.unit(356, "lb"),
  11840. name: "Side",
  11841. image: {
  11842. source: "./media/characters/adam-silver-mane/side.svg",
  11843. extra: 997/901,
  11844. bottom: 59/1056
  11845. }
  11846. },
  11847. frontNsfw: {
  11848. height: math.unit(8, "feet"),
  11849. weight: math.unit(356, "lb"),
  11850. name: "Front (NSFW)",
  11851. image: {
  11852. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11853. extra: 1036/937,
  11854. bottom: 63/1099
  11855. }
  11856. },
  11857. sideNsfw: {
  11858. height: math.unit(8, "feet"),
  11859. weight: math.unit(356, "lb"),
  11860. name: "Side (NSFW)",
  11861. image: {
  11862. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11863. extra: 997/901,
  11864. bottom: 59/1056
  11865. }
  11866. },
  11867. dick: {
  11868. height: math.unit(2.1, "feet"),
  11869. name: "Dick",
  11870. image: {
  11871. source: "./media/characters/adam-silver-mane/dick.svg"
  11872. }
  11873. },
  11874. taur: {
  11875. height: math.unit(16, "feet"),
  11876. weight: math.unit(1500, "kg"),
  11877. name: "Taur",
  11878. image: {
  11879. source: "./media/characters/adam-silver-mane/taur.svg",
  11880. extra: 1713 / 1571,
  11881. bottom: 0.01
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(8, "feet")
  11889. },
  11890. {
  11891. name: "Minimacro",
  11892. height: math.unit(80, "feet")
  11893. },
  11894. {
  11895. name: "MDA",
  11896. height: math.unit(80, "meters")
  11897. },
  11898. {
  11899. name: "Macro",
  11900. height: math.unit(800, "feet"),
  11901. default: true
  11902. },
  11903. {
  11904. name: "Megamacro",
  11905. height: math.unit(8000, "feet")
  11906. },
  11907. {
  11908. name: "Gigamacro",
  11909. height: math.unit(800, "miles")
  11910. },
  11911. {
  11912. name: "Teramacro",
  11913. height: math.unit(80000, "miles")
  11914. },
  11915. {
  11916. name: "Celestial",
  11917. height: math.unit(8e6, "miles")
  11918. },
  11919. {
  11920. name: "Star Dragon",
  11921. height: math.unit(800000, "parsecs")
  11922. },
  11923. {
  11924. name: "Godly",
  11925. height: math.unit(800, "teraparsecs")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(6, "feet"),
  11934. weight: math.unit(150, "lb"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/ky'owin/front.svg",
  11938. extra: 3862/3053,
  11939. bottom: 74/3936
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Normal",
  11946. height: math.unit(6 + 8 / 12, "feet")
  11947. },
  11948. {
  11949. name: "Large",
  11950. height: math.unit(68, "feet")
  11951. },
  11952. {
  11953. name: "Macro",
  11954. height: math.unit(132, "feet")
  11955. },
  11956. {
  11957. name: "Macro+",
  11958. height: math.unit(340, "feet")
  11959. },
  11960. {
  11961. name: "Macro++",
  11962. height: math.unit(680, "feet"),
  11963. default: true
  11964. },
  11965. {
  11966. name: "Megamacro",
  11967. height: math.unit(1, "mile")
  11968. },
  11969. {
  11970. name: "Megamacro+",
  11971. height: math.unit(10, "miles")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(4, "feet"),
  11980. weight: math.unit(50, "lb"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/mal/front.svg",
  11984. extra: 785 / 724,
  11985. bottom: 0.07
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Micro",
  11992. height: math.unit(4, "inches")
  11993. },
  11994. {
  11995. name: "Normal",
  11996. height: math.unit(4, "feet"),
  11997. default: true
  11998. },
  11999. {
  12000. name: "Macro",
  12001. height: math.unit(200, "feet")
  12002. },
  12003. ]
  12004. ))
  12005. characterMakers.push(() => makeCharacter(
  12006. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12007. {
  12008. front: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(150, "lb"),
  12011. name: "Front",
  12012. image: {
  12013. source: "./media/characters/jordan-deware/front.svg",
  12014. extra: 1191 / 1012
  12015. }
  12016. },
  12017. },
  12018. [
  12019. {
  12020. name: "Nano",
  12021. height: math.unit(0.01, "mm")
  12022. },
  12023. {
  12024. name: "Minimicro",
  12025. height: math.unit(1, "mm")
  12026. },
  12027. {
  12028. name: "Micro",
  12029. height: math.unit(0.5, "inches")
  12030. },
  12031. {
  12032. name: "Normal",
  12033. height: math.unit(4, "feet"),
  12034. default: true
  12035. },
  12036. {
  12037. name: "Minimacro",
  12038. height: math.unit(40, "meters")
  12039. },
  12040. {
  12041. name: "Small Macro",
  12042. height: math.unit(400, "meters")
  12043. },
  12044. {
  12045. name: "Macro",
  12046. height: math.unit(4, "miles")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(40, "miles")
  12051. },
  12052. {
  12053. name: "Megamacro+",
  12054. height: math.unit(400, "miles")
  12055. },
  12056. {
  12057. name: "Gigamacro",
  12058. height: math.unit(400000, "miles")
  12059. },
  12060. ]
  12061. ))
  12062. characterMakers.push(() => makeCharacter(
  12063. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12064. {
  12065. side: {
  12066. height: math.unit(6, "feet"),
  12067. weight: math.unit(150, "lb"),
  12068. name: "Side",
  12069. image: {
  12070. source: "./media/characters/kimiko/side.svg",
  12071. extra: 600 / 358
  12072. }
  12073. },
  12074. },
  12075. [
  12076. {
  12077. name: "Normal",
  12078. height: math.unit(15, "feet"),
  12079. default: true
  12080. },
  12081. {
  12082. name: "Macro",
  12083. height: math.unit(220, "feet")
  12084. },
  12085. {
  12086. name: "Macro+",
  12087. height: math.unit(1450, "feet")
  12088. },
  12089. {
  12090. name: "Megamacro",
  12091. height: math.unit(11500, "feet")
  12092. },
  12093. {
  12094. name: "Gigamacro",
  12095. height: math.unit(9500, "miles")
  12096. },
  12097. {
  12098. name: "Teramacro",
  12099. height: math.unit(2208005005, "miles")
  12100. },
  12101. {
  12102. name: "Examacro",
  12103. height: math.unit(2750, "parsecs")
  12104. },
  12105. {
  12106. name: "Zettamacro",
  12107. height: math.unit(101500, "parsecs")
  12108. },
  12109. ]
  12110. ))
  12111. characterMakers.push(() => makeCharacter(
  12112. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12113. {
  12114. front: {
  12115. height: math.unit(6, "feet"),
  12116. weight: math.unit(70, "kg"),
  12117. name: "Front",
  12118. image: {
  12119. source: "./media/characters/andrew-sleepy/front.svg"
  12120. }
  12121. },
  12122. side: {
  12123. height: math.unit(6, "feet"),
  12124. weight: math.unit(70, "kg"),
  12125. name: "Side",
  12126. image: {
  12127. source: "./media/characters/andrew-sleepy/side.svg"
  12128. }
  12129. },
  12130. },
  12131. [
  12132. {
  12133. name: "Micro",
  12134. height: math.unit(1, "mm"),
  12135. default: true
  12136. },
  12137. ]
  12138. ))
  12139. characterMakers.push(() => makeCharacter(
  12140. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12141. {
  12142. front: {
  12143. height: math.unit(6, "feet"),
  12144. weight: math.unit(150, "lb"),
  12145. name: "Front",
  12146. image: {
  12147. source: "./media/characters/judio/front.svg",
  12148. extra: 1258 / 1110
  12149. }
  12150. },
  12151. },
  12152. [
  12153. {
  12154. name: "Normal",
  12155. height: math.unit(5 + 6 / 12, "feet")
  12156. },
  12157. {
  12158. name: "Macro",
  12159. height: math.unit(1000, "feet"),
  12160. default: true
  12161. },
  12162. {
  12163. name: "Megamacro",
  12164. height: math.unit(10, "miles")
  12165. },
  12166. ]
  12167. ))
  12168. characterMakers.push(() => makeCharacter(
  12169. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12170. {
  12171. frontDressed: {
  12172. height: math.unit(6, "feet"),
  12173. weight: math.unit(68, "kg"),
  12174. name: "Front (Dressed)",
  12175. image: {
  12176. source: "./media/characters/nomaxice/front-dressed.svg",
  12177. extra: 1137/824,
  12178. bottom: 74/1211
  12179. }
  12180. },
  12181. frontShorts: {
  12182. height: math.unit(6, "feet"),
  12183. weight: math.unit(68, "kg"),
  12184. name: "Front (Shorts)",
  12185. image: {
  12186. source: "./media/characters/nomaxice/front-shorts.svg",
  12187. extra: 1137/824,
  12188. bottom: 74/1211
  12189. }
  12190. },
  12191. back: {
  12192. height: math.unit(6, "feet"),
  12193. weight: math.unit(68, "kg"),
  12194. name: "Back",
  12195. image: {
  12196. source: "./media/characters/nomaxice/back.svg",
  12197. extra: 822/786,
  12198. bottom: 39/861
  12199. }
  12200. },
  12201. hand: {
  12202. height: math.unit(0.565, "feet"),
  12203. name: "Hand",
  12204. image: {
  12205. source: "./media/characters/nomaxice/hand.svg"
  12206. }
  12207. },
  12208. foot: {
  12209. height: math.unit(1, "feet"),
  12210. name: "Foot",
  12211. image: {
  12212. source: "./media/characters/nomaxice/foot.svg"
  12213. }
  12214. },
  12215. },
  12216. [
  12217. {
  12218. name: "Micro",
  12219. height: math.unit(8, "cm")
  12220. },
  12221. {
  12222. name: "Norm",
  12223. height: math.unit(1.82, "m")
  12224. },
  12225. {
  12226. name: "Norm+",
  12227. height: math.unit(8.8, "feet"),
  12228. default: true
  12229. },
  12230. {
  12231. name: "Big",
  12232. height: math.unit(8, "meters")
  12233. },
  12234. {
  12235. name: "Macro",
  12236. height: math.unit(18, "meters")
  12237. },
  12238. {
  12239. name: "Macro+",
  12240. height: math.unit(88, "meters")
  12241. },
  12242. ]
  12243. ))
  12244. characterMakers.push(() => makeCharacter(
  12245. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12246. {
  12247. front: {
  12248. height: math.unit(12, "feet"),
  12249. weight: math.unit(1.5, "tons"),
  12250. name: "Front",
  12251. image: {
  12252. source: "./media/characters/dydros/front.svg",
  12253. extra: 863 / 800,
  12254. bottom: 0.015
  12255. }
  12256. },
  12257. back: {
  12258. height: math.unit(12, "feet"),
  12259. weight: math.unit(1.5, "tons"),
  12260. name: "Back",
  12261. image: {
  12262. source: "./media/characters/dydros/back.svg",
  12263. extra: 900 / 843,
  12264. bottom: 0.005
  12265. }
  12266. },
  12267. },
  12268. [
  12269. {
  12270. name: "Normal",
  12271. height: math.unit(12, "feet"),
  12272. default: true
  12273. },
  12274. ]
  12275. ))
  12276. characterMakers.push(() => makeCharacter(
  12277. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12278. {
  12279. front: {
  12280. height: math.unit(6, "feet"),
  12281. weight: math.unit(100, "kg"),
  12282. name: "Front",
  12283. image: {
  12284. source: "./media/characters/riggi/front.svg",
  12285. extra: 5787 / 5303
  12286. }
  12287. },
  12288. hyper: {
  12289. height: math.unit(6 * 5 / 3, "feet"),
  12290. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12291. name: "Hyper",
  12292. image: {
  12293. source: "./media/characters/riggi/hyper.svg",
  12294. extra: 3595 / 3485
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Small Macro",
  12301. height: math.unit(50, "feet")
  12302. },
  12303. {
  12304. name: "Default",
  12305. height: math.unit(200, "feet"),
  12306. default: true
  12307. },
  12308. {
  12309. name: "Loom",
  12310. height: math.unit(10000, "feet")
  12311. },
  12312. {
  12313. name: "Cruising Altitude",
  12314. height: math.unit(30000, "feet")
  12315. },
  12316. {
  12317. name: "Megamacro",
  12318. height: math.unit(100, "miles")
  12319. },
  12320. {
  12321. name: "Continent Sized",
  12322. height: math.unit(2800, "miles")
  12323. },
  12324. {
  12325. name: "Earth Sized",
  12326. height: math.unit(8000, "miles")
  12327. },
  12328. ]
  12329. ))
  12330. characterMakers.push(() => makeCharacter(
  12331. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12332. {
  12333. front: {
  12334. height: math.unit(6, "feet"),
  12335. weight: math.unit(250, "lb"),
  12336. name: "Front",
  12337. image: {
  12338. source: "./media/characters/alexi/front.svg",
  12339. extra: 3483 / 3291,
  12340. bottom: 0.04
  12341. }
  12342. },
  12343. back: {
  12344. height: math.unit(6, "feet"),
  12345. weight: math.unit(250, "lb"),
  12346. name: "Back",
  12347. image: {
  12348. source: "./media/characters/alexi/back.svg",
  12349. extra: 3533 / 3356,
  12350. bottom: 0.021
  12351. }
  12352. },
  12353. frontTransforming: {
  12354. height: math.unit(8.58, "feet"),
  12355. weight: math.unit(1300, "lb"),
  12356. name: "Transforming",
  12357. image: {
  12358. source: "./media/characters/alexi/front-transforming.svg",
  12359. extra: 437 / 409,
  12360. bottom: 19 / 458.66
  12361. }
  12362. },
  12363. frontTransformed: {
  12364. height: math.unit(12.5, "feet"),
  12365. weight: math.unit(4000, "lb"),
  12366. name: "Transformed",
  12367. image: {
  12368. source: "./media/characters/alexi/front-transformed.svg",
  12369. extra: 639 / 614,
  12370. bottom: 30.55 / 671
  12371. }
  12372. },
  12373. },
  12374. [
  12375. {
  12376. name: "Normal",
  12377. height: math.unit(14, "feet"),
  12378. default: true
  12379. },
  12380. {
  12381. name: "Minimacro",
  12382. height: math.unit(30, "meters")
  12383. },
  12384. {
  12385. name: "Macro",
  12386. height: math.unit(500, "meters")
  12387. },
  12388. {
  12389. name: "Megamacro",
  12390. height: math.unit(9000, "km")
  12391. },
  12392. {
  12393. name: "Teramacro",
  12394. height: math.unit(384000, "km")
  12395. },
  12396. ]
  12397. ))
  12398. characterMakers.push(() => makeCharacter(
  12399. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12400. {
  12401. front: {
  12402. height: math.unit(6, "feet"),
  12403. weight: math.unit(150, "lb"),
  12404. name: "Front",
  12405. image: {
  12406. source: "./media/characters/kayroo/front.svg",
  12407. extra: 1153 / 1038,
  12408. bottom: 0.06
  12409. }
  12410. },
  12411. foot: {
  12412. height: math.unit(6, "feet"),
  12413. weight: math.unit(150, "lb"),
  12414. name: "Foot",
  12415. image: {
  12416. source: "./media/characters/kayroo/foot.svg"
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(8, "feet"),
  12424. default: true
  12425. },
  12426. {
  12427. name: "Minimacro",
  12428. height: math.unit(250, "feet")
  12429. },
  12430. {
  12431. name: "Macro",
  12432. height: math.unit(2800, "feet")
  12433. },
  12434. {
  12435. name: "Megamacro",
  12436. height: math.unit(5200, "feet")
  12437. },
  12438. {
  12439. name: "Gigamacro",
  12440. height: math.unit(27000, "feet")
  12441. },
  12442. {
  12443. name: "Omega",
  12444. height: math.unit(45000, "feet")
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12450. {
  12451. front: {
  12452. height: math.unit(18, "feet"),
  12453. weight: math.unit(5800, "lb"),
  12454. name: "Front",
  12455. image: {
  12456. source: "./media/characters/rhys/front.svg",
  12457. extra: 3386 / 3090,
  12458. bottom: 0.07
  12459. }
  12460. },
  12461. },
  12462. [
  12463. {
  12464. name: "Normal",
  12465. height: math.unit(18, "feet"),
  12466. default: true
  12467. },
  12468. {
  12469. name: "Working Size",
  12470. height: math.unit(200, "feet")
  12471. },
  12472. {
  12473. name: "Demolition Size",
  12474. height: math.unit(2000, "feet")
  12475. },
  12476. {
  12477. name: "Maximum Licensed Size",
  12478. height: math.unit(5, "miles")
  12479. },
  12480. {
  12481. name: "Maximum Observed Size",
  12482. height: math.unit(10, "yottameters")
  12483. },
  12484. ]
  12485. ))
  12486. characterMakers.push(() => makeCharacter(
  12487. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12488. {
  12489. front: {
  12490. height: math.unit(6, "feet"),
  12491. weight: math.unit(250, "lb"),
  12492. name: "Front",
  12493. image: {
  12494. source: "./media/characters/toto/front.svg",
  12495. extra: 527 / 479,
  12496. bottom: 0.05
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Micro",
  12503. height: math.unit(3, "feet")
  12504. },
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(10, "feet")
  12508. },
  12509. {
  12510. name: "Macro",
  12511. height: math.unit(150, "feet"),
  12512. default: true
  12513. },
  12514. {
  12515. name: "Megamacro",
  12516. height: math.unit(1200, "feet")
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "King", species: ["lion"], tags: ["anthro"] },
  12522. {
  12523. back: {
  12524. height: math.unit(6, "feet"),
  12525. weight: math.unit(150, "lb"),
  12526. name: "Back",
  12527. image: {
  12528. source: "./media/characters/king/back.svg"
  12529. }
  12530. },
  12531. },
  12532. [
  12533. {
  12534. name: "Micro",
  12535. height: math.unit(2, "inches")
  12536. },
  12537. {
  12538. name: "Normal",
  12539. height: math.unit(8, "feet")
  12540. },
  12541. {
  12542. name: "Macro",
  12543. height: math.unit(200, "feet"),
  12544. default: true
  12545. },
  12546. {
  12547. name: "Megamacro",
  12548. height: math.unit(50, "miles")
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12554. {
  12555. front: {
  12556. height: math.unit(11, "feet"),
  12557. weight: math.unit(1400, "lb"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/cordite/front.svg",
  12561. extra: 1919/1827,
  12562. bottom: 40/1959
  12563. }
  12564. },
  12565. side: {
  12566. height: math.unit(11, "feet"),
  12567. weight: math.unit(1400, "lb"),
  12568. name: "Side",
  12569. image: {
  12570. source: "./media/characters/cordite/side.svg",
  12571. extra: 1908/1793,
  12572. bottom: 38/1946
  12573. }
  12574. },
  12575. back: {
  12576. height: math.unit(11, "feet"),
  12577. weight: math.unit(1400, "lb"),
  12578. name: "Back",
  12579. image: {
  12580. source: "./media/characters/cordite/back.svg",
  12581. extra: 1938/1837,
  12582. bottom: 10/1948
  12583. }
  12584. },
  12585. feral: {
  12586. height: math.unit(2, "feet"),
  12587. weight: math.unit(90, "lb"),
  12588. name: "Feral",
  12589. image: {
  12590. source: "./media/characters/cordite/feral.svg",
  12591. extra: 1260 / 755,
  12592. bottom: 0.05
  12593. }
  12594. },
  12595. },
  12596. [
  12597. {
  12598. name: "Normal",
  12599. height: math.unit(11, "feet"),
  12600. default: true
  12601. },
  12602. ]
  12603. ))
  12604. characterMakers.push(() => makeCharacter(
  12605. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12606. {
  12607. front: {
  12608. height: math.unit(6, "feet"),
  12609. weight: math.unit(150, "lb"),
  12610. name: "Front",
  12611. image: {
  12612. source: "./media/characters/pianostrong/front.svg",
  12613. extra: 6577 / 6254,
  12614. bottom: 0.02
  12615. }
  12616. },
  12617. side: {
  12618. height: math.unit(6, "feet"),
  12619. weight: math.unit(150, "lb"),
  12620. name: "Side",
  12621. image: {
  12622. source: "./media/characters/pianostrong/side.svg",
  12623. extra: 6106 / 5730
  12624. }
  12625. },
  12626. back: {
  12627. height: math.unit(6, "feet"),
  12628. weight: math.unit(150, "lb"),
  12629. name: "Back",
  12630. image: {
  12631. source: "./media/characters/pianostrong/back.svg",
  12632. extra: 6085 / 5733,
  12633. bottom: 0.01
  12634. }
  12635. },
  12636. },
  12637. [
  12638. {
  12639. name: "Macro",
  12640. height: math.unit(100, "feet")
  12641. },
  12642. {
  12643. name: "Macro+",
  12644. height: math.unit(300, "feet"),
  12645. default: true
  12646. },
  12647. {
  12648. name: "Macro++",
  12649. height: math.unit(1000, "feet")
  12650. },
  12651. ]
  12652. ))
  12653. characterMakers.push(() => makeCharacter(
  12654. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12655. {
  12656. front: {
  12657. height: math.unit(6, "feet"),
  12658. weight: math.unit(150, "lb"),
  12659. name: "Front",
  12660. image: {
  12661. source: "./media/characters/kona/front.svg",
  12662. extra: 2960 / 2629,
  12663. bottom: 0.005
  12664. }
  12665. },
  12666. },
  12667. [
  12668. {
  12669. name: "Normal",
  12670. height: math.unit(11 + 8 / 12, "feet")
  12671. },
  12672. {
  12673. name: "Macro",
  12674. height: math.unit(850, "feet"),
  12675. default: true
  12676. },
  12677. {
  12678. name: "Macro+",
  12679. height: math.unit(1.5, "km"),
  12680. default: true
  12681. },
  12682. {
  12683. name: "Megamacro",
  12684. height: math.unit(80, "miles")
  12685. },
  12686. {
  12687. name: "Gigamacro",
  12688. height: math.unit(3500, "miles")
  12689. },
  12690. ]
  12691. ))
  12692. characterMakers.push(() => makeCharacter(
  12693. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12694. {
  12695. side: {
  12696. height: math.unit(1.9, "meters"),
  12697. weight: math.unit(326, "kg"),
  12698. name: "Side",
  12699. image: {
  12700. source: "./media/characters/levi/side.svg",
  12701. extra: 1704 / 1334,
  12702. bottom: 0.02
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Normal",
  12709. height: math.unit(1.9, "meters"),
  12710. default: true
  12711. },
  12712. {
  12713. name: "Macro",
  12714. height: math.unit(20, "meters")
  12715. },
  12716. {
  12717. name: "Macro+",
  12718. height: math.unit(200, "meters")
  12719. },
  12720. {
  12721. name: "Megamacro",
  12722. height: math.unit(2, "km")
  12723. },
  12724. {
  12725. name: "Megamacro+",
  12726. height: math.unit(20, "km")
  12727. },
  12728. {
  12729. name: "Gigamacro",
  12730. height: math.unit(2500, "km")
  12731. },
  12732. {
  12733. name: "Gigamacro+",
  12734. height: math.unit(120000, "km")
  12735. },
  12736. {
  12737. name: "Teramacro",
  12738. height: math.unit(7.77e6, "km")
  12739. },
  12740. ]
  12741. ))
  12742. characterMakers.push(() => makeCharacter(
  12743. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12744. {
  12745. front: {
  12746. height: math.unit(6 + 4/12, "feet"),
  12747. weight: math.unit(190, "lb"),
  12748. name: "Front",
  12749. image: {
  12750. source: "./media/characters/bmc/front.svg",
  12751. extra: 1626/1472,
  12752. bottom: 79/1705
  12753. }
  12754. },
  12755. back: {
  12756. height: math.unit(6 + 4/12, "feet"),
  12757. weight: math.unit(190, "lb"),
  12758. name: "Back",
  12759. image: {
  12760. source: "./media/characters/bmc/back.svg",
  12761. extra: 1640/1479,
  12762. bottom: 45/1685
  12763. }
  12764. },
  12765. frontArmor: {
  12766. height: math.unit(6 + 4/12, "feet"),
  12767. weight: math.unit(190, "lb"),
  12768. name: "Front-armor",
  12769. image: {
  12770. source: "./media/characters/bmc/front-armor.svg",
  12771. extra: 1538/1468,
  12772. bottom: 79/1617
  12773. }
  12774. },
  12775. },
  12776. [
  12777. {
  12778. name: "Human-sized",
  12779. height: math.unit(6 + 4 / 12, "feet")
  12780. },
  12781. {
  12782. name: "Interactive Size",
  12783. height: math.unit(25, "feet")
  12784. },
  12785. {
  12786. name: "Small",
  12787. height: math.unit(250, "feet")
  12788. },
  12789. {
  12790. name: "Normal",
  12791. height: math.unit(1250, "feet"),
  12792. default: true
  12793. },
  12794. {
  12795. name: "Good Day",
  12796. height: math.unit(88, "miles")
  12797. },
  12798. {
  12799. name: "Largest Measured Size",
  12800. height: math.unit(105.960, "galaxies")
  12801. },
  12802. ]
  12803. ))
  12804. characterMakers.push(() => makeCharacter(
  12805. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12806. {
  12807. front: {
  12808. height: math.unit(20, "feet"),
  12809. weight: math.unit(2016, "kg"),
  12810. name: "Front",
  12811. image: {
  12812. source: "./media/characters/sven-the-kaiju/front.svg",
  12813. extra: 1277/1250,
  12814. bottom: 35/1312
  12815. }
  12816. },
  12817. mouth: {
  12818. height: math.unit(1.85, "feet"),
  12819. name: "Mouth",
  12820. image: {
  12821. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Fairy",
  12828. height: math.unit(6, "inches")
  12829. },
  12830. {
  12831. name: "Normal",
  12832. height: math.unit(20, "feet"),
  12833. default: true
  12834. },
  12835. {
  12836. name: "Rampage",
  12837. height: math.unit(200, "feet")
  12838. },
  12839. {
  12840. name: "Archfey Forest Guardian",
  12841. height: math.unit(1, "mile")
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12847. {
  12848. front: {
  12849. height: math.unit(4, "meters"),
  12850. weight: math.unit(2, "tons"),
  12851. name: "Front",
  12852. image: {
  12853. source: "./media/characters/marik/front.svg",
  12854. extra: 1057 / 1003,
  12855. bottom: 0.08
  12856. }
  12857. },
  12858. },
  12859. [
  12860. {
  12861. name: "Normal",
  12862. height: math.unit(4, "meters"),
  12863. default: true
  12864. },
  12865. {
  12866. name: "Macro",
  12867. height: math.unit(20, "meters")
  12868. },
  12869. {
  12870. name: "Megamacro",
  12871. height: math.unit(50, "km")
  12872. },
  12873. {
  12874. name: "Gigamacro",
  12875. height: math.unit(100, "km")
  12876. },
  12877. {
  12878. name: "Alpha Macro",
  12879. height: math.unit(7.88e7, "yottameters")
  12880. },
  12881. ]
  12882. ))
  12883. characterMakers.push(() => makeCharacter(
  12884. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12885. {
  12886. front: {
  12887. height: math.unit(6, "feet"),
  12888. weight: math.unit(110, "lb"),
  12889. name: "Front",
  12890. image: {
  12891. source: "./media/characters/mel/front.svg",
  12892. extra: 736 / 617,
  12893. bottom: 0.017
  12894. }
  12895. },
  12896. },
  12897. [
  12898. {
  12899. name: "Pico",
  12900. height: math.unit(3, "pm")
  12901. },
  12902. {
  12903. name: "Nano",
  12904. height: math.unit(3, "nm")
  12905. },
  12906. {
  12907. name: "Micro",
  12908. height: math.unit(0.3, "mm"),
  12909. default: true
  12910. },
  12911. {
  12912. name: "Micro+",
  12913. height: math.unit(3, "mm")
  12914. },
  12915. {
  12916. name: "Normal",
  12917. height: math.unit(5 + 10.5 / 12, "feet")
  12918. },
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12923. {
  12924. kaiju: {
  12925. height: math.unit(1.75, "meters"),
  12926. weight: math.unit(55, "kg"),
  12927. name: "Kaiju",
  12928. image: {
  12929. source: "./media/characters/lykonous/kaiju.svg",
  12930. extra: 1055 / 946,
  12931. bottom: 0.135
  12932. }
  12933. },
  12934. },
  12935. [
  12936. {
  12937. name: "Normal",
  12938. height: math.unit(2.5, "meters"),
  12939. default: true
  12940. },
  12941. {
  12942. name: "Kaiju Dragon",
  12943. height: math.unit(60, "meters")
  12944. },
  12945. {
  12946. name: "Mega Kaiju",
  12947. height: math.unit(120, "km")
  12948. },
  12949. {
  12950. name: "Giga Kaiju",
  12951. height: math.unit(200, "megameters")
  12952. },
  12953. {
  12954. name: "Terra Kaiju",
  12955. height: math.unit(400, "gigameters")
  12956. },
  12957. {
  12958. name: "Kaiju Dragon God",
  12959. height: math.unit(13000, "exaparsecs")
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(6, "feet"),
  12968. weight: math.unit(150, "lb"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/blü/front.svg",
  12972. extra: 1883 / 1564,
  12973. bottom: 0.031
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Normal",
  12980. height: math.unit(13, "feet"),
  12981. default: true
  12982. },
  12983. {
  12984. name: "Big Boi",
  12985. height: math.unit(150, "meters")
  12986. },
  12987. {
  12988. name: "Mini Stomper",
  12989. height: math.unit(300, "meters")
  12990. },
  12991. {
  12992. name: "Macro",
  12993. height: math.unit(1000, "meters")
  12994. },
  12995. {
  12996. name: "Megamacro",
  12997. height: math.unit(11000, "meters")
  12998. },
  12999. {
  13000. name: "Gigamacro",
  13001. height: math.unit(11000, "km")
  13002. },
  13003. {
  13004. name: "Teramacro",
  13005. height: math.unit(420000, "km")
  13006. },
  13007. {
  13008. name: "Examacro",
  13009. height: math.unit(120, "parsecs")
  13010. },
  13011. {
  13012. name: "God Tho",
  13013. height: math.unit(98000000000, "parsecs")
  13014. },
  13015. ]
  13016. ))
  13017. characterMakers.push(() => makeCharacter(
  13018. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13019. {
  13020. taurFront: {
  13021. height: math.unit(6, "feet"),
  13022. weight: math.unit(200, "lb"),
  13023. name: "Taur (Front)",
  13024. image: {
  13025. source: "./media/characters/scales/taur-front.svg",
  13026. extra: 1,
  13027. bottom: 0.05
  13028. }
  13029. },
  13030. taurBack: {
  13031. height: math.unit(6, "feet"),
  13032. weight: math.unit(200, "lb"),
  13033. name: "Taur (Back)",
  13034. image: {
  13035. source: "./media/characters/scales/taur-back.svg",
  13036. extra: 1,
  13037. bottom: 0.08
  13038. }
  13039. },
  13040. anthro: {
  13041. height: math.unit(6 * 7 / 12, "feet"),
  13042. weight: math.unit(100, "lb"),
  13043. name: "Anthro",
  13044. image: {
  13045. source: "./media/characters/scales/anthro.svg",
  13046. extra: 1,
  13047. bottom: 0.06
  13048. }
  13049. },
  13050. },
  13051. [
  13052. {
  13053. name: "Normal",
  13054. height: math.unit(12, "feet"),
  13055. default: true
  13056. },
  13057. ]
  13058. ))
  13059. characterMakers.push(() => makeCharacter(
  13060. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13061. {
  13062. front: {
  13063. height: math.unit(6, "feet"),
  13064. weight: math.unit(150, "lb"),
  13065. name: "Front",
  13066. image: {
  13067. source: "./media/characters/koragos/front.svg",
  13068. extra: 841 / 794,
  13069. bottom: 0.035
  13070. }
  13071. },
  13072. back: {
  13073. height: math.unit(6, "feet"),
  13074. weight: math.unit(150, "lb"),
  13075. name: "Back",
  13076. image: {
  13077. source: "./media/characters/koragos/back.svg",
  13078. extra: 841 / 810,
  13079. bottom: 0.022
  13080. }
  13081. },
  13082. },
  13083. [
  13084. {
  13085. name: "Normal",
  13086. height: math.unit(6 + 11 / 12, "feet"),
  13087. default: true
  13088. },
  13089. {
  13090. name: "Macro",
  13091. height: math.unit(490, "feet")
  13092. },
  13093. {
  13094. name: "Megamacro",
  13095. height: math.unit(10, "miles")
  13096. },
  13097. {
  13098. name: "Gigamacro",
  13099. height: math.unit(50, "miles")
  13100. },
  13101. ]
  13102. ))
  13103. characterMakers.push(() => makeCharacter(
  13104. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13105. {
  13106. front: {
  13107. height: math.unit(6, "feet"),
  13108. weight: math.unit(250, "lb"),
  13109. name: "Front",
  13110. image: {
  13111. source: "./media/characters/xylrem/front.svg",
  13112. extra: 3323 / 3050,
  13113. bottom: 0.065
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Micro",
  13120. height: math.unit(4, "feet")
  13121. },
  13122. {
  13123. name: "Normal",
  13124. height: math.unit(16, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(2720, "feet")
  13130. },
  13131. {
  13132. name: "Megamacro",
  13133. height: math.unit(25000, "miles")
  13134. },
  13135. ]
  13136. ))
  13137. characterMakers.push(() => makeCharacter(
  13138. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13139. {
  13140. front: {
  13141. height: math.unit(8, "feet"),
  13142. weight: math.unit(250, "kg"),
  13143. name: "Front",
  13144. image: {
  13145. source: "./media/characters/ikideru/front.svg",
  13146. extra: 930 / 870,
  13147. bottom: 0.087
  13148. }
  13149. },
  13150. back: {
  13151. height: math.unit(8, "feet"),
  13152. weight: math.unit(250, "kg"),
  13153. name: "Back",
  13154. image: {
  13155. source: "./media/characters/ikideru/back.svg",
  13156. extra: 919 / 852,
  13157. bottom: 0.055
  13158. }
  13159. },
  13160. },
  13161. [
  13162. {
  13163. name: "Rare",
  13164. height: math.unit(8, "feet"),
  13165. default: true
  13166. },
  13167. {
  13168. name: "Playful Loom",
  13169. height: math.unit(80, "feet")
  13170. },
  13171. {
  13172. name: "City Leaner",
  13173. height: math.unit(230, "feet")
  13174. },
  13175. {
  13176. name: "Megamacro",
  13177. height: math.unit(2500, "feet")
  13178. },
  13179. {
  13180. name: "Gigamacro",
  13181. height: math.unit(26400, "feet")
  13182. },
  13183. {
  13184. name: "Tectonic Shifter",
  13185. height: math.unit(1.7, "megameters")
  13186. },
  13187. {
  13188. name: "Planet Carer",
  13189. height: math.unit(21, "megameters")
  13190. },
  13191. {
  13192. name: "God",
  13193. height: math.unit(11157.22, "parsecs")
  13194. },
  13195. ]
  13196. ))
  13197. characterMakers.push(() => makeCharacter(
  13198. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13199. {
  13200. front: {
  13201. height: math.unit(6, "feet"),
  13202. weight: math.unit(120, "lb"),
  13203. name: "Front",
  13204. image: {
  13205. source: "./media/characters/neo/front.svg"
  13206. }
  13207. },
  13208. },
  13209. [
  13210. {
  13211. name: "Micro",
  13212. height: math.unit(2, "inches"),
  13213. default: true
  13214. },
  13215. {
  13216. name: "Human Size",
  13217. height: math.unit(5 + 8 / 12, "feet")
  13218. },
  13219. ]
  13220. ))
  13221. characterMakers.push(() => makeCharacter(
  13222. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13223. {
  13224. front: {
  13225. height: math.unit(13 + 10 / 12, "feet"),
  13226. weight: math.unit(5320, "lb"),
  13227. name: "Front",
  13228. image: {
  13229. source: "./media/characters/chauncey-chantz/front.svg",
  13230. extra: 1587 / 1435,
  13231. bottom: 0.02
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Normal",
  13238. height: math.unit(13 + 10 / 12, "feet"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Macro",
  13243. height: math.unit(45, "feet")
  13244. },
  13245. {
  13246. name: "Megamacro",
  13247. height: math.unit(250, "miles")
  13248. },
  13249. {
  13250. name: "Planetary",
  13251. height: math.unit(10000, "miles")
  13252. },
  13253. {
  13254. name: "Galactic",
  13255. height: math.unit(40000, "parsecs")
  13256. },
  13257. {
  13258. name: "Universal",
  13259. height: math.unit(1, "yottameter")
  13260. },
  13261. ]
  13262. ))
  13263. characterMakers.push(() => makeCharacter(
  13264. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13265. {
  13266. front: {
  13267. height: math.unit(6, "feet"),
  13268. weight: math.unit(150, "lb"),
  13269. name: "Front",
  13270. image: {
  13271. source: "./media/characters/epifox/front.svg",
  13272. extra: 1,
  13273. bottom: 0.075
  13274. }
  13275. },
  13276. },
  13277. [
  13278. {
  13279. name: "Micro",
  13280. height: math.unit(6, "inches")
  13281. },
  13282. {
  13283. name: "Normal",
  13284. height: math.unit(12, "feet"),
  13285. default: true
  13286. },
  13287. {
  13288. name: "Macro",
  13289. height: math.unit(3810, "feet")
  13290. },
  13291. {
  13292. name: "Megamacro",
  13293. height: math.unit(500, "miles")
  13294. },
  13295. ]
  13296. ))
  13297. characterMakers.push(() => makeCharacter(
  13298. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13299. {
  13300. front: {
  13301. height: math.unit(1.8796, "m"),
  13302. weight: math.unit(230, "lb"),
  13303. name: "Front",
  13304. image: {
  13305. source: "./media/characters/colin-t/front.svg",
  13306. extra: 1272 / 1193,
  13307. bottom: 0.07
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Micro",
  13314. height: math.unit(0.571, "meters")
  13315. },
  13316. {
  13317. name: "Normal",
  13318. height: math.unit(1.8796, "meters"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Tall",
  13323. height: math.unit(4, "meters")
  13324. },
  13325. {
  13326. name: "Macro",
  13327. height: math.unit(67.241, "meters")
  13328. },
  13329. {
  13330. name: "Megamacro",
  13331. height: math.unit(371.856, "meters")
  13332. },
  13333. {
  13334. name: "Planetary",
  13335. height: math.unit(12631.5689, "km")
  13336. },
  13337. ]
  13338. ))
  13339. characterMakers.push(() => makeCharacter(
  13340. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13341. {
  13342. front: {
  13343. height: math.unit(1.85, "meters"),
  13344. weight: math.unit(80, "kg"),
  13345. name: "Front",
  13346. image: {
  13347. source: "./media/characters/matvei/front.svg",
  13348. extra: 456/447,
  13349. bottom: 8/464
  13350. }
  13351. },
  13352. back: {
  13353. height: math.unit(1.85, "meters"),
  13354. weight: math.unit(80, "kg"),
  13355. name: "Back",
  13356. image: {
  13357. source: "./media/characters/matvei/back.svg",
  13358. extra: 434/427,
  13359. bottom: 11/445
  13360. }
  13361. },
  13362. },
  13363. [
  13364. {
  13365. name: "Normal",
  13366. height: math.unit(1.85, "meters"),
  13367. default: true
  13368. },
  13369. ]
  13370. ))
  13371. characterMakers.push(() => makeCharacter(
  13372. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13373. {
  13374. front: {
  13375. height: math.unit(5 + 9 / 12, "feet"),
  13376. weight: math.unit(70, "lb"),
  13377. name: "Front",
  13378. image: {
  13379. source: "./media/characters/quincy/front.svg",
  13380. extra: 3041 / 2751
  13381. }
  13382. },
  13383. back: {
  13384. height: math.unit(5 + 9 / 12, "feet"),
  13385. weight: math.unit(70, "lb"),
  13386. name: "Back",
  13387. image: {
  13388. source: "./media/characters/quincy/back.svg",
  13389. extra: 3041 / 2751
  13390. }
  13391. },
  13392. flying: {
  13393. height: math.unit(5 + 4 / 12, "feet"),
  13394. weight: math.unit(70, "lb"),
  13395. name: "Flying",
  13396. image: {
  13397. source: "./media/characters/quincy/flying.svg",
  13398. extra: 1044 / 930
  13399. }
  13400. },
  13401. },
  13402. [
  13403. {
  13404. name: "Micro",
  13405. height: math.unit(3, "cm")
  13406. },
  13407. {
  13408. name: "Normal",
  13409. height: math.unit(5 + 9 / 12, "feet")
  13410. },
  13411. {
  13412. name: "Macro",
  13413. height: math.unit(200, "meters"),
  13414. default: true
  13415. },
  13416. {
  13417. name: "Megamacro",
  13418. height: math.unit(1000, "meters")
  13419. },
  13420. ]
  13421. ))
  13422. characterMakers.push(() => makeCharacter(
  13423. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13424. {
  13425. front: {
  13426. height: math.unit(3 + 11/12, "feet"),
  13427. weight: math.unit(50, "lb"),
  13428. name: "Front",
  13429. image: {
  13430. source: "./media/characters/vanrel/front.svg",
  13431. extra: 1104/949,
  13432. bottom: 52/1156
  13433. }
  13434. },
  13435. back: {
  13436. height: math.unit(3 + 11/12, "feet"),
  13437. weight: math.unit(50, "lb"),
  13438. name: "Back",
  13439. image: {
  13440. source: "./media/characters/vanrel/back.svg",
  13441. extra: 1119/976,
  13442. bottom: 37/1156
  13443. }
  13444. },
  13445. tome: {
  13446. height: math.unit(1.35, "feet"),
  13447. weight: math.unit(10, "lb"),
  13448. name: "Vanrel's Tome",
  13449. rename: true,
  13450. image: {
  13451. source: "./media/characters/vanrel/tome.svg"
  13452. }
  13453. },
  13454. beans: {
  13455. height: math.unit(0.89, "feet"),
  13456. name: "Beans",
  13457. image: {
  13458. source: "./media/characters/vanrel/beans.svg"
  13459. }
  13460. },
  13461. },
  13462. [
  13463. {
  13464. name: "Normal",
  13465. height: math.unit(3 + 11/12, "feet"),
  13466. default: true
  13467. },
  13468. ]
  13469. ))
  13470. characterMakers.push(() => makeCharacter(
  13471. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13472. {
  13473. front: {
  13474. height: math.unit(7 + 5 / 12, "feet"),
  13475. name: "Front",
  13476. image: {
  13477. source: "./media/characters/kuiper-vanrel/front.svg",
  13478. extra: 1219/1169,
  13479. bottom: 69/1288
  13480. }
  13481. },
  13482. back: {
  13483. height: math.unit(7 + 5 / 12, "feet"),
  13484. name: "Back",
  13485. image: {
  13486. source: "./media/characters/kuiper-vanrel/back.svg",
  13487. extra: 1236/1193,
  13488. bottom: 27/1263
  13489. }
  13490. },
  13491. foot: {
  13492. height: math.unit(0.55, "meters"),
  13493. name: "Foot",
  13494. image: {
  13495. source: "./media/characters/kuiper-vanrel/foot.svg",
  13496. }
  13497. },
  13498. battle: {
  13499. height: math.unit(6.824, "feet"),
  13500. name: "Battle",
  13501. image: {
  13502. source: "./media/characters/kuiper-vanrel/battle.svg",
  13503. extra: 1466 / 1327,
  13504. bottom: 29 / 1492.5
  13505. }
  13506. },
  13507. meerkui: {
  13508. height: math.unit(18, "inches"),
  13509. name: "Meerkui",
  13510. image: {
  13511. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13512. extra: 1354/1289,
  13513. bottom: 69/1423
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Normal",
  13520. height: math.unit(7 + 5 / 12, "feet"),
  13521. default: true
  13522. },
  13523. ]
  13524. ))
  13525. characterMakers.push(() => makeCharacter(
  13526. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13527. {
  13528. front: {
  13529. height: math.unit(8 + 5 / 12, "feet"),
  13530. name: "Front",
  13531. image: {
  13532. source: "./media/characters/keset-vanrel/front.svg",
  13533. extra: 1231/1148,
  13534. bottom: 82/1313
  13535. }
  13536. },
  13537. back: {
  13538. height: math.unit(8 + 5 / 12, "feet"),
  13539. name: "Back",
  13540. image: {
  13541. source: "./media/characters/keset-vanrel/back.svg",
  13542. extra: 1240/1174,
  13543. bottom: 33/1273
  13544. }
  13545. },
  13546. hand: {
  13547. height: math.unit(0.6, "meters"),
  13548. name: "Hand",
  13549. image: {
  13550. source: "./media/characters/keset-vanrel/hand.svg"
  13551. }
  13552. },
  13553. foot: {
  13554. height: math.unit(0.94978, "meters"),
  13555. name: "Foot",
  13556. image: {
  13557. source: "./media/characters/keset-vanrel/foot.svg"
  13558. }
  13559. },
  13560. battle: {
  13561. height: math.unit(7.408, "feet"),
  13562. name: "Battle",
  13563. image: {
  13564. source: "./media/characters/keset-vanrel/battle.svg",
  13565. extra: 1890 / 1386,
  13566. bottom: 73.28 / 1970
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Normal",
  13573. height: math.unit(8 + 5 / 12, "feet"),
  13574. default: true
  13575. },
  13576. ]
  13577. ))
  13578. characterMakers.push(() => makeCharacter(
  13579. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13580. {
  13581. front: {
  13582. height: math.unit(6, "feet"),
  13583. weight: math.unit(150, "lb"),
  13584. name: "Front",
  13585. image: {
  13586. source: "./media/characters/neos/front.svg",
  13587. extra: 1696 / 992,
  13588. bottom: 0.14
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Normal",
  13595. height: math.unit(54, "cm"),
  13596. default: true
  13597. },
  13598. {
  13599. name: "Macro",
  13600. height: math.unit(100, "m")
  13601. },
  13602. {
  13603. name: "Megamacro",
  13604. height: math.unit(10, "km")
  13605. },
  13606. {
  13607. name: "Megamacro+",
  13608. height: math.unit(100, "km")
  13609. },
  13610. {
  13611. name: "Gigamacro",
  13612. height: math.unit(100, "Mm")
  13613. },
  13614. {
  13615. name: "Teramacro",
  13616. height: math.unit(100, "Gm")
  13617. },
  13618. {
  13619. name: "Examacro",
  13620. height: math.unit(100, "Em")
  13621. },
  13622. {
  13623. name: "Godly",
  13624. height: math.unit(10000, "Ym")
  13625. },
  13626. {
  13627. name: "Beyond Godly",
  13628. height: math.unit(25, "multiverses")
  13629. },
  13630. ]
  13631. ))
  13632. characterMakers.push(() => makeCharacter(
  13633. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13634. {
  13635. feminine: {
  13636. height: math.unit(5, "feet"),
  13637. weight: math.unit(100, "lb"),
  13638. name: "Feminine",
  13639. image: {
  13640. source: "./media/characters/sammy-mouse/feminine.svg",
  13641. extra: 2526 / 2425,
  13642. bottom: 0.123
  13643. }
  13644. },
  13645. masculine: {
  13646. height: math.unit(5, "feet"),
  13647. weight: math.unit(100, "lb"),
  13648. name: "Masculine",
  13649. image: {
  13650. source: "./media/characters/sammy-mouse/masculine.svg",
  13651. extra: 2526 / 2425,
  13652. bottom: 0.123
  13653. }
  13654. },
  13655. },
  13656. [
  13657. {
  13658. name: "Micro",
  13659. height: math.unit(5, "inches")
  13660. },
  13661. {
  13662. name: "Normal",
  13663. height: math.unit(5, "feet"),
  13664. default: true
  13665. },
  13666. {
  13667. name: "Macro",
  13668. height: math.unit(60, "feet")
  13669. },
  13670. ]
  13671. ))
  13672. characterMakers.push(() => makeCharacter(
  13673. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13674. {
  13675. front: {
  13676. height: math.unit(4, "feet"),
  13677. weight: math.unit(50, "lb"),
  13678. name: "Front",
  13679. image: {
  13680. source: "./media/characters/kole/front.svg",
  13681. extra: 1423 / 1303,
  13682. bottom: 0.025
  13683. }
  13684. },
  13685. back: {
  13686. height: math.unit(4, "feet"),
  13687. weight: math.unit(50, "lb"),
  13688. name: "Back",
  13689. image: {
  13690. source: "./media/characters/kole/back.svg",
  13691. extra: 1426 / 1280,
  13692. bottom: 0.02
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Normal",
  13699. height: math.unit(4, "feet"),
  13700. default: true
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13706. {
  13707. front: {
  13708. height: math.unit(2.5, "feet"),
  13709. weight: math.unit(32, "lb"),
  13710. name: "Front",
  13711. image: {
  13712. source: "./media/characters/rufran/front.svg",
  13713. extra: 1313/885,
  13714. bottom: 94/1407
  13715. }
  13716. },
  13717. side: {
  13718. height: math.unit(2.5, "feet"),
  13719. weight: math.unit(32, "lb"),
  13720. name: "Side",
  13721. image: {
  13722. source: "./media/characters/rufran/side.svg",
  13723. extra: 1109/852,
  13724. bottom: 118/1227
  13725. }
  13726. },
  13727. back: {
  13728. height: math.unit(2.5, "feet"),
  13729. weight: math.unit(32, "lb"),
  13730. name: "Back",
  13731. image: {
  13732. source: "./media/characters/rufran/back.svg",
  13733. extra: 1280/878,
  13734. bottom: 131/1411
  13735. }
  13736. },
  13737. mouth: {
  13738. height: math.unit(1.13, "feet"),
  13739. name: "Mouth",
  13740. image: {
  13741. source: "./media/characters/rufran/mouth.svg"
  13742. }
  13743. },
  13744. foot: {
  13745. height: math.unit(1.33, "feet"),
  13746. name: "Foot",
  13747. image: {
  13748. source: "./media/characters/rufran/foot.svg"
  13749. }
  13750. },
  13751. koboldFront: {
  13752. height: math.unit(2 + 6 / 12, "feet"),
  13753. weight: math.unit(20, "lb"),
  13754. name: "Front (Kobold)",
  13755. image: {
  13756. source: "./media/characters/rufran/kobold-front.svg",
  13757. extra: 2041 / 1839,
  13758. bottom: 0.055
  13759. }
  13760. },
  13761. koboldBack: {
  13762. height: math.unit(2 + 6 / 12, "feet"),
  13763. weight: math.unit(20, "lb"),
  13764. name: "Back (Kobold)",
  13765. image: {
  13766. source: "./media/characters/rufran/kobold-back.svg",
  13767. extra: 2054 / 1839,
  13768. bottom: 0.01
  13769. }
  13770. },
  13771. koboldHand: {
  13772. height: math.unit(0.2166, "meters"),
  13773. name: "Hand (Kobold)",
  13774. image: {
  13775. source: "./media/characters/rufran/kobold-hand.svg"
  13776. }
  13777. },
  13778. koboldFoot: {
  13779. height: math.unit(0.185, "meters"),
  13780. name: "Foot (Kobold)",
  13781. image: {
  13782. source: "./media/characters/rufran/kobold-foot.svg"
  13783. }
  13784. },
  13785. },
  13786. [
  13787. {
  13788. name: "Micro",
  13789. height: math.unit(1, "inch")
  13790. },
  13791. {
  13792. name: "Normal",
  13793. height: math.unit(2 + 6 / 12, "feet"),
  13794. default: true
  13795. },
  13796. {
  13797. name: "Big",
  13798. height: math.unit(60, "feet")
  13799. },
  13800. {
  13801. name: "Macro",
  13802. height: math.unit(325, "feet")
  13803. },
  13804. ]
  13805. ))
  13806. characterMakers.push(() => makeCharacter(
  13807. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13808. {
  13809. front: {
  13810. height: math.unit(0.3, "meters"),
  13811. weight: math.unit(3.5, "kg"),
  13812. name: "Front",
  13813. image: {
  13814. source: "./media/characters/chip/front.svg",
  13815. extra: 748 / 674
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Micro",
  13822. height: math.unit(1, "inch"),
  13823. default: true
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13829. {
  13830. side: {
  13831. height: math.unit(2.3, "meters"),
  13832. weight: math.unit(3500, "lb"),
  13833. name: "Side",
  13834. image: {
  13835. source: "./media/characters/torvid/side.svg",
  13836. extra: 1972 / 722,
  13837. bottom: 0.035
  13838. }
  13839. },
  13840. },
  13841. [
  13842. {
  13843. name: "Normal",
  13844. height: math.unit(2.3, "meters"),
  13845. default: true
  13846. },
  13847. ]
  13848. ))
  13849. characterMakers.push(() => makeCharacter(
  13850. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13851. {
  13852. front: {
  13853. height: math.unit(2, "meters"),
  13854. weight: math.unit(150.5, "kg"),
  13855. name: "Front",
  13856. image: {
  13857. source: "./media/characters/susan/front.svg",
  13858. extra: 693 / 635,
  13859. bottom: 0.05
  13860. }
  13861. },
  13862. },
  13863. [
  13864. {
  13865. name: "Megamacro",
  13866. height: math.unit(505, "miles"),
  13867. default: true
  13868. },
  13869. ]
  13870. ))
  13871. characterMakers.push(() => makeCharacter(
  13872. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13873. {
  13874. front: {
  13875. height: math.unit(6, "feet"),
  13876. weight: math.unit(150, "lb"),
  13877. name: "Front",
  13878. image: {
  13879. source: "./media/characters/raindrops/front.svg",
  13880. extra: 2655 / 2461,
  13881. bottom: 49 / 2705
  13882. }
  13883. },
  13884. back: {
  13885. height: math.unit(6, "feet"),
  13886. weight: math.unit(150, "lb"),
  13887. name: "Back",
  13888. image: {
  13889. source: "./media/characters/raindrops/back.svg",
  13890. extra: 2574 / 2400,
  13891. bottom: 65 / 2634
  13892. }
  13893. },
  13894. },
  13895. [
  13896. {
  13897. name: "Micro",
  13898. height: math.unit(6, "inches")
  13899. },
  13900. {
  13901. name: "Normal",
  13902. height: math.unit(6 + 2 / 12, "feet")
  13903. },
  13904. {
  13905. name: "Macro",
  13906. height: math.unit(131, "feet"),
  13907. default: true
  13908. },
  13909. {
  13910. name: "Megamacro",
  13911. height: math.unit(15, "miles")
  13912. },
  13913. {
  13914. name: "Gigamacro",
  13915. height: math.unit(4000, "miles")
  13916. },
  13917. {
  13918. name: "Teramacro",
  13919. height: math.unit(315000, "miles")
  13920. },
  13921. ]
  13922. ))
  13923. characterMakers.push(() => makeCharacter(
  13924. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13925. {
  13926. front: {
  13927. height: math.unit(2.794, "meters"),
  13928. weight: math.unit(325, "kg"),
  13929. name: "Front",
  13930. image: {
  13931. source: "./media/characters/tezwa/front.svg",
  13932. extra: 2083 / 1906,
  13933. bottom: 0.031
  13934. }
  13935. },
  13936. foot: {
  13937. height: math.unit(0.687, "meters"),
  13938. name: "Foot",
  13939. image: {
  13940. source: "./media/characters/tezwa/foot.svg"
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Normal",
  13947. height: math.unit(9 + 2 / 12, "feet"),
  13948. default: true
  13949. },
  13950. ]
  13951. ))
  13952. characterMakers.push(() => makeCharacter(
  13953. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13954. {
  13955. front: {
  13956. height: math.unit(58, "feet"),
  13957. weight: math.unit(89000, "lb"),
  13958. name: "Front",
  13959. image: {
  13960. source: "./media/characters/typhus/front.svg",
  13961. extra: 816 / 800,
  13962. bottom: 0.065
  13963. }
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Macro",
  13969. height: math.unit(58, "feet"),
  13970. default: true
  13971. },
  13972. ]
  13973. ))
  13974. characterMakers.push(() => makeCharacter(
  13975. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13976. {
  13977. front: {
  13978. height: math.unit(12, "feet"),
  13979. weight: math.unit(6, "tonnes"),
  13980. name: "Front",
  13981. image: {
  13982. source: "./media/characters/lyra-von-wulf/front.svg",
  13983. extra: 1,
  13984. bottom: 0.10
  13985. }
  13986. },
  13987. frontMecha: {
  13988. height: math.unit(12, "feet"),
  13989. weight: math.unit(12, "tonnes"),
  13990. name: "Front (Mecha)",
  13991. image: {
  13992. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13993. extra: 1,
  13994. bottom: 0.042
  13995. }
  13996. },
  13997. maw: {
  13998. height: math.unit(2.2, "feet"),
  13999. name: "Maw",
  14000. image: {
  14001. source: "./media/characters/lyra-von-wulf/maw.svg"
  14002. }
  14003. },
  14004. },
  14005. [
  14006. {
  14007. name: "Normal",
  14008. height: math.unit(12, "feet"),
  14009. default: true
  14010. },
  14011. {
  14012. name: "Classic",
  14013. height: math.unit(50, "feet")
  14014. },
  14015. {
  14016. name: "Macro",
  14017. height: math.unit(500, "feet")
  14018. },
  14019. {
  14020. name: "Megamacro",
  14021. height: math.unit(1, "mile")
  14022. },
  14023. {
  14024. name: "Gigamacro",
  14025. height: math.unit(400, "miles")
  14026. },
  14027. {
  14028. name: "Teramacro",
  14029. height: math.unit(22000, "miles")
  14030. },
  14031. {
  14032. name: "Solarmacro",
  14033. height: math.unit(8600000, "miles")
  14034. },
  14035. {
  14036. name: "Galactic",
  14037. height: math.unit(1057000, "lightyears")
  14038. },
  14039. ]
  14040. ))
  14041. characterMakers.push(() => makeCharacter(
  14042. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14043. {
  14044. front: {
  14045. height: math.unit(6 + 10 / 12, "feet"),
  14046. weight: math.unit(150, "lb"),
  14047. name: "Front",
  14048. image: {
  14049. source: "./media/characters/dixon/front.svg",
  14050. extra: 3361 / 3209,
  14051. bottom: 0.01
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Normal",
  14058. height: math.unit(6 + 10 / 12, "feet"),
  14059. default: true
  14060. },
  14061. {
  14062. name: "Big",
  14063. height: math.unit(12, "meters")
  14064. },
  14065. {
  14066. name: "Macro",
  14067. height: math.unit(500, "meters")
  14068. },
  14069. {
  14070. name: "Megamacro",
  14071. height: math.unit(2, "km")
  14072. },
  14073. ]
  14074. ))
  14075. characterMakers.push(() => makeCharacter(
  14076. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14077. {
  14078. front: {
  14079. height: math.unit(185, "cm"),
  14080. weight: math.unit(68, "kg"),
  14081. name: "Front",
  14082. image: {
  14083. source: "./media/characters/kauko/front.svg",
  14084. extra: 1455 / 1421,
  14085. bottom: 0.03
  14086. }
  14087. },
  14088. back: {
  14089. height: math.unit(185, "cm"),
  14090. weight: math.unit(68, "kg"),
  14091. name: "Back",
  14092. image: {
  14093. source: "./media/characters/kauko/back.svg",
  14094. extra: 1455 / 1421,
  14095. bottom: 0.004
  14096. }
  14097. },
  14098. },
  14099. [
  14100. {
  14101. name: "Normal",
  14102. height: math.unit(185, "cm"),
  14103. default: true
  14104. },
  14105. ]
  14106. ))
  14107. characterMakers.push(() => makeCharacter(
  14108. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14109. {
  14110. frontSfw: {
  14111. height: math.unit(5, "meters"),
  14112. weight: math.unit(4250, "lb"),
  14113. name: "Front",
  14114. image: {
  14115. source: "./media/characters/varg/front-sfw.svg",
  14116. extra: 1103/1010,
  14117. bottom: 50/1153
  14118. },
  14119. form: "anthro",
  14120. default: true
  14121. },
  14122. backSfw: {
  14123. height: math.unit(5, "meters"),
  14124. weight: math.unit(4250, "lb"),
  14125. name: "Back",
  14126. image: {
  14127. source: "./media/characters/varg/back-sfw.svg",
  14128. extra: 1038/1022,
  14129. bottom: 36/1074
  14130. },
  14131. form: "anthro"
  14132. },
  14133. frontNsfw: {
  14134. height: math.unit(5, "meters"),
  14135. weight: math.unit(4250, "lb"),
  14136. name: "Front (NSFW)",
  14137. image: {
  14138. source: "./media/characters/varg/front-nsfw.svg",
  14139. extra: 1103/1010,
  14140. bottom: 50/1153
  14141. },
  14142. form: "anthro"
  14143. },
  14144. sheath: {
  14145. height: math.unit(3.8, "feet"),
  14146. weight: math.unit(90, "kilograms"),
  14147. name: "Sheath",
  14148. image: {
  14149. source: "./media/characters/varg/sheath.svg"
  14150. },
  14151. form: "anthro"
  14152. },
  14153. dick: {
  14154. height: math.unit(4.6, "feet"),
  14155. weight: math.unit(451, "kilograms"),
  14156. name: "Dick",
  14157. image: {
  14158. source: "./media/characters/varg/dick.svg"
  14159. },
  14160. form: "anthro"
  14161. },
  14162. feralSfw: {
  14163. height: math.unit(5, "meters"),
  14164. weight: math.unit(100000, "lb"),
  14165. name: "Side",
  14166. image: {
  14167. source: "./media/characters/varg/feral-sfw.svg",
  14168. extra: 1065/511,
  14169. bottom: 211/1276
  14170. },
  14171. form: "feral",
  14172. default: true
  14173. },
  14174. feralNsfw: {
  14175. height: math.unit(5, "meters"),
  14176. weight: math.unit(100000, "lb"),
  14177. name: "Side (NSFW)",
  14178. image: {
  14179. source: "./media/characters/varg/feral-nsfw.svg",
  14180. extra: 1065/511,
  14181. bottom: 211/1276
  14182. },
  14183. form: "feral",
  14184. },
  14185. feralSheath: {
  14186. height: math.unit(9.8, "feet"),
  14187. weight: math.unit(2000, "kilograms"),
  14188. name: "Sheath",
  14189. image: {
  14190. source: "./media/characters/varg/sheath.svg"
  14191. },
  14192. form: "feral"
  14193. },
  14194. feralDick: {
  14195. height: math.unit(13.11, "feet"),
  14196. weight: math.unit(10440, "kilograms"),
  14197. name: "Dick",
  14198. image: {
  14199. source: "./media/characters/varg/dick.svg"
  14200. },
  14201. form: "feral"
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Normal",
  14207. height: math.unit(5, "meters"),
  14208. form: "anthro"
  14209. },
  14210. {
  14211. name: "Macro",
  14212. height: math.unit(200, "meters"),
  14213. form: "anthro"
  14214. },
  14215. {
  14216. name: "Megamacro",
  14217. height: math.unit(20, "kilometers"),
  14218. form: "anthro"
  14219. },
  14220. {
  14221. name: "True Size",
  14222. height: math.unit(211, "km"),
  14223. form: "anthro",
  14224. default: true
  14225. },
  14226. {
  14227. name: "Gigamacro",
  14228. height: math.unit(1000, "km"),
  14229. form: "anthro"
  14230. },
  14231. {
  14232. name: "Gigamacro+",
  14233. height: math.unit(8000, "km"),
  14234. form: "anthro"
  14235. },
  14236. {
  14237. name: "Teramacro",
  14238. height: math.unit(1000000, "km"),
  14239. form: "anthro"
  14240. },
  14241. {
  14242. name: "Normal",
  14243. height: math.unit(5, "meters"),
  14244. form: "feral"
  14245. },
  14246. {
  14247. name: "Macro",
  14248. height: math.unit(200, "meters"),
  14249. form: "feral"
  14250. },
  14251. {
  14252. name: "Megamacro",
  14253. height: math.unit(20, "kilometers"),
  14254. form: "feral"
  14255. },
  14256. {
  14257. name: "True Size",
  14258. height: math.unit(211, "km"),
  14259. form: "feral",
  14260. default: true
  14261. },
  14262. {
  14263. name: "Gigamacro",
  14264. height: math.unit(1000, "km"),
  14265. form: "feral"
  14266. },
  14267. {
  14268. name: "Gigamacro+",
  14269. height: math.unit(8000, "km"),
  14270. form: "feral"
  14271. },
  14272. {
  14273. name: "Teramacro",
  14274. height: math.unit(1000000, "km"),
  14275. form: "feral"
  14276. },
  14277. ],
  14278. {
  14279. "anthro": {
  14280. name: "Anthro",
  14281. default: true
  14282. },
  14283. "feral": {
  14284. name: "Feral",
  14285. },
  14286. }
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14290. {
  14291. front: {
  14292. height: math.unit(7 + 7 / 12, "feet"),
  14293. weight: math.unit(267, "lb"),
  14294. name: "Front",
  14295. image: {
  14296. source: "./media/characters/dayza/front.svg",
  14297. extra: 1262 / 1200,
  14298. bottom: 0.035
  14299. }
  14300. },
  14301. side: {
  14302. height: math.unit(7 + 7 / 12, "feet"),
  14303. weight: math.unit(267, "lb"),
  14304. name: "Side",
  14305. image: {
  14306. source: "./media/characters/dayza/side.svg",
  14307. extra: 1295 / 1245,
  14308. bottom: 0.05
  14309. }
  14310. },
  14311. back: {
  14312. height: math.unit(7 + 7 / 12, "feet"),
  14313. weight: math.unit(267, "lb"),
  14314. name: "Back",
  14315. image: {
  14316. source: "./media/characters/dayza/back.svg",
  14317. extra: 1241 / 1170
  14318. }
  14319. },
  14320. },
  14321. [
  14322. {
  14323. name: "Normal",
  14324. height: math.unit(7 + 7 / 12, "feet"),
  14325. default: true
  14326. },
  14327. {
  14328. name: "Macro",
  14329. height: math.unit(155, "feet")
  14330. },
  14331. ]
  14332. ))
  14333. characterMakers.push(() => makeCharacter(
  14334. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14335. {
  14336. front: {
  14337. height: math.unit(6 + 5 / 12, "feet"),
  14338. weight: math.unit(160, "lb"),
  14339. name: "Front",
  14340. image: {
  14341. source: "./media/characters/xanthos/front.svg",
  14342. extra: 1,
  14343. bottom: 0.04
  14344. }
  14345. },
  14346. back: {
  14347. height: math.unit(6 + 5 / 12, "feet"),
  14348. weight: math.unit(160, "lb"),
  14349. name: "Back",
  14350. image: {
  14351. source: "./media/characters/xanthos/back.svg",
  14352. extra: 1,
  14353. bottom: 0.03
  14354. }
  14355. },
  14356. hand: {
  14357. height: math.unit(0.928, "feet"),
  14358. name: "Hand",
  14359. image: {
  14360. source: "./media/characters/xanthos/hand.svg"
  14361. }
  14362. },
  14363. foot: {
  14364. height: math.unit(1.286, "feet"),
  14365. name: "Foot",
  14366. image: {
  14367. source: "./media/characters/xanthos/foot.svg"
  14368. }
  14369. },
  14370. },
  14371. [
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(6 + 5 / 12, "feet"),
  14375. default: true
  14376. },
  14377. {
  14378. name: "Normal+",
  14379. height: math.unit(6, "meters")
  14380. },
  14381. {
  14382. name: "Macro",
  14383. height: math.unit(40, "feet")
  14384. },
  14385. {
  14386. name: "Macro+",
  14387. height: math.unit(200, "meters")
  14388. },
  14389. {
  14390. name: "Megamacro",
  14391. height: math.unit(20, "km")
  14392. },
  14393. {
  14394. name: "Megamacro+",
  14395. height: math.unit(100, "km")
  14396. },
  14397. {
  14398. name: "Gigamacro",
  14399. height: math.unit(200, "megameters")
  14400. },
  14401. {
  14402. name: "Gigamacro+",
  14403. height: math.unit(1.5, "gigameters")
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14409. {
  14410. front: {
  14411. height: math.unit(6 + 3 / 12, "feet"),
  14412. weight: math.unit(215, "lb"),
  14413. name: "Front",
  14414. image: {
  14415. source: "./media/characters/grynn/front.svg",
  14416. extra: 4627 / 4209,
  14417. bottom: 0.047
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Micro",
  14424. height: math.unit(6, "inches")
  14425. },
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(6 + 3 / 12, "feet"),
  14429. default: true
  14430. },
  14431. {
  14432. name: "Big",
  14433. height: math.unit(104, "feet")
  14434. },
  14435. {
  14436. name: "Macro",
  14437. height: math.unit(944, "feet")
  14438. },
  14439. {
  14440. name: "Macro+",
  14441. height: math.unit(9480, "feet")
  14442. },
  14443. {
  14444. name: "Megamacro",
  14445. height: math.unit(78752, "feet")
  14446. },
  14447. {
  14448. name: "Megamacro+",
  14449. height: math.unit(630128, "feet")
  14450. },
  14451. {
  14452. name: "Megamacro++",
  14453. height: math.unit(3150695, "feet")
  14454. },
  14455. ]
  14456. ))
  14457. characterMakers.push(() => makeCharacter(
  14458. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14459. {
  14460. front: {
  14461. height: math.unit(7 + 5 / 12, "feet"),
  14462. weight: math.unit(450, "lb"),
  14463. name: "Front",
  14464. image: {
  14465. source: "./media/characters/mocha-aura/front.svg",
  14466. extra: 1907 / 1817,
  14467. bottom: 0.04
  14468. }
  14469. },
  14470. back: {
  14471. height: math.unit(7 + 5 / 12, "feet"),
  14472. weight: math.unit(450, "lb"),
  14473. name: "Back",
  14474. image: {
  14475. source: "./media/characters/mocha-aura/back.svg",
  14476. extra: 1900 / 1825,
  14477. bottom: 0.045
  14478. }
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Nano",
  14484. height: math.unit(1, "nm")
  14485. },
  14486. {
  14487. name: "Megamicro",
  14488. height: math.unit(1, "mm")
  14489. },
  14490. {
  14491. name: "Micro",
  14492. height: math.unit(3, "inches")
  14493. },
  14494. {
  14495. name: "Normal",
  14496. height: math.unit(7 + 5 / 12, "feet"),
  14497. default: true
  14498. },
  14499. {
  14500. name: "Macro",
  14501. height: math.unit(30, "feet")
  14502. },
  14503. {
  14504. name: "Megamacro",
  14505. height: math.unit(3500, "feet")
  14506. },
  14507. {
  14508. name: "Teramacro",
  14509. height: math.unit(500000, "miles")
  14510. },
  14511. {
  14512. name: "Petamacro",
  14513. height: math.unit(50000000000000000, "parsecs")
  14514. },
  14515. ]
  14516. ))
  14517. characterMakers.push(() => makeCharacter(
  14518. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14519. {
  14520. front: {
  14521. height: math.unit(6, "feet"),
  14522. weight: math.unit(150, "lb"),
  14523. name: "Front",
  14524. image: {
  14525. source: "./media/characters/ilisha-devya/front.svg",
  14526. extra: 1053/1049,
  14527. bottom: 270/1323
  14528. }
  14529. },
  14530. back: {
  14531. height: math.unit(6, "feet"),
  14532. weight: math.unit(150, "lb"),
  14533. name: "Back",
  14534. image: {
  14535. source: "./media/characters/ilisha-devya/back.svg",
  14536. extra: 1131/1128,
  14537. bottom: 39/1170
  14538. }
  14539. },
  14540. },
  14541. [
  14542. {
  14543. name: "Macro",
  14544. height: math.unit(500, "feet"),
  14545. default: true
  14546. },
  14547. {
  14548. name: "Megamacro",
  14549. height: math.unit(10, "miles")
  14550. },
  14551. {
  14552. name: "Gigamacro",
  14553. height: math.unit(100000, "miles")
  14554. },
  14555. {
  14556. name: "Examacro",
  14557. height: math.unit(1e9, "lightyears")
  14558. },
  14559. {
  14560. name: "Omniversal",
  14561. height: math.unit(1e33, "lightyears")
  14562. },
  14563. {
  14564. name: "Beyond Infinite",
  14565. height: math.unit(1e100, "lightyears")
  14566. },
  14567. ]
  14568. ))
  14569. characterMakers.push(() => makeCharacter(
  14570. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14571. {
  14572. Side: {
  14573. height: math.unit(6, "feet"),
  14574. weight: math.unit(150, "lb"),
  14575. name: "Side",
  14576. image: {
  14577. source: "./media/characters/mira/side.svg",
  14578. extra: 900 / 799,
  14579. bottom: 0.02
  14580. }
  14581. },
  14582. },
  14583. [
  14584. {
  14585. name: "Human Size",
  14586. height: math.unit(6, "feet")
  14587. },
  14588. {
  14589. name: "Macro",
  14590. height: math.unit(100, "feet"),
  14591. default: true
  14592. },
  14593. {
  14594. name: "Megamacro",
  14595. height: math.unit(10, "miles")
  14596. },
  14597. {
  14598. name: "Gigamacro",
  14599. height: math.unit(25000, "miles")
  14600. },
  14601. {
  14602. name: "Teramacro",
  14603. height: math.unit(300, "AU")
  14604. },
  14605. {
  14606. name: "Full Size",
  14607. height: math.unit(4.5e10, "lightyears")
  14608. },
  14609. ]
  14610. ))
  14611. characterMakers.push(() => makeCharacter(
  14612. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14613. {
  14614. front: {
  14615. height: math.unit(6, "feet"),
  14616. weight: math.unit(150, "lb"),
  14617. name: "Front",
  14618. image: {
  14619. source: "./media/characters/holly/front.svg",
  14620. extra: 639 / 606
  14621. }
  14622. },
  14623. back: {
  14624. height: math.unit(6, "feet"),
  14625. weight: math.unit(150, "lb"),
  14626. name: "Back",
  14627. image: {
  14628. source: "./media/characters/holly/back.svg",
  14629. extra: 623 / 598
  14630. }
  14631. },
  14632. frontWorking: {
  14633. height: math.unit(6, "feet"),
  14634. weight: math.unit(150, "lb"),
  14635. name: "Front (Working)",
  14636. image: {
  14637. source: "./media/characters/holly/front-working.svg",
  14638. extra: 607 / 577,
  14639. bottom: 0.048
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Normal",
  14646. height: math.unit(12 + 3 / 12, "feet"),
  14647. default: true
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14653. {
  14654. front: {
  14655. height: math.unit(6, "feet"),
  14656. weight: math.unit(150, "lb"),
  14657. name: "Front",
  14658. image: {
  14659. source: "./media/characters/porter/front.svg",
  14660. extra: 1,
  14661. bottom: 0.01
  14662. }
  14663. },
  14664. frontRobes: {
  14665. height: math.unit(6, "feet"),
  14666. weight: math.unit(150, "lb"),
  14667. name: "Front (Robes)",
  14668. image: {
  14669. source: "./media/characters/porter/front-robes.svg",
  14670. extra: 1.01,
  14671. bottom: 0.01
  14672. }
  14673. },
  14674. },
  14675. [
  14676. {
  14677. name: "Normal",
  14678. height: math.unit(11 + 9 / 12, "feet"),
  14679. default: true
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14685. {
  14686. legendary: {
  14687. height: math.unit(6, "feet"),
  14688. weight: math.unit(150, "lb"),
  14689. name: "Legendary",
  14690. image: {
  14691. source: "./media/characters/lucy/legendary.svg",
  14692. extra: 1355 / 1100,
  14693. bottom: 0.045
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Legendary",
  14700. height: math.unit(86882 * 2, "miles"),
  14701. default: true
  14702. },
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14707. {
  14708. front: {
  14709. height: math.unit(6, "feet"),
  14710. weight: math.unit(150, "lb"),
  14711. name: "Front",
  14712. image: {
  14713. source: "./media/characters/drusilla/front.svg",
  14714. extra: 678 / 635,
  14715. bottom: 0.03
  14716. }
  14717. },
  14718. back: {
  14719. height: math.unit(6, "feet"),
  14720. weight: math.unit(150, "lb"),
  14721. name: "Back",
  14722. image: {
  14723. source: "./media/characters/drusilla/back.svg",
  14724. extra: 678 / 635,
  14725. bottom: 0.005
  14726. }
  14727. },
  14728. },
  14729. [
  14730. {
  14731. name: "Macro",
  14732. height: math.unit(100, "feet")
  14733. },
  14734. {
  14735. name: "Canon Height",
  14736. height: math.unit(2000, "feet"),
  14737. default: true
  14738. },
  14739. ]
  14740. ))
  14741. characterMakers.push(() => makeCharacter(
  14742. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14743. {
  14744. front: {
  14745. height: math.unit(6, "feet"),
  14746. weight: math.unit(180, "lb"),
  14747. name: "Front",
  14748. image: {
  14749. source: "./media/characters/renard-thatch/front.svg",
  14750. extra: 2411 / 2275,
  14751. bottom: 0.01
  14752. }
  14753. },
  14754. frontPosing: {
  14755. height: math.unit(6, "feet"),
  14756. weight: math.unit(180, "lb"),
  14757. name: "Front (Posing)",
  14758. image: {
  14759. source: "./media/characters/renard-thatch/front-posing.svg",
  14760. extra: 2381 / 2261,
  14761. bottom: 0.01
  14762. }
  14763. },
  14764. back: {
  14765. height: math.unit(6, "feet"),
  14766. weight: math.unit(180, "lb"),
  14767. name: "Back",
  14768. image: {
  14769. source: "./media/characters/renard-thatch/back.svg",
  14770. extra: 2428 / 2288
  14771. }
  14772. },
  14773. },
  14774. [
  14775. {
  14776. name: "Micro",
  14777. height: math.unit(3, "inches")
  14778. },
  14779. {
  14780. name: "Default",
  14781. height: math.unit(6, "feet"),
  14782. default: true
  14783. },
  14784. {
  14785. name: "Macro",
  14786. height: math.unit(75, "feet")
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14792. {
  14793. front: {
  14794. height: math.unit(1450, "feet"),
  14795. weight: math.unit(1.21e6, "tons"),
  14796. name: "Front",
  14797. image: {
  14798. source: "./media/characters/sekvra/front.svg",
  14799. extra: 1193/1190,
  14800. bottom: 78/1271
  14801. }
  14802. },
  14803. side: {
  14804. height: math.unit(1450, "feet"),
  14805. weight: math.unit(1.21e6, "tons"),
  14806. name: "Side",
  14807. image: {
  14808. source: "./media/characters/sekvra/side.svg",
  14809. extra: 1193/1190,
  14810. bottom: 52/1245
  14811. }
  14812. },
  14813. back: {
  14814. height: math.unit(1450, "feet"),
  14815. weight: math.unit(1.21e6, "tons"),
  14816. name: "Back",
  14817. image: {
  14818. source: "./media/characters/sekvra/back.svg",
  14819. extra: 1219/1216,
  14820. bottom: 21/1240
  14821. }
  14822. },
  14823. frontClothed: {
  14824. height: math.unit(1450, "feet"),
  14825. weight: math.unit(1.21e6, "tons"),
  14826. name: "Front (Clothed)",
  14827. image: {
  14828. source: "./media/characters/sekvra/front-clothed.svg",
  14829. extra: 1192/1189,
  14830. bottom: 79/1271
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Macro",
  14837. height: math.unit(1450, "feet"),
  14838. default: true
  14839. },
  14840. {
  14841. name: "Megamacro",
  14842. height: math.unit(15000, "feet")
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14848. {
  14849. front: {
  14850. height: math.unit(6, "feet"),
  14851. weight: math.unit(150, "lb"),
  14852. name: "Front",
  14853. image: {
  14854. source: "./media/characters/carmine/front.svg",
  14855. extra: 1557/1538,
  14856. bottom: 68/1625
  14857. }
  14858. },
  14859. frontArmor: {
  14860. height: math.unit(6, "feet"),
  14861. weight: math.unit(150, "lb"),
  14862. name: "Front (Armor)",
  14863. image: {
  14864. source: "./media/characters/carmine/front-armor.svg",
  14865. extra: 1549/1530,
  14866. bottom: 82/1631
  14867. }
  14868. },
  14869. mouth: {
  14870. height: math.unit(0.55, "feet"),
  14871. name: "Mouth",
  14872. image: {
  14873. source: "./media/characters/carmine/mouth.svg"
  14874. }
  14875. },
  14876. hand: {
  14877. height: math.unit(1.05, "feet"),
  14878. name: "Hand",
  14879. image: {
  14880. source: "./media/characters/carmine/hand.svg"
  14881. }
  14882. },
  14883. foot: {
  14884. height: math.unit(0.6, "feet"),
  14885. name: "Foot",
  14886. image: {
  14887. source: "./media/characters/carmine/foot.svg"
  14888. }
  14889. },
  14890. },
  14891. [
  14892. {
  14893. name: "Large",
  14894. height: math.unit(1, "mile")
  14895. },
  14896. {
  14897. name: "Huge",
  14898. height: math.unit(40, "miles"),
  14899. default: true
  14900. },
  14901. {
  14902. name: "Colossal",
  14903. height: math.unit(2500, "miles")
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14909. {
  14910. front: {
  14911. height: math.unit(6, "feet"),
  14912. weight: math.unit(150, "lb"),
  14913. name: "Front",
  14914. image: {
  14915. source: "./media/characters/elyssia/front.svg",
  14916. extra: 2201 / 2035,
  14917. bottom: 0.05
  14918. }
  14919. },
  14920. frontClothed: {
  14921. height: math.unit(6, "feet"),
  14922. weight: math.unit(150, "lb"),
  14923. name: "Front (Clothed)",
  14924. image: {
  14925. source: "./media/characters/elyssia/front-clothed.svg",
  14926. extra: 2201 / 2035,
  14927. bottom: 0.05
  14928. }
  14929. },
  14930. back: {
  14931. height: math.unit(6, "feet"),
  14932. weight: math.unit(150, "lb"),
  14933. name: "Back",
  14934. image: {
  14935. source: "./media/characters/elyssia/back.svg",
  14936. extra: 2201 / 2035,
  14937. bottom: 0.013
  14938. }
  14939. },
  14940. },
  14941. [
  14942. {
  14943. name: "Smaller",
  14944. height: math.unit(150, "feet")
  14945. },
  14946. {
  14947. name: "Standard",
  14948. height: math.unit(1400, "feet"),
  14949. default: true
  14950. },
  14951. {
  14952. name: "Distracted",
  14953. height: math.unit(15000, "feet")
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14959. {
  14960. front: {
  14961. height: math.unit(7 + 4/12, "feet"),
  14962. weight: math.unit(690, "lb"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/geno-maxwell/front.svg",
  14966. extra: 984/856,
  14967. bottom: 87/1071
  14968. }
  14969. },
  14970. back: {
  14971. height: math.unit(7 + 4/12, "feet"),
  14972. weight: math.unit(690, "lb"),
  14973. name: "Back",
  14974. image: {
  14975. source: "./media/characters/geno-maxwell/back.svg",
  14976. extra: 981/854,
  14977. bottom: 57/1038
  14978. }
  14979. },
  14980. frontCostume: {
  14981. height: math.unit(7 + 4/12, "feet"),
  14982. weight: math.unit(690, "lb"),
  14983. name: "Front (Costume)",
  14984. image: {
  14985. source: "./media/characters/geno-maxwell/front-costume.svg",
  14986. extra: 984/856,
  14987. bottom: 87/1071
  14988. }
  14989. },
  14990. backcostume: {
  14991. height: math.unit(7 + 4/12, "feet"),
  14992. weight: math.unit(690, "lb"),
  14993. name: "Back (Costume)",
  14994. image: {
  14995. source: "./media/characters/geno-maxwell/back-costume.svg",
  14996. extra: 981/854,
  14997. bottom: 57/1038
  14998. }
  14999. },
  15000. },
  15001. [
  15002. {
  15003. name: "Micro",
  15004. height: math.unit(3, "inches")
  15005. },
  15006. {
  15007. name: "Normal",
  15008. height: math.unit(7 + 4 / 12, "feet"),
  15009. default: true
  15010. },
  15011. {
  15012. name: "Macro",
  15013. height: math.unit(220, "feet")
  15014. },
  15015. {
  15016. name: "Megamacro",
  15017. height: math.unit(11, "miles")
  15018. },
  15019. ]
  15020. ))
  15021. characterMakers.push(() => makeCharacter(
  15022. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15023. {
  15024. front: {
  15025. height: math.unit(7 + 4/12, "feet"),
  15026. weight: math.unit(750, "lb"),
  15027. name: "Front",
  15028. image: {
  15029. source: "./media/characters/regena-maxwell/front.svg",
  15030. extra: 984/856,
  15031. bottom: 87/1071
  15032. }
  15033. },
  15034. back: {
  15035. height: math.unit(7 + 4/12, "feet"),
  15036. weight: math.unit(750, "lb"),
  15037. name: "Back",
  15038. image: {
  15039. source: "./media/characters/regena-maxwell/back.svg",
  15040. extra: 981/854,
  15041. bottom: 57/1038
  15042. }
  15043. },
  15044. frontCostume: {
  15045. height: math.unit(7 + 4/12, "feet"),
  15046. weight: math.unit(750, "lb"),
  15047. name: "Front (Costume)",
  15048. image: {
  15049. source: "./media/characters/regena-maxwell/front-costume.svg",
  15050. extra: 984/856,
  15051. bottom: 87/1071
  15052. }
  15053. },
  15054. backcostume: {
  15055. height: math.unit(7 + 4/12, "feet"),
  15056. weight: math.unit(750, "lb"),
  15057. name: "Back (Costume)",
  15058. image: {
  15059. source: "./media/characters/regena-maxwell/back-costume.svg",
  15060. extra: 981/854,
  15061. bottom: 57/1038
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Normal",
  15068. height: math.unit(7 + 4 / 12, "feet"),
  15069. default: true
  15070. },
  15071. {
  15072. name: "Macro",
  15073. height: math.unit(220, "feet")
  15074. },
  15075. {
  15076. name: "Megamacro",
  15077. height: math.unit(11, "miles")
  15078. },
  15079. ]
  15080. ))
  15081. characterMakers.push(() => makeCharacter(
  15082. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15083. {
  15084. front: {
  15085. height: math.unit(6, "feet"),
  15086. weight: math.unit(150, "lb"),
  15087. name: "Front",
  15088. image: {
  15089. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15090. extra: 860 / 690,
  15091. bottom: 0.03
  15092. }
  15093. },
  15094. },
  15095. [
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(1.7, "meters"),
  15099. default: true
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15105. {
  15106. front: {
  15107. height: math.unit(6, "feet"),
  15108. weight: math.unit(150, "lb"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/quilly/front.svg",
  15112. extra: 890 / 776
  15113. }
  15114. },
  15115. },
  15116. [
  15117. {
  15118. name: "Gigamacro",
  15119. height: math.unit(404090, "miles"),
  15120. default: true
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15126. {
  15127. front: {
  15128. height: math.unit(7 + 8 / 12, "feet"),
  15129. weight: math.unit(350, "lb"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/tempest/front.svg",
  15133. extra: 1175 / 1086,
  15134. bottom: 0.02
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Normal",
  15141. height: math.unit(7 + 8 / 12, "feet"),
  15142. default: true
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15148. {
  15149. side: {
  15150. height: math.unit(4 + 5 / 12, "feet"),
  15151. weight: math.unit(80, "lb"),
  15152. name: "Side",
  15153. image: {
  15154. source: "./media/characters/rodger/side.svg",
  15155. extra: 1235 / 1118
  15156. }
  15157. },
  15158. },
  15159. [
  15160. {
  15161. name: "Micro",
  15162. height: math.unit(1, "inch")
  15163. },
  15164. {
  15165. name: "Normal",
  15166. height: math.unit(4 + 5 / 12, "feet"),
  15167. default: true
  15168. },
  15169. {
  15170. name: "Macro",
  15171. height: math.unit(120, "feet")
  15172. },
  15173. ]
  15174. ))
  15175. characterMakers.push(() => makeCharacter(
  15176. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15177. {
  15178. front: {
  15179. height: math.unit(6, "feet"),
  15180. weight: math.unit(150, "lb"),
  15181. name: "Front",
  15182. image: {
  15183. source: "./media/characters/danyel/front.svg",
  15184. extra: 1185 / 1123,
  15185. bottom: 0.05
  15186. }
  15187. },
  15188. },
  15189. [
  15190. {
  15191. name: "Shrunken",
  15192. height: math.unit(0.5, "mm")
  15193. },
  15194. {
  15195. name: "Micro",
  15196. height: math.unit(1, "mm"),
  15197. default: true
  15198. },
  15199. {
  15200. name: "Upsized",
  15201. height: math.unit(5 + 5 / 12, "feet")
  15202. },
  15203. ]
  15204. ))
  15205. characterMakers.push(() => makeCharacter(
  15206. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15207. {
  15208. front: {
  15209. height: math.unit(5 + 6 / 12, "feet"),
  15210. weight: math.unit(200, "lb"),
  15211. name: "Front",
  15212. image: {
  15213. source: "./media/characters/vivian-bijoux/front.svg",
  15214. extra: 1217/1209,
  15215. bottom: 76/1293
  15216. }
  15217. },
  15218. back: {
  15219. height: math.unit(5 + 6 / 12, "feet"),
  15220. weight: math.unit(200, "lb"),
  15221. name: "Back",
  15222. image: {
  15223. source: "./media/characters/vivian-bijoux/back.svg",
  15224. extra: 1214/1208,
  15225. bottom: 51/1265
  15226. }
  15227. },
  15228. dressed: {
  15229. height: math.unit(5 + 6 / 12, "feet"),
  15230. weight: math.unit(200, "lb"),
  15231. name: "Dressed",
  15232. image: {
  15233. source: "./media/characters/vivian-bijoux/dressed.svg",
  15234. extra: 1217/1209,
  15235. bottom: 76/1293
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Normal",
  15242. height: math.unit(5 + 6 / 12, "feet"),
  15243. default: true
  15244. },
  15245. {
  15246. name: "Bad Dream",
  15247. height: math.unit(500, "feet")
  15248. },
  15249. {
  15250. name: "Nightmare",
  15251. height: math.unit(500, "miles")
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(6 + 1 / 12, "feet"),
  15260. weight: math.unit(260, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/zeta/front.svg",
  15264. extra: 1968 / 1889,
  15265. bottom: 0.06
  15266. }
  15267. },
  15268. back: {
  15269. height: math.unit(6 + 1 / 12, "feet"),
  15270. weight: math.unit(260, "lb"),
  15271. name: "Back",
  15272. image: {
  15273. source: "./media/characters/zeta/back.svg",
  15274. extra: 1944 / 1858,
  15275. bottom: 0.03
  15276. }
  15277. },
  15278. hand: {
  15279. height: math.unit(1.112, "feet"),
  15280. name: "Hand",
  15281. image: {
  15282. source: "./media/characters/zeta/hand.svg"
  15283. }
  15284. },
  15285. foot: {
  15286. height: math.unit(1.48, "feet"),
  15287. name: "Foot",
  15288. image: {
  15289. source: "./media/characters/zeta/foot.svg"
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Micro",
  15296. height: math.unit(6, "inches")
  15297. },
  15298. {
  15299. name: "Normal",
  15300. height: math.unit(6 + 1 / 12, "feet"),
  15301. default: true
  15302. },
  15303. {
  15304. name: "Macro",
  15305. height: math.unit(20, "feet")
  15306. },
  15307. ]
  15308. ))
  15309. characterMakers.push(() => makeCharacter(
  15310. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15311. {
  15312. front: {
  15313. height: math.unit(6, "feet"),
  15314. weight: math.unit(150, "lb"),
  15315. name: "Front",
  15316. image: {
  15317. source: "./media/characters/jamie-larsen/front.svg",
  15318. extra: 962 / 933,
  15319. bottom: 0.02
  15320. }
  15321. },
  15322. back: {
  15323. height: math.unit(6, "feet"),
  15324. weight: math.unit(150, "lb"),
  15325. name: "Back",
  15326. image: {
  15327. source: "./media/characters/jamie-larsen/back.svg",
  15328. extra: 997 / 946
  15329. }
  15330. },
  15331. },
  15332. [
  15333. {
  15334. name: "Macro",
  15335. height: math.unit(28 + 7 / 12, "feet"),
  15336. default: true
  15337. },
  15338. {
  15339. name: "Macro+",
  15340. height: math.unit(180, "feet")
  15341. },
  15342. {
  15343. name: "Megamacro",
  15344. height: math.unit(10, "miles")
  15345. },
  15346. {
  15347. name: "Gigamacro",
  15348. height: math.unit(200000, "miles")
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15354. {
  15355. front: {
  15356. height: math.unit(6, "feet"),
  15357. weight: math.unit(120, "lb"),
  15358. name: "Front",
  15359. image: {
  15360. source: "./media/characters/vance/front.svg",
  15361. extra: 1980 / 1890,
  15362. bottom: 0.09
  15363. }
  15364. },
  15365. back: {
  15366. height: math.unit(6, "feet"),
  15367. weight: math.unit(120, "lb"),
  15368. name: "Back",
  15369. image: {
  15370. source: "./media/characters/vance/back.svg",
  15371. extra: 2081 / 1994,
  15372. bottom: 0.014
  15373. }
  15374. },
  15375. hand: {
  15376. height: math.unit(0.88, "feet"),
  15377. name: "Hand",
  15378. image: {
  15379. source: "./media/characters/vance/hand.svg"
  15380. }
  15381. },
  15382. foot: {
  15383. height: math.unit(0.64, "feet"),
  15384. name: "Foot",
  15385. image: {
  15386. source: "./media/characters/vance/foot.svg"
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Small",
  15393. height: math.unit(90, "feet"),
  15394. default: true
  15395. },
  15396. {
  15397. name: "Macro",
  15398. height: math.unit(100, "meters")
  15399. },
  15400. {
  15401. name: "Megamacro",
  15402. height: math.unit(15, "miles")
  15403. },
  15404. ]
  15405. ))
  15406. characterMakers.push(() => makeCharacter(
  15407. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15408. {
  15409. front: {
  15410. height: math.unit(6, "feet"),
  15411. weight: math.unit(180, "lb"),
  15412. name: "Front",
  15413. image: {
  15414. source: "./media/characters/xochitl/front.svg",
  15415. extra: 2297 / 2261,
  15416. bottom: 0.065
  15417. }
  15418. },
  15419. back: {
  15420. height: math.unit(6, "feet"),
  15421. weight: math.unit(180, "lb"),
  15422. name: "Back",
  15423. image: {
  15424. source: "./media/characters/xochitl/back.svg",
  15425. extra: 2386 / 2354,
  15426. bottom: 0.01
  15427. }
  15428. },
  15429. foot: {
  15430. height: math.unit(6 / 5 * 1.15, "feet"),
  15431. weight: math.unit(150, "lb"),
  15432. name: "Foot",
  15433. image: {
  15434. source: "./media/characters/xochitl/foot.svg"
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Macro",
  15441. height: math.unit(80, "feet")
  15442. },
  15443. {
  15444. name: "Macro+",
  15445. height: math.unit(400, "feet"),
  15446. default: true
  15447. },
  15448. {
  15449. name: "Gigamacro",
  15450. height: math.unit(80000, "miles")
  15451. },
  15452. {
  15453. name: "Gigamacro+",
  15454. height: math.unit(400000, "miles")
  15455. },
  15456. {
  15457. name: "Teramacro",
  15458. height: math.unit(300, "AU")
  15459. },
  15460. ]
  15461. ))
  15462. characterMakers.push(() => makeCharacter(
  15463. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15464. {
  15465. front: {
  15466. height: math.unit(6, "feet"),
  15467. weight: math.unit(150, "lb"),
  15468. name: "Front",
  15469. image: {
  15470. source: "./media/characters/vincent/front.svg",
  15471. extra: 1130 / 1080,
  15472. bottom: 0.055
  15473. }
  15474. },
  15475. beak: {
  15476. height: math.unit(6 * 0.1, "feet"),
  15477. name: "Beak",
  15478. image: {
  15479. source: "./media/characters/vincent/beak.svg"
  15480. }
  15481. },
  15482. hand: {
  15483. height: math.unit(6 * 0.85, "feet"),
  15484. weight: math.unit(150, "lb"),
  15485. name: "Hand",
  15486. image: {
  15487. source: "./media/characters/vincent/hand.svg"
  15488. }
  15489. },
  15490. foot: {
  15491. height: math.unit(6 * 0.19, "feet"),
  15492. weight: math.unit(150, "lb"),
  15493. name: "Foot",
  15494. image: {
  15495. source: "./media/characters/vincent/foot.svg"
  15496. }
  15497. },
  15498. },
  15499. [
  15500. {
  15501. name: "Base",
  15502. height: math.unit(6 + 5 / 12, "feet"),
  15503. default: true
  15504. },
  15505. {
  15506. name: "Macro",
  15507. height: math.unit(300, "feet")
  15508. },
  15509. {
  15510. name: "Megamacro",
  15511. height: math.unit(2, "miles")
  15512. },
  15513. {
  15514. name: "Gigamacro",
  15515. height: math.unit(1000, "miles")
  15516. },
  15517. ]
  15518. ))
  15519. characterMakers.push(() => makeCharacter(
  15520. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15521. {
  15522. front: {
  15523. height: math.unit(2, "meters"),
  15524. weight: math.unit(500, "kg"),
  15525. name: "Front",
  15526. image: {
  15527. source: "./media/characters/coatl/front.svg",
  15528. extra: 3948 / 3500,
  15529. bottom: 0.082
  15530. }
  15531. },
  15532. },
  15533. [
  15534. {
  15535. name: "Normal",
  15536. height: math.unit(4, "meters")
  15537. },
  15538. {
  15539. name: "Macro",
  15540. height: math.unit(100, "meters"),
  15541. default: true
  15542. },
  15543. {
  15544. name: "Macro+",
  15545. height: math.unit(300, "meters")
  15546. },
  15547. {
  15548. name: "Megamacro",
  15549. height: math.unit(3, "gigameters")
  15550. },
  15551. {
  15552. name: "Megamacro+",
  15553. height: math.unit(300, "terameters")
  15554. },
  15555. {
  15556. name: "Megamacro++",
  15557. height: math.unit(3, "lightyears")
  15558. },
  15559. ]
  15560. ))
  15561. characterMakers.push(() => makeCharacter(
  15562. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15563. {
  15564. front: {
  15565. height: math.unit(6, "feet"),
  15566. weight: math.unit(50, "kg"),
  15567. name: "front",
  15568. image: {
  15569. source: "./media/characters/shiroryu/front.svg",
  15570. extra: 1990 / 1935
  15571. }
  15572. },
  15573. },
  15574. [
  15575. {
  15576. name: "Mortal Mingling",
  15577. height: math.unit(3, "meters")
  15578. },
  15579. {
  15580. name: "Kaiju-ish",
  15581. height: math.unit(250, "meters")
  15582. },
  15583. {
  15584. name: "Somewhat Godly",
  15585. height: math.unit(400, "km"),
  15586. default: true
  15587. },
  15588. {
  15589. name: "Planetary",
  15590. height: math.unit(300, "megameters")
  15591. },
  15592. {
  15593. name: "Galaxy-dwarfing",
  15594. height: math.unit(450, "kiloparsecs")
  15595. },
  15596. {
  15597. name: "Universe Eater",
  15598. height: math.unit(150, "gigaparsecs")
  15599. },
  15600. {
  15601. name: "Almost Immeasurable",
  15602. height: math.unit(1.3e266, "yottaparsecs")
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(6, "feet"),
  15611. weight: math.unit(150, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/umeko/front.svg",
  15615. extra: 1,
  15616. bottom: 0.019
  15617. }
  15618. },
  15619. frontArmored: {
  15620. height: math.unit(6, "feet"),
  15621. weight: math.unit(150, "lb"),
  15622. name: "Front (Armored)",
  15623. image: {
  15624. source: "./media/characters/umeko/front-armored.svg",
  15625. extra: 1,
  15626. bottom: 0.021
  15627. }
  15628. },
  15629. },
  15630. [
  15631. {
  15632. name: "Macro",
  15633. height: math.unit(220, "feet"),
  15634. default: true
  15635. },
  15636. {
  15637. name: "Guardian Dragon",
  15638. height: math.unit(50, "miles")
  15639. },
  15640. {
  15641. name: "Cosmic",
  15642. height: math.unit(800000, "miles")
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15648. {
  15649. front: {
  15650. height: math.unit(6, "feet"),
  15651. weight: math.unit(150, "lb"),
  15652. name: "Front",
  15653. image: {
  15654. source: "./media/characters/cassidy/front.svg",
  15655. extra: 810/808,
  15656. bottom: 41/851
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Canon Height",
  15663. height: math.unit(120, "feet"),
  15664. default: true
  15665. },
  15666. {
  15667. name: "Macro+",
  15668. height: math.unit(400, "feet")
  15669. },
  15670. {
  15671. name: "Macro++",
  15672. height: math.unit(4000, "feet")
  15673. },
  15674. {
  15675. name: "Megamacro",
  15676. height: math.unit(3, "miles")
  15677. },
  15678. ]
  15679. ))
  15680. characterMakers.push(() => makeCharacter(
  15681. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15682. {
  15683. front: {
  15684. height: math.unit(6, "feet"),
  15685. weight: math.unit(150, "lb"),
  15686. name: "Front",
  15687. image: {
  15688. source: "./media/characters/isaac/front.svg",
  15689. extra: 896 / 815,
  15690. bottom: 0.11
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Human Size",
  15697. height: math.unit(8, "feet"),
  15698. default: true
  15699. },
  15700. {
  15701. name: "Macro",
  15702. height: math.unit(400, "feet")
  15703. },
  15704. {
  15705. name: "Megamacro",
  15706. height: math.unit(50, "miles")
  15707. },
  15708. {
  15709. name: "Canon Height",
  15710. height: math.unit(200, "AU")
  15711. },
  15712. ]
  15713. ))
  15714. characterMakers.push(() => makeCharacter(
  15715. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15716. {
  15717. front: {
  15718. height: math.unit(6, "feet"),
  15719. weight: math.unit(72, "kg"),
  15720. name: "Front",
  15721. image: {
  15722. source: "./media/characters/sleekit/front.svg",
  15723. extra: 4693 / 4487,
  15724. bottom: 0.012
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Minimum Height",
  15731. height: math.unit(10, "meters")
  15732. },
  15733. {
  15734. name: "Smaller",
  15735. height: math.unit(25, "meters")
  15736. },
  15737. {
  15738. name: "Larger",
  15739. height: math.unit(38, "meters"),
  15740. default: true
  15741. },
  15742. {
  15743. name: "Maximum height",
  15744. height: math.unit(100, "meters")
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15750. {
  15751. front: {
  15752. height: math.unit(6, "feet"),
  15753. weight: math.unit(150, "lb"),
  15754. name: "Front",
  15755. image: {
  15756. source: "./media/characters/nillia/front.svg",
  15757. extra: 719/665,
  15758. bottom: 6/725
  15759. }
  15760. },
  15761. back: {
  15762. height: math.unit(6, "feet"),
  15763. weight: math.unit(150, "lb"),
  15764. name: "Back",
  15765. image: {
  15766. source: "./media/characters/nillia/back.svg",
  15767. extra: 705/651,
  15768. bottom: 5/710
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Canon Height",
  15775. height: math.unit(489, "feet"),
  15776. default: true
  15777. }
  15778. ]
  15779. ))
  15780. characterMakers.push(() => makeCharacter(
  15781. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15782. {
  15783. front: {
  15784. height: math.unit(6, "feet"),
  15785. weight: math.unit(150, "lb"),
  15786. name: "Front",
  15787. image: {
  15788. source: "./media/characters/mesmyriza/front.svg",
  15789. extra: 2067 / 1784,
  15790. bottom: 0.035
  15791. }
  15792. },
  15793. foot: {
  15794. height: math.unit(6 / (250 / 35), "feet"),
  15795. name: "Foot",
  15796. image: {
  15797. source: "./media/characters/mesmyriza/foot.svg"
  15798. }
  15799. },
  15800. },
  15801. [
  15802. {
  15803. name: "Macro",
  15804. height: math.unit(457, "meters"),
  15805. default: true
  15806. },
  15807. {
  15808. name: "Megamacro",
  15809. height: math.unit(8, "megameters")
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15815. {
  15816. front: {
  15817. height: math.unit(6, "feet"),
  15818. weight: math.unit(250, "lb"),
  15819. name: "Front",
  15820. image: {
  15821. source: "./media/characters/saudade/front.svg",
  15822. extra: 1172 / 1139,
  15823. bottom: 0.035
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Micro",
  15830. height: math.unit(3, "inches")
  15831. },
  15832. {
  15833. name: "Normal",
  15834. height: math.unit(6, "feet"),
  15835. default: true
  15836. },
  15837. {
  15838. name: "Macro",
  15839. height: math.unit(50, "feet")
  15840. },
  15841. {
  15842. name: "Megamacro",
  15843. height: math.unit(2800, "feet")
  15844. },
  15845. ]
  15846. ))
  15847. characterMakers.push(() => makeCharacter(
  15848. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15849. {
  15850. front: {
  15851. height: math.unit(5 + 4 / 12, "feet"),
  15852. weight: math.unit(100, "lb"),
  15853. name: "Front",
  15854. image: {
  15855. source: "./media/characters/keireer/front.svg",
  15856. extra: 716 / 666,
  15857. bottom: 0.05
  15858. }
  15859. },
  15860. },
  15861. [
  15862. {
  15863. name: "Normal",
  15864. height: math.unit(5 + 4 / 12, "feet"),
  15865. default: true
  15866. },
  15867. ]
  15868. ))
  15869. characterMakers.push(() => makeCharacter(
  15870. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15871. {
  15872. front: {
  15873. height: math.unit(5.5, "feet"),
  15874. weight: math.unit(90, "kg"),
  15875. name: "Front",
  15876. image: {
  15877. source: "./media/characters/mirja/front.svg",
  15878. extra: 1452/1262,
  15879. bottom: 67/1519
  15880. }
  15881. },
  15882. frontDressed: {
  15883. height: math.unit(5.5, "feet"),
  15884. weight: math.unit(90, "lb"),
  15885. name: "Front (Dressed)",
  15886. image: {
  15887. source: "./media/characters/mirja/dressed.svg",
  15888. extra: 1452/1262,
  15889. bottom: 67/1519
  15890. }
  15891. },
  15892. back: {
  15893. height: math.unit(6, "feet"),
  15894. weight: math.unit(90, "lb"),
  15895. name: "Back",
  15896. image: {
  15897. source: "./media/characters/mirja/back.svg",
  15898. extra: 1892/1795,
  15899. bottom: 48/1940
  15900. }
  15901. },
  15902. maw: {
  15903. height: math.unit(1.312, "feet"),
  15904. name: "Maw",
  15905. image: {
  15906. source: "./media/characters/mirja/maw.svg"
  15907. }
  15908. },
  15909. paw: {
  15910. height: math.unit(1.15, "feet"),
  15911. name: "Paw",
  15912. image: {
  15913. source: "./media/characters/mirja/paw.svg"
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "\"Incognito\"",
  15920. height: math.unit(3, "meters")
  15921. },
  15922. {
  15923. name: "Strolling Size",
  15924. height: math.unit(15, "km")
  15925. },
  15926. {
  15927. name: "Larger Strolling Size",
  15928. height: math.unit(400, "km")
  15929. },
  15930. {
  15931. name: "Preferred Size",
  15932. height: math.unit(5000, "km"),
  15933. default: true
  15934. },
  15935. {
  15936. name: "True Size",
  15937. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15943. {
  15944. front: {
  15945. height: math.unit(15, "feet"),
  15946. weight: math.unit(880, "kg"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/nightraver/front.svg",
  15950. extra: 2444 / 2160,
  15951. bottom: 0.027
  15952. }
  15953. },
  15954. back: {
  15955. height: math.unit(15, "feet"),
  15956. weight: math.unit(880, "kg"),
  15957. name: "Back",
  15958. image: {
  15959. source: "./media/characters/nightraver/back.svg",
  15960. extra: 2309 / 2180,
  15961. bottom: 0.005
  15962. }
  15963. },
  15964. sole: {
  15965. height: math.unit(2.878, "feet"),
  15966. name: "Sole",
  15967. image: {
  15968. source: "./media/characters/nightraver/sole.svg"
  15969. }
  15970. },
  15971. foot: {
  15972. height: math.unit(2.285, "feet"),
  15973. name: "Foot",
  15974. image: {
  15975. source: "./media/characters/nightraver/foot.svg"
  15976. }
  15977. },
  15978. maw: {
  15979. height: math.unit(2.67, "feet"),
  15980. name: "Maw",
  15981. image: {
  15982. source: "./media/characters/nightraver/maw.svg"
  15983. }
  15984. },
  15985. },
  15986. [
  15987. {
  15988. name: "Micro",
  15989. height: math.unit(1, "cm")
  15990. },
  15991. {
  15992. name: "Normal",
  15993. height: math.unit(15, "feet"),
  15994. default: true
  15995. },
  15996. {
  15997. name: "Macro",
  15998. height: math.unit(300, "feet")
  15999. },
  16000. {
  16001. name: "Megamacro",
  16002. height: math.unit(300, "miles")
  16003. },
  16004. {
  16005. name: "Gigamacro",
  16006. height: math.unit(10000, "miles")
  16007. },
  16008. ]
  16009. ))
  16010. characterMakers.push(() => makeCharacter(
  16011. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16012. {
  16013. side: {
  16014. height: math.unit(2, "inches"),
  16015. weight: math.unit(5, "grams"),
  16016. name: "Side",
  16017. image: {
  16018. source: "./media/characters/arc/side.svg"
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Micro",
  16025. height: math.unit(2, "inches"),
  16026. default: true
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16032. {
  16033. front: {
  16034. height: math.unit(1.1938, "meters"),
  16035. weight: math.unit(54, "kg"),
  16036. name: "Front",
  16037. image: {
  16038. source: "./media/characters/nebula-shahar/front.svg",
  16039. extra: 1642 / 1436,
  16040. bottom: 0.06
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Megamicro",
  16047. height: math.unit(0.3, "mm")
  16048. },
  16049. {
  16050. name: "Micro",
  16051. height: math.unit(3, "cm")
  16052. },
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(138, "cm"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(30, "m")
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16066. {
  16067. front: {
  16068. height: math.unit(5.24, "feet"),
  16069. weight: math.unit(150, "lb"),
  16070. name: "Front",
  16071. image: {
  16072. source: "./media/characters/shayla/front.svg",
  16073. extra: 1512 / 1414,
  16074. bottom: 0.01
  16075. }
  16076. },
  16077. back: {
  16078. height: math.unit(5.24, "feet"),
  16079. weight: math.unit(150, "lb"),
  16080. name: "Back",
  16081. image: {
  16082. source: "./media/characters/shayla/back.svg",
  16083. extra: 1512 / 1414
  16084. }
  16085. },
  16086. hand: {
  16087. height: math.unit(0.7781496062992126, "feet"),
  16088. name: "Hand",
  16089. image: {
  16090. source: "./media/characters/shayla/hand.svg"
  16091. }
  16092. },
  16093. foot: {
  16094. height: math.unit(1.4206036745406823, "feet"),
  16095. name: "Foot",
  16096. image: {
  16097. source: "./media/characters/shayla/foot.svg"
  16098. }
  16099. },
  16100. },
  16101. [
  16102. {
  16103. name: "Micro",
  16104. height: math.unit(0.32, "feet")
  16105. },
  16106. {
  16107. name: "Normal",
  16108. height: math.unit(5.24, "feet"),
  16109. default: true
  16110. },
  16111. {
  16112. name: "Macro",
  16113. height: math.unit(492.12, "feet")
  16114. },
  16115. {
  16116. name: "Megamacro",
  16117. height: math.unit(186.41, "miles")
  16118. },
  16119. ]
  16120. ))
  16121. characterMakers.push(() => makeCharacter(
  16122. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16123. {
  16124. front: {
  16125. height: math.unit(2.2, "m"),
  16126. weight: math.unit(120, "kg"),
  16127. name: "Front",
  16128. image: {
  16129. source: "./media/characters/pia-jr/front.svg",
  16130. extra: 1000 / 970,
  16131. bottom: 0.035
  16132. }
  16133. },
  16134. hand: {
  16135. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16136. name: "Hand",
  16137. image: {
  16138. source: "./media/characters/pia-jr/hand.svg"
  16139. }
  16140. },
  16141. paw: {
  16142. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16143. name: "Paw",
  16144. image: {
  16145. source: "./media/characters/pia-jr/paw.svg"
  16146. }
  16147. },
  16148. },
  16149. [
  16150. {
  16151. name: "Micro",
  16152. height: math.unit(1.2, "cm")
  16153. },
  16154. {
  16155. name: "Normal",
  16156. height: math.unit(2.2, "m"),
  16157. default: true
  16158. },
  16159. {
  16160. name: "Macro",
  16161. height: math.unit(180, "m")
  16162. },
  16163. {
  16164. name: "Megamacro",
  16165. height: math.unit(420, "km")
  16166. },
  16167. ]
  16168. ))
  16169. characterMakers.push(() => makeCharacter(
  16170. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16171. {
  16172. front: {
  16173. height: math.unit(2, "m"),
  16174. weight: math.unit(115, "kg"),
  16175. name: "Front",
  16176. image: {
  16177. source: "./media/characters/pia-sr/front.svg",
  16178. extra: 760 / 730,
  16179. bottom: 0.015
  16180. }
  16181. },
  16182. back: {
  16183. height: math.unit(2, "m"),
  16184. weight: math.unit(115, "kg"),
  16185. name: "Back",
  16186. image: {
  16187. source: "./media/characters/pia-sr/back.svg",
  16188. extra: 760 / 730,
  16189. bottom: 0.01
  16190. }
  16191. },
  16192. hand: {
  16193. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16194. name: "Hand",
  16195. image: {
  16196. source: "./media/characters/pia-sr/hand.svg"
  16197. }
  16198. },
  16199. foot: {
  16200. height: math.unit(1.83, "feet"),
  16201. name: "Foot",
  16202. image: {
  16203. source: "./media/characters/pia-sr/foot.svg"
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Micro",
  16210. height: math.unit(88, "mm")
  16211. },
  16212. {
  16213. name: "Normal",
  16214. height: math.unit(2, "m"),
  16215. default: true
  16216. },
  16217. {
  16218. name: "Macro",
  16219. height: math.unit(200, "m")
  16220. },
  16221. {
  16222. name: "Megamacro",
  16223. height: math.unit(420, "km")
  16224. },
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16229. {
  16230. front: {
  16231. height: math.unit(8 + 2 / 12, "feet"),
  16232. weight: math.unit(300, "lb"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/kibibyte/front.svg",
  16236. extra: 2221 / 2098,
  16237. bottom: 0.04
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Normal",
  16244. height: math.unit(8 + 2 / 12, "feet"),
  16245. default: true
  16246. },
  16247. {
  16248. name: "Socialable Macro",
  16249. height: math.unit(50, "feet")
  16250. },
  16251. {
  16252. name: "Macro",
  16253. height: math.unit(300, "feet")
  16254. },
  16255. {
  16256. name: "Megamacro",
  16257. height: math.unit(500, "miles")
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16263. {
  16264. front: {
  16265. height: math.unit(6, "feet"),
  16266. weight: math.unit(150, "lb"),
  16267. name: "Front",
  16268. image: {
  16269. source: "./media/characters/felix/front.svg",
  16270. extra: 762 / 722,
  16271. bottom: 0.02
  16272. }
  16273. },
  16274. frontClothed: {
  16275. height: math.unit(6, "feet"),
  16276. weight: math.unit(150, "lb"),
  16277. name: "Front (Clothed)",
  16278. image: {
  16279. source: "./media/characters/felix/front-clothed.svg",
  16280. extra: 762 / 722,
  16281. bottom: 0.02
  16282. }
  16283. },
  16284. },
  16285. [
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(6 + 8 / 12, "feet"),
  16289. default: true
  16290. },
  16291. {
  16292. name: "Macro",
  16293. height: math.unit(2600, "feet")
  16294. },
  16295. {
  16296. name: "Megamacro",
  16297. height: math.unit(450, "miles")
  16298. },
  16299. ]
  16300. ))
  16301. characterMakers.push(() => makeCharacter(
  16302. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16303. {
  16304. front: {
  16305. height: math.unit(6 + 1 / 12, "feet"),
  16306. weight: math.unit(250, "lb"),
  16307. name: "Front",
  16308. image: {
  16309. source: "./media/characters/tobo/front.svg",
  16310. extra: 608 / 586,
  16311. bottom: 0.023
  16312. }
  16313. },
  16314. back: {
  16315. height: math.unit(6 + 1 / 12, "feet"),
  16316. weight: math.unit(250, "lb"),
  16317. name: "Back",
  16318. image: {
  16319. source: "./media/characters/tobo/back.svg",
  16320. extra: 608 / 586
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Nano",
  16327. height: math.unit(2, "nm")
  16328. },
  16329. {
  16330. name: "Megamicro",
  16331. height: math.unit(0.1, "mm")
  16332. },
  16333. {
  16334. name: "Micro",
  16335. height: math.unit(1, "inch"),
  16336. default: true
  16337. },
  16338. {
  16339. name: "Human-sized",
  16340. height: math.unit(6 + 1 / 12, "feet")
  16341. },
  16342. {
  16343. name: "Macro",
  16344. height: math.unit(250, "feet")
  16345. },
  16346. {
  16347. name: "Megamacro",
  16348. height: math.unit(75, "miles")
  16349. },
  16350. {
  16351. name: "Texas-sized",
  16352. height: math.unit(750, "miles")
  16353. },
  16354. {
  16355. name: "Teramacro",
  16356. height: math.unit(50000, "miles")
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(6, "feet"),
  16365. weight: math.unit(269, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/danny-kapowsky/front.svg",
  16369. extra: 766 / 736,
  16370. bottom: 0.044
  16371. }
  16372. },
  16373. back: {
  16374. height: math.unit(6, "feet"),
  16375. weight: math.unit(269, "lb"),
  16376. name: "Back",
  16377. image: {
  16378. source: "./media/characters/danny-kapowsky/back.svg",
  16379. extra: 797 / 760,
  16380. bottom: 0.025
  16381. }
  16382. },
  16383. },
  16384. [
  16385. {
  16386. name: "Macro",
  16387. height: math.unit(150, "feet"),
  16388. default: true
  16389. },
  16390. {
  16391. name: "Macro+",
  16392. height: math.unit(200, "feet")
  16393. },
  16394. {
  16395. name: "Macro++",
  16396. height: math.unit(300, "feet")
  16397. },
  16398. {
  16399. name: "Macro+++",
  16400. height: math.unit(400, "feet")
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16406. {
  16407. side: {
  16408. height: math.unit(6, "feet"),
  16409. weight: math.unit(170, "lb"),
  16410. name: "Side",
  16411. image: {
  16412. source: "./media/characters/finn/side.svg",
  16413. extra: 1953 / 1807,
  16414. bottom: 0.057
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Megamacro",
  16421. height: math.unit(14445, "feet"),
  16422. default: true
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16428. {
  16429. front: {
  16430. height: math.unit(5 + 6 / 12, "feet"),
  16431. weight: math.unit(125, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/roy/front.svg",
  16435. extra: 1,
  16436. bottom: 0.11
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Micro",
  16443. height: math.unit(3, "inches"),
  16444. default: true
  16445. },
  16446. {
  16447. name: "Normal",
  16448. height: math.unit(5 + 6 / 12, "feet")
  16449. },
  16450. {
  16451. name: "Lesser Macro",
  16452. height: math.unit(60, "feet")
  16453. },
  16454. {
  16455. name: "Greater Macro",
  16456. height: math.unit(120, "feet")
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16462. {
  16463. front: {
  16464. height: math.unit(6, "feet"),
  16465. weight: math.unit(100, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/aevsivs/front.svg",
  16469. extra: 1,
  16470. bottom: 0.03
  16471. }
  16472. },
  16473. back: {
  16474. height: math.unit(6, "feet"),
  16475. weight: math.unit(100, "lb"),
  16476. name: "Back",
  16477. image: {
  16478. source: "./media/characters/aevsivs/back.svg"
  16479. }
  16480. },
  16481. },
  16482. [
  16483. {
  16484. name: "Micro",
  16485. height: math.unit(2, "inches"),
  16486. default: true
  16487. },
  16488. {
  16489. name: "Normal",
  16490. height: math.unit(5, "feet")
  16491. },
  16492. ]
  16493. ))
  16494. characterMakers.push(() => makeCharacter(
  16495. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16496. {
  16497. front: {
  16498. height: math.unit(5 + 7 / 12, "feet"),
  16499. weight: math.unit(159, "lb"),
  16500. name: "Front",
  16501. image: {
  16502. source: "./media/characters/hildegard/front.svg",
  16503. extra: 289 / 269,
  16504. bottom: 7.63 / 297.8
  16505. }
  16506. },
  16507. back: {
  16508. height: math.unit(5 + 7 / 12, "feet"),
  16509. weight: math.unit(159, "lb"),
  16510. name: "Back",
  16511. image: {
  16512. source: "./media/characters/hildegard/back.svg",
  16513. extra: 280 / 260,
  16514. bottom: 2.3 / 282
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(5 + 7 / 12, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16528. {
  16529. bernard: {
  16530. height: math.unit(2 + 7 / 12, "feet"),
  16531. weight: math.unit(66, "lb"),
  16532. name: "Bernard",
  16533. rename: true,
  16534. image: {
  16535. source: "./media/characters/bernard-wilder/bernard.svg",
  16536. extra: 192 / 128,
  16537. bottom: 0.05
  16538. }
  16539. },
  16540. wilder: {
  16541. height: math.unit(5 + 8 / 12, "feet"),
  16542. weight: math.unit(143, "lb"),
  16543. name: "Wilder",
  16544. rename: true,
  16545. image: {
  16546. source: "./media/characters/bernard-wilder/wilder.svg",
  16547. extra: 361 / 312,
  16548. bottom: 0.02
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(2 + 7 / 12, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16562. {
  16563. anthro: {
  16564. height: math.unit(6 + 1 / 12, "feet"),
  16565. weight: math.unit(155, "lb"),
  16566. name: "Anthro",
  16567. image: {
  16568. source: "./media/characters/hearth/anthro.svg",
  16569. extra: 1178/1136,
  16570. bottom: 28/1206
  16571. }
  16572. },
  16573. feral: {
  16574. height: math.unit(3.78, "feet"),
  16575. weight: math.unit(35, "kg"),
  16576. name: "Feral",
  16577. image: {
  16578. source: "./media/characters/hearth/feral.svg",
  16579. extra: 153 / 135,
  16580. bottom: 0.03
  16581. }
  16582. },
  16583. },
  16584. [
  16585. {
  16586. name: "Normal",
  16587. height: math.unit(6 + 1 / 12, "feet"),
  16588. default: true
  16589. },
  16590. ]
  16591. ))
  16592. characterMakers.push(() => makeCharacter(
  16593. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16594. {
  16595. front: {
  16596. height: math.unit(6, "feet"),
  16597. weight: math.unit(182, "lb"),
  16598. name: "Front",
  16599. image: {
  16600. source: "./media/characters/ingrid/front.svg",
  16601. extra: 294 / 268,
  16602. bottom: 0.027
  16603. }
  16604. },
  16605. },
  16606. [
  16607. {
  16608. name: "Normal",
  16609. height: math.unit(6, "feet"),
  16610. default: true
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16616. {
  16617. eevee: {
  16618. height: math.unit(2 + 10 / 12, "feet"),
  16619. weight: math.unit(86, "lb"),
  16620. name: "Malgam",
  16621. image: {
  16622. source: "./media/characters/malgam/eevee.svg",
  16623. extra: 952/784,
  16624. bottom: 38/990
  16625. }
  16626. },
  16627. sylveon: {
  16628. height: math.unit(4, "feet"),
  16629. weight: math.unit(101, "lb"),
  16630. name: "Future Malgam",
  16631. rename: true,
  16632. image: {
  16633. source: "./media/characters/malgam/sylveon.svg",
  16634. extra: 371 / 325,
  16635. bottom: 0.015
  16636. }
  16637. },
  16638. gigantamax: {
  16639. height: math.unit(50, "feet"),
  16640. name: "Gigantamax Malgam",
  16641. rename: true,
  16642. image: {
  16643. source: "./media/characters/malgam/gigantamax.svg"
  16644. }
  16645. },
  16646. },
  16647. [
  16648. {
  16649. name: "Normal",
  16650. height: math.unit(2 + 10 / 12, "feet"),
  16651. default: true
  16652. },
  16653. ]
  16654. ))
  16655. characterMakers.push(() => makeCharacter(
  16656. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16657. {
  16658. front: {
  16659. height: math.unit(5 + 11 / 12, "feet"),
  16660. weight: math.unit(188, "lb"),
  16661. name: "Front",
  16662. image: {
  16663. source: "./media/characters/fleur/front.svg",
  16664. extra: 309 / 283,
  16665. bottom: 0.007
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Normal",
  16672. height: math.unit(5 + 11 / 12, "feet"),
  16673. default: true
  16674. },
  16675. ]
  16676. ))
  16677. characterMakers.push(() => makeCharacter(
  16678. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16679. {
  16680. front: {
  16681. height: math.unit(5 + 4 / 12, "feet"),
  16682. weight: math.unit(122, "lb"),
  16683. name: "Front",
  16684. image: {
  16685. source: "./media/characters/jude/front.svg",
  16686. extra: 288 / 273,
  16687. bottom: 0.03
  16688. }
  16689. },
  16690. },
  16691. [
  16692. {
  16693. name: "Normal",
  16694. height: math.unit(5 + 4 / 12, "feet"),
  16695. default: true
  16696. },
  16697. ]
  16698. ))
  16699. characterMakers.push(() => makeCharacter(
  16700. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16701. {
  16702. front: {
  16703. height: math.unit(5 + 11 / 12, "feet"),
  16704. weight: math.unit(190, "lb"),
  16705. name: "Front",
  16706. image: {
  16707. source: "./media/characters/seara/front.svg",
  16708. extra: 1,
  16709. bottom: 0.05
  16710. }
  16711. },
  16712. },
  16713. [
  16714. {
  16715. name: "Normal",
  16716. height: math.unit(5 + 11 / 12, "feet"),
  16717. default: true
  16718. },
  16719. ]
  16720. ))
  16721. characterMakers.push(() => makeCharacter(
  16722. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16723. {
  16724. front: {
  16725. height: math.unit(16 + 5 / 12, "feet"),
  16726. weight: math.unit(524, "lb"),
  16727. name: "Front",
  16728. image: {
  16729. source: "./media/characters/caspian-lugia/front.svg",
  16730. extra: 1,
  16731. bottom: 0.04
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Normal",
  16738. height: math.unit(16 + 5 / 12, "feet"),
  16739. default: true
  16740. },
  16741. ]
  16742. ))
  16743. characterMakers.push(() => makeCharacter(
  16744. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16745. {
  16746. front: {
  16747. height: math.unit(5 + 7 / 12, "feet"),
  16748. weight: math.unit(170, "lb"),
  16749. name: "Front",
  16750. image: {
  16751. source: "./media/characters/mika/front.svg",
  16752. extra: 1,
  16753. bottom: 0.016
  16754. }
  16755. },
  16756. },
  16757. [
  16758. {
  16759. name: "Normal",
  16760. height: math.unit(5 + 7 / 12, "feet"),
  16761. default: true
  16762. },
  16763. ]
  16764. ))
  16765. characterMakers.push(() => makeCharacter(
  16766. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16767. {
  16768. front: {
  16769. height: math.unit(6 + 2 / 12, "feet"),
  16770. weight: math.unit(268, "lb"),
  16771. name: "Front",
  16772. image: {
  16773. source: "./media/characters/sol/front.svg",
  16774. extra: 247 / 231,
  16775. bottom: 0.05
  16776. }
  16777. },
  16778. },
  16779. [
  16780. {
  16781. name: "Normal",
  16782. height: math.unit(6 + 2 / 12, "feet"),
  16783. default: true
  16784. },
  16785. ]
  16786. ))
  16787. characterMakers.push(() => makeCharacter(
  16788. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16789. {
  16790. buizel: {
  16791. height: math.unit(2 + 5 / 12, "feet"),
  16792. weight: math.unit(87, "lb"),
  16793. name: "Front",
  16794. image: {
  16795. source: "./media/characters/umiko/buizel.svg",
  16796. extra: 172 / 157,
  16797. bottom: 0.01
  16798. },
  16799. form: "buizel",
  16800. default: true
  16801. },
  16802. floatzel: {
  16803. height: math.unit(5 + 9 / 12, "feet"),
  16804. weight: math.unit(250, "lb"),
  16805. name: "Front",
  16806. image: {
  16807. source: "./media/characters/umiko/floatzel.svg",
  16808. extra: 1076/1006,
  16809. bottom: 15/1091
  16810. },
  16811. form: "floatzel",
  16812. default: true
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(2 + 5 / 12, "feet"),
  16819. form: "buizel",
  16820. default: true
  16821. },
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(5 + 9 / 12, "feet"),
  16825. form: "floatzel",
  16826. default: true
  16827. },
  16828. ],
  16829. {
  16830. "buizel": {
  16831. name: "Buizel"
  16832. },
  16833. "floatzel": {
  16834. name: "Floatzel",
  16835. default: true
  16836. }
  16837. }
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16841. {
  16842. front: {
  16843. height: math.unit(6 + 2 / 12, "feet"),
  16844. weight: math.unit(146, "lb"),
  16845. name: "Front",
  16846. image: {
  16847. source: "./media/characters/iliac/front.svg",
  16848. extra: 389 / 365,
  16849. bottom: 0.035
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Normal",
  16856. height: math.unit(6 + 2 / 12, "feet"),
  16857. default: true
  16858. },
  16859. ]
  16860. ))
  16861. characterMakers.push(() => makeCharacter(
  16862. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16863. {
  16864. front: {
  16865. height: math.unit(6, "feet"),
  16866. weight: math.unit(170, "lb"),
  16867. name: "Front",
  16868. image: {
  16869. source: "./media/characters/topaz/front.svg",
  16870. extra: 317 / 303,
  16871. bottom: 0.055
  16872. }
  16873. },
  16874. },
  16875. [
  16876. {
  16877. name: "Normal",
  16878. height: math.unit(6, "feet"),
  16879. default: true
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16885. {
  16886. front: {
  16887. height: math.unit(5 + 11 / 12, "feet"),
  16888. weight: math.unit(144, "lb"),
  16889. name: "Front",
  16890. image: {
  16891. source: "./media/characters/gabriel/front.svg",
  16892. extra: 285 / 262,
  16893. bottom: 0.004
  16894. }
  16895. },
  16896. },
  16897. [
  16898. {
  16899. name: "Normal",
  16900. height: math.unit(5 + 11 / 12, "feet"),
  16901. default: true
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16907. {
  16908. side: {
  16909. height: math.unit(6 + 5 / 12, "feet"),
  16910. weight: math.unit(300, "lb"),
  16911. name: "Side",
  16912. image: {
  16913. source: "./media/characters/tempest-suicune/side.svg",
  16914. extra: 195 / 154,
  16915. bottom: 0.04
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Normal",
  16922. height: math.unit(6 + 5 / 12, "feet"),
  16923. default: true
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16929. {
  16930. front: {
  16931. height: math.unit(7 + 2 / 12, "feet"),
  16932. weight: math.unit(322, "lb"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/vulcan/front.svg",
  16936. extra: 154 / 147,
  16937. bottom: 0.04
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(7 + 2 / 12, "feet"),
  16945. default: true
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16951. {
  16952. front: {
  16953. height: math.unit(5 + 10 / 12, "feet"),
  16954. weight: math.unit(264, "lb"),
  16955. name: "Front",
  16956. image: {
  16957. source: "./media/characters/gault/front.svg",
  16958. extra: 161 / 140,
  16959. bottom: 0.028
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(5 + 10 / 12, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(6, "feet"),
  16976. weight: math.unit(150, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/shard/front.svg",
  16980. extra: 273 / 238,
  16981. bottom: 0.02
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Normal",
  16988. height: math.unit(3 + 6 / 12, "feet"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16995. {
  16996. front: {
  16997. height: math.unit(5 + 11 / 12, "feet"),
  16998. weight: math.unit(146, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/ashe/front.svg",
  17002. extra: 400 / 373,
  17003. bottom: 0.01
  17004. }
  17005. },
  17006. },
  17007. [
  17008. {
  17009. name: "Normal",
  17010. height: math.unit(5 + 11 / 12, "feet"),
  17011. default: true
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17017. {
  17018. front: {
  17019. height: math.unit(5 + 5 / 12, "feet"),
  17020. weight: math.unit(135, "lb"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/beatrix/front.svg",
  17024. extra: 392 / 379,
  17025. bottom: 0.01
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Normal",
  17032. height: math.unit(6, "feet"),
  17033. default: true
  17034. },
  17035. ]
  17036. ))
  17037. characterMakers.push(() => makeCharacter(
  17038. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17039. {
  17040. front: {
  17041. height: math.unit(6 + 2/12, "feet"),
  17042. weight: math.unit(135, "lb"),
  17043. name: "Front",
  17044. image: {
  17045. source: "./media/characters/ignatius/front.svg",
  17046. extra: 1380/1259,
  17047. bottom: 27/1407
  17048. }
  17049. },
  17050. },
  17051. [
  17052. {
  17053. name: "Normal",
  17054. height: math.unit(6 + 2/12, "feet"),
  17055. default: true
  17056. },
  17057. ]
  17058. ))
  17059. characterMakers.push(() => makeCharacter(
  17060. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17061. {
  17062. front: {
  17063. height: math.unit(6 + 2 / 12, "feet"),
  17064. weight: math.unit(138, "lb"),
  17065. name: "Front",
  17066. image: {
  17067. source: "./media/characters/mei-li/front.svg",
  17068. extra: 237 / 229,
  17069. bottom: 0.03
  17070. }
  17071. },
  17072. },
  17073. [
  17074. {
  17075. name: "Normal",
  17076. height: math.unit(6 + 2 / 12, "feet"),
  17077. default: true
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17083. {
  17084. front: {
  17085. height: math.unit(2 + 4 / 12, "feet"),
  17086. weight: math.unit(62, "lb"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/puru/front.svg",
  17090. extra: 206 / 149,
  17091. bottom: 0.06
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(2 + 4 / 12, "feet"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17105. {
  17106. anthro: {
  17107. height: math.unit(5 + 8/12, "feet"),
  17108. weight: math.unit(200, "lb"),
  17109. energyNeed: math.unit(2000, "kcal"),
  17110. name: "Anthro",
  17111. image: {
  17112. source: "./media/characters/kee/anthro.svg",
  17113. extra: 3251/3184,
  17114. bottom: 250/3501
  17115. }
  17116. },
  17117. taur: {
  17118. height: math.unit(11, "feet"),
  17119. weight: math.unit(500, "lb"),
  17120. energyNeed: math.unit(5000, "kcal"),
  17121. name: "Taur",
  17122. image: {
  17123. source: "./media/characters/kee/taur.svg",
  17124. extra: 1362/1320,
  17125. bottom: 83/1445
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(5 + 8/12, "feet"),
  17133. default: true
  17134. },
  17135. {
  17136. name: "Macro",
  17137. height: math.unit(35, "feet")
  17138. },
  17139. ]
  17140. ))
  17141. characterMakers.push(() => makeCharacter(
  17142. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17143. {
  17144. anthro: {
  17145. height: math.unit(7, "feet"),
  17146. weight: math.unit(190, "lb"),
  17147. name: "Anthro",
  17148. image: {
  17149. source: "./media/characters/cobalt-dracha/anthro.svg",
  17150. extra: 231 / 225,
  17151. bottom: 0.04
  17152. }
  17153. },
  17154. feral: {
  17155. height: math.unit(9 + 7 / 12, "feet"),
  17156. weight: math.unit(294, "lb"),
  17157. name: "Feral",
  17158. image: {
  17159. source: "./media/characters/cobalt-dracha/feral.svg",
  17160. extra: 692 / 633,
  17161. bottom: 0.05
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Normal",
  17168. height: math.unit(7, "feet"),
  17169. default: true
  17170. },
  17171. ]
  17172. ))
  17173. characterMakers.push(() => makeCharacter(
  17174. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17175. {
  17176. fallen: {
  17177. height: math.unit(11 + 8 / 12, "feet"),
  17178. weight: math.unit(485, "lb"),
  17179. name: "Java (Fallen)",
  17180. rename: true,
  17181. image: {
  17182. source: "./media/characters/java/fallen.svg",
  17183. extra: 226 / 208,
  17184. bottom: 0.005
  17185. }
  17186. },
  17187. godkin: {
  17188. height: math.unit(10 + 6 / 12, "feet"),
  17189. weight: math.unit(328, "lb"),
  17190. name: "Java (Godkin)",
  17191. rename: true,
  17192. image: {
  17193. source: "./media/characters/java/godkin.svg",
  17194. extra: 1104/1068,
  17195. bottom: 36/1140
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(11 + 8 / 12, "feet"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17209. {
  17210. front: {
  17211. height: math.unit(5 + 9 / 12, "feet"),
  17212. weight: math.unit(170, "lb"),
  17213. name: "Front",
  17214. image: {
  17215. source: "./media/characters/purna/front.svg",
  17216. extra: 239 / 229,
  17217. bottom: 0.01
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(5 + 9 / 12, "feet"),
  17225. default: true
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17231. {
  17232. front: {
  17233. height: math.unit(5 + 9 / 12, "feet"),
  17234. weight: math.unit(142, "lb"),
  17235. name: "Front",
  17236. image: {
  17237. source: "./media/characters/kuva/front.svg",
  17238. extra: 281 / 271,
  17239. bottom: 0.006
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(5 + 9 / 12, "feet"),
  17247. default: true
  17248. },
  17249. ]
  17250. ))
  17251. characterMakers.push(() => makeCharacter(
  17252. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17253. {
  17254. anthro: {
  17255. height: math.unit(9 + 2 / 12, "feet"),
  17256. weight: math.unit(270, "lb"),
  17257. name: "Anthro",
  17258. image: {
  17259. source: "./media/characters/embra/anthro.svg",
  17260. extra: 200 / 187,
  17261. bottom: 0.02
  17262. }
  17263. },
  17264. feral: {
  17265. height: math.unit(18 + 8 / 12, "feet"),
  17266. weight: math.unit(576, "lb"),
  17267. name: "Feral",
  17268. image: {
  17269. source: "./media/characters/embra/feral.svg",
  17270. extra: 152 / 137,
  17271. bottom: 0.037
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Normal",
  17278. height: math.unit(9 + 2 / 12, "feet"),
  17279. default: true
  17280. },
  17281. ]
  17282. ))
  17283. characterMakers.push(() => makeCharacter(
  17284. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17285. {
  17286. anthro: {
  17287. height: math.unit(10 + 9 / 12, "feet"),
  17288. weight: math.unit(224, "lb"),
  17289. name: "Anthro",
  17290. image: {
  17291. source: "./media/characters/grottos/anthro.svg",
  17292. extra: 350 / 332,
  17293. bottom: 0.045
  17294. }
  17295. },
  17296. feral: {
  17297. height: math.unit(20 + 7 / 12, "feet"),
  17298. weight: math.unit(629, "lb"),
  17299. name: "Feral",
  17300. image: {
  17301. source: "./media/characters/grottos/feral.svg",
  17302. extra: 207 / 190,
  17303. bottom: 0.05
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Normal",
  17310. height: math.unit(10 + 9 / 12, "feet"),
  17311. default: true
  17312. },
  17313. ]
  17314. ))
  17315. characterMakers.push(() => makeCharacter(
  17316. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17317. {
  17318. anthro: {
  17319. height: math.unit(9 + 6 / 12, "feet"),
  17320. weight: math.unit(298, "lb"),
  17321. name: "Anthro",
  17322. image: {
  17323. source: "./media/characters/frifna/anthro.svg",
  17324. extra: 282 / 269,
  17325. bottom: 0.015
  17326. }
  17327. },
  17328. feral: {
  17329. height: math.unit(16 + 2 / 12, "feet"),
  17330. weight: math.unit(624, "lb"),
  17331. name: "Feral",
  17332. image: {
  17333. source: "./media/characters/frifna/feral.svg"
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(9 + 6 / 12, "feet"),
  17341. default: true
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17347. {
  17348. front: {
  17349. height: math.unit(6 + 2 / 12, "feet"),
  17350. weight: math.unit(168, "lb"),
  17351. name: "Front",
  17352. image: {
  17353. source: "./media/characters/elise/front.svg",
  17354. extra: 276 / 271
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(6 + 2 / 12, "feet"),
  17362. default: true
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17368. {
  17369. front: {
  17370. height: math.unit(5 + 10 / 12, "feet"),
  17371. weight: math.unit(210, "lb"),
  17372. name: "Front",
  17373. image: {
  17374. source: "./media/characters/glade/front.svg",
  17375. extra: 258 / 247,
  17376. bottom: 0.008
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(5 + 10 / 12, "feet"),
  17384. default: true
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17390. {
  17391. front: {
  17392. height: math.unit(5 + 10 / 12, "feet"),
  17393. weight: math.unit(129, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/rina/front.svg",
  17397. extra: 266 / 255,
  17398. bottom: 0.005
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(5 + 10 / 12, "feet"),
  17406. default: true
  17407. },
  17408. ]
  17409. ))
  17410. characterMakers.push(() => makeCharacter(
  17411. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17412. {
  17413. front: {
  17414. height: math.unit(6 + 1 / 12, "feet"),
  17415. weight: math.unit(192, "lb"),
  17416. name: "Front",
  17417. image: {
  17418. source: "./media/characters/veronica/front.svg",
  17419. extra: 319 / 309,
  17420. bottom: 0.005
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(6 + 1 / 12, "feet"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(9 + 3 / 12, "feet"),
  17437. weight: math.unit(1100, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/braxton/front.svg",
  17441. extra: 1057 / 984,
  17442. bottom: 0.05
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(9 + 3 / 12, "feet")
  17450. },
  17451. {
  17452. name: "Giant",
  17453. height: math.unit(300, "feet"),
  17454. default: true
  17455. },
  17456. {
  17457. name: "Macro",
  17458. height: math.unit(700, "feet")
  17459. },
  17460. {
  17461. name: "Megamacro",
  17462. height: math.unit(6000, "feet")
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17468. {
  17469. front: {
  17470. height: math.unit(6 + 7 / 12, "feet"),
  17471. weight: math.unit(150, "lb"),
  17472. name: "Front",
  17473. image: {
  17474. source: "./media/characters/blue-feyonics/front.svg",
  17475. extra: 1403 / 1306,
  17476. bottom: 0.047
  17477. }
  17478. },
  17479. },
  17480. [
  17481. {
  17482. name: "Normal",
  17483. height: math.unit(6 + 7 / 12, "feet"),
  17484. default: true
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17490. {
  17491. front: {
  17492. height: math.unit(1.8, "meters"),
  17493. weight: math.unit(60, "kg"),
  17494. name: "Front",
  17495. image: {
  17496. source: "./media/characters/maxwell/front.svg",
  17497. extra: 2060 / 1873
  17498. }
  17499. },
  17500. },
  17501. [
  17502. {
  17503. name: "Micro",
  17504. height: math.unit(1, "mm")
  17505. },
  17506. {
  17507. name: "Normal",
  17508. height: math.unit(1.8, "meter"),
  17509. default: true
  17510. },
  17511. {
  17512. name: "Macro",
  17513. height: math.unit(30, "meters")
  17514. },
  17515. {
  17516. name: "Megamacro",
  17517. height: math.unit(10, "km")
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17523. {
  17524. front: {
  17525. height: math.unit(6, "feet"),
  17526. weight: math.unit(150, "lb"),
  17527. name: "Front",
  17528. image: {
  17529. source: "./media/characters/jack/front.svg",
  17530. extra: 1754 / 1640,
  17531. bottom: 0.01
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Normal",
  17538. height: math.unit(80000, "feet"),
  17539. default: true
  17540. },
  17541. {
  17542. name: "Max size",
  17543. height: math.unit(10, "lightyears")
  17544. },
  17545. ]
  17546. ))
  17547. characterMakers.push(() => makeCharacter(
  17548. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17549. {
  17550. urban: {
  17551. height: math.unit(5, "feet"),
  17552. weight: math.unit(240, "lb"),
  17553. name: "Urban",
  17554. image: {
  17555. source: "./media/characters/cafat/urban.svg",
  17556. extra: 1223/1126,
  17557. bottom: 205/1428
  17558. }
  17559. },
  17560. summer: {
  17561. height: math.unit(5, "feet"),
  17562. weight: math.unit(240, "lb"),
  17563. name: "Summer",
  17564. image: {
  17565. source: "./media/characters/cafat/summer.svg",
  17566. extra: 1223/1126,
  17567. bottom: 205/1428
  17568. }
  17569. },
  17570. winter: {
  17571. height: math.unit(5, "feet"),
  17572. weight: math.unit(240, "lb"),
  17573. name: "Winter",
  17574. image: {
  17575. source: "./media/characters/cafat/winter.svg",
  17576. extra: 1223/1126,
  17577. bottom: 205/1428
  17578. }
  17579. },
  17580. lingerie: {
  17581. height: math.unit(5, "feet"),
  17582. weight: math.unit(240, "lb"),
  17583. name: "Lingerie",
  17584. image: {
  17585. source: "./media/characters/cafat/lingerie.svg",
  17586. extra: 1223/1126,
  17587. bottom: 205/1428
  17588. }
  17589. },
  17590. upright: {
  17591. height: math.unit(6.3, "feet"),
  17592. weight: math.unit(240, "lb"),
  17593. name: "Upright",
  17594. image: {
  17595. source: "./media/characters/cafat/upright.svg",
  17596. bottom: 0.01
  17597. }
  17598. },
  17599. uprightFull: {
  17600. height: math.unit(6.3, "feet"),
  17601. weight: math.unit(240, "lb"),
  17602. name: "Upright (Full)",
  17603. image: {
  17604. source: "./media/characters/cafat/upright-full.svg",
  17605. bottom: 0.01
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Small",
  17612. height: math.unit(5, "feet"),
  17613. default: true
  17614. },
  17615. {
  17616. name: "Large",
  17617. height: math.unit(13, "feet")
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17623. {
  17624. front: {
  17625. height: math.unit(6, "feet"),
  17626. weight: math.unit(150, "lb"),
  17627. name: "Front",
  17628. image: {
  17629. source: "./media/characters/verin-raharra/front.svg",
  17630. extra: 5019 / 4835,
  17631. bottom: 0.023
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Normal",
  17638. height: math.unit(7 + 5 / 12, "feet"),
  17639. default: true
  17640. },
  17641. {
  17642. name: "Upsized",
  17643. height: math.unit(20, "feet")
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17649. {
  17650. front: {
  17651. height: math.unit(7, "feet"),
  17652. weight: math.unit(230, "lb"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/nakata/front.svg",
  17656. extra: 1.005,
  17657. bottom: 0.01
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Normal",
  17664. height: math.unit(7, "feet"),
  17665. default: true
  17666. },
  17667. {
  17668. name: "Big",
  17669. height: math.unit(14, "feet")
  17670. },
  17671. {
  17672. name: "Macro",
  17673. height: math.unit(400, "feet")
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17679. {
  17680. front: {
  17681. height: math.unit(4.91, "feet"),
  17682. weight: math.unit(100, "lb"),
  17683. name: "Front",
  17684. image: {
  17685. source: "./media/characters/lily/front.svg",
  17686. extra: 1585 / 1415,
  17687. bottom: 0.02
  17688. }
  17689. },
  17690. },
  17691. [
  17692. {
  17693. name: "Normal",
  17694. height: math.unit(4.91, "feet"),
  17695. default: true
  17696. },
  17697. ]
  17698. ))
  17699. characterMakers.push(() => makeCharacter(
  17700. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17701. {
  17702. laying: {
  17703. height: math.unit(4 + 4 / 12, "feet"),
  17704. weight: math.unit(600, "lb"),
  17705. name: "Laying",
  17706. image: {
  17707. source: "./media/characters/sheila/laying.svg",
  17708. extra: 1333 / 1265,
  17709. bottom: 0.16
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(4 + 4 / 12, "feet"),
  17717. default: true
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17723. {
  17724. front: {
  17725. height: math.unit(6, "feet"),
  17726. weight: math.unit(190, "lb"),
  17727. name: "Front",
  17728. image: {
  17729. source: "./media/characters/sax/front.svg",
  17730. extra: 1187 / 973,
  17731. bottom: 0.042
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Micro",
  17738. height: math.unit(4, "inches"),
  17739. default: true
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(6, "feet"),
  17748. weight: math.unit(150, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/pandora/front.svg",
  17752. extra: 2720 / 2556,
  17753. bottom: 0.015
  17754. }
  17755. },
  17756. back: {
  17757. height: math.unit(6, "feet"),
  17758. weight: math.unit(150, "lb"),
  17759. name: "Back",
  17760. image: {
  17761. source: "./media/characters/pandora/back.svg",
  17762. extra: 2720 / 2556,
  17763. bottom: 0.01
  17764. }
  17765. },
  17766. beans: {
  17767. height: math.unit(6 / 8, "feet"),
  17768. name: "Beans",
  17769. image: {
  17770. source: "./media/characters/pandora/beans.svg"
  17771. }
  17772. },
  17773. collar: {
  17774. height: math.unit(0.31, "feet"),
  17775. name: "Collar",
  17776. image: {
  17777. source: "./media/characters/pandora/collar.svg"
  17778. }
  17779. },
  17780. skirt: {
  17781. height: math.unit(6, "feet"),
  17782. weight: math.unit(150, "lb"),
  17783. name: "Skirt",
  17784. image: {
  17785. source: "./media/characters/pandora/skirt.svg",
  17786. extra: 1622 / 1525,
  17787. bottom: 0.015
  17788. }
  17789. },
  17790. hoodie: {
  17791. height: math.unit(6, "feet"),
  17792. weight: math.unit(150, "lb"),
  17793. name: "Hoodie",
  17794. image: {
  17795. source: "./media/characters/pandora/hoodie.svg",
  17796. extra: 1622 / 1525,
  17797. bottom: 0.015
  17798. }
  17799. },
  17800. casual: {
  17801. height: math.unit(6, "feet"),
  17802. weight: math.unit(150, "lb"),
  17803. name: "Casual",
  17804. image: {
  17805. source: "./media/characters/pandora/casual.svg",
  17806. extra: 1622 / 1525,
  17807. bottom: 0.015
  17808. }
  17809. },
  17810. },
  17811. [
  17812. {
  17813. name: "Normal",
  17814. height: math.unit(6, "feet")
  17815. },
  17816. {
  17817. name: "Big Steppy",
  17818. height: math.unit(1, "km"),
  17819. default: true
  17820. },
  17821. {
  17822. name: "Galactic Steppy",
  17823. height: math.unit(2, "gigameters")
  17824. },
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17829. {
  17830. side: {
  17831. height: math.unit(10, "feet"),
  17832. weight: math.unit(800, "kg"),
  17833. name: "Side",
  17834. image: {
  17835. source: "./media/characters/venio-darcony/side.svg",
  17836. extra: 1373 / 1003,
  17837. bottom: 0.037
  17838. }
  17839. },
  17840. front: {
  17841. height: math.unit(19, "feet"),
  17842. weight: math.unit(800, "kg"),
  17843. name: "Front",
  17844. image: {
  17845. source: "./media/characters/venio-darcony/front.svg"
  17846. }
  17847. },
  17848. back: {
  17849. height: math.unit(19, "feet"),
  17850. weight: math.unit(800, "kg"),
  17851. name: "Back",
  17852. image: {
  17853. source: "./media/characters/venio-darcony/back.svg"
  17854. }
  17855. },
  17856. sideNsfw: {
  17857. height: math.unit(10, "feet"),
  17858. weight: math.unit(800, "kg"),
  17859. name: "Side (NSFW)",
  17860. image: {
  17861. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17862. extra: 1373 / 1003,
  17863. bottom: 0.037
  17864. }
  17865. },
  17866. frontNsfw: {
  17867. height: math.unit(19, "feet"),
  17868. weight: math.unit(800, "kg"),
  17869. name: "Front (NSFW)",
  17870. image: {
  17871. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17872. }
  17873. },
  17874. backNsfw: {
  17875. height: math.unit(19, "feet"),
  17876. weight: math.unit(800, "kg"),
  17877. name: "Back (NSFW)",
  17878. image: {
  17879. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17880. }
  17881. },
  17882. sideArmored: {
  17883. height: math.unit(10, "feet"),
  17884. weight: math.unit(800, "kg"),
  17885. name: "Side (Armored)",
  17886. image: {
  17887. source: "./media/characters/venio-darcony/side-armored.svg",
  17888. extra: 1373 / 1003,
  17889. bottom: 0.037
  17890. }
  17891. },
  17892. frontArmored: {
  17893. height: math.unit(19, "feet"),
  17894. weight: math.unit(900, "kg"),
  17895. name: "Front (Armored)",
  17896. image: {
  17897. source: "./media/characters/venio-darcony/front-armored.svg"
  17898. }
  17899. },
  17900. backArmored: {
  17901. height: math.unit(19, "feet"),
  17902. weight: math.unit(900, "kg"),
  17903. name: "Back (Armored)",
  17904. image: {
  17905. source: "./media/characters/venio-darcony/back-armored.svg"
  17906. }
  17907. },
  17908. sword: {
  17909. height: math.unit(10, "feet"),
  17910. weight: math.unit(50, "lb"),
  17911. name: "Sword",
  17912. image: {
  17913. source: "./media/characters/venio-darcony/sword.svg"
  17914. }
  17915. },
  17916. },
  17917. [
  17918. {
  17919. name: "Normal",
  17920. height: math.unit(10, "feet")
  17921. },
  17922. {
  17923. name: "Macro",
  17924. height: math.unit(130, "feet"),
  17925. default: true
  17926. },
  17927. {
  17928. name: "Macro+",
  17929. height: math.unit(240, "feet")
  17930. },
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17935. {
  17936. front: {
  17937. height: math.unit(6, "feet"),
  17938. weight: math.unit(150, "lb"),
  17939. name: "Front",
  17940. image: {
  17941. source: "./media/characters/veski/front.svg",
  17942. extra: 1299 / 1225,
  17943. bottom: 0.04
  17944. }
  17945. },
  17946. back: {
  17947. height: math.unit(6, "feet"),
  17948. weight: math.unit(150, "lb"),
  17949. name: "Back",
  17950. image: {
  17951. source: "./media/characters/veski/back.svg",
  17952. extra: 1299 / 1225,
  17953. bottom: 0.008
  17954. }
  17955. },
  17956. maw: {
  17957. height: math.unit(1.5 * 1.21, "feet"),
  17958. name: "Maw",
  17959. image: {
  17960. source: "./media/characters/veski/maw.svg"
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Macro",
  17967. height: math.unit(2, "km"),
  17968. default: true
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17974. {
  17975. front: {
  17976. height: math.unit(5 + 7 / 12, "feet"),
  17977. name: "Front",
  17978. image: {
  17979. source: "./media/characters/isabelle/front.svg",
  17980. extra: 2130 / 1976,
  17981. bottom: 0.05
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Supermicro",
  17988. height: math.unit(10, "micrometers")
  17989. },
  17990. {
  17991. name: "Micro",
  17992. height: math.unit(1, "inch")
  17993. },
  17994. {
  17995. name: "Tiny",
  17996. height: math.unit(5, "inches")
  17997. },
  17998. {
  17999. name: "Standard",
  18000. height: math.unit(5 + 7 / 12, "inches")
  18001. },
  18002. {
  18003. name: "Macro",
  18004. height: math.unit(80, "meters"),
  18005. default: true
  18006. },
  18007. {
  18008. name: "Megamacro",
  18009. height: math.unit(250, "meters")
  18010. },
  18011. {
  18012. name: "Gigamacro",
  18013. height: math.unit(5, "km")
  18014. },
  18015. {
  18016. name: "Cosmic",
  18017. height: math.unit(2.5e6, "miles")
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18023. {
  18024. front: {
  18025. height: math.unit(6, "feet"),
  18026. weight: math.unit(150, "lb"),
  18027. name: "Front",
  18028. image: {
  18029. source: "./media/characters/hanzo/front.svg",
  18030. extra: 374 / 344,
  18031. bottom: 0.02
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(8, "feet"),
  18039. default: true
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18045. {
  18046. front: {
  18047. height: math.unit(7, "feet"),
  18048. weight: math.unit(130, "lb"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/anna/front.svg",
  18052. extra: 169 / 145,
  18053. bottom: 0.06
  18054. }
  18055. },
  18056. full: {
  18057. height: math.unit(4.96, "feet"),
  18058. weight: math.unit(220, "lb"),
  18059. name: "Full",
  18060. image: {
  18061. source: "./media/characters/anna/full.svg",
  18062. extra: 138 / 114,
  18063. bottom: 0.15
  18064. }
  18065. },
  18066. tongue: {
  18067. height: math.unit(2.53, "feet"),
  18068. name: "Tongue",
  18069. image: {
  18070. source: "./media/characters/anna/tongue.svg"
  18071. }
  18072. },
  18073. },
  18074. [
  18075. {
  18076. name: "Normal",
  18077. height: math.unit(7, "feet"),
  18078. default: true
  18079. },
  18080. ]
  18081. ))
  18082. characterMakers.push(() => makeCharacter(
  18083. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18084. {
  18085. front: {
  18086. height: math.unit(7, "feet"),
  18087. weight: math.unit(150, "lb"),
  18088. name: "Front",
  18089. image: {
  18090. source: "./media/characters/ian-corvid/front.svg",
  18091. extra: 150 / 142,
  18092. bottom: 0.02
  18093. }
  18094. },
  18095. back: {
  18096. height: math.unit(7, "feet"),
  18097. weight: math.unit(150, "lb"),
  18098. name: "Back",
  18099. image: {
  18100. source: "./media/characters/ian-corvid/back.svg",
  18101. extra: 150 / 143,
  18102. bottom: 0.01
  18103. }
  18104. },
  18105. stomping: {
  18106. height: math.unit(7, "feet"),
  18107. weight: math.unit(150, "lb"),
  18108. name: "Stomping",
  18109. image: {
  18110. source: "./media/characters/ian-corvid/stomping.svg",
  18111. extra: 76 / 72
  18112. }
  18113. },
  18114. sitting: {
  18115. height: math.unit(7 / 1.8, "feet"),
  18116. weight: math.unit(150, "lb"),
  18117. name: "Sitting",
  18118. image: {
  18119. source: "./media/characters/ian-corvid/sitting.svg",
  18120. extra: 1400 / 1269,
  18121. bottom: 0.15
  18122. }
  18123. },
  18124. },
  18125. [
  18126. {
  18127. name: "Tiny Microw",
  18128. height: math.unit(1, "inch")
  18129. },
  18130. {
  18131. name: "Microw",
  18132. height: math.unit(6, "inches")
  18133. },
  18134. {
  18135. name: "Crow",
  18136. height: math.unit(7 + 1 / 12, "feet"),
  18137. default: true
  18138. },
  18139. {
  18140. name: "Macrow",
  18141. height: math.unit(176, "feet")
  18142. },
  18143. ]
  18144. ))
  18145. characterMakers.push(() => makeCharacter(
  18146. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18147. {
  18148. front: {
  18149. height: math.unit(5 + 7 / 12, "feet"),
  18150. weight: math.unit(147, "lb"),
  18151. name: "Front",
  18152. image: {
  18153. source: "./media/characters/natalie-kellon/front.svg",
  18154. extra: 1214 / 1141,
  18155. bottom: 0.02
  18156. }
  18157. },
  18158. },
  18159. [
  18160. {
  18161. name: "Micro",
  18162. height: math.unit(1 / 16, "inch")
  18163. },
  18164. {
  18165. name: "Tiny",
  18166. height: math.unit(4, "inches")
  18167. },
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(5 + 7 / 12, "feet"),
  18171. default: true
  18172. },
  18173. {
  18174. name: "Amazon",
  18175. height: math.unit(12, "feet")
  18176. },
  18177. {
  18178. name: "Giantess",
  18179. height: math.unit(160, "meters")
  18180. },
  18181. {
  18182. name: "Titaness",
  18183. height: math.unit(800, "meters")
  18184. },
  18185. ]
  18186. ))
  18187. characterMakers.push(() => makeCharacter(
  18188. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18189. {
  18190. front: {
  18191. height: math.unit(6, "feet"),
  18192. weight: math.unit(150, "lb"),
  18193. name: "Front",
  18194. image: {
  18195. source: "./media/characters/alluria/front.svg",
  18196. extra: 806 / 738,
  18197. bottom: 0.01
  18198. }
  18199. },
  18200. side: {
  18201. height: math.unit(6, "feet"),
  18202. weight: math.unit(150, "lb"),
  18203. name: "Side",
  18204. image: {
  18205. source: "./media/characters/alluria/side.svg",
  18206. extra: 800 / 750,
  18207. }
  18208. },
  18209. back: {
  18210. height: math.unit(6, "feet"),
  18211. weight: math.unit(150, "lb"),
  18212. name: "Back",
  18213. image: {
  18214. source: "./media/characters/alluria/back.svg",
  18215. extra: 806 / 738,
  18216. }
  18217. },
  18218. frontMaid: {
  18219. height: math.unit(6, "feet"),
  18220. weight: math.unit(150, "lb"),
  18221. name: "Front (Maid)",
  18222. image: {
  18223. source: "./media/characters/alluria/front-maid.svg",
  18224. extra: 806 / 738,
  18225. bottom: 0.01
  18226. }
  18227. },
  18228. sideMaid: {
  18229. height: math.unit(6, "feet"),
  18230. weight: math.unit(150, "lb"),
  18231. name: "Side (Maid)",
  18232. image: {
  18233. source: "./media/characters/alluria/side-maid.svg",
  18234. extra: 800 / 750,
  18235. bottom: 0.005
  18236. }
  18237. },
  18238. backMaid: {
  18239. height: math.unit(6, "feet"),
  18240. weight: math.unit(150, "lb"),
  18241. name: "Back (Maid)",
  18242. image: {
  18243. source: "./media/characters/alluria/back-maid.svg",
  18244. extra: 806 / 738,
  18245. }
  18246. },
  18247. },
  18248. [
  18249. {
  18250. name: "Micro",
  18251. height: math.unit(6, "inches"),
  18252. default: true
  18253. },
  18254. ]
  18255. ))
  18256. characterMakers.push(() => makeCharacter(
  18257. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18258. {
  18259. front: {
  18260. height: math.unit(6, "feet"),
  18261. weight: math.unit(150, "lb"),
  18262. name: "Front",
  18263. image: {
  18264. source: "./media/characters/kyle/front.svg",
  18265. extra: 1069 / 962,
  18266. bottom: 77.228 / 1727.45
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Macro",
  18273. height: math.unit(150, "feet"),
  18274. default: true
  18275. },
  18276. ]
  18277. ))
  18278. characterMakers.push(() => makeCharacter(
  18279. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18280. {
  18281. front: {
  18282. height: math.unit(6, "feet"),
  18283. weight: math.unit(300, "lb"),
  18284. name: "Front",
  18285. image: {
  18286. source: "./media/characters/duncan/front.svg",
  18287. extra: 1650 / 1482,
  18288. bottom: 0.05
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Macro",
  18295. height: math.unit(100, "feet"),
  18296. default: true
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(5 + 4 / 12, "feet"),
  18305. weight: math.unit(220, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/memory/front.svg",
  18309. extra: 3641 / 3545,
  18310. bottom: 0.03
  18311. }
  18312. },
  18313. back: {
  18314. height: math.unit(5 + 4 / 12, "feet"),
  18315. weight: math.unit(220, "lb"),
  18316. name: "Back",
  18317. image: {
  18318. source: "./media/characters/memory/back.svg",
  18319. extra: 3641 / 3545,
  18320. bottom: 0.025
  18321. }
  18322. },
  18323. frontSkirt: {
  18324. height: math.unit(5 + 4 / 12, "feet"),
  18325. weight: math.unit(220, "lb"),
  18326. name: "Front (Skirt)",
  18327. image: {
  18328. source: "./media/characters/memory/front-skirt.svg",
  18329. extra: 3641 / 3545,
  18330. bottom: 0.03
  18331. }
  18332. },
  18333. frontDress: {
  18334. height: math.unit(5 + 4 / 12, "feet"),
  18335. weight: math.unit(220, "lb"),
  18336. name: "Front (Dress)",
  18337. image: {
  18338. source: "./media/characters/memory/front-dress.svg",
  18339. extra: 3641 / 3545,
  18340. bottom: 0.03
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Micro",
  18347. height: math.unit(6, "inches"),
  18348. default: true
  18349. },
  18350. {
  18351. name: "Normal",
  18352. height: math.unit(5 + 4 / 12, "feet")
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18358. {
  18359. front: {
  18360. height: math.unit(4 + 11 / 12, "feet"),
  18361. weight: math.unit(100, "lb"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/luno/front.svg",
  18365. extra: 1535 / 1487,
  18366. bottom: 0.03
  18367. }
  18368. },
  18369. },
  18370. [
  18371. {
  18372. name: "Micro",
  18373. height: math.unit(3, "inches")
  18374. },
  18375. {
  18376. name: "Normal",
  18377. height: math.unit(4 + 11 / 12, "feet"),
  18378. default: true
  18379. },
  18380. {
  18381. name: "Macro",
  18382. height: math.unit(300, "feet")
  18383. },
  18384. {
  18385. name: "Megamacro",
  18386. height: math.unit(700, "miles")
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18392. {
  18393. front: {
  18394. height: math.unit(6 + 2 / 12, "feet"),
  18395. weight: math.unit(170, "lb"),
  18396. name: "Front",
  18397. image: {
  18398. source: "./media/characters/jamesy/front.svg",
  18399. extra: 440 / 382,
  18400. bottom: 0.005
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Micro",
  18407. height: math.unit(3, "inches")
  18408. },
  18409. {
  18410. name: "Normal",
  18411. height: math.unit(6 + 2 / 12, "feet"),
  18412. default: true
  18413. },
  18414. {
  18415. name: "Macro",
  18416. height: math.unit(300, "feet")
  18417. },
  18418. {
  18419. name: "Megamacro",
  18420. height: math.unit(700, "miles")
  18421. },
  18422. ]
  18423. ))
  18424. characterMakers.push(() => makeCharacter(
  18425. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18426. {
  18427. front: {
  18428. height: math.unit(6, "feet"),
  18429. weight: math.unit(160, "lb"),
  18430. name: "Front",
  18431. image: {
  18432. source: "./media/characters/mark/front.svg",
  18433. extra: 3300 / 3100,
  18434. bottom: 136.42 / 3440.47
  18435. }
  18436. },
  18437. },
  18438. [
  18439. {
  18440. name: "Macro",
  18441. height: math.unit(120, "meters")
  18442. },
  18443. {
  18444. name: "Bigger Macro",
  18445. height: math.unit(350, "meters")
  18446. },
  18447. {
  18448. name: "Megamacro",
  18449. height: math.unit(8, "km"),
  18450. default: true
  18451. },
  18452. {
  18453. name: "Continental",
  18454. height: math.unit(4550, "km")
  18455. },
  18456. {
  18457. name: "Planetary",
  18458. height: math.unit(65000, "km")
  18459. },
  18460. ]
  18461. ))
  18462. characterMakers.push(() => makeCharacter(
  18463. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18464. {
  18465. front: {
  18466. height: math.unit(6, "feet"),
  18467. weight: math.unit(400, "lb"),
  18468. name: "Front",
  18469. image: {
  18470. source: "./media/characters/mac/front.svg",
  18471. extra: 1048 / 987.7,
  18472. bottom: 60 / 1107.6,
  18473. }
  18474. },
  18475. },
  18476. [
  18477. {
  18478. name: "Macro",
  18479. height: math.unit(500, "feet"),
  18480. default: true
  18481. },
  18482. ]
  18483. ))
  18484. characterMakers.push(() => makeCharacter(
  18485. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18486. {
  18487. front: {
  18488. height: math.unit(5 + 2 / 12, "feet"),
  18489. weight: math.unit(190, "lb"),
  18490. name: "Front",
  18491. image: {
  18492. source: "./media/characters/bari/front.svg",
  18493. extra: 3156 / 2880,
  18494. bottom: 0.03
  18495. }
  18496. },
  18497. back: {
  18498. height: math.unit(5 + 2 / 12, "feet"),
  18499. weight: math.unit(190, "lb"),
  18500. name: "Back",
  18501. image: {
  18502. source: "./media/characters/bari/back.svg",
  18503. extra: 3260 / 2834,
  18504. bottom: 0.025
  18505. }
  18506. },
  18507. frontPlush: {
  18508. height: math.unit(5 + 2 / 12, "feet"),
  18509. weight: math.unit(190, "lb"),
  18510. name: "Front (Plush)",
  18511. image: {
  18512. source: "./media/characters/bari/front-plush.svg",
  18513. extra: 1112 / 1061,
  18514. bottom: 0.002
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Micro",
  18521. height: math.unit(3, "inches")
  18522. },
  18523. {
  18524. name: "Normal",
  18525. height: math.unit(5 + 2 / 12, "feet"),
  18526. default: true
  18527. },
  18528. {
  18529. name: "Macro",
  18530. height: math.unit(20, "feet")
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18536. {
  18537. front: {
  18538. height: math.unit(6 + 1 / 12, "feet"),
  18539. weight: math.unit(275, "lb"),
  18540. name: "Front",
  18541. image: {
  18542. source: "./media/characters/hunter-misha-raven/front.svg"
  18543. }
  18544. },
  18545. },
  18546. [
  18547. {
  18548. name: "Mortal",
  18549. height: math.unit(6 + 1 / 12, "feet")
  18550. },
  18551. {
  18552. name: "Divine",
  18553. height: math.unit(1.12134e34, "parsecs"),
  18554. default: true
  18555. },
  18556. ]
  18557. ))
  18558. characterMakers.push(() => makeCharacter(
  18559. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18560. {
  18561. front: {
  18562. height: math.unit(6 + 3 / 12, "feet"),
  18563. weight: math.unit(220, "lb"),
  18564. name: "Front",
  18565. image: {
  18566. source: "./media/characters/max-calore/front.svg",
  18567. extra: 1700 / 1648,
  18568. bottom: 0.01
  18569. }
  18570. },
  18571. back: {
  18572. height: math.unit(6 + 3 / 12, "feet"),
  18573. weight: math.unit(220, "lb"),
  18574. name: "Back",
  18575. image: {
  18576. source: "./media/characters/max-calore/back.svg",
  18577. extra: 1700 / 1648,
  18578. bottom: 0.01
  18579. }
  18580. },
  18581. },
  18582. [
  18583. {
  18584. name: "Normal",
  18585. height: math.unit(6 + 3 / 12, "feet"),
  18586. default: true
  18587. },
  18588. ]
  18589. ))
  18590. characterMakers.push(() => makeCharacter(
  18591. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18592. {
  18593. side: {
  18594. height: math.unit(2 + 8 / 12, "feet"),
  18595. weight: math.unit(99, "lb"),
  18596. name: "Side",
  18597. image: {
  18598. source: "./media/characters/aspen/side.svg",
  18599. extra: 152 / 138,
  18600. bottom: 0.032
  18601. }
  18602. },
  18603. },
  18604. [
  18605. {
  18606. name: "Normal",
  18607. height: math.unit(2 + 8 / 12, "feet"),
  18608. default: true
  18609. },
  18610. ]
  18611. ))
  18612. characterMakers.push(() => makeCharacter(
  18613. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18614. {
  18615. side: {
  18616. height: math.unit(3 + 2 / 12, "feet"),
  18617. weight: math.unit(224, "lb"),
  18618. name: "Side",
  18619. image: {
  18620. source: "./media/characters/sheila-feral-wolf/side.svg",
  18621. extra: 179 / 166,
  18622. bottom: 0.03
  18623. }
  18624. },
  18625. },
  18626. [
  18627. {
  18628. name: "Normal",
  18629. height: math.unit(3 + 2 / 12, "feet"),
  18630. default: true
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18636. {
  18637. side: {
  18638. height: math.unit(1 + 9 / 12, "feet"),
  18639. weight: math.unit(38, "lb"),
  18640. name: "Side",
  18641. image: {
  18642. source: "./media/characters/michelle/side.svg",
  18643. extra: 147 / 136.7,
  18644. bottom: 0.03
  18645. }
  18646. },
  18647. },
  18648. [
  18649. {
  18650. name: "Normal",
  18651. height: math.unit(1 + 9 / 12, "feet"),
  18652. default: true
  18653. },
  18654. ]
  18655. ))
  18656. characterMakers.push(() => makeCharacter(
  18657. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18658. {
  18659. front: {
  18660. height: math.unit(1.54, "feet"),
  18661. weight: math.unit(50, "lb"),
  18662. name: "Front",
  18663. image: {
  18664. source: "./media/characters/nino/front.svg"
  18665. }
  18666. },
  18667. },
  18668. [
  18669. {
  18670. name: "Normal",
  18671. height: math.unit(1.54, "feet"),
  18672. default: true
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18678. {
  18679. front: {
  18680. height: math.unit(1.49, "feet"),
  18681. weight: math.unit(45, "lb"),
  18682. name: "Front",
  18683. image: {
  18684. source: "./media/characters/viola/front.svg"
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(1.49, "feet"),
  18692. default: true
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18698. {
  18699. front: {
  18700. height: math.unit(6 + 5 / 12, "feet"),
  18701. weight: math.unit(580, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/atlas/front.svg",
  18705. extra: 298.5 / 290,
  18706. bottom: 0.015
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(6 + 5 / 12, "feet"),
  18714. default: true
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18720. {
  18721. side: {
  18722. height: math.unit(15.6, "inches"),
  18723. weight: math.unit(10, "lb"),
  18724. name: "Side",
  18725. image: {
  18726. source: "./media/characters/davy/side.svg",
  18727. extra: 200 / 170,
  18728. bottom: 0.01
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Normal",
  18735. height: math.unit(15.6, "inches"),
  18736. default: true
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18742. {
  18743. side: {
  18744. height: math.unit(4 + 8 / 12, "feet"),
  18745. weight: math.unit(166, "lb"),
  18746. name: "Side",
  18747. image: {
  18748. source: "./media/characters/fiona/side.svg",
  18749. extra: 232 / 220,
  18750. bottom: 0.03
  18751. }
  18752. },
  18753. },
  18754. [
  18755. {
  18756. name: "Normal",
  18757. height: math.unit(4 + 8 / 12, "feet"),
  18758. default: true
  18759. },
  18760. ]
  18761. ))
  18762. characterMakers.push(() => makeCharacter(
  18763. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18764. {
  18765. front: {
  18766. height: math.unit(26, "inches"),
  18767. weight: math.unit(35, "lb"),
  18768. name: "Front",
  18769. image: {
  18770. source: "./media/characters/lyla/front.svg",
  18771. bottom: 0.1
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(3, "feet"),
  18779. default: true
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18785. {
  18786. side: {
  18787. height: math.unit(1.8, "feet"),
  18788. weight: math.unit(44, "lb"),
  18789. name: "Side",
  18790. image: {
  18791. source: "./media/characters/perseus/side.svg",
  18792. bottom: 0.21
  18793. }
  18794. },
  18795. },
  18796. [
  18797. {
  18798. name: "Normal",
  18799. height: math.unit(1.8, "feet"),
  18800. default: true
  18801. },
  18802. ]
  18803. ))
  18804. characterMakers.push(() => makeCharacter(
  18805. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18806. {
  18807. side: {
  18808. height: math.unit(4 + 2 / 12, "feet"),
  18809. weight: math.unit(20, "lb"),
  18810. name: "Side",
  18811. image: {
  18812. source: "./media/characters/remus/side.svg"
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(4 + 2 / 12, "feet"),
  18820. default: true
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18826. {
  18827. front: {
  18828. height: math.unit(4 + 11 / 12, "feet"),
  18829. weight: math.unit(114, "lb"),
  18830. name: "Front",
  18831. image: {
  18832. source: "./media/characters/raf/front.svg",
  18833. extra: 1504/1339,
  18834. bottom: 26/1530
  18835. }
  18836. },
  18837. side: {
  18838. height: math.unit(4 + 11 / 12, "feet"),
  18839. weight: math.unit(114, "lb"),
  18840. name: "Side",
  18841. image: {
  18842. source: "./media/characters/raf/side.svg",
  18843. extra: 1466/1316,
  18844. bottom: 29/1495
  18845. }
  18846. },
  18847. paw: {
  18848. height: math.unit(1.45, "feet"),
  18849. name: "Paw",
  18850. image: {
  18851. source: "./media/characters/raf/paw.svg"
  18852. },
  18853. extraAttributes: {
  18854. "toeSize": {
  18855. name: "Toe Size",
  18856. power: 2,
  18857. type: "area",
  18858. base: math.unit(0.004, "m^2")
  18859. },
  18860. "padSize": {
  18861. name: "Pad Size",
  18862. power: 2,
  18863. type: "area",
  18864. base: math.unit(0.04, "m^2")
  18865. },
  18866. "footSize": {
  18867. name: "Foot Size",
  18868. power: 2,
  18869. type: "area",
  18870. base: math.unit(0.08, "m^2")
  18871. },
  18872. }
  18873. },
  18874. },
  18875. [
  18876. {
  18877. name: "Micro",
  18878. height: math.unit(2, "inches")
  18879. },
  18880. {
  18881. name: "Normal",
  18882. height: math.unit(4 + 11 / 12, "feet"),
  18883. default: true
  18884. },
  18885. {
  18886. name: "Macro",
  18887. height: math.unit(70, "feet")
  18888. },
  18889. ]
  18890. ))
  18891. characterMakers.push(() => makeCharacter(
  18892. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18893. {
  18894. front: {
  18895. height: math.unit(1.5, "meters"),
  18896. weight: math.unit(68, "kg"),
  18897. name: "Front",
  18898. image: {
  18899. source: "./media/characters/liam-einarr/front.svg",
  18900. extra: 2822 / 2666
  18901. }
  18902. },
  18903. back: {
  18904. height: math.unit(1.5, "meters"),
  18905. weight: math.unit(68, "kg"),
  18906. name: "Back",
  18907. image: {
  18908. source: "./media/characters/liam-einarr/back.svg",
  18909. extra: 2822 / 2666,
  18910. bottom: 0.015
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(1.5, "meters"),
  18918. default: true
  18919. },
  18920. {
  18921. name: "Macro",
  18922. height: math.unit(150, "meters")
  18923. },
  18924. {
  18925. name: "Megamacro",
  18926. height: math.unit(35, "km")
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(6, "feet"),
  18935. weight: math.unit(75, "kg"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/linda/front.svg",
  18939. extra: 930 / 874,
  18940. bottom: 0.004
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(6, "feet"),
  18948. default: true
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18954. {
  18955. front: {
  18956. height: math.unit(6 + 8 / 12, "feet"),
  18957. weight: math.unit(220, "lb"),
  18958. name: "Front",
  18959. image: {
  18960. source: "./media/characters/caylex/front.svg",
  18961. extra: 821 / 772,
  18962. bottom: 0.07
  18963. }
  18964. },
  18965. back: {
  18966. height: math.unit(6 + 8 / 12, "feet"),
  18967. weight: math.unit(220, "lb"),
  18968. name: "Back",
  18969. image: {
  18970. source: "./media/characters/caylex/back.svg",
  18971. extra: 821 / 772,
  18972. bottom: 0.022
  18973. }
  18974. },
  18975. hand: {
  18976. height: math.unit(1.25, "feet"),
  18977. name: "Hand",
  18978. image: {
  18979. source: "./media/characters/caylex/hand.svg"
  18980. }
  18981. },
  18982. foot: {
  18983. height: math.unit(1.6, "feet"),
  18984. name: "Foot",
  18985. image: {
  18986. source: "./media/characters/caylex/foot.svg"
  18987. }
  18988. },
  18989. armored: {
  18990. height: math.unit(6 + 8 / 12, "feet"),
  18991. weight: math.unit(250, "lb"),
  18992. name: "Armored",
  18993. image: {
  18994. source: "./media/characters/caylex/armored.svg",
  18995. extra: 1420 / 1310,
  18996. bottom: 0.045
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(6 + 8 / 12, "feet"),
  19004. default: true
  19005. },
  19006. {
  19007. name: "Normal+",
  19008. height: math.unit(12, "feet")
  19009. },
  19010. ]
  19011. ))
  19012. characterMakers.push(() => makeCharacter(
  19013. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19014. {
  19015. front: {
  19016. height: math.unit(7 + 6 / 12, "feet"),
  19017. weight: math.unit(288, "lb"),
  19018. name: "Front",
  19019. image: {
  19020. source: "./media/characters/alana/front.svg",
  19021. extra: 679 / 653,
  19022. bottom: 22.5 / 701
  19023. }
  19024. },
  19025. },
  19026. [
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(7 + 6 / 12, "feet")
  19030. },
  19031. {
  19032. name: "Large",
  19033. height: math.unit(50, "feet")
  19034. },
  19035. {
  19036. name: "Macro",
  19037. height: math.unit(100, "feet"),
  19038. default: true
  19039. },
  19040. {
  19041. name: "Macro+",
  19042. height: math.unit(200, "feet")
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19048. {
  19049. front: {
  19050. height: math.unit(6 + 1 / 12, "feet"),
  19051. weight: math.unit(210, "lb"),
  19052. name: "Front",
  19053. image: {
  19054. source: "./media/characters/hasani/front.svg",
  19055. extra: 244 / 232,
  19056. bottom: 0.01
  19057. }
  19058. },
  19059. back: {
  19060. height: math.unit(6 + 1 / 12, "feet"),
  19061. weight: math.unit(210, "lb"),
  19062. name: "Back",
  19063. image: {
  19064. source: "./media/characters/hasani/back.svg",
  19065. extra: 244 / 232,
  19066. bottom: 0.01
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(6 + 1 / 12, "feet")
  19074. },
  19075. {
  19076. name: "Macro",
  19077. height: math.unit(175, "feet"),
  19078. default: true
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19084. {
  19085. front: {
  19086. height: math.unit(1.82, "meters"),
  19087. weight: math.unit(140, "lb"),
  19088. name: "Front",
  19089. image: {
  19090. source: "./media/characters/nita/front.svg",
  19091. extra: 2473 / 2363,
  19092. bottom: 0.01
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(1.82, "m")
  19100. },
  19101. {
  19102. name: "Macro",
  19103. height: math.unit(300, "m")
  19104. },
  19105. {
  19106. name: "Mistake Canon",
  19107. height: math.unit(0.5, "miles"),
  19108. default: true
  19109. },
  19110. {
  19111. name: "Big Mistake",
  19112. height: math.unit(13, "miles")
  19113. },
  19114. {
  19115. name: "Playing God",
  19116. height: math.unit(2450, "miles")
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(4, "feet"),
  19125. weight: math.unit(120, "lb"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/shiriko/front.svg",
  19129. extra: 970/934,
  19130. bottom: 5/975
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(4, "feet"),
  19138. default: true
  19139. },
  19140. ]
  19141. ))
  19142. characterMakers.push(() => makeCharacter(
  19143. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19144. {
  19145. front: {
  19146. height: math.unit(6, "feet"),
  19147. name: "front",
  19148. image: {
  19149. source: "./media/characters/deja/front.svg",
  19150. extra: 926 / 840,
  19151. bottom: 0.07
  19152. }
  19153. },
  19154. },
  19155. [
  19156. {
  19157. name: "Planck Length",
  19158. height: math.unit(1.6e-35, "meters")
  19159. },
  19160. {
  19161. name: "Normal",
  19162. height: math.unit(30.48, "meters"),
  19163. default: true
  19164. },
  19165. {
  19166. name: "Universal",
  19167. height: math.unit(8.8e26, "meters")
  19168. },
  19169. ]
  19170. ))
  19171. characterMakers.push(() => makeCharacter(
  19172. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19173. {
  19174. side: {
  19175. height: math.unit(8, "feet"),
  19176. weight: math.unit(6300, "lb"),
  19177. name: "Side",
  19178. image: {
  19179. source: "./media/characters/anima/side.svg",
  19180. bottom: 0.035
  19181. }
  19182. },
  19183. },
  19184. [
  19185. {
  19186. name: "Normal",
  19187. height: math.unit(8, "feet"),
  19188. default: true
  19189. },
  19190. ]
  19191. ))
  19192. characterMakers.push(() => makeCharacter(
  19193. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19194. {
  19195. front: {
  19196. height: math.unit(8, "feet"),
  19197. weight: math.unit(350, "lb"),
  19198. name: "Front",
  19199. image: {
  19200. source: "./media/characters/bianca/front.svg",
  19201. extra: 234 / 225,
  19202. bottom: 0.03
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(8, "feet"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19216. {
  19217. front: {
  19218. height: math.unit(11 + 5/12, "feet"),
  19219. weight: math.unit(1200, "lb"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/adinia/front.svg",
  19223. extra: 1767/1641,
  19224. bottom: 44/1811
  19225. },
  19226. extraAttributes: {
  19227. "energyIntake": {
  19228. name: "Energy Intake",
  19229. power: 3,
  19230. type: "energy",
  19231. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19232. },
  19233. }
  19234. },
  19235. back: {
  19236. height: math.unit(11 + 5/12, "feet"),
  19237. weight: math.unit(1200, "lb"),
  19238. name: "Back",
  19239. image: {
  19240. source: "./media/characters/adinia/back.svg",
  19241. extra: 1834/1684,
  19242. bottom: 14/1848
  19243. },
  19244. extraAttributes: {
  19245. "energyIntake": {
  19246. name: "Energy Intake",
  19247. power: 3,
  19248. type: "energy",
  19249. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19250. },
  19251. }
  19252. },
  19253. maw: {
  19254. height: math.unit(3.79, "feet"),
  19255. name: "Maw",
  19256. image: {
  19257. source: "./media/characters/adinia/maw.svg"
  19258. }
  19259. },
  19260. rump: {
  19261. height: math.unit(4.6, "feet"),
  19262. name: "Rump",
  19263. image: {
  19264. source: "./media/characters/adinia/rump.svg"
  19265. }
  19266. },
  19267. },
  19268. [
  19269. {
  19270. name: "Normal",
  19271. height: math.unit(11 + 5 / 12, "feet"),
  19272. default: true
  19273. },
  19274. ]
  19275. ))
  19276. characterMakers.push(() => makeCharacter(
  19277. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19278. {
  19279. front: {
  19280. height: math.unit(3, "meters"),
  19281. weight: math.unit(200, "kg"),
  19282. name: "Front",
  19283. image: {
  19284. source: "./media/characters/lykasa/front.svg",
  19285. extra: 1076 / 976,
  19286. bottom: 0.06
  19287. }
  19288. },
  19289. },
  19290. [
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(3, "meters")
  19294. },
  19295. {
  19296. name: "Kaiju",
  19297. height: math.unit(120, "meters"),
  19298. default: true
  19299. },
  19300. {
  19301. name: "Mega Kaiju",
  19302. height: math.unit(240, "km")
  19303. },
  19304. {
  19305. name: "Giga Kaiju",
  19306. height: math.unit(400, "megameters")
  19307. },
  19308. {
  19309. name: "Tera Kaiju",
  19310. height: math.unit(800, "gigameters")
  19311. },
  19312. {
  19313. name: "Kaiju Dragon Goddess",
  19314. height: math.unit(26, "zettaparsecs")
  19315. },
  19316. ]
  19317. ))
  19318. characterMakers.push(() => makeCharacter(
  19319. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19320. {
  19321. side: {
  19322. height: math.unit(283 / 124 * 6, "feet"),
  19323. weight: math.unit(35000, "lb"),
  19324. name: "Side",
  19325. image: {
  19326. source: "./media/characters/malfaren/side.svg",
  19327. extra: 1310/529,
  19328. bottom: 24/1334
  19329. }
  19330. },
  19331. front: {
  19332. height: math.unit(22.36, "feet"),
  19333. weight: math.unit(35000, "lb"),
  19334. name: "Front",
  19335. image: {
  19336. source: "./media/characters/malfaren/front.svg",
  19337. extra: 1237/1115,
  19338. bottom: 32/1269
  19339. }
  19340. },
  19341. maw: {
  19342. height: math.unit(6.9, "feet"),
  19343. name: "Maw",
  19344. image: {
  19345. source: "./media/characters/malfaren/maw.svg"
  19346. }
  19347. },
  19348. dick: {
  19349. height: math.unit(6.19, "feet"),
  19350. name: "Dick",
  19351. image: {
  19352. source: "./media/characters/malfaren/dick.svg"
  19353. }
  19354. },
  19355. eye: {
  19356. height: math.unit(0.69, "feet"),
  19357. name: "Eye",
  19358. image: {
  19359. source: "./media/characters/malfaren/eye.svg"
  19360. }
  19361. },
  19362. },
  19363. [
  19364. {
  19365. name: "Big",
  19366. height: math.unit(283 / 162 * 6, "feet"),
  19367. },
  19368. {
  19369. name: "Bigger",
  19370. height: math.unit(283 / 124 * 6, "feet")
  19371. },
  19372. {
  19373. name: "Massive",
  19374. height: math.unit(283 / 92 * 6, "feet"),
  19375. default: true
  19376. },
  19377. {
  19378. name: "👀💦",
  19379. height: math.unit(283 / 73 * 6, "feet"),
  19380. },
  19381. ]
  19382. ))
  19383. characterMakers.push(() => makeCharacter(
  19384. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19385. {
  19386. front: {
  19387. height: math.unit(1.7, "m"),
  19388. weight: math.unit(70, "kg"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/kernel/front.svg",
  19392. extra: 222 / 210,
  19393. bottom: 0.007
  19394. }
  19395. },
  19396. },
  19397. [
  19398. {
  19399. name: "Nano",
  19400. height: math.unit(17, "micrometers")
  19401. },
  19402. {
  19403. name: "Micro",
  19404. height: math.unit(1.7, "mm")
  19405. },
  19406. {
  19407. name: "Small",
  19408. height: math.unit(1.7, "cm")
  19409. },
  19410. {
  19411. name: "Normal",
  19412. height: math.unit(1.7, "m"),
  19413. default: true
  19414. },
  19415. ]
  19416. ))
  19417. characterMakers.push(() => makeCharacter(
  19418. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19419. {
  19420. front: {
  19421. height: math.unit(1.75, "meters"),
  19422. weight: math.unit(65, "kg"),
  19423. name: "Front",
  19424. image: {
  19425. source: "./media/characters/jayne-folest/front.svg",
  19426. extra: 2115 / 2007,
  19427. bottom: 0.02
  19428. }
  19429. },
  19430. back: {
  19431. height: math.unit(1.75, "meters"),
  19432. weight: math.unit(65, "kg"),
  19433. name: "Back",
  19434. image: {
  19435. source: "./media/characters/jayne-folest/back.svg",
  19436. extra: 2115 / 2007,
  19437. bottom: 0.005
  19438. }
  19439. },
  19440. frontClothed: {
  19441. height: math.unit(1.75, "meters"),
  19442. weight: math.unit(65, "kg"),
  19443. name: "Front (Clothed)",
  19444. image: {
  19445. source: "./media/characters/jayne-folest/front-clothed.svg",
  19446. extra: 2115 / 2007,
  19447. bottom: 0.035
  19448. }
  19449. },
  19450. hand: {
  19451. height: math.unit(1 / 1.260, "feet"),
  19452. name: "Hand",
  19453. image: {
  19454. source: "./media/characters/jayne-folest/hand.svg"
  19455. }
  19456. },
  19457. foot: {
  19458. height: math.unit(1 / 0.918, "feet"),
  19459. name: "Foot",
  19460. image: {
  19461. source: "./media/characters/jayne-folest/foot.svg"
  19462. }
  19463. },
  19464. },
  19465. [
  19466. {
  19467. name: "Micro",
  19468. height: math.unit(4, "cm")
  19469. },
  19470. {
  19471. name: "Normal",
  19472. height: math.unit(1.75, "meters")
  19473. },
  19474. {
  19475. name: "Macro",
  19476. height: math.unit(47.5, "meters"),
  19477. default: true
  19478. },
  19479. ]
  19480. ))
  19481. characterMakers.push(() => makeCharacter(
  19482. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19483. {
  19484. front: {
  19485. height: math.unit(180, "cm"),
  19486. weight: math.unit(70, "kg"),
  19487. name: "Front",
  19488. image: {
  19489. source: "./media/characters/algier/front.svg",
  19490. extra: 596 / 572,
  19491. bottom: 0.04
  19492. }
  19493. },
  19494. back: {
  19495. height: math.unit(180, "cm"),
  19496. weight: math.unit(70, "kg"),
  19497. name: "Back",
  19498. image: {
  19499. source: "./media/characters/algier/back.svg",
  19500. extra: 596 / 572,
  19501. bottom: 0.025
  19502. }
  19503. },
  19504. frontdressed: {
  19505. height: math.unit(180, "cm"),
  19506. weight: math.unit(150, "kg"),
  19507. name: "Front-dressed",
  19508. image: {
  19509. source: "./media/characters/algier/front-dressed.svg",
  19510. extra: 596 / 572,
  19511. bottom: 0.038
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Micro",
  19518. height: math.unit(5, "cm")
  19519. },
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(180, "cm"),
  19523. default: true
  19524. },
  19525. {
  19526. name: "Macro",
  19527. height: math.unit(64, "m")
  19528. },
  19529. ]
  19530. ))
  19531. characterMakers.push(() => makeCharacter(
  19532. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19533. {
  19534. upright: {
  19535. height: math.unit(7, "feet"),
  19536. weight: math.unit(300, "lb"),
  19537. name: "Upright",
  19538. image: {
  19539. source: "./media/characters/pretzel/upright.svg",
  19540. extra: 534 / 522,
  19541. bottom: 0.065
  19542. }
  19543. },
  19544. sprawling: {
  19545. height: math.unit(3.75, "feet"),
  19546. weight: math.unit(300, "lb"),
  19547. name: "Sprawling",
  19548. image: {
  19549. source: "./media/characters/pretzel/sprawling.svg",
  19550. extra: 314 / 281,
  19551. bottom: 0.1
  19552. }
  19553. },
  19554. tongue: {
  19555. height: math.unit(2, "feet"),
  19556. name: "Tongue",
  19557. image: {
  19558. source: "./media/characters/pretzel/tongue.svg"
  19559. }
  19560. },
  19561. },
  19562. [
  19563. {
  19564. name: "Normal",
  19565. height: math.unit(7, "feet"),
  19566. default: true
  19567. },
  19568. {
  19569. name: "Oversized",
  19570. height: math.unit(15, "feet")
  19571. },
  19572. {
  19573. name: "Huge",
  19574. height: math.unit(30, "feet")
  19575. },
  19576. {
  19577. name: "Macro",
  19578. height: math.unit(250, "feet")
  19579. },
  19580. ]
  19581. ))
  19582. characterMakers.push(() => makeCharacter(
  19583. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19584. {
  19585. sideFront: {
  19586. height: math.unit(5 + 2 / 12, "feet"),
  19587. weight: math.unit(120, "lb"),
  19588. name: "Front Side",
  19589. image: {
  19590. source: "./media/characters/roxi/side-front.svg",
  19591. extra: 2924 / 2717,
  19592. bottom: 0.08
  19593. }
  19594. },
  19595. sideBack: {
  19596. height: math.unit(5 + 2 / 12, "feet"),
  19597. weight: math.unit(120, "lb"),
  19598. name: "Back Side",
  19599. image: {
  19600. source: "./media/characters/roxi/side-back.svg",
  19601. extra: 2904 / 2693,
  19602. bottom: 0.06
  19603. }
  19604. },
  19605. front: {
  19606. height: math.unit(5 + 2 / 12, "feet"),
  19607. weight: math.unit(120, "lb"),
  19608. name: "Front",
  19609. image: {
  19610. source: "./media/characters/roxi/front.svg",
  19611. extra: 2028 / 1907,
  19612. bottom: 0.01
  19613. }
  19614. },
  19615. frontAlt: {
  19616. height: math.unit(5 + 2 / 12, "feet"),
  19617. weight: math.unit(120, "lb"),
  19618. name: "Front (Alt)",
  19619. image: {
  19620. source: "./media/characters/roxi/front-alt.svg",
  19621. extra: 1828 / 1798,
  19622. bottom: 0.01
  19623. }
  19624. },
  19625. sitting: {
  19626. height: math.unit(2.8, "feet"),
  19627. weight: math.unit(120, "lb"),
  19628. name: "Sitting",
  19629. image: {
  19630. source: "./media/characters/roxi/sitting.svg",
  19631. extra: 2660 / 2462,
  19632. bottom: 0.1
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Normal",
  19639. height: math.unit(5 + 2 / 12, "feet"),
  19640. default: true
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19646. {
  19647. side: {
  19648. height: math.unit(55, "feet"),
  19649. weight: math.unit(153, "tons"),
  19650. name: "Side",
  19651. image: {
  19652. source: "./media/characters/shadow/side.svg",
  19653. extra: 701 / 628,
  19654. bottom: 0.02
  19655. }
  19656. },
  19657. flying: {
  19658. height: math.unit(145, "feet"),
  19659. weight: math.unit(153, "tons"),
  19660. name: "Flying",
  19661. image: {
  19662. source: "./media/characters/shadow/flying.svg"
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(55, "feet"),
  19670. default: true
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19676. {
  19677. front: {
  19678. height: math.unit(6, "feet"),
  19679. weight: math.unit(200, "lb"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/marcie/front.svg",
  19683. extra: 960 / 876,
  19684. bottom: 58 / 1017.87
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Macro",
  19691. height: math.unit(1, "mile"),
  19692. default: true
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19698. {
  19699. front: {
  19700. height: math.unit(7, "feet"),
  19701. weight: math.unit(200, "lb"),
  19702. name: "Front",
  19703. image: {
  19704. source: "./media/characters/kachina/front.svg",
  19705. extra: 1290.68 / 1119,
  19706. bottom: 36.5 / 1327.18
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(7, "feet"),
  19714. default: true
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19720. {
  19721. looking: {
  19722. height: math.unit(2, "meters"),
  19723. weight: math.unit(300, "kg"),
  19724. name: "Looking",
  19725. image: {
  19726. source: "./media/characters/kash/looking.svg",
  19727. extra: 474 / 344,
  19728. bottom: 0.03
  19729. }
  19730. },
  19731. side: {
  19732. height: math.unit(2, "meters"),
  19733. weight: math.unit(300, "kg"),
  19734. name: "Side",
  19735. image: {
  19736. source: "./media/characters/kash/side.svg",
  19737. extra: 302 / 251,
  19738. bottom: 0.03
  19739. }
  19740. },
  19741. front: {
  19742. height: math.unit(2, "meters"),
  19743. weight: math.unit(300, "kg"),
  19744. name: "Front",
  19745. image: {
  19746. source: "./media/characters/kash/front.svg",
  19747. extra: 495 / 360,
  19748. bottom: 0.015
  19749. }
  19750. },
  19751. },
  19752. [
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(2, "meters"),
  19756. default: true
  19757. },
  19758. {
  19759. name: "Big",
  19760. height: math.unit(3, "meters")
  19761. },
  19762. {
  19763. name: "Large",
  19764. height: math.unit(5, "meters")
  19765. },
  19766. ]
  19767. ))
  19768. characterMakers.push(() => makeCharacter(
  19769. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19770. {
  19771. feeding: {
  19772. height: math.unit(6.7, "feet"),
  19773. weight: math.unit(350, "lb"),
  19774. name: "Feeding",
  19775. image: {
  19776. source: "./media/characters/lalim/feeding.svg",
  19777. }
  19778. },
  19779. },
  19780. [
  19781. {
  19782. name: "Normal",
  19783. height: math.unit(6.7, "feet"),
  19784. default: true
  19785. },
  19786. ]
  19787. ))
  19788. characterMakers.push(() => makeCharacter(
  19789. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19790. {
  19791. front: {
  19792. height: math.unit(9.5, "feet"),
  19793. weight: math.unit(600, "lb"),
  19794. name: "Front",
  19795. image: {
  19796. source: "./media/characters/de'vout/front.svg",
  19797. extra: 1443 / 1328,
  19798. bottom: 0.025
  19799. }
  19800. },
  19801. back: {
  19802. height: math.unit(9.5, "feet"),
  19803. weight: math.unit(600, "lb"),
  19804. name: "Back",
  19805. image: {
  19806. source: "./media/characters/de'vout/back.svg",
  19807. extra: 1443 / 1328
  19808. }
  19809. },
  19810. frontDressed: {
  19811. height: math.unit(9.5, "feet"),
  19812. weight: math.unit(600, "lb"),
  19813. name: "Front (Dressed",
  19814. image: {
  19815. source: "./media/characters/de'vout/front-dressed.svg",
  19816. extra: 1443 / 1328,
  19817. bottom: 0.025
  19818. }
  19819. },
  19820. backDressed: {
  19821. height: math.unit(9.5, "feet"),
  19822. weight: math.unit(600, "lb"),
  19823. name: "Back (Dressed",
  19824. image: {
  19825. source: "./media/characters/de'vout/back-dressed.svg",
  19826. extra: 1443 / 1328
  19827. }
  19828. },
  19829. },
  19830. [
  19831. {
  19832. name: "Normal",
  19833. height: math.unit(9.5, "feet"),
  19834. default: true
  19835. },
  19836. ]
  19837. ))
  19838. characterMakers.push(() => makeCharacter(
  19839. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19840. {
  19841. front: {
  19842. height: math.unit(8, "feet"),
  19843. weight: math.unit(225, "lb"),
  19844. name: "Front",
  19845. image: {
  19846. source: "./media/characters/talana/front.svg",
  19847. extra: 1410 / 1300,
  19848. bottom: 0.015
  19849. }
  19850. },
  19851. frontDressed: {
  19852. height: math.unit(8, "feet"),
  19853. weight: math.unit(225, "lb"),
  19854. name: "Front (Dressed",
  19855. image: {
  19856. source: "./media/characters/talana/front-dressed.svg",
  19857. extra: 1410 / 1300,
  19858. bottom: 0.015
  19859. }
  19860. },
  19861. },
  19862. [
  19863. {
  19864. name: "Normal",
  19865. height: math.unit(8, "feet"),
  19866. default: true
  19867. },
  19868. ]
  19869. ))
  19870. characterMakers.push(() => makeCharacter(
  19871. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19872. {
  19873. side: {
  19874. height: math.unit(7.2, "feet"),
  19875. weight: math.unit(150, "lb"),
  19876. name: "Side",
  19877. image: {
  19878. source: "./media/characters/xeauvok/side.svg",
  19879. extra: 1975 / 1523,
  19880. bottom: 0.07
  19881. }
  19882. },
  19883. },
  19884. [
  19885. {
  19886. name: "Normal",
  19887. height: math.unit(7.2, "feet"),
  19888. default: true
  19889. },
  19890. ]
  19891. ))
  19892. characterMakers.push(() => makeCharacter(
  19893. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19894. {
  19895. side: {
  19896. height: math.unit(4, "meters"),
  19897. weight: math.unit(2200, "kg"),
  19898. name: "Side",
  19899. image: {
  19900. source: "./media/characters/zara/side.svg",
  19901. extra: 765/744,
  19902. bottom: 156/921
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(4, "meters"),
  19910. default: true
  19911. },
  19912. ]
  19913. ))
  19914. characterMakers.push(() => makeCharacter(
  19915. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19916. {
  19917. side: {
  19918. height: math.unit(6, "feet"),
  19919. weight: math.unit(150, "lb"),
  19920. name: "Side",
  19921. image: {
  19922. source: "./media/characters/richard-dragon/side.svg",
  19923. extra: 845 / 340,
  19924. bottom: 0.017
  19925. }
  19926. },
  19927. maw: {
  19928. height: math.unit(2.97, "feet"),
  19929. name: "Maw",
  19930. image: {
  19931. source: "./media/characters/richard-dragon/maw.svg"
  19932. }
  19933. },
  19934. },
  19935. [
  19936. ]
  19937. ))
  19938. characterMakers.push(() => makeCharacter(
  19939. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19940. {
  19941. front: {
  19942. height: math.unit(4, "feet"),
  19943. weight: math.unit(100, "lb"),
  19944. name: "Front",
  19945. image: {
  19946. source: "./media/characters/richard-smeargle/front.svg",
  19947. extra: 2952 / 2820,
  19948. bottom: 0.028
  19949. }
  19950. },
  19951. },
  19952. [
  19953. {
  19954. name: "Normal",
  19955. height: math.unit(4, "feet"),
  19956. default: true
  19957. },
  19958. {
  19959. name: "Dynamax",
  19960. height: math.unit(20, "meters")
  19961. },
  19962. ]
  19963. ))
  19964. characterMakers.push(() => makeCharacter(
  19965. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19966. {
  19967. front: {
  19968. height: math.unit(6, "feet"),
  19969. weight: math.unit(110, "lb"),
  19970. name: "Front",
  19971. image: {
  19972. source: "./media/characters/klay/front.svg",
  19973. extra: 962 / 883,
  19974. bottom: 0.04
  19975. }
  19976. },
  19977. back: {
  19978. height: math.unit(6, "feet"),
  19979. weight: math.unit(110, "lb"),
  19980. name: "Back",
  19981. image: {
  19982. source: "./media/characters/klay/back.svg",
  19983. extra: 962 / 883
  19984. }
  19985. },
  19986. beans: {
  19987. height: math.unit(1.15, "feet"),
  19988. name: "Beans",
  19989. image: {
  19990. source: "./media/characters/klay/beans.svg"
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Micro",
  19997. height: math.unit(6, "inches")
  19998. },
  19999. {
  20000. name: "Mini",
  20001. height: math.unit(3, "feet")
  20002. },
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(6, "feet"),
  20006. default: true
  20007. },
  20008. {
  20009. name: "Big",
  20010. height: math.unit(25, "feet")
  20011. },
  20012. {
  20013. name: "Macro",
  20014. height: math.unit(100, "feet")
  20015. },
  20016. {
  20017. name: "Megamacro",
  20018. height: math.unit(400, "feet")
  20019. },
  20020. ]
  20021. ))
  20022. characterMakers.push(() => makeCharacter(
  20023. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20024. {
  20025. front: {
  20026. height: math.unit(6, "feet"),
  20027. weight: math.unit(160, "lb"),
  20028. name: "Front",
  20029. image: {
  20030. source: "./media/characters/marcus/front.svg",
  20031. extra: 734 / 676,
  20032. bottom: 0.03
  20033. }
  20034. },
  20035. },
  20036. [
  20037. {
  20038. name: "Little",
  20039. height: math.unit(6, "feet")
  20040. },
  20041. {
  20042. name: "Normal",
  20043. height: math.unit(110, "feet"),
  20044. default: true
  20045. },
  20046. {
  20047. name: "Macro",
  20048. height: math.unit(250, "feet")
  20049. },
  20050. {
  20051. name: "Megamacro",
  20052. height: math.unit(1000, "feet")
  20053. },
  20054. ]
  20055. ))
  20056. characterMakers.push(() => makeCharacter(
  20057. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20058. {
  20059. front: {
  20060. height: math.unit(7, "feet"),
  20061. weight: math.unit(275, "lb"),
  20062. name: "Front",
  20063. image: {
  20064. source: "./media/characters/claude-delroute/front.svg",
  20065. extra: 902/827,
  20066. bottom: 26/928
  20067. }
  20068. },
  20069. side: {
  20070. height: math.unit(7, "feet"),
  20071. weight: math.unit(275, "lb"),
  20072. name: "Side",
  20073. image: {
  20074. source: "./media/characters/claude-delroute/side.svg",
  20075. extra: 908/853,
  20076. bottom: 16/924
  20077. }
  20078. },
  20079. back: {
  20080. height: math.unit(7, "feet"),
  20081. weight: math.unit(275, "lb"),
  20082. name: "Back",
  20083. image: {
  20084. source: "./media/characters/claude-delroute/back.svg",
  20085. extra: 911/829,
  20086. bottom: 18/929
  20087. }
  20088. },
  20089. maw: {
  20090. height: math.unit(0.6407, "meters"),
  20091. name: "Maw",
  20092. image: {
  20093. source: "./media/characters/claude-delroute/maw.svg"
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(7, "feet"),
  20101. default: true
  20102. },
  20103. {
  20104. name: "Lorge",
  20105. height: math.unit(20, "feet")
  20106. },
  20107. ]
  20108. ))
  20109. characterMakers.push(() => makeCharacter(
  20110. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20111. {
  20112. front: {
  20113. height: math.unit(8 + 4 / 12, "feet"),
  20114. weight: math.unit(600, "lb"),
  20115. name: "Front",
  20116. image: {
  20117. source: "./media/characters/dragonien/front.svg",
  20118. extra: 100 / 94,
  20119. bottom: 3.3 / 103.3445
  20120. }
  20121. },
  20122. back: {
  20123. height: math.unit(8 + 4 / 12, "feet"),
  20124. weight: math.unit(600, "lb"),
  20125. name: "Back",
  20126. image: {
  20127. source: "./media/characters/dragonien/back.svg",
  20128. extra: 776 / 746,
  20129. bottom: 6.4 / 782.0616
  20130. }
  20131. },
  20132. foot: {
  20133. height: math.unit(1.54, "feet"),
  20134. name: "Foot",
  20135. image: {
  20136. source: "./media/characters/dragonien/foot.svg",
  20137. }
  20138. },
  20139. },
  20140. [
  20141. {
  20142. name: "Normal",
  20143. height: math.unit(8 + 4 / 12, "feet"),
  20144. default: true
  20145. },
  20146. {
  20147. name: "Macro",
  20148. height: math.unit(200, "feet")
  20149. },
  20150. {
  20151. name: "Megamacro",
  20152. height: math.unit(1, "mile")
  20153. },
  20154. {
  20155. name: "Gigamacro",
  20156. height: math.unit(1000, "miles")
  20157. },
  20158. ]
  20159. ))
  20160. characterMakers.push(() => makeCharacter(
  20161. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20162. {
  20163. front: {
  20164. height: math.unit(5 + 2 / 12, "feet"),
  20165. weight: math.unit(110, "lb"),
  20166. name: "Front",
  20167. image: {
  20168. source: "./media/characters/desta/front.svg",
  20169. extra: 767 / 726,
  20170. bottom: 11.7 / 779
  20171. }
  20172. },
  20173. back: {
  20174. height: math.unit(5 + 2 / 12, "feet"),
  20175. weight: math.unit(110, "lb"),
  20176. name: "Back",
  20177. image: {
  20178. source: "./media/characters/desta/back.svg",
  20179. extra: 777 / 728,
  20180. bottom: 6 / 784
  20181. }
  20182. },
  20183. frontAlt: {
  20184. height: math.unit(5 + 2 / 12, "feet"),
  20185. weight: math.unit(110, "lb"),
  20186. name: "Front",
  20187. image: {
  20188. source: "./media/characters/desta/front-alt.svg",
  20189. extra: 1482 / 1417
  20190. }
  20191. },
  20192. side: {
  20193. height: math.unit(5 + 2 / 12, "feet"),
  20194. weight: math.unit(110, "lb"),
  20195. name: "Side",
  20196. image: {
  20197. source: "./media/characters/desta/side.svg",
  20198. extra: 2579 / 2491,
  20199. bottom: 0.053
  20200. }
  20201. },
  20202. },
  20203. [
  20204. {
  20205. name: "Micro",
  20206. height: math.unit(6, "inches")
  20207. },
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(5 + 2 / 12, "feet"),
  20211. default: true
  20212. },
  20213. {
  20214. name: "Macro",
  20215. height: math.unit(62, "feet")
  20216. },
  20217. {
  20218. name: "Megamacro",
  20219. height: math.unit(1800, "feet")
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20225. {
  20226. front: {
  20227. height: math.unit(10, "feet"),
  20228. weight: math.unit(700, "lb"),
  20229. name: "Front",
  20230. image: {
  20231. source: "./media/characters/storm-alystar/front.svg",
  20232. extra: 2112 / 1898,
  20233. bottom: 0.034
  20234. }
  20235. },
  20236. },
  20237. [
  20238. {
  20239. name: "Micro",
  20240. height: math.unit(3.5, "inches")
  20241. },
  20242. {
  20243. name: "Normal",
  20244. height: math.unit(10, "feet"),
  20245. default: true
  20246. },
  20247. {
  20248. name: "Macro",
  20249. height: math.unit(400, "feet")
  20250. },
  20251. {
  20252. name: "Deific",
  20253. height: math.unit(60, "miles")
  20254. },
  20255. ]
  20256. ))
  20257. characterMakers.push(() => makeCharacter(
  20258. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20259. {
  20260. front: {
  20261. height: math.unit(2.35, "meters"),
  20262. weight: math.unit(119, "kg"),
  20263. name: "Front",
  20264. image: {
  20265. source: "./media/characters/ilia/front.svg",
  20266. extra: 1285 / 1255,
  20267. bottom: 0.06
  20268. }
  20269. },
  20270. },
  20271. [
  20272. {
  20273. name: "Normal",
  20274. height: math.unit(2.35, "meters")
  20275. },
  20276. {
  20277. name: "Macro",
  20278. height: math.unit(140, "meters"),
  20279. default: true
  20280. },
  20281. {
  20282. name: "Megamacro",
  20283. height: math.unit(100, "miles")
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20289. {
  20290. front: {
  20291. height: math.unit(6 + 5 / 12, "feet"),
  20292. weight: math.unit(190, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/kingdead/front.svg",
  20296. extra: 1228 / 1177
  20297. }
  20298. },
  20299. },
  20300. [
  20301. {
  20302. name: "Micro",
  20303. height: math.unit(7, "inches")
  20304. },
  20305. {
  20306. name: "Normal",
  20307. height: math.unit(6 + 5 / 12, "feet")
  20308. },
  20309. {
  20310. name: "Macro",
  20311. height: math.unit(150, "feet"),
  20312. default: true
  20313. },
  20314. {
  20315. name: "Megamacro",
  20316. height: math.unit(200, "miles")
  20317. },
  20318. ]
  20319. ))
  20320. characterMakers.push(() => makeCharacter(
  20321. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20322. {
  20323. front: {
  20324. height: math.unit(8, "feet"),
  20325. weight: math.unit(600, "lb"),
  20326. name: "Front",
  20327. image: {
  20328. source: "./media/characters/kyrehx/front.svg",
  20329. extra: 1195 / 1095,
  20330. bottom: 0.034
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Micro",
  20337. height: math.unit(2, "inches")
  20338. },
  20339. {
  20340. name: "Normal",
  20341. height: math.unit(8, "feet"),
  20342. default: true
  20343. },
  20344. {
  20345. name: "Macro",
  20346. height: math.unit(255, "feet")
  20347. },
  20348. ]
  20349. ))
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20352. {
  20353. front: {
  20354. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20355. weight: math.unit(184, "lb"),
  20356. name: "Front",
  20357. image: {
  20358. source: "./media/characters/xang/front.svg",
  20359. extra: 845 / 755
  20360. }
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Normal",
  20366. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20367. default: true
  20368. },
  20369. {
  20370. name: "Macro",
  20371. height: math.unit(0.935 * 146, "feet")
  20372. },
  20373. {
  20374. name: "Megamacro",
  20375. height: math.unit(0.935 * 3, "miles")
  20376. },
  20377. ]
  20378. ))
  20379. characterMakers.push(() => makeCharacter(
  20380. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20381. {
  20382. frontDressed: {
  20383. height: math.unit(5 + 7 / 12, "feet"),
  20384. weight: math.unit(140, "lb"),
  20385. name: "Front (Dressed)",
  20386. image: {
  20387. source: "./media/characters/doc-weardno/front-dressed.svg",
  20388. extra: 263 / 234
  20389. }
  20390. },
  20391. backDressed: {
  20392. height: math.unit(5 + 7 / 12, "feet"),
  20393. weight: math.unit(140, "lb"),
  20394. name: "Back (Dressed)",
  20395. image: {
  20396. source: "./media/characters/doc-weardno/back-dressed.svg",
  20397. extra: 266 / 238
  20398. }
  20399. },
  20400. front: {
  20401. height: math.unit(5 + 7 / 12, "feet"),
  20402. weight: math.unit(140, "lb"),
  20403. name: "Front",
  20404. image: {
  20405. source: "./media/characters/doc-weardno/front.svg",
  20406. extra: 254 / 233
  20407. }
  20408. },
  20409. },
  20410. [
  20411. {
  20412. name: "Micro",
  20413. height: math.unit(3, "inches")
  20414. },
  20415. {
  20416. name: "Normal",
  20417. height: math.unit(5 + 7 / 12, "feet"),
  20418. default: true
  20419. },
  20420. {
  20421. name: "Macro",
  20422. height: math.unit(25, "feet")
  20423. },
  20424. {
  20425. name: "Megamacro",
  20426. height: math.unit(2, "miles")
  20427. },
  20428. ]
  20429. ))
  20430. characterMakers.push(() => makeCharacter(
  20431. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20432. {
  20433. front: {
  20434. height: math.unit(6 + 2 / 12, "feet"),
  20435. weight: math.unit(153, "lb"),
  20436. name: "Front",
  20437. image: {
  20438. source: "./media/characters/seth-whilst/front.svg",
  20439. bottom: 0.07
  20440. }
  20441. },
  20442. },
  20443. [
  20444. {
  20445. name: "Micro",
  20446. height: math.unit(5, "inches")
  20447. },
  20448. {
  20449. name: "Normal",
  20450. height: math.unit(6 + 2 / 12, "feet"),
  20451. default: true
  20452. },
  20453. ]
  20454. ))
  20455. characterMakers.push(() => makeCharacter(
  20456. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20457. {
  20458. front: {
  20459. height: math.unit(3, "inches"),
  20460. weight: math.unit(8, "grams"),
  20461. name: "Front",
  20462. image: {
  20463. source: "./media/characters/pocket-jabari/front.svg",
  20464. extra: 1024 / 974,
  20465. bottom: 0.039
  20466. }
  20467. },
  20468. },
  20469. [
  20470. {
  20471. name: "Minimicro",
  20472. height: math.unit(8, "mm")
  20473. },
  20474. {
  20475. name: "Micro",
  20476. height: math.unit(3, "inches"),
  20477. default: true
  20478. },
  20479. {
  20480. name: "Normal",
  20481. height: math.unit(3, "feet")
  20482. },
  20483. ]
  20484. ))
  20485. characterMakers.push(() => makeCharacter(
  20486. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20487. {
  20488. frontDressed: {
  20489. height: math.unit(15, "feet"),
  20490. weight: math.unit(3280, "lb"),
  20491. name: "Front (Dressed)",
  20492. image: {
  20493. source: "./media/characters/sapphy/front-dressed.svg",
  20494. extra: 1951/1654,
  20495. bottom: 194/2145
  20496. },
  20497. form: "anthro",
  20498. default: true
  20499. },
  20500. backDressed: {
  20501. height: math.unit(15, "feet"),
  20502. weight: math.unit(3280, "lb"),
  20503. name: "Back (Dressed)",
  20504. image: {
  20505. source: "./media/characters/sapphy/back-dressed.svg",
  20506. extra: 2058/1918,
  20507. bottom: 125/2183
  20508. },
  20509. form: "anthro"
  20510. },
  20511. frontNude: {
  20512. height: math.unit(15, "feet"),
  20513. weight: math.unit(3280, "lb"),
  20514. name: "Front (Nude)",
  20515. image: {
  20516. source: "./media/characters/sapphy/front-nude.svg",
  20517. extra: 1951/1654,
  20518. bottom: 194/2145
  20519. },
  20520. form: "anthro"
  20521. },
  20522. backNude: {
  20523. height: math.unit(15, "feet"),
  20524. weight: math.unit(3280, "lb"),
  20525. name: "Back (Nude)",
  20526. image: {
  20527. source: "./media/characters/sapphy/back-nude.svg",
  20528. extra: 2058/1918,
  20529. bottom: 125/2183
  20530. },
  20531. form: "anthro"
  20532. },
  20533. full: {
  20534. height: math.unit(15, "feet"),
  20535. weight: math.unit(3280, "lb"),
  20536. name: "Full",
  20537. image: {
  20538. source: "./media/characters/sapphy/full.svg",
  20539. extra: 1396/1317,
  20540. bottom: 44/1440
  20541. },
  20542. form: "anthro"
  20543. },
  20544. dick: {
  20545. height: math.unit(3.8, "feet"),
  20546. name: "Dick",
  20547. image: {
  20548. source: "./media/characters/sapphy/dick.svg"
  20549. },
  20550. form: "anthro"
  20551. },
  20552. feral: {
  20553. height: math.unit(35, "feet"),
  20554. weight: math.unit(160, "tons"),
  20555. name: "Feral",
  20556. image: {
  20557. source: "./media/characters/sapphy/feral.svg",
  20558. extra: 1050/573,
  20559. bottom: 60/1110
  20560. },
  20561. form: "feral",
  20562. default: true
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Normal",
  20568. height: math.unit(15, "feet"),
  20569. form: "anthro"
  20570. },
  20571. {
  20572. name: "Casual Macro",
  20573. height: math.unit(120, "feet"),
  20574. form: "anthro"
  20575. },
  20576. {
  20577. name: "Macro",
  20578. height: math.unit(2150, "feet"),
  20579. default: true,
  20580. form: "anthro"
  20581. },
  20582. {
  20583. name: "Megamacro",
  20584. height: math.unit(8, "miles"),
  20585. form: "anthro"
  20586. },
  20587. {
  20588. name: "Galaxy Mom",
  20589. height: math.unit(6, "megalightyears"),
  20590. form: "anthro"
  20591. },
  20592. {
  20593. name: "Normal",
  20594. height: math.unit(35, "feet"),
  20595. form: "feral",
  20596. default: true
  20597. },
  20598. {
  20599. name: "Macro",
  20600. height: math.unit(300, "feet"),
  20601. form: "feral"
  20602. },
  20603. {
  20604. name: "Galaxy Mom",
  20605. height: math.unit(10, "megalightyears"),
  20606. form: "feral"
  20607. },
  20608. ],
  20609. {
  20610. "anthro": {
  20611. name: "Anthro",
  20612. default: true
  20613. },
  20614. "feral": {
  20615. name: "Feral"
  20616. }
  20617. }
  20618. ))
  20619. characterMakers.push(() => makeCharacter(
  20620. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20621. {
  20622. hyenaFront: {
  20623. height: math.unit(6, "feet"),
  20624. weight: math.unit(190, "lb"),
  20625. name: "Front",
  20626. image: {
  20627. source: "./media/characters/kiro/hyena-front.svg",
  20628. extra: 927/839,
  20629. bottom: 91/1018
  20630. },
  20631. form: "hyena",
  20632. default: true
  20633. },
  20634. front: {
  20635. height: math.unit(6, "feet"),
  20636. weight: math.unit(170, "lb"),
  20637. name: "Front",
  20638. image: {
  20639. source: "./media/characters/kiro/front.svg",
  20640. extra: 1064 / 1012,
  20641. bottom: 0.052
  20642. },
  20643. form: "folf",
  20644. default: true
  20645. },
  20646. },
  20647. [
  20648. {
  20649. name: "Micro",
  20650. height: math.unit(6, "inches"),
  20651. form: "folf"
  20652. },
  20653. {
  20654. name: "Normal",
  20655. height: math.unit(6, "feet"),
  20656. form: "folf",
  20657. default: true
  20658. },
  20659. {
  20660. name: "Macro",
  20661. height: math.unit(72, "feet"),
  20662. form: "folf"
  20663. },
  20664. {
  20665. name: "Micro",
  20666. height: math.unit(6, "inches"),
  20667. form: "hyena"
  20668. },
  20669. {
  20670. name: "Normal",
  20671. height: math.unit(6, "feet"),
  20672. form: "hyena",
  20673. default: true
  20674. },
  20675. {
  20676. name: "Macro",
  20677. height: math.unit(72, "feet"),
  20678. form: "hyena"
  20679. },
  20680. ],
  20681. {
  20682. "hyena": {
  20683. name: "Hyena",
  20684. default: true
  20685. },
  20686. "folf": {
  20687. name: "Folf",
  20688. },
  20689. }
  20690. ))
  20691. characterMakers.push(() => makeCharacter(
  20692. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20693. {
  20694. front: {
  20695. height: math.unit(5 + 9 / 12, "feet"),
  20696. weight: math.unit(175, "lb"),
  20697. name: "Front",
  20698. image: {
  20699. source: "./media/characters/irishfox/front.svg",
  20700. extra: 1912 / 1680,
  20701. bottom: 0.02
  20702. }
  20703. },
  20704. },
  20705. [
  20706. {
  20707. name: "Nano",
  20708. height: math.unit(1, "mm")
  20709. },
  20710. {
  20711. name: "Micro",
  20712. height: math.unit(2, "inches")
  20713. },
  20714. {
  20715. name: "Normal",
  20716. height: math.unit(5 + 9 / 12, "feet"),
  20717. default: true
  20718. },
  20719. {
  20720. name: "Macro",
  20721. height: math.unit(45, "feet")
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(6 + 1 / 12, "feet"),
  20730. weight: math.unit(75, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/aronai-sieyes/front.svg",
  20734. extra: 1532/1450,
  20735. bottom: 42/1574
  20736. }
  20737. },
  20738. side: {
  20739. height: math.unit(6 + 1 / 12, "feet"),
  20740. weight: math.unit(75, "lb"),
  20741. name: "Side",
  20742. image: {
  20743. source: "./media/characters/aronai-sieyes/side.svg",
  20744. extra: 1422/1365,
  20745. bottom: 148/1570
  20746. }
  20747. },
  20748. back: {
  20749. height: math.unit(6 + 1 / 12, "feet"),
  20750. weight: math.unit(75, "lb"),
  20751. name: "Back",
  20752. image: {
  20753. source: "./media/characters/aronai-sieyes/back.svg",
  20754. extra: 1526/1464,
  20755. bottom: 51/1577
  20756. }
  20757. },
  20758. dressed: {
  20759. height: math.unit(6 + 1 / 12, "feet"),
  20760. weight: math.unit(75, "lb"),
  20761. name: "Dressed",
  20762. image: {
  20763. source: "./media/characters/aronai-sieyes/dressed.svg",
  20764. extra: 1559/1483,
  20765. bottom: 39/1598
  20766. }
  20767. },
  20768. slit: {
  20769. height: math.unit(1.3, "feet"),
  20770. name: "Slit",
  20771. image: {
  20772. source: "./media/characters/aronai-sieyes/slit.svg"
  20773. }
  20774. },
  20775. slitSpread: {
  20776. height: math.unit(0.9, "feet"),
  20777. name: "Slit (Spread)",
  20778. image: {
  20779. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20780. }
  20781. },
  20782. rump: {
  20783. height: math.unit(1.3, "feet"),
  20784. name: "Rump",
  20785. image: {
  20786. source: "./media/characters/aronai-sieyes/rump.svg"
  20787. }
  20788. },
  20789. maw: {
  20790. height: math.unit(1.25, "feet"),
  20791. name: "Maw",
  20792. image: {
  20793. source: "./media/characters/aronai-sieyes/maw.svg"
  20794. }
  20795. },
  20796. feral: {
  20797. height: math.unit(18, "feet"),
  20798. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20799. name: "Feral",
  20800. image: {
  20801. source: "./media/characters/aronai-sieyes/feral.svg",
  20802. extra: 1530 / 1240,
  20803. bottom: 0.035
  20804. }
  20805. },
  20806. },
  20807. [
  20808. {
  20809. name: "Micro",
  20810. height: math.unit(2, "inches")
  20811. },
  20812. {
  20813. name: "Normal",
  20814. height: math.unit(6 + 1 / 12, "feet"),
  20815. default: true
  20816. }
  20817. ]
  20818. ))
  20819. characterMakers.push(() => makeCharacter(
  20820. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20821. {
  20822. front: {
  20823. height: math.unit(12, "feet"),
  20824. weight: math.unit(410, "kg"),
  20825. name: "Front",
  20826. image: {
  20827. source: "./media/characters/xuna/front.svg",
  20828. extra: 2184 / 1980
  20829. }
  20830. },
  20831. side: {
  20832. height: math.unit(12, "feet"),
  20833. weight: math.unit(410, "kg"),
  20834. name: "Side",
  20835. image: {
  20836. source: "./media/characters/xuna/side.svg",
  20837. extra: 2184 / 1980
  20838. }
  20839. },
  20840. back: {
  20841. height: math.unit(12, "feet"),
  20842. weight: math.unit(410, "kg"),
  20843. name: "Back",
  20844. image: {
  20845. source: "./media/characters/xuna/back.svg",
  20846. extra: 2184 / 1980
  20847. }
  20848. },
  20849. },
  20850. [
  20851. {
  20852. name: "Nano glow",
  20853. height: math.unit(10, "nm")
  20854. },
  20855. {
  20856. name: "Micro floof",
  20857. height: math.unit(0.3, "m")
  20858. },
  20859. {
  20860. name: "Huggable softy boi",
  20861. height: math.unit(3.6576, "m"),
  20862. default: true
  20863. },
  20864. {
  20865. name: "Admirable floof",
  20866. height: math.unit(80, "meters")
  20867. },
  20868. {
  20869. name: "Gentle macro",
  20870. height: math.unit(300, "meters")
  20871. },
  20872. {
  20873. name: "Very careful floof",
  20874. height: math.unit(3200, "meters")
  20875. },
  20876. {
  20877. name: "The mega floof",
  20878. height: math.unit(36000, "meters")
  20879. },
  20880. {
  20881. name: "Giga-fur-Wicker",
  20882. height: math.unit(4800000, "meters")
  20883. },
  20884. {
  20885. name: "Licky world",
  20886. height: math.unit(20000000, "meters")
  20887. },
  20888. {
  20889. name: "Floofy cyan sun",
  20890. height: math.unit(1500000000, "meters")
  20891. },
  20892. {
  20893. name: "Milky Wicker",
  20894. height: math.unit(1000000000000000000000, "meters")
  20895. },
  20896. {
  20897. name: "The observing Wicker",
  20898. height: math.unit(999999999999999999999999999, "meters")
  20899. },
  20900. ]
  20901. ))
  20902. characterMakers.push(() => makeCharacter(
  20903. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20904. {
  20905. front: {
  20906. height: math.unit(5 + 9 / 12, "feet"),
  20907. weight: math.unit(150, "lb"),
  20908. name: "Front",
  20909. image: {
  20910. source: "./media/characters/arokha-sieyes/front.svg",
  20911. extra: 1425 / 1284,
  20912. bottom: 0.05
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Normal",
  20919. height: math.unit(5 + 9 / 12, "feet")
  20920. },
  20921. {
  20922. name: "Macro",
  20923. height: math.unit(30, "meters"),
  20924. default: true
  20925. },
  20926. ]
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20930. {
  20931. front: {
  20932. height: math.unit(6, "feet"),
  20933. weight: math.unit(180, "lb"),
  20934. name: "Front",
  20935. image: {
  20936. source: "./media/characters/arokh-sieyes/front.svg",
  20937. extra: 1830 / 1769,
  20938. bottom: 0.01
  20939. }
  20940. },
  20941. },
  20942. [
  20943. {
  20944. name: "Normal",
  20945. height: math.unit(6, "feet")
  20946. },
  20947. {
  20948. name: "Macro",
  20949. height: math.unit(30, "meters"),
  20950. default: true
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20956. {
  20957. side: {
  20958. height: math.unit(13 + 1 / 12, "feet"),
  20959. weight: math.unit(8.5, "tonnes"),
  20960. preyCapacity: math.unit(36, "people"),
  20961. name: "Side",
  20962. image: {
  20963. source: "./media/characters/goldeneye/side.svg",
  20964. extra: 1139/741,
  20965. bottom: 98/1237
  20966. }
  20967. },
  20968. front: {
  20969. height: math.unit(5.1, "feet"),
  20970. weight: math.unit(8.5, "tonnes"),
  20971. preyCapacity: math.unit(36, "people"),
  20972. name: "Front",
  20973. image: {
  20974. source: "./media/characters/goldeneye/front.svg",
  20975. extra: 635/365,
  20976. bottom: 598/1233
  20977. }
  20978. },
  20979. maw: {
  20980. height: math.unit(6.6, "feet"),
  20981. name: "Maw",
  20982. image: {
  20983. source: "./media/characters/goldeneye/maw.svg"
  20984. }
  20985. },
  20986. headFront: {
  20987. height: math.unit(8, "feet"),
  20988. name: "Head (Front)",
  20989. image: {
  20990. source: "./media/characters/goldeneye/head-front.svg"
  20991. }
  20992. },
  20993. headSide: {
  20994. height: math.unit(6, "feet"),
  20995. name: "Head (Side)",
  20996. image: {
  20997. source: "./media/characters/goldeneye/head-side.svg"
  20998. }
  20999. },
  21000. headBack: {
  21001. height: math.unit(8, "feet"),
  21002. name: "Head (Back)",
  21003. image: {
  21004. source: "./media/characters/goldeneye/head-back.svg"
  21005. }
  21006. },
  21007. paw: {
  21008. height: math.unit(3.4, "feet"),
  21009. name: "Paw",
  21010. image: {
  21011. source: "./media/characters/goldeneye/paw.svg"
  21012. }
  21013. },
  21014. toering: {
  21015. height: math.unit(0.45, "feet"),
  21016. name: "Toering",
  21017. image: {
  21018. source: "./media/characters/goldeneye/toering.svg"
  21019. }
  21020. },
  21021. eyes: {
  21022. height: math.unit(0.5, "feet"),
  21023. name: "Eyes",
  21024. image: {
  21025. source: "./media/characters/goldeneye/eyes.svg"
  21026. }
  21027. },
  21028. },
  21029. [
  21030. {
  21031. name: "Normal",
  21032. height: math.unit(13 + 1 / 12, "feet"),
  21033. default: true
  21034. },
  21035. ]
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21039. {
  21040. front: {
  21041. height: math.unit(6 + 1 / 12, "feet"),
  21042. weight: math.unit(210, "lb"),
  21043. name: "Front",
  21044. image: {
  21045. source: "./media/characters/leonardo-lycheborne/front.svg",
  21046. extra: 776/723,
  21047. bottom: 34/810
  21048. }
  21049. },
  21050. side: {
  21051. height: math.unit(6 + 1 / 12, "feet"),
  21052. weight: math.unit(210, "lb"),
  21053. name: "Side",
  21054. image: {
  21055. source: "./media/characters/leonardo-lycheborne/side.svg",
  21056. extra: 780/728,
  21057. bottom: 12/792
  21058. }
  21059. },
  21060. back: {
  21061. height: math.unit(6 + 1 / 12, "feet"),
  21062. weight: math.unit(210, "lb"),
  21063. name: "Back",
  21064. image: {
  21065. source: "./media/characters/leonardo-lycheborne/back.svg",
  21066. extra: 775/721,
  21067. bottom: 17/792
  21068. }
  21069. },
  21070. hand: {
  21071. height: math.unit(1.08, "feet"),
  21072. name: "Hand",
  21073. image: {
  21074. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21075. }
  21076. },
  21077. foot: {
  21078. height: math.unit(1.32, "feet"),
  21079. name: "Foot",
  21080. image: {
  21081. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21082. }
  21083. },
  21084. maw: {
  21085. height: math.unit(1, "feet"),
  21086. name: "Maw",
  21087. image: {
  21088. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21089. }
  21090. },
  21091. were: {
  21092. height: math.unit(20, "feet"),
  21093. weight: math.unit(7800, "lb"),
  21094. name: "Were",
  21095. image: {
  21096. source: "./media/characters/leonardo-lycheborne/were.svg",
  21097. extra: 1224/1165,
  21098. bottom: 72/1296
  21099. }
  21100. },
  21101. feral: {
  21102. height: math.unit(7.5, "feet"),
  21103. weight: math.unit(600, "lb"),
  21104. name: "Feral",
  21105. image: {
  21106. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21107. extra: 797/702,
  21108. bottom: 139/936
  21109. }
  21110. },
  21111. taur: {
  21112. height: math.unit(11, "feet"),
  21113. weight: math.unit(3300, "lb"),
  21114. name: "Taur",
  21115. image: {
  21116. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21117. extra: 1271/1197,
  21118. bottom: 47/1318
  21119. }
  21120. },
  21121. barghest: {
  21122. height: math.unit(11, "feet"),
  21123. weight: math.unit(1300, "lb"),
  21124. name: "Barghest",
  21125. image: {
  21126. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21127. extra: 1291/1204,
  21128. bottom: 37/1328
  21129. }
  21130. },
  21131. dick: {
  21132. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21133. name: "Dick",
  21134. image: {
  21135. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21136. }
  21137. },
  21138. dickWere: {
  21139. height: math.unit((20) / 3.8, "feet"),
  21140. name: "Dick (Were)",
  21141. image: {
  21142. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21143. }
  21144. },
  21145. },
  21146. [
  21147. {
  21148. name: "Normal",
  21149. height: math.unit(6 + 1 / 12, "feet"),
  21150. default: true
  21151. },
  21152. ]
  21153. ))
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21156. {
  21157. front: {
  21158. height: math.unit(10, "feet"),
  21159. weight: math.unit(350, "lb"),
  21160. name: "Front",
  21161. image: {
  21162. source: "./media/characters/jet/front.svg",
  21163. extra: 2050 / 1980,
  21164. bottom: 0.013
  21165. }
  21166. },
  21167. back: {
  21168. height: math.unit(10, "feet"),
  21169. weight: math.unit(350, "lb"),
  21170. name: "Back",
  21171. image: {
  21172. source: "./media/characters/jet/back.svg",
  21173. extra: 2050 / 1980,
  21174. bottom: 0.013
  21175. }
  21176. },
  21177. },
  21178. [
  21179. {
  21180. name: "Micro",
  21181. height: math.unit(6, "inches")
  21182. },
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(10, "feet"),
  21186. default: true
  21187. },
  21188. {
  21189. name: "Macro",
  21190. height: math.unit(100, "feet")
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(15, "feet"),
  21199. weight: math.unit(2800, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/tanarath/front.svg",
  21203. extra: 2392 / 2220,
  21204. bottom: 0.03
  21205. }
  21206. },
  21207. back: {
  21208. height: math.unit(15, "feet"),
  21209. weight: math.unit(2800, "lb"),
  21210. name: "Back",
  21211. image: {
  21212. source: "./media/characters/tanarath/back.svg",
  21213. extra: 2392 / 2220,
  21214. bottom: 0.03
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Normal",
  21221. height: math.unit(15, "feet"),
  21222. default: true
  21223. },
  21224. ]
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21228. {
  21229. front: {
  21230. height: math.unit(7 + 1 / 12, "feet"),
  21231. weight: math.unit(175, "lb"),
  21232. name: "Front",
  21233. image: {
  21234. source: "./media/characters/patty-cattybatty/front.svg",
  21235. extra: 908 / 874,
  21236. bottom: 0.025
  21237. }
  21238. },
  21239. },
  21240. [
  21241. {
  21242. name: "Micro",
  21243. height: math.unit(1, "inch")
  21244. },
  21245. {
  21246. name: "Normal",
  21247. height: math.unit(7 + 1 / 12, "feet")
  21248. },
  21249. {
  21250. name: "Mini Macro",
  21251. height: math.unit(155, "feet")
  21252. },
  21253. {
  21254. name: "Macro",
  21255. height: math.unit(1077, "feet")
  21256. },
  21257. {
  21258. name: "Mega Macro",
  21259. height: math.unit(47650, "feet"),
  21260. default: true
  21261. },
  21262. {
  21263. name: "Giga Macro",
  21264. height: math.unit(440, "miles")
  21265. },
  21266. {
  21267. name: "Tera Macro",
  21268. height: math.unit(8700, "miles")
  21269. },
  21270. {
  21271. name: "Planetary Macro",
  21272. height: math.unit(32700, "miles")
  21273. },
  21274. {
  21275. name: "Solar Macro",
  21276. height: math.unit(550000, "miles")
  21277. },
  21278. {
  21279. name: "Celestial Macro",
  21280. height: math.unit(2.5, "AU")
  21281. },
  21282. ]
  21283. ))
  21284. characterMakers.push(() => makeCharacter(
  21285. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21286. {
  21287. front: {
  21288. height: math.unit(4 + 5 / 12, "feet"),
  21289. weight: math.unit(90, "lb"),
  21290. name: "Front",
  21291. image: {
  21292. source: "./media/characters/cappu/front.svg",
  21293. extra: 1247 / 1152,
  21294. bottom: 0.012
  21295. }
  21296. },
  21297. },
  21298. [
  21299. {
  21300. name: "Normal",
  21301. height: math.unit(4 + 5 / 12, "feet"),
  21302. default: true
  21303. },
  21304. ]
  21305. ))
  21306. characterMakers.push(() => makeCharacter(
  21307. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21308. {
  21309. frontDressed: {
  21310. height: math.unit(70, "cm"),
  21311. weight: math.unit(6, "kg"),
  21312. name: "Front (Dressed)",
  21313. image: {
  21314. source: "./media/characters/sebi/front-dressed.svg",
  21315. extra: 713.5 / 686.5,
  21316. bottom: 0.003
  21317. }
  21318. },
  21319. front: {
  21320. height: math.unit(70, "cm"),
  21321. weight: math.unit(5, "kg"),
  21322. name: "Front",
  21323. image: {
  21324. source: "./media/characters/sebi/front.svg",
  21325. extra: 713.5 / 686.5,
  21326. bottom: 0.003
  21327. }
  21328. }
  21329. },
  21330. [
  21331. {
  21332. name: "Normal",
  21333. height: math.unit(70, "cm"),
  21334. default: true
  21335. },
  21336. {
  21337. name: "Macro",
  21338. height: math.unit(8, "meters")
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21344. {
  21345. front: {
  21346. height: math.unit(6, "feet"),
  21347. weight: math.unit(150, "lb"),
  21348. name: "Front",
  21349. image: {
  21350. source: "./media/characters/typhek/front.svg",
  21351. extra: 1948 / 1929,
  21352. bottom: 0.025
  21353. }
  21354. },
  21355. side: {
  21356. height: math.unit(6, "feet"),
  21357. weight: math.unit(150, "lb"),
  21358. name: "Side",
  21359. image: {
  21360. source: "./media/characters/typhek/side.svg",
  21361. extra: 2034 / 2010,
  21362. bottom: 0.003
  21363. }
  21364. },
  21365. back: {
  21366. height: math.unit(6, "feet"),
  21367. weight: math.unit(150, "lb"),
  21368. name: "Back",
  21369. image: {
  21370. source: "./media/characters/typhek/back.svg",
  21371. extra: 2005 / 1978,
  21372. bottom: 0.004
  21373. }
  21374. },
  21375. palm: {
  21376. height: math.unit(1.2, "feet"),
  21377. name: "Palm",
  21378. image: {
  21379. source: "./media/characters/typhek/palm.svg"
  21380. }
  21381. },
  21382. fist: {
  21383. height: math.unit(1.1, "feet"),
  21384. name: "Fist",
  21385. image: {
  21386. source: "./media/characters/typhek/fist.svg"
  21387. }
  21388. },
  21389. foot: {
  21390. height: math.unit(1.57, "feet"),
  21391. name: "Foot",
  21392. image: {
  21393. source: "./media/characters/typhek/foot.svg"
  21394. }
  21395. },
  21396. sole: {
  21397. height: math.unit(2.05, "feet"),
  21398. name: "Sole",
  21399. image: {
  21400. source: "./media/characters/typhek/sole.svg"
  21401. }
  21402. },
  21403. },
  21404. [
  21405. {
  21406. name: "Macro",
  21407. height: math.unit(40, "stories"),
  21408. default: true
  21409. },
  21410. {
  21411. name: "Megamacro",
  21412. height: math.unit(1, "mile")
  21413. },
  21414. {
  21415. name: "Gigamacro",
  21416. height: math.unit(4000, "solarradii")
  21417. },
  21418. {
  21419. name: "Universal",
  21420. height: math.unit(1.1, "universes")
  21421. }
  21422. ]
  21423. ))
  21424. characterMakers.push(() => makeCharacter(
  21425. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21426. {
  21427. side: {
  21428. height: math.unit(5 + 7 / 12, "feet"),
  21429. weight: math.unit(150, "lb"),
  21430. name: "Side",
  21431. image: {
  21432. source: "./media/characters/kassy/side.svg",
  21433. extra: 1280 / 1225,
  21434. bottom: 0.002
  21435. }
  21436. },
  21437. front: {
  21438. height: math.unit(5 + 7 / 12, "feet"),
  21439. weight: math.unit(150, "lb"),
  21440. name: "Front",
  21441. image: {
  21442. source: "./media/characters/kassy/front.svg",
  21443. extra: 1280 / 1225,
  21444. bottom: 0.025
  21445. }
  21446. },
  21447. back: {
  21448. height: math.unit(5 + 7 / 12, "feet"),
  21449. weight: math.unit(150, "lb"),
  21450. name: "Back",
  21451. image: {
  21452. source: "./media/characters/kassy/back.svg",
  21453. extra: 1280 / 1225,
  21454. bottom: 0.002
  21455. }
  21456. },
  21457. foot: {
  21458. height: math.unit(1.266, "feet"),
  21459. name: "Foot",
  21460. image: {
  21461. source: "./media/characters/kassy/foot.svg"
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(5 + 7 / 12, "feet")
  21469. },
  21470. {
  21471. name: "Macro",
  21472. height: math.unit(137, "feet"),
  21473. default: true
  21474. },
  21475. {
  21476. name: "Megamacro",
  21477. height: math.unit(1, "mile")
  21478. },
  21479. ]
  21480. ))
  21481. characterMakers.push(() => makeCharacter(
  21482. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21483. {
  21484. front: {
  21485. height: math.unit(6 + 1 / 12, "feet"),
  21486. weight: math.unit(200, "lb"),
  21487. name: "Front",
  21488. image: {
  21489. source: "./media/characters/neil/front.svg",
  21490. extra: 1326 / 1250,
  21491. bottom: 0.023
  21492. }
  21493. },
  21494. },
  21495. [
  21496. {
  21497. name: "Normal",
  21498. height: math.unit(6 + 1 / 12, "feet"),
  21499. default: true
  21500. },
  21501. {
  21502. name: "Macro",
  21503. height: math.unit(200, "feet")
  21504. },
  21505. ]
  21506. ))
  21507. characterMakers.push(() => makeCharacter(
  21508. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21509. {
  21510. front: {
  21511. height: math.unit(5 + 9 / 12, "feet"),
  21512. weight: math.unit(190, "lb"),
  21513. name: "Front",
  21514. image: {
  21515. source: "./media/characters/atticus/front.svg",
  21516. extra: 2934 / 2785,
  21517. bottom: 0.025
  21518. }
  21519. },
  21520. },
  21521. [
  21522. {
  21523. name: "Normal",
  21524. height: math.unit(5 + 9 / 12, "feet"),
  21525. default: true
  21526. },
  21527. {
  21528. name: "Macro",
  21529. height: math.unit(180, "feet")
  21530. },
  21531. ]
  21532. ))
  21533. characterMakers.push(() => makeCharacter(
  21534. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21535. {
  21536. side: {
  21537. height: math.unit(9, "feet"),
  21538. weight: math.unit(650, "lb"),
  21539. name: "Side",
  21540. image: {
  21541. source: "./media/characters/milo/side.svg",
  21542. extra: 2644 / 2310,
  21543. bottom: 0.032
  21544. }
  21545. },
  21546. },
  21547. [
  21548. {
  21549. name: "Normal",
  21550. height: math.unit(9, "feet"),
  21551. default: true
  21552. },
  21553. {
  21554. name: "Macro",
  21555. height: math.unit(300, "feet")
  21556. },
  21557. ]
  21558. ))
  21559. characterMakers.push(() => makeCharacter(
  21560. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21561. {
  21562. side: {
  21563. height: math.unit(8, "meters"),
  21564. weight: math.unit(90000, "kg"),
  21565. name: "Side",
  21566. image: {
  21567. source: "./media/characters/ijzer/side.svg",
  21568. extra: 2756 / 1600,
  21569. bottom: 0.01
  21570. }
  21571. },
  21572. },
  21573. [
  21574. {
  21575. name: "Small",
  21576. height: math.unit(3, "meters")
  21577. },
  21578. {
  21579. name: "Normal",
  21580. height: math.unit(8, "meters"),
  21581. default: true
  21582. },
  21583. {
  21584. name: "Normal+",
  21585. height: math.unit(10, "meters")
  21586. },
  21587. {
  21588. name: "Bigger",
  21589. height: math.unit(24, "meters")
  21590. },
  21591. {
  21592. name: "Huge",
  21593. height: math.unit(80, "meters")
  21594. },
  21595. ]
  21596. ))
  21597. characterMakers.push(() => makeCharacter(
  21598. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21599. {
  21600. front: {
  21601. height: math.unit(6 + 2 / 12, "feet"),
  21602. weight: math.unit(153, "lb"),
  21603. name: "Front",
  21604. image: {
  21605. source: "./media/characters/luca-cervicum/front.svg",
  21606. extra: 370 / 327,
  21607. bottom: 0.015
  21608. }
  21609. },
  21610. back: {
  21611. height: math.unit(6 + 2 / 12, "feet"),
  21612. weight: math.unit(153, "lb"),
  21613. name: "Back",
  21614. image: {
  21615. source: "./media/characters/luca-cervicum/back.svg",
  21616. extra: 367 / 333,
  21617. bottom: 0.005
  21618. }
  21619. },
  21620. frontGear: {
  21621. height: math.unit(6 + 2 / 12, "feet"),
  21622. weight: math.unit(173, "lb"),
  21623. name: "Front (Gear)",
  21624. image: {
  21625. source: "./media/characters/luca-cervicum/front-gear.svg",
  21626. extra: 377 / 333,
  21627. bottom: 0.006
  21628. }
  21629. },
  21630. },
  21631. [
  21632. {
  21633. name: "Normal",
  21634. height: math.unit(6 + 2 / 12, "feet"),
  21635. default: true
  21636. },
  21637. ]
  21638. ))
  21639. characterMakers.push(() => makeCharacter(
  21640. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21641. {
  21642. front: {
  21643. height: math.unit(6 + 1 / 12, "feet"),
  21644. weight: math.unit(304, "lb"),
  21645. name: "Front",
  21646. image: {
  21647. source: "./media/characters/oliver/front.svg",
  21648. extra: 157 / 143,
  21649. bottom: 0.08
  21650. }
  21651. },
  21652. },
  21653. [
  21654. {
  21655. name: "Normal",
  21656. height: math.unit(6 + 1 / 12, "feet"),
  21657. default: true
  21658. },
  21659. ]
  21660. ))
  21661. characterMakers.push(() => makeCharacter(
  21662. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21663. {
  21664. front: {
  21665. height: math.unit(5 + 7 / 12, "feet"),
  21666. weight: math.unit(140, "lb"),
  21667. name: "Front",
  21668. image: {
  21669. source: "./media/characters/shane/front.svg",
  21670. extra: 304 / 289,
  21671. bottom: 0.005
  21672. }
  21673. },
  21674. },
  21675. [
  21676. {
  21677. name: "Normal",
  21678. height: math.unit(5 + 7 / 12, "feet"),
  21679. default: true
  21680. },
  21681. ]
  21682. ))
  21683. characterMakers.push(() => makeCharacter(
  21684. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21685. {
  21686. front: {
  21687. height: math.unit(5 + 9 / 12, "feet"),
  21688. weight: math.unit(178, "lb"),
  21689. name: "Front",
  21690. image: {
  21691. source: "./media/characters/shin/front.svg",
  21692. extra: 159 / 151,
  21693. bottom: 0.015
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(5 + 9 / 12, "feet"),
  21701. default: true
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(5 + 10 / 12, "feet"),
  21710. weight: math.unit(168, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/xerxes/front.svg",
  21714. extra: 282 / 260,
  21715. bottom: 0.045
  21716. }
  21717. },
  21718. },
  21719. [
  21720. {
  21721. name: "Normal",
  21722. height: math.unit(5 + 10 / 12, "feet"),
  21723. default: true
  21724. },
  21725. ]
  21726. ))
  21727. characterMakers.push(() => makeCharacter(
  21728. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21729. {
  21730. front: {
  21731. height: math.unit(6 + 7 / 12, "feet"),
  21732. weight: math.unit(208, "lb"),
  21733. name: "Front",
  21734. image: {
  21735. source: "./media/characters/chaska/front.svg",
  21736. extra: 332 / 319,
  21737. bottom: 0.015
  21738. }
  21739. },
  21740. },
  21741. [
  21742. {
  21743. name: "Normal",
  21744. height: math.unit(6 + 7 / 12, "feet"),
  21745. default: true
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21751. {
  21752. front: {
  21753. height: math.unit(5 + 8 / 12, "feet"),
  21754. weight: math.unit(208, "lb"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/enuk/front.svg",
  21758. extra: 437 / 406,
  21759. bottom: 0.02
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Normal",
  21766. height: math.unit(5 + 8 / 12, "feet"),
  21767. default: true
  21768. },
  21769. ]
  21770. ))
  21771. characterMakers.push(() => makeCharacter(
  21772. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21773. {
  21774. front: {
  21775. height: math.unit(5 + 10 / 12, "feet"),
  21776. weight: math.unit(252, "lb"),
  21777. name: "Front",
  21778. image: {
  21779. source: "./media/characters/bruun/front.svg",
  21780. extra: 197 / 187,
  21781. bottom: 0.012
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(5 + 10 / 12, "feet"),
  21789. default: true
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(6 + 10 / 12, "feet"),
  21798. weight: math.unit(255, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/alexeev/front.svg",
  21802. extra: 213 / 200,
  21803. bottom: 0.05
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Normal",
  21810. height: math.unit(6 + 10 / 12, "feet"),
  21811. default: true
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21817. {
  21818. front: {
  21819. height: math.unit(2 + 8 / 12, "feet"),
  21820. weight: math.unit(22, "lb"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/evelyn/front.svg",
  21824. extra: 208 / 180
  21825. }
  21826. },
  21827. },
  21828. [
  21829. {
  21830. name: "Normal",
  21831. height: math.unit(2 + 8 / 12, "feet"),
  21832. default: true
  21833. },
  21834. ]
  21835. ))
  21836. characterMakers.push(() => makeCharacter(
  21837. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21838. {
  21839. front: {
  21840. height: math.unit(5 + 9 / 12, "feet"),
  21841. weight: math.unit(139, "lb"),
  21842. name: "Front",
  21843. image: {
  21844. source: "./media/characters/inca/front.svg",
  21845. extra: 294 / 291,
  21846. bottom: 0.03
  21847. }
  21848. },
  21849. },
  21850. [
  21851. {
  21852. name: "Normal",
  21853. height: math.unit(5 + 9 / 12, "feet"),
  21854. default: true
  21855. },
  21856. ]
  21857. ))
  21858. characterMakers.push(() => makeCharacter(
  21859. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21860. {
  21861. front: {
  21862. height: math.unit(6 + 3 / 12, "feet"),
  21863. weight: math.unit(185, "lb"),
  21864. name: "Front",
  21865. image: {
  21866. source: "./media/characters/mera/front.svg",
  21867. extra: 291 / 277,
  21868. bottom: 0.03
  21869. }
  21870. },
  21871. },
  21872. [
  21873. {
  21874. name: "Normal",
  21875. height: math.unit(6 + 3 / 12, "feet"),
  21876. default: true
  21877. },
  21878. ]
  21879. ))
  21880. characterMakers.push(() => makeCharacter(
  21881. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21882. {
  21883. front: {
  21884. height: math.unit(6 + 7 / 12, "feet"),
  21885. weight: math.unit(160, "lb"),
  21886. name: "Front",
  21887. image: {
  21888. source: "./media/characters/ceres/front.svg",
  21889. extra: 1023 / 950,
  21890. bottom: 0.027
  21891. }
  21892. },
  21893. back: {
  21894. height: math.unit(6 + 7 / 12, "feet"),
  21895. weight: math.unit(160, "lb"),
  21896. name: "Back",
  21897. image: {
  21898. source: "./media/characters/ceres/back.svg",
  21899. extra: 1023 / 950
  21900. }
  21901. },
  21902. },
  21903. [
  21904. {
  21905. name: "Normal",
  21906. height: math.unit(6 + 7 / 12, "feet"),
  21907. default: true
  21908. },
  21909. ]
  21910. ))
  21911. characterMakers.push(() => makeCharacter(
  21912. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21913. {
  21914. front: {
  21915. height: math.unit(5 + 10 / 12, "feet"),
  21916. weight: math.unit(150, "lb"),
  21917. name: "Front",
  21918. image: {
  21919. source: "./media/characters/kris/front.svg",
  21920. extra: 885 / 803,
  21921. bottom: 0.03
  21922. }
  21923. },
  21924. },
  21925. [
  21926. {
  21927. name: "Normal",
  21928. height: math.unit(5 + 10 / 12, "feet"),
  21929. default: true
  21930. },
  21931. ]
  21932. ))
  21933. characterMakers.push(() => makeCharacter(
  21934. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21935. {
  21936. front: {
  21937. height: math.unit(7, "feet"),
  21938. weight: math.unit(120, "kg"),
  21939. name: "Front",
  21940. image: {
  21941. source: "./media/characters/taluthus/front.svg",
  21942. extra: 903 / 833,
  21943. bottom: 0.015
  21944. }
  21945. },
  21946. },
  21947. [
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(7, "feet"),
  21951. default: true
  21952. },
  21953. {
  21954. name: "Macro",
  21955. height: math.unit(300, "feet")
  21956. },
  21957. ]
  21958. ))
  21959. characterMakers.push(() => makeCharacter(
  21960. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21961. {
  21962. front: {
  21963. height: math.unit(5 + 9 / 12, "feet"),
  21964. weight: math.unit(145, "lb"),
  21965. name: "Front",
  21966. image: {
  21967. source: "./media/characters/dawn/front.svg",
  21968. extra: 2094 / 2016,
  21969. bottom: 0.025
  21970. }
  21971. },
  21972. back: {
  21973. height: math.unit(5 + 9 / 12, "feet"),
  21974. weight: math.unit(160, "lb"),
  21975. name: "Back",
  21976. image: {
  21977. source: "./media/characters/dawn/back.svg",
  21978. extra: 2112 / 2080,
  21979. bottom: 0.005
  21980. }
  21981. },
  21982. },
  21983. [
  21984. {
  21985. name: "Normal",
  21986. height: math.unit(6 + 7 / 12, "feet"),
  21987. default: true
  21988. },
  21989. ]
  21990. ))
  21991. characterMakers.push(() => makeCharacter(
  21992. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21993. {
  21994. anthro: {
  21995. height: math.unit(8 + 3 / 12, "feet"),
  21996. weight: math.unit(450, "lb"),
  21997. name: "Anthro",
  21998. image: {
  21999. source: "./media/characters/arador/anthro.svg",
  22000. extra: 1835 / 1718,
  22001. bottom: 0.025
  22002. }
  22003. },
  22004. feral: {
  22005. height: math.unit(4, "feet"),
  22006. weight: math.unit(200, "lb"),
  22007. name: "Feral",
  22008. image: {
  22009. source: "./media/characters/arador/feral.svg",
  22010. extra: 1683 / 1514,
  22011. bottom: 0.07
  22012. }
  22013. },
  22014. },
  22015. [
  22016. {
  22017. name: "Normal",
  22018. height: math.unit(8 + 3 / 12, "feet")
  22019. },
  22020. {
  22021. name: "Macro",
  22022. height: math.unit(82.5, "feet"),
  22023. default: true
  22024. },
  22025. ]
  22026. ))
  22027. characterMakers.push(() => makeCharacter(
  22028. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22029. {
  22030. front: {
  22031. height: math.unit(5 + 10 / 12, "feet"),
  22032. weight: math.unit(125, "lb"),
  22033. name: "Front",
  22034. image: {
  22035. source: "./media/characters/dharsi/front.svg",
  22036. extra: 716 / 630,
  22037. bottom: 0.035
  22038. }
  22039. },
  22040. },
  22041. [
  22042. {
  22043. name: "Nano",
  22044. height: math.unit(100, "nm")
  22045. },
  22046. {
  22047. name: "Micro",
  22048. height: math.unit(2, "inches")
  22049. },
  22050. {
  22051. name: "Normal",
  22052. height: math.unit(5 + 10 / 12, "feet"),
  22053. default: true
  22054. },
  22055. {
  22056. name: "Macro",
  22057. height: math.unit(1000, "feet")
  22058. },
  22059. {
  22060. name: "Megamacro",
  22061. height: math.unit(10, "miles")
  22062. },
  22063. {
  22064. name: "Gigamacro",
  22065. height: math.unit(3000, "miles")
  22066. },
  22067. {
  22068. name: "Teramacro",
  22069. height: math.unit(500000, "miles")
  22070. },
  22071. {
  22072. name: "Teramacro+",
  22073. height: math.unit(30, "galaxies")
  22074. },
  22075. ]
  22076. ))
  22077. characterMakers.push(() => makeCharacter(
  22078. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22079. {
  22080. front: {
  22081. height: math.unit(6, "feet"),
  22082. weight: math.unit(150, "lb"),
  22083. name: "Front",
  22084. image: {
  22085. source: "./media/characters/deathy/front.svg",
  22086. extra: 1552 / 1463,
  22087. bottom: 0.025
  22088. }
  22089. },
  22090. side: {
  22091. height: math.unit(6, "feet"),
  22092. weight: math.unit(150, "lb"),
  22093. name: "Side",
  22094. image: {
  22095. source: "./media/characters/deathy/side.svg",
  22096. extra: 1604 / 1455,
  22097. bottom: 0.025
  22098. }
  22099. },
  22100. back: {
  22101. height: math.unit(6, "feet"),
  22102. weight: math.unit(150, "lb"),
  22103. name: "Back",
  22104. image: {
  22105. source: "./media/characters/deathy/back.svg",
  22106. extra: 1580 / 1463,
  22107. bottom: 0.005
  22108. }
  22109. },
  22110. },
  22111. [
  22112. {
  22113. name: "Micro",
  22114. height: math.unit(5, "millimeters")
  22115. },
  22116. {
  22117. name: "Normal",
  22118. height: math.unit(6 + 5 / 12, "feet"),
  22119. default: true
  22120. },
  22121. ]
  22122. ))
  22123. characterMakers.push(() => makeCharacter(
  22124. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22125. {
  22126. front: {
  22127. height: math.unit(16, "feet"),
  22128. weight: math.unit(4000, "lb"),
  22129. name: "Front",
  22130. image: {
  22131. source: "./media/characters/juniper/front.svg",
  22132. bottom: 0.04
  22133. }
  22134. },
  22135. },
  22136. [
  22137. {
  22138. name: "Normal",
  22139. height: math.unit(16, "feet"),
  22140. default: true
  22141. },
  22142. ]
  22143. ))
  22144. characterMakers.push(() => makeCharacter(
  22145. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22146. {
  22147. front: {
  22148. height: math.unit(6, "feet"),
  22149. weight: math.unit(150, "lb"),
  22150. name: "Front",
  22151. image: {
  22152. source: "./media/characters/hipster/front.svg",
  22153. extra: 1312 / 1209,
  22154. bottom: 0.025
  22155. }
  22156. },
  22157. back: {
  22158. height: math.unit(6, "feet"),
  22159. weight: math.unit(150, "lb"),
  22160. name: "Back",
  22161. image: {
  22162. source: "./media/characters/hipster/back.svg",
  22163. extra: 1281 / 1196,
  22164. bottom: 0.01
  22165. }
  22166. },
  22167. },
  22168. [
  22169. {
  22170. name: "Micro",
  22171. height: math.unit(1, "mm")
  22172. },
  22173. {
  22174. name: "Normal",
  22175. height: math.unit(4, "inches"),
  22176. default: true
  22177. },
  22178. {
  22179. name: "Macro",
  22180. height: math.unit(500, "feet")
  22181. },
  22182. {
  22183. name: "Megamacro",
  22184. height: math.unit(1000, "miles")
  22185. },
  22186. ]
  22187. ))
  22188. characterMakers.push(() => makeCharacter(
  22189. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22190. {
  22191. front: {
  22192. height: math.unit(6, "feet"),
  22193. weight: math.unit(150, "lb"),
  22194. name: "Front",
  22195. image: {
  22196. source: "./media/characters/tendirmuldr/front.svg",
  22197. extra: 1878 / 1772,
  22198. bottom: 0.015
  22199. }
  22200. },
  22201. },
  22202. [
  22203. {
  22204. name: "Megamacro",
  22205. height: math.unit(1500, "miles"),
  22206. default: true
  22207. },
  22208. ]
  22209. ))
  22210. characterMakers.push(() => makeCharacter(
  22211. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22212. {
  22213. front: {
  22214. height: math.unit(14, "feet"),
  22215. weight: math.unit(12000, "lb"),
  22216. name: "Front",
  22217. image: {
  22218. source: "./media/characters/mort/front.svg",
  22219. extra: 365 / 318,
  22220. bottom: 0.01
  22221. }
  22222. },
  22223. side: {
  22224. height: math.unit(14, "feet"),
  22225. weight: math.unit(12000, "lb"),
  22226. name: "Side",
  22227. image: {
  22228. source: "./media/characters/mort/side.svg",
  22229. extra: 365 / 318,
  22230. bottom: 0.052
  22231. },
  22232. default: true
  22233. },
  22234. back: {
  22235. height: math.unit(14, "feet"),
  22236. weight: math.unit(12000, "lb"),
  22237. name: "Back",
  22238. image: {
  22239. source: "./media/characters/mort/back.svg",
  22240. extra: 371 / 332,
  22241. bottom: 0.18
  22242. }
  22243. },
  22244. },
  22245. [
  22246. {
  22247. name: "Normal",
  22248. height: math.unit(14, "feet"),
  22249. default: true
  22250. },
  22251. ]
  22252. ))
  22253. characterMakers.push(() => makeCharacter(
  22254. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22255. {
  22256. front: {
  22257. height: math.unit(8, "feet"),
  22258. weight: math.unit(1, "ton"),
  22259. name: "Front",
  22260. image: {
  22261. source: "./media/characters/lycoa/front.svg",
  22262. extra: 1836/1728,
  22263. bottom: 81/1917
  22264. }
  22265. },
  22266. back: {
  22267. height: math.unit(8, "feet"),
  22268. weight: math.unit(1, "ton"),
  22269. name: "Back",
  22270. image: {
  22271. source: "./media/characters/lycoa/back.svg",
  22272. extra: 1785/1720,
  22273. bottom: 91/1876
  22274. }
  22275. },
  22276. head: {
  22277. height: math.unit(1.6243, "feet"),
  22278. name: "Head",
  22279. image: {
  22280. source: "./media/characters/lycoa/head.svg",
  22281. extra: 1011/782,
  22282. bottom: 0/1011
  22283. }
  22284. },
  22285. tailmaw: {
  22286. height: math.unit(1.9, "feet"),
  22287. name: "Tailmaw",
  22288. image: {
  22289. source: "./media/characters/lycoa/tailmaw.svg"
  22290. }
  22291. },
  22292. tentacles: {
  22293. height: math.unit(2.1, "feet"),
  22294. name: "Tentacles",
  22295. image: {
  22296. source: "./media/characters/lycoa/tentacles.svg"
  22297. }
  22298. },
  22299. dick: {
  22300. height: math.unit(1.73, "feet"),
  22301. name: "Dick",
  22302. image: {
  22303. source: "./media/characters/lycoa/dick.svg"
  22304. }
  22305. },
  22306. },
  22307. [
  22308. {
  22309. name: "Normal",
  22310. height: math.unit(8, "feet"),
  22311. default: true
  22312. },
  22313. {
  22314. name: "Macro",
  22315. height: math.unit(30, "feet")
  22316. },
  22317. ]
  22318. ))
  22319. characterMakers.push(() => makeCharacter(
  22320. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22321. {
  22322. front: {
  22323. height: math.unit(4 + 2 / 12, "feet"),
  22324. weight: math.unit(70, "lb"),
  22325. name: "Front",
  22326. image: {
  22327. source: "./media/characters/naldara/front.svg",
  22328. extra: 1664/1387,
  22329. bottom: 81/1745
  22330. },
  22331. form: "anthro",
  22332. default: true
  22333. },
  22334. naga: {
  22335. height: math.unit(20, "feet"),
  22336. weight: math.unit(15000, "kg"),
  22337. name: "Front",
  22338. image: {
  22339. source: "./media/characters/naldara/naga.svg",
  22340. extra: 1590/1396,
  22341. bottom: 285/1875
  22342. },
  22343. form: "naga",
  22344. default: true
  22345. },
  22346. },
  22347. [
  22348. {
  22349. name: "Normal",
  22350. height: math.unit(4 + 2 / 12, "feet"),
  22351. form: "anthro",
  22352. default: true
  22353. },
  22354. {
  22355. name: "Normal",
  22356. height: math.unit(20, "feet"),
  22357. form: "naga",
  22358. default: true
  22359. },
  22360. ],
  22361. {
  22362. "anthro": {
  22363. name: "Anthro",
  22364. default: true
  22365. },
  22366. "naga": {
  22367. name: "Naga"
  22368. }
  22369. }
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22373. {
  22374. front: {
  22375. height: math.unit(13 + 7 / 12, "feet"),
  22376. weight: math.unit(1500, "lb"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/briar/front.svg",
  22380. extra: 1223/1157,
  22381. bottom: 123/1346
  22382. }
  22383. },
  22384. },
  22385. [
  22386. {
  22387. name: "Normal",
  22388. height: math.unit(13 + 7 / 12, "feet"),
  22389. default: true
  22390. },
  22391. ]
  22392. ))
  22393. characterMakers.push(() => makeCharacter(
  22394. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22395. {
  22396. side: {
  22397. height: math.unit(16, "feet"),
  22398. weight: math.unit(500, "lb"),
  22399. name: "Side",
  22400. image: {
  22401. source: "./media/characters/vanguard/side.svg",
  22402. extra: 1022/914,
  22403. bottom: 30/1052
  22404. }
  22405. },
  22406. sideAlt: {
  22407. height: math.unit(10, "feet"),
  22408. weight: math.unit(500, "lb"),
  22409. name: "Side (Alt)",
  22410. image: {
  22411. source: "./media/characters/vanguard/side-alt.svg",
  22412. extra: 502 / 425,
  22413. bottom: 0.087
  22414. }
  22415. },
  22416. },
  22417. [
  22418. {
  22419. name: "Normal",
  22420. height: math.unit(17.71, "feet"),
  22421. default: true
  22422. },
  22423. ]
  22424. ))
  22425. characterMakers.push(() => makeCharacter(
  22426. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22427. {
  22428. front: {
  22429. height: math.unit(7.5, "feet"),
  22430. weight: math.unit(2, "lb"),
  22431. name: "Front",
  22432. image: {
  22433. source: "./media/characters/artemis/work-safe-front.svg",
  22434. extra: 1192 / 1075,
  22435. bottom: 0.07
  22436. },
  22437. form: "work-safe",
  22438. default: true
  22439. },
  22440. frontNsfw: {
  22441. height: math.unit(7.5, "feet"),
  22442. weight: math.unit(2, "lb"),
  22443. name: "Front",
  22444. image: {
  22445. source: "./media/characters/artemis/calibrating-front.svg",
  22446. extra: 1192 / 1075,
  22447. bottom: 0.07
  22448. },
  22449. form: "calibrating",
  22450. default: true
  22451. },
  22452. frontNsfwer: {
  22453. height: math.unit(7.5, "feet"),
  22454. weight: math.unit(2, "lb"),
  22455. name: "Front",
  22456. image: {
  22457. source: "./media/characters/artemis/oversize-load-front.svg",
  22458. extra: 1192 / 1075,
  22459. bottom: 0.07
  22460. },
  22461. form: "oversize-load",
  22462. default: true
  22463. },
  22464. side: {
  22465. height: math.unit(7.5, "feet"),
  22466. weight: math.unit(2, "lb"),
  22467. name: "Side",
  22468. image: {
  22469. source: "./media/characters/artemis/work-safe-side.svg",
  22470. extra: 1192 / 1075,
  22471. bottom: 0.07
  22472. },
  22473. form: "work-safe"
  22474. },
  22475. sideNsfw: {
  22476. height: math.unit(7.5, "feet"),
  22477. weight: math.unit(2, "lb"),
  22478. name: "Side",
  22479. image: {
  22480. source: "./media/characters/artemis/calibrating-side.svg",
  22481. extra: 1192 / 1075,
  22482. bottom: 0.07
  22483. },
  22484. form: "calibrating"
  22485. },
  22486. sideNsfwer: {
  22487. height: math.unit(7.5, "feet"),
  22488. weight: math.unit(2, "lb"),
  22489. name: "Side",
  22490. image: {
  22491. source: "./media/characters/artemis/oversize-load-side.svg",
  22492. extra: 1192 / 1075,
  22493. bottom: 0.07
  22494. },
  22495. form: "oversize-load"
  22496. },
  22497. maw: {
  22498. height: math.unit(1.1, "feet"),
  22499. name: "Maw",
  22500. image: {
  22501. source: "./media/characters/artemis/maw.svg"
  22502. },
  22503. form: "work-safe"
  22504. },
  22505. stomach: {
  22506. height: math.unit(0.95, "feet"),
  22507. name: "Stomach",
  22508. image: {
  22509. source: "./media/characters/artemis/stomach.svg"
  22510. },
  22511. form: "work-safe"
  22512. },
  22513. dickCanine: {
  22514. height: math.unit(1, "feet"),
  22515. name: "Dick (Canine)",
  22516. image: {
  22517. source: "./media/characters/artemis/dick-canine.svg"
  22518. },
  22519. form: "calibrating"
  22520. },
  22521. dickEquine: {
  22522. height: math.unit(0.85, "feet"),
  22523. name: "Dick (Equine)",
  22524. image: {
  22525. source: "./media/characters/artemis/dick-equine.svg"
  22526. },
  22527. form: "calibrating"
  22528. },
  22529. dickExotic: {
  22530. height: math.unit(0.85, "feet"),
  22531. name: "Dick (Exotic)",
  22532. image: {
  22533. source: "./media/characters/artemis/dick-exotic.svg"
  22534. },
  22535. form: "calibrating"
  22536. },
  22537. dickCanineBigger: {
  22538. height: math.unit(1 * 1.33, "feet"),
  22539. name: "Dick (Canine)",
  22540. image: {
  22541. source: "./media/characters/artemis/dick-canine.svg"
  22542. },
  22543. form: "oversize-load"
  22544. },
  22545. dickEquineBigger: {
  22546. height: math.unit(0.85 * 1.33, "feet"),
  22547. name: "Dick (Equine)",
  22548. image: {
  22549. source: "./media/characters/artemis/dick-equine.svg"
  22550. },
  22551. form: "oversize-load"
  22552. },
  22553. dickExoticBigger: {
  22554. height: math.unit(0.85 * 1.33, "feet"),
  22555. name: "Dick (Exotic)",
  22556. image: {
  22557. source: "./media/characters/artemis/dick-exotic.svg"
  22558. },
  22559. form: "oversize-load"
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Normal",
  22565. height: math.unit(7.5, "feet"),
  22566. form: "work-safe",
  22567. default: true
  22568. },
  22569. {
  22570. name: "Normal",
  22571. height: math.unit(7.5, "feet"),
  22572. form: "calibrating",
  22573. default: true
  22574. },
  22575. {
  22576. name: "Normal",
  22577. height: math.unit(7.5, "feet"),
  22578. form: "oversize-load",
  22579. default: true
  22580. },
  22581. {
  22582. name: "Enlarged",
  22583. height: math.unit(12, "feet"),
  22584. form: "work-safe",
  22585. },
  22586. {
  22587. name: "Enlarged",
  22588. height: math.unit(12, "feet"),
  22589. form: "calibrating",
  22590. },
  22591. {
  22592. name: "Enlarged",
  22593. height: math.unit(12, "feet"),
  22594. form: "oversize-load",
  22595. },
  22596. ],
  22597. {
  22598. "work-safe": {
  22599. name: "Work-Safe",
  22600. default: true
  22601. },
  22602. "calibrating": {
  22603. name: "Calibrating"
  22604. },
  22605. "oversize-load": {
  22606. name: "Oversize Load"
  22607. }
  22608. }
  22609. ))
  22610. characterMakers.push(() => makeCharacter(
  22611. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22612. {
  22613. front: {
  22614. height: math.unit(5 + 3 / 12, "feet"),
  22615. weight: math.unit(160, "lb"),
  22616. name: "Front",
  22617. image: {
  22618. source: "./media/characters/kira/front.svg",
  22619. extra: 906 / 786,
  22620. bottom: 0.01
  22621. }
  22622. },
  22623. back: {
  22624. height: math.unit(5 + 3 / 12, "feet"),
  22625. weight: math.unit(160, "lb"),
  22626. name: "Back",
  22627. image: {
  22628. source: "./media/characters/kira/back.svg",
  22629. extra: 882 / 757,
  22630. bottom: 0.005
  22631. }
  22632. },
  22633. frontDressed: {
  22634. height: math.unit(5 + 3 / 12, "feet"),
  22635. weight: math.unit(160, "lb"),
  22636. name: "Front (Dressed)",
  22637. image: {
  22638. source: "./media/characters/kira/front-dressed.svg",
  22639. extra: 906 / 786,
  22640. bottom: 0.01
  22641. }
  22642. },
  22643. beans: {
  22644. height: math.unit(0.92, "feet"),
  22645. name: "Beans",
  22646. image: {
  22647. source: "./media/characters/kira/beans.svg"
  22648. }
  22649. },
  22650. },
  22651. [
  22652. {
  22653. name: "Normal",
  22654. height: math.unit(5 + 3 / 12, "feet"),
  22655. default: true
  22656. },
  22657. ]
  22658. ))
  22659. characterMakers.push(() => makeCharacter(
  22660. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22661. {
  22662. front: {
  22663. height: math.unit(5 + 4 / 12, "feet"),
  22664. weight: math.unit(145, "lb"),
  22665. name: "Front",
  22666. image: {
  22667. source: "./media/characters/scramble/front.svg",
  22668. extra: 763 / 727,
  22669. bottom: 0.05
  22670. }
  22671. },
  22672. back: {
  22673. height: math.unit(5 + 4 / 12, "feet"),
  22674. weight: math.unit(145, "lb"),
  22675. name: "Back",
  22676. image: {
  22677. source: "./media/characters/scramble/back.svg",
  22678. extra: 826 / 737,
  22679. bottom: 0.002
  22680. }
  22681. },
  22682. },
  22683. [
  22684. {
  22685. name: "Normal",
  22686. height: math.unit(5 + 4 / 12, "feet"),
  22687. default: true
  22688. },
  22689. ]
  22690. ))
  22691. characterMakers.push(() => makeCharacter(
  22692. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22693. {
  22694. side: {
  22695. height: math.unit(6 + 2 / 12, "feet"),
  22696. weight: math.unit(190, "lb"),
  22697. name: "Side",
  22698. image: {
  22699. source: "./media/characters/biscuit/side.svg",
  22700. extra: 858 / 791,
  22701. bottom: 0.044
  22702. }
  22703. },
  22704. },
  22705. [
  22706. {
  22707. name: "Normal",
  22708. height: math.unit(6 + 2 / 12, "feet"),
  22709. default: true
  22710. },
  22711. ]
  22712. ))
  22713. characterMakers.push(() => makeCharacter(
  22714. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22715. {
  22716. front: {
  22717. height: math.unit(5 + 2 / 12, "feet"),
  22718. weight: math.unit(120, "lb"),
  22719. name: "Front",
  22720. image: {
  22721. source: "./media/characters/poffin/front.svg",
  22722. extra: 786 / 680,
  22723. bottom: 0.005
  22724. }
  22725. },
  22726. },
  22727. [
  22728. {
  22729. name: "Normal",
  22730. height: math.unit(5 + 2 / 12, "feet"),
  22731. default: true
  22732. },
  22733. ]
  22734. ))
  22735. characterMakers.push(() => makeCharacter(
  22736. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22737. {
  22738. front: {
  22739. height: math.unit(6 + 3 / 12, "feet"),
  22740. weight: math.unit(519, "lb"),
  22741. name: "Front",
  22742. image: {
  22743. source: "./media/characters/dhari/front.svg",
  22744. extra: 1048 / 946,
  22745. bottom: 0.015
  22746. }
  22747. },
  22748. back: {
  22749. height: math.unit(6 + 3 / 12, "feet"),
  22750. weight: math.unit(519, "lb"),
  22751. name: "Back",
  22752. image: {
  22753. source: "./media/characters/dhari/back.svg",
  22754. extra: 1048 / 931,
  22755. bottom: 0.005
  22756. }
  22757. },
  22758. frontDressed: {
  22759. height: math.unit(6 + 3 / 12, "feet"),
  22760. weight: math.unit(519, "lb"),
  22761. name: "Front (Dressed)",
  22762. image: {
  22763. source: "./media/characters/dhari/front-dressed.svg",
  22764. extra: 1713 / 1546,
  22765. bottom: 0.02
  22766. }
  22767. },
  22768. backDressed: {
  22769. height: math.unit(6 + 3 / 12, "feet"),
  22770. weight: math.unit(519, "lb"),
  22771. name: "Back (Dressed)",
  22772. image: {
  22773. source: "./media/characters/dhari/back-dressed.svg",
  22774. extra: 1699 / 1537,
  22775. bottom: 0.01
  22776. }
  22777. },
  22778. maw: {
  22779. height: math.unit(0.95, "feet"),
  22780. name: "Maw",
  22781. image: {
  22782. source: "./media/characters/dhari/maw.svg"
  22783. }
  22784. },
  22785. wereFront: {
  22786. height: math.unit(12 + 8 / 12, "feet"),
  22787. weight: math.unit(4000, "lb"),
  22788. name: "Front (Were)",
  22789. image: {
  22790. source: "./media/characters/dhari/were-front.svg",
  22791. extra: 1065 / 969,
  22792. bottom: 0.015
  22793. }
  22794. },
  22795. wereBack: {
  22796. height: math.unit(12 + 8 / 12, "feet"),
  22797. weight: math.unit(4000, "lb"),
  22798. name: "Back (Were)",
  22799. image: {
  22800. source: "./media/characters/dhari/were-back.svg",
  22801. extra: 1065 / 969,
  22802. bottom: 0.012
  22803. }
  22804. },
  22805. wereMaw: {
  22806. height: math.unit(0.625, "meters"),
  22807. name: "Maw (Were)",
  22808. image: {
  22809. source: "./media/characters/dhari/were-maw.svg"
  22810. }
  22811. },
  22812. },
  22813. [
  22814. {
  22815. name: "Normal",
  22816. height: math.unit(6 + 3 / 12, "feet"),
  22817. default: true
  22818. },
  22819. ]
  22820. ))
  22821. characterMakers.push(() => makeCharacter(
  22822. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22823. {
  22824. anthro: {
  22825. height: math.unit(5 + 7 / 12, "feet"),
  22826. weight: math.unit(175, "lb"),
  22827. name: "Anthro",
  22828. image: {
  22829. source: "./media/characters/rena-dyne/anthro.svg",
  22830. extra: 1849 / 1785,
  22831. bottom: 0.005
  22832. }
  22833. },
  22834. taur: {
  22835. height: math.unit(15 + 6 / 12, "feet"),
  22836. weight: math.unit(8000, "lb"),
  22837. name: "Taur",
  22838. image: {
  22839. source: "./media/characters/rena-dyne/taur.svg",
  22840. extra: 2315 / 2234,
  22841. bottom: 0.033
  22842. }
  22843. },
  22844. },
  22845. [
  22846. {
  22847. name: "Normal",
  22848. height: math.unit(5 + 7 / 12, "feet"),
  22849. default: true
  22850. },
  22851. ]
  22852. ))
  22853. characterMakers.push(() => makeCharacter(
  22854. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22855. {
  22856. front: {
  22857. height: math.unit(8, "feet"),
  22858. weight: math.unit(600, "lb"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/weremeep/front.svg",
  22862. extra: 970/849,
  22863. bottom: 7/977
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Normal",
  22870. height: math.unit(8, "feet"),
  22871. default: true
  22872. },
  22873. {
  22874. name: "Lorg",
  22875. height: math.unit(12, "feet")
  22876. },
  22877. {
  22878. name: "Oh Lawd She Comin'",
  22879. height: math.unit(20, "feet")
  22880. },
  22881. ]
  22882. ))
  22883. characterMakers.push(() => makeCharacter(
  22884. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22885. {
  22886. front: {
  22887. height: math.unit(4, "feet"),
  22888. weight: math.unit(90, "lb"),
  22889. name: "Front",
  22890. image: {
  22891. source: "./media/characters/reza/front.svg",
  22892. extra: 1183 / 1111,
  22893. bottom: 0.017
  22894. }
  22895. },
  22896. back: {
  22897. height: math.unit(4, "feet"),
  22898. weight: math.unit(90, "lb"),
  22899. name: "Back",
  22900. image: {
  22901. source: "./media/characters/reza/back.svg",
  22902. extra: 1183 / 1111,
  22903. bottom: 0.01
  22904. }
  22905. },
  22906. drake: {
  22907. height: math.unit(30, "feet"),
  22908. weight: math.unit(246960, "lb"),
  22909. name: "Drake",
  22910. image: {
  22911. source: "./media/characters/reza/drake.svg",
  22912. extra: 2350 / 2024,
  22913. bottom: 60.7 / 2403
  22914. }
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Normal",
  22920. height: math.unit(4, "feet"),
  22921. default: true
  22922. },
  22923. ]
  22924. ))
  22925. characterMakers.push(() => makeCharacter(
  22926. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22927. {
  22928. side: {
  22929. height: math.unit(15, "feet"),
  22930. weight: math.unit(14, "tons"),
  22931. name: "Side",
  22932. image: {
  22933. source: "./media/characters/athea/side.svg",
  22934. extra: 960 / 540,
  22935. bottom: 0.003
  22936. }
  22937. },
  22938. sitting: {
  22939. height: math.unit(6 * 2.85, "feet"),
  22940. weight: math.unit(14, "tons"),
  22941. name: "Sitting",
  22942. image: {
  22943. source: "./media/characters/athea/sitting.svg",
  22944. extra: 621 / 581,
  22945. bottom: 0.075
  22946. }
  22947. },
  22948. maw: {
  22949. height: math.unit(7.59498031496063, "feet"),
  22950. name: "Maw",
  22951. image: {
  22952. source: "./media/characters/athea/maw.svg"
  22953. }
  22954. },
  22955. },
  22956. [
  22957. {
  22958. name: "Lap Cat",
  22959. height: math.unit(2.5, "feet")
  22960. },
  22961. {
  22962. name: "Minimacro",
  22963. height: math.unit(15, "feet"),
  22964. default: true
  22965. },
  22966. {
  22967. name: "Macro",
  22968. height: math.unit(120, "feet")
  22969. },
  22970. {
  22971. name: "Macro+",
  22972. height: math.unit(640, "feet")
  22973. },
  22974. {
  22975. name: "Colossus",
  22976. height: math.unit(2.2, "miles")
  22977. },
  22978. ]
  22979. ))
  22980. characterMakers.push(() => makeCharacter(
  22981. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22982. {
  22983. front: {
  22984. height: math.unit(8 + 8 / 12, "feet"),
  22985. weight: math.unit(130, "kg"),
  22986. name: "Front",
  22987. image: {
  22988. source: "./media/characters/seroko/front.svg",
  22989. extra: 1385 / 1280,
  22990. bottom: 0.025
  22991. }
  22992. },
  22993. back: {
  22994. height: math.unit(8 + 8 / 12, "feet"),
  22995. weight: math.unit(130, "kg"),
  22996. name: "Back",
  22997. image: {
  22998. source: "./media/characters/seroko/back.svg",
  22999. extra: 1369 / 1238,
  23000. bottom: 0.018
  23001. }
  23002. },
  23003. frontDressed: {
  23004. height: math.unit(8 + 8 / 12, "feet"),
  23005. weight: math.unit(130, "kg"),
  23006. name: "Front (Dressed)",
  23007. image: {
  23008. source: "./media/characters/seroko/front-dressed.svg",
  23009. extra: 1366 / 1275,
  23010. bottom: 0.03
  23011. }
  23012. },
  23013. },
  23014. [
  23015. {
  23016. name: "Normal",
  23017. height: math.unit(8 + 8 / 12, "feet"),
  23018. default: true
  23019. },
  23020. ]
  23021. ))
  23022. characterMakers.push(() => makeCharacter(
  23023. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23024. {
  23025. front: {
  23026. height: math.unit(5.5, "feet"),
  23027. weight: math.unit(160, "lb"),
  23028. name: "Front",
  23029. image: {
  23030. source: "./media/characters/quatzi/front.svg",
  23031. extra: 2346 / 2242,
  23032. bottom: 0.015
  23033. }
  23034. },
  23035. },
  23036. [
  23037. {
  23038. name: "Normal",
  23039. height: math.unit(5.5, "feet"),
  23040. default: true
  23041. },
  23042. {
  23043. name: "Big",
  23044. height: math.unit(7.7, "feet")
  23045. },
  23046. ]
  23047. ))
  23048. characterMakers.push(() => makeCharacter(
  23049. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23050. {
  23051. front: {
  23052. height: math.unit(5 + 11 / 12, "feet"),
  23053. weight: math.unit(180, "lb"),
  23054. name: "Front",
  23055. image: {
  23056. source: "./media/characters/sen/front.svg",
  23057. extra: 1321 / 1254,
  23058. bottom: 0.015
  23059. }
  23060. },
  23061. side: {
  23062. height: math.unit(5 + 11 / 12, "feet"),
  23063. weight: math.unit(180, "lb"),
  23064. name: "Side",
  23065. image: {
  23066. source: "./media/characters/sen/side.svg",
  23067. extra: 1321 / 1254,
  23068. bottom: 0.007
  23069. }
  23070. },
  23071. back: {
  23072. height: math.unit(5 + 11 / 12, "feet"),
  23073. weight: math.unit(180, "lb"),
  23074. name: "Back",
  23075. image: {
  23076. source: "./media/characters/sen/back.svg",
  23077. extra: 1321 / 1254
  23078. }
  23079. },
  23080. },
  23081. [
  23082. {
  23083. name: "Normal",
  23084. height: math.unit(5 + 11 / 12, "feet"),
  23085. default: true
  23086. },
  23087. ]
  23088. ))
  23089. characterMakers.push(() => makeCharacter(
  23090. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23091. {
  23092. front: {
  23093. height: math.unit(166.6, "cm"),
  23094. weight: math.unit(66.6, "kg"),
  23095. name: "Front",
  23096. image: {
  23097. source: "./media/characters/fruity/front.svg",
  23098. extra: 1510 / 1386,
  23099. bottom: 0.04
  23100. }
  23101. },
  23102. back: {
  23103. height: math.unit(166.6, "cm"),
  23104. weight: math.unit(66.6, "lb"),
  23105. name: "Back",
  23106. image: {
  23107. source: "./media/characters/fruity/back.svg",
  23108. extra: 1563 / 1435,
  23109. bottom: 0.005
  23110. }
  23111. },
  23112. },
  23113. [
  23114. {
  23115. name: "Normal",
  23116. height: math.unit(166.6, "cm"),
  23117. default: true
  23118. },
  23119. {
  23120. name: "Demonic",
  23121. height: math.unit(166.6, "feet")
  23122. },
  23123. ]
  23124. ))
  23125. characterMakers.push(() => makeCharacter(
  23126. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23127. {
  23128. side: {
  23129. height: math.unit(10, "feet"),
  23130. weight: math.unit(500, "lb"),
  23131. name: "Side",
  23132. image: {
  23133. source: "./media/characters/zost/side.svg",
  23134. extra: 2870/2533,
  23135. bottom: 252/3122
  23136. }
  23137. },
  23138. mawFront: {
  23139. height: math.unit(1.08, "meters"),
  23140. name: "Maw (Front)",
  23141. image: {
  23142. source: "./media/characters/zost/maw-front.svg"
  23143. }
  23144. },
  23145. mawSide: {
  23146. height: math.unit(2.66, "feet"),
  23147. name: "Maw (Side)",
  23148. image: {
  23149. source: "./media/characters/zost/maw-side.svg"
  23150. }
  23151. },
  23152. wingspan: {
  23153. height: math.unit(7.4, "feet"),
  23154. name: "Wingspan",
  23155. image: {
  23156. source: "./media/characters/zost/wingspan.svg"
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Normal",
  23163. height: math.unit(10, "feet"),
  23164. default: true
  23165. },
  23166. ]
  23167. ))
  23168. characterMakers.push(() => makeCharacter(
  23169. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23170. {
  23171. front: {
  23172. height: math.unit(5 + 4 / 12, "feet"),
  23173. weight: math.unit(120, "lb"),
  23174. name: "Front",
  23175. image: {
  23176. source: "./media/characters/luci/front.svg",
  23177. extra: 1985 / 1884,
  23178. bottom: 0.04
  23179. }
  23180. },
  23181. back: {
  23182. height: math.unit(5 + 4 / 12, "feet"),
  23183. weight: math.unit(120, "lb"),
  23184. name: "Back",
  23185. image: {
  23186. source: "./media/characters/luci/back.svg",
  23187. extra: 1892 / 1791,
  23188. bottom: 0.002
  23189. }
  23190. },
  23191. },
  23192. [
  23193. {
  23194. name: "Normal",
  23195. height: math.unit(5 + 4 / 12, "feet"),
  23196. default: true
  23197. },
  23198. ]
  23199. ))
  23200. characterMakers.push(() => makeCharacter(
  23201. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23202. {
  23203. front: {
  23204. height: math.unit(1500, "feet"),
  23205. weight: math.unit(3.8e6, "tons"),
  23206. name: "Front",
  23207. image: {
  23208. source: "./media/characters/2th/front.svg",
  23209. extra: 3489 / 3350,
  23210. bottom: 0.1
  23211. }
  23212. },
  23213. foot: {
  23214. height: math.unit(461, "feet"),
  23215. name: "Foot",
  23216. image: {
  23217. source: "./media/characters/2th/foot.svg"
  23218. }
  23219. },
  23220. },
  23221. [
  23222. {
  23223. name: "\"Micro\"",
  23224. height: math.unit(15 + 7 / 12, "feet")
  23225. },
  23226. {
  23227. name: "Normal",
  23228. height: math.unit(1500, "feet"),
  23229. default: true
  23230. },
  23231. {
  23232. name: "Macro",
  23233. height: math.unit(5000, "feet")
  23234. },
  23235. {
  23236. name: "Megamacro",
  23237. height: math.unit(15, "miles")
  23238. },
  23239. {
  23240. name: "Gigamacro",
  23241. height: math.unit(4000, "miles")
  23242. },
  23243. {
  23244. name: "Galactic",
  23245. height: math.unit(50, "AU")
  23246. },
  23247. ]
  23248. ))
  23249. characterMakers.push(() => makeCharacter(
  23250. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23251. {
  23252. front: {
  23253. height: math.unit(5 + 6 / 12, "feet"),
  23254. weight: math.unit(220, "lb"),
  23255. name: "Front",
  23256. image: {
  23257. source: "./media/characters/amethyst/front.svg",
  23258. extra: 2078 / 2040,
  23259. bottom: 0.045
  23260. }
  23261. },
  23262. back: {
  23263. height: math.unit(5 + 6 / 12, "feet"),
  23264. weight: math.unit(220, "lb"),
  23265. name: "Back",
  23266. image: {
  23267. source: "./media/characters/amethyst/back.svg",
  23268. extra: 2021 / 1989,
  23269. bottom: 0.02
  23270. }
  23271. },
  23272. },
  23273. [
  23274. {
  23275. name: "Normal",
  23276. height: math.unit(5 + 6 / 12, "feet"),
  23277. default: true
  23278. },
  23279. ]
  23280. ))
  23281. characterMakers.push(() => makeCharacter(
  23282. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23283. {
  23284. front: {
  23285. height: math.unit(4 + 11 / 12, "feet"),
  23286. weight: math.unit(120, "lb"),
  23287. name: "Front",
  23288. image: {
  23289. source: "./media/characters/yumi-akiyama/front.svg",
  23290. extra: 1327 / 1235,
  23291. bottom: 0.02
  23292. }
  23293. },
  23294. back: {
  23295. height: math.unit(4 + 11 / 12, "feet"),
  23296. weight: math.unit(120, "lb"),
  23297. name: "Back",
  23298. image: {
  23299. source: "./media/characters/yumi-akiyama/back.svg",
  23300. extra: 1287 / 1245,
  23301. bottom: 0.002
  23302. }
  23303. },
  23304. },
  23305. [
  23306. {
  23307. name: "Galactic",
  23308. height: math.unit(50, "galaxies"),
  23309. default: true
  23310. },
  23311. {
  23312. name: "Universal",
  23313. height: math.unit(100, "universes")
  23314. },
  23315. ]
  23316. ))
  23317. characterMakers.push(() => makeCharacter(
  23318. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23319. {
  23320. front: {
  23321. height: math.unit(8, "feet"),
  23322. weight: math.unit(500, "lb"),
  23323. name: "Front",
  23324. image: {
  23325. source: "./media/characters/rifter-yrmori/front.svg",
  23326. extra: 1180 / 1125,
  23327. bottom: 0.02
  23328. }
  23329. },
  23330. back: {
  23331. height: math.unit(8, "feet"),
  23332. weight: math.unit(500, "lb"),
  23333. name: "Back",
  23334. image: {
  23335. source: "./media/characters/rifter-yrmori/back.svg",
  23336. extra: 1190 / 1145,
  23337. bottom: 0.001
  23338. }
  23339. },
  23340. wings: {
  23341. height: math.unit(7.75, "feet"),
  23342. weight: math.unit(500, "lb"),
  23343. name: "Wings",
  23344. image: {
  23345. source: "./media/characters/rifter-yrmori/wings.svg",
  23346. extra: 1357 / 1285
  23347. }
  23348. },
  23349. maw: {
  23350. height: math.unit(0.8, "feet"),
  23351. name: "Maw",
  23352. image: {
  23353. source: "./media/characters/rifter-yrmori/maw.svg"
  23354. }
  23355. },
  23356. mawfront: {
  23357. height: math.unit(1.45, "feet"),
  23358. name: "Maw (Front)",
  23359. image: {
  23360. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23361. }
  23362. },
  23363. },
  23364. [
  23365. {
  23366. name: "Normal",
  23367. height: math.unit(8, "feet"),
  23368. default: true
  23369. },
  23370. {
  23371. name: "Macro",
  23372. height: math.unit(42, "meters")
  23373. },
  23374. ]
  23375. ))
  23376. characterMakers.push(() => makeCharacter(
  23377. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23378. {
  23379. were: {
  23380. height: math.unit(25 + 6 / 12, "feet"),
  23381. weight: math.unit(10000, "lb"),
  23382. name: "Were",
  23383. image: {
  23384. source: "./media/characters/tahajin/were.svg",
  23385. extra: 801 / 770,
  23386. bottom: 0.042
  23387. }
  23388. },
  23389. aquatic: {
  23390. height: math.unit(6 + 4 / 12, "feet"),
  23391. weight: math.unit(160, "lb"),
  23392. name: "Aquatic",
  23393. image: {
  23394. source: "./media/characters/tahajin/aquatic.svg",
  23395. extra: 572 / 542,
  23396. bottom: 0.04
  23397. }
  23398. },
  23399. chow: {
  23400. height: math.unit(8 + 11 / 12, "feet"),
  23401. weight: math.unit(450, "lb"),
  23402. name: "Chow",
  23403. image: {
  23404. source: "./media/characters/tahajin/chow.svg",
  23405. extra: 660 / 640,
  23406. bottom: 0.015
  23407. }
  23408. },
  23409. demiNaga: {
  23410. height: math.unit(6 + 8 / 12, "feet"),
  23411. weight: math.unit(300, "lb"),
  23412. name: "Demi Naga",
  23413. image: {
  23414. source: "./media/characters/tahajin/demi-naga.svg",
  23415. extra: 643 / 615,
  23416. bottom: 0.1
  23417. }
  23418. },
  23419. data: {
  23420. height: math.unit(5, "inches"),
  23421. weight: math.unit(0.1, "lb"),
  23422. name: "Data",
  23423. image: {
  23424. source: "./media/characters/tahajin/data.svg"
  23425. }
  23426. },
  23427. fluu: {
  23428. height: math.unit(5 + 7 / 12, "feet"),
  23429. weight: math.unit(140, "lb"),
  23430. name: "Fluu",
  23431. image: {
  23432. source: "./media/characters/tahajin/fluu.svg",
  23433. extra: 628 / 592,
  23434. bottom: 0.02
  23435. }
  23436. },
  23437. starWarrior: {
  23438. height: math.unit(4 + 5 / 12, "feet"),
  23439. weight: math.unit(50, "lb"),
  23440. name: "Star Warrior",
  23441. image: {
  23442. source: "./media/characters/tahajin/star-warrior.svg"
  23443. }
  23444. },
  23445. },
  23446. [
  23447. {
  23448. name: "Normal",
  23449. height: math.unit(25 + 6 / 12, "feet"),
  23450. default: true
  23451. },
  23452. ]
  23453. ))
  23454. characterMakers.push(() => makeCharacter(
  23455. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23456. {
  23457. front: {
  23458. height: math.unit(8, "feet"),
  23459. weight: math.unit(350, "lb"),
  23460. name: "Front",
  23461. image: {
  23462. source: "./media/characters/gabira/front.svg",
  23463. extra: 1261/1154,
  23464. bottom: 51/1312
  23465. }
  23466. },
  23467. back: {
  23468. height: math.unit(8, "feet"),
  23469. weight: math.unit(350, "lb"),
  23470. name: "Back",
  23471. image: {
  23472. source: "./media/characters/gabira/back.svg",
  23473. extra: 1265/1163,
  23474. bottom: 46/1311
  23475. }
  23476. },
  23477. head: {
  23478. height: math.unit(2.85, "feet"),
  23479. name: "Head",
  23480. image: {
  23481. source: "./media/characters/gabira/head.svg"
  23482. }
  23483. },
  23484. },
  23485. [
  23486. {
  23487. name: "Normal",
  23488. height: math.unit(8, "feet"),
  23489. default: true
  23490. },
  23491. ]
  23492. ))
  23493. characterMakers.push(() => makeCharacter(
  23494. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23495. {
  23496. front: {
  23497. height: math.unit(5 + 3 / 12, "feet"),
  23498. weight: math.unit(137, "lb"),
  23499. name: "Front",
  23500. image: {
  23501. source: "./media/characters/sasha-katraine/front.svg",
  23502. extra: 1745/1694,
  23503. bottom: 37/1782
  23504. }
  23505. },
  23506. back: {
  23507. height: math.unit(5 + 3 / 12, "feet"),
  23508. weight: math.unit(137, "lb"),
  23509. name: "Back",
  23510. image: {
  23511. source: "./media/characters/sasha-katraine/back.svg",
  23512. extra: 1776/1699,
  23513. bottom: 26/1802
  23514. }
  23515. },
  23516. },
  23517. [
  23518. {
  23519. name: "Micro",
  23520. height: math.unit(5, "inches")
  23521. },
  23522. {
  23523. name: "Normal",
  23524. height: math.unit(5 + 3 / 12, "feet"),
  23525. default: true
  23526. },
  23527. ]
  23528. ))
  23529. characterMakers.push(() => makeCharacter(
  23530. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23531. {
  23532. side: {
  23533. height: math.unit(4, "inches"),
  23534. weight: math.unit(200, "grams"),
  23535. name: "Side",
  23536. image: {
  23537. source: "./media/characters/der/side.svg",
  23538. extra: 719 / 400,
  23539. bottom: 30.6 / 749.9187
  23540. }
  23541. },
  23542. },
  23543. [
  23544. {
  23545. name: "Micro",
  23546. height: math.unit(4, "inches"),
  23547. default: true
  23548. },
  23549. ]
  23550. ))
  23551. characterMakers.push(() => makeCharacter(
  23552. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23553. {
  23554. side: {
  23555. height: math.unit(30, "meters"),
  23556. weight: math.unit(700, "tonnes"),
  23557. name: "Side",
  23558. image: {
  23559. source: "./media/characters/fixerdragon/side.svg",
  23560. extra: (1293.0514 - 116.03) / 1106.86,
  23561. bottom: 116.03 / 1293.0514
  23562. }
  23563. },
  23564. },
  23565. [
  23566. {
  23567. name: "Planck",
  23568. height: math.unit(1.6e-35, "meters")
  23569. },
  23570. {
  23571. name: "Micro",
  23572. height: math.unit(0.4, "meters")
  23573. },
  23574. {
  23575. name: "Normal",
  23576. height: math.unit(30, "meters"),
  23577. default: true
  23578. },
  23579. {
  23580. name: "Megamacro",
  23581. height: math.unit(1.2, "megameters")
  23582. },
  23583. {
  23584. name: "Teramacro",
  23585. height: math.unit(130, "terameters")
  23586. },
  23587. {
  23588. name: "Yottamacro",
  23589. height: math.unit(6200, "yottameters")
  23590. },
  23591. ]
  23592. ));
  23593. characterMakers.push(() => makeCharacter(
  23594. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23595. {
  23596. front: {
  23597. height: math.unit(8, "feet"),
  23598. weight: math.unit(250, "lb"),
  23599. name: "Front",
  23600. image: {
  23601. source: "./media/characters/kite/front.svg",
  23602. extra: 2796 / 2659,
  23603. bottom: 0.002
  23604. }
  23605. },
  23606. },
  23607. [
  23608. {
  23609. name: "Normal",
  23610. height: math.unit(8, "feet"),
  23611. default: true
  23612. },
  23613. {
  23614. name: "Macro",
  23615. height: math.unit(360, "feet")
  23616. },
  23617. {
  23618. name: "Megamacro",
  23619. height: math.unit(1500, "feet")
  23620. },
  23621. ]
  23622. ))
  23623. characterMakers.push(() => makeCharacter(
  23624. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23625. {
  23626. front: {
  23627. height: math.unit(5 + 11/12, "feet"),
  23628. weight: math.unit(170, "lb"),
  23629. name: "Front",
  23630. image: {
  23631. source: "./media/characters/poojawa-vynar/front.svg",
  23632. extra: 1735/1585,
  23633. bottom: 96/1831
  23634. }
  23635. },
  23636. back: {
  23637. height: math.unit(5 + 11/12, "feet"),
  23638. weight: math.unit(170, "lb"),
  23639. name: "Back",
  23640. image: {
  23641. source: "./media/characters/poojawa-vynar/back.svg",
  23642. extra: 1749/1607,
  23643. bottom: 28/1777
  23644. }
  23645. },
  23646. male: {
  23647. height: math.unit(5 + 11/12, "feet"),
  23648. weight: math.unit(170, "lb"),
  23649. name: "Male",
  23650. image: {
  23651. source: "./media/characters/poojawa-vynar/male.svg",
  23652. extra: 1855/1713,
  23653. bottom: 63/1918
  23654. }
  23655. },
  23656. taur: {
  23657. height: math.unit(5 + 11/12, "feet"),
  23658. weight: math.unit(170, "lb"),
  23659. name: "Taur",
  23660. image: {
  23661. source: "./media/characters/poojawa-vynar/taur.svg",
  23662. extra: 1151/1059,
  23663. bottom: 356/1507
  23664. }
  23665. },
  23666. frontDressed: {
  23667. height: math.unit(5 + 11/12, "feet"),
  23668. weight: math.unit(170, "lb"),
  23669. name: "Front (Dressed)",
  23670. image: {
  23671. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23672. extra: 1735/1585,
  23673. bottom: 96/1831
  23674. }
  23675. },
  23676. backDressed: {
  23677. height: math.unit(5 + 11/12, "feet"),
  23678. weight: math.unit(170, "lb"),
  23679. name: "Back (Dressed)",
  23680. image: {
  23681. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23682. extra: 1749/1607,
  23683. bottom: 28/1777
  23684. }
  23685. },
  23686. maleDressed: {
  23687. height: math.unit(5 + 11/12, "feet"),
  23688. weight: math.unit(170, "lb"),
  23689. name: "Male (Dressed)",
  23690. image: {
  23691. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23692. extra: 1855/1713,
  23693. bottom: 63/1918
  23694. }
  23695. },
  23696. taurDressed: {
  23697. height: math.unit(5 + 11/12, "feet"),
  23698. weight: math.unit(170, "lb"),
  23699. name: "Taur (Dressed)",
  23700. image: {
  23701. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23702. extra: 1151/1059,
  23703. bottom: 356/1507
  23704. }
  23705. },
  23706. maw: {
  23707. height: math.unit(1.46, "feet"),
  23708. name: "Maw",
  23709. image: {
  23710. source: "./media/characters/poojawa-vynar/maw.svg"
  23711. }
  23712. },
  23713. head: {
  23714. height: math.unit(2.34, "feet"),
  23715. name: "Head",
  23716. image: {
  23717. source: "./media/characters/poojawa-vynar/head.svg"
  23718. }
  23719. },
  23720. paw: {
  23721. height: math.unit(1.61, "feet"),
  23722. name: "Paw",
  23723. image: {
  23724. source: "./media/characters/poojawa-vynar/paw.svg"
  23725. }
  23726. },
  23727. pawToering: {
  23728. height: math.unit(1.72, "feet"),
  23729. name: "Paw (Toering)",
  23730. image: {
  23731. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23732. }
  23733. },
  23734. toering: {
  23735. height: math.unit(2.9, "inches"),
  23736. name: "Toering",
  23737. image: {
  23738. source: "./media/characters/poojawa-vynar/toering.svg"
  23739. }
  23740. },
  23741. shaft: {
  23742. height: math.unit(0.625, "feet"),
  23743. name: "Shaft",
  23744. image: {
  23745. source: "./media/characters/poojawa-vynar/shaft.svg"
  23746. }
  23747. },
  23748. spade: {
  23749. height: math.unit(0.42, "feet"),
  23750. name: "Spade",
  23751. image: {
  23752. source: "./media/characters/poojawa-vynar/spade.svg"
  23753. }
  23754. },
  23755. },
  23756. [
  23757. {
  23758. name: "Shortstack",
  23759. height: math.unit(4, "feet")
  23760. },
  23761. {
  23762. name: "Normal",
  23763. height: math.unit(5 + 11 / 12, "feet"),
  23764. default: true
  23765. },
  23766. {
  23767. name: "Tauric",
  23768. height: math.unit(4, "meters")
  23769. },
  23770. ]
  23771. ))
  23772. characterMakers.push(() => makeCharacter(
  23773. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23774. {
  23775. front: {
  23776. height: math.unit(293, "meters"),
  23777. weight: math.unit(70400, "tons"),
  23778. name: "Front",
  23779. image: {
  23780. source: "./media/characters/violette/front.svg",
  23781. extra: 1227 / 1180,
  23782. bottom: 0.005
  23783. }
  23784. },
  23785. back: {
  23786. height: math.unit(293, "meters"),
  23787. weight: math.unit(70400, "tons"),
  23788. name: "Back",
  23789. image: {
  23790. source: "./media/characters/violette/back.svg",
  23791. extra: 1227 / 1180,
  23792. bottom: 0.005
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Macro",
  23799. height: math.unit(293, "meters"),
  23800. default: true
  23801. },
  23802. ]
  23803. ))
  23804. characterMakers.push(() => makeCharacter(
  23805. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23806. {
  23807. front: {
  23808. height: math.unit(1050, "feet"),
  23809. weight: math.unit(200000, "tons"),
  23810. name: "Front",
  23811. image: {
  23812. source: "./media/characters/alessandra/front.svg",
  23813. extra: 960 / 912,
  23814. bottom: 0.06
  23815. }
  23816. },
  23817. },
  23818. [
  23819. {
  23820. name: "Macro",
  23821. height: math.unit(1050, "feet")
  23822. },
  23823. {
  23824. name: "Macro+",
  23825. height: math.unit(900, "meters"),
  23826. default: true
  23827. },
  23828. ]
  23829. ))
  23830. characterMakers.push(() => makeCharacter(
  23831. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23832. {
  23833. front: {
  23834. height: math.unit(5, "feet"),
  23835. weight: math.unit(187, "lb"),
  23836. name: "Front",
  23837. image: {
  23838. source: "./media/characters/person/front.svg",
  23839. extra: 3087 / 2945,
  23840. bottom: 91 / 3181
  23841. }
  23842. },
  23843. },
  23844. [
  23845. {
  23846. name: "Micro",
  23847. height: math.unit(3, "inches")
  23848. },
  23849. {
  23850. name: "Normal",
  23851. height: math.unit(5, "feet"),
  23852. default: true
  23853. },
  23854. {
  23855. name: "Macro",
  23856. height: math.unit(90, "feet")
  23857. },
  23858. {
  23859. name: "Max Size",
  23860. height: math.unit(280, "feet")
  23861. },
  23862. ]
  23863. ))
  23864. characterMakers.push(() => makeCharacter(
  23865. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23866. {
  23867. front: {
  23868. height: math.unit(4.5, "meters"),
  23869. weight: math.unit(3200, "lb"),
  23870. name: "Front",
  23871. image: {
  23872. source: "./media/characters/ty/front.svg",
  23873. extra: 1038 / 960,
  23874. bottom: 31.156 / 1068
  23875. }
  23876. },
  23877. back: {
  23878. height: math.unit(4.5, "meters"),
  23879. weight: math.unit(3200, "lb"),
  23880. name: "Back",
  23881. image: {
  23882. source: "./media/characters/ty/back.svg",
  23883. extra: 1044 / 966,
  23884. bottom: 7.48 / 1049
  23885. }
  23886. },
  23887. },
  23888. [
  23889. {
  23890. name: "Normal",
  23891. height: math.unit(4.5, "meters"),
  23892. default: true
  23893. },
  23894. ]
  23895. ))
  23896. characterMakers.push(() => makeCharacter(
  23897. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23898. {
  23899. front: {
  23900. height: math.unit(5 + 4 / 12, "feet"),
  23901. weight: math.unit(115, "lb"),
  23902. name: "Front",
  23903. image: {
  23904. source: "./media/characters/rocky/front.svg",
  23905. extra: 1012 / 975,
  23906. bottom: 54 / 1066
  23907. }
  23908. },
  23909. },
  23910. [
  23911. {
  23912. name: "Normal",
  23913. height: math.unit(5 + 4 / 12, "feet"),
  23914. default: true
  23915. },
  23916. ]
  23917. ))
  23918. characterMakers.push(() => makeCharacter(
  23919. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23920. {
  23921. upright: {
  23922. height: math.unit(6, "meters"),
  23923. weight: math.unit(4000, "kg"),
  23924. name: "Upright",
  23925. image: {
  23926. source: "./media/characters/ruin/upright.svg",
  23927. extra: 668 / 661,
  23928. bottom: 42 / 799.8396
  23929. }
  23930. },
  23931. },
  23932. [
  23933. {
  23934. name: "Normal",
  23935. height: math.unit(6, "meters"),
  23936. default: true
  23937. },
  23938. ]
  23939. ))
  23940. characterMakers.push(() => makeCharacter(
  23941. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23942. {
  23943. front: {
  23944. height: math.unit(5, "feet"),
  23945. weight: math.unit(106, "lb"),
  23946. name: "Front",
  23947. image: {
  23948. source: "./media/characters/robin/front.svg",
  23949. extra: 862 / 799,
  23950. bottom: 42.4 / 914.8856
  23951. }
  23952. },
  23953. },
  23954. [
  23955. {
  23956. name: "Normal",
  23957. height: math.unit(5, "feet"),
  23958. default: true
  23959. },
  23960. ]
  23961. ))
  23962. characterMakers.push(() => makeCharacter(
  23963. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23964. {
  23965. side: {
  23966. height: math.unit(3, "feet"),
  23967. weight: math.unit(225, "lb"),
  23968. name: "Side",
  23969. image: {
  23970. source: "./media/characters/saian/side.svg",
  23971. extra: 566 / 356,
  23972. bottom: 79.7 / 643
  23973. }
  23974. },
  23975. maw: {
  23976. height: math.unit(2.85, "feet"),
  23977. name: "Maw",
  23978. image: {
  23979. source: "./media/characters/saian/maw.svg"
  23980. }
  23981. },
  23982. },
  23983. [
  23984. {
  23985. name: "Normal",
  23986. height: math.unit(3, "feet"),
  23987. default: true
  23988. },
  23989. ]
  23990. ))
  23991. characterMakers.push(() => makeCharacter(
  23992. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23993. {
  23994. side: {
  23995. height: math.unit(8, "feet"),
  23996. weight: math.unit(300, "lb"),
  23997. name: "Side",
  23998. image: {
  23999. source: "./media/characters/equus-silvermane/side.svg",
  24000. extra: 2176 / 2050,
  24001. bottom: 65.7 / 2245
  24002. }
  24003. },
  24004. front: {
  24005. height: math.unit(8, "feet"),
  24006. weight: math.unit(300, "lb"),
  24007. name: "Front",
  24008. image: {
  24009. source: "./media/characters/equus-silvermane/front.svg",
  24010. extra: 4633 / 4400,
  24011. bottom: 71.3 / 4706.915
  24012. }
  24013. },
  24014. sideStepping: {
  24015. height: math.unit(8, "feet"),
  24016. weight: math.unit(300, "lb"),
  24017. name: "Side (Stepping)",
  24018. image: {
  24019. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24020. extra: 1968 / 1860,
  24021. bottom: 16.4 / 1989
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Normal",
  24028. height: math.unit(8, "feet")
  24029. },
  24030. {
  24031. name: "Minimacro",
  24032. height: math.unit(75, "feet"),
  24033. default: true
  24034. },
  24035. {
  24036. name: "Macro",
  24037. height: math.unit(150, "feet")
  24038. },
  24039. {
  24040. name: "Macro+",
  24041. height: math.unit(1000, "feet")
  24042. },
  24043. {
  24044. name: "Megamacro",
  24045. height: math.unit(1, "mile")
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24051. {
  24052. side: {
  24053. height: math.unit(20, "feet"),
  24054. weight: math.unit(30000, "kg"),
  24055. name: "Side",
  24056. image: {
  24057. source: "./media/characters/windar/side.svg",
  24058. extra: 1491 / 1248,
  24059. bottom: 82.56 / 1568
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Normal",
  24066. height: math.unit(20, "feet"),
  24067. default: true
  24068. },
  24069. ]
  24070. ))
  24071. characterMakers.push(() => makeCharacter(
  24072. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24073. {
  24074. side: {
  24075. height: math.unit(15.66, "feet"),
  24076. weight: math.unit(150, "lb"),
  24077. name: "Side",
  24078. image: {
  24079. source: "./media/characters/melody/side.svg",
  24080. extra: 1097 / 944,
  24081. bottom: 11.8 / 1109
  24082. }
  24083. },
  24084. sideOutfit: {
  24085. height: math.unit(15.66, "feet"),
  24086. weight: math.unit(150, "lb"),
  24087. name: "Side (Outfit)",
  24088. image: {
  24089. source: "./media/characters/melody/side-outfit.svg",
  24090. extra: 1097 / 944,
  24091. bottom: 11.8 / 1109
  24092. }
  24093. },
  24094. },
  24095. [
  24096. {
  24097. name: "Normal",
  24098. height: math.unit(15.66, "feet"),
  24099. default: true
  24100. },
  24101. ]
  24102. ))
  24103. characterMakers.push(() => makeCharacter(
  24104. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24105. {
  24106. armoredFront: {
  24107. height: math.unit(8, "feet"),
  24108. weight: math.unit(325, "lb"),
  24109. name: "Front",
  24110. image: {
  24111. source: "./media/characters/windera/armored-front.svg",
  24112. extra: 1830/1598,
  24113. bottom: 151/1981
  24114. },
  24115. form: "armored",
  24116. default: true
  24117. },
  24118. macroFront: {
  24119. height: math.unit(70, "feet"),
  24120. weight: math.unit(315453, "lb"),
  24121. name: "Front",
  24122. image: {
  24123. source: "./media/characters/windera/macro-front.svg",
  24124. extra: 963/883,
  24125. bottom: 23/986
  24126. },
  24127. form: "macro",
  24128. default: true
  24129. },
  24130. },
  24131. [
  24132. {
  24133. name: "Normal",
  24134. height: math.unit(8, "feet"),
  24135. default: true,
  24136. form: "armored"
  24137. },
  24138. {
  24139. name: "Normal",
  24140. height: math.unit(70, "feet"),
  24141. default: true,
  24142. form: "macro"
  24143. },
  24144. ],
  24145. {
  24146. "armored": {
  24147. name: "Armored",
  24148. default: true
  24149. },
  24150. "macro": {
  24151. name: "Macro",
  24152. },
  24153. }
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24157. {
  24158. front: {
  24159. height: math.unit(28.75, "feet"),
  24160. weight: math.unit(2000, "kg"),
  24161. name: "Front",
  24162. image: {
  24163. source: "./media/characters/sonear/front.svg",
  24164. extra: 1041.1 / 964.9,
  24165. bottom: 53.7 / 1096.6
  24166. }
  24167. },
  24168. },
  24169. [
  24170. {
  24171. name: "Normal",
  24172. height: math.unit(28.75, "feet"),
  24173. default: true
  24174. },
  24175. ]
  24176. ))
  24177. characterMakers.push(() => makeCharacter(
  24178. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24179. {
  24180. side: {
  24181. height: math.unit(25.5, "feet"),
  24182. weight: math.unit(23000, "kg"),
  24183. name: "Side",
  24184. image: {
  24185. source: "./media/characters/kanara/side.svg"
  24186. }
  24187. },
  24188. },
  24189. [
  24190. {
  24191. name: "Normal",
  24192. height: math.unit(25.5, "feet"),
  24193. default: true
  24194. },
  24195. ]
  24196. ))
  24197. characterMakers.push(() => makeCharacter(
  24198. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24199. {
  24200. side: {
  24201. height: math.unit(10, "feet"),
  24202. weight: math.unit(1000, "kg"),
  24203. name: "Side",
  24204. image: {
  24205. source: "./media/characters/ereus/side.svg",
  24206. extra: 1157 / 959,
  24207. bottom: 153 / 1312.5
  24208. }
  24209. },
  24210. },
  24211. [
  24212. {
  24213. name: "Normal",
  24214. height: math.unit(10, "feet"),
  24215. default: true
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24221. {
  24222. side: {
  24223. height: math.unit(4.5, "feet"),
  24224. weight: math.unit(500, "lb"),
  24225. name: "Side",
  24226. image: {
  24227. source: "./media/characters/e-ter/side.svg",
  24228. extra: 1550 / 1248,
  24229. bottom: 146 / 1694
  24230. }
  24231. },
  24232. },
  24233. [
  24234. {
  24235. name: "Normal",
  24236. height: math.unit(4.5, "feet"),
  24237. default: true
  24238. },
  24239. ]
  24240. ))
  24241. characterMakers.push(() => makeCharacter(
  24242. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24243. {
  24244. side: {
  24245. height: math.unit(9.7, "feet"),
  24246. weight: math.unit(4000, "kg"),
  24247. name: "Side",
  24248. image: {
  24249. source: "./media/characters/yamie/side.svg"
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Normal",
  24256. height: math.unit(9.7, "feet"),
  24257. default: true
  24258. },
  24259. ]
  24260. ))
  24261. characterMakers.push(() => makeCharacter(
  24262. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24263. {
  24264. front: {
  24265. height: math.unit(50, "feet"),
  24266. weight: math.unit(50000, "kg"),
  24267. name: "Front",
  24268. image: {
  24269. source: "./media/characters/anders/front.svg",
  24270. extra: 570 / 539,
  24271. bottom: 14.7 / 586.7
  24272. }
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "Large",
  24278. height: math.unit(50, "feet")
  24279. },
  24280. {
  24281. name: "Macro",
  24282. height: math.unit(2000, "feet"),
  24283. default: true
  24284. },
  24285. {
  24286. name: "Megamacro",
  24287. height: math.unit(12, "miles")
  24288. },
  24289. ]
  24290. ))
  24291. characterMakers.push(() => makeCharacter(
  24292. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24293. {
  24294. front: {
  24295. height: math.unit(7 + 2 / 12, "feet"),
  24296. weight: math.unit(300, "lb"),
  24297. name: "Front",
  24298. image: {
  24299. source: "./media/characters/reban/front.svg",
  24300. extra: 1287/1212,
  24301. bottom: 148/1435
  24302. }
  24303. },
  24304. head: {
  24305. height: math.unit(1.95, "feet"),
  24306. name: "Head",
  24307. image: {
  24308. source: "./media/characters/reban/head.svg"
  24309. }
  24310. },
  24311. maw: {
  24312. height: math.unit(0.95, "feet"),
  24313. name: "Maw",
  24314. image: {
  24315. source: "./media/characters/reban/maw.svg"
  24316. }
  24317. },
  24318. foot: {
  24319. height: math.unit(1.65, "feet"),
  24320. name: "Foot",
  24321. image: {
  24322. source: "./media/characters/reban/foot.svg"
  24323. }
  24324. },
  24325. dick: {
  24326. height: math.unit(7 / 5, "feet"),
  24327. name: "Dick",
  24328. image: {
  24329. source: "./media/characters/reban/dick.svg"
  24330. }
  24331. },
  24332. },
  24333. [
  24334. {
  24335. name: "Natural Height",
  24336. height: math.unit(7 + 2 / 12, "feet")
  24337. },
  24338. {
  24339. name: "Macro",
  24340. height: math.unit(500, "feet"),
  24341. default: true
  24342. },
  24343. {
  24344. name: "Canon Height",
  24345. height: math.unit(50, "AU")
  24346. },
  24347. ]
  24348. ))
  24349. characterMakers.push(() => makeCharacter(
  24350. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24351. {
  24352. front: {
  24353. height: math.unit(6, "feet"),
  24354. weight: math.unit(150, "lb"),
  24355. name: "Front",
  24356. image: {
  24357. source: "./media/characters/terrance-keayes/front.svg",
  24358. extra: 1.005,
  24359. bottom: 151 / 1615
  24360. }
  24361. },
  24362. side: {
  24363. height: math.unit(6, "feet"),
  24364. weight: math.unit(150, "lb"),
  24365. name: "Side",
  24366. image: {
  24367. source: "./media/characters/terrance-keayes/side.svg",
  24368. extra: 1.005,
  24369. bottom: 129.4 / 1544
  24370. }
  24371. },
  24372. back: {
  24373. height: math.unit(6, "feet"),
  24374. weight: math.unit(150, "lb"),
  24375. name: "Back",
  24376. image: {
  24377. source: "./media/characters/terrance-keayes/back.svg",
  24378. extra: 1.005,
  24379. bottom: 58.4 / 1557.3
  24380. }
  24381. },
  24382. dick: {
  24383. height: math.unit(6 * 0.208, "feet"),
  24384. name: "Dick",
  24385. image: {
  24386. source: "./media/characters/terrance-keayes/dick.svg"
  24387. }
  24388. },
  24389. },
  24390. [
  24391. {
  24392. name: "Canon Height",
  24393. height: math.unit(35, "miles"),
  24394. default: true
  24395. },
  24396. ]
  24397. ))
  24398. characterMakers.push(() => makeCharacter(
  24399. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24400. {
  24401. front: {
  24402. height: math.unit(6, "feet"),
  24403. weight: math.unit(150, "lb"),
  24404. name: "Front",
  24405. image: {
  24406. source: "./media/characters/ofelia/front.svg",
  24407. extra: 1130/1117,
  24408. bottom: 91/1221
  24409. }
  24410. },
  24411. back: {
  24412. height: math.unit(6, "feet"),
  24413. weight: math.unit(150, "lb"),
  24414. name: "Back",
  24415. image: {
  24416. source: "./media/characters/ofelia/back.svg",
  24417. extra: 1172/1159,
  24418. bottom: 28/1200
  24419. }
  24420. },
  24421. maw: {
  24422. height: math.unit(1, "feet"),
  24423. name: "Maw",
  24424. image: {
  24425. source: "./media/characters/ofelia/maw.svg"
  24426. }
  24427. },
  24428. foot: {
  24429. height: math.unit(1.949, "feet"),
  24430. name: "Foot",
  24431. image: {
  24432. source: "./media/characters/ofelia/foot.svg"
  24433. }
  24434. },
  24435. },
  24436. [
  24437. {
  24438. name: "Canon Height",
  24439. height: math.unit(2000, "miles"),
  24440. default: true
  24441. },
  24442. ]
  24443. ))
  24444. characterMakers.push(() => makeCharacter(
  24445. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24446. {
  24447. front: {
  24448. height: math.unit(6, "feet"),
  24449. weight: math.unit(150, "lb"),
  24450. name: "Front",
  24451. image: {
  24452. source: "./media/characters/samuel/front.svg",
  24453. extra: 265 / 258,
  24454. bottom: 2 / 266.1566
  24455. }
  24456. },
  24457. },
  24458. [
  24459. {
  24460. name: "Macro",
  24461. height: math.unit(100, "feet"),
  24462. default: true
  24463. },
  24464. {
  24465. name: "Full Size",
  24466. height: math.unit(1000, "miles")
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24472. {
  24473. front: {
  24474. height: math.unit(6, "feet"),
  24475. weight: math.unit(300, "lb"),
  24476. name: "Front",
  24477. image: {
  24478. source: "./media/characters/beishir-kiel/front.svg",
  24479. extra: 569 / 547,
  24480. bottom: 41.9 / 609
  24481. }
  24482. },
  24483. maw: {
  24484. height: math.unit(6 * 0.202, "feet"),
  24485. name: "Maw",
  24486. image: {
  24487. source: "./media/characters/beishir-kiel/maw.svg"
  24488. }
  24489. },
  24490. },
  24491. [
  24492. {
  24493. name: "Macro",
  24494. height: math.unit(300, "feet"),
  24495. default: true
  24496. },
  24497. ]
  24498. ))
  24499. characterMakers.push(() => makeCharacter(
  24500. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24501. {
  24502. front: {
  24503. height: math.unit(5 + 7/12, "feet"),
  24504. weight: math.unit(120, "lb"),
  24505. name: "Front",
  24506. image: {
  24507. source: "./media/characters/logan-grey/front.svg",
  24508. extra: 1836/1738,
  24509. bottom: 108/1944
  24510. }
  24511. },
  24512. back: {
  24513. height: math.unit(5 + 7/12, "feet"),
  24514. weight: math.unit(120, "lb"),
  24515. name: "Back",
  24516. image: {
  24517. source: "./media/characters/logan-grey/back.svg",
  24518. extra: 1880/1794,
  24519. bottom: 24/1904
  24520. }
  24521. },
  24522. frontSfw: {
  24523. height: math.unit(5 + 7/12, "feet"),
  24524. weight: math.unit(120, "lb"),
  24525. name: "Front (SFW)",
  24526. image: {
  24527. source: "./media/characters/logan-grey/front-sfw.svg",
  24528. extra: 1836/1738,
  24529. bottom: 108/1944
  24530. }
  24531. },
  24532. backSfw: {
  24533. height: math.unit(5 + 7/12, "feet"),
  24534. weight: math.unit(120, "lb"),
  24535. name: "Back (SFW)",
  24536. image: {
  24537. source: "./media/characters/logan-grey/back-sfw.svg",
  24538. extra: 1880/1794,
  24539. bottom: 24/1904
  24540. }
  24541. },
  24542. hands: {
  24543. height: math.unit(0.84, "feet"),
  24544. name: "Hands",
  24545. image: {
  24546. source: "./media/characters/logan-grey/hands.svg"
  24547. }
  24548. },
  24549. paws: {
  24550. height: math.unit(0.72, "feet"),
  24551. name: "Paws",
  24552. image: {
  24553. source: "./media/characters/logan-grey/paws.svg"
  24554. }
  24555. },
  24556. cock: {
  24557. height: math.unit(1.45, "feet"),
  24558. name: "Cock",
  24559. image: {
  24560. source: "./media/characters/logan-grey/cock.svg"
  24561. }
  24562. },
  24563. cockAlt: {
  24564. height: math.unit(1.437, "feet"),
  24565. name: "Cock (alt)",
  24566. image: {
  24567. source: "./media/characters/logan-grey/cock-alt.svg"
  24568. }
  24569. },
  24570. },
  24571. [
  24572. {
  24573. name: "Normal",
  24574. height: math.unit(5 + 8 / 12, "feet")
  24575. },
  24576. {
  24577. name: "The 500 Foot Femboy",
  24578. height: math.unit(500, "feet"),
  24579. default: true
  24580. },
  24581. {
  24582. name: "Megmacro",
  24583. height: math.unit(20, "miles")
  24584. },
  24585. ]
  24586. ))
  24587. characterMakers.push(() => makeCharacter(
  24588. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24589. {
  24590. front: {
  24591. height: math.unit(8 + 2 / 12, "feet"),
  24592. weight: math.unit(275, "lb"),
  24593. name: "Front",
  24594. image: {
  24595. source: "./media/characters/draganta/front.svg",
  24596. extra: 1177 / 1135,
  24597. bottom: 33.46 / 1212.1
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Normal",
  24604. height: math.unit(8 + 6 / 12, "feet"),
  24605. default: true
  24606. },
  24607. {
  24608. name: "Macro",
  24609. height: math.unit(150, "feet")
  24610. },
  24611. {
  24612. name: "Megamacro",
  24613. height: math.unit(1000, "miles")
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(1.72, "m"),
  24622. weight: math.unit(80, "lb"),
  24623. name: "Front",
  24624. image: {
  24625. source: "./media/characters/voski/front.svg",
  24626. extra: 2076.22 / 2022.4,
  24627. bottom: 102.7 / 2177.3866
  24628. }
  24629. },
  24630. frontFlaccid: {
  24631. height: math.unit(1.72, "m"),
  24632. weight: math.unit(80, "lb"),
  24633. name: "Front (Flaccid)",
  24634. image: {
  24635. source: "./media/characters/voski/front-flaccid.svg",
  24636. extra: 2076.22 / 2022.4,
  24637. bottom: 102.7 / 2177.3866
  24638. }
  24639. },
  24640. frontErect: {
  24641. height: math.unit(1.72, "m"),
  24642. weight: math.unit(80, "lb"),
  24643. name: "Front (Erect)",
  24644. image: {
  24645. source: "./media/characters/voski/front-erect.svg",
  24646. extra: 2076.22 / 2022.4,
  24647. bottom: 102.7 / 2177.3866
  24648. }
  24649. },
  24650. back: {
  24651. height: math.unit(1.72, "m"),
  24652. weight: math.unit(80, "lb"),
  24653. name: "Back",
  24654. image: {
  24655. source: "./media/characters/voski/back.svg",
  24656. extra: 2104 / 2051,
  24657. bottom: 10.45 / 2113.63
  24658. }
  24659. },
  24660. },
  24661. [
  24662. {
  24663. name: "Normal",
  24664. height: math.unit(1.72, "m")
  24665. },
  24666. {
  24667. name: "Macro",
  24668. height: math.unit(55, "m"),
  24669. default: true
  24670. },
  24671. {
  24672. name: "Macro+",
  24673. height: math.unit(300, "m")
  24674. },
  24675. {
  24676. name: "Macro++",
  24677. height: math.unit(700, "m")
  24678. },
  24679. {
  24680. name: "Macro+++",
  24681. height: math.unit(4500, "m")
  24682. },
  24683. {
  24684. name: "Macro++++",
  24685. height: math.unit(45, "km")
  24686. },
  24687. {
  24688. name: "Macro+++++",
  24689. height: math.unit(1220, "km")
  24690. },
  24691. ]
  24692. ))
  24693. characterMakers.push(() => makeCharacter(
  24694. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24695. {
  24696. front: {
  24697. height: math.unit(2.3, "m"),
  24698. weight: math.unit(304, "kg"),
  24699. name: "Front",
  24700. image: {
  24701. source: "./media/characters/icowom-lee/front.svg",
  24702. extra: 985 / 955,
  24703. bottom: 25.4 / 1012
  24704. }
  24705. },
  24706. fronttentacles: {
  24707. height: math.unit(2.3, "m"),
  24708. weight: math.unit(304, "kg"),
  24709. name: "Front-tentacles",
  24710. image: {
  24711. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24712. extra: 985 / 955,
  24713. bottom: 25.4 / 1012
  24714. }
  24715. },
  24716. back: {
  24717. height: math.unit(2.3, "m"),
  24718. weight: math.unit(304, "kg"),
  24719. name: "Back",
  24720. image: {
  24721. source: "./media/characters/icowom-lee/back.svg",
  24722. extra: 975 / 954,
  24723. bottom: 9.5 / 985
  24724. }
  24725. },
  24726. backtentacles: {
  24727. height: math.unit(2.3, "m"),
  24728. weight: math.unit(304, "kg"),
  24729. name: "Back-tentacles",
  24730. image: {
  24731. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24732. extra: 975 / 954,
  24733. bottom: 9.5 / 985
  24734. }
  24735. },
  24736. frontDressed: {
  24737. height: math.unit(2.3, "m"),
  24738. weight: math.unit(304, "kg"),
  24739. name: "Front (Dressed)",
  24740. image: {
  24741. source: "./media/characters/icowom-lee/front-dressed.svg",
  24742. extra: 3076 / 2933,
  24743. bottom: 51.4 / 3125.1889
  24744. }
  24745. },
  24746. rump: {
  24747. height: math.unit(0.776, "meters"),
  24748. name: "Rump",
  24749. image: {
  24750. source: "./media/characters/icowom-lee/rump.svg"
  24751. }
  24752. },
  24753. genitals: {
  24754. height: math.unit(0.78, "meters"),
  24755. name: "Genitals",
  24756. image: {
  24757. source: "./media/characters/icowom-lee/genitals.svg"
  24758. }
  24759. },
  24760. },
  24761. [
  24762. {
  24763. name: "Normal",
  24764. height: math.unit(2.3, "meters"),
  24765. default: true
  24766. },
  24767. {
  24768. name: "Macro",
  24769. height: math.unit(94, "meters"),
  24770. default: true
  24771. },
  24772. ]
  24773. ))
  24774. characterMakers.push(() => makeCharacter(
  24775. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24776. {
  24777. front: {
  24778. height: math.unit(22, "meters"),
  24779. weight: math.unit(21000, "kg"),
  24780. name: "Front",
  24781. image: {
  24782. source: "./media/characters/shock-diamond/front.svg",
  24783. extra: 2204 / 2053,
  24784. bottom: 65 / 2239.47
  24785. }
  24786. },
  24787. frontNude: {
  24788. height: math.unit(22, "meters"),
  24789. weight: math.unit(21000, "kg"),
  24790. name: "Front (Nude)",
  24791. image: {
  24792. source: "./media/characters/shock-diamond/front-nude.svg",
  24793. extra: 2514 / 2285,
  24794. bottom: 13 / 2527.56
  24795. }
  24796. },
  24797. },
  24798. [
  24799. {
  24800. name: "Normal",
  24801. height: math.unit(3, "meters")
  24802. },
  24803. {
  24804. name: "Macro",
  24805. height: math.unit(22, "meters"),
  24806. default: true
  24807. },
  24808. ]
  24809. ))
  24810. characterMakers.push(() => makeCharacter(
  24811. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24812. {
  24813. front: {
  24814. height: math.unit(5 + 4/12, "feet"),
  24815. weight: math.unit(125, "lb"),
  24816. name: "Front",
  24817. image: {
  24818. source: "./media/characters/rory/front.svg",
  24819. extra: 1790/1681,
  24820. bottom: 66/1856
  24821. },
  24822. form: "normal",
  24823. default: true
  24824. },
  24825. back: {
  24826. height: math.unit(5 + 4/12, "feet"),
  24827. weight: math.unit(125, "lb"),
  24828. name: "Back",
  24829. image: {
  24830. source: "./media/characters/rory/back.svg",
  24831. extra: 1805/1690,
  24832. bottom: 56/1861
  24833. },
  24834. form: "normal"
  24835. },
  24836. frontDressed: {
  24837. height: math.unit(5 + 4/12, "feet"),
  24838. weight: math.unit(125, "lb"),
  24839. name: "Front (Dressed)",
  24840. image: {
  24841. source: "./media/characters/rory/front-dressed.svg",
  24842. extra: 1790/1681,
  24843. bottom: 66/1856
  24844. },
  24845. form: "normal"
  24846. },
  24847. backDressed: {
  24848. height: math.unit(5 + 4/12, "feet"),
  24849. weight: math.unit(125, "lb"),
  24850. name: "Back (Dressed)",
  24851. image: {
  24852. source: "./media/characters/rory/back-dressed.svg",
  24853. extra: 1805/1690,
  24854. bottom: 56/1861
  24855. },
  24856. form: "normal"
  24857. },
  24858. frontNsfw: {
  24859. height: math.unit(5 + 4/12, "feet"),
  24860. weight: math.unit(125, "lb"),
  24861. name: "Front (NSFW)",
  24862. image: {
  24863. source: "./media/characters/rory/front-nsfw.svg",
  24864. extra: 1790/1681,
  24865. bottom: 66/1856
  24866. },
  24867. form: "normal"
  24868. },
  24869. backNsfw: {
  24870. height: math.unit(5 + 4/12, "feet"),
  24871. weight: math.unit(125, "lb"),
  24872. name: "Back (NSFW)",
  24873. image: {
  24874. source: "./media/characters/rory/back-nsfw.svg",
  24875. extra: 1805/1690,
  24876. bottom: 56/1861
  24877. },
  24878. form: "normal"
  24879. },
  24880. dick: {
  24881. height: math.unit(0.8, "feet"),
  24882. name: "Dick",
  24883. image: {
  24884. source: "./media/characters/rory/dick.svg"
  24885. },
  24886. form: "normal"
  24887. },
  24888. thicc_front: {
  24889. height: math.unit(5 + 4/12, "feet"),
  24890. weight: math.unit(195, "lb"),
  24891. name: "Front",
  24892. image: {
  24893. source: "./media/characters/rory/thicc-front.svg",
  24894. extra: 1220/1100,
  24895. bottom: 103/1323
  24896. },
  24897. form: "thicc",
  24898. default: true
  24899. },
  24900. thicc_back: {
  24901. height: math.unit(5 + 4/12, "feet"),
  24902. weight: math.unit(195, "lb"),
  24903. name: "Back",
  24904. image: {
  24905. source: "./media/characters/rory/thicc-back.svg",
  24906. extra: 1166/1086,
  24907. bottom: 35/1201
  24908. },
  24909. form: "thicc"
  24910. },
  24911. },
  24912. [
  24913. {
  24914. name: "Micro",
  24915. height: math.unit(3, "inches"),
  24916. allForms: true
  24917. },
  24918. {
  24919. name: "Normal",
  24920. height: math.unit(5 + 4/12, "feet"),
  24921. allForms: true,
  24922. default: true
  24923. },
  24924. {
  24925. name: "Macro",
  24926. height: math.unit(90, "feet"),
  24927. allForms: true
  24928. },
  24929. {
  24930. name: "Supercharged",
  24931. height: math.unit(270, "feet"),
  24932. allForms: true
  24933. },
  24934. ],
  24935. {
  24936. "normal": {
  24937. name: "Normal",
  24938. default: true
  24939. },
  24940. "thicc": {
  24941. name: "Thicc",
  24942. },
  24943. }
  24944. ))
  24945. characterMakers.push(() => makeCharacter(
  24946. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24947. {
  24948. front: {
  24949. height: math.unit(5 + 9 / 12, "feet"),
  24950. weight: math.unit(190, "lb"),
  24951. name: "Front",
  24952. image: {
  24953. source: "./media/characters/sprisk/front.svg",
  24954. extra: 1225 / 1180,
  24955. bottom: 42.7 / 1266.4
  24956. }
  24957. },
  24958. frontNsfw: {
  24959. height: math.unit(5 + 9 / 12, "feet"),
  24960. weight: math.unit(190, "lb"),
  24961. name: "Front (NSFW)",
  24962. image: {
  24963. source: "./media/characters/sprisk/front-nsfw.svg",
  24964. extra: 1225 / 1180,
  24965. bottom: 42.7 / 1266.4
  24966. }
  24967. },
  24968. back: {
  24969. height: math.unit(5 + 9 / 12, "feet"),
  24970. weight: math.unit(190, "lb"),
  24971. name: "Back",
  24972. image: {
  24973. source: "./media/characters/sprisk/back.svg",
  24974. extra: 1247 / 1200,
  24975. bottom: 5.6 / 1253.04
  24976. }
  24977. },
  24978. },
  24979. [
  24980. {
  24981. name: "Tiny",
  24982. height: math.unit(2, "inches")
  24983. },
  24984. {
  24985. name: "Normal",
  24986. height: math.unit(5 + 9 / 12, "feet"),
  24987. default: true
  24988. },
  24989. {
  24990. name: "Mini Macro",
  24991. height: math.unit(18, "feet")
  24992. },
  24993. {
  24994. name: "Macro",
  24995. height: math.unit(100, "feet")
  24996. },
  24997. {
  24998. name: "MACRO",
  24999. height: math.unit(50, "miles")
  25000. },
  25001. {
  25002. name: "M A C R O",
  25003. height: math.unit(300, "miles")
  25004. },
  25005. ]
  25006. ))
  25007. characterMakers.push(() => makeCharacter(
  25008. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25009. {
  25010. side: {
  25011. height: math.unit(15.6, "meters"),
  25012. weight: math.unit(700000, "kg"),
  25013. name: "Side",
  25014. image: {
  25015. source: "./media/characters/bunsen/side.svg",
  25016. extra: 1644 / 358
  25017. }
  25018. },
  25019. foot: {
  25020. height: math.unit(1.611 * 1644 / 358, "meter"),
  25021. name: "Foot",
  25022. image: {
  25023. source: "./media/characters/bunsen/foot.svg"
  25024. }
  25025. },
  25026. },
  25027. [
  25028. {
  25029. name: "Small",
  25030. height: math.unit(10, "feet")
  25031. },
  25032. {
  25033. name: "Normal",
  25034. height: math.unit(15.6, "meters"),
  25035. default: true
  25036. },
  25037. ]
  25038. ))
  25039. characterMakers.push(() => makeCharacter(
  25040. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25041. {
  25042. front: {
  25043. height: math.unit(4 + 11 / 12, "feet"),
  25044. weight: math.unit(140, "lb"),
  25045. name: "Front",
  25046. image: {
  25047. source: "./media/characters/sesh/front.svg",
  25048. extra: 3420 / 3231,
  25049. bottom: 72 / 3949.5
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Normal",
  25056. height: math.unit(4 + 11 / 12, "feet")
  25057. },
  25058. {
  25059. name: "Grown",
  25060. height: math.unit(15, "feet"),
  25061. default: true
  25062. },
  25063. {
  25064. name: "Macro",
  25065. height: math.unit(1500, "feet")
  25066. },
  25067. {
  25068. name: "Megamacro",
  25069. height: math.unit(30, "miles")
  25070. },
  25071. {
  25072. name: "Continental",
  25073. height: math.unit(3000, "miles")
  25074. },
  25075. {
  25076. name: "Gravity Mass",
  25077. height: math.unit(300000, "miles")
  25078. },
  25079. {
  25080. name: "Planet Buster",
  25081. height: math.unit(30000000, "miles")
  25082. },
  25083. {
  25084. name: "Big",
  25085. height: math.unit(3000000000, "miles")
  25086. },
  25087. ]
  25088. ))
  25089. characterMakers.push(() => makeCharacter(
  25090. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25091. {
  25092. front: {
  25093. height: math.unit(9, "feet"),
  25094. weight: math.unit(350, "lb"),
  25095. name: "Front",
  25096. image: {
  25097. source: "./media/characters/pepper/front.svg",
  25098. extra: 1448 / 1312,
  25099. bottom: 9.4 / 1457.88
  25100. }
  25101. },
  25102. back: {
  25103. height: math.unit(9, "feet"),
  25104. weight: math.unit(350, "lb"),
  25105. name: "Back",
  25106. image: {
  25107. source: "./media/characters/pepper/back.svg",
  25108. extra: 1423 / 1300,
  25109. bottom: 4.6 / 1429
  25110. }
  25111. },
  25112. maw: {
  25113. height: math.unit(0.932, "feet"),
  25114. name: "Maw",
  25115. image: {
  25116. source: "./media/characters/pepper/maw.svg"
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Normal",
  25123. height: math.unit(9, "feet"),
  25124. default: true
  25125. },
  25126. ]
  25127. ))
  25128. characterMakers.push(() => makeCharacter(
  25129. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25130. {
  25131. front: {
  25132. height: math.unit(6, "feet"),
  25133. weight: math.unit(150, "lb"),
  25134. name: "Front",
  25135. image: {
  25136. source: "./media/characters/maelstrom/front.svg",
  25137. extra: 2100 / 1883,
  25138. bottom: 94 / 2196.7
  25139. }
  25140. },
  25141. },
  25142. [
  25143. {
  25144. name: "Less Kaiju",
  25145. height: math.unit(200, "feet")
  25146. },
  25147. {
  25148. name: "Kaiju",
  25149. height: math.unit(400, "feet"),
  25150. default: true
  25151. },
  25152. {
  25153. name: "Kaiju-er",
  25154. height: math.unit(600, "feet")
  25155. },
  25156. ]
  25157. ))
  25158. characterMakers.push(() => makeCharacter(
  25159. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25160. {
  25161. front: {
  25162. height: math.unit(6 + 5 / 12, "feet"),
  25163. weight: math.unit(180, "lb"),
  25164. name: "Front",
  25165. image: {
  25166. source: "./media/characters/lexir/front.svg",
  25167. extra: 180 / 172,
  25168. bottom: 12 / 192
  25169. }
  25170. },
  25171. back: {
  25172. height: math.unit(6 + 5 / 12, "feet"),
  25173. weight: math.unit(180, "lb"),
  25174. name: "Back",
  25175. image: {
  25176. source: "./media/characters/lexir/back.svg",
  25177. extra: 1273/1201,
  25178. bottom: 39/1312
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Very Smal",
  25185. height: math.unit(1, "nm")
  25186. },
  25187. {
  25188. name: "Normal",
  25189. height: math.unit(6 + 5 / 12, "feet"),
  25190. default: true
  25191. },
  25192. {
  25193. name: "Macro",
  25194. height: math.unit(1, "mile")
  25195. },
  25196. {
  25197. name: "Megamacro",
  25198. height: math.unit(50, "miles")
  25199. },
  25200. ]
  25201. ))
  25202. characterMakers.push(() => makeCharacter(
  25203. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25204. {
  25205. front: {
  25206. height: math.unit(1.5, "meters"),
  25207. weight: math.unit(100, "lb"),
  25208. name: "Front",
  25209. image: {
  25210. source: "./media/characters/maksio/front.svg",
  25211. extra: 1549 / 1531,
  25212. bottom: 123.7 / 1674.5429
  25213. }
  25214. },
  25215. back: {
  25216. height: math.unit(1.5, "meters"),
  25217. weight: math.unit(100, "lb"),
  25218. name: "Back",
  25219. image: {
  25220. source: "./media/characters/maksio/back.svg",
  25221. extra: 1541 / 1509,
  25222. bottom: 97 / 1639
  25223. }
  25224. },
  25225. hand: {
  25226. height: math.unit(0.621, "feet"),
  25227. name: "Hand",
  25228. image: {
  25229. source: "./media/characters/maksio/hand.svg"
  25230. }
  25231. },
  25232. foot: {
  25233. height: math.unit(1.611, "feet"),
  25234. name: "Foot",
  25235. image: {
  25236. source: "./media/characters/maksio/foot.svg"
  25237. }
  25238. },
  25239. },
  25240. [
  25241. {
  25242. name: "Shrunken",
  25243. height: math.unit(10, "cm")
  25244. },
  25245. {
  25246. name: "Normal",
  25247. height: math.unit(150, "cm"),
  25248. default: true
  25249. },
  25250. ]
  25251. ))
  25252. characterMakers.push(() => makeCharacter(
  25253. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25254. {
  25255. front: {
  25256. height: math.unit(100, "feet"),
  25257. name: "Front",
  25258. image: {
  25259. source: "./media/characters/erza-bear/front.svg",
  25260. extra: 2449 / 2390,
  25261. bottom: 46 / 2494
  25262. }
  25263. },
  25264. back: {
  25265. height: math.unit(100, "feet"),
  25266. name: "Back",
  25267. image: {
  25268. source: "./media/characters/erza-bear/back.svg",
  25269. extra: 2489 / 2430,
  25270. bottom: 85.4 / 2480
  25271. }
  25272. },
  25273. tail: {
  25274. height: math.unit(42, "feet"),
  25275. name: "Tail",
  25276. image: {
  25277. source: "./media/characters/erza-bear/tail.svg"
  25278. }
  25279. },
  25280. tongue: {
  25281. height: math.unit(8, "feet"),
  25282. name: "Tongue",
  25283. image: {
  25284. source: "./media/characters/erza-bear/tongue.svg"
  25285. }
  25286. },
  25287. dick: {
  25288. height: math.unit(10.5, "feet"),
  25289. name: "Dick",
  25290. image: {
  25291. source: "./media/characters/erza-bear/dick.svg"
  25292. }
  25293. },
  25294. dickVertical: {
  25295. height: math.unit(16.9, "feet"),
  25296. name: "Dick (Vertical)",
  25297. image: {
  25298. source: "./media/characters/erza-bear/dick-vertical.svg"
  25299. }
  25300. },
  25301. },
  25302. [
  25303. {
  25304. name: "Macro",
  25305. height: math.unit(100, "feet"),
  25306. default: true
  25307. },
  25308. ]
  25309. ))
  25310. characterMakers.push(() => makeCharacter(
  25311. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25312. {
  25313. front: {
  25314. height: math.unit(172, "cm"),
  25315. weight: math.unit(73, "kg"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/violet-flor/front.svg",
  25319. extra: 1530 / 1442,
  25320. bottom: 61.9 / 1588.8
  25321. }
  25322. },
  25323. back: {
  25324. height: math.unit(180, "cm"),
  25325. weight: math.unit(73, "kg"),
  25326. name: "Back",
  25327. image: {
  25328. source: "./media/characters/violet-flor/back.svg",
  25329. extra: 1692 / 1630,
  25330. bottom: 20 / 1712
  25331. }
  25332. },
  25333. },
  25334. [
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(172, "cm"),
  25338. default: true
  25339. },
  25340. ]
  25341. ))
  25342. characterMakers.push(() => makeCharacter(
  25343. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25344. {
  25345. front: {
  25346. height: math.unit(6, "feet"),
  25347. weight: math.unit(220, "lb"),
  25348. name: "Front",
  25349. image: {
  25350. source: "./media/characters/lynn-rhea/front.svg",
  25351. extra: 310 / 273
  25352. }
  25353. },
  25354. back: {
  25355. height: math.unit(6, "feet"),
  25356. weight: math.unit(220, "lb"),
  25357. name: "Back",
  25358. image: {
  25359. source: "./media/characters/lynn-rhea/back.svg",
  25360. extra: 310 / 273
  25361. }
  25362. },
  25363. dicks: {
  25364. height: math.unit(0.9, "feet"),
  25365. name: "Dicks",
  25366. image: {
  25367. source: "./media/characters/lynn-rhea/dicks.svg"
  25368. }
  25369. },
  25370. slit: {
  25371. height: math.unit(0.4, "feet"),
  25372. name: "Slit",
  25373. image: {
  25374. source: "./media/characters/lynn-rhea/slit.svg"
  25375. }
  25376. },
  25377. },
  25378. [
  25379. {
  25380. name: "Micro",
  25381. height: math.unit(1, "inch")
  25382. },
  25383. {
  25384. name: "Macro",
  25385. height: math.unit(60, "feet"),
  25386. default: true
  25387. },
  25388. {
  25389. name: "Megamacro",
  25390. height: math.unit(2, "miles")
  25391. },
  25392. {
  25393. name: "Gigamacro",
  25394. height: math.unit(3, "earths")
  25395. },
  25396. {
  25397. name: "Galactic",
  25398. height: math.unit(0.8, "galaxies")
  25399. },
  25400. ]
  25401. ))
  25402. characterMakers.push(() => makeCharacter(
  25403. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25404. {
  25405. front: {
  25406. height: math.unit(1600, "feet"),
  25407. weight: math.unit(85758785169, "kg"),
  25408. name: "Front",
  25409. image: {
  25410. source: "./media/characters/valathos/front.svg",
  25411. extra: 1451 / 1339
  25412. }
  25413. },
  25414. },
  25415. [
  25416. {
  25417. name: "Macro",
  25418. height: math.unit(1600, "feet"),
  25419. default: true
  25420. },
  25421. ]
  25422. ))
  25423. characterMakers.push(() => makeCharacter(
  25424. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25425. {
  25426. front: {
  25427. height: math.unit(7 + 5 / 12, "feet"),
  25428. weight: math.unit(300, "lb"),
  25429. name: "Front",
  25430. image: {
  25431. source: "./media/characters/azula/front.svg",
  25432. extra: 3208 / 2880,
  25433. bottom: 80.2 / 3277
  25434. }
  25435. },
  25436. back: {
  25437. height: math.unit(7 + 5 / 12, "feet"),
  25438. weight: math.unit(300, "lb"),
  25439. name: "Back",
  25440. image: {
  25441. source: "./media/characters/azula/back.svg",
  25442. extra: 3169 / 2822,
  25443. bottom: 150.6 / 3321
  25444. }
  25445. },
  25446. },
  25447. [
  25448. {
  25449. name: "Normal",
  25450. height: math.unit(7 + 5 / 12, "feet"),
  25451. default: true
  25452. },
  25453. {
  25454. name: "Big",
  25455. height: math.unit(20, "feet")
  25456. },
  25457. ]
  25458. ))
  25459. characterMakers.push(() => makeCharacter(
  25460. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25461. {
  25462. front: {
  25463. height: math.unit(5 + 1 / 12, "feet"),
  25464. weight: math.unit(110, "lb"),
  25465. name: "Front",
  25466. image: {
  25467. source: "./media/characters/rupert/front.svg",
  25468. extra: 1549 / 1495,
  25469. bottom: 54.2 / 1604.4
  25470. }
  25471. },
  25472. },
  25473. [
  25474. {
  25475. name: "Normal",
  25476. height: math.unit(5 + 1 / 12, "feet"),
  25477. default: true
  25478. },
  25479. ]
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25483. {
  25484. front: {
  25485. height: math.unit(8 + 4 / 12, "feet"),
  25486. weight: math.unit(350, "lb"),
  25487. name: "Front",
  25488. image: {
  25489. source: "./media/characters/sheera-castellar/front.svg",
  25490. extra: 1957 / 1894,
  25491. bottom: 26.97 / 1975.017
  25492. }
  25493. },
  25494. side: {
  25495. height: math.unit(8 + 4 / 12, "feet"),
  25496. weight: math.unit(350, "lb"),
  25497. name: "Side",
  25498. image: {
  25499. source: "./media/characters/sheera-castellar/side.svg",
  25500. extra: 1957 / 1894
  25501. }
  25502. },
  25503. back: {
  25504. height: math.unit(8 + 4 / 12, "feet"),
  25505. weight: math.unit(350, "lb"),
  25506. name: "Back",
  25507. image: {
  25508. source: "./media/characters/sheera-castellar/back.svg",
  25509. extra: 1957 / 1894
  25510. }
  25511. },
  25512. angled: {
  25513. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25514. weight: math.unit(350, "lb"),
  25515. name: "Angled",
  25516. image: {
  25517. source: "./media/characters/sheera-castellar/angled.svg",
  25518. extra: 1807 / 1707,
  25519. bottom: 68 / 1875
  25520. }
  25521. },
  25522. genitals: {
  25523. height: math.unit(2.2, "feet"),
  25524. name: "Genitals",
  25525. image: {
  25526. source: "./media/characters/sheera-castellar/genitals.svg"
  25527. }
  25528. },
  25529. taur: {
  25530. height: math.unit(10 + 6/12, "feet"),
  25531. name: "Taur",
  25532. image: {
  25533. source: "./media/characters/sheera-castellar/taur.svg",
  25534. extra: 2017/1909,
  25535. bottom: 185/2202
  25536. }
  25537. },
  25538. },
  25539. [
  25540. {
  25541. name: "Normal",
  25542. height: math.unit(8 + 4 / 12, "feet")
  25543. },
  25544. {
  25545. name: "Macro",
  25546. height: math.unit(150, "feet"),
  25547. default: true
  25548. },
  25549. {
  25550. name: "Macro+",
  25551. height: math.unit(800, "feet")
  25552. },
  25553. ]
  25554. ))
  25555. characterMakers.push(() => makeCharacter(
  25556. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25557. {
  25558. front: {
  25559. height: math.unit(6, "feet"),
  25560. weight: math.unit(150, "lb"),
  25561. name: "Front",
  25562. image: {
  25563. source: "./media/characters/jaipur/front.svg",
  25564. extra: 3860 / 3731,
  25565. bottom: 287 / 4140
  25566. }
  25567. },
  25568. back: {
  25569. height: math.unit(6, "feet"),
  25570. weight: math.unit(150, "lb"),
  25571. name: "Back",
  25572. image: {
  25573. source: "./media/characters/jaipur/back.svg",
  25574. extra: 1637/1561,
  25575. bottom: 154/1791
  25576. }
  25577. },
  25578. },
  25579. [
  25580. {
  25581. name: "Normal",
  25582. height: math.unit(1.85, "meters"),
  25583. default: true
  25584. },
  25585. {
  25586. name: "Macro",
  25587. height: math.unit(150, "meters")
  25588. },
  25589. {
  25590. name: "Macro+",
  25591. height: math.unit(0.5, "miles")
  25592. },
  25593. {
  25594. name: "Macro++",
  25595. height: math.unit(2.5, "miles")
  25596. },
  25597. {
  25598. name: "Macro+++",
  25599. height: math.unit(12, "miles")
  25600. },
  25601. {
  25602. name: "Macro++++",
  25603. height: math.unit(120, "miles")
  25604. },
  25605. {
  25606. name: "Macro+++++",
  25607. height: math.unit(1200, "miles")
  25608. },
  25609. ]
  25610. ))
  25611. characterMakers.push(() => makeCharacter(
  25612. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25613. {
  25614. front: {
  25615. height: math.unit(6, "feet"),
  25616. weight: math.unit(150, "lb"),
  25617. name: "Front",
  25618. image: {
  25619. source: "./media/characters/sheila-wolf/front.svg",
  25620. extra: 1931 / 1808,
  25621. bottom: 29.5 / 1960
  25622. }
  25623. },
  25624. dick: {
  25625. height: math.unit(1.464, "feet"),
  25626. name: "Dick",
  25627. image: {
  25628. source: "./media/characters/sheila-wolf/dick.svg"
  25629. }
  25630. },
  25631. muzzle: {
  25632. height: math.unit(0.513, "feet"),
  25633. name: "Muzzle",
  25634. image: {
  25635. source: "./media/characters/sheila-wolf/muzzle.svg"
  25636. }
  25637. },
  25638. },
  25639. [
  25640. {
  25641. name: "Macro",
  25642. height: math.unit(70, "feet"),
  25643. default: true
  25644. },
  25645. ]
  25646. ))
  25647. characterMakers.push(() => makeCharacter(
  25648. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25649. {
  25650. front: {
  25651. height: math.unit(32, "meters"),
  25652. weight: math.unit(300000, "kg"),
  25653. name: "Front",
  25654. image: {
  25655. source: "./media/characters/almor/front.svg",
  25656. extra: 1408 / 1322,
  25657. bottom: 94.6 / 1506.5
  25658. }
  25659. },
  25660. },
  25661. [
  25662. {
  25663. name: "Macro",
  25664. height: math.unit(32, "meters"),
  25665. default: true
  25666. },
  25667. ]
  25668. ))
  25669. characterMakers.push(() => makeCharacter(
  25670. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25671. {
  25672. front: {
  25673. height: math.unit(7, "feet"),
  25674. weight: math.unit(200, "lb"),
  25675. name: "Front",
  25676. image: {
  25677. source: "./media/characters/silver/front.svg",
  25678. extra: 472.1 / 450.5,
  25679. bottom: 26.5 / 499.424
  25680. }
  25681. },
  25682. },
  25683. [
  25684. {
  25685. name: "Normal",
  25686. height: math.unit(7, "feet"),
  25687. default: true
  25688. },
  25689. {
  25690. name: "Macro",
  25691. height: math.unit(800, "feet")
  25692. },
  25693. {
  25694. name: "Megamacro",
  25695. height: math.unit(250, "miles")
  25696. },
  25697. ]
  25698. ))
  25699. characterMakers.push(() => makeCharacter(
  25700. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25701. {
  25702. front: {
  25703. height: math.unit(6, "feet"),
  25704. weight: math.unit(150, "lb"),
  25705. name: "Front",
  25706. image: {
  25707. source: "./media/characters/pliskin/front.svg",
  25708. extra: 1469 / 1359,
  25709. bottom: 70 / 1540
  25710. }
  25711. },
  25712. },
  25713. [
  25714. {
  25715. name: "Micro",
  25716. height: math.unit(3, "inches")
  25717. },
  25718. {
  25719. name: "Normal",
  25720. height: math.unit(5 + 11 / 12, "feet"),
  25721. default: true
  25722. },
  25723. {
  25724. name: "Macro",
  25725. height: math.unit(120, "feet")
  25726. },
  25727. ]
  25728. ))
  25729. characterMakers.push(() => makeCharacter(
  25730. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25731. {
  25732. front: {
  25733. height: math.unit(6, "feet"),
  25734. weight: math.unit(150, "lb"),
  25735. name: "Front",
  25736. image: {
  25737. source: "./media/characters/sammy/front.svg",
  25738. extra: 1193 / 1089,
  25739. bottom: 30.5 / 1226
  25740. }
  25741. },
  25742. },
  25743. [
  25744. {
  25745. name: "Macro",
  25746. height: math.unit(1700, "feet"),
  25747. default: true
  25748. },
  25749. {
  25750. name: "Examacro",
  25751. height: math.unit(2.5e9, "lightyears")
  25752. },
  25753. ]
  25754. ))
  25755. characterMakers.push(() => makeCharacter(
  25756. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25757. {
  25758. front: {
  25759. height: math.unit(21, "meters"),
  25760. weight: math.unit(12, "tonnes"),
  25761. name: "Front",
  25762. image: {
  25763. source: "./media/characters/kuru/front.svg",
  25764. extra: 4301 / 3785,
  25765. bottom: 371.3 / 4691
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Macro",
  25772. height: math.unit(21, "meters"),
  25773. default: true
  25774. },
  25775. ]
  25776. ))
  25777. characterMakers.push(() => makeCharacter(
  25778. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25779. {
  25780. front: {
  25781. height: math.unit(23, "meters"),
  25782. weight: math.unit(12.2, "tonnes"),
  25783. name: "Front",
  25784. image: {
  25785. source: "./media/characters/rakka/front.svg",
  25786. extra: 4670 / 4169,
  25787. bottom: 301 / 4968.7
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Macro",
  25794. height: math.unit(23, "meters"),
  25795. default: true
  25796. },
  25797. ]
  25798. ))
  25799. characterMakers.push(() => makeCharacter(
  25800. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25801. {
  25802. front: {
  25803. height: math.unit(6, "feet"),
  25804. weight: math.unit(150, "lb"),
  25805. name: "Front",
  25806. image: {
  25807. source: "./media/characters/rhys-feline/front.svg",
  25808. extra: 2488 / 2308,
  25809. bottom: 35.67 / 2519.19
  25810. }
  25811. },
  25812. },
  25813. [
  25814. {
  25815. name: "Really Small",
  25816. height: math.unit(1, "nm")
  25817. },
  25818. {
  25819. name: "Micro",
  25820. height: math.unit(4, "inches")
  25821. },
  25822. {
  25823. name: "Normal",
  25824. height: math.unit(4 + 10 / 12, "feet"),
  25825. default: true
  25826. },
  25827. {
  25828. name: "Macro",
  25829. height: math.unit(100, "feet")
  25830. },
  25831. {
  25832. name: "Megamacto",
  25833. height: math.unit(50, "miles")
  25834. },
  25835. ]
  25836. ))
  25837. characterMakers.push(() => makeCharacter(
  25838. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25839. {
  25840. side: {
  25841. height: math.unit(30, "feet"),
  25842. weight: math.unit(35000, "kg"),
  25843. name: "Side",
  25844. image: {
  25845. source: "./media/characters/alydar/side.svg",
  25846. extra: 234 / 222,
  25847. bottom: 6.5 / 241
  25848. }
  25849. },
  25850. front: {
  25851. height: math.unit(30, "feet"),
  25852. weight: math.unit(35000, "kg"),
  25853. name: "Front",
  25854. image: {
  25855. source: "./media/characters/alydar/front.svg",
  25856. extra: 223.37 / 210.2,
  25857. bottom: 22.3 / 246.76
  25858. }
  25859. },
  25860. top: {
  25861. height: math.unit(64.54, "feet"),
  25862. weight: math.unit(35000, "kg"),
  25863. name: "Top",
  25864. image: {
  25865. source: "./media/characters/alydar/top.svg"
  25866. }
  25867. },
  25868. anthro: {
  25869. height: math.unit(30, "feet"),
  25870. weight: math.unit(9000, "kg"),
  25871. name: "Anthro",
  25872. image: {
  25873. source: "./media/characters/alydar/anthro.svg",
  25874. extra: 432 / 421,
  25875. bottom: 7.18 / 440
  25876. }
  25877. },
  25878. maw: {
  25879. height: math.unit(11.693, "feet"),
  25880. name: "Maw",
  25881. image: {
  25882. source: "./media/characters/alydar/maw.svg"
  25883. }
  25884. },
  25885. head: {
  25886. height: math.unit(11.693, "feet"),
  25887. name: "Head",
  25888. image: {
  25889. source: "./media/characters/alydar/head.svg"
  25890. }
  25891. },
  25892. headAlt: {
  25893. height: math.unit(12.861, "feet"),
  25894. name: "Head (Alt)",
  25895. image: {
  25896. source: "./media/characters/alydar/head-alt.svg"
  25897. }
  25898. },
  25899. wing: {
  25900. height: math.unit(20.712, "feet"),
  25901. name: "Wing",
  25902. image: {
  25903. source: "./media/characters/alydar/wing.svg"
  25904. }
  25905. },
  25906. wingFeather: {
  25907. height: math.unit(9.662, "feet"),
  25908. name: "Wing Feather",
  25909. image: {
  25910. source: "./media/characters/alydar/wing-feather.svg"
  25911. }
  25912. },
  25913. countourFeather: {
  25914. height: math.unit(4.154, "feet"),
  25915. name: "Contour Feather",
  25916. image: {
  25917. source: "./media/characters/alydar/contour-feather.svg"
  25918. }
  25919. },
  25920. },
  25921. [
  25922. {
  25923. name: "Diplomatic",
  25924. height: math.unit(13, "feet"),
  25925. default: true
  25926. },
  25927. {
  25928. name: "Small",
  25929. height: math.unit(30, "feet")
  25930. },
  25931. {
  25932. name: "Normal",
  25933. height: math.unit(95, "feet"),
  25934. default: true
  25935. },
  25936. {
  25937. name: "Large",
  25938. height: math.unit(285, "feet")
  25939. },
  25940. {
  25941. name: "Incomprehensible",
  25942. height: math.unit(450, "megameters")
  25943. },
  25944. ]
  25945. ))
  25946. characterMakers.push(() => makeCharacter(
  25947. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25948. {
  25949. side: {
  25950. height: math.unit(11, "feet"),
  25951. weight: math.unit(1750, "kg"),
  25952. name: "Side",
  25953. image: {
  25954. source: "./media/characters/selicia/side.svg",
  25955. extra: 440 / 396,
  25956. bottom: 24.8 / 465.979
  25957. }
  25958. },
  25959. maw: {
  25960. height: math.unit(4.665, "feet"),
  25961. name: "Maw",
  25962. image: {
  25963. source: "./media/characters/selicia/maw.svg"
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Normal",
  25970. height: math.unit(11, "feet"),
  25971. default: true
  25972. },
  25973. ]
  25974. ))
  25975. characterMakers.push(() => makeCharacter(
  25976. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25977. {
  25978. side: {
  25979. height: math.unit(2 + 6 / 12, "feet"),
  25980. weight: math.unit(30, "lb"),
  25981. name: "Side",
  25982. image: {
  25983. source: "./media/characters/layla/side.svg",
  25984. extra: 244 / 188,
  25985. bottom: 18.2 / 262.1
  25986. }
  25987. },
  25988. back: {
  25989. height: math.unit(2 + 6 / 12, "feet"),
  25990. weight: math.unit(30, "lb"),
  25991. name: "Back",
  25992. image: {
  25993. source: "./media/characters/layla/back.svg",
  25994. extra: 308 / 241.5,
  25995. bottom: 8.9 / 316.8
  25996. }
  25997. },
  25998. cumming: {
  25999. height: math.unit(2 + 6 / 12, "feet"),
  26000. weight: math.unit(30, "lb"),
  26001. name: "Cumming",
  26002. image: {
  26003. source: "./media/characters/layla/cumming.svg",
  26004. extra: 342 / 279,
  26005. bottom: 595 / 938
  26006. }
  26007. },
  26008. dickFlaccid: {
  26009. height: math.unit(2.595, "feet"),
  26010. name: "Flaccid Genitals",
  26011. image: {
  26012. source: "./media/characters/layla/dick-flaccid.svg"
  26013. }
  26014. },
  26015. dickErect: {
  26016. height: math.unit(2.359, "feet"),
  26017. name: "Erect Genitals",
  26018. image: {
  26019. source: "./media/characters/layla/dick-erect.svg"
  26020. }
  26021. },
  26022. dragon: {
  26023. height: math.unit(40, "feet"),
  26024. name: "Dragon",
  26025. image: {
  26026. source: "./media/characters/layla/dragon.svg",
  26027. extra: 610/535,
  26028. bottom: 367/977
  26029. }
  26030. },
  26031. taur: {
  26032. height: math.unit(30, "feet"),
  26033. name: "Taur",
  26034. image: {
  26035. source: "./media/characters/layla/taur.svg",
  26036. extra: 1268/1199,
  26037. bottom: 112/1380
  26038. }
  26039. },
  26040. },
  26041. [
  26042. {
  26043. name: "Micro",
  26044. height: math.unit(1, "inch")
  26045. },
  26046. {
  26047. name: "Small",
  26048. height: math.unit(1, "foot")
  26049. },
  26050. {
  26051. name: "Normal",
  26052. height: math.unit(2 + 6 / 12, "feet"),
  26053. default: true
  26054. },
  26055. {
  26056. name: "Macro",
  26057. height: math.unit(200, "feet")
  26058. },
  26059. {
  26060. name: "Megamacro",
  26061. height: math.unit(1000, "miles")
  26062. },
  26063. {
  26064. name: "Planetary",
  26065. height: math.unit(8000, "miles")
  26066. },
  26067. {
  26068. name: "True Layla",
  26069. height: math.unit(200000 * 7, "multiverses")
  26070. },
  26071. ]
  26072. ))
  26073. characterMakers.push(() => makeCharacter(
  26074. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26075. {
  26076. back: {
  26077. height: math.unit(10.5, "feet"),
  26078. weight: math.unit(800, "lb"),
  26079. name: "Back",
  26080. image: {
  26081. source: "./media/characters/knox/back.svg",
  26082. extra: 1486 / 1089,
  26083. bottom: 107 / 1601.4
  26084. }
  26085. },
  26086. side: {
  26087. height: math.unit(10.5, "feet"),
  26088. weight: math.unit(800, "lb"),
  26089. name: "Side",
  26090. image: {
  26091. source: "./media/characters/knox/side.svg",
  26092. extra: 244 / 218,
  26093. bottom: 14 / 260
  26094. }
  26095. },
  26096. },
  26097. [
  26098. {
  26099. name: "Compact",
  26100. height: math.unit(10.5, "feet"),
  26101. default: true
  26102. },
  26103. {
  26104. name: "Dynamax",
  26105. height: math.unit(210, "feet")
  26106. },
  26107. {
  26108. name: "Full Macro",
  26109. height: math.unit(850, "feet")
  26110. },
  26111. ]
  26112. ))
  26113. characterMakers.push(() => makeCharacter(
  26114. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26115. {
  26116. front: {
  26117. height: math.unit(28, "feet"),
  26118. weight: math.unit(10500, "lb"),
  26119. name: "Front",
  26120. image: {
  26121. source: "./media/characters/kayda/front.svg",
  26122. extra: 1536 / 1428,
  26123. bottom: 68.7 / 1603
  26124. }
  26125. },
  26126. back: {
  26127. height: math.unit(28, "feet"),
  26128. weight: math.unit(10500, "lb"),
  26129. name: "Back",
  26130. image: {
  26131. source: "./media/characters/kayda/back.svg",
  26132. extra: 1557 / 1464,
  26133. bottom: 39.5 / 1597.49
  26134. }
  26135. },
  26136. dick: {
  26137. height: math.unit(3.858, "feet"),
  26138. name: "Dick",
  26139. image: {
  26140. source: "./media/characters/kayda/dick.svg"
  26141. }
  26142. },
  26143. },
  26144. [
  26145. {
  26146. name: "Macro",
  26147. height: math.unit(28, "feet"),
  26148. default: true
  26149. },
  26150. ]
  26151. ))
  26152. characterMakers.push(() => makeCharacter(
  26153. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26154. {
  26155. front: {
  26156. height: math.unit(10 + 11 / 12, "feet"),
  26157. weight: math.unit(1400, "lb"),
  26158. name: "Front",
  26159. image: {
  26160. source: "./media/characters/brian/front.svg",
  26161. extra: 737 / 692,
  26162. bottom: 55.4 / 785
  26163. }
  26164. },
  26165. },
  26166. [
  26167. {
  26168. name: "Normal",
  26169. height: math.unit(10 + 11 / 12, "feet"),
  26170. default: true
  26171. },
  26172. ]
  26173. ))
  26174. characterMakers.push(() => makeCharacter(
  26175. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26176. {
  26177. front: {
  26178. height: math.unit(5 + 8 / 12, "feet"),
  26179. weight: math.unit(140, "lb"),
  26180. name: "Front",
  26181. image: {
  26182. source: "./media/characters/khemri/front.svg",
  26183. extra: 4780 / 4059,
  26184. bottom: 80.1 / 4859.25
  26185. }
  26186. },
  26187. },
  26188. [
  26189. {
  26190. name: "Micro",
  26191. height: math.unit(6, "inches")
  26192. },
  26193. {
  26194. name: "Normal",
  26195. height: math.unit(5 + 8 / 12, "feet"),
  26196. default: true
  26197. },
  26198. ]
  26199. ))
  26200. characterMakers.push(() => makeCharacter(
  26201. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26202. {
  26203. front: {
  26204. height: math.unit(13, "feet"),
  26205. weight: math.unit(1700, "lb"),
  26206. name: "Front",
  26207. image: {
  26208. source: "./media/characters/felix-braveheart/front.svg",
  26209. extra: 1222 / 1157,
  26210. bottom: 53.2 / 1280
  26211. }
  26212. },
  26213. back: {
  26214. height: math.unit(13, "feet"),
  26215. weight: math.unit(1700, "lb"),
  26216. name: "Back",
  26217. image: {
  26218. source: "./media/characters/felix-braveheart/back.svg",
  26219. extra: 1277 / 1203,
  26220. bottom: 50.2 / 1327
  26221. }
  26222. },
  26223. feral: {
  26224. height: math.unit(6, "feet"),
  26225. weight: math.unit(400, "lb"),
  26226. name: "Feral",
  26227. image: {
  26228. source: "./media/characters/felix-braveheart/feral.svg",
  26229. extra: 682 / 625,
  26230. bottom: 6.9 / 688
  26231. }
  26232. },
  26233. },
  26234. [
  26235. {
  26236. name: "Normal",
  26237. height: math.unit(13, "feet"),
  26238. default: true
  26239. },
  26240. ]
  26241. ))
  26242. characterMakers.push(() => makeCharacter(
  26243. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26244. {
  26245. side: {
  26246. height: math.unit(5 + 11 / 12, "feet"),
  26247. weight: math.unit(1400, "lb"),
  26248. name: "Side",
  26249. image: {
  26250. source: "./media/characters/shadow-blade/side.svg",
  26251. extra: 1726 / 1267,
  26252. bottom: 58.4 / 1785
  26253. }
  26254. },
  26255. },
  26256. [
  26257. {
  26258. name: "Normal",
  26259. height: math.unit(5 + 11 / 12, "feet"),
  26260. default: true
  26261. },
  26262. ]
  26263. ))
  26264. characterMakers.push(() => makeCharacter(
  26265. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26266. {
  26267. front: {
  26268. height: math.unit(1 + 6 / 12, "feet"),
  26269. weight: math.unit(25, "lb"),
  26270. name: "Front",
  26271. image: {
  26272. source: "./media/characters/karla-halldor/front.svg",
  26273. extra: 1459 / 1383,
  26274. bottom: 12 / 1472
  26275. }
  26276. },
  26277. },
  26278. [
  26279. {
  26280. name: "Normal",
  26281. height: math.unit(1 + 6 / 12, "feet"),
  26282. default: true
  26283. },
  26284. ]
  26285. ))
  26286. characterMakers.push(() => makeCharacter(
  26287. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26288. {
  26289. front: {
  26290. height: math.unit(6 + 2 / 12, "feet"),
  26291. weight: math.unit(160, "lb"),
  26292. name: "Front",
  26293. image: {
  26294. source: "./media/characters/ariam/front.svg",
  26295. extra: 1073/976,
  26296. bottom: 52/1125
  26297. }
  26298. },
  26299. back: {
  26300. height: math.unit(6 + 2/12, "feet"),
  26301. weight: math.unit(160, "lb"),
  26302. name: "Back",
  26303. image: {
  26304. source: "./media/characters/ariam/back.svg",
  26305. extra: 1103/1023,
  26306. bottom: 9/1112
  26307. }
  26308. },
  26309. dressed: {
  26310. height: math.unit(6 + 2/12, "feet"),
  26311. weight: math.unit(160, "lb"),
  26312. name: "Dressed",
  26313. image: {
  26314. source: "./media/characters/ariam/dressed.svg",
  26315. extra: 1099/1009,
  26316. bottom: 25/1124
  26317. }
  26318. },
  26319. squatting: {
  26320. height: math.unit(4.1, "feet"),
  26321. weight: math.unit(160, "lb"),
  26322. name: "Squatting",
  26323. image: {
  26324. source: "./media/characters/ariam/squatting.svg",
  26325. extra: 2617 / 2112,
  26326. bottom: 61.2 / 2681,
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Normal",
  26333. height: math.unit(6 + 2 / 12, "feet"),
  26334. default: true
  26335. },
  26336. {
  26337. name: "Normal+",
  26338. height: math.unit(4, "meters")
  26339. },
  26340. {
  26341. name: "Macro",
  26342. height: math.unit(50, "meters")
  26343. },
  26344. {
  26345. name: "Macro+",
  26346. height: math.unit(100, "meters")
  26347. },
  26348. {
  26349. name: "Megamacro",
  26350. height: math.unit(20, "km")
  26351. },
  26352. {
  26353. name: "Caretaker",
  26354. height: math.unit(444, "megameters")
  26355. },
  26356. ]
  26357. ))
  26358. characterMakers.push(() => makeCharacter(
  26359. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26360. {
  26361. front: {
  26362. height: math.unit(1.67, "meters"),
  26363. weight: math.unit(140, "lb"),
  26364. name: "Front",
  26365. image: {
  26366. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26367. extra: 438 / 410,
  26368. bottom: 0.75 / 439
  26369. }
  26370. },
  26371. },
  26372. [
  26373. {
  26374. name: "Shrunken",
  26375. height: math.unit(7.6, "cm")
  26376. },
  26377. {
  26378. name: "Human Scale",
  26379. height: math.unit(1.67, "meters")
  26380. },
  26381. {
  26382. name: "Wolxi Scale",
  26383. height: math.unit(36.7, "meters"),
  26384. default: true
  26385. },
  26386. ]
  26387. ))
  26388. characterMakers.push(() => makeCharacter(
  26389. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26390. {
  26391. front: {
  26392. height: math.unit(1.73, "meters"),
  26393. weight: math.unit(240, "lb"),
  26394. name: "Front",
  26395. image: {
  26396. source: "./media/characters/izue-two-mothers/front.svg",
  26397. extra: 469 / 437,
  26398. bottom: 1.24 / 470.6
  26399. }
  26400. },
  26401. },
  26402. [
  26403. {
  26404. name: "Shrunken",
  26405. height: math.unit(7.86, "cm")
  26406. },
  26407. {
  26408. name: "Human Scale",
  26409. height: math.unit(1.73, "meters")
  26410. },
  26411. {
  26412. name: "Wolxi Scale",
  26413. height: math.unit(38, "meters"),
  26414. default: true
  26415. },
  26416. ]
  26417. ))
  26418. characterMakers.push(() => makeCharacter(
  26419. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26420. {
  26421. front: {
  26422. height: math.unit(1.55, "meters"),
  26423. weight: math.unit(120, "lb"),
  26424. name: "Front",
  26425. image: {
  26426. source: "./media/characters/teeku-love-shack/front.svg",
  26427. extra: 387 / 362,
  26428. bottom: 1.51 / 388
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Shrunken",
  26435. height: math.unit(7, "cm")
  26436. },
  26437. {
  26438. name: "Human Scale",
  26439. height: math.unit(1.55, "meters")
  26440. },
  26441. {
  26442. name: "Wolxi Scale",
  26443. height: math.unit(34.1, "meters"),
  26444. default: true
  26445. },
  26446. ]
  26447. ))
  26448. characterMakers.push(() => makeCharacter(
  26449. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26450. {
  26451. front: {
  26452. height: math.unit(1.83, "meters"),
  26453. weight: math.unit(135, "lb"),
  26454. name: "Front",
  26455. image: {
  26456. source: "./media/characters/dejma-the-red/front.svg",
  26457. extra: 480 / 458,
  26458. bottom: 1.8 / 482
  26459. }
  26460. },
  26461. },
  26462. [
  26463. {
  26464. name: "Shrunken",
  26465. height: math.unit(8.3, "cm")
  26466. },
  26467. {
  26468. name: "Human Scale",
  26469. height: math.unit(1.83, "meters")
  26470. },
  26471. {
  26472. name: "Wolxi Scale",
  26473. height: math.unit(40, "meters"),
  26474. default: true
  26475. },
  26476. ]
  26477. ))
  26478. characterMakers.push(() => makeCharacter(
  26479. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26480. {
  26481. front: {
  26482. height: math.unit(1.78, "meters"),
  26483. weight: math.unit(65, "kg"),
  26484. name: "Front",
  26485. image: {
  26486. source: "./media/characters/aki/front.svg",
  26487. extra: 452 / 415
  26488. }
  26489. },
  26490. frontNsfw: {
  26491. height: math.unit(1.78, "meters"),
  26492. weight: math.unit(65, "kg"),
  26493. name: "Front (NSFW)",
  26494. image: {
  26495. source: "./media/characters/aki/front-nsfw.svg",
  26496. extra: 452 / 415
  26497. }
  26498. },
  26499. back: {
  26500. height: math.unit(1.78, "meters"),
  26501. weight: math.unit(65, "kg"),
  26502. name: "Back",
  26503. image: {
  26504. source: "./media/characters/aki/back.svg",
  26505. extra: 452 / 415
  26506. }
  26507. },
  26508. rump: {
  26509. height: math.unit(2.05, "feet"),
  26510. name: "Rump",
  26511. image: {
  26512. source: "./media/characters/aki/rump.svg"
  26513. }
  26514. },
  26515. dick: {
  26516. height: math.unit(0.95, "feet"),
  26517. name: "Dick",
  26518. image: {
  26519. source: "./media/characters/aki/dick.svg"
  26520. }
  26521. },
  26522. },
  26523. [
  26524. {
  26525. name: "Micro",
  26526. height: math.unit(15, "cm")
  26527. },
  26528. {
  26529. name: "Normal",
  26530. height: math.unit(178, "cm"),
  26531. default: true
  26532. },
  26533. {
  26534. name: "Macro",
  26535. height: math.unit(214, "m")
  26536. },
  26537. {
  26538. name: "Macro+",
  26539. height: math.unit(534, "m")
  26540. },
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26545. {
  26546. front: {
  26547. height: math.unit(5 + 5 / 12, "feet"),
  26548. weight: math.unit(120, "lb"),
  26549. name: "Front",
  26550. image: {
  26551. source: "./media/characters/ari/front.svg",
  26552. extra: 1550/1471,
  26553. bottom: 39/1589
  26554. }
  26555. },
  26556. },
  26557. [
  26558. {
  26559. name: "Normal",
  26560. height: math.unit(5 + 5 / 12, "feet")
  26561. },
  26562. {
  26563. name: "Macro",
  26564. height: math.unit(100, "feet"),
  26565. default: true
  26566. },
  26567. {
  26568. name: "Megamacro",
  26569. height: math.unit(100, "miles")
  26570. },
  26571. {
  26572. name: "Gigamacro",
  26573. height: math.unit(80000, "miles")
  26574. },
  26575. ]
  26576. ))
  26577. characterMakers.push(() => makeCharacter(
  26578. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26579. {
  26580. side: {
  26581. height: math.unit(9, "feet"),
  26582. weight: math.unit(400, "kg"),
  26583. name: "Side",
  26584. image: {
  26585. source: "./media/characters/bolt/side.svg",
  26586. extra: 1126 / 896,
  26587. bottom: 60 / 1187.3,
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Micro",
  26594. height: math.unit(5, "inches")
  26595. },
  26596. {
  26597. name: "Normal",
  26598. height: math.unit(9, "feet"),
  26599. default: true
  26600. },
  26601. {
  26602. name: "Macro",
  26603. height: math.unit(700, "feet")
  26604. },
  26605. {
  26606. name: "Max Size",
  26607. height: math.unit(1.52e22, "yottameters")
  26608. },
  26609. ]
  26610. ))
  26611. characterMakers.push(() => makeCharacter(
  26612. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26613. {
  26614. front: {
  26615. height: math.unit(4.3, "meters"),
  26616. weight: math.unit(3, "tons"),
  26617. name: "Front",
  26618. image: {
  26619. source: "./media/characters/draekon-sylviar/front.svg",
  26620. extra: 2072/1512,
  26621. bottom: 74/2146
  26622. }
  26623. },
  26624. back: {
  26625. height: math.unit(4.3, "meters"),
  26626. weight: math.unit(3, "tons"),
  26627. name: "Back",
  26628. image: {
  26629. source: "./media/characters/draekon-sylviar/back.svg",
  26630. extra: 1639/1483,
  26631. bottom: 41/1680
  26632. }
  26633. },
  26634. feral: {
  26635. height: math.unit(1.15, "meters"),
  26636. weight: math.unit(3, "tons"),
  26637. name: "Feral",
  26638. image: {
  26639. source: "./media/characters/draekon-sylviar/feral.svg",
  26640. extra: 1033/395,
  26641. bottom: 130/1163
  26642. }
  26643. },
  26644. maw: {
  26645. height: math.unit(1.3, "meters"),
  26646. name: "Maw",
  26647. image: {
  26648. source: "./media/characters/draekon-sylviar/maw.svg"
  26649. }
  26650. },
  26651. mawSeparated: {
  26652. height: math.unit(1.53, "meters"),
  26653. name: "Separated Maw",
  26654. image: {
  26655. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26656. }
  26657. },
  26658. tail: {
  26659. height: math.unit(1.15, "meters"),
  26660. name: "Tail",
  26661. image: {
  26662. source: "./media/characters/draekon-sylviar/tail.svg"
  26663. }
  26664. },
  26665. tailDick: {
  26666. height: math.unit(1.15, "meters"),
  26667. name: "Tail (Dick)",
  26668. image: {
  26669. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26670. }
  26671. },
  26672. tailDickSeparated: {
  26673. height: math.unit(1.19, "meters"),
  26674. name: "Tail (Separated Dick)",
  26675. image: {
  26676. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26677. }
  26678. },
  26679. slit: {
  26680. height: math.unit(1, "meters"),
  26681. name: "Slit",
  26682. image: {
  26683. source: "./media/characters/draekon-sylviar/slit.svg"
  26684. }
  26685. },
  26686. dick: {
  26687. height: math.unit(1.15, "meters"),
  26688. name: "Dick",
  26689. image: {
  26690. source: "./media/characters/draekon-sylviar/dick.svg"
  26691. }
  26692. },
  26693. dickSeparated: {
  26694. height: math.unit(1.1, "meters"),
  26695. name: "Separated Dick",
  26696. image: {
  26697. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26698. }
  26699. },
  26700. sheath: {
  26701. height: math.unit(1.15, "meters"),
  26702. name: "Sheath",
  26703. image: {
  26704. source: "./media/characters/draekon-sylviar/sheath.svg"
  26705. }
  26706. },
  26707. },
  26708. [
  26709. {
  26710. name: "Small",
  26711. height: math.unit(4.53 / 2, "meters"),
  26712. default: true
  26713. },
  26714. {
  26715. name: "Normal",
  26716. height: math.unit(4.53, "meters"),
  26717. default: true
  26718. },
  26719. {
  26720. name: "Large",
  26721. height: math.unit(4.53 * 2, "meters"),
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26727. {
  26728. front: {
  26729. height: math.unit(6 + 2 / 12, "feet"),
  26730. weight: math.unit(180, "lb"),
  26731. name: "Front",
  26732. image: {
  26733. source: "./media/characters/brawler/front.svg",
  26734. extra: 3301 / 3027,
  26735. bottom: 138 / 3439
  26736. }
  26737. },
  26738. },
  26739. [
  26740. {
  26741. name: "Normal",
  26742. height: math.unit(6 + 2 / 12, "feet"),
  26743. default: true
  26744. },
  26745. ]
  26746. ))
  26747. characterMakers.push(() => makeCharacter(
  26748. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26749. {
  26750. front: {
  26751. height: math.unit(11, "feet"),
  26752. weight: math.unit(1000, "lb"),
  26753. name: "Front",
  26754. image: {
  26755. source: "./media/characters/alex/front.svg",
  26756. bottom: 44.5 / 620
  26757. }
  26758. },
  26759. },
  26760. [
  26761. {
  26762. name: "Micro",
  26763. height: math.unit(5, "inches")
  26764. },
  26765. {
  26766. name: "Normal",
  26767. height: math.unit(11, "feet"),
  26768. default: true
  26769. },
  26770. {
  26771. name: "Macro",
  26772. height: math.unit(9.5e9, "feet")
  26773. },
  26774. {
  26775. name: "Max Size",
  26776. height: math.unit(1.4e283, "yottameters")
  26777. },
  26778. ]
  26779. ))
  26780. characterMakers.push(() => makeCharacter(
  26781. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26782. {
  26783. female: {
  26784. height: math.unit(29.9, "m"),
  26785. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26786. name: "Female",
  26787. image: {
  26788. source: "./media/characters/zenari/female.svg",
  26789. extra: 3281.6 / 3217,
  26790. bottom: 72.2 / 3353
  26791. }
  26792. },
  26793. male: {
  26794. height: math.unit(27.7, "m"),
  26795. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26796. name: "Male",
  26797. image: {
  26798. source: "./media/characters/zenari/male.svg",
  26799. extra: 3008 / 2991,
  26800. bottom: 54.6 / 3069
  26801. }
  26802. },
  26803. },
  26804. [
  26805. {
  26806. name: "Macro",
  26807. height: math.unit(29.7, "meters"),
  26808. default: true
  26809. },
  26810. ]
  26811. ))
  26812. characterMakers.push(() => makeCharacter(
  26813. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26814. {
  26815. female: {
  26816. height: math.unit(23.8, "m"),
  26817. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26818. name: "Female",
  26819. image: {
  26820. source: "./media/characters/mactarian/female.svg",
  26821. extra: 2662 / 2569,
  26822. bottom: 73 / 2736
  26823. }
  26824. },
  26825. male: {
  26826. height: math.unit(23.8, "m"),
  26827. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26828. name: "Male",
  26829. image: {
  26830. source: "./media/characters/mactarian/male.svg",
  26831. extra: 2673 / 2600,
  26832. bottom: 76 / 2750
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Macro",
  26839. height: math.unit(23.8, "meters"),
  26840. default: true
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26846. {
  26847. female: {
  26848. height: math.unit(19.3, "m"),
  26849. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26850. name: "Female",
  26851. image: {
  26852. source: "./media/characters/umok/female.svg",
  26853. extra: 2186 / 2078,
  26854. bottom: 87 / 2277
  26855. }
  26856. },
  26857. male: {
  26858. height: math.unit(19.5, "m"),
  26859. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26860. name: "Male",
  26861. image: {
  26862. source: "./media/characters/umok/male.svg",
  26863. extra: 2233 / 2140,
  26864. bottom: 24.4 / 2258
  26865. }
  26866. },
  26867. },
  26868. [
  26869. {
  26870. name: "Macro",
  26871. height: math.unit(19.3, "meters"),
  26872. default: true
  26873. },
  26874. ]
  26875. ))
  26876. characterMakers.push(() => makeCharacter(
  26877. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26878. {
  26879. female: {
  26880. height: math.unit(26.15, "m"),
  26881. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26882. name: "Female",
  26883. image: {
  26884. source: "./media/characters/joraxian/female.svg",
  26885. extra: 2912 / 2824,
  26886. bottom: 36 / 2956
  26887. }
  26888. },
  26889. male: {
  26890. height: math.unit(25.4, "m"),
  26891. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26892. name: "Male",
  26893. image: {
  26894. source: "./media/characters/joraxian/male.svg",
  26895. extra: 2877 / 2721,
  26896. bottom: 82 / 2967
  26897. }
  26898. },
  26899. },
  26900. [
  26901. {
  26902. name: "Macro",
  26903. height: math.unit(26.15, "meters"),
  26904. default: true
  26905. },
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26910. {
  26911. female: {
  26912. height: math.unit(21.6, "m"),
  26913. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26914. name: "Female",
  26915. image: {
  26916. source: "./media/characters/sthara/female.svg",
  26917. extra: 2516 / 2347,
  26918. bottom: 21.5 / 2537
  26919. }
  26920. },
  26921. male: {
  26922. height: math.unit(24, "m"),
  26923. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26924. name: "Male",
  26925. image: {
  26926. source: "./media/characters/sthara/male.svg",
  26927. extra: 2732 / 2607,
  26928. bottom: 23 / 2732
  26929. }
  26930. },
  26931. },
  26932. [
  26933. {
  26934. name: "Macro",
  26935. height: math.unit(21.6, "meters"),
  26936. default: true
  26937. },
  26938. ]
  26939. ))
  26940. characterMakers.push(() => makeCharacter(
  26941. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26942. {
  26943. front: {
  26944. height: math.unit(6 + 4 / 12, "feet"),
  26945. weight: math.unit(175, "lb"),
  26946. name: "Front",
  26947. image: {
  26948. source: "./media/characters/luka-bryzant/front.svg",
  26949. extra: 311 / 289,
  26950. bottom: 4 / 315
  26951. }
  26952. },
  26953. back: {
  26954. height: math.unit(6 + 4 / 12, "feet"),
  26955. weight: math.unit(175, "lb"),
  26956. name: "Back",
  26957. image: {
  26958. source: "./media/characters/luka-bryzant/back.svg",
  26959. extra: 311 / 289,
  26960. bottom: 3.8 / 313.7
  26961. }
  26962. },
  26963. },
  26964. [
  26965. {
  26966. name: "Micro",
  26967. height: math.unit(10, "inches")
  26968. },
  26969. {
  26970. name: "Normal",
  26971. height: math.unit(6 + 4 / 12, "feet"),
  26972. default: true
  26973. },
  26974. {
  26975. name: "Large",
  26976. height: math.unit(12, "feet")
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26982. {
  26983. front: {
  26984. height: math.unit(5 + 7 / 12, "feet"),
  26985. weight: math.unit(185, "lb"),
  26986. name: "Front",
  26987. image: {
  26988. source: "./media/characters/aman-aquila/front.svg",
  26989. extra: 1013 / 976,
  26990. bottom: 45.6 / 1057
  26991. }
  26992. },
  26993. side: {
  26994. height: math.unit(5 + 7 / 12, "feet"),
  26995. weight: math.unit(185, "lb"),
  26996. name: "Side",
  26997. image: {
  26998. source: "./media/characters/aman-aquila/side.svg",
  26999. extra: 1054 / 1011,
  27000. bottom: 15 / 1070
  27001. }
  27002. },
  27003. back: {
  27004. height: math.unit(5 + 7 / 12, "feet"),
  27005. weight: math.unit(185, "lb"),
  27006. name: "Back",
  27007. image: {
  27008. source: "./media/characters/aman-aquila/back.svg",
  27009. extra: 1026 / 970,
  27010. bottom: 12 / 1039
  27011. }
  27012. },
  27013. head: {
  27014. height: math.unit(1.211, "feet"),
  27015. name: "Head",
  27016. image: {
  27017. source: "./media/characters/aman-aquila/head.svg",
  27018. }
  27019. },
  27020. },
  27021. [
  27022. {
  27023. name: "Minimicro",
  27024. height: math.unit(0.057, "inches")
  27025. },
  27026. {
  27027. name: "Micro",
  27028. height: math.unit(7, "inches")
  27029. },
  27030. {
  27031. name: "Mini",
  27032. height: math.unit(3 + 7 / 12, "feet")
  27033. },
  27034. {
  27035. name: "Normal",
  27036. height: math.unit(5 + 7 / 12, "feet"),
  27037. default: true
  27038. },
  27039. {
  27040. name: "Macro",
  27041. height: math.unit(157 + 7 / 12, "feet")
  27042. },
  27043. {
  27044. name: "Megamacro",
  27045. height: math.unit(1557 + 7 / 12, "feet")
  27046. },
  27047. {
  27048. name: "Gigamacro",
  27049. height: math.unit(15557 + 7 / 12, "feet")
  27050. },
  27051. ]
  27052. ))
  27053. characterMakers.push(() => makeCharacter(
  27054. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27055. {
  27056. front: {
  27057. height: math.unit(3 + 2 / 12, "inches"),
  27058. weight: math.unit(0.3, "ounces"),
  27059. name: "Front",
  27060. image: {
  27061. source: "./media/characters/hiphae/front.svg",
  27062. extra: 1931 / 1683,
  27063. bottom: 24 / 1955
  27064. }
  27065. },
  27066. },
  27067. [
  27068. {
  27069. name: "Normal",
  27070. height: math.unit(3 + 1 / 2, "inches"),
  27071. default: true
  27072. },
  27073. ]
  27074. ))
  27075. characterMakers.push(() => makeCharacter(
  27076. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27077. {
  27078. front: {
  27079. height: math.unit(5 + 10 / 12, "feet"),
  27080. weight: math.unit(165, "lb"),
  27081. name: "Front",
  27082. image: {
  27083. source: "./media/characters/nicky/front.svg",
  27084. extra: 3144 / 2886,
  27085. bottom: 45.6 / 3192
  27086. }
  27087. },
  27088. back: {
  27089. height: math.unit(5 + 10 / 12, "feet"),
  27090. weight: math.unit(165, "lb"),
  27091. name: "Back",
  27092. image: {
  27093. source: "./media/characters/nicky/back.svg",
  27094. extra: 3055 / 2804,
  27095. bottom: 28.4 / 3087
  27096. }
  27097. },
  27098. frontclothed: {
  27099. height: math.unit(5 + 10 / 12, "feet"),
  27100. weight: math.unit(165, "lb"),
  27101. name: "Front-clothed",
  27102. image: {
  27103. source: "./media/characters/nicky/front-clothed.svg",
  27104. extra: 3184.9 / 2926.9,
  27105. bottom: 86.5 / 3239.9
  27106. }
  27107. },
  27108. foot: {
  27109. height: math.unit(1.16, "feet"),
  27110. name: "Foot",
  27111. image: {
  27112. source: "./media/characters/nicky/foot.svg"
  27113. }
  27114. },
  27115. feet: {
  27116. height: math.unit(1.34, "feet"),
  27117. name: "Feet",
  27118. image: {
  27119. source: "./media/characters/nicky/feet.svg"
  27120. }
  27121. },
  27122. maw: {
  27123. height: math.unit(0.9, "feet"),
  27124. name: "Maw",
  27125. image: {
  27126. source: "./media/characters/nicky/maw.svg"
  27127. }
  27128. },
  27129. },
  27130. [
  27131. {
  27132. name: "Normal",
  27133. height: math.unit(5 + 10 / 12, "feet"),
  27134. default: true
  27135. },
  27136. {
  27137. name: "Macro",
  27138. height: math.unit(60, "feet")
  27139. },
  27140. {
  27141. name: "Megamacro",
  27142. height: math.unit(1, "mile")
  27143. },
  27144. ]
  27145. ))
  27146. characterMakers.push(() => makeCharacter(
  27147. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27148. {
  27149. side: {
  27150. height: math.unit(10, "feet"),
  27151. weight: math.unit(600, "lb"),
  27152. name: "Side",
  27153. image: {
  27154. source: "./media/characters/blair/side.svg",
  27155. bottom: 16.6 / 475,
  27156. extra: 458 / 431
  27157. }
  27158. },
  27159. },
  27160. [
  27161. {
  27162. name: "Micro",
  27163. height: math.unit(8, "inches")
  27164. },
  27165. {
  27166. name: "Normal",
  27167. height: math.unit(10, "feet"),
  27168. default: true
  27169. },
  27170. {
  27171. name: "Macro",
  27172. height: math.unit(180, "feet")
  27173. },
  27174. ]
  27175. ))
  27176. characterMakers.push(() => makeCharacter(
  27177. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27178. {
  27179. front: {
  27180. height: math.unit(5 + 4 / 12, "feet"),
  27181. weight: math.unit(125, "lb"),
  27182. name: "Front",
  27183. image: {
  27184. source: "./media/characters/fisher/front.svg",
  27185. extra: 444 / 390,
  27186. bottom: 2 / 444.8
  27187. }
  27188. },
  27189. },
  27190. [
  27191. {
  27192. name: "Micro",
  27193. height: math.unit(4, "inches")
  27194. },
  27195. {
  27196. name: "Normal",
  27197. height: math.unit(5 + 4 / 12, "feet"),
  27198. default: true
  27199. },
  27200. {
  27201. name: "Macro",
  27202. height: math.unit(100, "feet")
  27203. },
  27204. ]
  27205. ))
  27206. characterMakers.push(() => makeCharacter(
  27207. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27208. {
  27209. front: {
  27210. height: math.unit(6.71, "feet"),
  27211. weight: math.unit(200, "lb"),
  27212. preyCapacity: math.unit(1000000, "people"),
  27213. name: "Front",
  27214. image: {
  27215. source: "./media/characters/gliss/front.svg",
  27216. extra: 2347 / 2231,
  27217. bottom: 113 / 2462
  27218. }
  27219. },
  27220. hammerspaceSize: {
  27221. height: math.unit(6.71 * 717, "feet"),
  27222. weight: math.unit(200, "lb"),
  27223. preyCapacity: math.unit(1000000, "people"),
  27224. name: "Hammerspace Size",
  27225. image: {
  27226. source: "./media/characters/gliss/front.svg",
  27227. extra: 2347 / 2231,
  27228. bottom: 113 / 2462
  27229. }
  27230. },
  27231. },
  27232. [
  27233. {
  27234. name: "Normal",
  27235. height: math.unit(6.71, "feet"),
  27236. default: true
  27237. },
  27238. ]
  27239. ))
  27240. characterMakers.push(() => makeCharacter(
  27241. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27242. {
  27243. side: {
  27244. height: math.unit(1.44, "m"),
  27245. weight: math.unit(80, "kg"),
  27246. name: "Side",
  27247. image: {
  27248. source: "./media/characters/dune-anderson/side.svg",
  27249. bottom: 49 / 1426
  27250. }
  27251. },
  27252. },
  27253. [
  27254. {
  27255. name: "Wolf-sized",
  27256. height: math.unit(1.44, "meters")
  27257. },
  27258. {
  27259. name: "Normal",
  27260. height: math.unit(5.05, "meters"),
  27261. default: true
  27262. },
  27263. {
  27264. name: "Big",
  27265. height: math.unit(14.4, "meters")
  27266. },
  27267. {
  27268. name: "Huge",
  27269. height: math.unit(144, "meters")
  27270. },
  27271. ]
  27272. ))
  27273. characterMakers.push(() => makeCharacter(
  27274. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27275. {
  27276. front: {
  27277. height: math.unit(7, "feet"),
  27278. weight: math.unit(425, "lb"),
  27279. name: "Front",
  27280. image: {
  27281. source: "./media/characters/hind/front.svg",
  27282. extra: 2091 / 1860,
  27283. bottom: 129 / 2220
  27284. }
  27285. },
  27286. back: {
  27287. height: math.unit(7, "feet"),
  27288. weight: math.unit(425, "lb"),
  27289. name: "Back",
  27290. image: {
  27291. source: "./media/characters/hind/back.svg",
  27292. extra: 2091 / 1860,
  27293. bottom: 24.6 / 2309
  27294. }
  27295. },
  27296. tail: {
  27297. height: math.unit(2.8, "feet"),
  27298. name: "Tail",
  27299. image: {
  27300. source: "./media/characters/hind/tail.svg"
  27301. }
  27302. },
  27303. head: {
  27304. height: math.unit(2.55, "feet"),
  27305. name: "Head",
  27306. image: {
  27307. source: "./media/characters/hind/head.svg"
  27308. }
  27309. },
  27310. },
  27311. [
  27312. {
  27313. name: "XS",
  27314. height: math.unit(0.7, "feet")
  27315. },
  27316. {
  27317. name: "Normal",
  27318. height: math.unit(7, "feet"),
  27319. default: true
  27320. },
  27321. {
  27322. name: "XL",
  27323. height: math.unit(70, "feet")
  27324. },
  27325. ]
  27326. ))
  27327. characterMakers.push(() => makeCharacter(
  27328. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27329. {
  27330. front: {
  27331. height: math.unit(2.1, "meters"),
  27332. weight: math.unit(150, "lb"),
  27333. name: "Front",
  27334. image: {
  27335. source: "./media/characters/tharquench-sizestealer/front.svg",
  27336. extra: 1605/1470,
  27337. bottom: 36/1641
  27338. }
  27339. },
  27340. frontAlt: {
  27341. height: math.unit(2.1, "meters"),
  27342. weight: math.unit(150, "lb"),
  27343. name: "Front (Alt)",
  27344. image: {
  27345. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27346. extra: 2318 / 2063,
  27347. bottom: 93.4 / 2410
  27348. }
  27349. },
  27350. },
  27351. [
  27352. {
  27353. name: "Nano",
  27354. height: math.unit(1, "mm")
  27355. },
  27356. {
  27357. name: "Micro",
  27358. height: math.unit(1, "cm")
  27359. },
  27360. {
  27361. name: "Normal",
  27362. height: math.unit(2.1, "meters"),
  27363. default: true
  27364. },
  27365. ]
  27366. ))
  27367. characterMakers.push(() => makeCharacter(
  27368. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27369. {
  27370. front: {
  27371. height: math.unit(7 + 5 / 12, "feet"),
  27372. weight: math.unit(357, "lb"),
  27373. name: "Front",
  27374. image: {
  27375. source: "./media/characters/solex-draconov/front.svg",
  27376. extra: 1993 / 1865,
  27377. bottom: 117 / 2111
  27378. }
  27379. },
  27380. },
  27381. [
  27382. {
  27383. name: "Natural Height",
  27384. height: math.unit(7 + 5 / 12, "feet"),
  27385. default: true
  27386. },
  27387. {
  27388. name: "Macro",
  27389. height: math.unit(350, "feet")
  27390. },
  27391. {
  27392. name: "Macro+",
  27393. height: math.unit(1000, "feet")
  27394. },
  27395. {
  27396. name: "Megamacro",
  27397. height: math.unit(20, "km")
  27398. },
  27399. {
  27400. name: "Megamacro+",
  27401. height: math.unit(1000, "km")
  27402. },
  27403. {
  27404. name: "Gigamacro",
  27405. height: math.unit(2.5, "Gm")
  27406. },
  27407. {
  27408. name: "Teramacro",
  27409. height: math.unit(15, "Tm")
  27410. },
  27411. {
  27412. name: "Galactic",
  27413. height: math.unit(30, "Zm")
  27414. },
  27415. {
  27416. name: "Universal",
  27417. height: math.unit(21000, "Ym")
  27418. },
  27419. {
  27420. name: "Omniversal",
  27421. height: math.unit(9.861e50, "Ym")
  27422. },
  27423. {
  27424. name: "Existential",
  27425. height: math.unit(1e300, "meters")
  27426. },
  27427. ]
  27428. ))
  27429. characterMakers.push(() => makeCharacter(
  27430. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27431. {
  27432. side: {
  27433. height: math.unit(25, "feet"),
  27434. weight: math.unit(90000, "lb"),
  27435. name: "Side",
  27436. image: {
  27437. source: "./media/characters/mandarax/side.svg",
  27438. extra: 614 / 332,
  27439. bottom: 55 / 630
  27440. }
  27441. },
  27442. lounging: {
  27443. height: math.unit(15.4, "feet"),
  27444. weight: math.unit(90000, "lb"),
  27445. name: "Lounging",
  27446. image: {
  27447. source: "./media/characters/mandarax/lounging.svg",
  27448. extra: 817/609,
  27449. bottom: 685/1502
  27450. }
  27451. },
  27452. head: {
  27453. height: math.unit(11.4, "feet"),
  27454. name: "Head",
  27455. image: {
  27456. source: "./media/characters/mandarax/head.svg"
  27457. }
  27458. },
  27459. belly: {
  27460. height: math.unit(33, "feet"),
  27461. name: "Belly",
  27462. preyCapacity: math.unit(500, "people"),
  27463. image: {
  27464. source: "./media/characters/mandarax/belly.svg"
  27465. }
  27466. },
  27467. dick: {
  27468. height: math.unit(8.46, "feet"),
  27469. name: "Dick",
  27470. image: {
  27471. source: "./media/characters/mandarax/dick.svg"
  27472. }
  27473. },
  27474. top: {
  27475. height: math.unit(28, "meters"),
  27476. name: "Top",
  27477. image: {
  27478. source: "./media/characters/mandarax/top.svg"
  27479. }
  27480. },
  27481. },
  27482. [
  27483. {
  27484. name: "Normal",
  27485. height: math.unit(25, "feet"),
  27486. default: true
  27487. },
  27488. ]
  27489. ))
  27490. characterMakers.push(() => makeCharacter(
  27491. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27492. {
  27493. front: {
  27494. height: math.unit(5, "feet"),
  27495. weight: math.unit(90, "lb"),
  27496. name: "Front",
  27497. image: {
  27498. source: "./media/characters/pixil/front.svg",
  27499. extra: 2000 / 1618,
  27500. bottom: 12.3 / 2011
  27501. }
  27502. },
  27503. },
  27504. [
  27505. {
  27506. name: "Normal",
  27507. height: math.unit(5, "feet"),
  27508. default: true
  27509. },
  27510. {
  27511. name: "Megamacro",
  27512. height: math.unit(10, "miles"),
  27513. },
  27514. ]
  27515. ))
  27516. characterMakers.push(() => makeCharacter(
  27517. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27518. {
  27519. front: {
  27520. height: math.unit(7 + 2 / 12, "feet"),
  27521. weight: math.unit(200, "lb"),
  27522. name: "Front",
  27523. image: {
  27524. source: "./media/characters/angel/front.svg",
  27525. extra: 1830 / 1737,
  27526. bottom: 22.6 / 1854,
  27527. }
  27528. },
  27529. },
  27530. [
  27531. {
  27532. name: "Normal",
  27533. height: math.unit(7 + 2 / 12, "feet"),
  27534. default: true
  27535. },
  27536. {
  27537. name: "Macro",
  27538. height: math.unit(1000, "feet")
  27539. },
  27540. {
  27541. name: "Megamacro",
  27542. height: math.unit(2, "miles")
  27543. },
  27544. {
  27545. name: "Gigamacro",
  27546. height: math.unit(20, "earths")
  27547. },
  27548. ]
  27549. ))
  27550. characterMakers.push(() => makeCharacter(
  27551. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27552. {
  27553. front: {
  27554. height: math.unit(5, "feet"),
  27555. weight: math.unit(180, "lb"),
  27556. name: "Front",
  27557. image: {
  27558. source: "./media/characters/mekana/front.svg",
  27559. extra: 1671 / 1605,
  27560. bottom: 3.5 / 1691
  27561. }
  27562. },
  27563. side: {
  27564. height: math.unit(5, "feet"),
  27565. weight: math.unit(180, "lb"),
  27566. name: "Side",
  27567. image: {
  27568. source: "./media/characters/mekana/side.svg",
  27569. extra: 1671 / 1605,
  27570. bottom: 3.5 / 1691
  27571. }
  27572. },
  27573. back: {
  27574. height: math.unit(5, "feet"),
  27575. weight: math.unit(180, "lb"),
  27576. name: "Back",
  27577. image: {
  27578. source: "./media/characters/mekana/back.svg",
  27579. extra: 1671 / 1605,
  27580. bottom: 3.5 / 1691
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Normal",
  27587. height: math.unit(5, "feet"),
  27588. default: true
  27589. },
  27590. ]
  27591. ))
  27592. characterMakers.push(() => makeCharacter(
  27593. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27594. {
  27595. front: {
  27596. height: math.unit(4 + 6 / 12, "feet"),
  27597. weight: math.unit(80, "lb"),
  27598. name: "Front",
  27599. image: {
  27600. source: "./media/characters/pixie/front.svg",
  27601. extra: 1924 / 1825,
  27602. bottom: 22.4 / 1946
  27603. }
  27604. },
  27605. },
  27606. [
  27607. {
  27608. name: "Normal",
  27609. height: math.unit(4 + 6 / 12, "feet"),
  27610. default: true
  27611. },
  27612. {
  27613. name: "Macro",
  27614. height: math.unit(40, "feet")
  27615. },
  27616. ]
  27617. ))
  27618. characterMakers.push(() => makeCharacter(
  27619. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27620. {
  27621. front: {
  27622. height: math.unit(2.1, "meters"),
  27623. weight: math.unit(200, "lb"),
  27624. name: "Front",
  27625. image: {
  27626. source: "./media/characters/the-lascivious/front.svg",
  27627. extra: 1 / 0.893,
  27628. bottom: 3.5 / 573.7
  27629. }
  27630. },
  27631. },
  27632. [
  27633. {
  27634. name: "Human Scale",
  27635. height: math.unit(2.1, "meters")
  27636. },
  27637. {
  27638. name: "Wolxi Scale",
  27639. height: math.unit(46.2, "m"),
  27640. default: true
  27641. },
  27642. {
  27643. name: "Boinker of Buildings",
  27644. height: math.unit(10, "km")
  27645. },
  27646. {
  27647. name: "Shagger of Skyscrapers",
  27648. height: math.unit(40, "km")
  27649. },
  27650. {
  27651. name: "Banger of Boroughs",
  27652. height: math.unit(4000, "km")
  27653. },
  27654. {
  27655. name: "Screwer of States",
  27656. height: math.unit(100000, "km")
  27657. },
  27658. {
  27659. name: "Pounder of Planets",
  27660. height: math.unit(2000000, "km")
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(6, "feet"),
  27669. weight: math.unit(150, "lb"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/aj/front.svg",
  27673. extra: 2039 / 1562,
  27674. bottom: 40 / 2079
  27675. }
  27676. },
  27677. },
  27678. [
  27679. {
  27680. name: "Normal",
  27681. height: math.unit(11 + 6 / 12, "feet"),
  27682. default: true
  27683. },
  27684. {
  27685. name: "Megamacro",
  27686. height: math.unit(60, "megameters")
  27687. },
  27688. ]
  27689. ))
  27690. characterMakers.push(() => makeCharacter(
  27691. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27692. {
  27693. side: {
  27694. height: math.unit(31 + 8 / 12, "feet"),
  27695. weight: math.unit(75000, "kg"),
  27696. name: "Side",
  27697. image: {
  27698. source: "./media/characters/koros/side.svg",
  27699. extra: 1442 / 1297,
  27700. bottom: 122.7 / 1562
  27701. }
  27702. },
  27703. dicksKingsCrown: {
  27704. height: math.unit(6, "feet"),
  27705. name: "Dicks (King's Crown)",
  27706. image: {
  27707. source: "./media/characters/koros/dicks-kings-crown.svg"
  27708. }
  27709. },
  27710. dicksTailSet: {
  27711. height: math.unit(3, "feet"),
  27712. name: "Dicks (Tail Set)",
  27713. image: {
  27714. source: "./media/characters/koros/dicks-tail-set.svg"
  27715. }
  27716. },
  27717. dickCumming: {
  27718. height: math.unit(7.98, "feet"),
  27719. name: "Dick (Cumming)",
  27720. image: {
  27721. source: "./media/characters/koros/dick-cumming.svg"
  27722. }
  27723. },
  27724. dicksBack: {
  27725. height: math.unit(5.9, "feet"),
  27726. name: "Dicks (Back)",
  27727. image: {
  27728. source: "./media/characters/koros/dicks-back.svg"
  27729. }
  27730. },
  27731. dicksFront: {
  27732. height: math.unit(3.72, "feet"),
  27733. name: "Dicks (Front)",
  27734. image: {
  27735. source: "./media/characters/koros/dicks-front.svg"
  27736. }
  27737. },
  27738. dicksPeeking: {
  27739. height: math.unit(3.0, "feet"),
  27740. name: "Dicks (Peeking)",
  27741. image: {
  27742. source: "./media/characters/koros/dicks-peeking.svg"
  27743. }
  27744. },
  27745. eye: {
  27746. height: math.unit(1.7, "feet"),
  27747. name: "Eye",
  27748. image: {
  27749. source: "./media/characters/koros/eye.svg"
  27750. }
  27751. },
  27752. headFront: {
  27753. height: math.unit(11.69, "feet"),
  27754. name: "Head (Front)",
  27755. image: {
  27756. source: "./media/characters/koros/head-front.svg"
  27757. }
  27758. },
  27759. headSide: {
  27760. height: math.unit(14, "feet"),
  27761. name: "Head (Side)",
  27762. image: {
  27763. source: "./media/characters/koros/head-side.svg"
  27764. }
  27765. },
  27766. leg: {
  27767. height: math.unit(17, "feet"),
  27768. name: "Leg",
  27769. image: {
  27770. source: "./media/characters/koros/leg.svg"
  27771. }
  27772. },
  27773. mawSide: {
  27774. height: math.unit(12.8, "feet"),
  27775. name: "Maw (Side)",
  27776. image: {
  27777. source: "./media/characters/koros/maw-side.svg"
  27778. }
  27779. },
  27780. mawSpitting: {
  27781. height: math.unit(17, "feet"),
  27782. name: "Maw (Spitting)",
  27783. image: {
  27784. source: "./media/characters/koros/maw-spitting.svg"
  27785. }
  27786. },
  27787. slit: {
  27788. height: math.unit(2.8, "feet"),
  27789. name: "Slit",
  27790. image: {
  27791. source: "./media/characters/koros/slit.svg"
  27792. }
  27793. },
  27794. stomach: {
  27795. height: math.unit(6.8, "feet"),
  27796. preyCapacity: math.unit(20, "people"),
  27797. name: "Stomach",
  27798. image: {
  27799. source: "./media/characters/koros/stomach.svg"
  27800. }
  27801. },
  27802. wingspanBottom: {
  27803. height: math.unit(114, "feet"),
  27804. name: "Wingspan (Bottom)",
  27805. image: {
  27806. source: "./media/characters/koros/wingspan-bottom.svg"
  27807. }
  27808. },
  27809. wingspanTop: {
  27810. height: math.unit(104, "feet"),
  27811. name: "Wingspan (Top)",
  27812. image: {
  27813. source: "./media/characters/koros/wingspan-top.svg"
  27814. }
  27815. },
  27816. },
  27817. [
  27818. {
  27819. name: "Normal",
  27820. height: math.unit(31 + 8 / 12, "feet"),
  27821. default: true
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27827. {
  27828. front: {
  27829. height: math.unit(18 + 5 / 12, "feet"),
  27830. weight: math.unit(3750, "kg"),
  27831. name: "Front",
  27832. image: {
  27833. source: "./media/characters/vexx/front.svg",
  27834. extra: 426 / 396,
  27835. bottom: 31.5 / 458
  27836. }
  27837. },
  27838. maw: {
  27839. height: math.unit(6, "feet"),
  27840. name: "Maw",
  27841. image: {
  27842. source: "./media/characters/vexx/maw.svg"
  27843. }
  27844. },
  27845. },
  27846. [
  27847. {
  27848. name: "Normal",
  27849. height: math.unit(18 + 5 / 12, "feet"),
  27850. default: true
  27851. },
  27852. ]
  27853. ))
  27854. characterMakers.push(() => makeCharacter(
  27855. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27856. {
  27857. front: {
  27858. height: math.unit(17 + 6 / 12, "feet"),
  27859. weight: math.unit(150, "lb"),
  27860. name: "Front",
  27861. image: {
  27862. source: "./media/characters/baadra/front.svg",
  27863. extra: 1694/1553,
  27864. bottom: 179/1873
  27865. }
  27866. },
  27867. frontAlt: {
  27868. height: math.unit(17 + 6 / 12, "feet"),
  27869. weight: math.unit(150, "lb"),
  27870. name: "Front (Alt)",
  27871. image: {
  27872. source: "./media/characters/baadra/front-alt.svg",
  27873. extra: 3137 / 2890,
  27874. bottom: 168.4 / 3305
  27875. }
  27876. },
  27877. back: {
  27878. height: math.unit(17 + 6 / 12, "feet"),
  27879. weight: math.unit(150, "lb"),
  27880. name: "Back",
  27881. image: {
  27882. source: "./media/characters/baadra/back.svg",
  27883. extra: 3142 / 2890,
  27884. bottom: 220 / 3371
  27885. }
  27886. },
  27887. head: {
  27888. height: math.unit(5.45, "feet"),
  27889. name: "Head",
  27890. image: {
  27891. source: "./media/characters/baadra/head.svg"
  27892. }
  27893. },
  27894. headAngry: {
  27895. height: math.unit(4.95, "feet"),
  27896. name: "Head (Angry)",
  27897. image: {
  27898. source: "./media/characters/baadra/head-angry.svg"
  27899. }
  27900. },
  27901. headOpen: {
  27902. height: math.unit(6, "feet"),
  27903. name: "Head (Open)",
  27904. image: {
  27905. source: "./media/characters/baadra/head-open.svg"
  27906. }
  27907. },
  27908. },
  27909. [
  27910. {
  27911. name: "Normal",
  27912. height: math.unit(17 + 6 / 12, "feet"),
  27913. default: true
  27914. },
  27915. ]
  27916. ))
  27917. characterMakers.push(() => makeCharacter(
  27918. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27919. {
  27920. front: {
  27921. height: math.unit(7 + 3 / 12, "feet"),
  27922. weight: math.unit(180, "lb"),
  27923. name: "Front",
  27924. image: {
  27925. source: "./media/characters/juri/front.svg",
  27926. extra: 1401 / 1237,
  27927. bottom: 18.5 / 1418
  27928. }
  27929. },
  27930. side: {
  27931. height: math.unit(7 + 3 / 12, "feet"),
  27932. weight: math.unit(180, "lb"),
  27933. name: "Side",
  27934. image: {
  27935. source: "./media/characters/juri/side.svg",
  27936. extra: 1424 / 1242,
  27937. bottom: 18.5 / 1447
  27938. }
  27939. },
  27940. sitting: {
  27941. height: math.unit(6, "feet"),
  27942. weight: math.unit(180, "lb"),
  27943. name: "Sitting",
  27944. image: {
  27945. source: "./media/characters/juri/sitting.svg",
  27946. extra: 1270 / 1143,
  27947. bottom: 100 / 1343
  27948. }
  27949. },
  27950. back: {
  27951. height: math.unit(7 + 3 / 12, "feet"),
  27952. weight: math.unit(180, "lb"),
  27953. name: "Back",
  27954. image: {
  27955. source: "./media/characters/juri/back.svg",
  27956. extra: 1377 / 1240,
  27957. bottom: 23.7 / 1405
  27958. }
  27959. },
  27960. maw: {
  27961. height: math.unit(2.8, "feet"),
  27962. name: "Maw",
  27963. image: {
  27964. source: "./media/characters/juri/maw.svg"
  27965. }
  27966. },
  27967. stomach: {
  27968. height: math.unit(0.89, "feet"),
  27969. preyCapacity: math.unit(4, "liters"),
  27970. name: "Stomach",
  27971. image: {
  27972. source: "./media/characters/juri/stomach.svg"
  27973. }
  27974. },
  27975. },
  27976. [
  27977. {
  27978. name: "Normal",
  27979. height: math.unit(7 + 3 / 12, "feet"),
  27980. default: true
  27981. },
  27982. ]
  27983. ))
  27984. characterMakers.push(() => makeCharacter(
  27985. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27986. {
  27987. fox: {
  27988. height: math.unit(5 + 6 / 12, "feet"),
  27989. weight: math.unit(140, "lb"),
  27990. name: "Fox",
  27991. image: {
  27992. source: "./media/characters/maxene-sita/fox.svg",
  27993. extra: 146 / 138,
  27994. bottom: 2.1 / 148.19
  27995. }
  27996. },
  27997. foxLaying: {
  27998. height: math.unit(1.70, "feet"),
  27999. weight: math.unit(140, "lb"),
  28000. name: "Fox (Laying)",
  28001. image: {
  28002. source: "./media/characters/maxene-sita/fox-laying.svg",
  28003. extra: 910 / 572,
  28004. bottom: 71 / 981
  28005. }
  28006. },
  28007. kitsune: {
  28008. height: math.unit(10, "feet"),
  28009. weight: math.unit(800, "lb"),
  28010. name: "Kitsune",
  28011. image: {
  28012. source: "./media/characters/maxene-sita/kitsune.svg",
  28013. extra: 185 / 176,
  28014. bottom: 4.7 / 189.9
  28015. }
  28016. },
  28017. hellhound: {
  28018. height: math.unit(10, "feet"),
  28019. weight: math.unit(700, "lb"),
  28020. name: "Hellhound",
  28021. image: {
  28022. source: "./media/characters/maxene-sita/hellhound.svg",
  28023. extra: 1600 / 1545,
  28024. bottom: 81 / 1681
  28025. }
  28026. },
  28027. },
  28028. [
  28029. {
  28030. name: "Normal",
  28031. height: math.unit(5 + 6 / 12, "feet"),
  28032. default: true
  28033. },
  28034. ]
  28035. ))
  28036. characterMakers.push(() => makeCharacter(
  28037. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28038. {
  28039. front: {
  28040. height: math.unit(3 + 4 / 12, "feet"),
  28041. weight: math.unit(70, "lb"),
  28042. name: "Front",
  28043. image: {
  28044. source: "./media/characters/maia/front.svg",
  28045. extra: 227 / 219.5,
  28046. bottom: 40 / 267
  28047. }
  28048. },
  28049. back: {
  28050. height: math.unit(3 + 4 / 12, "feet"),
  28051. weight: math.unit(70, "lb"),
  28052. name: "Back",
  28053. image: {
  28054. source: "./media/characters/maia/back.svg",
  28055. extra: 237 / 225
  28056. }
  28057. },
  28058. },
  28059. [
  28060. {
  28061. name: "Normal",
  28062. height: math.unit(3 + 4 / 12, "feet"),
  28063. default: true
  28064. },
  28065. ]
  28066. ))
  28067. characterMakers.push(() => makeCharacter(
  28068. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28069. {
  28070. front: {
  28071. height: math.unit(5 + 10 / 12, "feet"),
  28072. weight: math.unit(197, "lb"),
  28073. name: "Front",
  28074. image: {
  28075. source: "./media/characters/jabaro/front.svg",
  28076. extra: 225 / 216,
  28077. bottom: 5.06 / 230
  28078. }
  28079. },
  28080. back: {
  28081. height: math.unit(5 + 10 / 12, "feet"),
  28082. weight: math.unit(197, "lb"),
  28083. name: "Back",
  28084. image: {
  28085. source: "./media/characters/jabaro/back.svg",
  28086. extra: 225 / 219,
  28087. bottom: 1.9 / 227
  28088. }
  28089. },
  28090. },
  28091. [
  28092. {
  28093. name: "Normal",
  28094. height: math.unit(5 + 10 / 12, "feet"),
  28095. default: true
  28096. },
  28097. ]
  28098. ))
  28099. characterMakers.push(() => makeCharacter(
  28100. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28101. {
  28102. front: {
  28103. height: math.unit(5 + 8 / 12, "feet"),
  28104. weight: math.unit(139, "lb"),
  28105. name: "Front",
  28106. image: {
  28107. source: "./media/characters/risa/front.svg",
  28108. extra: 270 / 260,
  28109. bottom: 11.2 / 282
  28110. }
  28111. },
  28112. back: {
  28113. height: math.unit(5 + 8 / 12, "feet"),
  28114. weight: math.unit(139, "lb"),
  28115. name: "Back",
  28116. image: {
  28117. source: "./media/characters/risa/back.svg",
  28118. extra: 264 / 255,
  28119. bottom: 4 / 268
  28120. }
  28121. },
  28122. },
  28123. [
  28124. {
  28125. name: "Normal",
  28126. height: math.unit(5 + 8 / 12, "feet"),
  28127. default: true
  28128. },
  28129. ]
  28130. ))
  28131. characterMakers.push(() => makeCharacter(
  28132. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28133. {
  28134. front: {
  28135. height: math.unit(2 + 11 / 12, "feet"),
  28136. weight: math.unit(30, "lb"),
  28137. name: "Front",
  28138. image: {
  28139. source: "./media/characters/weatley/front.svg",
  28140. bottom: 10.7 / 414,
  28141. extra: 403.5 / 362
  28142. }
  28143. },
  28144. back: {
  28145. height: math.unit(2 + 11 / 12, "feet"),
  28146. weight: math.unit(30, "lb"),
  28147. name: "Back",
  28148. image: {
  28149. source: "./media/characters/weatley/back.svg",
  28150. bottom: 10.7 / 414,
  28151. extra: 403.5 / 362
  28152. }
  28153. },
  28154. },
  28155. [
  28156. {
  28157. name: "Normal",
  28158. height: math.unit(2 + 11 / 12, "feet"),
  28159. default: true
  28160. },
  28161. ]
  28162. ))
  28163. characterMakers.push(() => makeCharacter(
  28164. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28165. {
  28166. front: {
  28167. height: math.unit(5 + 2 / 12, "feet"),
  28168. weight: math.unit(50, "kg"),
  28169. name: "Front",
  28170. image: {
  28171. source: "./media/characters/mercury-crescent/front.svg",
  28172. extra: 1088 / 1033,
  28173. bottom: 18.9 / 1109
  28174. }
  28175. },
  28176. },
  28177. [
  28178. {
  28179. name: "Normal",
  28180. height: math.unit(5 + 2 / 12, "feet"),
  28181. default: true
  28182. },
  28183. ]
  28184. ))
  28185. characterMakers.push(() => makeCharacter(
  28186. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28187. {
  28188. front: {
  28189. height: math.unit(2, "feet"),
  28190. weight: math.unit(15, "kg"),
  28191. name: "Front",
  28192. image: {
  28193. source: "./media/characters/diamond-jones/front.svg",
  28194. extra: 727/723,
  28195. bottom: 46/773
  28196. }
  28197. },
  28198. },
  28199. [
  28200. {
  28201. name: "Normal",
  28202. height: math.unit(2, "feet"),
  28203. default: true
  28204. },
  28205. ]
  28206. ))
  28207. characterMakers.push(() => makeCharacter(
  28208. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28209. {
  28210. front: {
  28211. height: math.unit(3, "feet"),
  28212. weight: math.unit(30, "kg"),
  28213. name: "Front",
  28214. image: {
  28215. source: "./media/characters/sweet-bit/front.svg",
  28216. extra: 675 / 567,
  28217. bottom: 27.7 / 703
  28218. }
  28219. },
  28220. },
  28221. [
  28222. {
  28223. name: "Normal",
  28224. height: math.unit(3, "feet"),
  28225. default: true
  28226. },
  28227. ]
  28228. ))
  28229. characterMakers.push(() => makeCharacter(
  28230. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28231. {
  28232. side: {
  28233. height: math.unit(9.178, "feet"),
  28234. weight: math.unit(500, "lb"),
  28235. name: "Side",
  28236. image: {
  28237. source: "./media/characters/umbrazen/side.svg",
  28238. extra: 1730 / 1473,
  28239. bottom: 34.6 / 1765
  28240. }
  28241. },
  28242. },
  28243. [
  28244. {
  28245. name: "Normal",
  28246. height: math.unit(9.178, "feet"),
  28247. default: true
  28248. },
  28249. ]
  28250. ))
  28251. characterMakers.push(() => makeCharacter(
  28252. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28253. {
  28254. front: {
  28255. height: math.unit(10, "feet"),
  28256. weight: math.unit(750, "lb"),
  28257. name: "Front",
  28258. image: {
  28259. source: "./media/characters/arlist/front.svg",
  28260. extra: 961 / 778,
  28261. bottom: 6.2 / 986
  28262. }
  28263. },
  28264. },
  28265. [
  28266. {
  28267. name: "Normal",
  28268. height: math.unit(10, "feet"),
  28269. default: true
  28270. },
  28271. ]
  28272. ))
  28273. characterMakers.push(() => makeCharacter(
  28274. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28275. {
  28276. front: {
  28277. height: math.unit(5 + 1 / 12, "feet"),
  28278. weight: math.unit(110, "lb"),
  28279. name: "Front",
  28280. image: {
  28281. source: "./media/characters/aradel/front.svg",
  28282. extra: 324 / 303,
  28283. bottom: 3.6 / 329.4
  28284. }
  28285. },
  28286. },
  28287. [
  28288. {
  28289. name: "Normal",
  28290. height: math.unit(5 + 1 / 12, "feet"),
  28291. default: true
  28292. },
  28293. ]
  28294. ))
  28295. characterMakers.push(() => makeCharacter(
  28296. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28297. {
  28298. dressed: {
  28299. height: math.unit(3 + 8 / 12, "feet"),
  28300. weight: math.unit(50, "lb"),
  28301. name: "Dressed",
  28302. image: {
  28303. source: "./media/characters/serryn/dressed.svg",
  28304. extra: 1792 / 1656,
  28305. bottom: 43.5 / 1840
  28306. }
  28307. },
  28308. nude: {
  28309. height: math.unit(3 + 8 / 12, "feet"),
  28310. weight: math.unit(50, "lb"),
  28311. name: "Nude",
  28312. image: {
  28313. source: "./media/characters/serryn/nude.svg",
  28314. extra: 1792 / 1656,
  28315. bottom: 43.5 / 1840
  28316. }
  28317. },
  28318. },
  28319. [
  28320. {
  28321. name: "Normal",
  28322. height: math.unit(3 + 8 / 12, "feet"),
  28323. default: true
  28324. },
  28325. ]
  28326. ))
  28327. characterMakers.push(() => makeCharacter(
  28328. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28329. {
  28330. front: {
  28331. height: math.unit(7 + 10 / 12, "feet"),
  28332. weight: math.unit(255, "lb"),
  28333. name: "Front",
  28334. image: {
  28335. source: "./media/characters/xavier-thyme/front.svg",
  28336. extra: 3733 / 3642,
  28337. bottom: 131 / 3869
  28338. }
  28339. },
  28340. frontRaven: {
  28341. height: math.unit(7 + 10 / 12, "feet"),
  28342. weight: math.unit(255, "lb"),
  28343. name: "Front (Raven)",
  28344. image: {
  28345. source: "./media/characters/xavier-thyme/front-raven.svg",
  28346. extra: 4385 / 3642,
  28347. bottom: 131 / 4517
  28348. }
  28349. },
  28350. },
  28351. [
  28352. {
  28353. name: "Normal",
  28354. height: math.unit(7 + 10 / 12, "feet"),
  28355. default: true
  28356. },
  28357. ]
  28358. ))
  28359. characterMakers.push(() => makeCharacter(
  28360. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28361. {
  28362. front: {
  28363. height: math.unit(1.6, "m"),
  28364. weight: math.unit(50, "kg"),
  28365. name: "Front",
  28366. image: {
  28367. source: "./media/characters/kiki/front.svg",
  28368. extra: 4682 / 3610,
  28369. bottom: 115 / 4777
  28370. }
  28371. },
  28372. },
  28373. [
  28374. {
  28375. name: "Normal",
  28376. height: math.unit(1.6, "meters"),
  28377. default: true
  28378. },
  28379. ]
  28380. ))
  28381. characterMakers.push(() => makeCharacter(
  28382. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28383. {
  28384. front: {
  28385. height: math.unit(50, "m"),
  28386. weight: math.unit(500, "tonnes"),
  28387. name: "Front",
  28388. image: {
  28389. source: "./media/characters/ryoko/front.svg",
  28390. extra: 4632 / 3926,
  28391. bottom: 193 / 4823
  28392. }
  28393. },
  28394. },
  28395. [
  28396. {
  28397. name: "Normal",
  28398. height: math.unit(50, "meters"),
  28399. default: true
  28400. },
  28401. ]
  28402. ))
  28403. characterMakers.push(() => makeCharacter(
  28404. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28405. {
  28406. front: {
  28407. height: math.unit(30, "m"),
  28408. weight: math.unit(22, "tonnes"),
  28409. name: "Front",
  28410. image: {
  28411. source: "./media/characters/elio/front.svg",
  28412. extra: 4582 / 3720,
  28413. bottom: 236 / 4828
  28414. }
  28415. },
  28416. },
  28417. [
  28418. {
  28419. name: "Normal",
  28420. height: math.unit(30, "meters"),
  28421. default: true
  28422. },
  28423. ]
  28424. ))
  28425. characterMakers.push(() => makeCharacter(
  28426. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28427. {
  28428. front: {
  28429. height: math.unit(6 + 3 / 12, "feet"),
  28430. weight: math.unit(120, "lb"),
  28431. name: "Front",
  28432. image: {
  28433. source: "./media/characters/azura/front.svg",
  28434. extra: 1149 / 1135,
  28435. bottom: 45 / 1194
  28436. }
  28437. },
  28438. frontClothed: {
  28439. height: math.unit(6 + 3 / 12, "feet"),
  28440. weight: math.unit(120, "lb"),
  28441. name: "Front (Clothed)",
  28442. image: {
  28443. source: "./media/characters/azura/front-clothed.svg",
  28444. extra: 1149 / 1135,
  28445. bottom: 45 / 1194
  28446. }
  28447. },
  28448. },
  28449. [
  28450. {
  28451. name: "Normal",
  28452. height: math.unit(6 + 3 / 12, "feet"),
  28453. default: true
  28454. },
  28455. {
  28456. name: "Macro",
  28457. height: math.unit(20 + 6 / 12, "feet")
  28458. },
  28459. {
  28460. name: "Megamacro",
  28461. height: math.unit(12, "miles")
  28462. },
  28463. {
  28464. name: "Gigamacro",
  28465. height: math.unit(10000, "miles")
  28466. },
  28467. {
  28468. name: "Teramacro",
  28469. height: math.unit(900000, "miles")
  28470. },
  28471. ]
  28472. ))
  28473. characterMakers.push(() => makeCharacter(
  28474. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28475. {
  28476. front: {
  28477. height: math.unit(12, "feet"),
  28478. weight: math.unit(1, "ton"),
  28479. capacity: math.unit(660000, "gallons"),
  28480. name: "Front",
  28481. image: {
  28482. source: "./media/characters/zeus/front.svg",
  28483. extra: 5005 / 4717,
  28484. bottom: 363 / 5388
  28485. }
  28486. },
  28487. },
  28488. [
  28489. {
  28490. name: "Normal",
  28491. height: math.unit(12, "feet")
  28492. },
  28493. {
  28494. name: "Preferred Size",
  28495. height: math.unit(0.5, "miles"),
  28496. default: true
  28497. },
  28498. {
  28499. name: "Giga Horse",
  28500. height: math.unit(300, "miles")
  28501. },
  28502. {
  28503. name: "Riding Planets",
  28504. height: math.unit(30, "megameters")
  28505. },
  28506. {
  28507. name: "Cosmic Giant",
  28508. height: math.unit(3, "zettameters")
  28509. },
  28510. {
  28511. name: "Breeding God",
  28512. height: math.unit(9.92e22, "yottameters")
  28513. },
  28514. ]
  28515. ))
  28516. characterMakers.push(() => makeCharacter(
  28517. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28518. {
  28519. side: {
  28520. height: math.unit(9, "feet"),
  28521. weight: math.unit(1500, "kg"),
  28522. name: "Side",
  28523. image: {
  28524. source: "./media/characters/fang/side.svg",
  28525. extra: 924 / 866,
  28526. bottom: 47.5 / 972.3
  28527. }
  28528. },
  28529. },
  28530. [
  28531. {
  28532. name: "Normal",
  28533. height: math.unit(9, "feet"),
  28534. default: true
  28535. },
  28536. {
  28537. name: "Macro",
  28538. height: math.unit(75 + 6 / 12, "feet")
  28539. },
  28540. {
  28541. name: "Teramacro",
  28542. height: math.unit(50000, "miles")
  28543. },
  28544. ]
  28545. ))
  28546. characterMakers.push(() => makeCharacter(
  28547. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28548. {
  28549. front: {
  28550. height: math.unit(10, "feet"),
  28551. weight: math.unit(2, "tons"),
  28552. name: "Front",
  28553. image: {
  28554. source: "./media/characters/rekhit/front.svg",
  28555. extra: 2796 / 2590,
  28556. bottom: 225 / 3022
  28557. }
  28558. },
  28559. },
  28560. [
  28561. {
  28562. name: "Normal",
  28563. height: math.unit(10, "feet"),
  28564. default: true
  28565. },
  28566. {
  28567. name: "Macro",
  28568. height: math.unit(500, "feet")
  28569. },
  28570. ]
  28571. ))
  28572. characterMakers.push(() => makeCharacter(
  28573. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28574. {
  28575. front: {
  28576. height: math.unit(7 + 6.451 / 12, "feet"),
  28577. weight: math.unit(310, "lb"),
  28578. name: "Front",
  28579. image: {
  28580. source: "./media/characters/dahlia-verrick/front.svg",
  28581. extra: 1488 / 1365,
  28582. bottom: 6.2 / 1495
  28583. }
  28584. },
  28585. back: {
  28586. height: math.unit(7 + 6.451 / 12, "feet"),
  28587. weight: math.unit(310, "lb"),
  28588. name: "Back",
  28589. image: {
  28590. source: "./media/characters/dahlia-verrick/back.svg",
  28591. extra: 1472 / 1351,
  28592. bottom: 5.28 / 1477
  28593. }
  28594. },
  28595. frontBusiness: {
  28596. height: math.unit(7 + 6.451 / 12, "feet"),
  28597. weight: math.unit(200, "lb"),
  28598. name: "Front (Business)",
  28599. image: {
  28600. source: "./media/characters/dahlia-verrick/front-business.svg",
  28601. extra: 1478 / 1381,
  28602. bottom: 5.5 / 1484
  28603. }
  28604. },
  28605. frontCasual: {
  28606. height: math.unit(7 + 6.451 / 12, "feet"),
  28607. weight: math.unit(200, "lb"),
  28608. name: "Front (Casual)",
  28609. image: {
  28610. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28611. extra: 1478 / 1381,
  28612. bottom: 5.5 / 1484
  28613. }
  28614. },
  28615. },
  28616. [
  28617. {
  28618. name: "Travel-Sized",
  28619. height: math.unit(7.45, "inches")
  28620. },
  28621. {
  28622. name: "Normal",
  28623. height: math.unit(7 + 6.451 / 12, "feet"),
  28624. default: true
  28625. },
  28626. {
  28627. name: "Hitting the Town",
  28628. height: math.unit(37 + 8 / 12, "feet")
  28629. },
  28630. {
  28631. name: "Stomp in the Suburbs",
  28632. height: math.unit(964 + 9.728 / 12, "feet")
  28633. },
  28634. {
  28635. name: "Sit on the City",
  28636. height: math.unit(61747 + 10.592 / 12, "feet")
  28637. },
  28638. {
  28639. name: "Glomp the Globe",
  28640. height: math.unit(252919327 + 4.832 / 12, "feet")
  28641. },
  28642. ]
  28643. ))
  28644. characterMakers.push(() => makeCharacter(
  28645. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28646. {
  28647. front: {
  28648. height: math.unit(6 + 4 / 12, "feet"),
  28649. weight: math.unit(320, "lb"),
  28650. name: "Front",
  28651. image: {
  28652. source: "./media/characters/balina-mahigan/front.svg",
  28653. extra: 447 / 428,
  28654. bottom: 18 / 466
  28655. }
  28656. },
  28657. back: {
  28658. height: math.unit(6 + 4 / 12, "feet"),
  28659. weight: math.unit(320, "lb"),
  28660. name: "Back",
  28661. image: {
  28662. source: "./media/characters/balina-mahigan/back.svg",
  28663. extra: 445 / 428,
  28664. bottom: 4.07 / 448
  28665. }
  28666. },
  28667. arm: {
  28668. height: math.unit(1.88, "feet"),
  28669. name: "Arm",
  28670. image: {
  28671. source: "./media/characters/balina-mahigan/arm.svg"
  28672. }
  28673. },
  28674. backPort: {
  28675. height: math.unit(0.685, "feet"),
  28676. name: "Back Port",
  28677. image: {
  28678. source: "./media/characters/balina-mahigan/back-port.svg"
  28679. }
  28680. },
  28681. hoofpaw: {
  28682. height: math.unit(1.41, "feet"),
  28683. name: "Hoofpaw",
  28684. image: {
  28685. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28686. }
  28687. },
  28688. leftHandBack: {
  28689. height: math.unit(0.938, "feet"),
  28690. name: "Left Hand (Back)",
  28691. image: {
  28692. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28693. }
  28694. },
  28695. leftHandFront: {
  28696. height: math.unit(0.938, "feet"),
  28697. name: "Left Hand (Front)",
  28698. image: {
  28699. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28700. }
  28701. },
  28702. rightHandBack: {
  28703. height: math.unit(0.95, "feet"),
  28704. name: "Right Hand (Back)",
  28705. image: {
  28706. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28707. }
  28708. },
  28709. rightHandFront: {
  28710. height: math.unit(0.95, "feet"),
  28711. name: "Right Hand (Front)",
  28712. image: {
  28713. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28714. }
  28715. },
  28716. },
  28717. [
  28718. {
  28719. name: "Normal",
  28720. height: math.unit(6 + 4 / 12, "feet"),
  28721. default: true
  28722. },
  28723. ]
  28724. ))
  28725. characterMakers.push(() => makeCharacter(
  28726. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28727. {
  28728. front: {
  28729. height: math.unit(6, "feet"),
  28730. weight: math.unit(320, "lb"),
  28731. name: "Front",
  28732. image: {
  28733. source: "./media/characters/balina-mejeri/front.svg",
  28734. extra: 517 / 488,
  28735. bottom: 44.2 / 561
  28736. }
  28737. },
  28738. },
  28739. [
  28740. {
  28741. name: "Normal",
  28742. height: math.unit(6 + 4 / 12, "feet")
  28743. },
  28744. {
  28745. name: "Business",
  28746. height: math.unit(155, "feet"),
  28747. default: true
  28748. },
  28749. ]
  28750. ))
  28751. characterMakers.push(() => makeCharacter(
  28752. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28753. {
  28754. kneeling: {
  28755. height: math.unit(6 + 4 / 12, "feet"),
  28756. weight: math.unit(300 * 20, "lb"),
  28757. name: "Kneeling",
  28758. image: {
  28759. source: "./media/characters/balbarian/kneeling.svg",
  28760. extra: 922 / 862,
  28761. bottom: 42.4 / 965
  28762. }
  28763. },
  28764. },
  28765. [
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(6 + 4 / 12, "feet")
  28769. },
  28770. {
  28771. name: "Treasured",
  28772. height: math.unit(18 + 9 / 12, "feet"),
  28773. default: true
  28774. },
  28775. {
  28776. name: "Macro",
  28777. height: math.unit(900, "feet")
  28778. },
  28779. ]
  28780. ))
  28781. characterMakers.push(() => makeCharacter(
  28782. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28783. {
  28784. front: {
  28785. height: math.unit(6 + 4 / 12, "feet"),
  28786. weight: math.unit(325, "lb"),
  28787. name: "Front",
  28788. image: {
  28789. source: "./media/characters/balina-amarini/front.svg",
  28790. extra: 415 / 403,
  28791. bottom: 19 / 433.4
  28792. }
  28793. },
  28794. back: {
  28795. height: math.unit(6 + 4 / 12, "feet"),
  28796. weight: math.unit(325, "lb"),
  28797. name: "Back",
  28798. image: {
  28799. source: "./media/characters/balina-amarini/back.svg",
  28800. extra: 415 / 403,
  28801. bottom: 13.5 / 432
  28802. }
  28803. },
  28804. overdrive: {
  28805. height: math.unit(6 + 4 / 12, "feet"),
  28806. weight: math.unit(400, "lb"),
  28807. name: "Overdrive",
  28808. image: {
  28809. source: "./media/characters/balina-amarini/overdrive.svg",
  28810. extra: 269 / 259,
  28811. bottom: 12 / 282
  28812. }
  28813. },
  28814. },
  28815. [
  28816. {
  28817. name: "Boom",
  28818. height: math.unit(9 + 10 / 12, "feet"),
  28819. default: true
  28820. },
  28821. {
  28822. name: "Macro",
  28823. height: math.unit(280, "feet")
  28824. },
  28825. ]
  28826. ))
  28827. characterMakers.push(() => makeCharacter(
  28828. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28829. {
  28830. goddess: {
  28831. height: math.unit(600, "feet"),
  28832. weight: math.unit(2000000, "tons"),
  28833. name: "Goddess",
  28834. image: {
  28835. source: "./media/characters/lady-kubwa/goddess.svg",
  28836. extra: 1240.5 / 1223,
  28837. bottom: 22 / 1263
  28838. }
  28839. },
  28840. goddesser: {
  28841. height: math.unit(900, "feet"),
  28842. weight: math.unit(20000000, "lb"),
  28843. name: "Goddess-er",
  28844. image: {
  28845. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28846. extra: 899 / 888,
  28847. bottom: 12.6 / 912
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Macro",
  28854. height: math.unit(600, "feet"),
  28855. default: true
  28856. },
  28857. {
  28858. name: "Megamacro",
  28859. height: math.unit(250, "miles")
  28860. },
  28861. ]
  28862. ))
  28863. characterMakers.push(() => makeCharacter(
  28864. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28865. {
  28866. front: {
  28867. height: math.unit(7 + 7 / 12, "feet"),
  28868. weight: math.unit(250, "lb"),
  28869. name: "Front",
  28870. image: {
  28871. source: "./media/characters/tala-grovehorn/front.svg",
  28872. extra: 2636 / 2525,
  28873. bottom: 147 / 2781
  28874. }
  28875. },
  28876. back: {
  28877. height: math.unit(7 + 7 / 12, "feet"),
  28878. weight: math.unit(250, "lb"),
  28879. name: "Back",
  28880. image: {
  28881. source: "./media/characters/tala-grovehorn/back.svg",
  28882. extra: 2635 / 2539,
  28883. bottom: 100 / 2732.8
  28884. }
  28885. },
  28886. mouth: {
  28887. height: math.unit(1.15, "feet"),
  28888. name: "Mouth",
  28889. image: {
  28890. source: "./media/characters/tala-grovehorn/mouth.svg"
  28891. }
  28892. },
  28893. dick: {
  28894. height: math.unit(2.36, "feet"),
  28895. name: "Dick",
  28896. image: {
  28897. source: "./media/characters/tala-grovehorn/dick.svg"
  28898. }
  28899. },
  28900. slit: {
  28901. height: math.unit(0.61, "feet"),
  28902. name: "Slit",
  28903. image: {
  28904. source: "./media/characters/tala-grovehorn/slit.svg"
  28905. }
  28906. },
  28907. },
  28908. [
  28909. ]
  28910. ))
  28911. characterMakers.push(() => makeCharacter(
  28912. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28913. {
  28914. front: {
  28915. height: math.unit(7 + 7 / 12, "feet"),
  28916. weight: math.unit(225, "lb"),
  28917. name: "Front",
  28918. image: {
  28919. source: "./media/characters/epona/front.svg",
  28920. extra: 2445 / 2290,
  28921. bottom: 251 / 2696
  28922. }
  28923. },
  28924. back: {
  28925. height: math.unit(7 + 7 / 12, "feet"),
  28926. weight: math.unit(225, "lb"),
  28927. name: "Back",
  28928. image: {
  28929. source: "./media/characters/epona/back.svg",
  28930. extra: 2546 / 2408,
  28931. bottom: 44 / 2589
  28932. }
  28933. },
  28934. genitals: {
  28935. height: math.unit(1.5, "feet"),
  28936. name: "Genitals",
  28937. image: {
  28938. source: "./media/characters/epona/genitals.svg"
  28939. }
  28940. },
  28941. },
  28942. [
  28943. {
  28944. name: "Normal",
  28945. height: math.unit(7 + 7 / 12, "feet"),
  28946. default: true
  28947. },
  28948. ]
  28949. ))
  28950. characterMakers.push(() => makeCharacter(
  28951. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28952. {
  28953. front: {
  28954. height: math.unit(7, "feet"),
  28955. weight: math.unit(518, "lb"),
  28956. name: "Front",
  28957. image: {
  28958. source: "./media/characters/avia-bloodbourn/front.svg",
  28959. extra: 1466 / 1350,
  28960. bottom: 65 / 1527
  28961. }
  28962. },
  28963. },
  28964. [
  28965. ]
  28966. ))
  28967. characterMakers.push(() => makeCharacter(
  28968. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28969. {
  28970. front: {
  28971. height: math.unit(9.35, "feet"),
  28972. weight: math.unit(600, "lb"),
  28973. name: "Front",
  28974. image: {
  28975. source: "./media/characters/amera/front.svg",
  28976. extra: 891 / 818,
  28977. bottom: 30 / 922.7
  28978. }
  28979. },
  28980. back: {
  28981. height: math.unit(9.35, "feet"),
  28982. weight: math.unit(600, "lb"),
  28983. name: "Back",
  28984. image: {
  28985. source: "./media/characters/amera/back.svg",
  28986. extra: 876 / 824,
  28987. bottom: 6.8 / 884
  28988. }
  28989. },
  28990. dick: {
  28991. height: math.unit(2.14, "feet"),
  28992. name: "Dick",
  28993. image: {
  28994. source: "./media/characters/amera/dick.svg"
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Normal",
  29001. height: math.unit(9.35, "feet"),
  29002. default: true
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29008. {
  29009. kneeling: {
  29010. height: math.unit(3 + 4 / 12, "feet"),
  29011. weight: math.unit(90, "lb"),
  29012. name: "Kneeling",
  29013. image: {
  29014. source: "./media/characters/rosewen/kneeling.svg",
  29015. extra: 1835 / 1571,
  29016. bottom: 27.7 / 1862
  29017. }
  29018. },
  29019. },
  29020. [
  29021. {
  29022. name: "Normal",
  29023. height: math.unit(3 + 4 / 12, "feet"),
  29024. default: true
  29025. },
  29026. ]
  29027. ))
  29028. characterMakers.push(() => makeCharacter(
  29029. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29030. {
  29031. front: {
  29032. height: math.unit(5 + 10 / 12, "feet"),
  29033. weight: math.unit(200, "lb"),
  29034. name: "Front",
  29035. image: {
  29036. source: "./media/characters/sabah/front.svg",
  29037. extra: 849 / 763,
  29038. bottom: 33.9 / 881
  29039. }
  29040. },
  29041. },
  29042. [
  29043. {
  29044. name: "Normal",
  29045. height: math.unit(5 + 10 / 12, "feet"),
  29046. default: true
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29052. {
  29053. front: {
  29054. height: math.unit(3 + 5 / 12, "feet"),
  29055. weight: math.unit(40, "kg"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/purple-flame/front.svg",
  29059. extra: 1577 / 1412,
  29060. bottom: 97 / 1694
  29061. }
  29062. },
  29063. frontDressed: {
  29064. height: math.unit(3 + 5 / 12, "feet"),
  29065. weight: math.unit(40, "kg"),
  29066. name: "Front (Dressed)",
  29067. image: {
  29068. source: "./media/characters/purple-flame/front-dressed.svg",
  29069. extra: 1577 / 1412,
  29070. bottom: 97 / 1694
  29071. }
  29072. },
  29073. headphones: {
  29074. height: math.unit(0.85, "feet"),
  29075. name: "Headphones",
  29076. image: {
  29077. source: "./media/characters/purple-flame/headphones.svg"
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "Really Small",
  29084. height: math.unit(5, "cm")
  29085. },
  29086. {
  29087. name: "Micro",
  29088. height: math.unit(1 + 5 / 12, "feet")
  29089. },
  29090. {
  29091. name: "Normal",
  29092. height: math.unit(3 + 5 / 12, "feet"),
  29093. default: true
  29094. },
  29095. {
  29096. name: "Minimacro",
  29097. height: math.unit(125, "feet")
  29098. },
  29099. {
  29100. name: "Macro",
  29101. height: math.unit(0.5, "miles")
  29102. },
  29103. {
  29104. name: "Megamacro",
  29105. height: math.unit(50, "miles")
  29106. },
  29107. {
  29108. name: "Gigantic",
  29109. height: math.unit(750, "miles")
  29110. },
  29111. {
  29112. name: "Planetary",
  29113. height: math.unit(15000, "miles")
  29114. },
  29115. ]
  29116. ))
  29117. characterMakers.push(() => makeCharacter(
  29118. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29119. {
  29120. front: {
  29121. height: math.unit(14, "feet"),
  29122. weight: math.unit(959, "lb"),
  29123. name: "Front",
  29124. image: {
  29125. source: "./media/characters/arsenal/front.svg",
  29126. extra: 2357 / 2157,
  29127. bottom: 93 / 2458
  29128. }
  29129. },
  29130. },
  29131. [
  29132. {
  29133. name: "Normal",
  29134. height: math.unit(14, "feet"),
  29135. default: true
  29136. },
  29137. ]
  29138. ))
  29139. characterMakers.push(() => makeCharacter(
  29140. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29141. {
  29142. front: {
  29143. height: math.unit(6, "feet"),
  29144. weight: math.unit(150, "lb"),
  29145. name: "Front",
  29146. image: {
  29147. source: "./media/characters/adira/front.svg",
  29148. extra: 1078 / 1029,
  29149. bottom: 87 / 1166
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Micro",
  29156. height: math.unit(4, "inches"),
  29157. default: true
  29158. },
  29159. {
  29160. name: "Macro",
  29161. height: math.unit(50, "feet")
  29162. },
  29163. ]
  29164. ))
  29165. characterMakers.push(() => makeCharacter(
  29166. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29167. {
  29168. front: {
  29169. height: math.unit(16, "feet"),
  29170. weight: math.unit(1000, "lb"),
  29171. name: "Front",
  29172. image: {
  29173. source: "./media/characters/grim/front.svg",
  29174. extra: 622 / 614,
  29175. bottom: 18.1 / 642
  29176. }
  29177. },
  29178. back: {
  29179. height: math.unit(16, "feet"),
  29180. weight: math.unit(1000, "lb"),
  29181. name: "Back",
  29182. image: {
  29183. source: "./media/characters/grim/back.svg",
  29184. extra: 610.6 / 602,
  29185. bottom: 40.8 / 652
  29186. }
  29187. },
  29188. hunched: {
  29189. height: math.unit(9.75, "feet"),
  29190. weight: math.unit(1000, "lb"),
  29191. name: "Hunched",
  29192. image: {
  29193. source: "./media/characters/grim/hunched.svg",
  29194. extra: 304 / 297,
  29195. bottom: 35.4 / 394
  29196. }
  29197. },
  29198. },
  29199. [
  29200. {
  29201. name: "Normal",
  29202. height: math.unit(16, "feet"),
  29203. default: true
  29204. },
  29205. ]
  29206. ))
  29207. characterMakers.push(() => makeCharacter(
  29208. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29209. {
  29210. front: {
  29211. height: math.unit(2.3, "meters"),
  29212. weight: math.unit(300, "lb"),
  29213. name: "Front",
  29214. image: {
  29215. source: "./media/characters/sinja/front-sfw.svg",
  29216. extra: 1393 / 1294,
  29217. bottom: 70 / 1463
  29218. }
  29219. },
  29220. frontNsfw: {
  29221. height: math.unit(2.3, "meters"),
  29222. weight: math.unit(300, "lb"),
  29223. name: "Front (NSFW)",
  29224. image: {
  29225. source: "./media/characters/sinja/front-nsfw.svg",
  29226. extra: 1393 / 1294,
  29227. bottom: 70 / 1463
  29228. }
  29229. },
  29230. back: {
  29231. height: math.unit(2.3, "meters"),
  29232. weight: math.unit(300, "lb"),
  29233. name: "Back",
  29234. image: {
  29235. source: "./media/characters/sinja/back.svg",
  29236. extra: 1393 / 1294,
  29237. bottom: 70 / 1463
  29238. }
  29239. },
  29240. head: {
  29241. height: math.unit(1.771, "feet"),
  29242. name: "Head",
  29243. image: {
  29244. source: "./media/characters/sinja/head.svg"
  29245. }
  29246. },
  29247. slit: {
  29248. height: math.unit(0.8, "feet"),
  29249. name: "Slit",
  29250. image: {
  29251. source: "./media/characters/sinja/slit.svg"
  29252. }
  29253. },
  29254. },
  29255. [
  29256. {
  29257. name: "Normal",
  29258. height: math.unit(2.3, "meters")
  29259. },
  29260. {
  29261. name: "Macro",
  29262. height: math.unit(91, "meters"),
  29263. default: true
  29264. },
  29265. {
  29266. name: "Megamacro",
  29267. height: math.unit(91440, "meters")
  29268. },
  29269. {
  29270. name: "Gigamacro",
  29271. height: math.unit(60960000, "meters")
  29272. },
  29273. {
  29274. name: "Teramacro",
  29275. height: math.unit(9144000000, "meters")
  29276. },
  29277. ]
  29278. ))
  29279. characterMakers.push(() => makeCharacter(
  29280. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29281. {
  29282. front: {
  29283. height: math.unit(1.7, "meters"),
  29284. weight: math.unit(130, "lb"),
  29285. name: "Front",
  29286. image: {
  29287. source: "./media/characters/kyu/front.svg",
  29288. extra: 415 / 395,
  29289. bottom: 5 / 420
  29290. }
  29291. },
  29292. head: {
  29293. height: math.unit(1.75, "feet"),
  29294. name: "Head",
  29295. image: {
  29296. source: "./media/characters/kyu/head.svg"
  29297. }
  29298. },
  29299. foot: {
  29300. height: math.unit(0.81, "feet"),
  29301. name: "Foot",
  29302. image: {
  29303. source: "./media/characters/kyu/foot.svg"
  29304. }
  29305. },
  29306. },
  29307. [
  29308. {
  29309. name: "Normal",
  29310. height: math.unit(1.7, "meters")
  29311. },
  29312. {
  29313. name: "Macro",
  29314. height: math.unit(131, "feet"),
  29315. default: true
  29316. },
  29317. {
  29318. name: "Megamacro",
  29319. height: math.unit(91440, "meters")
  29320. },
  29321. {
  29322. name: "Gigamacro",
  29323. height: math.unit(60960000, "meters")
  29324. },
  29325. {
  29326. name: "Teramacro",
  29327. height: math.unit(9144000000, "meters")
  29328. },
  29329. ]
  29330. ))
  29331. characterMakers.push(() => makeCharacter(
  29332. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29333. {
  29334. front: {
  29335. height: math.unit(7 + 1 / 12, "feet"),
  29336. weight: math.unit(250, "lb"),
  29337. name: "Front",
  29338. image: {
  29339. source: "./media/characters/joey/front.svg",
  29340. extra: 1791 / 1537,
  29341. bottom: 28 / 1816
  29342. }
  29343. },
  29344. },
  29345. [
  29346. {
  29347. name: "Micro",
  29348. height: math.unit(3, "inches")
  29349. },
  29350. {
  29351. name: "Normal",
  29352. height: math.unit(7 + 1 / 12, "feet"),
  29353. default: true
  29354. },
  29355. ]
  29356. ))
  29357. characterMakers.push(() => makeCharacter(
  29358. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29359. {
  29360. front: {
  29361. height: math.unit(165, "cm"),
  29362. weight: math.unit(140, "lb"),
  29363. name: "Front",
  29364. image: {
  29365. source: "./media/characters/sam-evans/front.svg",
  29366. extra: 3417 / 3230,
  29367. bottom: 41.3 / 3417
  29368. }
  29369. },
  29370. frontSixTails: {
  29371. height: math.unit(165, "cm"),
  29372. weight: math.unit(140, "lb"),
  29373. name: "Front-six-tails",
  29374. image: {
  29375. source: "./media/characters/sam-evans/front-six-tails.svg",
  29376. extra: 3417 / 3230,
  29377. bottom: 41.3 / 3417
  29378. }
  29379. },
  29380. back: {
  29381. height: math.unit(165, "cm"),
  29382. weight: math.unit(140, "lb"),
  29383. name: "Back",
  29384. image: {
  29385. source: "./media/characters/sam-evans/back.svg",
  29386. extra: 3227 / 3032,
  29387. bottom: 6.8 / 3234
  29388. }
  29389. },
  29390. face: {
  29391. height: math.unit(0.68, "feet"),
  29392. name: "Face",
  29393. image: {
  29394. source: "./media/characters/sam-evans/face.svg"
  29395. }
  29396. },
  29397. },
  29398. [
  29399. {
  29400. name: "Normal",
  29401. height: math.unit(165, "cm"),
  29402. default: true
  29403. },
  29404. {
  29405. name: "Macro",
  29406. height: math.unit(100, "meters")
  29407. },
  29408. {
  29409. name: "Macro+",
  29410. height: math.unit(800, "meters")
  29411. },
  29412. {
  29413. name: "Macro++",
  29414. height: math.unit(3, "km")
  29415. },
  29416. {
  29417. name: "Macro+++",
  29418. height: math.unit(30, "km")
  29419. },
  29420. ]
  29421. ))
  29422. characterMakers.push(() => makeCharacter(
  29423. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29424. {
  29425. front: {
  29426. height: math.unit(10, "feet"),
  29427. weight: math.unit(750, "lb"),
  29428. name: "Front",
  29429. image: {
  29430. source: "./media/characters/juliet-a/front.svg",
  29431. extra: 1766 / 1720,
  29432. bottom: 43 / 1809
  29433. }
  29434. },
  29435. back: {
  29436. height: math.unit(10, "feet"),
  29437. weight: math.unit(750, "lb"),
  29438. name: "Back",
  29439. image: {
  29440. source: "./media/characters/juliet-a/back.svg",
  29441. extra: 1781 / 1734,
  29442. bottom: 35 / 1810,
  29443. }
  29444. },
  29445. },
  29446. [
  29447. {
  29448. name: "Normal",
  29449. height: math.unit(10, "feet"),
  29450. default: true
  29451. },
  29452. {
  29453. name: "Dragon Form",
  29454. height: math.unit(250, "feet")
  29455. },
  29456. {
  29457. name: "Macro",
  29458. height: math.unit(1000, "feet")
  29459. },
  29460. {
  29461. name: "Megamacro",
  29462. height: math.unit(10000, "feet")
  29463. }
  29464. ]
  29465. ))
  29466. characterMakers.push(() => makeCharacter(
  29467. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29468. {
  29469. regular: {
  29470. height: math.unit(7 + 3 / 12, "feet"),
  29471. weight: math.unit(260, "lb"),
  29472. name: "Regular",
  29473. image: {
  29474. source: "./media/characters/wild/regular.svg",
  29475. extra: 97.45 / 92,
  29476. bottom: 6.8 / 104.3
  29477. }
  29478. },
  29479. biggums: {
  29480. height: math.unit(8 + 6 / 12, "feet"),
  29481. weight: math.unit(425, "lb"),
  29482. name: "Biggums",
  29483. image: {
  29484. source: "./media/characters/wild/biggums.svg",
  29485. extra: 97.45 / 92,
  29486. bottom: 7.5 / 132.34
  29487. }
  29488. },
  29489. mawRegular: {
  29490. height: math.unit(1.24, "feet"),
  29491. name: "Maw (Regular)",
  29492. image: {
  29493. source: "./media/characters/wild/maw.svg"
  29494. }
  29495. },
  29496. mawBiggums: {
  29497. height: math.unit(1.47, "feet"),
  29498. name: "Maw (Biggums)",
  29499. image: {
  29500. source: "./media/characters/wild/maw.svg"
  29501. }
  29502. },
  29503. },
  29504. [
  29505. {
  29506. name: "Normal",
  29507. height: math.unit(7 + 3 / 12, "feet"),
  29508. default: true
  29509. },
  29510. ]
  29511. ))
  29512. characterMakers.push(() => makeCharacter(
  29513. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29514. {
  29515. front: {
  29516. height: math.unit(2.5, "meters"),
  29517. weight: math.unit(200, "kg"),
  29518. name: "Front",
  29519. image: {
  29520. source: "./media/characters/vidar/front.svg",
  29521. extra: 2994 / 2795,
  29522. bottom: 56 / 3061
  29523. }
  29524. },
  29525. back: {
  29526. height: math.unit(2.5, "meters"),
  29527. weight: math.unit(200, "kg"),
  29528. name: "Back",
  29529. image: {
  29530. source: "./media/characters/vidar/back.svg",
  29531. extra: 3131 / 2928,
  29532. bottom: 13.5 / 3141.5
  29533. }
  29534. },
  29535. feral: {
  29536. height: math.unit(2.5, "meters"),
  29537. weight: math.unit(2000, "kg"),
  29538. name: "Feral",
  29539. image: {
  29540. source: "./media/characters/vidar/feral.svg",
  29541. extra: 2790 / 1765,
  29542. bottom: 6 / 2796
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Normal",
  29549. height: math.unit(2.5, "meters"),
  29550. default: true
  29551. },
  29552. {
  29553. name: "Macro",
  29554. height: math.unit(100, "meters")
  29555. },
  29556. ]
  29557. ))
  29558. characterMakers.push(() => makeCharacter(
  29559. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29560. {
  29561. front: {
  29562. height: math.unit(5 + 9 / 12, "feet"),
  29563. weight: math.unit(120, "lb"),
  29564. name: "Front",
  29565. image: {
  29566. source: "./media/characters/ash/front.svg",
  29567. extra: 2189 / 1961,
  29568. bottom: 5.2 / 2194
  29569. }
  29570. },
  29571. },
  29572. [
  29573. {
  29574. name: "Normal",
  29575. height: math.unit(5 + 9 / 12, "feet"),
  29576. default: true
  29577. },
  29578. ]
  29579. ))
  29580. characterMakers.push(() => makeCharacter(
  29581. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29582. {
  29583. front: {
  29584. height: math.unit(9, "feet"),
  29585. weight: math.unit(10000, "lb"),
  29586. name: "Front",
  29587. image: {
  29588. source: "./media/characters/gygabite/front.svg",
  29589. bottom: 31.7 / 537.8,
  29590. extra: 505 / 370
  29591. }
  29592. },
  29593. },
  29594. [
  29595. {
  29596. name: "Normal",
  29597. height: math.unit(9, "feet"),
  29598. default: true
  29599. },
  29600. ]
  29601. ))
  29602. characterMakers.push(() => makeCharacter(
  29603. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29604. {
  29605. front: {
  29606. height: math.unit(12, "feet"),
  29607. weight: math.unit(4000, "lb"),
  29608. name: "Front",
  29609. image: {
  29610. source: "./media/characters/p0tat0/front.svg",
  29611. extra: 1065 / 921,
  29612. bottom: 55.7 / 1121.25
  29613. }
  29614. },
  29615. },
  29616. [
  29617. {
  29618. name: "Normal",
  29619. height: math.unit(12, "feet"),
  29620. default: true
  29621. },
  29622. ]
  29623. ))
  29624. characterMakers.push(() => makeCharacter(
  29625. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29626. {
  29627. side: {
  29628. height: math.unit(6.5, "feet"),
  29629. weight: math.unit(800, "lb"),
  29630. name: "Side",
  29631. image: {
  29632. source: "./media/characters/dusk/side.svg",
  29633. extra: 615 / 373,
  29634. bottom: 53 / 664
  29635. }
  29636. },
  29637. sitting: {
  29638. height: math.unit(7, "feet"),
  29639. weight: math.unit(800, "lb"),
  29640. name: "Sitting",
  29641. image: {
  29642. source: "./media/characters/dusk/sitting.svg",
  29643. extra: 753 / 425,
  29644. bottom: 33 / 774
  29645. }
  29646. },
  29647. head: {
  29648. height: math.unit(6.1, "feet"),
  29649. name: "Head",
  29650. image: {
  29651. source: "./media/characters/dusk/head.svg"
  29652. }
  29653. },
  29654. },
  29655. [
  29656. {
  29657. name: "Normal",
  29658. height: math.unit(7, "feet"),
  29659. default: true
  29660. },
  29661. ]
  29662. ))
  29663. characterMakers.push(() => makeCharacter(
  29664. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29665. {
  29666. front: {
  29667. height: math.unit(15, "feet"),
  29668. weight: math.unit(7000, "lb"),
  29669. name: "Front",
  29670. image: {
  29671. source: "./media/characters/jay-direwolf/front.svg",
  29672. extra: 1810 / 1732,
  29673. bottom: 66 / 1892
  29674. }
  29675. },
  29676. },
  29677. [
  29678. {
  29679. name: "Normal",
  29680. height: math.unit(15, "feet"),
  29681. default: true
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29687. {
  29688. front: {
  29689. height: math.unit(4 + 9 / 12, "feet"),
  29690. weight: math.unit(130, "lb"),
  29691. name: "Front",
  29692. image: {
  29693. source: "./media/characters/anchovie/front.svg",
  29694. extra: 382 / 350,
  29695. bottom: 25 / 409
  29696. }
  29697. },
  29698. back: {
  29699. height: math.unit(4 + 9 / 12, "feet"),
  29700. weight: math.unit(130, "lb"),
  29701. name: "Back",
  29702. image: {
  29703. source: "./media/characters/anchovie/back.svg",
  29704. extra: 385 / 352,
  29705. bottom: 16.6 / 402
  29706. }
  29707. },
  29708. frontDressed: {
  29709. height: math.unit(4 + 9 / 12, "feet"),
  29710. weight: math.unit(130, "lb"),
  29711. name: "Front (Dressed)",
  29712. image: {
  29713. source: "./media/characters/anchovie/front-dressed.svg",
  29714. extra: 382 / 350,
  29715. bottom: 25 / 409
  29716. }
  29717. },
  29718. backDressed: {
  29719. height: math.unit(4 + 9 / 12, "feet"),
  29720. weight: math.unit(130, "lb"),
  29721. name: "Back (Dressed)",
  29722. image: {
  29723. source: "./media/characters/anchovie/back-dressed.svg",
  29724. extra: 385 / 352,
  29725. bottom: 16.6 / 402
  29726. }
  29727. },
  29728. },
  29729. [
  29730. {
  29731. name: "Micro",
  29732. height: math.unit(6.4, "inches")
  29733. },
  29734. {
  29735. name: "Normal",
  29736. height: math.unit(4 + 9 / 12, "feet"),
  29737. default: true
  29738. },
  29739. ]
  29740. ))
  29741. characterMakers.push(() => makeCharacter(
  29742. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29743. {
  29744. front: {
  29745. height: math.unit(2, "meters"),
  29746. weight: math.unit(180, "lb"),
  29747. name: "Front",
  29748. image: {
  29749. source: "./media/characters/acidrenamon/front.svg",
  29750. extra: 987 / 890,
  29751. bottom: 22.8 / 1009
  29752. }
  29753. },
  29754. back: {
  29755. height: math.unit(2, "meters"),
  29756. weight: math.unit(180, "lb"),
  29757. name: "Back",
  29758. image: {
  29759. source: "./media/characters/acidrenamon/back.svg",
  29760. extra: 983 / 891,
  29761. bottom: 8.4 / 992
  29762. }
  29763. },
  29764. head: {
  29765. height: math.unit(1.92, "feet"),
  29766. name: "Head",
  29767. image: {
  29768. source: "./media/characters/acidrenamon/head.svg"
  29769. }
  29770. },
  29771. rump: {
  29772. height: math.unit(1.72, "feet"),
  29773. name: "Rump",
  29774. image: {
  29775. source: "./media/characters/acidrenamon/rump.svg"
  29776. }
  29777. },
  29778. tail: {
  29779. height: math.unit(4.2, "feet"),
  29780. name: "Tail",
  29781. image: {
  29782. source: "./media/characters/acidrenamon/tail.svg"
  29783. }
  29784. },
  29785. },
  29786. [
  29787. {
  29788. name: "Normal",
  29789. height: math.unit(2, "meters"),
  29790. default: true
  29791. },
  29792. {
  29793. name: "Minimacro",
  29794. height: math.unit(7, "meters")
  29795. },
  29796. {
  29797. name: "Macro",
  29798. height: math.unit(200, "meters")
  29799. },
  29800. {
  29801. name: "Gigamacro",
  29802. height: math.unit(0.2, "earths")
  29803. },
  29804. ]
  29805. ))
  29806. characterMakers.push(() => makeCharacter(
  29807. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29808. {
  29809. front: {
  29810. height: math.unit(152, "feet"),
  29811. name: "Front",
  29812. image: {
  29813. source: "./media/characters/kenzie-lee/front.svg",
  29814. extra: 1869/1774,
  29815. bottom: 128/1997
  29816. }
  29817. },
  29818. side: {
  29819. height: math.unit(86, "feet"),
  29820. name: "Side",
  29821. image: {
  29822. source: "./media/characters/kenzie-lee/side.svg",
  29823. extra: 930/815,
  29824. bottom: 177/1107
  29825. }
  29826. },
  29827. paw: {
  29828. height: math.unit(15, "feet"),
  29829. name: "Paw",
  29830. image: {
  29831. source: "./media/characters/kenzie-lee/paw.svg"
  29832. }
  29833. },
  29834. },
  29835. [
  29836. {
  29837. name: "Kenzie Flea",
  29838. height: math.unit(2, "mm"),
  29839. default: true
  29840. },
  29841. {
  29842. name: "Micro",
  29843. height: math.unit(2, "inches")
  29844. },
  29845. {
  29846. name: "Normal",
  29847. height: math.unit(152, "feet")
  29848. },
  29849. {
  29850. name: "Megamacro",
  29851. height: math.unit(7, "miles")
  29852. },
  29853. {
  29854. name: "Gigamacro",
  29855. height: math.unit(8000, "miles")
  29856. },
  29857. ]
  29858. ))
  29859. characterMakers.push(() => makeCharacter(
  29860. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29861. {
  29862. front: {
  29863. height: math.unit(6, "feet"),
  29864. name: "Front",
  29865. image: {
  29866. source: "./media/characters/withers/front.svg",
  29867. extra: 1935/1760,
  29868. bottom: 72/2007
  29869. }
  29870. },
  29871. back: {
  29872. height: math.unit(6, "feet"),
  29873. name: "Back",
  29874. image: {
  29875. source: "./media/characters/withers/back.svg",
  29876. extra: 1944/1792,
  29877. bottom: 12/1956
  29878. }
  29879. },
  29880. dressed: {
  29881. height: math.unit(6, "feet"),
  29882. name: "Dressed",
  29883. image: {
  29884. source: "./media/characters/withers/dressed.svg",
  29885. extra: 1937/1765,
  29886. bottom: 73/2010
  29887. }
  29888. },
  29889. phase1: {
  29890. height: math.unit(1.1, "feet"),
  29891. name: "Phase 1",
  29892. image: {
  29893. source: "./media/characters/withers/phase-1.svg",
  29894. extra: 1885/1232,
  29895. bottom: 0/1885
  29896. }
  29897. },
  29898. phase2: {
  29899. height: math.unit(1.05, "feet"),
  29900. name: "Phase 2",
  29901. image: {
  29902. source: "./media/characters/withers/phase-2.svg",
  29903. extra: 1792/1090,
  29904. bottom: 0/1792
  29905. }
  29906. },
  29907. partyWipe: {
  29908. height: math.unit(1.1, "feet"),
  29909. name: "Party Wipe",
  29910. image: {
  29911. source: "./media/characters/withers/party-wipe.svg",
  29912. extra: 1864/1207,
  29913. bottom: 0/1864
  29914. }
  29915. },
  29916. },
  29917. [
  29918. {
  29919. name: "Macro",
  29920. height: math.unit(167, "feet"),
  29921. default: true
  29922. },
  29923. {
  29924. name: "Megamacro",
  29925. height: math.unit(15, "miles")
  29926. }
  29927. ]
  29928. ))
  29929. characterMakers.push(() => makeCharacter(
  29930. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29931. {
  29932. front: {
  29933. height: math.unit(6 + 7 / 12, "feet"),
  29934. weight: math.unit(250, "lb"),
  29935. name: "Front",
  29936. image: {
  29937. source: "./media/characters/nemoskii/front.svg",
  29938. extra: 2270 / 1734,
  29939. bottom: 86 / 2354
  29940. }
  29941. },
  29942. back: {
  29943. height: math.unit(6 + 7 / 12, "feet"),
  29944. weight: math.unit(250, "lb"),
  29945. name: "Back",
  29946. image: {
  29947. source: "./media/characters/nemoskii/back.svg",
  29948. extra: 1845 / 1788,
  29949. bottom: 10.5 / 1852
  29950. }
  29951. },
  29952. head: {
  29953. height: math.unit(1.31, "feet"),
  29954. name: "Head",
  29955. image: {
  29956. source: "./media/characters/nemoskii/head.svg"
  29957. }
  29958. },
  29959. },
  29960. [
  29961. {
  29962. name: "Micro",
  29963. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29964. },
  29965. {
  29966. name: "Normal",
  29967. height: math.unit(6 + 7 / 12, "feet"),
  29968. default: true
  29969. },
  29970. {
  29971. name: "Macro",
  29972. height: math.unit((6 + 7 / 12) * 150, "feet")
  29973. },
  29974. {
  29975. name: "Macro+",
  29976. height: math.unit((6 + 7 / 12) * 500, "feet")
  29977. },
  29978. {
  29979. name: "Megamacro",
  29980. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29981. },
  29982. ]
  29983. ))
  29984. characterMakers.push(() => makeCharacter(
  29985. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29986. {
  29987. front: {
  29988. height: math.unit(1, "mile"),
  29989. weight: math.unit(265261.9, "lb"),
  29990. name: "Front",
  29991. image: {
  29992. source: "./media/characters/shui/front.svg",
  29993. extra: 1633 / 1564,
  29994. bottom: 91.5 / 1726
  29995. }
  29996. },
  29997. },
  29998. [
  29999. {
  30000. name: "Macro",
  30001. height: math.unit(1, "mile"),
  30002. default: true
  30003. },
  30004. ]
  30005. ))
  30006. characterMakers.push(() => makeCharacter(
  30007. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30008. {
  30009. front: {
  30010. height: math.unit(12 + 6 / 12, "feet"),
  30011. weight: math.unit(1342, "lb"),
  30012. name: "Front",
  30013. image: {
  30014. source: "./media/characters/arokh-takakura/front.svg",
  30015. extra: 1089 / 1043,
  30016. bottom: 77.4 / 1176.7
  30017. }
  30018. },
  30019. back: {
  30020. height: math.unit(12 + 6 / 12, "feet"),
  30021. weight: math.unit(1342, "lb"),
  30022. name: "Back",
  30023. image: {
  30024. source: "./media/characters/arokh-takakura/back.svg",
  30025. extra: 1046 / 1019,
  30026. bottom: 102 / 1150
  30027. }
  30028. },
  30029. },
  30030. [
  30031. {
  30032. name: "Big",
  30033. height: math.unit(12 + 6 / 12, "feet"),
  30034. default: true
  30035. },
  30036. ]
  30037. ))
  30038. characterMakers.push(() => makeCharacter(
  30039. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30040. {
  30041. front: {
  30042. height: math.unit(5 + 6 / 12, "feet"),
  30043. weight: math.unit(150, "lb"),
  30044. name: "Front",
  30045. image: {
  30046. source: "./media/characters/theo/front.svg",
  30047. extra: 1184 / 1131,
  30048. bottom: 7.4 / 1191
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Micro",
  30055. height: math.unit(5, "inches")
  30056. },
  30057. {
  30058. name: "Normal",
  30059. height: math.unit(5 + 6 / 12, "feet"),
  30060. default: true
  30061. },
  30062. ]
  30063. ))
  30064. characterMakers.push(() => makeCharacter(
  30065. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30066. {
  30067. front: {
  30068. height: math.unit(5 + 9 / 12, "feet"),
  30069. weight: math.unit(130, "lb"),
  30070. name: "Front",
  30071. image: {
  30072. source: "./media/characters/cecelia-swift/front.svg",
  30073. extra: 502 / 484,
  30074. bottom: 23 / 523
  30075. }
  30076. },
  30077. back: {
  30078. height: math.unit(5 + 9 / 12, "feet"),
  30079. weight: math.unit(130, "lb"),
  30080. name: "Back",
  30081. image: {
  30082. source: "./media/characters/cecelia-swift/back.svg",
  30083. extra: 499 / 485,
  30084. bottom: 12 / 511
  30085. }
  30086. },
  30087. head: {
  30088. height: math.unit(0.90, "feet"),
  30089. name: "Head",
  30090. image: {
  30091. source: "./media/characters/cecelia-swift/head.svg"
  30092. }
  30093. },
  30094. rump: {
  30095. height: math.unit(1.75, "feet"),
  30096. name: "Rump",
  30097. image: {
  30098. source: "./media/characters/cecelia-swift/rump.svg"
  30099. }
  30100. },
  30101. },
  30102. [
  30103. {
  30104. name: "Normal",
  30105. height: math.unit(5 + 9 / 12, "feet"),
  30106. default: true
  30107. },
  30108. {
  30109. name: "Big",
  30110. height: math.unit(50, "feet")
  30111. },
  30112. {
  30113. name: "Macro",
  30114. height: math.unit(100, "feet")
  30115. },
  30116. {
  30117. name: "Macro+",
  30118. height: math.unit(500, "feet")
  30119. },
  30120. {
  30121. name: "Macro++",
  30122. height: math.unit(1000, "feet")
  30123. },
  30124. ]
  30125. ))
  30126. characterMakers.push(() => makeCharacter(
  30127. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30128. {
  30129. front: {
  30130. height: math.unit(6, "feet"),
  30131. weight: math.unit(150, "lb"),
  30132. name: "Front",
  30133. image: {
  30134. source: "./media/characters/kaunan/front.svg",
  30135. extra: 2890 / 2523,
  30136. bottom: 49 / 2939
  30137. }
  30138. },
  30139. },
  30140. [
  30141. {
  30142. name: "Macro",
  30143. height: math.unit(150, "feet"),
  30144. default: true
  30145. },
  30146. ]
  30147. ))
  30148. characterMakers.push(() => makeCharacter(
  30149. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30150. {
  30151. dressed: {
  30152. height: math.unit(175, "cm"),
  30153. weight: math.unit(60, "kg"),
  30154. name: "Dressed",
  30155. image: {
  30156. source: "./media/characters/fei/dressed.svg",
  30157. extra: 1402/1278,
  30158. bottom: 27/1429
  30159. }
  30160. },
  30161. nude: {
  30162. height: math.unit(175, "cm"),
  30163. weight: math.unit(60, "kg"),
  30164. name: "Nude",
  30165. image: {
  30166. source: "./media/characters/fei/nude.svg",
  30167. extra: 1402/1278,
  30168. bottom: 27/1429
  30169. }
  30170. },
  30171. heels: {
  30172. height: math.unit(0.466, "feet"),
  30173. name: "Heels",
  30174. image: {
  30175. source: "./media/characters/fei/heels.svg",
  30176. extra: 156/152,
  30177. bottom: 28/184
  30178. }
  30179. },
  30180. },
  30181. [
  30182. {
  30183. name: "Mortal",
  30184. height: math.unit(175, "cm")
  30185. },
  30186. {
  30187. name: "Normal",
  30188. height: math.unit(3500, "m")
  30189. },
  30190. {
  30191. name: "Stroll",
  30192. height: math.unit(18.4, "km"),
  30193. default: true
  30194. },
  30195. {
  30196. name: "Showoff",
  30197. height: math.unit(175, "km")
  30198. },
  30199. ]
  30200. ))
  30201. characterMakers.push(() => makeCharacter(
  30202. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30203. {
  30204. front: {
  30205. height: math.unit(7, "feet"),
  30206. weight: math.unit(1000, "kg"),
  30207. name: "Front",
  30208. image: {
  30209. source: "./media/characters/edrax/front.svg",
  30210. extra: 2838 / 2550,
  30211. bottom: 130 / 2968
  30212. }
  30213. },
  30214. },
  30215. [
  30216. {
  30217. name: "Small",
  30218. height: math.unit(7, "feet")
  30219. },
  30220. {
  30221. name: "Normal",
  30222. height: math.unit(1500, "meters")
  30223. },
  30224. {
  30225. name: "Mega",
  30226. height: math.unit(12000000, "km"),
  30227. default: true
  30228. },
  30229. {
  30230. name: "Megamacro",
  30231. height: math.unit(10600000, "lightyears")
  30232. },
  30233. {
  30234. name: "Hypermacro",
  30235. height: math.unit(256, "yottameters")
  30236. },
  30237. ]
  30238. ))
  30239. characterMakers.push(() => makeCharacter(
  30240. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30241. {
  30242. front: {
  30243. height: math.unit(10, "feet"),
  30244. weight: math.unit(750, "lb"),
  30245. name: "Front",
  30246. image: {
  30247. source: "./media/characters/clove/front.svg",
  30248. extra: 1918/1751,
  30249. bottom: 52/1970
  30250. }
  30251. },
  30252. back: {
  30253. height: math.unit(10, "feet"),
  30254. weight: math.unit(750, "lb"),
  30255. name: "Back",
  30256. image: {
  30257. source: "./media/characters/clove/back.svg",
  30258. extra: 1912/1747,
  30259. bottom: 50/1962
  30260. }
  30261. },
  30262. },
  30263. [
  30264. {
  30265. name: "Normal",
  30266. height: math.unit(10, "feet"),
  30267. default: true
  30268. },
  30269. ]
  30270. ))
  30271. characterMakers.push(() => makeCharacter(
  30272. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30273. {
  30274. front: {
  30275. height: math.unit(4, "feet"),
  30276. weight: math.unit(50, "lb"),
  30277. name: "Front",
  30278. image: {
  30279. source: "./media/characters/alex-rabbit/front.svg",
  30280. extra: 507 / 458,
  30281. bottom: 18.5 / 527
  30282. }
  30283. },
  30284. back: {
  30285. height: math.unit(4, "feet"),
  30286. weight: math.unit(50, "lb"),
  30287. name: "Back",
  30288. image: {
  30289. source: "./media/characters/alex-rabbit/back.svg",
  30290. extra: 502 / 460,
  30291. bottom: 18.9 / 521
  30292. }
  30293. },
  30294. },
  30295. [
  30296. {
  30297. name: "Normal",
  30298. height: math.unit(4, "feet"),
  30299. default: true
  30300. },
  30301. ]
  30302. ))
  30303. characterMakers.push(() => makeCharacter(
  30304. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30305. {
  30306. front: {
  30307. height: math.unit(1 + 3 / 12, "feet"),
  30308. weight: math.unit(80, "lb"),
  30309. name: "Front",
  30310. image: {
  30311. source: "./media/characters/zander-rose/front.svg",
  30312. extra: 916 / 797,
  30313. bottom: 17 / 933
  30314. }
  30315. },
  30316. back: {
  30317. height: math.unit(1 + 3 / 12, "feet"),
  30318. weight: math.unit(80, "lb"),
  30319. name: "Back",
  30320. image: {
  30321. source: "./media/characters/zander-rose/back.svg",
  30322. extra: 903 / 779,
  30323. bottom: 31 / 934
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "Normal",
  30330. height: math.unit(1 + 3 / 12, "feet"),
  30331. default: true
  30332. },
  30333. ]
  30334. ))
  30335. characterMakers.push(() => makeCharacter(
  30336. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30337. {
  30338. anthro: {
  30339. height: math.unit(6, "feet"),
  30340. weight: math.unit(150, "lb"),
  30341. name: "Anthro",
  30342. image: {
  30343. source: "./media/characters/razz/anthro.svg",
  30344. extra: 1437 / 1343,
  30345. bottom: 48 / 1485
  30346. }
  30347. },
  30348. feral: {
  30349. height: math.unit(6, "feet"),
  30350. weight: math.unit(150, "lb"),
  30351. name: "Feral",
  30352. image: {
  30353. source: "./media/characters/razz/feral.svg",
  30354. extra: 2569 / 1385,
  30355. bottom: 95 / 2664
  30356. }
  30357. },
  30358. },
  30359. [
  30360. {
  30361. name: "Normal",
  30362. height: math.unit(6, "feet"),
  30363. default: true
  30364. },
  30365. ]
  30366. ))
  30367. characterMakers.push(() => makeCharacter(
  30368. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30369. {
  30370. front: {
  30371. height: math.unit(9 + 4 / 12, "feet"),
  30372. weight: math.unit(500, "lb"),
  30373. name: "Front",
  30374. image: {
  30375. source: "./media/characters/morrigan/front.svg",
  30376. extra: 2707 / 2579,
  30377. bottom: 156 / 2863
  30378. }
  30379. },
  30380. },
  30381. [
  30382. {
  30383. name: "Normal",
  30384. height: math.unit(9 + 4 / 12, "feet"),
  30385. default: true
  30386. },
  30387. ]
  30388. ))
  30389. characterMakers.push(() => makeCharacter(
  30390. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30391. {
  30392. front: {
  30393. height: math.unit(5, "stories"),
  30394. weight: math.unit(4000, "lb"),
  30395. name: "Front",
  30396. image: {
  30397. source: "./media/characters/jenene/front.svg",
  30398. extra: 1780 / 1710,
  30399. bottom: 57 / 1837
  30400. }
  30401. },
  30402. },
  30403. [
  30404. {
  30405. name: "Normal",
  30406. height: math.unit(5, "stories"),
  30407. default: true
  30408. },
  30409. ]
  30410. ))
  30411. characterMakers.push(() => makeCharacter(
  30412. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30413. {
  30414. taurSfw: {
  30415. height: math.unit(10, "meters"),
  30416. weight: math.unit(17500, "kg"),
  30417. name: "Taur",
  30418. image: {
  30419. source: "./media/characters/faey/taur-sfw.svg",
  30420. extra: 1200 / 968,
  30421. bottom: 41 / 1241
  30422. }
  30423. },
  30424. chestmaw: {
  30425. height: math.unit(2.01, "meters"),
  30426. name: "Chestmaw",
  30427. image: {
  30428. source: "./media/characters/faey/chestmaw.svg"
  30429. }
  30430. },
  30431. foot: {
  30432. height: math.unit(2.43, "meters"),
  30433. name: "Foot",
  30434. image: {
  30435. source: "./media/characters/faey/foot.svg"
  30436. }
  30437. },
  30438. jaws: {
  30439. height: math.unit(1.66, "meters"),
  30440. name: "Jaws",
  30441. image: {
  30442. source: "./media/characters/faey/jaws.svg"
  30443. }
  30444. },
  30445. tongues: {
  30446. height: math.unit(2.01, "meters"),
  30447. name: "Tongues",
  30448. image: {
  30449. source: "./media/characters/faey/tongues.svg"
  30450. }
  30451. },
  30452. },
  30453. [
  30454. {
  30455. name: "Small",
  30456. height: math.unit(10, "meters"),
  30457. default: true
  30458. },
  30459. {
  30460. name: "Big",
  30461. height: math.unit(500000, "km")
  30462. },
  30463. ]
  30464. ))
  30465. characterMakers.push(() => makeCharacter(
  30466. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30467. {
  30468. front: {
  30469. height: math.unit(7, "feet"),
  30470. weight: math.unit(275, "lb"),
  30471. name: "Front",
  30472. image: {
  30473. source: "./media/characters/roku/front.svg",
  30474. extra: 903 / 878,
  30475. bottom: 37 / 940
  30476. }
  30477. },
  30478. },
  30479. [
  30480. {
  30481. name: "Normal",
  30482. height: math.unit(7, "feet"),
  30483. default: true
  30484. },
  30485. {
  30486. name: "Macro",
  30487. height: math.unit(500, "feet")
  30488. },
  30489. {
  30490. name: "Megamacro",
  30491. height: math.unit(200, "miles")
  30492. },
  30493. ]
  30494. ))
  30495. characterMakers.push(() => makeCharacter(
  30496. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30497. {
  30498. front: {
  30499. height: math.unit(6 + 2 / 12, "feet"),
  30500. weight: math.unit(150, "lb"),
  30501. name: "Front",
  30502. image: {
  30503. source: "./media/characters/lira/front.svg",
  30504. extra: 1727 / 1605,
  30505. bottom: 26 / 1753
  30506. }
  30507. },
  30508. back: {
  30509. height: math.unit(6 + 2 / 12, "feet"),
  30510. weight: math.unit(150, "lb"),
  30511. name: "Back",
  30512. image: {
  30513. source: "./media/characters/lira/back.svg",
  30514. extra: 1713/1621,
  30515. bottom: 20/1733
  30516. }
  30517. },
  30518. hand: {
  30519. height: math.unit(0.75, "feet"),
  30520. name: "Hand",
  30521. image: {
  30522. source: "./media/characters/lira/hand.svg"
  30523. }
  30524. },
  30525. maw: {
  30526. height: math.unit(0.65, "feet"),
  30527. name: "Maw",
  30528. image: {
  30529. source: "./media/characters/lira/maw.svg"
  30530. }
  30531. },
  30532. pawDigi: {
  30533. height: math.unit(1.6, "feet"),
  30534. name: "Paw Digi",
  30535. image: {
  30536. source: "./media/characters/lira/paw-digi.svg"
  30537. }
  30538. },
  30539. pawPlanti: {
  30540. height: math.unit(1.4, "feet"),
  30541. name: "Paw Planti",
  30542. image: {
  30543. source: "./media/characters/lira/paw-planti.svg"
  30544. }
  30545. },
  30546. },
  30547. [
  30548. {
  30549. name: "Normal",
  30550. height: math.unit(6 + 2 / 12, "feet"),
  30551. default: true
  30552. },
  30553. {
  30554. name: "Macro",
  30555. height: math.unit(100, "feet")
  30556. },
  30557. {
  30558. name: "Macro²",
  30559. height: math.unit(1600, "feet")
  30560. },
  30561. {
  30562. name: "Planetary",
  30563. height: math.unit(20, "earths")
  30564. },
  30565. ]
  30566. ))
  30567. characterMakers.push(() => makeCharacter(
  30568. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30569. {
  30570. front: {
  30571. height: math.unit(6, "feet"),
  30572. weight: math.unit(150, "lb"),
  30573. name: "Front",
  30574. image: {
  30575. source: "./media/characters/hadjet/front.svg",
  30576. extra: 1480 / 1346,
  30577. bottom: 26 / 1506
  30578. }
  30579. },
  30580. frontNsfw: {
  30581. height: math.unit(6, "feet"),
  30582. weight: math.unit(150, "lb"),
  30583. name: "Front (NSFW)",
  30584. image: {
  30585. source: "./media/characters/hadjet/front-nsfw.svg",
  30586. extra: 1440 / 1358,
  30587. bottom: 52 / 1492
  30588. }
  30589. },
  30590. },
  30591. [
  30592. {
  30593. name: "Macro",
  30594. height: math.unit(10, "stories"),
  30595. default: true
  30596. },
  30597. {
  30598. name: "Megamacro",
  30599. height: math.unit(1.5, "miles")
  30600. },
  30601. {
  30602. name: "Megamacro+",
  30603. height: math.unit(5, "miles")
  30604. },
  30605. ]
  30606. ))
  30607. characterMakers.push(() => makeCharacter(
  30608. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30609. {
  30610. side: {
  30611. height: math.unit(106, "feet"),
  30612. weight: math.unit(500, "tonnes"),
  30613. name: "Side",
  30614. image: {
  30615. source: "./media/characters/kodran/side.svg",
  30616. extra: 553 / 480,
  30617. bottom: 33 / 586
  30618. }
  30619. },
  30620. front: {
  30621. height: math.unit(132, "feet"),
  30622. weight: math.unit(500, "tonnes"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/kodran/front.svg",
  30626. extra: 667 / 643,
  30627. bottom: 42 / 709
  30628. }
  30629. },
  30630. flying: {
  30631. height: math.unit(350, "feet"),
  30632. weight: math.unit(500, "tonnes"),
  30633. name: "Flying",
  30634. image: {
  30635. source: "./media/characters/kodran/flying.svg"
  30636. }
  30637. },
  30638. foot: {
  30639. height: math.unit(33, "feet"),
  30640. name: "Foot",
  30641. image: {
  30642. source: "./media/characters/kodran/foot.svg"
  30643. }
  30644. },
  30645. footFront: {
  30646. height: math.unit(19, "feet"),
  30647. name: "Foot (Front)",
  30648. image: {
  30649. source: "./media/characters/kodran/foot-front.svg",
  30650. extra: 261 / 261,
  30651. bottom: 91 / 352
  30652. }
  30653. },
  30654. headFront: {
  30655. height: math.unit(53, "feet"),
  30656. name: "Head (Front)",
  30657. image: {
  30658. source: "./media/characters/kodran/head-front.svg"
  30659. }
  30660. },
  30661. headSide: {
  30662. height: math.unit(65, "feet"),
  30663. name: "Head (Side)",
  30664. image: {
  30665. source: "./media/characters/kodran/head-side.svg"
  30666. }
  30667. },
  30668. throat: {
  30669. height: math.unit(79, "feet"),
  30670. name: "Throat",
  30671. image: {
  30672. source: "./media/characters/kodran/throat.svg"
  30673. }
  30674. },
  30675. },
  30676. [
  30677. {
  30678. name: "Large",
  30679. height: math.unit(106, "feet"),
  30680. default: true
  30681. },
  30682. ]
  30683. ))
  30684. characterMakers.push(() => makeCharacter(
  30685. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30686. {
  30687. side: {
  30688. height: math.unit(11, "feet"),
  30689. weight: math.unit(150, "lb"),
  30690. name: "Side",
  30691. image: {
  30692. source: "./media/characters/pyxaron/side.svg",
  30693. extra: 305 / 195,
  30694. bottom: 17 / 322
  30695. }
  30696. },
  30697. },
  30698. [
  30699. {
  30700. name: "Normal",
  30701. height: math.unit(11, "feet"),
  30702. default: true
  30703. },
  30704. ]
  30705. ))
  30706. characterMakers.push(() => makeCharacter(
  30707. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30708. {
  30709. front: {
  30710. height: math.unit(6, "feet"),
  30711. weight: math.unit(150, "lb"),
  30712. name: "Front",
  30713. image: {
  30714. source: "./media/characters/meep/front.svg",
  30715. extra: 88 / 80,
  30716. bottom: 6 / 94
  30717. }
  30718. },
  30719. },
  30720. [
  30721. {
  30722. name: "Fun Sized",
  30723. height: math.unit(2, "inches"),
  30724. default: true
  30725. },
  30726. {
  30727. name: "Friend Sized",
  30728. height: math.unit(8, "inches")
  30729. },
  30730. ]
  30731. ))
  30732. characterMakers.push(() => makeCharacter(
  30733. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30734. {
  30735. front: {
  30736. height: math.unit(15, "feet"),
  30737. weight: math.unit(2500, "lb"),
  30738. name: "Front",
  30739. image: {
  30740. source: "./media/characters/holly-rabbit/front.svg",
  30741. extra: 1433 / 1233,
  30742. bottom: 125 / 1558
  30743. }
  30744. },
  30745. dick: {
  30746. height: math.unit(4.6, "feet"),
  30747. name: "Dick",
  30748. image: {
  30749. source: "./media/characters/holly-rabbit/dick.svg"
  30750. }
  30751. },
  30752. },
  30753. [
  30754. {
  30755. name: "Normal",
  30756. height: math.unit(15, "feet"),
  30757. default: true
  30758. },
  30759. {
  30760. name: "Macro",
  30761. height: math.unit(250, "feet")
  30762. },
  30763. {
  30764. name: "Macro+",
  30765. height: math.unit(2500, "feet")
  30766. },
  30767. ]
  30768. ))
  30769. characterMakers.push(() => makeCharacter(
  30770. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30771. {
  30772. front: {
  30773. height: math.unit(3.02, "meters"),
  30774. weight: math.unit(500, "kg"),
  30775. name: "Front",
  30776. image: {
  30777. source: "./media/characters/drena/front.svg",
  30778. extra: 282 / 243,
  30779. bottom: 8 / 290
  30780. }
  30781. },
  30782. side: {
  30783. height: math.unit(3.02, "meters"),
  30784. weight: math.unit(500, "kg"),
  30785. name: "Side",
  30786. image: {
  30787. source: "./media/characters/drena/side.svg",
  30788. extra: 280 / 245,
  30789. bottom: 10 / 290
  30790. }
  30791. },
  30792. back: {
  30793. height: math.unit(3.02, "meters"),
  30794. weight: math.unit(500, "kg"),
  30795. name: "Back",
  30796. image: {
  30797. source: "./media/characters/drena/back.svg",
  30798. extra: 278 / 243,
  30799. bottom: 2 / 280
  30800. }
  30801. },
  30802. foot: {
  30803. height: math.unit(0.75, "meters"),
  30804. name: "Foot",
  30805. image: {
  30806. source: "./media/characters/drena/foot.svg"
  30807. }
  30808. },
  30809. maw: {
  30810. height: math.unit(0.82, "meters"),
  30811. name: "Maw",
  30812. image: {
  30813. source: "./media/characters/drena/maw.svg"
  30814. }
  30815. },
  30816. eating: {
  30817. height: math.unit(0.75, "meters"),
  30818. name: "Eating",
  30819. image: {
  30820. source: "./media/characters/drena/eating.svg"
  30821. }
  30822. },
  30823. rump: {
  30824. height: math.unit(0.93, "meters"),
  30825. name: "Rump",
  30826. image: {
  30827. source: "./media/characters/drena/rump.svg"
  30828. }
  30829. },
  30830. },
  30831. [
  30832. {
  30833. name: "Normal",
  30834. height: math.unit(3.02, "meters"),
  30835. default: true
  30836. },
  30837. ]
  30838. ))
  30839. characterMakers.push(() => makeCharacter(
  30840. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30841. {
  30842. front: {
  30843. height: math.unit(6 + 4 / 12, "feet"),
  30844. weight: math.unit(250, "lb"),
  30845. name: "Front",
  30846. image: {
  30847. source: "./media/characters/remmyzilla/front.svg",
  30848. extra: 4033 / 3588,
  30849. bottom: 123 / 4156
  30850. }
  30851. },
  30852. back: {
  30853. height: math.unit(6 + 4 / 12, "feet"),
  30854. weight: math.unit(250, "lb"),
  30855. name: "Back",
  30856. image: {
  30857. source: "./media/characters/remmyzilla/back.svg",
  30858. extra: 2687 / 2555,
  30859. bottom: 48 / 2735
  30860. }
  30861. },
  30862. paw: {
  30863. height: math.unit(1.73, "feet"),
  30864. name: "Paw",
  30865. image: {
  30866. source: "./media/characters/remmyzilla/paw.svg"
  30867. },
  30868. extraAttributes: {
  30869. "toeSize": {
  30870. name: "Toe Size",
  30871. power: 2,
  30872. type: "area",
  30873. base: math.unit(0.0035, "m^2")
  30874. },
  30875. "padSize": {
  30876. name: "Pad Size",
  30877. power: 2,
  30878. type: "area",
  30879. base: math.unit(0.015, "m^2")
  30880. },
  30881. "pawsize": {
  30882. name: "Paw Size",
  30883. power: 2,
  30884. type: "area",
  30885. base: math.unit(0.072, "m^2")
  30886. },
  30887. }
  30888. },
  30889. maw: {
  30890. height: math.unit(1.73, "feet"),
  30891. name: "Maw",
  30892. image: {
  30893. source: "./media/characters/remmyzilla/maw.svg"
  30894. }
  30895. },
  30896. },
  30897. [
  30898. {
  30899. name: "Normal",
  30900. height: math.unit(6 + 4 / 12, "feet")
  30901. },
  30902. {
  30903. name: "Minimacro",
  30904. height: math.unit(12 + 8 / 12, "feet")
  30905. },
  30906. {
  30907. name: "Normal",
  30908. height: math.unit(640, "feet"),
  30909. default: true
  30910. },
  30911. {
  30912. name: "Megamacro",
  30913. height: math.unit(6400, "feet")
  30914. },
  30915. {
  30916. name: "Gigamacro",
  30917. height: math.unit(64000, "miles")
  30918. },
  30919. ]
  30920. ))
  30921. characterMakers.push(() => makeCharacter(
  30922. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30923. {
  30924. front: {
  30925. height: math.unit(2.5, "meters"),
  30926. weight: math.unit(300, "lb"),
  30927. name: "Front",
  30928. image: {
  30929. source: "./media/characters/lawrence/front.svg",
  30930. extra: 357 / 335,
  30931. bottom: 30 / 387
  30932. }
  30933. },
  30934. back: {
  30935. height: math.unit(2.5, "meters"),
  30936. weight: math.unit(300, "lb"),
  30937. name: "Back",
  30938. image: {
  30939. source: "./media/characters/lawrence/back.svg",
  30940. extra: 357 / 338,
  30941. bottom: 16 / 373
  30942. }
  30943. },
  30944. head: {
  30945. height: math.unit(0.9, "meter"),
  30946. name: "Head",
  30947. image: {
  30948. source: "./media/characters/lawrence/head.svg"
  30949. }
  30950. },
  30951. maw: {
  30952. height: math.unit(0.7, "meter"),
  30953. name: "Maw",
  30954. image: {
  30955. source: "./media/characters/lawrence/maw.svg"
  30956. }
  30957. },
  30958. footBottom: {
  30959. height: math.unit(0.5, "meter"),
  30960. name: "Foot (Bottom)",
  30961. image: {
  30962. source: "./media/characters/lawrence/foot-bottom.svg"
  30963. }
  30964. },
  30965. footTop: {
  30966. height: math.unit(0.5, "meter"),
  30967. name: "Foot (Top)",
  30968. image: {
  30969. source: "./media/characters/lawrence/foot-top.svg"
  30970. }
  30971. },
  30972. },
  30973. [
  30974. {
  30975. name: "Normal",
  30976. height: math.unit(2.5, "meters"),
  30977. default: true
  30978. },
  30979. {
  30980. name: "Macro",
  30981. height: math.unit(95, "meters")
  30982. },
  30983. {
  30984. name: "Megamacro",
  30985. height: math.unit(150, "km")
  30986. },
  30987. ]
  30988. ))
  30989. characterMakers.push(() => makeCharacter(
  30990. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30991. {
  30992. front: {
  30993. height: math.unit(4.2, "meters"),
  30994. preyCapacity: math.unit(50, "m^3"),
  30995. weight: math.unit(30, "tonnes"),
  30996. name: "Front",
  30997. image: {
  30998. source: "./media/characters/sydney/front.svg",
  30999. extra: 1177/1129,
  31000. bottom: 197/1374
  31001. },
  31002. extraAttributes: {
  31003. "length": {
  31004. name: "Length",
  31005. power: 1,
  31006. type: "length",
  31007. base: math.unit(21, "meters")
  31008. },
  31009. }
  31010. },
  31011. },
  31012. [
  31013. {
  31014. name: "Normal",
  31015. height: math.unit(4.2, "meters"),
  31016. default: true
  31017. },
  31018. ]
  31019. ))
  31020. characterMakers.push(() => makeCharacter(
  31021. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31022. {
  31023. back: {
  31024. height: math.unit(201, "feet"),
  31025. name: "Back",
  31026. image: {
  31027. source: "./media/characters/jessica/back.svg",
  31028. extra: 273 / 259,
  31029. bottom: 7 / 280
  31030. }
  31031. },
  31032. },
  31033. [
  31034. {
  31035. name: "Normal",
  31036. height: math.unit(201, "feet"),
  31037. default: true
  31038. },
  31039. {
  31040. name: "Megamacro",
  31041. height: math.unit(8, "miles")
  31042. },
  31043. ]
  31044. ))
  31045. characterMakers.push(() => makeCharacter(
  31046. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31047. {
  31048. side: {
  31049. height: math.unit(5.6, "m"),
  31050. weight: math.unit(8000, "kg"),
  31051. name: "Side",
  31052. image: {
  31053. source: "./media/characters/victoria/side.svg",
  31054. extra: 1542/1229,
  31055. bottom: 124/1666
  31056. }
  31057. },
  31058. maw: {
  31059. height: math.unit(7.14, "feet"),
  31060. name: "Maw",
  31061. image: {
  31062. source: "./media/characters/victoria/maw.svg"
  31063. }
  31064. },
  31065. },
  31066. [
  31067. {
  31068. name: "Normal",
  31069. height: math.unit(5.6, "m"),
  31070. default: true
  31071. },
  31072. ]
  31073. ))
  31074. characterMakers.push(() => makeCharacter(
  31075. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31076. {
  31077. front: {
  31078. height: math.unit(5 + 6 / 12, "feet"),
  31079. name: "Front",
  31080. image: {
  31081. source: "./media/characters/cat/front.svg",
  31082. extra: 1449/1295,
  31083. bottom: 34/1483
  31084. },
  31085. form: "cat",
  31086. default: true
  31087. },
  31088. back: {
  31089. height: math.unit(5 + 6 / 12, "feet"),
  31090. name: "Back",
  31091. image: {
  31092. source: "./media/characters/cat/back.svg",
  31093. extra: 1466/1301,
  31094. bottom: 19/1485
  31095. },
  31096. form: "cat"
  31097. },
  31098. taur: {
  31099. height: math.unit(7, "feet"),
  31100. name: "Taur",
  31101. image: {
  31102. source: "./media/characters/cat/taur.svg",
  31103. extra: 1389/1233,
  31104. bottom: 83/1472
  31105. },
  31106. form: "taur",
  31107. default: true
  31108. },
  31109. lucarioFront: {
  31110. height: math.unit(4, "feet"),
  31111. name: "Lucario (Front)",
  31112. image: {
  31113. source: "./media/characters/cat/lucario-front.svg",
  31114. extra: 1149/1019,
  31115. bottom: 84/1233
  31116. },
  31117. form: "lucario",
  31118. default: true
  31119. },
  31120. lucarioBack: {
  31121. height: math.unit(4, "feet"),
  31122. name: "Lucario (Back)",
  31123. image: {
  31124. source: "./media/characters/cat/lucario-back.svg",
  31125. extra: 1190/1059,
  31126. bottom: 33/1223
  31127. },
  31128. form: "lucario"
  31129. },
  31130. megaLucario: {
  31131. height: math.unit(4, "feet"),
  31132. name: "Mega Lucario",
  31133. image: {
  31134. source: "./media/characters/cat/mega-lucario.svg",
  31135. extra: 1515 / 1319,
  31136. bottom: 63 / 1578
  31137. },
  31138. form: "lucario"
  31139. },
  31140. nickit: {
  31141. height: math.unit(2, "feet"),
  31142. name: "Nickit",
  31143. image: {
  31144. source: "./media/characters/cat/nickit.svg",
  31145. extra: 1980 / 1585,
  31146. bottom: 102 / 2082
  31147. },
  31148. form: "nickit",
  31149. default: true
  31150. },
  31151. lopunnyFront: {
  31152. height: math.unit(5, "feet"),
  31153. name: "Lopunny (Front)",
  31154. image: {
  31155. source: "./media/characters/cat/lopunny-front.svg",
  31156. extra: 1782 / 1469,
  31157. bottom: 38 / 1820
  31158. },
  31159. form: "lopunny",
  31160. default: true
  31161. },
  31162. lopunnyBack: {
  31163. height: math.unit(5, "feet"),
  31164. name: "Lopunny (Back)",
  31165. image: {
  31166. source: "./media/characters/cat/lopunny-back.svg",
  31167. extra: 1660 / 1490,
  31168. bottom: 25 / 1685
  31169. },
  31170. form: "lopunny"
  31171. },
  31172. },
  31173. [
  31174. {
  31175. name: "Really small",
  31176. height: math.unit(1, "nm")
  31177. },
  31178. {
  31179. name: "Micro",
  31180. height: math.unit(5, "inches")
  31181. },
  31182. {
  31183. name: "Normal",
  31184. height: math.unit(5 + 6 / 12, "feet"),
  31185. default: true
  31186. },
  31187. {
  31188. name: "Macro",
  31189. height: math.unit(50, "feet")
  31190. },
  31191. {
  31192. name: "Macro+",
  31193. height: math.unit(150, "feet")
  31194. },
  31195. {
  31196. name: "Megamacro",
  31197. height: math.unit(100, "miles")
  31198. },
  31199. ]
  31200. ))
  31201. characterMakers.push(() => makeCharacter(
  31202. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31203. {
  31204. front: {
  31205. height: math.unit(63.4, "meters"),
  31206. weight: math.unit(3.28349e+6, "kilograms"),
  31207. name: "Front",
  31208. image: {
  31209. source: "./media/characters/kirina-violet/front.svg",
  31210. extra: 2812 / 2725,
  31211. bottom: 0 / 2812
  31212. }
  31213. },
  31214. back: {
  31215. height: math.unit(63.4, "meters"),
  31216. weight: math.unit(3.28349e+6, "kilograms"),
  31217. name: "Back",
  31218. image: {
  31219. source: "./media/characters/kirina-violet/back.svg",
  31220. extra: 2812 / 2725,
  31221. bottom: 0 / 2812
  31222. }
  31223. },
  31224. mouth: {
  31225. height: math.unit(4.35, "meters"),
  31226. name: "Mouth",
  31227. image: {
  31228. source: "./media/characters/kirina-violet/mouth.svg"
  31229. }
  31230. },
  31231. paw: {
  31232. height: math.unit(5.6, "meters"),
  31233. name: "Paw",
  31234. image: {
  31235. source: "./media/characters/kirina-violet/paw.svg"
  31236. }
  31237. },
  31238. tail: {
  31239. height: math.unit(18, "meters"),
  31240. name: "Tail",
  31241. image: {
  31242. source: "./media/characters/kirina-violet/tail.svg"
  31243. }
  31244. },
  31245. },
  31246. [
  31247. {
  31248. name: "Macro",
  31249. height: math.unit(63.4, "meters"),
  31250. default: true
  31251. },
  31252. ]
  31253. ))
  31254. characterMakers.push(() => makeCharacter(
  31255. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31256. {
  31257. front: {
  31258. height: math.unit(75, "feet"),
  31259. name: "Front",
  31260. image: {
  31261. source: "./media/characters/cat-gigachu/front.svg",
  31262. extra: 1239/1027,
  31263. bottom: 32/1271
  31264. }
  31265. },
  31266. back: {
  31267. height: math.unit(75, "feet"),
  31268. name: "Back",
  31269. image: {
  31270. source: "./media/characters/cat-gigachu/back.svg",
  31271. extra: 1229/1030,
  31272. bottom: 9/1238
  31273. }
  31274. },
  31275. },
  31276. [
  31277. {
  31278. name: "Dynamax",
  31279. height: math.unit(75, "feet"),
  31280. default: true
  31281. },
  31282. ]
  31283. ))
  31284. characterMakers.push(() => makeCharacter(
  31285. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31286. {
  31287. front: {
  31288. height: math.unit(6, "feet"),
  31289. weight: math.unit(150, "lb"),
  31290. name: "Front",
  31291. image: {
  31292. source: "./media/characters/sfaiyan/front.svg",
  31293. extra: 999 / 978,
  31294. bottom: 5 / 1004
  31295. }
  31296. },
  31297. },
  31298. [
  31299. {
  31300. name: "Normal",
  31301. height: math.unit(1.82, "meters")
  31302. },
  31303. {
  31304. name: "Giant",
  31305. height: math.unit(2.27, "km"),
  31306. default: true
  31307. },
  31308. ]
  31309. ))
  31310. characterMakers.push(() => makeCharacter(
  31311. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31312. {
  31313. front: {
  31314. height: math.unit(179, "cm"),
  31315. weight: math.unit(100, "kg"),
  31316. name: "Front",
  31317. image: {
  31318. source: "./media/characters/raunehkeli/front.svg",
  31319. extra: 1934 / 1926,
  31320. bottom: 0 / 1934
  31321. }
  31322. },
  31323. },
  31324. [
  31325. {
  31326. name: "Normal",
  31327. height: math.unit(179, "cm")
  31328. },
  31329. {
  31330. name: "Maximum",
  31331. height: math.unit(575, "meters"),
  31332. default: true
  31333. },
  31334. ]
  31335. ))
  31336. characterMakers.push(() => makeCharacter(
  31337. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31338. {
  31339. front: {
  31340. height: math.unit(6, "feet"),
  31341. weight: math.unit(150, "lb"),
  31342. name: "Front",
  31343. image: {
  31344. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31345. extra: 2625 / 2518,
  31346. bottom: 60 / 2685
  31347. }
  31348. },
  31349. },
  31350. [
  31351. {
  31352. name: "Normal",
  31353. height: math.unit(6 + 2 / 12, "feet")
  31354. },
  31355. {
  31356. name: "Macro",
  31357. height: math.unit(1180, "feet"),
  31358. default: true
  31359. },
  31360. ]
  31361. ))
  31362. characterMakers.push(() => makeCharacter(
  31363. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31364. {
  31365. front: {
  31366. height: math.unit(5 + 6 / 12, "feet"),
  31367. weight: math.unit(108, "lb"),
  31368. name: "Front",
  31369. image: {
  31370. source: "./media/characters/lilith-zott/front.svg",
  31371. extra: 2510 / 2238,
  31372. bottom: 100 / 2610
  31373. }
  31374. },
  31375. frontDressed: {
  31376. height: math.unit(5 + 6 / 12, "feet"),
  31377. weight: math.unit(108, "lb"),
  31378. name: "Front (Dressed)",
  31379. image: {
  31380. source: "./media/characters/lilith-zott/front-dressed.svg",
  31381. extra: 2510 / 2238,
  31382. bottom: 100 / 2610
  31383. }
  31384. },
  31385. },
  31386. [
  31387. {
  31388. name: "Normal",
  31389. height: math.unit(5 + 6 / 12, "feet")
  31390. },
  31391. {
  31392. name: "Macro",
  31393. height: math.unit(1030, "feet"),
  31394. default: true
  31395. },
  31396. ]
  31397. ))
  31398. characterMakers.push(() => makeCharacter(
  31399. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31400. {
  31401. front: {
  31402. height: math.unit(6, "feet"),
  31403. weight: math.unit(150, "lb"),
  31404. name: "Front",
  31405. image: {
  31406. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31407. extra: 2567 / 2435,
  31408. bottom: 39 / 2606
  31409. }
  31410. },
  31411. frontSuper: {
  31412. height: math.unit(6, "feet"),
  31413. name: "Front (Super)",
  31414. image: {
  31415. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31416. extra: 2567 / 2435,
  31417. bottom: 39 / 2606
  31418. }
  31419. },
  31420. },
  31421. [
  31422. {
  31423. name: "Normal",
  31424. height: math.unit(5 + 10 / 12, "feet")
  31425. },
  31426. {
  31427. name: "Macro",
  31428. height: math.unit(1100, "feet"),
  31429. default: true
  31430. },
  31431. ]
  31432. ))
  31433. characterMakers.push(() => makeCharacter(
  31434. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31435. {
  31436. front: {
  31437. height: math.unit(100, "miles"),
  31438. name: "Front",
  31439. image: {
  31440. source: "./media/characters/sona/front.svg",
  31441. extra: 2433 / 2201,
  31442. bottom: 53 / 2486
  31443. }
  31444. },
  31445. foot: {
  31446. height: math.unit(16.1, "miles"),
  31447. name: "Foot",
  31448. image: {
  31449. source: "./media/characters/sona/foot.svg"
  31450. }
  31451. },
  31452. },
  31453. [
  31454. {
  31455. name: "Macro",
  31456. height: math.unit(100, "miles"),
  31457. default: true
  31458. },
  31459. ]
  31460. ))
  31461. characterMakers.push(() => makeCharacter(
  31462. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31463. {
  31464. front: {
  31465. height: math.unit(6, "feet"),
  31466. weight: math.unit(150, "lb"),
  31467. name: "Front",
  31468. image: {
  31469. source: "./media/characters/bailey/front.svg",
  31470. extra: 1778 / 1724,
  31471. bottom: 30 / 1808
  31472. }
  31473. },
  31474. },
  31475. [
  31476. {
  31477. name: "Micro",
  31478. height: math.unit(4, "inches")
  31479. },
  31480. {
  31481. name: "Normal",
  31482. height: math.unit(5 + 5 / 12, "feet"),
  31483. default: true
  31484. },
  31485. {
  31486. name: "Macro",
  31487. height: math.unit(250, "feet")
  31488. },
  31489. {
  31490. name: "Megamacro",
  31491. height: math.unit(100, "miles")
  31492. },
  31493. ]
  31494. ))
  31495. characterMakers.push(() => makeCharacter(
  31496. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31497. {
  31498. front: {
  31499. height: math.unit(5 + 2 / 12, "feet"),
  31500. weight: math.unit(120, "lb"),
  31501. name: "Front",
  31502. image: {
  31503. source: "./media/characters/snaps/front.svg",
  31504. extra: 2370 / 2177,
  31505. bottom: 48 / 2418
  31506. }
  31507. },
  31508. back: {
  31509. height: math.unit(5 + 2 / 12, "feet"),
  31510. weight: math.unit(120, "lb"),
  31511. name: "Back",
  31512. image: {
  31513. source: "./media/characters/snaps/back.svg",
  31514. extra: 2408 / 2258,
  31515. bottom: 15 / 2423
  31516. }
  31517. },
  31518. },
  31519. [
  31520. {
  31521. name: "Micro",
  31522. height: math.unit(9, "inches")
  31523. },
  31524. {
  31525. name: "Normal",
  31526. height: math.unit(5 + 2 / 12, "feet"),
  31527. default: true
  31528. },
  31529. {
  31530. name: "Mini Macro",
  31531. height: math.unit(10, "feet")
  31532. },
  31533. ]
  31534. ))
  31535. characterMakers.push(() => makeCharacter(
  31536. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31537. {
  31538. front: {
  31539. height: math.unit(1.8, "meters"),
  31540. weight: math.unit(85, "kg"),
  31541. name: "Front",
  31542. image: {
  31543. source: "./media/characters/azteck/front.svg",
  31544. extra: 2815 / 2625,
  31545. bottom: 89 / 2904
  31546. }
  31547. },
  31548. back: {
  31549. height: math.unit(1.8, "meters"),
  31550. weight: math.unit(85, "kg"),
  31551. name: "Back",
  31552. image: {
  31553. source: "./media/characters/azteck/back.svg",
  31554. extra: 2856 / 2648,
  31555. bottom: 85 / 2941
  31556. }
  31557. },
  31558. frontDressed: {
  31559. height: math.unit(1.8, "meters"),
  31560. weight: math.unit(85, "kg"),
  31561. name: "Front (Dressed)",
  31562. image: {
  31563. source: "./media/characters/azteck/front-dressed.svg",
  31564. extra: 2147 / 2003,
  31565. bottom: 68 / 2215
  31566. }
  31567. },
  31568. head: {
  31569. height: math.unit(0.47, "meters"),
  31570. weight: math.unit(85, "kg"),
  31571. name: "Head",
  31572. image: {
  31573. source: "./media/characters/azteck/head.svg"
  31574. }
  31575. },
  31576. },
  31577. [
  31578. {
  31579. name: "Bite sized",
  31580. height: math.unit(16, "cm")
  31581. },
  31582. {
  31583. name: "Normal",
  31584. height: math.unit(1.8, "meters"),
  31585. default: true
  31586. },
  31587. ]
  31588. ))
  31589. characterMakers.push(() => makeCharacter(
  31590. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31591. {
  31592. front: {
  31593. height: math.unit(6, "feet"),
  31594. weight: math.unit(150, "lb"),
  31595. name: "Front",
  31596. image: {
  31597. source: "./media/characters/pidge/front.svg",
  31598. extra: 1936/1820,
  31599. bottom: 0/1936
  31600. }
  31601. },
  31602. back: {
  31603. height: math.unit(6, "feet"),
  31604. weight: math.unit(150, "lb"),
  31605. name: "Back",
  31606. image: {
  31607. source: "./media/characters/pidge/back.svg",
  31608. extra: 1938/1843,
  31609. bottom: 0/1938
  31610. }
  31611. },
  31612. casual: {
  31613. height: math.unit(6, "feet"),
  31614. weight: math.unit(150, "lb"),
  31615. name: "Casual",
  31616. image: {
  31617. source: "./media/characters/pidge/casual.svg",
  31618. extra: 1936/1820,
  31619. bottom: 0/1936
  31620. }
  31621. },
  31622. tech: {
  31623. height: math.unit(6, "feet"),
  31624. weight: math.unit(150, "lb"),
  31625. name: "Tech",
  31626. image: {
  31627. source: "./media/characters/pidge/tech.svg",
  31628. extra: 1802/1682,
  31629. bottom: 0/1802
  31630. }
  31631. },
  31632. head: {
  31633. height: math.unit(1.61, "feet"),
  31634. name: "Head",
  31635. image: {
  31636. source: "./media/characters/pidge/head.svg"
  31637. }
  31638. },
  31639. collar: {
  31640. height: math.unit(0.82, "feet"),
  31641. name: "Collar",
  31642. image: {
  31643. source: "./media/characters/pidge/collar.svg"
  31644. }
  31645. },
  31646. },
  31647. [
  31648. {
  31649. name: "Macro",
  31650. height: math.unit(2, "mile"),
  31651. default: true
  31652. },
  31653. {
  31654. name: "PUPPY",
  31655. height: math.unit(20, "miles")
  31656. },
  31657. ]
  31658. ))
  31659. characterMakers.push(() => makeCharacter(
  31660. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31661. {
  31662. front: {
  31663. height: math.unit(6, "feet"),
  31664. weight: math.unit(150, "lb"),
  31665. name: "Front",
  31666. image: {
  31667. source: "./media/characters/en/front.svg",
  31668. extra: 1697 / 1563,
  31669. bottom: 103 / 1800
  31670. }
  31671. },
  31672. back: {
  31673. height: math.unit(6, "feet"),
  31674. weight: math.unit(150, "lb"),
  31675. name: "Back",
  31676. image: {
  31677. source: "./media/characters/en/back.svg",
  31678. extra: 1700 / 1570,
  31679. bottom: 51 / 1751
  31680. }
  31681. },
  31682. frontDressed: {
  31683. height: math.unit(6, "feet"),
  31684. weight: math.unit(150, "lb"),
  31685. name: "Front (Dressed)",
  31686. image: {
  31687. source: "./media/characters/en/front-dressed.svg",
  31688. extra: 1697 / 1563,
  31689. bottom: 103 / 1800
  31690. }
  31691. },
  31692. backDressed: {
  31693. height: math.unit(6, "feet"),
  31694. weight: math.unit(150, "lb"),
  31695. name: "Back (Dressed)",
  31696. image: {
  31697. source: "./media/characters/en/back-dressed.svg",
  31698. extra: 1700 / 1570,
  31699. bottom: 51 / 1751
  31700. }
  31701. },
  31702. },
  31703. [
  31704. {
  31705. name: "Macro",
  31706. height: math.unit(210, "feet"),
  31707. default: true
  31708. },
  31709. ]
  31710. ))
  31711. characterMakers.push(() => makeCharacter(
  31712. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31713. {
  31714. front: {
  31715. height: math.unit(6, "feet"),
  31716. weight: math.unit(150, "lb"),
  31717. name: "Front",
  31718. image: {
  31719. source: "./media/characters/haze-orris/front.svg",
  31720. extra: 3975 / 3525,
  31721. bottom: 137 / 4112
  31722. }
  31723. },
  31724. },
  31725. [
  31726. {
  31727. name: "Micro",
  31728. height: math.unit(150, "mm"),
  31729. default: true
  31730. },
  31731. ]
  31732. ))
  31733. characterMakers.push(() => makeCharacter(
  31734. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31735. {
  31736. front: {
  31737. height: math.unit(6, "feet"),
  31738. weight: math.unit(150, "lb"),
  31739. name: "Front",
  31740. image: {
  31741. source: "./media/characters/casselene-yaro/front.svg",
  31742. extra: 4721 / 4541,
  31743. bottom: 82 / 4803
  31744. }
  31745. },
  31746. back: {
  31747. height: math.unit(6, "feet"),
  31748. weight: math.unit(150, "lb"),
  31749. name: "Back",
  31750. image: {
  31751. source: "./media/characters/casselene-yaro/back.svg",
  31752. extra: 4569 / 4377,
  31753. bottom: 69 / 4638
  31754. }
  31755. },
  31756. dressed: {
  31757. height: math.unit(6, "feet"),
  31758. weight: math.unit(150, "lb"),
  31759. name: "Dressed",
  31760. image: {
  31761. source: "./media/characters/casselene-yaro/dressed.svg",
  31762. extra: 4721 / 4541,
  31763. bottom: 82 / 4803
  31764. }
  31765. },
  31766. maw: {
  31767. height: math.unit(1, "feet"),
  31768. name: "Maw",
  31769. image: {
  31770. source: "./media/characters/casselene-yaro/maw.svg"
  31771. }
  31772. },
  31773. },
  31774. [
  31775. {
  31776. name: "Macro",
  31777. height: math.unit(190, "feet"),
  31778. default: true
  31779. },
  31780. ]
  31781. ))
  31782. characterMakers.push(() => makeCharacter(
  31783. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31784. {
  31785. front: {
  31786. height: math.unit(10, "feet"),
  31787. weight: math.unit(15015, "lb"),
  31788. name: "Front",
  31789. image: {
  31790. source: "./media/characters/platine/front.svg",
  31791. extra: 1741/1650,
  31792. bottom: 84/1825
  31793. }
  31794. },
  31795. side: {
  31796. height: math.unit(10, "feet"),
  31797. weight: math.unit(15015, "lb"),
  31798. name: "Side",
  31799. image: {
  31800. source: "./media/characters/platine/side.svg",
  31801. extra: 1790/1705,
  31802. bottom: 29/1819
  31803. }
  31804. },
  31805. },
  31806. [
  31807. {
  31808. name: "Normal",
  31809. height: math.unit(10, "feet"),
  31810. default: true
  31811. },
  31812. {
  31813. name: "Macro",
  31814. height: math.unit(100, "feet")
  31815. },
  31816. {
  31817. name: "Megamacro",
  31818. height: math.unit(1000, "feet")
  31819. },
  31820. ]
  31821. ))
  31822. characterMakers.push(() => makeCharacter(
  31823. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31824. {
  31825. front: {
  31826. height: math.unit(15 + 5 / 12, "feet"),
  31827. weight: math.unit(4600, "lb"),
  31828. name: "Front",
  31829. image: {
  31830. source: "./media/characters/neapolitan-ananassa/front.svg",
  31831. extra: 2903 / 2736,
  31832. bottom: 0 / 2903
  31833. }
  31834. },
  31835. side: {
  31836. height: math.unit(15 + 5 / 12, "feet"),
  31837. weight: math.unit(4600, "lb"),
  31838. name: "Side",
  31839. image: {
  31840. source: "./media/characters/neapolitan-ananassa/side.svg",
  31841. extra: 2925 / 2719,
  31842. bottom: 0 / 2925
  31843. }
  31844. },
  31845. back: {
  31846. height: math.unit(15 + 5 / 12, "feet"),
  31847. weight: math.unit(4600, "lb"),
  31848. name: "Back",
  31849. image: {
  31850. source: "./media/characters/neapolitan-ananassa/back.svg",
  31851. extra: 2903 / 2736,
  31852. bottom: 0 / 2903
  31853. }
  31854. },
  31855. },
  31856. [
  31857. {
  31858. name: "Normal",
  31859. height: math.unit(15 + 5 / 12, "feet"),
  31860. default: true
  31861. },
  31862. {
  31863. name: "Post-Millenium",
  31864. height: math.unit(35 + 5 / 12, "feet")
  31865. },
  31866. {
  31867. name: "Post-Era",
  31868. height: math.unit(450 + 5 / 12, "feet")
  31869. },
  31870. ]
  31871. ))
  31872. characterMakers.push(() => makeCharacter(
  31873. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31874. {
  31875. front: {
  31876. height: math.unit(300, "meters"),
  31877. weight: math.unit(125000, "tonnes"),
  31878. name: "Front",
  31879. image: {
  31880. source: "./media/characters/pazuzu/front.svg",
  31881. extra: 877 / 794,
  31882. bottom: 47 / 924
  31883. }
  31884. },
  31885. },
  31886. [
  31887. {
  31888. name: "Macro",
  31889. height: math.unit(300, "meters"),
  31890. default: true
  31891. },
  31892. ]
  31893. ))
  31894. characterMakers.push(() => makeCharacter(
  31895. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31896. {
  31897. side: {
  31898. height: math.unit(10 + 7 / 12, "feet"),
  31899. weight: math.unit(2.5, "tons"),
  31900. name: "Side",
  31901. image: {
  31902. source: "./media/characters/aasha/side.svg",
  31903. extra: 1345 / 1245,
  31904. bottom: 111 / 1456
  31905. }
  31906. },
  31907. back: {
  31908. height: math.unit(10 + 7 / 12, "feet"),
  31909. weight: math.unit(2.5, "tons"),
  31910. name: "Back",
  31911. image: {
  31912. source: "./media/characters/aasha/back.svg",
  31913. extra: 1133 / 1057,
  31914. bottom: 257 / 1390
  31915. }
  31916. },
  31917. },
  31918. [
  31919. {
  31920. name: "Normal",
  31921. height: math.unit(10 + 7 / 12, "feet"),
  31922. default: true
  31923. },
  31924. ]
  31925. ))
  31926. characterMakers.push(() => makeCharacter(
  31927. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31928. {
  31929. front: {
  31930. height: math.unit(6 + 3 / 12, "feet"),
  31931. name: "Front",
  31932. image: {
  31933. source: "./media/characters/nevan/front.svg",
  31934. extra: 704 / 704,
  31935. bottom: 28 / 732
  31936. }
  31937. },
  31938. back: {
  31939. height: math.unit(6 + 3 / 12, "feet"),
  31940. name: "Back",
  31941. image: {
  31942. source: "./media/characters/nevan/back.svg",
  31943. extra: 714 / 714,
  31944. bottom: 21 / 735
  31945. }
  31946. },
  31947. frontFlaccid: {
  31948. height: math.unit(6 + 3 / 12, "feet"),
  31949. name: "Front (Flaccid)",
  31950. image: {
  31951. source: "./media/characters/nevan/front-flaccid.svg",
  31952. extra: 704 / 704,
  31953. bottom: 28 / 732
  31954. }
  31955. },
  31956. frontErect: {
  31957. height: math.unit(6 + 3 / 12, "feet"),
  31958. name: "Front (Erect)",
  31959. image: {
  31960. source: "./media/characters/nevan/front-erect.svg",
  31961. extra: 704 / 704,
  31962. bottom: 28 / 732
  31963. }
  31964. },
  31965. backFlaccid: {
  31966. height: math.unit(6 + 3 / 12, "feet"),
  31967. name: "Back (Flaccid)",
  31968. image: {
  31969. source: "./media/characters/nevan/back-flaccid.svg",
  31970. extra: 714 / 714,
  31971. bottom: 21 / 735
  31972. }
  31973. },
  31974. },
  31975. [
  31976. {
  31977. name: "Normal",
  31978. height: math.unit(6 + 3 / 12, "feet"),
  31979. default: true
  31980. },
  31981. ]
  31982. ))
  31983. characterMakers.push(() => makeCharacter(
  31984. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31985. {
  31986. front: {
  31987. height: math.unit(4, "feet"),
  31988. name: "Front",
  31989. image: {
  31990. source: "./media/characters/arhan/front.svg",
  31991. extra: 3368 / 3133,
  31992. bottom: 0 / 3368
  31993. }
  31994. },
  31995. side: {
  31996. height: math.unit(4, "feet"),
  31997. name: "Side",
  31998. image: {
  31999. source: "./media/characters/arhan/side.svg",
  32000. extra: 3347 / 3105,
  32001. bottom: 0 / 3347
  32002. }
  32003. },
  32004. tongue: {
  32005. height: math.unit(1.42, "feet"),
  32006. name: "Tongue",
  32007. image: {
  32008. source: "./media/characters/arhan/tongue.svg"
  32009. }
  32010. },
  32011. head: {
  32012. height: math.unit(0.85, "feet"),
  32013. name: "Head",
  32014. image: {
  32015. source: "./media/characters/arhan/head.svg"
  32016. }
  32017. },
  32018. },
  32019. [
  32020. {
  32021. name: "Normal",
  32022. height: math.unit(4, "feet"),
  32023. default: true
  32024. },
  32025. ]
  32026. ))
  32027. characterMakers.push(() => makeCharacter(
  32028. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32029. {
  32030. front: {
  32031. height: math.unit(5 + 7.5 / 12, "feet"),
  32032. weight: math.unit(120, "lb"),
  32033. name: "Front",
  32034. image: {
  32035. source: "./media/characters/digi-duncan/front.svg",
  32036. extra: 330 / 326,
  32037. bottom: 16 / 346
  32038. }
  32039. },
  32040. side: {
  32041. height: math.unit(5 + 7.5 / 12, "feet"),
  32042. weight: math.unit(120, "lb"),
  32043. name: "Side",
  32044. image: {
  32045. source: "./media/characters/digi-duncan/side.svg",
  32046. extra: 341 / 337,
  32047. bottom: 1 / 342
  32048. }
  32049. },
  32050. back: {
  32051. height: math.unit(5 + 7.5 / 12, "feet"),
  32052. weight: math.unit(120, "lb"),
  32053. name: "Back",
  32054. image: {
  32055. source: "./media/characters/digi-duncan/back.svg",
  32056. extra: 330 / 326,
  32057. bottom: 12 / 342
  32058. }
  32059. },
  32060. },
  32061. [
  32062. {
  32063. name: "Speck",
  32064. height: math.unit(0.25, "mm")
  32065. },
  32066. {
  32067. name: "Micro",
  32068. height: math.unit(5, "mm")
  32069. },
  32070. {
  32071. name: "Tiny",
  32072. height: math.unit(0.5, "inches"),
  32073. default: true
  32074. },
  32075. {
  32076. name: "Human",
  32077. height: math.unit(5 + 7.5 / 12, "feet")
  32078. },
  32079. {
  32080. name: "Minigiant",
  32081. height: math.unit(8 + 5.25, "feet")
  32082. },
  32083. {
  32084. name: "Giant",
  32085. height: math.unit(2000, "feet")
  32086. },
  32087. {
  32088. name: "Mega",
  32089. height: math.unit(371.1, "miles")
  32090. },
  32091. ]
  32092. ))
  32093. characterMakers.push(() => makeCharacter(
  32094. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32095. {
  32096. front: {
  32097. height: math.unit(2, "meters"),
  32098. weight: math.unit(350, "kg"),
  32099. name: "Front",
  32100. image: {
  32101. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32102. extra: 898 / 838,
  32103. bottom: 9 / 907
  32104. }
  32105. },
  32106. },
  32107. [
  32108. {
  32109. name: "Micro",
  32110. height: math.unit(8, "meters")
  32111. },
  32112. {
  32113. name: "Normal",
  32114. height: math.unit(50, "meters"),
  32115. default: true
  32116. },
  32117. {
  32118. name: "Macro",
  32119. height: math.unit(500, "meters")
  32120. },
  32121. ]
  32122. ))
  32123. characterMakers.push(() => makeCharacter(
  32124. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32125. {
  32126. front: {
  32127. height: math.unit(6 + 6 / 12, "feet"),
  32128. name: "Front",
  32129. image: {
  32130. source: "./media/characters/khardesh/front.svg",
  32131. extra: 1788/1596,
  32132. bottom: 66/1854
  32133. }
  32134. },
  32135. back: {
  32136. height: math.unit(6 + 6 / 12, "feet"),
  32137. name: "Back",
  32138. image: {
  32139. source: "./media/characters/khardesh/back.svg",
  32140. extra: 1781/1584,
  32141. bottom: 68/1849
  32142. }
  32143. },
  32144. },
  32145. [
  32146. {
  32147. name: "Normal",
  32148. height: math.unit(6 + 6 / 12, "feet"),
  32149. default: true
  32150. },
  32151. {
  32152. name: "Normal+",
  32153. height: math.unit(4, "meters")
  32154. },
  32155. {
  32156. name: "Macro",
  32157. height: math.unit(50, "meters")
  32158. },
  32159. {
  32160. name: "Macro+",
  32161. height: math.unit(100, "meters")
  32162. },
  32163. {
  32164. name: "Megamacro",
  32165. height: math.unit(20, "km")
  32166. },
  32167. ]
  32168. ))
  32169. characterMakers.push(() => makeCharacter(
  32170. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32171. {
  32172. front: {
  32173. height: math.unit(6, "feet"),
  32174. weight: math.unit(150, "lb"),
  32175. name: "Front",
  32176. image: {
  32177. source: "./media/characters/kosho/front.svg",
  32178. extra: 1847 / 1847,
  32179. bottom: 86 / 1933
  32180. }
  32181. },
  32182. },
  32183. [
  32184. {
  32185. name: "Second-stage micro",
  32186. height: math.unit(0.5, "inches")
  32187. },
  32188. {
  32189. name: "First-stage micro",
  32190. height: math.unit(6, "inches")
  32191. },
  32192. {
  32193. name: "Normal",
  32194. height: math.unit(6, "feet"),
  32195. default: true
  32196. },
  32197. {
  32198. name: "First-stage macro",
  32199. height: math.unit(72, "feet")
  32200. },
  32201. {
  32202. name: "Second-stage macro",
  32203. height: math.unit(864, "feet")
  32204. },
  32205. ]
  32206. ))
  32207. characterMakers.push(() => makeCharacter(
  32208. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32209. {
  32210. normal: {
  32211. height: math.unit(4 + 6 / 12, "feet"),
  32212. name: "Normal",
  32213. image: {
  32214. source: "./media/characters/hydra/normal.svg",
  32215. extra: 2833 / 2634,
  32216. bottom: 68 / 2901
  32217. }
  32218. },
  32219. smol: {
  32220. height: math.unit(0.705, "inches"),
  32221. name: "Smol",
  32222. image: {
  32223. source: "./media/characters/hydra/smol.svg",
  32224. extra: 2715 / 2540,
  32225. bottom: 0 / 2715
  32226. }
  32227. },
  32228. },
  32229. [
  32230. {
  32231. name: "Normal",
  32232. height: math.unit(4 + 6 / 12, "feet"),
  32233. default: true
  32234. }
  32235. ]
  32236. ))
  32237. characterMakers.push(() => makeCharacter(
  32238. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32239. {
  32240. front: {
  32241. height: math.unit(0.6, "cm"),
  32242. name: "Front",
  32243. image: {
  32244. source: "./media/characters/daz/front.svg",
  32245. extra: 1682 / 1164,
  32246. bottom: 42 / 1724
  32247. }
  32248. },
  32249. },
  32250. [
  32251. {
  32252. name: "Normal",
  32253. height: math.unit(0.6, "cm"),
  32254. default: true
  32255. },
  32256. ]
  32257. ))
  32258. characterMakers.push(() => makeCharacter(
  32259. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32260. {
  32261. front: {
  32262. height: math.unit(6, "feet"),
  32263. weight: math.unit(235, "lb"),
  32264. name: "Front",
  32265. image: {
  32266. source: "./media/characters/theo-pangolin/front.svg",
  32267. extra: 1996 / 1969,
  32268. bottom: 115 / 2111
  32269. }
  32270. },
  32271. back: {
  32272. height: math.unit(6, "feet"),
  32273. weight: math.unit(235, "lb"),
  32274. name: "Back",
  32275. image: {
  32276. source: "./media/characters/theo-pangolin/back.svg",
  32277. extra: 1979 / 1979,
  32278. bottom: 40 / 2019
  32279. }
  32280. },
  32281. feral: {
  32282. height: math.unit(2, "feet"),
  32283. weight: math.unit(30, "lb"),
  32284. name: "Feral",
  32285. image: {
  32286. source: "./media/characters/theo-pangolin/feral.svg",
  32287. extra: 803 / 791,
  32288. bottom: 181 / 984
  32289. }
  32290. },
  32291. footFive: {
  32292. height: math.unit(1.43, "feet"),
  32293. name: "Foot (Five Toes)",
  32294. image: {
  32295. source: "./media/characters/theo-pangolin/foot-five.svg"
  32296. }
  32297. },
  32298. footFour: {
  32299. height: math.unit(1.43, "feet"),
  32300. name: "Foot (Four Toes)",
  32301. image: {
  32302. source: "./media/characters/theo-pangolin/foot-four.svg"
  32303. }
  32304. },
  32305. handFour: {
  32306. height: math.unit(0.81, "feet"),
  32307. name: "Hand (Four Fingers)",
  32308. image: {
  32309. source: "./media/characters/theo-pangolin/hand-four.svg"
  32310. }
  32311. },
  32312. handThree: {
  32313. height: math.unit(0.81, "feet"),
  32314. name: "Hand (Three Fingers)",
  32315. image: {
  32316. source: "./media/characters/theo-pangolin/hand-three.svg"
  32317. }
  32318. },
  32319. headFront: {
  32320. height: math.unit(1.37, "feet"),
  32321. name: "Head (Front)",
  32322. image: {
  32323. source: "./media/characters/theo-pangolin/head-front.svg"
  32324. }
  32325. },
  32326. headSide: {
  32327. height: math.unit(1.43, "feet"),
  32328. name: "Head (Side)",
  32329. image: {
  32330. source: "./media/characters/theo-pangolin/head-side.svg"
  32331. }
  32332. },
  32333. tongue: {
  32334. height: math.unit(2.29, "feet"),
  32335. name: "Tongue",
  32336. image: {
  32337. source: "./media/characters/theo-pangolin/tongue.svg"
  32338. }
  32339. },
  32340. },
  32341. [
  32342. {
  32343. name: "Normal",
  32344. height: math.unit(6, "feet")
  32345. },
  32346. {
  32347. name: "Macro",
  32348. height: math.unit(400, "feet"),
  32349. default: true
  32350. },
  32351. ]
  32352. ))
  32353. characterMakers.push(() => makeCharacter(
  32354. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32355. {
  32356. front: {
  32357. height: math.unit(6, "inches"),
  32358. weight: math.unit(0.036, "kg"),
  32359. name: "Front",
  32360. image: {
  32361. source: "./media/characters/renée/front.svg",
  32362. extra: 900 / 886,
  32363. bottom: 8 / 908
  32364. }
  32365. },
  32366. },
  32367. [
  32368. {
  32369. name: "Nano",
  32370. height: math.unit(1, "nm")
  32371. },
  32372. {
  32373. name: "Micro",
  32374. height: math.unit(1, "mm")
  32375. },
  32376. {
  32377. name: "Normal",
  32378. height: math.unit(6, "inches")
  32379. },
  32380. {
  32381. name: "Macro",
  32382. height: math.unit(2000, "feet"),
  32383. default: true
  32384. },
  32385. {
  32386. name: "Megamacro",
  32387. height: math.unit(2, "km")
  32388. },
  32389. {
  32390. name: "Gigamacro",
  32391. height: math.unit(2000, "km")
  32392. },
  32393. {
  32394. name: "Teramacro",
  32395. height: math.unit(250000, "km")
  32396. },
  32397. ]
  32398. ))
  32399. characterMakers.push(() => makeCharacter(
  32400. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32401. {
  32402. front: {
  32403. height: math.unit(4, "meters"),
  32404. weight: math.unit(150, "kg"),
  32405. name: "Front",
  32406. image: {
  32407. source: "./media/characters/caledvwlch/front.svg",
  32408. extra: 1757/1537,
  32409. bottom: 31/1788
  32410. }
  32411. },
  32412. side: {
  32413. height: math.unit(4, "meters"),
  32414. weight: math.unit(150, "kg"),
  32415. name: "Side",
  32416. image: {
  32417. source: "./media/characters/caledvwlch/side.svg",
  32418. extra: 1605 / 1536,
  32419. bottom: 31 / 1636
  32420. }
  32421. },
  32422. back: {
  32423. height: math.unit(4, "meters"),
  32424. weight: math.unit(150, "kg"),
  32425. name: "Back",
  32426. image: {
  32427. source: "./media/characters/caledvwlch/back.svg",
  32428. extra: 1635 / 1565,
  32429. bottom: 27 / 1662
  32430. }
  32431. },
  32432. },
  32433. [
  32434. {
  32435. name: "\"Incognito\"",
  32436. height: math.unit(4, "meters")
  32437. },
  32438. {
  32439. name: "Small rampage",
  32440. height: math.unit(600, "meters")
  32441. },
  32442. {
  32443. name: "Mega",
  32444. height: math.unit(30, "km")
  32445. },
  32446. {
  32447. name: "Home-size",
  32448. height: math.unit(50, "km"),
  32449. default: true
  32450. },
  32451. {
  32452. name: "Giga",
  32453. height: math.unit(300, "km")
  32454. },
  32455. {
  32456. name: "Lounging",
  32457. height: math.unit(11000, "km")
  32458. },
  32459. {
  32460. name: "Planet snacking",
  32461. height: math.unit(2000000, "km")
  32462. },
  32463. ]
  32464. ))
  32465. characterMakers.push(() => makeCharacter(
  32466. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32467. {
  32468. front: {
  32469. height: math.unit(6, "feet"),
  32470. weight: math.unit(215, "lb"),
  32471. name: "Front",
  32472. image: {
  32473. source: "./media/characters/sapphire-svell/front.svg",
  32474. extra: 495 / 455,
  32475. bottom: 20 / 515
  32476. }
  32477. },
  32478. back: {
  32479. height: math.unit(6, "feet"),
  32480. weight: math.unit(216, "lb"),
  32481. name: "Back",
  32482. image: {
  32483. source: "./media/characters/sapphire-svell/back.svg",
  32484. extra: 497 / 477,
  32485. bottom: 7 / 504
  32486. }
  32487. },
  32488. maw: {
  32489. height: math.unit(1.57, "feet"),
  32490. name: "Maw",
  32491. image: {
  32492. source: "./media/characters/sapphire-svell/maw.svg"
  32493. }
  32494. },
  32495. foot: {
  32496. height: math.unit(1.07, "feet"),
  32497. name: "Foot",
  32498. image: {
  32499. source: "./media/characters/sapphire-svell/foot.svg"
  32500. }
  32501. },
  32502. toering: {
  32503. height: math.unit(1.7, "inch"),
  32504. name: "Toering",
  32505. image: {
  32506. source: "./media/characters/sapphire-svell/toering.svg"
  32507. }
  32508. },
  32509. },
  32510. [
  32511. {
  32512. name: "Normal",
  32513. height: math.unit(300, "feet"),
  32514. default: true
  32515. },
  32516. {
  32517. name: "Augmented",
  32518. height: math.unit(1250, "feet")
  32519. },
  32520. {
  32521. name: "Unleashed",
  32522. height: math.unit(3000, "feet")
  32523. },
  32524. ]
  32525. ))
  32526. characterMakers.push(() => makeCharacter(
  32527. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32528. {
  32529. side: {
  32530. height: math.unit(2 + 3 / 12, "feet"),
  32531. weight: math.unit(110, "lb"),
  32532. name: "Side",
  32533. image: {
  32534. source: "./media/characters/glitch-flux/side.svg",
  32535. extra: 997 / 805,
  32536. bottom: 20 / 1017
  32537. }
  32538. },
  32539. },
  32540. [
  32541. {
  32542. name: "Normal",
  32543. height: math.unit(2 + 3 / 12, "feet"),
  32544. default: true
  32545. },
  32546. ]
  32547. ))
  32548. characterMakers.push(() => makeCharacter(
  32549. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32550. {
  32551. front: {
  32552. height: math.unit(4, "meters"),
  32553. name: "Front",
  32554. image: {
  32555. source: "./media/characters/mid/front.svg",
  32556. extra: 507 / 476,
  32557. bottom: 17 / 524
  32558. }
  32559. },
  32560. back: {
  32561. height: math.unit(4, "meters"),
  32562. name: "Back",
  32563. image: {
  32564. source: "./media/characters/mid/back.svg",
  32565. extra: 519 / 487,
  32566. bottom: 7 / 526
  32567. }
  32568. },
  32569. stuck: {
  32570. height: math.unit(2.2, "meters"),
  32571. name: "Stuck",
  32572. image: {
  32573. source: "./media/characters/mid/stuck.svg",
  32574. extra: 1951 / 1869,
  32575. bottom: 88 / 2039
  32576. }
  32577. }
  32578. },
  32579. [
  32580. {
  32581. name: "Normal",
  32582. height: math.unit(4, "meters"),
  32583. default: true
  32584. },
  32585. {
  32586. name: "Big",
  32587. height: math.unit(10, "meters")
  32588. },
  32589. {
  32590. name: "Macro",
  32591. height: math.unit(800, "meters")
  32592. },
  32593. {
  32594. name: "Megamacro",
  32595. height: math.unit(100, "km")
  32596. },
  32597. {
  32598. name: "Overgrown",
  32599. height: math.unit(1, "parsec")
  32600. },
  32601. ]
  32602. ))
  32603. characterMakers.push(() => makeCharacter(
  32604. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32605. {
  32606. front: {
  32607. height: math.unit(2.5, "meters"),
  32608. weight: math.unit(225, "kg"),
  32609. name: "Front",
  32610. image: {
  32611. source: "./media/characters/iris/front.svg",
  32612. extra: 3348 / 3251,
  32613. bottom: 205 / 3553
  32614. }
  32615. },
  32616. maw: {
  32617. height: math.unit(0.56, "meter"),
  32618. name: "Maw",
  32619. image: {
  32620. source: "./media/characters/iris/maw.svg"
  32621. }
  32622. },
  32623. },
  32624. [
  32625. {
  32626. name: "Mewter cat",
  32627. height: math.unit(1.2, "meters")
  32628. },
  32629. {
  32630. name: "Normal",
  32631. height: math.unit(2.5, "meters"),
  32632. default: true
  32633. },
  32634. {
  32635. name: "Minimacro",
  32636. height: math.unit(18, "feet")
  32637. },
  32638. {
  32639. name: "Macro",
  32640. height: math.unit(140, "feet")
  32641. },
  32642. {
  32643. name: "Macro+",
  32644. height: math.unit(180, "meters")
  32645. },
  32646. {
  32647. name: "Megamacro",
  32648. height: math.unit(2746, "meters")
  32649. },
  32650. ]
  32651. ))
  32652. characterMakers.push(() => makeCharacter(
  32653. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32654. {
  32655. front: {
  32656. height: math.unit(6, "feet"),
  32657. weight: math.unit(135, "lb"),
  32658. name: "Front",
  32659. image: {
  32660. source: "./media/characters/axel/front.svg",
  32661. extra: 908 / 908,
  32662. bottom: 58 / 966
  32663. }
  32664. },
  32665. side: {
  32666. height: math.unit(6, "feet"),
  32667. weight: math.unit(135, "lb"),
  32668. name: "Side",
  32669. image: {
  32670. source: "./media/characters/axel/side.svg",
  32671. extra: 958 / 958,
  32672. bottom: 11 / 969
  32673. }
  32674. },
  32675. back: {
  32676. height: math.unit(6, "feet"),
  32677. weight: math.unit(135, "lb"),
  32678. name: "Back",
  32679. image: {
  32680. source: "./media/characters/axel/back.svg",
  32681. extra: 887 / 887,
  32682. bottom: 34 / 921
  32683. }
  32684. },
  32685. head: {
  32686. height: math.unit(1.07, "feet"),
  32687. name: "Head",
  32688. image: {
  32689. source: "./media/characters/axel/head.svg"
  32690. }
  32691. },
  32692. beak: {
  32693. height: math.unit(1.4, "feet"),
  32694. name: "Beak",
  32695. image: {
  32696. source: "./media/characters/axel/beak.svg"
  32697. }
  32698. },
  32699. beakSide: {
  32700. height: math.unit(1.4, "feet"),
  32701. name: "Beak Side",
  32702. image: {
  32703. source: "./media/characters/axel/beak-side.svg"
  32704. }
  32705. },
  32706. sheath: {
  32707. height: math.unit(0.5, "feet"),
  32708. name: "Sheath",
  32709. image: {
  32710. source: "./media/characters/axel/sheath.svg"
  32711. }
  32712. },
  32713. dick: {
  32714. height: math.unit(0.98, "feet"),
  32715. name: "Dick",
  32716. image: {
  32717. source: "./media/characters/axel/dick.svg"
  32718. }
  32719. },
  32720. },
  32721. [
  32722. {
  32723. name: "Macro",
  32724. height: math.unit(68, "meters"),
  32725. default: true
  32726. },
  32727. ]
  32728. ))
  32729. characterMakers.push(() => makeCharacter(
  32730. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32731. {
  32732. front: {
  32733. height: math.unit(3.5, "meters"),
  32734. weight: math.unit(1200, "kg"),
  32735. name: "Front",
  32736. image: {
  32737. source: "./media/characters/joanna/front.svg",
  32738. extra: 1596 / 1488,
  32739. bottom: 29 / 1625
  32740. }
  32741. },
  32742. back: {
  32743. height: math.unit(3.5, "meters"),
  32744. weight: math.unit(1200, "kg"),
  32745. name: "Back",
  32746. image: {
  32747. source: "./media/characters/joanna/back.svg",
  32748. extra: 1594 / 1495,
  32749. bottom: 26 / 1620
  32750. }
  32751. },
  32752. frontShorts: {
  32753. height: math.unit(3.5, "meters"),
  32754. weight: math.unit(1200, "kg"),
  32755. name: "Front (Shorts)",
  32756. image: {
  32757. source: "./media/characters/joanna/front-shorts.svg",
  32758. extra: 1596 / 1488,
  32759. bottom: 29 / 1625
  32760. }
  32761. },
  32762. frontBiker: {
  32763. height: math.unit(3.5, "meters"),
  32764. weight: math.unit(1200, "kg"),
  32765. name: "Front (Biker)",
  32766. image: {
  32767. source: "./media/characters/joanna/front-biker.svg",
  32768. extra: 1596 / 1488,
  32769. bottom: 29 / 1625
  32770. }
  32771. },
  32772. backBiker: {
  32773. height: math.unit(3.5, "meters"),
  32774. weight: math.unit(1200, "kg"),
  32775. name: "Back (Biker)",
  32776. image: {
  32777. source: "./media/characters/joanna/back-biker.svg",
  32778. extra: 1594 / 1495,
  32779. bottom: 88 / 1682
  32780. }
  32781. },
  32782. bikeLeft: {
  32783. height: math.unit(2.4, "meters"),
  32784. weight: math.unit(1600, "kg"),
  32785. name: "Bike (Left)",
  32786. image: {
  32787. source: "./media/characters/joanna/bike-left.svg",
  32788. extra: 720 / 720,
  32789. bottom: 8 / 728
  32790. }
  32791. },
  32792. bikeRight: {
  32793. height: math.unit(2.4, "meters"),
  32794. weight: math.unit(1600, "kg"),
  32795. name: "Bike (Right)",
  32796. image: {
  32797. source: "./media/characters/joanna/bike-right.svg",
  32798. extra: 720 / 720,
  32799. bottom: 8 / 728
  32800. }
  32801. },
  32802. },
  32803. [
  32804. {
  32805. name: "Incognito",
  32806. height: math.unit(3.5, "meters")
  32807. },
  32808. {
  32809. name: "Casual Big",
  32810. height: math.unit(200, "meters")
  32811. },
  32812. {
  32813. name: "Macro",
  32814. height: math.unit(600, "meters")
  32815. },
  32816. {
  32817. name: "Original",
  32818. height: math.unit(20, "km"),
  32819. default: true
  32820. },
  32821. {
  32822. name: "Giga",
  32823. height: math.unit(400, "km")
  32824. },
  32825. {
  32826. name: "Lounging",
  32827. height: math.unit(1500, "km")
  32828. },
  32829. {
  32830. name: "Planetary",
  32831. height: math.unit(200000, "km")
  32832. },
  32833. ]
  32834. ))
  32835. characterMakers.push(() => makeCharacter(
  32836. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32837. {
  32838. front: {
  32839. height: math.unit(6, "feet"),
  32840. weight: math.unit(150, "lb"),
  32841. name: "Front",
  32842. image: {
  32843. source: "./media/characters/hugo-sigil/front.svg",
  32844. extra: 522 / 500,
  32845. bottom: 2 / 524
  32846. }
  32847. },
  32848. back: {
  32849. height: math.unit(6, "feet"),
  32850. weight: math.unit(150, "lb"),
  32851. name: "Back",
  32852. image: {
  32853. source: "./media/characters/hugo-sigil/back.svg",
  32854. extra: 519 / 495,
  32855. bottom: 5 / 524
  32856. }
  32857. },
  32858. maw: {
  32859. height: math.unit(1.4, "feet"),
  32860. weight: math.unit(150, "lb"),
  32861. name: "Maw",
  32862. image: {
  32863. source: "./media/characters/hugo-sigil/maw.svg"
  32864. }
  32865. },
  32866. feet: {
  32867. height: math.unit(1.56, "feet"),
  32868. weight: math.unit(150, "lb"),
  32869. name: "Feet",
  32870. image: {
  32871. source: "./media/characters/hugo-sigil/feet.svg",
  32872. extra: 177 / 177,
  32873. bottom: 12 / 189
  32874. }
  32875. },
  32876. },
  32877. [
  32878. {
  32879. name: "Normal",
  32880. height: math.unit(6, "feet")
  32881. },
  32882. {
  32883. name: "Macro",
  32884. height: math.unit(200, "feet"),
  32885. default: true
  32886. },
  32887. ]
  32888. ))
  32889. characterMakers.push(() => makeCharacter(
  32890. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32891. {
  32892. front: {
  32893. height: math.unit(6, "feet"),
  32894. weight: math.unit(150, "lb"),
  32895. name: "Front",
  32896. image: {
  32897. source: "./media/characters/peri/front.svg",
  32898. extra: 2354 / 2233,
  32899. bottom: 49 / 2403
  32900. }
  32901. },
  32902. },
  32903. [
  32904. {
  32905. name: "Really Small",
  32906. height: math.unit(1, "nm")
  32907. },
  32908. {
  32909. name: "Micro",
  32910. height: math.unit(4, "inches")
  32911. },
  32912. {
  32913. name: "Normal",
  32914. height: math.unit(7, "inches"),
  32915. default: true
  32916. },
  32917. {
  32918. name: "Macro",
  32919. height: math.unit(400, "feet")
  32920. },
  32921. {
  32922. name: "Megamacro",
  32923. height: math.unit(100, "miles")
  32924. },
  32925. ]
  32926. ))
  32927. characterMakers.push(() => makeCharacter(
  32928. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32929. {
  32930. frontSlim: {
  32931. height: math.unit(7, "feet"),
  32932. name: "Front (Slim)",
  32933. image: {
  32934. source: "./media/characters/issilora/front-slim.svg",
  32935. extra: 529 / 449,
  32936. bottom: 53 / 582
  32937. }
  32938. },
  32939. sideSlim: {
  32940. height: math.unit(7, "feet"),
  32941. name: "Side (Slim)",
  32942. image: {
  32943. source: "./media/characters/issilora/side-slim.svg",
  32944. extra: 570 / 480,
  32945. bottom: 30 / 600
  32946. }
  32947. },
  32948. backSlim: {
  32949. height: math.unit(7, "feet"),
  32950. name: "Back (Slim)",
  32951. image: {
  32952. source: "./media/characters/issilora/back-slim.svg",
  32953. extra: 537 / 455,
  32954. bottom: 46 / 583
  32955. }
  32956. },
  32957. frontBuff: {
  32958. height: math.unit(7, "feet"),
  32959. name: "Front (Buff)",
  32960. image: {
  32961. source: "./media/characters/issilora/front-buff.svg",
  32962. extra: 2310 / 2035,
  32963. bottom: 335 / 2645
  32964. }
  32965. },
  32966. head: {
  32967. height: math.unit(1.94, "feet"),
  32968. name: "Head",
  32969. image: {
  32970. source: "./media/characters/issilora/head.svg"
  32971. }
  32972. },
  32973. },
  32974. [
  32975. {
  32976. name: "Minimum",
  32977. height: math.unit(7, "feet")
  32978. },
  32979. {
  32980. name: "Comfortable",
  32981. height: math.unit(17, "feet")
  32982. },
  32983. {
  32984. name: "Fun Size",
  32985. height: math.unit(47, "feet")
  32986. },
  32987. {
  32988. name: "Natural Macro",
  32989. height: math.unit(137, "feet"),
  32990. default: true
  32991. },
  32992. {
  32993. name: "Maximum Kaiju",
  32994. height: math.unit(397, "feet")
  32995. },
  32996. ]
  32997. ))
  32998. characterMakers.push(() => makeCharacter(
  32999. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33000. {
  33001. front: {
  33002. height: math.unit(50 + 9/12, "feet"),
  33003. weight: math.unit(32.8, "tons"),
  33004. name: "Front",
  33005. image: {
  33006. source: "./media/characters/irb'iiritaahn/front.svg",
  33007. extra: 1878/1826,
  33008. bottom: 326/2204
  33009. }
  33010. },
  33011. back: {
  33012. height: math.unit(50 + 9/12, "feet"),
  33013. weight: math.unit(32.8, "tons"),
  33014. name: "Back",
  33015. image: {
  33016. source: "./media/characters/irb'iiritaahn/back.svg",
  33017. extra: 2052/2018,
  33018. bottom: 152/2204
  33019. }
  33020. },
  33021. head: {
  33022. height: math.unit(12.86, "feet"),
  33023. name: "Head",
  33024. image: {
  33025. source: "./media/characters/irb'iiritaahn/head.svg"
  33026. }
  33027. },
  33028. maw: {
  33029. height: math.unit(9.66, "feet"),
  33030. name: "Maw",
  33031. image: {
  33032. source: "./media/characters/irb'iiritaahn/maw.svg"
  33033. }
  33034. },
  33035. frontDick: {
  33036. height: math.unit(8.78461, "feet"),
  33037. name: "Front Dick",
  33038. image: {
  33039. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33040. }
  33041. },
  33042. rearDick: {
  33043. height: math.unit(8.78461, "feet"),
  33044. name: "Rear Dick",
  33045. image: {
  33046. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33047. }
  33048. },
  33049. rearDickUnfolded: {
  33050. height: math.unit(8.78, "feet"),
  33051. name: "Rear Dick (Unfolded)",
  33052. image: {
  33053. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33054. }
  33055. },
  33056. wings: {
  33057. height: math.unit(43, "feet"),
  33058. name: "Wings",
  33059. image: {
  33060. source: "./media/characters/irb'iiritaahn/wings.svg"
  33061. }
  33062. },
  33063. },
  33064. [
  33065. {
  33066. name: "Macro",
  33067. height: math.unit(50 + 9/12, "feet"),
  33068. default: true
  33069. },
  33070. ]
  33071. ))
  33072. characterMakers.push(() => makeCharacter(
  33073. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33074. {
  33075. front: {
  33076. height: math.unit(205, "cm"),
  33077. weight: math.unit(102, "kg"),
  33078. name: "Front",
  33079. image: {
  33080. source: "./media/characters/irbisgreif/front.svg",
  33081. extra: 785/706,
  33082. bottom: 13/798
  33083. }
  33084. },
  33085. back: {
  33086. height: math.unit(205, "cm"),
  33087. weight: math.unit(102, "kg"),
  33088. name: "Back",
  33089. image: {
  33090. source: "./media/characters/irbisgreif/back.svg",
  33091. extra: 713/701,
  33092. bottom: 26/739
  33093. }
  33094. },
  33095. frontDressed: {
  33096. height: math.unit(216, "cm"),
  33097. weight: math.unit(102, "kg"),
  33098. name: "Front-dressed",
  33099. image: {
  33100. source: "./media/characters/irbisgreif/front-dressed.svg",
  33101. extra: 902/776,
  33102. bottom: 14/916
  33103. }
  33104. },
  33105. sideDressed: {
  33106. height: math.unit(195, "cm"),
  33107. weight: math.unit(102, "kg"),
  33108. name: "Side-dressed",
  33109. image: {
  33110. source: "./media/characters/irbisgreif/side-dressed.svg",
  33111. extra: 788/688,
  33112. bottom: 21/809
  33113. }
  33114. },
  33115. backDressed: {
  33116. height: math.unit(216, "cm"),
  33117. weight: math.unit(102, "kg"),
  33118. name: "Back-dressed",
  33119. image: {
  33120. source: "./media/characters/irbisgreif/back-dressed.svg",
  33121. extra: 901/783,
  33122. bottom: 10/911
  33123. }
  33124. },
  33125. dick: {
  33126. height: math.unit(0.49, "feet"),
  33127. name: "Dick",
  33128. image: {
  33129. source: "./media/characters/irbisgreif/dick.svg"
  33130. }
  33131. },
  33132. wingTop: {
  33133. height: math.unit(1.93 , "feet"),
  33134. name: "Wing-top",
  33135. image: {
  33136. source: "./media/characters/irbisgreif/wing-top.svg"
  33137. }
  33138. },
  33139. wingBottom: {
  33140. height: math.unit(1.93 , "feet"),
  33141. name: "Wing-bottom",
  33142. image: {
  33143. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33144. }
  33145. },
  33146. },
  33147. [
  33148. {
  33149. name: "Normal",
  33150. height: math.unit(216, "cm"),
  33151. default: true
  33152. },
  33153. ]
  33154. ))
  33155. characterMakers.push(() => makeCharacter(
  33156. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33157. {
  33158. front: {
  33159. height: math.unit(6, "feet"),
  33160. weight: math.unit(150, "lb"),
  33161. name: "Front",
  33162. image: {
  33163. source: "./media/characters/pride/front.svg",
  33164. extra: 1299/1230,
  33165. bottom: 18/1317
  33166. }
  33167. },
  33168. },
  33169. [
  33170. {
  33171. name: "Normal",
  33172. height: math.unit(7, "feet")
  33173. },
  33174. {
  33175. name: "Mini-macro",
  33176. height: math.unit(11, "feet")
  33177. },
  33178. {
  33179. name: "Macro",
  33180. height: math.unit(15, "meters"),
  33181. default: true
  33182. },
  33183. {
  33184. name: "Macro+",
  33185. height: math.unit(40, "meters")
  33186. },
  33187. ]
  33188. ))
  33189. characterMakers.push(() => makeCharacter(
  33190. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33191. {
  33192. front: {
  33193. height: math.unit(4 + 2 / 12, "feet"),
  33194. weight: math.unit(95, "lb"),
  33195. name: "Front",
  33196. image: {
  33197. source: "./media/characters/vaelophis-nyx/front.svg",
  33198. extra: 2532/2330,
  33199. bottom: 0/2532
  33200. }
  33201. },
  33202. back: {
  33203. height: math.unit(4 + 2 / 12, "feet"),
  33204. weight: math.unit(95, "lb"),
  33205. name: "Back",
  33206. image: {
  33207. source: "./media/characters/vaelophis-nyx/back.svg",
  33208. extra: 2484/2361,
  33209. bottom: 0/2484
  33210. }
  33211. },
  33212. feralSide: {
  33213. height: math.unit(2 + 1/12, "feet"),
  33214. weight: math.unit(20, "lb"),
  33215. name: "Feral (Side)",
  33216. image: {
  33217. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33218. extra: 1721/1581,
  33219. bottom: 70/1791
  33220. }
  33221. },
  33222. feralLazing: {
  33223. height: math.unit(1.08, "feet"),
  33224. weight: math.unit(20, "lb"),
  33225. name: "Feral (Lazing)",
  33226. image: {
  33227. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33228. extra: 822/822,
  33229. bottom: 248/1070
  33230. }
  33231. },
  33232. ear: {
  33233. height: math.unit(0.416, "feet"),
  33234. name: "Ear",
  33235. image: {
  33236. source: "./media/characters/vaelophis-nyx/ear.svg"
  33237. }
  33238. },
  33239. eye: {
  33240. height: math.unit(0.0748, "feet"),
  33241. name: "Eye",
  33242. image: {
  33243. source: "./media/characters/vaelophis-nyx/eye.svg"
  33244. }
  33245. },
  33246. mouth: {
  33247. height: math.unit(0.378, "feet"),
  33248. name: "Mouth",
  33249. image: {
  33250. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33251. }
  33252. },
  33253. spade: {
  33254. height: math.unit(0.55, "feet"),
  33255. name: "Spade",
  33256. image: {
  33257. source: "./media/characters/vaelophis-nyx/spade.svg"
  33258. }
  33259. },
  33260. },
  33261. [
  33262. {
  33263. name: "Normal",
  33264. height: math.unit(4 + 2/12, "feet"),
  33265. default: true
  33266. },
  33267. ]
  33268. ))
  33269. characterMakers.push(() => makeCharacter(
  33270. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33271. {
  33272. front: {
  33273. height: math.unit(7, "feet"),
  33274. weight: math.unit(231, "lb"),
  33275. name: "Front",
  33276. image: {
  33277. source: "./media/characters/flux/front.svg",
  33278. extra: 919/871,
  33279. bottom: 0/919
  33280. }
  33281. },
  33282. back: {
  33283. height: math.unit(7, "feet"),
  33284. weight: math.unit(231, "lb"),
  33285. name: "Back",
  33286. image: {
  33287. source: "./media/characters/flux/back.svg",
  33288. extra: 1040/992,
  33289. bottom: 0/1040
  33290. }
  33291. },
  33292. frontDressed: {
  33293. height: math.unit(7, "feet"),
  33294. weight: math.unit(231, "lb"),
  33295. name: "Front (Dressed)",
  33296. image: {
  33297. source: "./media/characters/flux/front-dressed.svg",
  33298. extra: 919/871,
  33299. bottom: 0/919
  33300. }
  33301. },
  33302. feralSide: {
  33303. height: math.unit(5, "feet"),
  33304. weight: math.unit(150, "lb"),
  33305. name: "Feral (Side)",
  33306. image: {
  33307. source: "./media/characters/flux/feral-side.svg",
  33308. extra: 598/528,
  33309. bottom: 28/626
  33310. }
  33311. },
  33312. head: {
  33313. height: math.unit(1.585, "feet"),
  33314. name: "Head",
  33315. image: {
  33316. source: "./media/characters/flux/head.svg"
  33317. }
  33318. },
  33319. headSide: {
  33320. height: math.unit(1.74, "feet"),
  33321. name: "Head (Side)",
  33322. image: {
  33323. source: "./media/characters/flux/head-side.svg"
  33324. }
  33325. },
  33326. headSideFire: {
  33327. height: math.unit(1.76, "feet"),
  33328. name: "Head (Side, Fire)",
  33329. image: {
  33330. source: "./media/characters/flux/head-side-fire.svg"
  33331. }
  33332. },
  33333. },
  33334. [
  33335. {
  33336. name: "Normal",
  33337. height: math.unit(7, "feet"),
  33338. default: true
  33339. },
  33340. ]
  33341. ))
  33342. characterMakers.push(() => makeCharacter(
  33343. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33344. {
  33345. front: {
  33346. height: math.unit(9, "feet"),
  33347. weight: math.unit(1012, "lb"),
  33348. name: "Front",
  33349. image: {
  33350. source: "./media/characters/ulfra-lupae/front.svg",
  33351. extra: 1083/1011,
  33352. bottom: 67/1150
  33353. }
  33354. },
  33355. },
  33356. [
  33357. {
  33358. name: "Micro",
  33359. height: math.unit(6, "inches")
  33360. },
  33361. {
  33362. name: "Socializing",
  33363. height: math.unit(6 + 5/12, "feet")
  33364. },
  33365. {
  33366. name: "Normal",
  33367. height: math.unit(9, "feet"),
  33368. default: true
  33369. },
  33370. {
  33371. name: "Macro",
  33372. height: math.unit(150, "feet")
  33373. },
  33374. ]
  33375. ))
  33376. characterMakers.push(() => makeCharacter(
  33377. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33378. {
  33379. front: {
  33380. height: math.unit(5 + 2/12, "feet"),
  33381. weight: math.unit(120, "lb"),
  33382. name: "Front",
  33383. image: {
  33384. source: "./media/characters/timber/front.svg",
  33385. extra: 2814/2705,
  33386. bottom: 181/2995
  33387. }
  33388. },
  33389. },
  33390. [
  33391. {
  33392. name: "Normal",
  33393. height: math.unit(5 + 2/12, "feet"),
  33394. default: true
  33395. },
  33396. ]
  33397. ))
  33398. characterMakers.push(() => makeCharacter(
  33399. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33400. {
  33401. front: {
  33402. height: math.unit(9, "feet"),
  33403. name: "Front",
  33404. image: {
  33405. source: "./media/characters/nicki/front.svg",
  33406. extra: 1240/990,
  33407. bottom: 45/1285
  33408. },
  33409. form: "anthro",
  33410. default: true
  33411. },
  33412. side: {
  33413. height: math.unit(9, "feet"),
  33414. name: "Side",
  33415. image: {
  33416. source: "./media/characters/nicki/side.svg",
  33417. extra: 1047/973,
  33418. bottom: 61/1108
  33419. },
  33420. form: "anthro"
  33421. },
  33422. back: {
  33423. height: math.unit(9, "feet"),
  33424. name: "Back",
  33425. image: {
  33426. source: "./media/characters/nicki/back.svg",
  33427. extra: 1006/965,
  33428. bottom: 39/1045
  33429. },
  33430. form: "anthro"
  33431. },
  33432. taur: {
  33433. height: math.unit(15, "feet"),
  33434. name: "Taur",
  33435. image: {
  33436. source: "./media/characters/nicki/taur.svg",
  33437. extra: 1592/1347,
  33438. bottom: 0/1592
  33439. },
  33440. form: "taur",
  33441. default: true
  33442. },
  33443. },
  33444. [
  33445. {
  33446. name: "Normal",
  33447. height: math.unit(9, "feet"),
  33448. form: "anthro",
  33449. default: true
  33450. },
  33451. {
  33452. name: "Normal",
  33453. height: math.unit(15, "feet"),
  33454. form: "taur",
  33455. default: true
  33456. }
  33457. ],
  33458. {
  33459. "anthro": {
  33460. name: "Anthro",
  33461. default: true
  33462. },
  33463. "taur": {
  33464. name: "Taur"
  33465. }
  33466. }
  33467. ))
  33468. characterMakers.push(() => makeCharacter(
  33469. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33470. {
  33471. front: {
  33472. height: math.unit(7 + 10/12, "feet"),
  33473. weight: math.unit(3.5, "tons"),
  33474. name: "Front",
  33475. image: {
  33476. source: "./media/characters/lee/front.svg",
  33477. extra: 1773/1615,
  33478. bottom: 86/1859
  33479. }
  33480. },
  33481. hand: {
  33482. height: math.unit(1.78, "feet"),
  33483. name: "Hand",
  33484. image: {
  33485. source: "./media/characters/lee/hand.svg"
  33486. }
  33487. },
  33488. maw: {
  33489. height: math.unit(1.18, "feet"),
  33490. name: "Maw",
  33491. image: {
  33492. source: "./media/characters/lee/maw.svg"
  33493. }
  33494. },
  33495. },
  33496. [
  33497. {
  33498. name: "Normal",
  33499. height: math.unit(7 + 10/12, "feet"),
  33500. default: true
  33501. },
  33502. ]
  33503. ))
  33504. characterMakers.push(() => makeCharacter(
  33505. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33506. {
  33507. front: {
  33508. height: math.unit(9, "feet"),
  33509. name: "Front",
  33510. image: {
  33511. source: "./media/characters/guti/front.svg",
  33512. extra: 4551/4355,
  33513. bottom: 123/4674
  33514. }
  33515. },
  33516. tongue: {
  33517. height: math.unit(1, "feet"),
  33518. name: "Tongue",
  33519. image: {
  33520. source: "./media/characters/guti/tongue.svg"
  33521. }
  33522. },
  33523. paw: {
  33524. height: math.unit(1.18, "feet"),
  33525. name: "Paw",
  33526. image: {
  33527. source: "./media/characters/guti/paw.svg"
  33528. }
  33529. },
  33530. },
  33531. [
  33532. {
  33533. name: "Normal",
  33534. height: math.unit(9, "feet"),
  33535. default: true
  33536. },
  33537. ]
  33538. ))
  33539. characterMakers.push(() => makeCharacter(
  33540. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33541. {
  33542. side: {
  33543. height: math.unit(5, "meters"),
  33544. name: "Side",
  33545. image: {
  33546. source: "./media/characters/vesper/side.svg",
  33547. extra: 1605/1518,
  33548. bottom: 0/1605
  33549. }
  33550. },
  33551. },
  33552. [
  33553. {
  33554. name: "Small",
  33555. height: math.unit(5, "meters")
  33556. },
  33557. {
  33558. name: "Sage",
  33559. height: math.unit(100, "meters"),
  33560. default: true
  33561. },
  33562. {
  33563. name: "Fun Size",
  33564. height: math.unit(600, "meters")
  33565. },
  33566. {
  33567. name: "Goddess",
  33568. height: math.unit(20000, "km")
  33569. },
  33570. {
  33571. name: "Maximum",
  33572. height: math.unit(5, "galaxies")
  33573. },
  33574. ]
  33575. ))
  33576. characterMakers.push(() => makeCharacter(
  33577. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33578. {
  33579. front: {
  33580. height: math.unit(6 + 3/12, "feet"),
  33581. weight: math.unit(190, "lb"),
  33582. name: "Front",
  33583. image: {
  33584. source: "./media/characters/gawain/front.svg",
  33585. extra: 2222/2139,
  33586. bottom: 90/2312
  33587. }
  33588. },
  33589. back: {
  33590. height: math.unit(6 + 3/12, "feet"),
  33591. weight: math.unit(190, "lb"),
  33592. name: "Back",
  33593. image: {
  33594. source: "./media/characters/gawain/back.svg",
  33595. extra: 2199/2111,
  33596. bottom: 73/2272
  33597. }
  33598. },
  33599. },
  33600. [
  33601. {
  33602. name: "Normal",
  33603. height: math.unit(6 + 3/12, "feet"),
  33604. default: true
  33605. },
  33606. ]
  33607. ))
  33608. characterMakers.push(() => makeCharacter(
  33609. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33610. {
  33611. side: {
  33612. height: math.unit(3.5, "meters"),
  33613. weight: math.unit(16000, "lb"),
  33614. name: "Side",
  33615. image: {
  33616. source: "./media/characters/dascalti/side.svg",
  33617. extra: 392/273,
  33618. bottom: 47/439
  33619. }
  33620. },
  33621. breath: {
  33622. height: math.unit(7.4, "feet"),
  33623. name: "Breath",
  33624. image: {
  33625. source: "./media/characters/dascalti/breath.svg"
  33626. }
  33627. },
  33628. fed: {
  33629. height: math.unit(3.6, "meters"),
  33630. weight: math.unit(16000, "lb"),
  33631. name: "Fed",
  33632. image: {
  33633. source: "./media/characters/dascalti/fed.svg",
  33634. extra: 1419/820,
  33635. bottom: 95/1514
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(3.5, "meters"),
  33643. default: true
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33649. {
  33650. front: {
  33651. height: math.unit(3 + 5/12, "feet"),
  33652. name: "Front",
  33653. image: {
  33654. source: "./media/characters/mauve/front.svg",
  33655. extra: 1126/1033,
  33656. bottom: 65/1191
  33657. }
  33658. },
  33659. side: {
  33660. height: math.unit(3 + 5/12, "feet"),
  33661. name: "Side",
  33662. image: {
  33663. source: "./media/characters/mauve/side.svg",
  33664. extra: 1089/1001,
  33665. bottom: 29/1118
  33666. }
  33667. },
  33668. back: {
  33669. height: math.unit(3 + 5/12, "feet"),
  33670. name: "Back",
  33671. image: {
  33672. source: "./media/characters/mauve/back.svg",
  33673. extra: 1173/1053,
  33674. bottom: 109/1282
  33675. }
  33676. },
  33677. },
  33678. [
  33679. {
  33680. name: "Normal",
  33681. height: math.unit(3 + 5/12, "feet"),
  33682. default: true
  33683. },
  33684. ]
  33685. ))
  33686. characterMakers.push(() => makeCharacter(
  33687. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33688. {
  33689. front: {
  33690. height: math.unit(6 + 3/12, "feet"),
  33691. weight: math.unit(430, "lb"),
  33692. name: "Front",
  33693. image: {
  33694. source: "./media/characters/carlos/front.svg",
  33695. extra: 1964/1913,
  33696. bottom: 70/2034
  33697. }
  33698. },
  33699. },
  33700. [
  33701. {
  33702. name: "Normal",
  33703. height: math.unit(6 + 3/12, "feet"),
  33704. default: true
  33705. },
  33706. ]
  33707. ))
  33708. characterMakers.push(() => makeCharacter(
  33709. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33710. {
  33711. back: {
  33712. height: math.unit(5 + 10/12, "feet"),
  33713. weight: math.unit(200, "lb"),
  33714. name: "Back",
  33715. image: {
  33716. source: "./media/characters/jax/back.svg",
  33717. extra: 764/739,
  33718. bottom: 25/789
  33719. }
  33720. },
  33721. },
  33722. [
  33723. {
  33724. name: "Normal",
  33725. height: math.unit(5 + 10/12, "feet"),
  33726. default: true
  33727. },
  33728. ]
  33729. ))
  33730. characterMakers.push(() => makeCharacter(
  33731. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33732. {
  33733. front: {
  33734. height: math.unit(8, "feet"),
  33735. weight: math.unit(250, "lb"),
  33736. name: "Front",
  33737. image: {
  33738. source: "./media/characters/eikthynir/front.svg",
  33739. extra: 1332/1166,
  33740. bottom: 82/1414
  33741. }
  33742. },
  33743. back: {
  33744. height: math.unit(8, "feet"),
  33745. weight: math.unit(250, "lb"),
  33746. name: "Back",
  33747. image: {
  33748. source: "./media/characters/eikthynir/back.svg",
  33749. extra: 1342/1190,
  33750. bottom: 19/1361
  33751. }
  33752. },
  33753. dick: {
  33754. height: math.unit(2.35, "feet"),
  33755. name: "Dick",
  33756. image: {
  33757. source: "./media/characters/eikthynir/dick.svg"
  33758. }
  33759. },
  33760. },
  33761. [
  33762. {
  33763. name: "Normal",
  33764. height: math.unit(8, "feet"),
  33765. default: true
  33766. },
  33767. ]
  33768. ))
  33769. characterMakers.push(() => makeCharacter(
  33770. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33771. {
  33772. front: {
  33773. height: math.unit(99, "meters"),
  33774. weight: math.unit(13000, "tons"),
  33775. name: "Front",
  33776. image: {
  33777. source: "./media/characters/zlmos/front.svg",
  33778. extra: 2202/1992,
  33779. bottom: 315/2517
  33780. }
  33781. },
  33782. },
  33783. [
  33784. {
  33785. name: "Macro",
  33786. height: math.unit(99, "meters"),
  33787. default: true
  33788. },
  33789. ]
  33790. ))
  33791. characterMakers.push(() => makeCharacter(
  33792. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33793. {
  33794. front: {
  33795. height: math.unit(6 + 5/12, "feet"),
  33796. name: "Front",
  33797. image: {
  33798. source: "./media/characters/purri/front.svg",
  33799. extra: 1698/1610,
  33800. bottom: 32/1730
  33801. }
  33802. },
  33803. frontAlt: {
  33804. height: math.unit(6 + 5/12, "feet"),
  33805. name: "Front (Alt)",
  33806. image: {
  33807. source: "./media/characters/purri/front-alt.svg",
  33808. extra: 450/420,
  33809. bottom: 26/476
  33810. }
  33811. },
  33812. boots: {
  33813. height: math.unit(5.5, "feet"),
  33814. name: "Boots",
  33815. image: {
  33816. source: "./media/characters/purri/boots.svg",
  33817. extra: 905/853,
  33818. bottom: 18/923
  33819. }
  33820. },
  33821. lying: {
  33822. height: math.unit(2, "feet"),
  33823. name: "Lying",
  33824. image: {
  33825. source: "./media/characters/purri/lying.svg",
  33826. extra: 940/843,
  33827. bottom: 146/1086
  33828. }
  33829. },
  33830. devious: {
  33831. height: math.unit(1.77, "feet"),
  33832. name: "Devious",
  33833. image: {
  33834. source: "./media/characters/purri/devious.svg",
  33835. extra: 1440/1155,
  33836. bottom: 147/1587
  33837. }
  33838. },
  33839. bean: {
  33840. height: math.unit(1.94, "feet"),
  33841. name: "Bean",
  33842. image: {
  33843. source: "./media/characters/purri/bean.svg"
  33844. }
  33845. },
  33846. },
  33847. [
  33848. {
  33849. name: "Micro",
  33850. height: math.unit(1, "mm")
  33851. },
  33852. {
  33853. name: "Normal",
  33854. height: math.unit(6 + 5/12, "feet"),
  33855. default: true
  33856. },
  33857. {
  33858. name: "Macro :3c",
  33859. height: math.unit(2, "miles")
  33860. },
  33861. ]
  33862. ))
  33863. characterMakers.push(() => makeCharacter(
  33864. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33865. {
  33866. front: {
  33867. height: math.unit(6 + 2/12, "feet"),
  33868. weight: math.unit(250, "lb"),
  33869. name: "Front",
  33870. image: {
  33871. source: "./media/characters/moonlight/front.svg",
  33872. extra: 1044/908,
  33873. bottom: 56/1100
  33874. }
  33875. },
  33876. feral: {
  33877. height: math.unit(3 + 1/12, "feet"),
  33878. weight: math.unit(50, "kg"),
  33879. name: "Feral",
  33880. image: {
  33881. source: "./media/characters/moonlight/feral.svg",
  33882. extra: 3705/2791,
  33883. bottom: 145/3850
  33884. }
  33885. },
  33886. paw: {
  33887. height: math.unit(1, "feet"),
  33888. name: "Paw",
  33889. image: {
  33890. source: "./media/characters/moonlight/paw.svg"
  33891. }
  33892. },
  33893. paws: {
  33894. height: math.unit(0.98, "feet"),
  33895. name: "Paws",
  33896. image: {
  33897. source: "./media/characters/moonlight/paws.svg",
  33898. extra: 939/939,
  33899. bottom: 50/989
  33900. }
  33901. },
  33902. mouth: {
  33903. height: math.unit(0.48, "feet"),
  33904. name: "Mouth",
  33905. image: {
  33906. source: "./media/characters/moonlight/mouth.svg"
  33907. }
  33908. },
  33909. dick: {
  33910. height: math.unit(1.46, "feet"),
  33911. name: "Dick",
  33912. image: {
  33913. source: "./media/characters/moonlight/dick.svg"
  33914. }
  33915. },
  33916. },
  33917. [
  33918. {
  33919. name: "Normal",
  33920. height: math.unit(6 + 2/12, "feet"),
  33921. default: true
  33922. },
  33923. {
  33924. name: "Macro",
  33925. height: math.unit(300, "feet")
  33926. },
  33927. {
  33928. name: "Macro+",
  33929. height: math.unit(1, "mile")
  33930. },
  33931. {
  33932. name: "Mt. Moon",
  33933. height: math.unit(5, "miles")
  33934. },
  33935. {
  33936. name: "Megamacro",
  33937. height: math.unit(15, "miles")
  33938. },
  33939. ]
  33940. ))
  33941. characterMakers.push(() => makeCharacter(
  33942. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33943. {
  33944. back: {
  33945. height: math.unit(6, "feet"),
  33946. weight: math.unit(150, "lb"),
  33947. name: "Back",
  33948. image: {
  33949. source: "./media/characters/sylen/back.svg",
  33950. extra: 1335/1273,
  33951. bottom: 107/1442
  33952. }
  33953. },
  33954. },
  33955. [
  33956. {
  33957. name: "Normal",
  33958. height: math.unit(5 + 5/12, "feet")
  33959. },
  33960. {
  33961. name: "Megamacro",
  33962. height: math.unit(3, "miles"),
  33963. default: true
  33964. },
  33965. ]
  33966. ))
  33967. characterMakers.push(() => makeCharacter(
  33968. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33969. {
  33970. front: {
  33971. height: math.unit(6, "feet"),
  33972. weight: math.unit(190, "lb"),
  33973. name: "Front",
  33974. image: {
  33975. source: "./media/characters/huttser/front.svg",
  33976. extra: 1152/1058,
  33977. bottom: 23/1175
  33978. }
  33979. },
  33980. side: {
  33981. height: math.unit(6, "feet"),
  33982. weight: math.unit(190, "lb"),
  33983. name: "Side",
  33984. image: {
  33985. source: "./media/characters/huttser/side.svg",
  33986. extra: 1174/1065,
  33987. bottom: 18/1192
  33988. }
  33989. },
  33990. back: {
  33991. height: math.unit(6, "feet"),
  33992. weight: math.unit(190, "lb"),
  33993. name: "Back",
  33994. image: {
  33995. source: "./media/characters/huttser/back.svg",
  33996. extra: 1158/1056,
  33997. bottom: 12/1170
  33998. }
  33999. },
  34000. },
  34001. [
  34002. ]
  34003. ))
  34004. characterMakers.push(() => makeCharacter(
  34005. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34006. {
  34007. side: {
  34008. height: math.unit(12 + 9/12, "feet"),
  34009. weight: math.unit(15000, "lb"),
  34010. name: "Side",
  34011. image: {
  34012. source: "./media/characters/faan/side.svg",
  34013. extra: 2747/2697,
  34014. bottom: 0/2747
  34015. }
  34016. },
  34017. front: {
  34018. height: math.unit(12 + 9/12, "feet"),
  34019. weight: math.unit(15000, "lb"),
  34020. name: "Front",
  34021. image: {
  34022. source: "./media/characters/faan/front.svg",
  34023. extra: 607/571,
  34024. bottom: 24/631
  34025. }
  34026. },
  34027. head: {
  34028. height: math.unit(2.85, "feet"),
  34029. name: "Head",
  34030. image: {
  34031. source: "./media/characters/faan/head.svg"
  34032. }
  34033. },
  34034. headAlt: {
  34035. height: math.unit(3.13, "feet"),
  34036. name: "Head-alt",
  34037. image: {
  34038. source: "./media/characters/faan/head-alt.svg"
  34039. }
  34040. },
  34041. },
  34042. [
  34043. {
  34044. name: "Normal",
  34045. height: math.unit(12 + 9/12, "feet"),
  34046. default: true
  34047. },
  34048. ]
  34049. ))
  34050. characterMakers.push(() => makeCharacter(
  34051. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34052. {
  34053. front: {
  34054. height: math.unit(6, "feet"),
  34055. weight: math.unit(300, "lb"),
  34056. name: "Front",
  34057. image: {
  34058. source: "./media/characters/tanio/front.svg",
  34059. extra: 711/673,
  34060. bottom: 25/736
  34061. }
  34062. },
  34063. },
  34064. [
  34065. {
  34066. name: "Normal",
  34067. height: math.unit(6, "feet"),
  34068. default: true
  34069. },
  34070. ]
  34071. ))
  34072. characterMakers.push(() => makeCharacter(
  34073. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34074. {
  34075. front: {
  34076. height: math.unit(3, "inches"),
  34077. name: "Front",
  34078. image: {
  34079. source: "./media/characters/noboru/front.svg",
  34080. extra: 1039/932,
  34081. bottom: 18/1057
  34082. }
  34083. },
  34084. },
  34085. [
  34086. {
  34087. name: "Micro",
  34088. height: math.unit(3, "inches"),
  34089. default: true
  34090. },
  34091. ]
  34092. ))
  34093. characterMakers.push(() => makeCharacter(
  34094. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34095. {
  34096. front: {
  34097. height: math.unit(1.85, "meters"),
  34098. weight: math.unit(80, "kg"),
  34099. name: "Front",
  34100. image: {
  34101. source: "./media/characters/daniel-barrett/front.svg",
  34102. extra: 355/337,
  34103. bottom: 9/364
  34104. }
  34105. },
  34106. },
  34107. [
  34108. {
  34109. name: "Pico",
  34110. height: math.unit(0.0433, "mm")
  34111. },
  34112. {
  34113. name: "Nano",
  34114. height: math.unit(1.5, "mm")
  34115. },
  34116. {
  34117. name: "Micro",
  34118. height: math.unit(5.3, "cm"),
  34119. default: true
  34120. },
  34121. {
  34122. name: "Normal",
  34123. height: math.unit(1.85, "meters")
  34124. },
  34125. {
  34126. name: "Macro",
  34127. height: math.unit(64.7, "meters")
  34128. },
  34129. {
  34130. name: "Megamacro",
  34131. height: math.unit(2.26, "km")
  34132. },
  34133. {
  34134. name: "Gigamacro",
  34135. height: math.unit(79, "km")
  34136. },
  34137. {
  34138. name: "Teramacro",
  34139. height: math.unit(2765, "km")
  34140. },
  34141. {
  34142. name: "Petamacro",
  34143. height: math.unit(96678, "km")
  34144. },
  34145. ]
  34146. ))
  34147. characterMakers.push(() => makeCharacter(
  34148. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34149. {
  34150. front: {
  34151. height: math.unit(30, "meters"),
  34152. weight: math.unit(400, "tons"),
  34153. name: "Front",
  34154. image: {
  34155. source: "./media/characters/zeel/front.svg",
  34156. extra: 2599/2599,
  34157. bottom: 226/2825
  34158. }
  34159. },
  34160. },
  34161. [
  34162. {
  34163. name: "Macro",
  34164. height: math.unit(30, "meters"),
  34165. default: true
  34166. },
  34167. ]
  34168. ))
  34169. characterMakers.push(() => makeCharacter(
  34170. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34171. {
  34172. front: {
  34173. height: math.unit(6 + 7/12, "feet"),
  34174. weight: math.unit(210, "lb"),
  34175. name: "Front",
  34176. image: {
  34177. source: "./media/characters/tarn/front.svg",
  34178. extra: 3517/3220,
  34179. bottom: 91/3608
  34180. }
  34181. },
  34182. back: {
  34183. height: math.unit(6 + 7/12, "feet"),
  34184. weight: math.unit(210, "lb"),
  34185. name: "Back",
  34186. image: {
  34187. source: "./media/characters/tarn/back.svg",
  34188. extra: 3566/3241,
  34189. bottom: 34/3600
  34190. }
  34191. },
  34192. dick: {
  34193. height: math.unit(1.65, "feet"),
  34194. name: "Dick",
  34195. image: {
  34196. source: "./media/characters/tarn/dick.svg"
  34197. }
  34198. },
  34199. paw: {
  34200. height: math.unit(1.80, "feet"),
  34201. name: "Paw",
  34202. image: {
  34203. source: "./media/characters/tarn/paw.svg"
  34204. }
  34205. },
  34206. tongue: {
  34207. height: math.unit(0.97, "feet"),
  34208. name: "Tongue",
  34209. image: {
  34210. source: "./media/characters/tarn/tongue.svg"
  34211. }
  34212. },
  34213. },
  34214. [
  34215. {
  34216. name: "Micro",
  34217. height: math.unit(4, "inches")
  34218. },
  34219. {
  34220. name: "Normal",
  34221. height: math.unit(6 + 7/12, "feet"),
  34222. default: true
  34223. },
  34224. {
  34225. name: "Macro",
  34226. height: math.unit(300, "feet")
  34227. },
  34228. ]
  34229. ))
  34230. characterMakers.push(() => makeCharacter(
  34231. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34232. {
  34233. front: {
  34234. height: math.unit(5 + 7/12, "feet"),
  34235. weight: math.unit(80, "kg"),
  34236. name: "Front",
  34237. image: {
  34238. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34239. extra: 3023/2865,
  34240. bottom: 33/3056
  34241. }
  34242. },
  34243. back: {
  34244. height: math.unit(5 + 7/12, "feet"),
  34245. weight: math.unit(80, "kg"),
  34246. name: "Back",
  34247. image: {
  34248. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34249. extra: 3020/2886,
  34250. bottom: 30/3050
  34251. }
  34252. },
  34253. dick: {
  34254. height: math.unit(0.98, "feet"),
  34255. name: "Dick",
  34256. image: {
  34257. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34258. }
  34259. },
  34260. anatomy: {
  34261. height: math.unit(2.86, "feet"),
  34262. name: "Anatomy",
  34263. image: {
  34264. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34265. }
  34266. },
  34267. },
  34268. [
  34269. {
  34270. name: "Really Small",
  34271. height: math.unit(2, "inches")
  34272. },
  34273. {
  34274. name: "Micro",
  34275. height: math.unit(5.583, "inches")
  34276. },
  34277. {
  34278. name: "Normal",
  34279. height: math.unit(5 + 7/12, "feet"),
  34280. default: true
  34281. },
  34282. {
  34283. name: "Macro",
  34284. height: math.unit(67, "feet")
  34285. },
  34286. {
  34287. name: "Megamacro",
  34288. height: math.unit(134, "feet")
  34289. },
  34290. ]
  34291. ))
  34292. characterMakers.push(() => makeCharacter(
  34293. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34294. {
  34295. front: {
  34296. height: math.unit(9, "feet"),
  34297. weight: math.unit(120, "lb"),
  34298. name: "Front",
  34299. image: {
  34300. source: "./media/characters/sally/front.svg",
  34301. extra: 1506/1349,
  34302. bottom: 66/1572
  34303. }
  34304. },
  34305. },
  34306. [
  34307. {
  34308. name: "Normal",
  34309. height: math.unit(9, "feet"),
  34310. default: true
  34311. },
  34312. ]
  34313. ))
  34314. characterMakers.push(() => makeCharacter(
  34315. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34316. {
  34317. front: {
  34318. height: math.unit(8, "feet"),
  34319. weight: math.unit(900, "lb"),
  34320. name: "Front",
  34321. image: {
  34322. source: "./media/characters/owen/front.svg",
  34323. extra: 1761/1657,
  34324. bottom: 74/1835
  34325. }
  34326. },
  34327. side: {
  34328. height: math.unit(8, "feet"),
  34329. weight: math.unit(900, "lb"),
  34330. name: "Side",
  34331. image: {
  34332. source: "./media/characters/owen/side.svg",
  34333. extra: 1797/1734,
  34334. bottom: 30/1827
  34335. }
  34336. },
  34337. back: {
  34338. height: math.unit(8, "feet"),
  34339. weight: math.unit(900, "lb"),
  34340. name: "Back",
  34341. image: {
  34342. source: "./media/characters/owen/back.svg",
  34343. extra: 1796/1706,
  34344. bottom: 59/1855
  34345. }
  34346. },
  34347. maw: {
  34348. height: math.unit(1.76, "feet"),
  34349. name: "Maw",
  34350. image: {
  34351. source: "./media/characters/owen/maw.svg"
  34352. }
  34353. },
  34354. },
  34355. [
  34356. {
  34357. name: "Normal",
  34358. height: math.unit(8, "feet"),
  34359. default: true
  34360. },
  34361. ]
  34362. ))
  34363. characterMakers.push(() => makeCharacter(
  34364. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34365. {
  34366. front: {
  34367. height: math.unit(4, "feet"),
  34368. weight: math.unit(400, "lb"),
  34369. name: "Front",
  34370. image: {
  34371. source: "./media/characters/ryth/front.svg",
  34372. extra: 1920/1748,
  34373. bottom: 42/1962
  34374. }
  34375. },
  34376. back: {
  34377. height: math.unit(4, "feet"),
  34378. weight: math.unit(400, "lb"),
  34379. name: "Back",
  34380. image: {
  34381. source: "./media/characters/ryth/back.svg",
  34382. extra: 1897/1690,
  34383. bottom: 89/1986
  34384. }
  34385. },
  34386. mouth: {
  34387. height: math.unit(1.39, "feet"),
  34388. name: "Mouth",
  34389. image: {
  34390. source: "./media/characters/ryth/mouth.svg"
  34391. }
  34392. },
  34393. tailmaw: {
  34394. height: math.unit(1.23, "feet"),
  34395. name: "Tailmaw",
  34396. image: {
  34397. source: "./media/characters/ryth/tailmaw.svg"
  34398. }
  34399. },
  34400. goia: {
  34401. height: math.unit(4, "meters"),
  34402. weight: math.unit(10800, "lb"),
  34403. name: "Goia",
  34404. image: {
  34405. source: "./media/characters/ryth/goia.svg",
  34406. extra: 745/640,
  34407. bottom: 107/852
  34408. }
  34409. },
  34410. goiaFront: {
  34411. height: math.unit(4, "meters"),
  34412. weight: math.unit(10800, "lb"),
  34413. name: "Goia (Front)",
  34414. image: {
  34415. source: "./media/characters/ryth/goia-front.svg",
  34416. extra: 750/586,
  34417. bottom: 114/864
  34418. }
  34419. },
  34420. goiaMaw: {
  34421. height: math.unit(5.55, "feet"),
  34422. name: "Goia Maw",
  34423. image: {
  34424. source: "./media/characters/ryth/goia-maw.svg"
  34425. }
  34426. },
  34427. goiaForepaw: {
  34428. height: math.unit(3.5, "feet"),
  34429. name: "Goia Forepaw",
  34430. image: {
  34431. source: "./media/characters/ryth/goia-forepaw.svg"
  34432. }
  34433. },
  34434. goiaHindpaw: {
  34435. height: math.unit(5.55, "feet"),
  34436. name: "Goia Hindpaw",
  34437. image: {
  34438. source: "./media/characters/ryth/goia-hindpaw.svg"
  34439. }
  34440. },
  34441. },
  34442. [
  34443. {
  34444. name: "Normal",
  34445. height: math.unit(4, "feet"),
  34446. default: true
  34447. },
  34448. ]
  34449. ))
  34450. characterMakers.push(() => makeCharacter(
  34451. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34452. {
  34453. front: {
  34454. height: math.unit(7, "feet"),
  34455. weight: math.unit(180, "lb"),
  34456. name: "Front",
  34457. image: {
  34458. source: "./media/characters/necrolance/front.svg",
  34459. extra: 1062/947,
  34460. bottom: 41/1103
  34461. }
  34462. },
  34463. back: {
  34464. height: math.unit(7, "feet"),
  34465. weight: math.unit(180, "lb"),
  34466. name: "Back",
  34467. image: {
  34468. source: "./media/characters/necrolance/back.svg",
  34469. extra: 1045/984,
  34470. bottom: 14/1059
  34471. }
  34472. },
  34473. wing: {
  34474. height: math.unit(2.67, "feet"),
  34475. name: "Wing",
  34476. image: {
  34477. source: "./media/characters/necrolance/wing.svg"
  34478. }
  34479. },
  34480. },
  34481. [
  34482. {
  34483. name: "Normal",
  34484. height: math.unit(7, "feet"),
  34485. default: true
  34486. },
  34487. ]
  34488. ))
  34489. characterMakers.push(() => makeCharacter(
  34490. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34491. {
  34492. front: {
  34493. height: math.unit(76, "meters"),
  34494. weight: math.unit(30000, "tons"),
  34495. name: "Front",
  34496. image: {
  34497. source: "./media/characters/tyler/front.svg",
  34498. extra: 1640/1640,
  34499. bottom: 114/1754
  34500. }
  34501. },
  34502. },
  34503. [
  34504. {
  34505. name: "Macro",
  34506. height: math.unit(76, "meters"),
  34507. default: true
  34508. },
  34509. ]
  34510. ))
  34511. characterMakers.push(() => makeCharacter(
  34512. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34513. {
  34514. front: {
  34515. height: math.unit(4 + 11/12, "feet"),
  34516. weight: math.unit(132, "lb"),
  34517. name: "Front",
  34518. image: {
  34519. source: "./media/characters/icey/front.svg",
  34520. extra: 2750/2550,
  34521. bottom: 33/2783
  34522. }
  34523. },
  34524. back: {
  34525. height: math.unit(4 + 11/12, "feet"),
  34526. weight: math.unit(132, "lb"),
  34527. name: "Back",
  34528. image: {
  34529. source: "./media/characters/icey/back.svg",
  34530. extra: 2624/2481,
  34531. bottom: 35/2659
  34532. }
  34533. },
  34534. },
  34535. [
  34536. {
  34537. name: "Normal",
  34538. height: math.unit(4 + 11/12, "feet"),
  34539. default: true
  34540. },
  34541. ]
  34542. ))
  34543. characterMakers.push(() => makeCharacter(
  34544. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34545. {
  34546. front: {
  34547. height: math.unit(100, "feet"),
  34548. weight: math.unit(0, "lb"),
  34549. name: "Front",
  34550. image: {
  34551. source: "./media/characters/smile/front.svg",
  34552. extra: 2983/2912,
  34553. bottom: 162/3145
  34554. }
  34555. },
  34556. back: {
  34557. height: math.unit(100, "feet"),
  34558. weight: math.unit(0, "lb"),
  34559. name: "Back",
  34560. image: {
  34561. source: "./media/characters/smile/back.svg",
  34562. extra: 3143/3031,
  34563. bottom: 91/3234
  34564. }
  34565. },
  34566. head: {
  34567. height: math.unit(26.3, "feet"),
  34568. weight: math.unit(0, "lb"),
  34569. name: "Head",
  34570. image: {
  34571. source: "./media/characters/smile/head.svg"
  34572. }
  34573. },
  34574. collar: {
  34575. height: math.unit(5.3, "feet"),
  34576. weight: math.unit(0, "lb"),
  34577. name: "Collar",
  34578. image: {
  34579. source: "./media/characters/smile/collar.svg"
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Macro",
  34586. height: math.unit(100, "feet"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34593. {
  34594. dragon: {
  34595. height: math.unit(26, "feet"),
  34596. weight: math.unit(36, "tons"),
  34597. name: "Dragon",
  34598. image: {
  34599. source: "./media/characters/arimphae/dragon.svg",
  34600. extra: 1574/983,
  34601. bottom: 357/1931
  34602. }
  34603. },
  34604. drake: {
  34605. height: math.unit(9, "feet"),
  34606. weight: math.unit(1.5, "tons"),
  34607. name: "Drake",
  34608. image: {
  34609. source: "./media/characters/arimphae/drake.svg",
  34610. extra: 1120/925,
  34611. bottom: 435/1555
  34612. }
  34613. },
  34614. },
  34615. [
  34616. {
  34617. name: "Small",
  34618. height: math.unit(26*5/9, "feet")
  34619. },
  34620. {
  34621. name: "Normal",
  34622. height: math.unit(26, "feet"),
  34623. default: true
  34624. },
  34625. ]
  34626. ))
  34627. characterMakers.push(() => makeCharacter(
  34628. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34629. {
  34630. front: {
  34631. height: math.unit(8 + 9/12, "feet"),
  34632. name: "Front",
  34633. image: {
  34634. source: "./media/characters/xander/front.svg",
  34635. extra: 1237/974,
  34636. bottom: 94/1331
  34637. }
  34638. },
  34639. },
  34640. [
  34641. {
  34642. name: "Normal",
  34643. height: math.unit(8 + 9/12, "feet"),
  34644. default: true
  34645. },
  34646. {
  34647. name: "Gaze Grabber",
  34648. height: math.unit(13 + 8/12, "feet")
  34649. },
  34650. {
  34651. name: "Jaw Dropper",
  34652. height: math.unit(27, "feet")
  34653. },
  34654. {
  34655. name: "Show Stopper",
  34656. height: math.unit(136, "feet")
  34657. },
  34658. {
  34659. name: "Superstar",
  34660. height: math.unit(1.9e6, "miles")
  34661. },
  34662. ]
  34663. ))
  34664. characterMakers.push(() => makeCharacter(
  34665. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34666. {
  34667. side: {
  34668. height: math.unit(2100, "feet"),
  34669. name: "Side",
  34670. image: {
  34671. source: "./media/characters/osiris/side.svg",
  34672. extra: 1105/939,
  34673. bottom: 167/1272
  34674. }
  34675. },
  34676. },
  34677. [
  34678. {
  34679. name: "Macro",
  34680. height: math.unit(2100, "feet"),
  34681. default: true
  34682. },
  34683. ]
  34684. ))
  34685. characterMakers.push(() => makeCharacter(
  34686. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34687. {
  34688. front: {
  34689. height: math.unit(6 + 8/12, "feet"),
  34690. weight: math.unit(225, "lb"),
  34691. name: "Front",
  34692. image: {
  34693. source: "./media/characters/rhys-londe/front.svg",
  34694. extra: 2258/2141,
  34695. bottom: 188/2446
  34696. }
  34697. },
  34698. back: {
  34699. height: math.unit(6 + 8/12, "feet"),
  34700. weight: math.unit(225, "lb"),
  34701. name: "Back",
  34702. image: {
  34703. source: "./media/characters/rhys-londe/back.svg",
  34704. extra: 2237/2137,
  34705. bottom: 63/2300
  34706. }
  34707. },
  34708. frontNsfw: {
  34709. height: math.unit(6 + 8/12, "feet"),
  34710. weight: math.unit(225, "lb"),
  34711. name: "Front (NSFW)",
  34712. image: {
  34713. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34714. extra: 2258/2141,
  34715. bottom: 188/2446
  34716. }
  34717. },
  34718. backNsfw: {
  34719. height: math.unit(6 + 8/12, "feet"),
  34720. weight: math.unit(225, "lb"),
  34721. name: "Back (NSFW)",
  34722. image: {
  34723. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34724. extra: 2237/2137,
  34725. bottom: 63/2300
  34726. }
  34727. },
  34728. dick: {
  34729. height: math.unit(30, "inches"),
  34730. name: "Dick",
  34731. image: {
  34732. source: "./media/characters/rhys-londe/dick.svg"
  34733. }
  34734. },
  34735. maw: {
  34736. height: math.unit(1.6, "feet"),
  34737. name: "Maw",
  34738. image: {
  34739. source: "./media/characters/rhys-londe/maw.svg"
  34740. }
  34741. },
  34742. },
  34743. [
  34744. {
  34745. name: "Normal",
  34746. height: math.unit(6 + 8/12, "feet"),
  34747. default: true
  34748. },
  34749. ]
  34750. ))
  34751. characterMakers.push(() => makeCharacter(
  34752. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34753. {
  34754. front: {
  34755. height: math.unit(3 + 10/12, "feet"),
  34756. weight: math.unit(90, "lb"),
  34757. name: "Front",
  34758. image: {
  34759. source: "./media/characters/taivas-ensim/front.svg",
  34760. extra: 1327/1216,
  34761. bottom: 96/1423
  34762. }
  34763. },
  34764. back: {
  34765. height: math.unit(3 + 10/12, "feet"),
  34766. weight: math.unit(90, "lb"),
  34767. name: "Back",
  34768. image: {
  34769. source: "./media/characters/taivas-ensim/back.svg",
  34770. extra: 1355/1247,
  34771. bottom: 11/1366
  34772. }
  34773. },
  34774. frontNsfw: {
  34775. height: math.unit(3 + 10/12, "feet"),
  34776. weight: math.unit(90, "lb"),
  34777. name: "Front (NSFW)",
  34778. image: {
  34779. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34780. extra: 1327/1216,
  34781. bottom: 96/1423
  34782. }
  34783. },
  34784. backNsfw: {
  34785. height: math.unit(3 + 10/12, "feet"),
  34786. weight: math.unit(90, "lb"),
  34787. name: "Back (NSFW)",
  34788. image: {
  34789. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34790. extra: 1355/1247,
  34791. bottom: 11/1366
  34792. }
  34793. },
  34794. },
  34795. [
  34796. {
  34797. name: "Normal",
  34798. height: math.unit(3 + 10/12, "feet"),
  34799. default: true
  34800. },
  34801. ]
  34802. ))
  34803. characterMakers.push(() => makeCharacter(
  34804. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34805. {
  34806. front: {
  34807. height: math.unit(9 + 6/12, "feet"),
  34808. weight: math.unit(940, "lb"),
  34809. name: "Front",
  34810. image: {
  34811. source: "./media/characters/byliss/front.svg",
  34812. extra: 1327/1290,
  34813. bottom: 82/1409
  34814. }
  34815. },
  34816. back: {
  34817. height: math.unit(9 + 6/12, "feet"),
  34818. weight: math.unit(940, "lb"),
  34819. name: "Back",
  34820. image: {
  34821. source: "./media/characters/byliss/back.svg",
  34822. extra: 1376/1349,
  34823. bottom: 9/1385
  34824. }
  34825. },
  34826. frontNsfw: {
  34827. height: math.unit(9 + 6/12, "feet"),
  34828. weight: math.unit(940, "lb"),
  34829. name: "Front (NSFW)",
  34830. image: {
  34831. source: "./media/characters/byliss/front-nsfw.svg",
  34832. extra: 1327/1290,
  34833. bottom: 82/1409
  34834. }
  34835. },
  34836. backNsfw: {
  34837. height: math.unit(9 + 6/12, "feet"),
  34838. weight: math.unit(940, "lb"),
  34839. name: "Back (NSFW)",
  34840. image: {
  34841. source: "./media/characters/byliss/back-nsfw.svg",
  34842. extra: 1376/1349,
  34843. bottom: 9/1385
  34844. }
  34845. },
  34846. },
  34847. [
  34848. {
  34849. name: "Normal",
  34850. height: math.unit(9 + 6/12, "feet"),
  34851. default: true
  34852. },
  34853. ]
  34854. ))
  34855. characterMakers.push(() => makeCharacter(
  34856. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34857. {
  34858. front: {
  34859. height: math.unit(5 + 2/12, "feet"),
  34860. weight: math.unit(200, "lb"),
  34861. name: "Front",
  34862. image: {
  34863. source: "./media/characters/noraly/front.svg",
  34864. extra: 4985/4773,
  34865. bottom: 150/5135
  34866. }
  34867. },
  34868. full: {
  34869. height: math.unit(5 + 2/12, "feet"),
  34870. weight: math.unit(164, "lb"),
  34871. name: "Full",
  34872. image: {
  34873. source: "./media/characters/noraly/full.svg",
  34874. extra: 1114/1059,
  34875. bottom: 35/1149
  34876. }
  34877. },
  34878. fuller: {
  34879. height: math.unit(5 + 2/12, "feet"),
  34880. weight: math.unit(230, "lb"),
  34881. name: "Fuller",
  34882. image: {
  34883. source: "./media/characters/noraly/fuller.svg",
  34884. extra: 1114/1059,
  34885. bottom: 35/1149
  34886. }
  34887. },
  34888. fullest: {
  34889. height: math.unit(5 + 2/12, "feet"),
  34890. weight: math.unit(300, "lb"),
  34891. name: "Fullest",
  34892. image: {
  34893. source: "./media/characters/noraly/fullest.svg",
  34894. extra: 1114/1059,
  34895. bottom: 35/1149
  34896. }
  34897. },
  34898. },
  34899. [
  34900. {
  34901. name: "Normal",
  34902. height: math.unit(5 + 2/12, "feet"),
  34903. default: true
  34904. },
  34905. ]
  34906. ))
  34907. characterMakers.push(() => makeCharacter(
  34908. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34909. {
  34910. front: {
  34911. height: math.unit(5 + 2/12, "feet"),
  34912. weight: math.unit(210, "lb"),
  34913. name: "Front",
  34914. image: {
  34915. source: "./media/characters/pera/front.svg",
  34916. extra: 1560/1531,
  34917. bottom: 165/1725
  34918. }
  34919. },
  34920. back: {
  34921. height: math.unit(5 + 2/12, "feet"),
  34922. weight: math.unit(210, "lb"),
  34923. name: "Back",
  34924. image: {
  34925. source: "./media/characters/pera/back.svg",
  34926. extra: 1523/1493,
  34927. bottom: 152/1675
  34928. }
  34929. },
  34930. dick: {
  34931. height: math.unit(2.4, "feet"),
  34932. name: "Dick",
  34933. image: {
  34934. source: "./media/characters/pera/dick.svg"
  34935. }
  34936. },
  34937. },
  34938. [
  34939. {
  34940. name: "Normal",
  34941. height: math.unit(5 + 2/12, "feet"),
  34942. default: true
  34943. },
  34944. ]
  34945. ))
  34946. characterMakers.push(() => makeCharacter(
  34947. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34948. {
  34949. front: {
  34950. height: math.unit(12, "feet"),
  34951. weight: math.unit(3200, "lb"),
  34952. name: "Front",
  34953. image: {
  34954. source: "./media/characters/julian/front.svg",
  34955. extra: 2962/2701,
  34956. bottom: 184/3146
  34957. }
  34958. },
  34959. maw: {
  34960. height: math.unit(5.35, "feet"),
  34961. name: "Maw",
  34962. image: {
  34963. source: "./media/characters/julian/maw.svg"
  34964. }
  34965. },
  34966. paw: {
  34967. height: math.unit(3.07, "feet"),
  34968. name: "Paw",
  34969. image: {
  34970. source: "./media/characters/julian/paw.svg"
  34971. }
  34972. },
  34973. },
  34974. [
  34975. {
  34976. name: "Default",
  34977. height: math.unit(12, "feet"),
  34978. default: true
  34979. },
  34980. {
  34981. name: "Big",
  34982. height: math.unit(50, "feet")
  34983. },
  34984. {
  34985. name: "Really Big",
  34986. height: math.unit(1, "mile")
  34987. },
  34988. {
  34989. name: "Extremely Big",
  34990. height: math.unit(100, "miles")
  34991. },
  34992. {
  34993. name: "Planet Hugger",
  34994. height: math.unit(200, "megameters")
  34995. },
  34996. {
  34997. name: "Unreasonably Big",
  34998. height: math.unit(1e300, "meters")
  34999. },
  35000. ]
  35001. ))
  35002. characterMakers.push(() => makeCharacter(
  35003. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35004. {
  35005. solgooleo: {
  35006. height: math.unit(4, "meters"),
  35007. weight: math.unit(6000*1.5, "kg"),
  35008. volume: math.unit(6000, "liters"),
  35009. name: "Solgooleo",
  35010. image: {
  35011. source: "./media/characters/pi/solgooleo.svg",
  35012. extra: 388/331,
  35013. bottom: 29/417
  35014. }
  35015. },
  35016. },
  35017. [
  35018. {
  35019. name: "Normal",
  35020. height: math.unit(4, "meters"),
  35021. default: true
  35022. },
  35023. ]
  35024. ))
  35025. characterMakers.push(() => makeCharacter(
  35026. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35027. {
  35028. front: {
  35029. height: math.unit(8, "feet"),
  35030. weight: math.unit(4, "tons"),
  35031. name: "Front",
  35032. image: {
  35033. source: "./media/characters/shaun/front.svg",
  35034. extra: 503/495,
  35035. bottom: 20/523
  35036. }
  35037. },
  35038. back: {
  35039. height: math.unit(8, "feet"),
  35040. weight: math.unit(4, "tons"),
  35041. name: "Back",
  35042. image: {
  35043. source: "./media/characters/shaun/back.svg",
  35044. extra: 487/480,
  35045. bottom: 20/507
  35046. }
  35047. },
  35048. },
  35049. [
  35050. {
  35051. name: "Lorg",
  35052. height: math.unit(8, "feet"),
  35053. default: true
  35054. },
  35055. ]
  35056. ))
  35057. characterMakers.push(() => makeCharacter(
  35058. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35059. {
  35060. frontAnthro: {
  35061. height: math.unit(7, "feet"),
  35062. name: "Front",
  35063. image: {
  35064. source: "./media/characters/sini/front-anthro.svg",
  35065. extra: 726/678,
  35066. bottom: 35/761
  35067. },
  35068. form: "anthro",
  35069. default: true
  35070. },
  35071. backAnthro: {
  35072. height: math.unit(7, "feet"),
  35073. name: "Back",
  35074. image: {
  35075. source: "./media/characters/sini/back-anthro.svg",
  35076. extra: 743/701,
  35077. bottom: 12/755
  35078. },
  35079. form: "anthro",
  35080. },
  35081. frontAnthroNsfw: {
  35082. height: math.unit(7, "feet"),
  35083. name: "Front (NSFW)",
  35084. image: {
  35085. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35086. extra: 726/678,
  35087. bottom: 35/761
  35088. },
  35089. form: "anthro"
  35090. },
  35091. backAnthroNsfw: {
  35092. height: math.unit(7, "feet"),
  35093. name: "Back (NSFW)",
  35094. image: {
  35095. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35096. extra: 743/701,
  35097. bottom: 12/755
  35098. },
  35099. form: "anthro",
  35100. },
  35101. mawAnthro: {
  35102. height: math.unit(2.14, "feet"),
  35103. name: "Maw",
  35104. image: {
  35105. source: "./media/characters/sini/maw-anthro.svg"
  35106. },
  35107. form: "anthro"
  35108. },
  35109. dick: {
  35110. height: math.unit(1.45, "feet"),
  35111. name: "Dick",
  35112. image: {
  35113. source: "./media/characters/sini/dick-anthro.svg"
  35114. },
  35115. form: "anthro"
  35116. },
  35117. feral: {
  35118. height: math.unit(16, "feet"),
  35119. name: "Feral",
  35120. image: {
  35121. source: "./media/characters/sini/feral.svg",
  35122. extra: 814/605,
  35123. bottom: 11/825
  35124. },
  35125. form: "feral",
  35126. default: true
  35127. },
  35128. feralNsfw: {
  35129. height: math.unit(16, "feet"),
  35130. name: "Feral (NSFW)",
  35131. image: {
  35132. source: "./media/characters/sini/feral-nsfw.svg",
  35133. extra: 814/605,
  35134. bottom: 11/825
  35135. },
  35136. form: "feral"
  35137. },
  35138. mawFeral: {
  35139. height: math.unit(5.66, "feet"),
  35140. name: "Maw",
  35141. image: {
  35142. source: "./media/characters/sini/maw-feral.svg"
  35143. },
  35144. form: "feral",
  35145. },
  35146. pawFeral: {
  35147. height: math.unit(5.17, "feet"),
  35148. name: "Paw",
  35149. image: {
  35150. source: "./media/characters/sini/paw-feral.svg"
  35151. },
  35152. form: "feral",
  35153. },
  35154. rumpFeral: {
  35155. height: math.unit(13.11, "feet"),
  35156. name: "Rump",
  35157. image: {
  35158. source: "./media/characters/sini/rump-feral.svg"
  35159. },
  35160. form: "feral",
  35161. },
  35162. dickFeral: {
  35163. height: math.unit(1, "feet"),
  35164. name: "Dick",
  35165. image: {
  35166. source: "./media/characters/sini/dick-feral.svg"
  35167. },
  35168. form: "feral",
  35169. },
  35170. eyeFeral: {
  35171. height: math.unit(1.23, "feet"),
  35172. name: "Eye",
  35173. image: {
  35174. source: "./media/characters/sini/eye-feral.svg"
  35175. },
  35176. form: "feral",
  35177. },
  35178. },
  35179. [
  35180. {
  35181. name: "Normal",
  35182. height: math.unit(7, "feet"),
  35183. default: true,
  35184. form: "anthro"
  35185. },
  35186. {
  35187. name: "Normal",
  35188. height: math.unit(16, "feet"),
  35189. default: true,
  35190. form: "feral"
  35191. },
  35192. ],
  35193. {
  35194. "anthro": {
  35195. name: "Anthro",
  35196. default: true
  35197. },
  35198. "feral": {
  35199. name: "Feral",
  35200. }
  35201. }
  35202. ))
  35203. characterMakers.push(() => makeCharacter(
  35204. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35205. {
  35206. side: {
  35207. height: math.unit(47.2, "meters"),
  35208. weight: math.unit(10000, "tons"),
  35209. name: "Side",
  35210. image: {
  35211. source: "./media/characters/raylldo/side.svg",
  35212. extra: 2363/642,
  35213. bottom: 221/2584
  35214. }
  35215. },
  35216. top: {
  35217. height: math.unit(240, "meters"),
  35218. weight: math.unit(10000, "tons"),
  35219. name: "Top",
  35220. image: {
  35221. source: "./media/characters/raylldo/top.svg"
  35222. }
  35223. },
  35224. bottom: {
  35225. height: math.unit(240, "meters"),
  35226. weight: math.unit(10000, "tons"),
  35227. name: "Bottom",
  35228. image: {
  35229. source: "./media/characters/raylldo/bottom.svg"
  35230. }
  35231. },
  35232. head: {
  35233. height: math.unit(38.6, "meters"),
  35234. name: "Head",
  35235. image: {
  35236. source: "./media/characters/raylldo/head.svg",
  35237. extra: 1335/1112,
  35238. bottom: 0/1335
  35239. }
  35240. },
  35241. maw: {
  35242. height: math.unit(16.37, "meters"),
  35243. name: "Maw",
  35244. image: {
  35245. source: "./media/characters/raylldo/maw.svg",
  35246. extra: 883/660,
  35247. bottom: 0/883
  35248. },
  35249. extraAttributes: {
  35250. preyCapacity: {
  35251. name: "Capacity",
  35252. power: 3,
  35253. type: "volume",
  35254. base: math.unit(1000, "people")
  35255. },
  35256. tongueSize: {
  35257. name: "Tongue Size",
  35258. power: 2,
  35259. type: "area",
  35260. base: math.unit(21, "m^2")
  35261. }
  35262. }
  35263. },
  35264. forepaw: {
  35265. height: math.unit(18, "meters"),
  35266. name: "Forepaw",
  35267. image: {
  35268. source: "./media/characters/raylldo/forepaw.svg"
  35269. }
  35270. },
  35271. hindpaw: {
  35272. height: math.unit(23, "meters"),
  35273. name: "Hindpaw",
  35274. image: {
  35275. source: "./media/characters/raylldo/hindpaw.svg"
  35276. }
  35277. },
  35278. genitals: {
  35279. height: math.unit(42, "meters"),
  35280. name: "Genitals",
  35281. image: {
  35282. source: "./media/characters/raylldo/genitals.svg"
  35283. }
  35284. },
  35285. },
  35286. [
  35287. {
  35288. name: "Normal",
  35289. height: math.unit(47.2, "meters"),
  35290. default: true
  35291. },
  35292. ]
  35293. ))
  35294. characterMakers.push(() => makeCharacter(
  35295. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35296. {
  35297. anthroFront: {
  35298. height: math.unit(9, "feet"),
  35299. weight: math.unit(600, "lb"),
  35300. name: "Anthro (Front)",
  35301. image: {
  35302. source: "./media/characters/glint/anthro-front.svg",
  35303. extra: 1097/1018,
  35304. bottom: 28/1125
  35305. }
  35306. },
  35307. anthroBack: {
  35308. height: math.unit(9, "feet"),
  35309. weight: math.unit(600, "lb"),
  35310. name: "Anthro (Back)",
  35311. image: {
  35312. source: "./media/characters/glint/anthro-back.svg",
  35313. extra: 1154/997,
  35314. bottom: 36/1190
  35315. }
  35316. },
  35317. feral: {
  35318. height: math.unit(11, "feet"),
  35319. weight: math.unit(50000, "lb"),
  35320. name: "Feral",
  35321. image: {
  35322. source: "./media/characters/glint/feral.svg",
  35323. extra: 3035/1585,
  35324. bottom: 1169/4204
  35325. }
  35326. },
  35327. dickAnthro: {
  35328. height: math.unit(0.7, "meters"),
  35329. name: "Dick (Anthro)",
  35330. image: {
  35331. source: "./media/characters/glint/dick-anthro.svg"
  35332. }
  35333. },
  35334. dickFeral: {
  35335. height: math.unit(2.65, "meters"),
  35336. name: "Dick (Feral)",
  35337. image: {
  35338. source: "./media/characters/glint/dick-feral.svg"
  35339. }
  35340. },
  35341. slitHidden: {
  35342. height: math.unit(5.85, "meters"),
  35343. name: "Slit (Hidden)",
  35344. image: {
  35345. source: "./media/characters/glint/slit-hidden.svg"
  35346. }
  35347. },
  35348. slitErect: {
  35349. height: math.unit(5.85, "meters"),
  35350. name: "Slit (Erect)",
  35351. image: {
  35352. source: "./media/characters/glint/slit-erect.svg"
  35353. }
  35354. },
  35355. mawAnthro: {
  35356. height: math.unit(0.63, "meters"),
  35357. name: "Maw (Anthro)",
  35358. image: {
  35359. source: "./media/characters/glint/maw.svg"
  35360. }
  35361. },
  35362. mawFeral: {
  35363. height: math.unit(2.89, "meters"),
  35364. name: "Maw (Feral)",
  35365. image: {
  35366. source: "./media/characters/glint/maw.svg"
  35367. }
  35368. },
  35369. },
  35370. [
  35371. {
  35372. name: "Normal",
  35373. height: math.unit(9, "feet"),
  35374. default: true
  35375. },
  35376. ]
  35377. ))
  35378. characterMakers.push(() => makeCharacter(
  35379. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35380. {
  35381. side: {
  35382. height: math.unit(15, "feet"),
  35383. weight: math.unit(5000, "kg"),
  35384. name: "Side",
  35385. image: {
  35386. source: "./media/characters/kairne/side.svg",
  35387. extra: 979/811,
  35388. bottom: 13/992
  35389. }
  35390. },
  35391. front: {
  35392. height: math.unit(15, "feet"),
  35393. weight: math.unit(5000, "kg"),
  35394. name: "Front",
  35395. image: {
  35396. source: "./media/characters/kairne/front.svg",
  35397. extra: 908/814,
  35398. bottom: 26/934
  35399. }
  35400. },
  35401. sideNsfw: {
  35402. height: math.unit(15, "feet"),
  35403. weight: math.unit(5000, "kg"),
  35404. name: "Side (NSFW)",
  35405. image: {
  35406. source: "./media/characters/kairne/side-nsfw.svg",
  35407. extra: 979/811,
  35408. bottom: 13/992
  35409. }
  35410. },
  35411. frontNsfw: {
  35412. height: math.unit(15, "feet"),
  35413. weight: math.unit(5000, "kg"),
  35414. name: "Front (NSFW)",
  35415. image: {
  35416. source: "./media/characters/kairne/front-nsfw.svg",
  35417. extra: 908/814,
  35418. bottom: 26/934
  35419. }
  35420. },
  35421. dickCaged: {
  35422. height: math.unit(0.65, "meters"),
  35423. name: "Dick-caged",
  35424. image: {
  35425. source: "./media/characters/kairne/dick-caged.svg"
  35426. }
  35427. },
  35428. dick: {
  35429. height: math.unit(0.79, "meters"),
  35430. name: "Dick",
  35431. image: {
  35432. source: "./media/characters/kairne/dick.svg"
  35433. }
  35434. },
  35435. genitals: {
  35436. height: math.unit(1.29, "meters"),
  35437. name: "Genitals",
  35438. image: {
  35439. source: "./media/characters/kairne/genitals.svg"
  35440. }
  35441. },
  35442. maw: {
  35443. height: math.unit(1.73, "meters"),
  35444. name: "Maw",
  35445. image: {
  35446. source: "./media/characters/kairne/maw.svg"
  35447. }
  35448. },
  35449. },
  35450. [
  35451. {
  35452. name: "Normal",
  35453. height: math.unit(15, "feet"),
  35454. default: true
  35455. },
  35456. ]
  35457. ))
  35458. characterMakers.push(() => makeCharacter(
  35459. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35460. {
  35461. front: {
  35462. height: math.unit(5 + 8/12, "feet"),
  35463. weight: math.unit(139, "lb"),
  35464. name: "Front",
  35465. image: {
  35466. source: "./media/characters/biscuit-jackal/front.svg",
  35467. extra: 2106/1961,
  35468. bottom: 58/2164
  35469. }
  35470. },
  35471. back: {
  35472. height: math.unit(5 + 8/12, "feet"),
  35473. weight: math.unit(139, "lb"),
  35474. name: "Back",
  35475. image: {
  35476. source: "./media/characters/biscuit-jackal/back.svg",
  35477. extra: 2132/1976,
  35478. bottom: 57/2189
  35479. }
  35480. },
  35481. werejackal: {
  35482. height: math.unit(6 + 3/12, "feet"),
  35483. weight: math.unit(188, "lb"),
  35484. name: "Werejackal",
  35485. image: {
  35486. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35487. extra: 2373/2178,
  35488. bottom: 53/2426
  35489. }
  35490. },
  35491. },
  35492. [
  35493. {
  35494. name: "Normal",
  35495. height: math.unit(5 + 8/12, "feet"),
  35496. default: true
  35497. },
  35498. ]
  35499. ))
  35500. characterMakers.push(() => makeCharacter(
  35501. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35502. {
  35503. front: {
  35504. height: math.unit(140, "cm"),
  35505. weight: math.unit(45, "kg"),
  35506. name: "Front",
  35507. image: {
  35508. source: "./media/characters/tayra-white/front.svg",
  35509. extra: 2229/2192,
  35510. bottom: 75/2304
  35511. }
  35512. },
  35513. },
  35514. [
  35515. {
  35516. name: "Normal",
  35517. height: math.unit(140, "cm"),
  35518. default: true
  35519. },
  35520. ]
  35521. ))
  35522. characterMakers.push(() => makeCharacter(
  35523. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35524. {
  35525. front: {
  35526. height: math.unit(4 + 5/12, "feet"),
  35527. name: "Front",
  35528. image: {
  35529. source: "./media/characters/scoop/front.svg",
  35530. extra: 1257/1136,
  35531. bottom: 69/1326
  35532. }
  35533. },
  35534. back: {
  35535. height: math.unit(4 + 5/12, "feet"),
  35536. name: "Back",
  35537. image: {
  35538. source: "./media/characters/scoop/back.svg",
  35539. extra: 1321/1152,
  35540. bottom: 32/1353
  35541. }
  35542. },
  35543. maw: {
  35544. height: math.unit(0.68, "feet"),
  35545. name: "Maw",
  35546. image: {
  35547. source: "./media/characters/scoop/maw.svg"
  35548. }
  35549. },
  35550. },
  35551. [
  35552. {
  35553. name: "Really Small",
  35554. height: math.unit(1, "mm")
  35555. },
  35556. {
  35557. name: "Micro",
  35558. height: math.unit(1, "inch")
  35559. },
  35560. {
  35561. name: "Normal",
  35562. height: math.unit(4 + 5/12, "feet"),
  35563. default: true
  35564. },
  35565. {
  35566. name: "Macro",
  35567. height: math.unit(200, "feet")
  35568. },
  35569. {
  35570. name: "Megamacro",
  35571. height: math.unit(3240, "feet")
  35572. },
  35573. {
  35574. name: "Teramacro",
  35575. height: math.unit(2500, "miles")
  35576. },
  35577. ]
  35578. ))
  35579. characterMakers.push(() => makeCharacter(
  35580. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35581. {
  35582. front: {
  35583. height: math.unit(15 + 7/12, "feet"),
  35584. weight: math.unit(1150, "tons"),
  35585. name: "Front",
  35586. image: {
  35587. source: "./media/characters/saphinara/front.svg",
  35588. extra: 1837/1643,
  35589. bottom: 84/1921
  35590. },
  35591. form: "normal",
  35592. default: true
  35593. },
  35594. side: {
  35595. height: math.unit(15 + 7/12, "feet"),
  35596. weight: math.unit(1150, "tons"),
  35597. name: "Side",
  35598. image: {
  35599. source: "./media/characters/saphinara/side.svg",
  35600. extra: 605/547,
  35601. bottom: 6/611
  35602. },
  35603. form: "normal"
  35604. },
  35605. back: {
  35606. height: math.unit(15 + 7/12, "feet"),
  35607. weight: math.unit(1150, "tons"),
  35608. name: "Back",
  35609. image: {
  35610. source: "./media/characters/saphinara/back.svg",
  35611. extra: 591/531,
  35612. bottom: 13/604
  35613. },
  35614. form: "normal"
  35615. },
  35616. frontTail: {
  35617. height: math.unit(15 + 7/12, "feet"),
  35618. weight: math.unit(1150, "tons"),
  35619. name: "Front (Full Tail)",
  35620. image: {
  35621. source: "./media/characters/saphinara/front-tail.svg",
  35622. extra: 2256/1630,
  35623. bottom: 261/2517
  35624. },
  35625. form: "normal"
  35626. },
  35627. insides: {
  35628. height: math.unit(11.92, "feet"),
  35629. name: "Insides",
  35630. image: {
  35631. source: "./media/characters/saphinara/insides.svg"
  35632. },
  35633. form: "normal"
  35634. },
  35635. head: {
  35636. height: math.unit(4.17, "feet"),
  35637. name: "Head",
  35638. image: {
  35639. source: "./media/characters/saphinara/head.svg"
  35640. },
  35641. form: "normal"
  35642. },
  35643. tongue: {
  35644. height: math.unit(4.60, "feet"),
  35645. name: "Tongue",
  35646. image: {
  35647. source: "./media/characters/saphinara/tongue.svg"
  35648. },
  35649. form: "normal"
  35650. },
  35651. headEnraged: {
  35652. height: math.unit(5.55, "feet"),
  35653. name: "Head (Enraged)",
  35654. image: {
  35655. source: "./media/characters/saphinara/head-enraged.svg"
  35656. },
  35657. form: "normal"
  35658. },
  35659. wings: {
  35660. height: math.unit(11.95, "feet"),
  35661. name: "Wings",
  35662. image: {
  35663. source: "./media/characters/saphinara/wings.svg"
  35664. },
  35665. form: "normal"
  35666. },
  35667. feathers: {
  35668. height: math.unit(8.92, "feet"),
  35669. name: "Feathers",
  35670. image: {
  35671. source: "./media/characters/saphinara/feathers.svg"
  35672. },
  35673. form: "normal"
  35674. },
  35675. shackles: {
  35676. height: math.unit(2, "feet"),
  35677. name: "Shackles",
  35678. image: {
  35679. source: "./media/characters/saphinara/shackles.svg"
  35680. },
  35681. form: "normal"
  35682. },
  35683. eyes: {
  35684. height: math.unit(1.331, "feet"),
  35685. name: "Eyes",
  35686. image: {
  35687. source: "./media/characters/saphinara/eyes.svg"
  35688. },
  35689. form: "normal"
  35690. },
  35691. eyesEnraged: {
  35692. height: math.unit(1.331, "feet"),
  35693. name: "Eyes (Enraged)",
  35694. image: {
  35695. source: "./media/characters/saphinara/eyes-enraged.svg"
  35696. },
  35697. form: "normal"
  35698. },
  35699. trueFormSide: {
  35700. height: math.unit(200, "feet"),
  35701. weight: math.unit(1e7, "tons"),
  35702. name: "Side",
  35703. image: {
  35704. source: "./media/characters/saphinara/true-form-side.svg",
  35705. extra: 1399/770,
  35706. bottom: 97/1496
  35707. },
  35708. form: "true-form",
  35709. default: true
  35710. },
  35711. trueFormMaw: {
  35712. height: math.unit(71.5, "feet"),
  35713. name: "Maw",
  35714. image: {
  35715. source: "./media/characters/saphinara/true-form-maw.svg",
  35716. extra: 2302/1453,
  35717. bottom: 0/2302
  35718. },
  35719. form: "true-form"
  35720. },
  35721. meowberusSide: {
  35722. height: math.unit(75, "feet"),
  35723. weight: math.unit(180000, "kg"),
  35724. preyCapacity: math.unit(50000, "people"),
  35725. name: "Side",
  35726. image: {
  35727. source: "./media/characters/saphinara/meowberus-side.svg",
  35728. extra: 1400/711,
  35729. bottom: 126/1526
  35730. },
  35731. form: "meowberus",
  35732. extraAttributes: {
  35733. "pawArea": {
  35734. name: "Paw Size",
  35735. power: 2,
  35736. type: "area",
  35737. base: math.unit(35, "m^2")
  35738. }
  35739. }
  35740. },
  35741. },
  35742. [
  35743. {
  35744. name: "Normal",
  35745. height: math.unit(15 + 7/12, "feet"),
  35746. default: true,
  35747. form: "normal"
  35748. },
  35749. {
  35750. name: "Angry",
  35751. height: math.unit(30 + 6/12, "feet"),
  35752. form: "normal"
  35753. },
  35754. {
  35755. name: "Enraged",
  35756. height: math.unit(102 + 1/12, "feet"),
  35757. form: "normal"
  35758. },
  35759. {
  35760. name: "True",
  35761. height: math.unit(200, "feet"),
  35762. default: true,
  35763. form: "true-form"
  35764. },
  35765. {
  35766. name: "Normal",
  35767. height: math.unit(75, "feet"),
  35768. default: true,
  35769. form: "meowberus"
  35770. },
  35771. ],
  35772. {
  35773. "normal": {
  35774. name: "Normal",
  35775. default: true
  35776. },
  35777. "true-form": {
  35778. name: "True Form"
  35779. },
  35780. "meowberus": {
  35781. name: "Meowberus",
  35782. },
  35783. }
  35784. ))
  35785. characterMakers.push(() => makeCharacter(
  35786. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35787. {
  35788. front: {
  35789. height: math.unit(6 + 8/12, "feet"),
  35790. weight: math.unit(300, "lb"),
  35791. name: "Front",
  35792. image: {
  35793. source: "./media/characters/jrain/front.svg",
  35794. extra: 3039/2865,
  35795. bottom: 399/3438
  35796. }
  35797. },
  35798. back: {
  35799. height: math.unit(6 + 8/12, "feet"),
  35800. weight: math.unit(300, "lb"),
  35801. name: "Back",
  35802. image: {
  35803. source: "./media/characters/jrain/back.svg",
  35804. extra: 3089/2938,
  35805. bottom: 172/3261
  35806. }
  35807. },
  35808. head: {
  35809. height: math.unit(2.14, "feet"),
  35810. name: "Head",
  35811. image: {
  35812. source: "./media/characters/jrain/head.svg"
  35813. }
  35814. },
  35815. maw: {
  35816. height: math.unit(1.77, "feet"),
  35817. name: "Maw",
  35818. image: {
  35819. source: "./media/characters/jrain/maw.svg"
  35820. }
  35821. },
  35822. leftHand: {
  35823. height: math.unit(1.1, "feet"),
  35824. name: "Left Hand",
  35825. image: {
  35826. source: "./media/characters/jrain/left-hand.svg"
  35827. }
  35828. },
  35829. rightHand: {
  35830. height: math.unit(1.1, "feet"),
  35831. name: "Right Hand",
  35832. image: {
  35833. source: "./media/characters/jrain/right-hand.svg"
  35834. }
  35835. },
  35836. eye: {
  35837. height: math.unit(0.35, "feet"),
  35838. name: "Eye",
  35839. image: {
  35840. source: "./media/characters/jrain/eye.svg"
  35841. }
  35842. },
  35843. },
  35844. [
  35845. {
  35846. name: "Normal",
  35847. height: math.unit(6 + 8/12, "feet"),
  35848. default: true
  35849. },
  35850. {
  35851. name: "Casually Large",
  35852. height: math.unit(25, "feet")
  35853. },
  35854. {
  35855. name: "Giant",
  35856. height: math.unit(100, "feet")
  35857. },
  35858. {
  35859. name: "Kaiju",
  35860. height: math.unit(300, "feet")
  35861. },
  35862. ]
  35863. ))
  35864. characterMakers.push(() => makeCharacter(
  35865. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35866. {
  35867. dragon: {
  35868. height: math.unit(5, "meters"),
  35869. name: "Dragon",
  35870. image: {
  35871. source: "./media/characters/sabrina/dragon.svg",
  35872. extra: 3670 / 2365,
  35873. bottom: 333 / 4003
  35874. }
  35875. },
  35876. gryphon: {
  35877. height: math.unit(3, "meters"),
  35878. name: "Gryphon",
  35879. image: {
  35880. source: "./media/characters/sabrina/gryphon.svg",
  35881. extra: 1576 / 945,
  35882. bottom: 71 / 1647
  35883. }
  35884. },
  35885. snake: {
  35886. height: math.unit(12, "meters"),
  35887. name: "Snake",
  35888. image: {
  35889. source: "./media/characters/sabrina/snake.svg",
  35890. extra: 1758 / 1320,
  35891. bottom: 186 / 1944
  35892. }
  35893. },
  35894. collar: {
  35895. height: math.unit(1.86, "meters"),
  35896. name: "Collar",
  35897. image: {
  35898. source: "./media/characters/sabrina/collar.svg"
  35899. }
  35900. },
  35901. eye: {
  35902. height: math.unit(0.53, "meters"),
  35903. name: "Eye",
  35904. image: {
  35905. source: "./media/characters/sabrina/eye.svg"
  35906. }
  35907. },
  35908. foot: {
  35909. height: math.unit(1.86, "meters"),
  35910. name: "Foot",
  35911. image: {
  35912. source: "./media/characters/sabrina/foot.svg"
  35913. }
  35914. },
  35915. hand: {
  35916. height: math.unit(1.32, "meters"),
  35917. name: "Hand",
  35918. image: {
  35919. source: "./media/characters/sabrina/hand.svg"
  35920. }
  35921. },
  35922. head: {
  35923. height: math.unit(2.44, "meters"),
  35924. name: "Head",
  35925. image: {
  35926. source: "./media/characters/sabrina/head.svg"
  35927. }
  35928. },
  35929. headAngry: {
  35930. height: math.unit(2.44, "meters"),
  35931. name: "Head (Angry))",
  35932. image: {
  35933. source: "./media/characters/sabrina/head-angry.svg"
  35934. }
  35935. },
  35936. maw: {
  35937. height: math.unit(1.65, "meters"),
  35938. name: "Maw",
  35939. image: {
  35940. source: "./media/characters/sabrina/maw.svg"
  35941. }
  35942. },
  35943. spikes: {
  35944. height: math.unit(1.69, "meters"),
  35945. name: "Spikes",
  35946. image: {
  35947. source: "./media/characters/sabrina/spikes.svg"
  35948. }
  35949. },
  35950. stomach: {
  35951. height: math.unit(1.15, "meters"),
  35952. name: "Stomach",
  35953. image: {
  35954. source: "./media/characters/sabrina/stomach.svg"
  35955. }
  35956. },
  35957. tongue: {
  35958. height: math.unit(1.27, "meters"),
  35959. name: "Tongue",
  35960. image: {
  35961. source: "./media/characters/sabrina/tongue.svg"
  35962. }
  35963. },
  35964. wingDorsal: {
  35965. height: math.unit(4.85, "meters"),
  35966. name: "Wing (Dorsal)",
  35967. image: {
  35968. source: "./media/characters/sabrina/wing-dorsal.svg"
  35969. }
  35970. },
  35971. wingVentral: {
  35972. height: math.unit(4.85, "meters"),
  35973. name: "Wing (Ventral)",
  35974. image: {
  35975. source: "./media/characters/sabrina/wing-ventral.svg"
  35976. }
  35977. },
  35978. },
  35979. [
  35980. {
  35981. name: "Normal",
  35982. height: math.unit(5, "meters"),
  35983. default: true
  35984. },
  35985. ]
  35986. ))
  35987. characterMakers.push(() => makeCharacter(
  35988. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35989. {
  35990. frontMaid: {
  35991. height: math.unit(5 + 5/12, "feet"),
  35992. weight: math.unit(130, "lb"),
  35993. name: "Front (Maid)",
  35994. image: {
  35995. source: "./media/characters/midnight-tales/front-maid.svg",
  35996. extra: 489/454,
  35997. bottom: 61/550
  35998. }
  35999. },
  36000. frontFormal: {
  36001. height: math.unit(5 + 5/12, "feet"),
  36002. weight: math.unit(130, "lb"),
  36003. name: "Front (Formal)",
  36004. image: {
  36005. source: "./media/characters/midnight-tales/front-formal.svg",
  36006. extra: 489/454,
  36007. bottom: 61/550
  36008. }
  36009. },
  36010. back: {
  36011. height: math.unit(5 + 5/12, "feet"),
  36012. weight: math.unit(130, "lb"),
  36013. name: "Back",
  36014. image: {
  36015. source: "./media/characters/midnight-tales/back.svg",
  36016. extra: 498/456,
  36017. bottom: 33/531
  36018. }
  36019. },
  36020. frontBeast: {
  36021. height: math.unit(40, "feet"),
  36022. weight: math.unit(64000, "lb"),
  36023. name: "Front (Beast)",
  36024. image: {
  36025. source: "./media/characters/midnight-tales/front-beast.svg",
  36026. extra: 927/860,
  36027. bottom: 53/980
  36028. }
  36029. },
  36030. backBeast: {
  36031. height: math.unit(40, "feet"),
  36032. weight: math.unit(64000, "lb"),
  36033. name: "Back (Beast)",
  36034. image: {
  36035. source: "./media/characters/midnight-tales/back-beast.svg",
  36036. extra: 929/855,
  36037. bottom: 16/945
  36038. }
  36039. },
  36040. footBeast: {
  36041. height: math.unit(6.7, "feet"),
  36042. name: "Foot (Beast)",
  36043. image: {
  36044. source: "./media/characters/midnight-tales/foot-beast.svg"
  36045. }
  36046. },
  36047. headBeast: {
  36048. height: math.unit(8, "feet"),
  36049. name: "Head (Beast)",
  36050. image: {
  36051. source: "./media/characters/midnight-tales/head-beast.svg"
  36052. }
  36053. },
  36054. },
  36055. [
  36056. {
  36057. name: "Normal",
  36058. height: math.unit(5 + 5 / 12, "feet"),
  36059. default: true
  36060. },
  36061. {
  36062. name: "Macro",
  36063. height: math.unit(25, "feet")
  36064. },
  36065. ]
  36066. ))
  36067. characterMakers.push(() => makeCharacter(
  36068. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36069. {
  36070. front: {
  36071. height: math.unit(5 + 10/12, "feet"),
  36072. name: "Front",
  36073. image: {
  36074. source: "./media/characters/argon/front.svg",
  36075. extra: 2009/1935,
  36076. bottom: 118/2127
  36077. }
  36078. },
  36079. back: {
  36080. height: math.unit(5 + 10/12, "feet"),
  36081. name: "Back",
  36082. image: {
  36083. source: "./media/characters/argon/back.svg",
  36084. extra: 2047/1992,
  36085. bottom: 20/2067
  36086. }
  36087. },
  36088. frontDressed: {
  36089. height: math.unit(5 + 10/12, "feet"),
  36090. name: "Front (Dressed)",
  36091. image: {
  36092. source: "./media/characters/argon/front-dressed.svg",
  36093. extra: 2009/1935,
  36094. bottom: 118/2127
  36095. }
  36096. },
  36097. },
  36098. [
  36099. {
  36100. name: "Normal",
  36101. height: math.unit(5 + 10/12, "feet"),
  36102. default: true
  36103. },
  36104. ]
  36105. ))
  36106. characterMakers.push(() => makeCharacter(
  36107. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36108. {
  36109. front: {
  36110. height: math.unit(8 + 6/12, "feet"),
  36111. weight: math.unit(1150, "lb"),
  36112. name: "Front",
  36113. image: {
  36114. source: "./media/characters/kichi/front.svg",
  36115. extra: 1267/1164,
  36116. bottom: 61/1328
  36117. }
  36118. },
  36119. back: {
  36120. height: math.unit(8 + 6/12, "feet"),
  36121. weight: math.unit(1150, "lb"),
  36122. name: "Back",
  36123. image: {
  36124. source: "./media/characters/kichi/back.svg",
  36125. extra: 1273/1166,
  36126. bottom: 33/1306
  36127. }
  36128. },
  36129. },
  36130. [
  36131. {
  36132. name: "Normal",
  36133. height: math.unit(8 + 6/12, "feet"),
  36134. default: true
  36135. },
  36136. ]
  36137. ))
  36138. characterMakers.push(() => makeCharacter(
  36139. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36140. {
  36141. front: {
  36142. height: math.unit(6, "feet"),
  36143. weight: math.unit(210, "lb"),
  36144. name: "Front",
  36145. image: {
  36146. source: "./media/characters/manetel-greyscale/front.svg",
  36147. extra: 350/312,
  36148. bottom: 8/358
  36149. }
  36150. },
  36151. },
  36152. [
  36153. {
  36154. name: "Micro",
  36155. height: math.unit(2, "inches")
  36156. },
  36157. {
  36158. name: "Normal",
  36159. height: math.unit(6, "feet"),
  36160. default: true
  36161. },
  36162. {
  36163. name: "Minimacro",
  36164. height: math.unit(17, "feet")
  36165. },
  36166. {
  36167. name: "Macro",
  36168. height: math.unit(117, "feet")
  36169. },
  36170. ]
  36171. ))
  36172. characterMakers.push(() => makeCharacter(
  36173. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36174. {
  36175. side: {
  36176. height: math.unit(5 + 1/12, "feet"),
  36177. weight: math.unit(418, "lb"),
  36178. name: "Side",
  36179. image: {
  36180. source: "./media/characters/softpurr/side.svg",
  36181. extra: 1993/1945,
  36182. bottom: 134/2127
  36183. }
  36184. },
  36185. front: {
  36186. height: math.unit(5 + 1/12, "feet"),
  36187. weight: math.unit(418, "lb"),
  36188. name: "Front",
  36189. image: {
  36190. source: "./media/characters/softpurr/front.svg",
  36191. extra: 1950/1856,
  36192. bottom: 174/2124
  36193. }
  36194. },
  36195. paw: {
  36196. height: math.unit(1, "feet"),
  36197. name: "Paw",
  36198. image: {
  36199. source: "./media/characters/softpurr/paw.svg"
  36200. }
  36201. },
  36202. },
  36203. [
  36204. {
  36205. name: "Normal",
  36206. height: math.unit(5 + 1/12, "feet"),
  36207. default: true
  36208. },
  36209. ]
  36210. ))
  36211. characterMakers.push(() => makeCharacter(
  36212. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36213. {
  36214. front: {
  36215. height: math.unit(260, "meters"),
  36216. name: "Front",
  36217. image: {
  36218. source: "./media/characters/anahita/front.svg",
  36219. extra: 665/635,
  36220. bottom: 89/754
  36221. }
  36222. },
  36223. },
  36224. [
  36225. {
  36226. name: "Macro",
  36227. height: math.unit(260, "meters"),
  36228. default: true
  36229. },
  36230. ]
  36231. ))
  36232. characterMakers.push(() => makeCharacter(
  36233. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36234. {
  36235. front: {
  36236. height: math.unit(4 + 10/12, "feet"),
  36237. weight: math.unit(160, "lb"),
  36238. name: "Front",
  36239. image: {
  36240. source: "./media/characters/chip-mouse/front.svg",
  36241. extra: 3528/3408,
  36242. bottom: 0/3528
  36243. }
  36244. },
  36245. frontNsfw: {
  36246. height: math.unit(4 + 10/12, "feet"),
  36247. weight: math.unit(160, "lb"),
  36248. name: "Front (NSFW)",
  36249. image: {
  36250. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36251. extra: 3528/3408,
  36252. bottom: 0/3528
  36253. }
  36254. },
  36255. },
  36256. [
  36257. {
  36258. name: "Normal",
  36259. height: math.unit(4 + 10/12, "feet"),
  36260. default: true
  36261. },
  36262. ]
  36263. ))
  36264. characterMakers.push(() => makeCharacter(
  36265. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36266. {
  36267. side: {
  36268. height: math.unit(10, "feet"),
  36269. weight: math.unit(14000, "lb"),
  36270. name: "Side",
  36271. image: {
  36272. source: "./media/characters/kremm/side.svg",
  36273. extra: 1390/1053,
  36274. bottom: 90/1480
  36275. }
  36276. },
  36277. gut: {
  36278. height: math.unit(5.8, "feet"),
  36279. name: "Gut",
  36280. image: {
  36281. source: "./media/characters/kremm/gut.svg"
  36282. }
  36283. },
  36284. ass: {
  36285. height: math.unit(6.1, "feet"),
  36286. name: "Ass",
  36287. image: {
  36288. source: "./media/characters/kremm/ass.svg"
  36289. }
  36290. },
  36291. jaws: {
  36292. height: math.unit(2.2, "feet"),
  36293. name: "Jaws",
  36294. image: {
  36295. source: "./media/characters/kremm/jaws.svg"
  36296. }
  36297. },
  36298. dick: {
  36299. height: math.unit(4.26, "feet"),
  36300. name: "Dick",
  36301. image: {
  36302. source: "./media/characters/kremm/dick.svg"
  36303. }
  36304. },
  36305. },
  36306. [
  36307. {
  36308. name: "Normal",
  36309. height: math.unit(10, "feet"),
  36310. default: true
  36311. },
  36312. ]
  36313. ))
  36314. characterMakers.push(() => makeCharacter(
  36315. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36316. {
  36317. front: {
  36318. height: math.unit(30, "stories"),
  36319. name: "Front",
  36320. image: {
  36321. source: "./media/characters/kai/front.svg",
  36322. extra: 1892/1718,
  36323. bottom: 162/2054
  36324. }
  36325. },
  36326. },
  36327. [
  36328. {
  36329. name: "Macro",
  36330. height: math.unit(30, "stories"),
  36331. default: true
  36332. },
  36333. ]
  36334. ))
  36335. characterMakers.push(() => makeCharacter(
  36336. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36337. {
  36338. front: {
  36339. height: math.unit(6 + 4/12, "feet"),
  36340. weight: math.unit(145, "lb"),
  36341. name: "Front",
  36342. image: {
  36343. source: "./media/characters/sykes/front.svg",
  36344. extra: 1321 / 1187,
  36345. bottom: 66 / 1387
  36346. }
  36347. },
  36348. back: {
  36349. height: math.unit(6 + 4/12, "feet"),
  36350. weight: math.unit(145, "lb"),
  36351. name: "Back",
  36352. image: {
  36353. source: "./media/characters/sykes/back.svg",
  36354. extra: 1326/1181,
  36355. bottom: 31/1357
  36356. }
  36357. },
  36358. traditionalOutfit: {
  36359. height: math.unit(6 + 4/12, "feet"),
  36360. weight: math.unit(145, "lb"),
  36361. name: "Traditional Outfit",
  36362. image: {
  36363. source: "./media/characters/sykes/traditional-outfit.svg",
  36364. extra: 1321 / 1187,
  36365. bottom: 66 / 1387
  36366. }
  36367. },
  36368. adventureOutfit: {
  36369. height: math.unit(6 + 4/12, "feet"),
  36370. weight: math.unit(145, "lb"),
  36371. name: "Adventure Outfit",
  36372. image: {
  36373. source: "./media/characters/sykes/adventure-outfit.svg",
  36374. extra: 1321 / 1187,
  36375. bottom: 66 / 1387
  36376. }
  36377. },
  36378. handLeft: {
  36379. height: math.unit(0.9, "feet"),
  36380. name: "Hand (Left)",
  36381. image: {
  36382. source: "./media/characters/sykes/hand-left.svg"
  36383. }
  36384. },
  36385. handRight: {
  36386. height: math.unit(0.839, "feet"),
  36387. name: "Hand (Right)",
  36388. image: {
  36389. source: "./media/characters/sykes/hand-right.svg"
  36390. }
  36391. },
  36392. leftFoot: {
  36393. height: math.unit(1.2, "feet"),
  36394. name: "Foot (Left)",
  36395. image: {
  36396. source: "./media/characters/sykes/foot-left.svg"
  36397. }
  36398. },
  36399. rightFoot: {
  36400. height: math.unit(1.2, "feet"),
  36401. name: "Foot (Right)",
  36402. image: {
  36403. source: "./media/characters/sykes/foot-right.svg"
  36404. }
  36405. },
  36406. maw: {
  36407. height: math.unit(1.93, "feet"),
  36408. name: "Maw",
  36409. image: {
  36410. source: "./media/characters/sykes/maw.svg"
  36411. }
  36412. },
  36413. teeth: {
  36414. height: math.unit(0.51, "feet"),
  36415. name: "Teeth",
  36416. image: {
  36417. source: "./media/characters/sykes/teeth.svg"
  36418. }
  36419. },
  36420. tongue: {
  36421. height: math.unit(2.13, "feet"),
  36422. name: "Tongue",
  36423. image: {
  36424. source: "./media/characters/sykes/tongue.svg"
  36425. }
  36426. },
  36427. uvula: {
  36428. height: math.unit(0.16, "feet"),
  36429. name: "Uvula",
  36430. image: {
  36431. source: "./media/characters/sykes/uvula.svg"
  36432. }
  36433. },
  36434. collar: {
  36435. height: math.unit(0.287, "feet"),
  36436. name: "Collar",
  36437. image: {
  36438. source: "./media/characters/sykes/collar.svg"
  36439. }
  36440. },
  36441. tail: {
  36442. height: math.unit(3.8, "feet"),
  36443. name: "Tail",
  36444. image: {
  36445. source: "./media/characters/sykes/tail.svg"
  36446. }
  36447. },
  36448. },
  36449. [
  36450. {
  36451. name: "Shrunken",
  36452. height: math.unit(5, "inches")
  36453. },
  36454. {
  36455. name: "Normal",
  36456. height: math.unit(6 + 4 / 12, "feet"),
  36457. default: true
  36458. },
  36459. {
  36460. name: "Big",
  36461. height: math.unit(15, "feet")
  36462. },
  36463. ]
  36464. ))
  36465. characterMakers.push(() => makeCharacter(
  36466. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36467. {
  36468. front: {
  36469. height: math.unit(5 + 8/12, "feet"),
  36470. weight: math.unit(190, "lb"),
  36471. name: "Front",
  36472. image: {
  36473. source: "./media/characters/oven-otter/front.svg",
  36474. extra: 1809/1740,
  36475. bottom: 181/1990
  36476. }
  36477. },
  36478. back: {
  36479. height: math.unit(5 + 8/12, "feet"),
  36480. weight: math.unit(190, "lb"),
  36481. name: "Back",
  36482. image: {
  36483. source: "./media/characters/oven-otter/back.svg",
  36484. extra: 1709/1635,
  36485. bottom: 118/1827
  36486. }
  36487. },
  36488. hand: {
  36489. height: math.unit(1.07, "feet"),
  36490. name: "Hand",
  36491. image: {
  36492. source: "./media/characters/oven-otter/hand.svg"
  36493. }
  36494. },
  36495. beans: {
  36496. height: math.unit(1.74, "feet"),
  36497. name: "Beans",
  36498. image: {
  36499. source: "./media/characters/oven-otter/beans.svg"
  36500. }
  36501. },
  36502. },
  36503. [
  36504. {
  36505. name: "Micro",
  36506. height: math.unit(0.5, "inches")
  36507. },
  36508. {
  36509. name: "Normal",
  36510. height: math.unit(5 + 8/12, "feet"),
  36511. default: true
  36512. },
  36513. {
  36514. name: "Macro",
  36515. height: math.unit(250, "feet")
  36516. },
  36517. {
  36518. name: "Really High",
  36519. height: math.unit(420, "feet")
  36520. },
  36521. ]
  36522. ))
  36523. characterMakers.push(() => makeCharacter(
  36524. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36525. {
  36526. front: {
  36527. height: math.unit(5, "meters"),
  36528. weight: math.unit(292000000000000, "kg"),
  36529. name: "Front",
  36530. image: {
  36531. source: "./media/characters/devourer/front.svg",
  36532. extra: 1800/1733,
  36533. bottom: 211/2011
  36534. }
  36535. },
  36536. maw: {
  36537. height: math.unit(1.1, "meter"),
  36538. name: "Maw",
  36539. image: {
  36540. source: "./media/characters/devourer/maw.svg"
  36541. }
  36542. },
  36543. },
  36544. [
  36545. {
  36546. name: "Small",
  36547. height: math.unit(3, "meters")
  36548. },
  36549. {
  36550. name: "Large",
  36551. height: math.unit(5, "meters"),
  36552. default: true
  36553. },
  36554. ]
  36555. ))
  36556. characterMakers.push(() => makeCharacter(
  36557. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36558. {
  36559. front: {
  36560. height: math.unit(6, "feet"),
  36561. weight: math.unit(400, "lb"),
  36562. name: "Front",
  36563. image: {
  36564. source: "./media/characters/ellarby/front.svg",
  36565. extra: 1909/1763,
  36566. bottom: 80/1989
  36567. }
  36568. },
  36569. back: {
  36570. height: math.unit(6, "feet"),
  36571. weight: math.unit(400, "lb"),
  36572. name: "Back",
  36573. image: {
  36574. source: "./media/characters/ellarby/back.svg",
  36575. extra: 1914/1784,
  36576. bottom: 172/2086
  36577. }
  36578. },
  36579. },
  36580. [
  36581. {
  36582. name: "Mischief",
  36583. height: math.unit(18, "inches")
  36584. },
  36585. {
  36586. name: "Trouble",
  36587. height: math.unit(12, "feet")
  36588. },
  36589. {
  36590. name: "Havoc",
  36591. height: math.unit(200, "feet"),
  36592. default: true
  36593. },
  36594. {
  36595. name: "Pandemonium",
  36596. height: math.unit(1, "mile")
  36597. },
  36598. {
  36599. name: "Catastrophe",
  36600. height: math.unit(100, "miles")
  36601. },
  36602. ]
  36603. ))
  36604. characterMakers.push(() => makeCharacter(
  36605. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36606. {
  36607. front: {
  36608. height: math.unit(4.7, "meters"),
  36609. weight: math.unit(6500, "kg"),
  36610. name: "Front",
  36611. image: {
  36612. source: "./media/characters/vex/front.svg",
  36613. extra: 1288/1140,
  36614. bottom: 100/1388
  36615. }
  36616. },
  36617. },
  36618. [
  36619. {
  36620. name: "Normal",
  36621. height: math.unit(4.7, "meters"),
  36622. default: true
  36623. },
  36624. ]
  36625. ))
  36626. characterMakers.push(() => makeCharacter(
  36627. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36628. {
  36629. normal: {
  36630. height: math.unit(6, "feet"),
  36631. weight: math.unit(350, "lb"),
  36632. name: "Normal",
  36633. image: {
  36634. source: "./media/characters/teshy/normal.svg",
  36635. extra: 1795/1735,
  36636. bottom: 16/1811
  36637. }
  36638. },
  36639. monsterFront: {
  36640. height: math.unit(12, "feet"),
  36641. weight: math.unit(4700, "lb"),
  36642. name: "Monster (Front)",
  36643. image: {
  36644. source: "./media/characters/teshy/monster-front.svg",
  36645. extra: 2042/2034,
  36646. bottom: 128/2170
  36647. }
  36648. },
  36649. monsterSide: {
  36650. height: math.unit(12, "feet"),
  36651. weight: math.unit(4700, "lb"),
  36652. name: "Monster (Side)",
  36653. image: {
  36654. source: "./media/characters/teshy/monster-side.svg",
  36655. extra: 2067/2056,
  36656. bottom: 70/2137
  36657. }
  36658. },
  36659. monsterBack: {
  36660. height: math.unit(12, "feet"),
  36661. weight: math.unit(4700, "lb"),
  36662. name: "Monster (Back)",
  36663. image: {
  36664. source: "./media/characters/teshy/monster-back.svg",
  36665. extra: 1921/1914,
  36666. bottom: 171/2092
  36667. }
  36668. },
  36669. },
  36670. [
  36671. {
  36672. name: "Normal",
  36673. height: math.unit(6, "feet"),
  36674. default: true
  36675. },
  36676. ]
  36677. ))
  36678. characterMakers.push(() => makeCharacter(
  36679. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36680. {
  36681. front: {
  36682. height: math.unit(6, "feet"),
  36683. name: "Front",
  36684. image: {
  36685. source: "./media/characters/ramey/front.svg",
  36686. extra: 790/787,
  36687. bottom: 27/817
  36688. }
  36689. },
  36690. },
  36691. [
  36692. {
  36693. name: "Normal",
  36694. height: math.unit(6, "feet"),
  36695. default: true
  36696. },
  36697. ]
  36698. ))
  36699. characterMakers.push(() => makeCharacter(
  36700. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36701. {
  36702. front: {
  36703. height: math.unit(5 + 5/12, "feet"),
  36704. weight: math.unit(120, "lb"),
  36705. name: "Front",
  36706. image: {
  36707. source: "./media/characters/phirae/front.svg",
  36708. extra: 2491/2436,
  36709. bottom: 38/2529
  36710. }
  36711. },
  36712. },
  36713. [
  36714. {
  36715. name: "Normal",
  36716. height: math.unit(5 + 5/12, "feet"),
  36717. default: true
  36718. },
  36719. ]
  36720. ))
  36721. characterMakers.push(() => makeCharacter(
  36722. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36723. {
  36724. front: {
  36725. height: math.unit(5 + 3/12, "feet"),
  36726. name: "Front",
  36727. image: {
  36728. source: "./media/characters/stagglas/front.svg",
  36729. extra: 962/882,
  36730. bottom: 53/1015
  36731. }
  36732. },
  36733. feral: {
  36734. height: math.unit(335, "cm"),
  36735. name: "Feral",
  36736. image: {
  36737. source: "./media/characters/stagglas/feral.svg",
  36738. extra: 1732/1090,
  36739. bottom: 48/1780
  36740. }
  36741. },
  36742. },
  36743. [
  36744. {
  36745. name: "Normal",
  36746. height: math.unit(5 + 3/12, "feet"),
  36747. default: true
  36748. },
  36749. ]
  36750. ))
  36751. characterMakers.push(() => makeCharacter(
  36752. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36753. {
  36754. front: {
  36755. height: math.unit(5 + 4/12, "feet"),
  36756. weight: math.unit(145, "lb"),
  36757. name: "Front",
  36758. image: {
  36759. source: "./media/characters/starra/front.svg",
  36760. extra: 1790/1691,
  36761. bottom: 91/1881
  36762. }
  36763. },
  36764. },
  36765. [
  36766. {
  36767. name: "Normal",
  36768. height: math.unit(5 + 4/12, "feet"),
  36769. default: true
  36770. },
  36771. ]
  36772. ))
  36773. characterMakers.push(() => makeCharacter(
  36774. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36775. {
  36776. front: {
  36777. height: math.unit(3.5, "meters"),
  36778. name: "Front",
  36779. image: {
  36780. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36781. extra: 1248/972,
  36782. bottom: 38/1286
  36783. }
  36784. },
  36785. },
  36786. [
  36787. {
  36788. name: "Normal",
  36789. height: math.unit(3.5, "meters"),
  36790. default: true
  36791. },
  36792. ]
  36793. ))
  36794. characterMakers.push(() => makeCharacter(
  36795. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36796. {
  36797. side: {
  36798. height: math.unit(8 + 2/12, "feet"),
  36799. weight: math.unit(1240, "lb"),
  36800. name: "Side",
  36801. image: {
  36802. source: "./media/characters/mika-valentine/side.svg",
  36803. extra: 2670/2501,
  36804. bottom: 250/2920
  36805. }
  36806. },
  36807. },
  36808. [
  36809. {
  36810. name: "Normal",
  36811. height: math.unit(8 + 2/12, "feet"),
  36812. default: true
  36813. },
  36814. ]
  36815. ))
  36816. characterMakers.push(() => makeCharacter(
  36817. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36818. {
  36819. front: {
  36820. height: math.unit(7 + 2/12, "feet"),
  36821. name: "Front",
  36822. image: {
  36823. source: "./media/characters/xoltol/front.svg",
  36824. extra: 2212/2124,
  36825. bottom: 84/2296
  36826. }
  36827. },
  36828. side: {
  36829. height: math.unit(7 + 2/12, "feet"),
  36830. name: "Side",
  36831. image: {
  36832. source: "./media/characters/xoltol/side.svg",
  36833. extra: 2273/2197,
  36834. bottom: 26/2299
  36835. }
  36836. },
  36837. hand: {
  36838. height: math.unit(2.5, "feet"),
  36839. name: "Hand",
  36840. image: {
  36841. source: "./media/characters/xoltol/hand.svg"
  36842. }
  36843. },
  36844. },
  36845. [
  36846. {
  36847. name: "Small-ish",
  36848. height: math.unit(5 + 11/12, "feet")
  36849. },
  36850. {
  36851. name: "Normal",
  36852. height: math.unit(7 + 2/12, "feet")
  36853. },
  36854. {
  36855. name: "\"Macro\"",
  36856. height: math.unit(14 + 9/12, "feet"),
  36857. default: true
  36858. },
  36859. {
  36860. name: "Alternate Height",
  36861. height: math.unit(20, "feet")
  36862. },
  36863. {
  36864. name: "Actually Macro",
  36865. height: math.unit(100, "feet")
  36866. },
  36867. ]
  36868. ))
  36869. characterMakers.push(() => makeCharacter(
  36870. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36871. {
  36872. front: {
  36873. height: math.unit(5 + 2/12, "feet"),
  36874. weight: math.unit(75, "kg"),
  36875. name: "Front",
  36876. image: {
  36877. source: "./media/characters/kotetsu-redwood/front.svg",
  36878. extra: 1053/942,
  36879. bottom: 60/1113
  36880. }
  36881. },
  36882. },
  36883. [
  36884. {
  36885. name: "Normal",
  36886. height: math.unit(5 + 2/12, "feet"),
  36887. default: true
  36888. },
  36889. ]
  36890. ))
  36891. characterMakers.push(() => makeCharacter(
  36892. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36893. {
  36894. front: {
  36895. height: math.unit(2.4, "meters"),
  36896. weight: math.unit(125, "kg"),
  36897. name: "Front",
  36898. image: {
  36899. source: "./media/characters/lilith/front.svg",
  36900. extra: 1590/1513,
  36901. bottom: 203/1793
  36902. }
  36903. },
  36904. },
  36905. [
  36906. {
  36907. name: "Humanoid",
  36908. height: math.unit(2.4, "meters")
  36909. },
  36910. {
  36911. name: "Normal",
  36912. height: math.unit(6, "meters"),
  36913. default: true
  36914. },
  36915. {
  36916. name: "Largest",
  36917. height: math.unit(55, "meters")
  36918. },
  36919. ]
  36920. ))
  36921. characterMakers.push(() => makeCharacter(
  36922. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36923. {
  36924. front: {
  36925. height: math.unit(8 + 4/12, "feet"),
  36926. weight: math.unit(535, "lb"),
  36927. name: "Front",
  36928. image: {
  36929. source: "./media/characters/beh'kah-bolger/front.svg",
  36930. extra: 1660/1603,
  36931. bottom: 37/1697
  36932. }
  36933. },
  36934. },
  36935. [
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(8 + 4/12, "feet"),
  36939. default: true
  36940. },
  36941. {
  36942. name: "Kaiju",
  36943. height: math.unit(250, "feet")
  36944. },
  36945. {
  36946. name: "Still Growing",
  36947. height: math.unit(10, "miles")
  36948. },
  36949. {
  36950. name: "Continental",
  36951. height: math.unit(5000, "miles")
  36952. },
  36953. {
  36954. name: "Final Form",
  36955. height: math.unit(2500000, "miles")
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36961. {
  36962. front: {
  36963. height: math.unit(7 + 2/12, "feet"),
  36964. weight: math.unit(230, "kg"),
  36965. name: "Front",
  36966. image: {
  36967. source: "./media/characters/tatyana-milewska/front.svg",
  36968. extra: 1199/1150,
  36969. bottom: 86/1285
  36970. }
  36971. },
  36972. },
  36973. [
  36974. {
  36975. name: "Normal",
  36976. height: math.unit(7 + 2/12, "feet"),
  36977. default: true
  36978. },
  36979. {
  36980. name: "Big",
  36981. height: math.unit(12, "feet")
  36982. },
  36983. {
  36984. name: "Minimacro",
  36985. height: math.unit(20, "feet")
  36986. },
  36987. {
  36988. name: "Macro",
  36989. height: math.unit(120, "feet")
  36990. },
  36991. ]
  36992. ))
  36993. characterMakers.push(() => makeCharacter(
  36994. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36995. {
  36996. front: {
  36997. height: math.unit(7 + 8/12, "feet"),
  36998. weight: math.unit(152, "kg"),
  36999. name: "Front",
  37000. image: {
  37001. source: "./media/characters/helen-arri/front.svg",
  37002. extra: 440/423,
  37003. bottom: 14/454
  37004. }
  37005. },
  37006. back: {
  37007. height: math.unit(7 + 8/12, "feet"),
  37008. weight: math.unit(152, "kg"),
  37009. name: "Back",
  37010. image: {
  37011. source: "./media/characters/helen-arri/back.svg",
  37012. extra: 443/426,
  37013. bottom: 8/451
  37014. }
  37015. },
  37016. },
  37017. [
  37018. {
  37019. name: "Normal",
  37020. height: math.unit(7 + 8/12, "feet"),
  37021. default: true
  37022. },
  37023. {
  37024. name: "Big",
  37025. height: math.unit(14, "feet")
  37026. },
  37027. {
  37028. name: "Minimacro",
  37029. height: math.unit(24, "feet")
  37030. },
  37031. {
  37032. name: "Macro",
  37033. height: math.unit(140, "feet")
  37034. },
  37035. ]
  37036. ))
  37037. characterMakers.push(() => makeCharacter(
  37038. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37039. {
  37040. front: {
  37041. height: math.unit(6, "meters"),
  37042. name: "Front",
  37043. image: {
  37044. source: "./media/characters/ehanu-rehu/front.svg",
  37045. extra: 1800/1800,
  37046. bottom: 59/1859
  37047. }
  37048. },
  37049. },
  37050. [
  37051. {
  37052. name: "Normal",
  37053. height: math.unit(6, "meters"),
  37054. default: true
  37055. },
  37056. ]
  37057. ))
  37058. characterMakers.push(() => makeCharacter(
  37059. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37060. {
  37061. front: {
  37062. height: math.unit(7 + 3/12, "feet"),
  37063. name: "Front",
  37064. image: {
  37065. source: "./media/characters/renholder/front.svg",
  37066. extra: 3096/2960,
  37067. bottom: 250/3346
  37068. }
  37069. },
  37070. },
  37071. [
  37072. {
  37073. name: "Normal Bat",
  37074. height: math.unit(7 + 3/12, "feet"),
  37075. default: true
  37076. },
  37077. {
  37078. name: "Slightly Tall Bat",
  37079. height: math.unit(100, "feet")
  37080. },
  37081. {
  37082. name: "Big Bat",
  37083. height: math.unit(1000, "feet")
  37084. },
  37085. {
  37086. name: "City-Sized Bat",
  37087. height: math.unit(200000, "feet")
  37088. },
  37089. {
  37090. name: "Bigger Bat",
  37091. height: math.unit(10000, "miles")
  37092. },
  37093. {
  37094. name: "Solar Sized Bat",
  37095. height: math.unit(100, "AU")
  37096. },
  37097. {
  37098. name: "Galactic Bat",
  37099. height: math.unit(200000, "lightyears")
  37100. },
  37101. {
  37102. name: "Universally Known Bat",
  37103. height: math.unit(1, "universe")
  37104. },
  37105. ]
  37106. ))
  37107. characterMakers.push(() => makeCharacter(
  37108. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37109. {
  37110. front: {
  37111. height: math.unit(6 + 11/12, "feet"),
  37112. weight: math.unit(250, "lb"),
  37113. name: "Front",
  37114. image: {
  37115. source: "./media/characters/cookiecat/front.svg",
  37116. extra: 893/827,
  37117. bottom: 14/907
  37118. }
  37119. },
  37120. },
  37121. [
  37122. {
  37123. name: "Micro",
  37124. height: math.unit(3, "inches")
  37125. },
  37126. {
  37127. name: "Normal",
  37128. height: math.unit(6 + 11/12, "feet"),
  37129. default: true
  37130. },
  37131. {
  37132. name: "Macro",
  37133. height: math.unit(100, "feet")
  37134. },
  37135. {
  37136. name: "Macro+",
  37137. height: math.unit(404, "feet")
  37138. },
  37139. {
  37140. name: "Megamacro",
  37141. height: math.unit(165, "miles")
  37142. },
  37143. {
  37144. name: "Planetary",
  37145. height: math.unit(4600, "miles")
  37146. },
  37147. ]
  37148. ))
  37149. characterMakers.push(() => makeCharacter(
  37150. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37151. {
  37152. front: {
  37153. height: math.unit(10 + 3/12, "feet"),
  37154. weight: math.unit(1500, "lb"),
  37155. name: "Front",
  37156. image: {
  37157. source: "./media/characters/tux-kusanagi/front.svg",
  37158. extra: 944/840,
  37159. bottom: 39/983
  37160. }
  37161. },
  37162. back: {
  37163. height: math.unit(10 + 3/12, "feet"),
  37164. weight: math.unit(1500, "lb"),
  37165. name: "Back",
  37166. image: {
  37167. source: "./media/characters/tux-kusanagi/back.svg",
  37168. extra: 941/842,
  37169. bottom: 28/969
  37170. }
  37171. },
  37172. rump: {
  37173. height: math.unit(5.25, "feet"),
  37174. name: "Rump",
  37175. image: {
  37176. source: "./media/characters/tux-kusanagi/rump.svg"
  37177. }
  37178. },
  37179. beak: {
  37180. height: math.unit(1.54, "feet"),
  37181. name: "Beak",
  37182. image: {
  37183. source: "./media/characters/tux-kusanagi/beak.svg"
  37184. }
  37185. },
  37186. },
  37187. [
  37188. {
  37189. name: "Normal",
  37190. height: math.unit(10 + 3/12, "feet"),
  37191. default: true
  37192. },
  37193. ]
  37194. ))
  37195. characterMakers.push(() => makeCharacter(
  37196. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37197. {
  37198. front: {
  37199. height: math.unit(58, "feet"),
  37200. weight: math.unit(200, "tons"),
  37201. name: "Front",
  37202. image: {
  37203. source: "./media/characters/uzarmazari/front.svg",
  37204. extra: 1575/1455,
  37205. bottom: 152/1727
  37206. }
  37207. },
  37208. back: {
  37209. height: math.unit(58, "feet"),
  37210. weight: math.unit(200, "tons"),
  37211. name: "Back",
  37212. image: {
  37213. source: "./media/characters/uzarmazari/back.svg",
  37214. extra: 1585/1510,
  37215. bottom: 157/1742
  37216. }
  37217. },
  37218. head: {
  37219. height: math.unit(26, "feet"),
  37220. name: "Head",
  37221. image: {
  37222. source: "./media/characters/uzarmazari/head.svg"
  37223. }
  37224. },
  37225. },
  37226. [
  37227. {
  37228. name: "Normal",
  37229. height: math.unit(58, "feet"),
  37230. default: true
  37231. },
  37232. ]
  37233. ))
  37234. characterMakers.push(() => makeCharacter(
  37235. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37236. {
  37237. side: {
  37238. height: math.unit(15, "feet"),
  37239. name: "Side",
  37240. image: {
  37241. source: "./media/characters/akitu/side.svg",
  37242. extra: 1421/1321,
  37243. bottom: 157/1578
  37244. }
  37245. },
  37246. front: {
  37247. height: math.unit(15, "feet"),
  37248. name: "Front",
  37249. image: {
  37250. source: "./media/characters/akitu/front.svg",
  37251. extra: 1435/1326,
  37252. bottom: 232/1667
  37253. }
  37254. },
  37255. },
  37256. [
  37257. {
  37258. name: "Normal",
  37259. height: math.unit(15, "feet"),
  37260. default: true
  37261. },
  37262. ]
  37263. ))
  37264. characterMakers.push(() => makeCharacter(
  37265. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37266. {
  37267. front: {
  37268. height: math.unit(10 + 8/12, "feet"),
  37269. name: "Front",
  37270. image: {
  37271. source: "./media/characters/azalie-croixland/front.svg",
  37272. extra: 1972/1856,
  37273. bottom: 31/2003
  37274. }
  37275. },
  37276. },
  37277. [
  37278. {
  37279. name: "Original Height",
  37280. height: math.unit(5 + 4/12, "feet")
  37281. },
  37282. {
  37283. name: "Normal Height",
  37284. height: math.unit(10 + 8/12, "feet"),
  37285. default: true
  37286. },
  37287. ]
  37288. ))
  37289. characterMakers.push(() => makeCharacter(
  37290. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37291. {
  37292. side: {
  37293. height: math.unit(7 + 1/12, "feet"),
  37294. weight: math.unit(245, "lb"),
  37295. name: "Side",
  37296. image: {
  37297. source: "./media/characters/kavus-kazian/side.svg",
  37298. extra: 349/342,
  37299. bottom: 15/364
  37300. }
  37301. },
  37302. },
  37303. [
  37304. {
  37305. name: "Normal",
  37306. height: math.unit(7 + 1/12, "feet"),
  37307. default: true
  37308. },
  37309. ]
  37310. ))
  37311. characterMakers.push(() => makeCharacter(
  37312. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37313. {
  37314. normalFront: {
  37315. height: math.unit(5 + 11/12, "feet"),
  37316. name: "Front",
  37317. image: {
  37318. source: "./media/characters/moonlight-rose/normal-front.svg",
  37319. extra: 1980/1825,
  37320. bottom: 18/1998
  37321. },
  37322. form: "normal",
  37323. default: true
  37324. },
  37325. normalBack: {
  37326. height: math.unit(5 + 11/12, "feet"),
  37327. name: "Back",
  37328. image: {
  37329. source: "./media/characters/moonlight-rose/normal-back.svg",
  37330. extra: 2010/1839,
  37331. bottom: 10/2020
  37332. },
  37333. form: "normal"
  37334. },
  37335. demonFront: {
  37336. height: math.unit(1.5, "earths"),
  37337. name: "Front",
  37338. image: {
  37339. source: "./media/characters/moonlight-rose/demon.svg",
  37340. extra: 1400/1294,
  37341. bottom: 45/1445
  37342. },
  37343. form: "demon",
  37344. default: true
  37345. },
  37346. terraFront: {
  37347. height: math.unit(1.5, "earths"),
  37348. name: "Front",
  37349. image: {
  37350. source: "./media/characters/moonlight-rose/terra.svg"
  37351. },
  37352. form: "terra",
  37353. default: true
  37354. },
  37355. jupiterFront: {
  37356. height: math.unit(69911*2, "km"),
  37357. name: "Front",
  37358. image: {
  37359. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37360. extra: 1367/1286,
  37361. bottom: 55/1422
  37362. },
  37363. form: "jupiter",
  37364. default: true
  37365. },
  37366. neptuneFront: {
  37367. height: math.unit(24622*2, "feet"),
  37368. name: "Front",
  37369. image: {
  37370. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37371. extra: 1851/1712,
  37372. bottom: 0/1851
  37373. },
  37374. form: "neptune",
  37375. default: true
  37376. },
  37377. },
  37378. [
  37379. {
  37380. name: "\"Natural\" Height",
  37381. height: math.unit(5 + 11/12, "feet"),
  37382. form: "normal"
  37383. },
  37384. {
  37385. name: "Smallest comfortable size",
  37386. height: math.unit(40, "meters"),
  37387. form: "normal"
  37388. },
  37389. {
  37390. name: "Common size",
  37391. height: math.unit(50, "km"),
  37392. form: "normal",
  37393. default: true
  37394. },
  37395. {
  37396. name: "Normal",
  37397. height: math.unit(1.5, "earths"),
  37398. form: "demon",
  37399. default: true
  37400. },
  37401. {
  37402. name: "Universal",
  37403. height: math.unit(15, "universes"),
  37404. form: "demon"
  37405. },
  37406. {
  37407. name: "Earth",
  37408. height: math.unit(1.5, "earths"),
  37409. form: "terra",
  37410. default: true
  37411. },
  37412. {
  37413. name: "Super Earth",
  37414. height: math.unit(67.5, "earths"),
  37415. form: "terra"
  37416. },
  37417. {
  37418. name: "Doesn't fit in a solar system...",
  37419. height: math.unit(1, "galaxy"),
  37420. form: "terra"
  37421. },
  37422. {
  37423. name: "Saturn",
  37424. height: math.unit(58232*2, "km"),
  37425. form: "jupiter"
  37426. },
  37427. {
  37428. name: "Jupiter",
  37429. height: math.unit(69911*2, "km"),
  37430. form: "jupiter",
  37431. default: true
  37432. },
  37433. {
  37434. name: "HD 100546 b",
  37435. height: math.unit(482938, "km"),
  37436. form: "jupiter"
  37437. },
  37438. {
  37439. name: "Enceladus",
  37440. height: math.unit(513*2, "km"),
  37441. form: "neptune"
  37442. },
  37443. {
  37444. name: "Europe",
  37445. height: math.unit(1560*2, "km"),
  37446. form: "neptune"
  37447. },
  37448. {
  37449. name: "Neptune",
  37450. height: math.unit(24622*2, "km"),
  37451. form: "neptune",
  37452. default: true
  37453. },
  37454. {
  37455. name: "CoRoT-9b",
  37456. height: math.unit(75067*2, "km"),
  37457. form: "neptune"
  37458. },
  37459. ],
  37460. {
  37461. "normal": {
  37462. name: "Normal",
  37463. default: true
  37464. },
  37465. "demon": {
  37466. name: "Demon"
  37467. },
  37468. "terra": {
  37469. name: "Terra"
  37470. },
  37471. "jupiter": {
  37472. name: "Jupiter"
  37473. },
  37474. "neptune": {
  37475. name: "Neptune"
  37476. }
  37477. }
  37478. ))
  37479. characterMakers.push(() => makeCharacter(
  37480. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37481. {
  37482. front: {
  37483. height: math.unit(16, "feet"),
  37484. weight: math.unit(610, "kg"),
  37485. name: "Front",
  37486. image: {
  37487. source: "./media/characters/huckle/front.svg",
  37488. extra: 1731/1625,
  37489. bottom: 33/1764
  37490. }
  37491. },
  37492. back: {
  37493. height: math.unit(16, "feet"),
  37494. weight: math.unit(610, "kg"),
  37495. name: "Back",
  37496. image: {
  37497. source: "./media/characters/huckle/back.svg",
  37498. extra: 1738/1651,
  37499. bottom: 37/1775
  37500. }
  37501. },
  37502. laughing: {
  37503. height: math.unit(3.75, "feet"),
  37504. name: "Laughing",
  37505. image: {
  37506. source: "./media/characters/huckle/laughing.svg"
  37507. }
  37508. },
  37509. angry: {
  37510. height: math.unit(4.15, "feet"),
  37511. name: "Angry",
  37512. image: {
  37513. source: "./media/characters/huckle/angry.svg"
  37514. }
  37515. },
  37516. },
  37517. [
  37518. {
  37519. name: "Normal",
  37520. height: math.unit(16, "feet"),
  37521. default: true
  37522. },
  37523. {
  37524. name: "Mini Macro",
  37525. height: math.unit(463, "feet")
  37526. },
  37527. {
  37528. name: "Macro",
  37529. height: math.unit(1680, "meters")
  37530. },
  37531. {
  37532. name: "Mega Macro",
  37533. height: math.unit(175, "km")
  37534. },
  37535. {
  37536. name: "Terra Macro",
  37537. height: math.unit(32, "gigameters")
  37538. },
  37539. {
  37540. name: "Multiverse+",
  37541. height: math.unit(2.56e23, "yottameters")
  37542. },
  37543. ]
  37544. ))
  37545. characterMakers.push(() => makeCharacter(
  37546. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37547. {
  37548. front: {
  37549. height: math.unit(6 + 9/12, "feet"),
  37550. weight: math.unit(280, "lb"),
  37551. name: "Front",
  37552. image: {
  37553. source: "./media/characters/candy/front.svg",
  37554. extra: 234/217,
  37555. bottom: 11/245
  37556. }
  37557. },
  37558. },
  37559. [
  37560. {
  37561. name: "Really Small",
  37562. height: math.unit(0.1, "nm")
  37563. },
  37564. {
  37565. name: "Micro",
  37566. height: math.unit(2, "inches")
  37567. },
  37568. {
  37569. name: "Normal",
  37570. height: math.unit(6 + 9/12, "feet"),
  37571. default: true
  37572. },
  37573. {
  37574. name: "Small Macro",
  37575. height: math.unit(69, "feet")
  37576. },
  37577. {
  37578. name: "Macro",
  37579. height: math.unit(160, "feet")
  37580. },
  37581. {
  37582. name: "Megamacro",
  37583. height: math.unit(22000, "miles")
  37584. },
  37585. {
  37586. name: "Gigamacro",
  37587. height: math.unit(50000, "miles")
  37588. },
  37589. ]
  37590. ))
  37591. characterMakers.push(() => makeCharacter(
  37592. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37593. {
  37594. front: {
  37595. height: math.unit(4, "feet"),
  37596. weight: math.unit(90, "lb"),
  37597. name: "Front",
  37598. image: {
  37599. source: "./media/characters/joey-mcdonald/front.svg",
  37600. extra: 1059/852,
  37601. bottom: 33/1092
  37602. }
  37603. },
  37604. back: {
  37605. height: math.unit(4, "feet"),
  37606. weight: math.unit(90, "lb"),
  37607. name: "Back",
  37608. image: {
  37609. source: "./media/characters/joey-mcdonald/back.svg",
  37610. extra: 1077/879,
  37611. bottom: 5/1082
  37612. }
  37613. },
  37614. frontKobold: {
  37615. height: math.unit(4, "feet"),
  37616. weight: math.unit(100, "lb"),
  37617. name: "Front-kobold",
  37618. image: {
  37619. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37620. extra: 1480/1367,
  37621. bottom: 0/1480
  37622. }
  37623. },
  37624. backKobold: {
  37625. height: math.unit(4, "feet"),
  37626. weight: math.unit(100, "lb"),
  37627. name: "Back-kobold",
  37628. image: {
  37629. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37630. extra: 1449/1361,
  37631. bottom: 0/1449
  37632. }
  37633. },
  37634. },
  37635. [
  37636. {
  37637. name: "Normal",
  37638. height: math.unit(4, "feet"),
  37639. default: true
  37640. },
  37641. ]
  37642. ))
  37643. characterMakers.push(() => makeCharacter(
  37644. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37645. {
  37646. front: {
  37647. height: math.unit(12 + 6/12, "feet"),
  37648. name: "Front",
  37649. image: {
  37650. source: "./media/characters/kass-lockheed/front.svg",
  37651. extra: 354/343,
  37652. bottom: 9/363
  37653. }
  37654. },
  37655. back: {
  37656. height: math.unit(12 + 6/12, "feet"),
  37657. name: "Back",
  37658. image: {
  37659. source: "./media/characters/kass-lockheed/back.svg",
  37660. extra: 364/352,
  37661. bottom: 3/367
  37662. }
  37663. },
  37664. dick: {
  37665. height: math.unit(3.12, "feet"),
  37666. name: "Dick",
  37667. image: {
  37668. source: "./media/characters/kass-lockheed/dick.svg"
  37669. }
  37670. },
  37671. head: {
  37672. height: math.unit(2.6, "feet"),
  37673. name: "Head",
  37674. image: {
  37675. source: "./media/characters/kass-lockheed/head.svg"
  37676. }
  37677. },
  37678. bleh: {
  37679. height: math.unit(2.85, "feet"),
  37680. name: "Bleh",
  37681. image: {
  37682. source: "./media/characters/kass-lockheed/bleh.svg"
  37683. }
  37684. },
  37685. smug: {
  37686. height: math.unit(2.85, "feet"),
  37687. name: "Smug",
  37688. image: {
  37689. source: "./media/characters/kass-lockheed/smug.svg"
  37690. }
  37691. },
  37692. },
  37693. [
  37694. {
  37695. name: "Normal",
  37696. height: math.unit(12 + 6/12, "feet"),
  37697. default: true
  37698. },
  37699. ]
  37700. ))
  37701. characterMakers.push(() => makeCharacter(
  37702. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37703. {
  37704. front: {
  37705. height: math.unit(6 + 2/12, "feet"),
  37706. name: "Front",
  37707. image: {
  37708. source: "./media/characters/taylor/front.svg",
  37709. extra: 639/495,
  37710. bottom: 12/651
  37711. }
  37712. },
  37713. },
  37714. [
  37715. {
  37716. name: "Normal",
  37717. height: math.unit(6 + 2/12, "feet"),
  37718. default: true
  37719. },
  37720. {
  37721. name: "Big",
  37722. height: math.unit(15, "feet")
  37723. },
  37724. {
  37725. name: "Lorg",
  37726. height: math.unit(80, "feet")
  37727. },
  37728. {
  37729. name: "Too Lorg",
  37730. height: math.unit(120, "feet")
  37731. },
  37732. ]
  37733. ))
  37734. characterMakers.push(() => makeCharacter(
  37735. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37736. {
  37737. front: {
  37738. height: math.unit(15, "feet"),
  37739. name: "Front",
  37740. image: {
  37741. source: "./media/characters/kaizer/front.svg",
  37742. extra: 1612/1436,
  37743. bottom: 43/1655
  37744. }
  37745. },
  37746. },
  37747. [
  37748. {
  37749. name: "Normal",
  37750. height: math.unit(15, "feet"),
  37751. default: true
  37752. },
  37753. ]
  37754. ))
  37755. characterMakers.push(() => makeCharacter(
  37756. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37757. {
  37758. front: {
  37759. height: math.unit(2, "feet"),
  37760. weight: math.unit(30, "lb"),
  37761. name: "Front",
  37762. image: {
  37763. source: "./media/characters/sandy/front.svg",
  37764. extra: 1439/1307,
  37765. bottom: 194/1633
  37766. }
  37767. },
  37768. },
  37769. [
  37770. {
  37771. name: "Normal",
  37772. height: math.unit(2, "feet"),
  37773. default: true
  37774. },
  37775. ]
  37776. ))
  37777. characterMakers.push(() => makeCharacter(
  37778. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37779. {
  37780. front: {
  37781. height: math.unit(3, "feet"),
  37782. name: "Front",
  37783. image: {
  37784. source: "./media/characters/mellvi/front.svg",
  37785. extra: 1831/1630,
  37786. bottom: 58/1889
  37787. }
  37788. },
  37789. },
  37790. [
  37791. {
  37792. name: "Normal",
  37793. height: math.unit(3, "feet"),
  37794. default: true
  37795. },
  37796. ]
  37797. ))
  37798. characterMakers.push(() => makeCharacter(
  37799. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37800. {
  37801. front: {
  37802. height: math.unit(5 + 11/12, "feet"),
  37803. weight: math.unit(200, "lb"),
  37804. name: "Front",
  37805. image: {
  37806. source: "./media/characters/shirou/front.svg",
  37807. extra: 2491/2383,
  37808. bottom: 189/2680
  37809. }
  37810. },
  37811. back: {
  37812. height: math.unit(5 + 11/12, "feet"),
  37813. weight: math.unit(200, "lb"),
  37814. name: "Back",
  37815. image: {
  37816. source: "./media/characters/shirou/back.svg",
  37817. extra: 2554/2450,
  37818. bottom: 76/2630
  37819. }
  37820. },
  37821. },
  37822. [
  37823. {
  37824. name: "Normal",
  37825. height: math.unit(5 + 11/12, "feet"),
  37826. default: true
  37827. },
  37828. ]
  37829. ))
  37830. characterMakers.push(() => makeCharacter(
  37831. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37832. {
  37833. front: {
  37834. height: math.unit(6 + 3/12, "feet"),
  37835. weight: math.unit(177, "lb"),
  37836. name: "Front",
  37837. image: {
  37838. source: "./media/characters/noryu/front.svg",
  37839. extra: 973/885,
  37840. bottom: 10/983
  37841. }
  37842. },
  37843. },
  37844. [
  37845. {
  37846. name: "Normal",
  37847. height: math.unit(6 + 3/12, "feet"),
  37848. default: true
  37849. },
  37850. ]
  37851. ))
  37852. characterMakers.push(() => makeCharacter(
  37853. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37854. {
  37855. front: {
  37856. height: math.unit(5 + 6/12, "feet"),
  37857. weight: math.unit(170, "lb"),
  37858. name: "Front",
  37859. image: {
  37860. source: "./media/characters/mevolas-rubenido/front.svg",
  37861. extra: 2109/1901,
  37862. bottom: 96/2205
  37863. }
  37864. },
  37865. },
  37866. [
  37867. {
  37868. name: "Normal",
  37869. height: math.unit(5 + 6/12, "feet"),
  37870. default: true
  37871. },
  37872. ]
  37873. ))
  37874. characterMakers.push(() => makeCharacter(
  37875. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37876. {
  37877. front: {
  37878. height: math.unit(100, "feet"),
  37879. name: "Front",
  37880. image: {
  37881. source: "./media/characters/dee/front.svg",
  37882. extra: 2153/2036,
  37883. bottom: 59/2212
  37884. }
  37885. },
  37886. back: {
  37887. height: math.unit(100, "feet"),
  37888. name: "Back",
  37889. image: {
  37890. source: "./media/characters/dee/back.svg",
  37891. extra: 2183/2058,
  37892. bottom: 75/2258
  37893. }
  37894. },
  37895. foot: {
  37896. height: math.unit(19.43, "feet"),
  37897. name: "Foot",
  37898. image: {
  37899. source: "./media/characters/dee/foot.svg"
  37900. }
  37901. },
  37902. hoof: {
  37903. height: math.unit(20.6, "feet"),
  37904. name: "Hoof",
  37905. image: {
  37906. source: "./media/characters/dee/hoof.svg"
  37907. }
  37908. },
  37909. },
  37910. [
  37911. {
  37912. name: "Macro",
  37913. height: math.unit(100, "feet"),
  37914. default: true
  37915. },
  37916. ]
  37917. ))
  37918. characterMakers.push(() => makeCharacter(
  37919. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37920. {
  37921. front: {
  37922. height: math.unit(5 + 6/12, "feet"),
  37923. name: "Front",
  37924. image: {
  37925. source: "./media/characters/teh/front.svg",
  37926. extra: 1002/847,
  37927. bottom: 62/1064
  37928. }
  37929. },
  37930. },
  37931. [
  37932. {
  37933. name: "Normal",
  37934. height: math.unit(5 + 6/12, "feet"),
  37935. default: true
  37936. },
  37937. ]
  37938. ))
  37939. characterMakers.push(() => makeCharacter(
  37940. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37941. {
  37942. side: {
  37943. height: math.unit(6 + 1/12, "feet"),
  37944. weight: math.unit(204, "lb"),
  37945. name: "Side",
  37946. image: {
  37947. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37948. extra: 974/775,
  37949. bottom: 169/1143
  37950. }
  37951. },
  37952. sitting: {
  37953. height: math.unit(6 + 2/12, "feet"),
  37954. weight: math.unit(204, "lb"),
  37955. name: "Sitting",
  37956. image: {
  37957. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37958. extra: 1175/964,
  37959. bottom: 378/1553
  37960. }
  37961. },
  37962. },
  37963. [
  37964. {
  37965. name: "Normal",
  37966. height: math.unit(6 + 1/12, "feet"),
  37967. default: true
  37968. },
  37969. ]
  37970. ))
  37971. characterMakers.push(() => makeCharacter(
  37972. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37973. {
  37974. front: {
  37975. height: math.unit(6, "inches"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/tululi/front.svg",
  37979. extra: 1997/1876,
  37980. bottom: 20/2017
  37981. }
  37982. },
  37983. },
  37984. [
  37985. {
  37986. name: "Normal",
  37987. height: math.unit(6, "inches"),
  37988. default: true
  37989. },
  37990. ]
  37991. ))
  37992. characterMakers.push(() => makeCharacter(
  37993. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37994. {
  37995. front: {
  37996. height: math.unit(4 + 1/12, "feet"),
  37997. name: "Front",
  37998. image: {
  37999. source: "./media/characters/star/front.svg",
  38000. extra: 1493/1189,
  38001. bottom: 48/1541
  38002. }
  38003. },
  38004. },
  38005. [
  38006. {
  38007. name: "Normal",
  38008. height: math.unit(4 + 1/12, "feet"),
  38009. default: true
  38010. },
  38011. ]
  38012. ))
  38013. characterMakers.push(() => makeCharacter(
  38014. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38015. {
  38016. front: {
  38017. height: math.unit(6 + 3/12, "feet"),
  38018. name: "Front",
  38019. image: {
  38020. source: "./media/characters/comet/front.svg",
  38021. extra: 1681/1462,
  38022. bottom: 26/1707
  38023. }
  38024. },
  38025. },
  38026. [
  38027. {
  38028. name: "Normal",
  38029. height: math.unit(6 + 3/12, "feet"),
  38030. default: true
  38031. },
  38032. ]
  38033. ))
  38034. characterMakers.push(() => makeCharacter(
  38035. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38036. {
  38037. front: {
  38038. height: math.unit(950, "feet"),
  38039. name: "Front",
  38040. image: {
  38041. source: "./media/characters/vortex/front.svg",
  38042. extra: 1497/1434,
  38043. bottom: 56/1553
  38044. }
  38045. },
  38046. maw: {
  38047. height: math.unit(285, "feet"),
  38048. name: "Maw",
  38049. image: {
  38050. source: "./media/characters/vortex/maw.svg"
  38051. }
  38052. },
  38053. },
  38054. [
  38055. {
  38056. name: "Macro",
  38057. height: math.unit(950, "feet"),
  38058. default: true
  38059. },
  38060. ]
  38061. ))
  38062. characterMakers.push(() => makeCharacter(
  38063. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38064. {
  38065. front: {
  38066. height: math.unit(600, "feet"),
  38067. weight: math.unit(0.02, "grams"),
  38068. name: "Front",
  38069. image: {
  38070. source: "./media/characters/doodle/front.svg",
  38071. extra: 1578/1413,
  38072. bottom: 37/1615
  38073. }
  38074. },
  38075. },
  38076. [
  38077. {
  38078. name: "Macro",
  38079. height: math.unit(600, "feet"),
  38080. default: true
  38081. },
  38082. ]
  38083. ))
  38084. characterMakers.push(() => makeCharacter(
  38085. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38086. {
  38087. front: {
  38088. height: math.unit(6 + 6/12, "feet"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/jai/front.svg",
  38092. extra: 1645/1534,
  38093. bottom: 115/1760
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(6 + 6/12, "feet"),
  38101. default: true
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(6 + 8/12, "feet"),
  38110. name: "Front",
  38111. image: {
  38112. source: "./media/characters/pixel/front.svg",
  38113. extra: 1900/1735,
  38114. bottom: 63/1963
  38115. }
  38116. },
  38117. },
  38118. [
  38119. {
  38120. name: "Normal",
  38121. height: math.unit(6 + 8/12, "feet"),
  38122. default: true
  38123. },
  38124. ]
  38125. ))
  38126. characterMakers.push(() => makeCharacter(
  38127. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38128. {
  38129. back: {
  38130. height: math.unit(4 + 1/12, "feet"),
  38131. weight: math.unit(75, "lb"),
  38132. name: "Back",
  38133. image: {
  38134. source: "./media/characters/rhett/back.svg",
  38135. extra: 930/878,
  38136. bottom: 25/955
  38137. }
  38138. },
  38139. front: {
  38140. height: math.unit(4 + 1/12, "feet"),
  38141. weight: math.unit(75, "lb"),
  38142. name: "Front",
  38143. image: {
  38144. source: "./media/characters/rhett/front.svg",
  38145. extra: 1682/1586,
  38146. bottom: 92/1774
  38147. }
  38148. },
  38149. },
  38150. [
  38151. {
  38152. name: "Micro",
  38153. height: math.unit(8, "inches")
  38154. },
  38155. {
  38156. name: "Tiny",
  38157. height: math.unit(2, "feet")
  38158. },
  38159. {
  38160. name: "Normal",
  38161. height: math.unit(4 + 1/12, "feet"),
  38162. default: true
  38163. },
  38164. ]
  38165. ))
  38166. characterMakers.push(() => makeCharacter(
  38167. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38168. {
  38169. front: {
  38170. height: math.unit(3 + 3/12, "feet"),
  38171. name: "Front",
  38172. image: {
  38173. source: "./media/characters/penny/front.svg",
  38174. extra: 1406/1311,
  38175. bottom: 26/1432
  38176. }
  38177. },
  38178. },
  38179. [
  38180. {
  38181. name: "Normal",
  38182. height: math.unit(3 + 3/12, "feet"),
  38183. default: true
  38184. },
  38185. ]
  38186. ))
  38187. characterMakers.push(() => makeCharacter(
  38188. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38189. {
  38190. front: {
  38191. height: math.unit(4 + 11/12, "feet"),
  38192. name: "Front",
  38193. image: {
  38194. source: "./media/characters/monty/front.svg",
  38195. extra: 1479/1209,
  38196. bottom: 0/1479
  38197. }
  38198. },
  38199. },
  38200. [
  38201. {
  38202. name: "Normal",
  38203. height: math.unit(4 + 11/12, "feet"),
  38204. default: true
  38205. },
  38206. ]
  38207. ))
  38208. characterMakers.push(() => makeCharacter(
  38209. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38210. {
  38211. front: {
  38212. height: math.unit(8 + 4/12, "feet"),
  38213. name: "Front",
  38214. image: {
  38215. source: "./media/characters/sterling/front.svg",
  38216. extra: 1420/1236,
  38217. bottom: 27/1447
  38218. }
  38219. },
  38220. },
  38221. [
  38222. {
  38223. name: "Normal",
  38224. height: math.unit(8 + 4/12, "feet"),
  38225. default: true
  38226. },
  38227. ]
  38228. ))
  38229. characterMakers.push(() => makeCharacter(
  38230. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38231. {
  38232. front: {
  38233. height: math.unit(15, "feet"),
  38234. name: "Front",
  38235. image: {
  38236. source: "./media/characters/marble/front.svg",
  38237. extra: 973/937,
  38238. bottom: 32/1005
  38239. }
  38240. },
  38241. },
  38242. [
  38243. {
  38244. name: "Normal",
  38245. height: math.unit(15, "feet"),
  38246. default: true
  38247. },
  38248. ]
  38249. ))
  38250. characterMakers.push(() => makeCharacter(
  38251. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38252. {
  38253. front: {
  38254. height: math.unit(3, "inches"),
  38255. name: "Front",
  38256. image: {
  38257. source: "./media/characters/powder/front.svg",
  38258. extra: 1504/1334,
  38259. bottom: 518/2022
  38260. }
  38261. },
  38262. },
  38263. [
  38264. {
  38265. name: "Normal",
  38266. height: math.unit(3, "inches"),
  38267. default: true
  38268. },
  38269. ]
  38270. ))
  38271. characterMakers.push(() => makeCharacter(
  38272. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38273. {
  38274. front: {
  38275. height: math.unit(4 + 5/12, "feet"),
  38276. name: "Front",
  38277. image: {
  38278. source: "./media/characters/joey-raccoon/front.svg",
  38279. extra: 1273/1197,
  38280. bottom: 0/1273
  38281. }
  38282. },
  38283. },
  38284. [
  38285. {
  38286. name: "Normal",
  38287. height: math.unit(4 + 5/12, "feet"),
  38288. default: true
  38289. },
  38290. ]
  38291. ))
  38292. characterMakers.push(() => makeCharacter(
  38293. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38294. {
  38295. front: {
  38296. height: math.unit(8 + 4/12, "feet"),
  38297. name: "Front",
  38298. image: {
  38299. source: "./media/characters/vick/front.svg",
  38300. extra: 2187/2118,
  38301. bottom: 47/2234
  38302. }
  38303. },
  38304. },
  38305. [
  38306. {
  38307. name: "Normal",
  38308. height: math.unit(8 + 4/12, "feet"),
  38309. default: true
  38310. },
  38311. ]
  38312. ))
  38313. characterMakers.push(() => makeCharacter(
  38314. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38315. {
  38316. front: {
  38317. height: math.unit(5 + 5/12, "feet"),
  38318. name: "Front",
  38319. image: {
  38320. source: "./media/characters/mitsy/front.svg",
  38321. extra: 1842/1695,
  38322. bottom: 0/1842
  38323. }
  38324. },
  38325. },
  38326. [
  38327. {
  38328. name: "Normal",
  38329. height: math.unit(5 + 5/12, "feet"),
  38330. default: true
  38331. },
  38332. ]
  38333. ))
  38334. characterMakers.push(() => makeCharacter(
  38335. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38336. {
  38337. front: {
  38338. height: math.unit(6 + 3/12, "feet"),
  38339. name: "Front",
  38340. image: {
  38341. source: "./media/characters/silvy/front.svg",
  38342. extra: 1995/1836,
  38343. bottom: 225/2220
  38344. }
  38345. },
  38346. },
  38347. [
  38348. {
  38349. name: "Normal",
  38350. height: math.unit(6 + 3/12, "feet"),
  38351. default: true
  38352. },
  38353. ]
  38354. ))
  38355. characterMakers.push(() => makeCharacter(
  38356. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38357. {
  38358. front: {
  38359. height: math.unit(3 + 8/12, "feet"),
  38360. name: "Front",
  38361. image: {
  38362. source: "./media/characters/rodney/front.svg",
  38363. extra: 1956/1747,
  38364. bottom: 31/1987
  38365. }
  38366. },
  38367. frontDressed: {
  38368. height: math.unit(2.9, "feet"),
  38369. name: "Front (Dressed)",
  38370. image: {
  38371. source: "./media/characters/rodney/front-dressed.svg",
  38372. extra: 1382/1241,
  38373. bottom: 385/1767
  38374. }
  38375. },
  38376. },
  38377. [
  38378. {
  38379. name: "Normal",
  38380. height: math.unit(3 + 8/12, "feet"),
  38381. default: true
  38382. },
  38383. ]
  38384. ))
  38385. characterMakers.push(() => makeCharacter(
  38386. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38387. {
  38388. front: {
  38389. height: math.unit(5 + 9/12, "feet"),
  38390. weight: math.unit(194, "lbs"),
  38391. name: "Front",
  38392. image: {
  38393. source: "./media/characters/zakail-sudekai/front.svg",
  38394. extra: 2696/2533,
  38395. bottom: 248/2944
  38396. }
  38397. },
  38398. maw: {
  38399. height: math.unit(1.35, "feet"),
  38400. name: "Maw",
  38401. image: {
  38402. source: "./media/characters/zakail-sudekai/maw.svg"
  38403. }
  38404. },
  38405. },
  38406. [
  38407. {
  38408. name: "Normal",
  38409. height: math.unit(5 + 9/12, "feet"),
  38410. default: true
  38411. },
  38412. ]
  38413. ))
  38414. characterMakers.push(() => makeCharacter(
  38415. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38416. {
  38417. front: {
  38418. height: math.unit(8 + 4/12, "feet"),
  38419. weight: math.unit(1200, "lb"),
  38420. name: "Front",
  38421. image: {
  38422. source: "./media/characters/eleanor/front.svg",
  38423. extra: 1226/1192,
  38424. bottom: 52/1278
  38425. }
  38426. },
  38427. back: {
  38428. height: math.unit(8 + 4/12, "feet"),
  38429. weight: math.unit(1200, "lb"),
  38430. name: "Back",
  38431. image: {
  38432. source: "./media/characters/eleanor/back.svg",
  38433. extra: 1242/1184,
  38434. bottom: 60/1302
  38435. }
  38436. },
  38437. head: {
  38438. height: math.unit(2.62, "feet"),
  38439. name: "Head",
  38440. image: {
  38441. source: "./media/characters/eleanor/head.svg"
  38442. }
  38443. },
  38444. },
  38445. [
  38446. {
  38447. name: "Normal",
  38448. height: math.unit(8 + 4/12, "feet"),
  38449. default: true
  38450. },
  38451. ]
  38452. ))
  38453. characterMakers.push(() => makeCharacter(
  38454. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38455. {
  38456. front: {
  38457. height: math.unit(8 + 4/12, "feet"),
  38458. weight: math.unit(750, "lb"),
  38459. name: "Front",
  38460. image: {
  38461. source: "./media/characters/tanya/front.svg",
  38462. extra: 1749/1615,
  38463. bottom: 33/1782
  38464. }
  38465. },
  38466. },
  38467. [
  38468. {
  38469. name: "Normal",
  38470. height: math.unit(8 + 4/12, "feet"),
  38471. default: true
  38472. },
  38473. ]
  38474. ))
  38475. characterMakers.push(() => makeCharacter(
  38476. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38477. {
  38478. front: {
  38479. height: math.unit(5, "feet"),
  38480. weight: math.unit(225, "lb"),
  38481. name: "Front",
  38482. image: {
  38483. source: "./media/characters/cindy/front.svg",
  38484. extra: 1320/1250,
  38485. bottom: 42/1362
  38486. }
  38487. },
  38488. frontDressed: {
  38489. height: math.unit(5, "feet"),
  38490. weight: math.unit(225, "lb"),
  38491. name: "Front (Dressed)",
  38492. image: {
  38493. source: "./media/characters/cindy/front-dressed.svg",
  38494. extra: 1320/1250,
  38495. bottom: 42/1362
  38496. }
  38497. },
  38498. back: {
  38499. height: math.unit(5, "feet"),
  38500. weight: math.unit(225, "lb"),
  38501. name: "Back",
  38502. image: {
  38503. source: "./media/characters/cindy/back.svg",
  38504. extra: 1384/1346,
  38505. bottom: 14/1398
  38506. }
  38507. },
  38508. },
  38509. [
  38510. {
  38511. name: "Normal",
  38512. height: math.unit(5, "feet"),
  38513. default: true
  38514. },
  38515. ]
  38516. ))
  38517. characterMakers.push(() => makeCharacter(
  38518. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38519. {
  38520. front: {
  38521. height: math.unit(6 + 9/12, "feet"),
  38522. weight: math.unit(440, "lb"),
  38523. name: "Front",
  38524. image: {
  38525. source: "./media/characters/wilbur-owen/front.svg",
  38526. extra: 1575/1448,
  38527. bottom: 72/1647
  38528. }
  38529. },
  38530. back: {
  38531. height: math.unit(6 + 9/12, "feet"),
  38532. weight: math.unit(440, "lb"),
  38533. name: "Back",
  38534. image: {
  38535. source: "./media/characters/wilbur-owen/back.svg",
  38536. extra: 1578/1445,
  38537. bottom: 36/1614
  38538. }
  38539. },
  38540. },
  38541. [
  38542. {
  38543. name: "Normal",
  38544. height: math.unit(6 + 9/12, "feet"),
  38545. default: true
  38546. },
  38547. ]
  38548. ))
  38549. characterMakers.push(() => makeCharacter(
  38550. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38551. {
  38552. front: {
  38553. height: math.unit(6 + 5/12, "feet"),
  38554. weight: math.unit(650, "lb"),
  38555. name: "Front",
  38556. image: {
  38557. source: "./media/characters/keegan/front.svg",
  38558. extra: 2387/2198,
  38559. bottom: 33/2420
  38560. }
  38561. },
  38562. side: {
  38563. height: math.unit(6 + 5/12, "feet"),
  38564. weight: math.unit(650, "lb"),
  38565. name: "Side",
  38566. image: {
  38567. source: "./media/characters/keegan/side.svg",
  38568. extra: 2390/2202,
  38569. bottom: 47/2437
  38570. }
  38571. },
  38572. back: {
  38573. height: math.unit(6 + 5/12, "feet"),
  38574. weight: math.unit(650, "lb"),
  38575. name: "Back",
  38576. image: {
  38577. source: "./media/characters/keegan/back.svg",
  38578. extra: 2418/2268,
  38579. bottom: 15/2433
  38580. }
  38581. },
  38582. frontSfw: {
  38583. height: math.unit(6 + 5/12, "feet"),
  38584. weight: math.unit(650, "lb"),
  38585. name: "Front (SFW)",
  38586. image: {
  38587. source: "./media/characters/keegan/front-sfw.svg",
  38588. extra: 2387/2198,
  38589. bottom: 33/2420
  38590. }
  38591. },
  38592. beans: {
  38593. height: math.unit(1.85, "feet"),
  38594. name: "Beans",
  38595. image: {
  38596. source: "./media/characters/keegan/beans.svg"
  38597. }
  38598. },
  38599. },
  38600. [
  38601. {
  38602. name: "Normal",
  38603. height: math.unit(6 + 5/12, "feet"),
  38604. default: true
  38605. },
  38606. ]
  38607. ))
  38608. characterMakers.push(() => makeCharacter(
  38609. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38610. {
  38611. front: {
  38612. height: math.unit(9, "feet"),
  38613. name: "Front",
  38614. image: {
  38615. source: "./media/characters/colton/front.svg",
  38616. extra: 1589/1326,
  38617. bottom: 139/1728
  38618. }
  38619. },
  38620. },
  38621. [
  38622. {
  38623. name: "Normal",
  38624. height: math.unit(9, "feet"),
  38625. default: true
  38626. },
  38627. ]
  38628. ))
  38629. characterMakers.push(() => makeCharacter(
  38630. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38631. {
  38632. front: {
  38633. height: math.unit(2 + 9/12, "feet"),
  38634. name: "Front",
  38635. image: {
  38636. source: "./media/characters/bora/front.svg",
  38637. extra: 1265/1250,
  38638. bottom: 24/1289
  38639. }
  38640. },
  38641. },
  38642. [
  38643. {
  38644. name: "Normal",
  38645. height: math.unit(2 + 9/12, "feet"),
  38646. default: true
  38647. },
  38648. ]
  38649. ))
  38650. characterMakers.push(() => makeCharacter(
  38651. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38652. {
  38653. front: {
  38654. height: math.unit(8, "feet"),
  38655. name: "Front",
  38656. image: {
  38657. source: "./media/characters/myu-myu/front.svg",
  38658. extra: 1949/1857,
  38659. bottom: 90/2039
  38660. }
  38661. },
  38662. },
  38663. [
  38664. {
  38665. name: "Normal",
  38666. height: math.unit(8, "feet"),
  38667. default: true
  38668. },
  38669. {
  38670. name: "Big",
  38671. height: math.unit(15, "feet")
  38672. },
  38673. {
  38674. name: "BIG",
  38675. height: math.unit(25, "feet")
  38676. },
  38677. ]
  38678. ))
  38679. characterMakers.push(() => makeCharacter(
  38680. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38681. {
  38682. side: {
  38683. height: math.unit(7 + 5/12, "feet"),
  38684. weight: math.unit(2800, "lb"),
  38685. name: "Side",
  38686. image: {
  38687. source: "./media/characters/haloren/side.svg",
  38688. extra: 1793/409,
  38689. bottom: 59/1852
  38690. }
  38691. },
  38692. frontPaw: {
  38693. height: math.unit(2.36, "feet"),
  38694. name: "Front paw",
  38695. image: {
  38696. source: "./media/characters/haloren/front-paw.svg"
  38697. }
  38698. },
  38699. hindPaw: {
  38700. height: math.unit(3.18, "feet"),
  38701. name: "Hind paw",
  38702. image: {
  38703. source: "./media/characters/haloren/hind-paw.svg"
  38704. }
  38705. },
  38706. maw: {
  38707. height: math.unit(5.05, "feet"),
  38708. name: "Maw",
  38709. image: {
  38710. source: "./media/characters/haloren/maw.svg"
  38711. }
  38712. },
  38713. dick: {
  38714. height: math.unit(2.90, "feet"),
  38715. name: "Dick",
  38716. image: {
  38717. source: "./media/characters/haloren/dick.svg"
  38718. }
  38719. },
  38720. },
  38721. [
  38722. {
  38723. name: "Normal",
  38724. height: math.unit(7 + 5/12, "feet"),
  38725. default: true
  38726. },
  38727. {
  38728. name: "Enhanced",
  38729. height: math.unit(14 + 3/12, "feet")
  38730. },
  38731. ]
  38732. ))
  38733. characterMakers.push(() => makeCharacter(
  38734. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38735. {
  38736. front: {
  38737. height: math.unit(171, "cm"),
  38738. name: "Front",
  38739. image: {
  38740. source: "./media/characters/kimmy/front.svg",
  38741. extra: 1491/1435,
  38742. bottom: 53/1544
  38743. }
  38744. },
  38745. },
  38746. [
  38747. {
  38748. name: "Small",
  38749. height: math.unit(9, "cm")
  38750. },
  38751. {
  38752. name: "Normal",
  38753. height: math.unit(171, "cm"),
  38754. default: true
  38755. },
  38756. ]
  38757. ))
  38758. characterMakers.push(() => makeCharacter(
  38759. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38760. {
  38761. front: {
  38762. height: math.unit(8, "feet"),
  38763. weight: math.unit(300, "lb"),
  38764. name: "Front",
  38765. image: {
  38766. source: "./media/characters/galeboomer/front.svg",
  38767. extra: 4651/4415,
  38768. bottom: 162/4813
  38769. }
  38770. },
  38771. back: {
  38772. height: math.unit(8, "feet"),
  38773. weight: math.unit(300, "lb"),
  38774. name: "Back",
  38775. image: {
  38776. source: "./media/characters/galeboomer/back.svg",
  38777. extra: 4544/4314,
  38778. bottom: 16/4560
  38779. }
  38780. },
  38781. frontAlt: {
  38782. height: math.unit(8, "feet"),
  38783. weight: math.unit(300, "lb"),
  38784. name: "Front (Alt)",
  38785. image: {
  38786. source: "./media/characters/galeboomer/front-alt.svg",
  38787. extra: 4458/4228,
  38788. bottom: 68/4526
  38789. }
  38790. },
  38791. maw: {
  38792. height: math.unit(1.2, "feet"),
  38793. name: "Maw",
  38794. image: {
  38795. source: "./media/characters/galeboomer/maw.svg"
  38796. }
  38797. },
  38798. },
  38799. [
  38800. {
  38801. name: "Normal",
  38802. height: math.unit(8, "feet"),
  38803. default: true
  38804. },
  38805. ]
  38806. ))
  38807. characterMakers.push(() => makeCharacter(
  38808. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38809. {
  38810. front: {
  38811. height: math.unit(5 + 9/12, "feet"),
  38812. weight: math.unit(120, "lb"),
  38813. name: "Front",
  38814. image: {
  38815. source: "./media/characters/chyr/front.svg",
  38816. extra: 1323/1254,
  38817. bottom: 63/1386
  38818. }
  38819. },
  38820. back: {
  38821. height: math.unit(5 + 9/12, "feet"),
  38822. weight: math.unit(120, "lb"),
  38823. name: "Back",
  38824. image: {
  38825. source: "./media/characters/chyr/back.svg",
  38826. extra: 1323/1252,
  38827. bottom: 48/1371
  38828. }
  38829. },
  38830. },
  38831. [
  38832. {
  38833. name: "Normal",
  38834. height: math.unit(5 + 9/12, "feet"),
  38835. default: true
  38836. },
  38837. ]
  38838. ))
  38839. characterMakers.push(() => makeCharacter(
  38840. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38841. {
  38842. front: {
  38843. height: math.unit(7, "feet"),
  38844. weight: math.unit(310, "lb"),
  38845. name: "Front",
  38846. image: {
  38847. source: "./media/characters/solarus/front.svg",
  38848. extra: 2415/2021,
  38849. bottom: 103/2518
  38850. }
  38851. },
  38852. back: {
  38853. height: math.unit(7, "feet"),
  38854. weight: math.unit(310, "lb"),
  38855. name: "Back",
  38856. image: {
  38857. source: "./media/characters/solarus/back.svg",
  38858. extra: 2463/2089,
  38859. bottom: 79/2542
  38860. }
  38861. },
  38862. },
  38863. [
  38864. {
  38865. name: "Normal",
  38866. height: math.unit(7, "feet"),
  38867. default: true
  38868. },
  38869. ]
  38870. ))
  38871. characterMakers.push(() => makeCharacter(
  38872. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38873. {
  38874. front: {
  38875. height: math.unit(16, "feet"),
  38876. name: "Front",
  38877. image: {
  38878. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38879. extra: 1844/1780,
  38880. bottom: 58/1902
  38881. }
  38882. },
  38883. winterCoat: {
  38884. height: math.unit(16, "feet"),
  38885. name: "Winter Coat",
  38886. image: {
  38887. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38888. extra: 1807/1775,
  38889. bottom: 69/1876
  38890. }
  38891. },
  38892. },
  38893. [
  38894. {
  38895. name: "Normal",
  38896. height: math.unit(16, "feet"),
  38897. default: true
  38898. },
  38899. {
  38900. name: "Chicago Size",
  38901. height: math.unit(560, "feet")
  38902. },
  38903. ]
  38904. ))
  38905. characterMakers.push(() => makeCharacter(
  38906. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38907. {
  38908. front: {
  38909. height: math.unit(11 + 6/12, "feet"),
  38910. weight: math.unit(1366, "lb"),
  38911. name: "Front",
  38912. image: {
  38913. source: "./media/characters/lexor/front.svg",
  38914. extra: 1560/1481,
  38915. bottom: 211/1771
  38916. }
  38917. },
  38918. back: {
  38919. height: math.unit(11 + 6/12, "feet"),
  38920. weight: math.unit(1366, "lb"),
  38921. name: "Back",
  38922. image: {
  38923. source: "./media/characters/lexor/back.svg",
  38924. extra: 1614/1533,
  38925. bottom: 76/1690
  38926. }
  38927. },
  38928. maw: {
  38929. height: math.unit(3, "feet"),
  38930. name: "Maw",
  38931. image: {
  38932. source: "./media/characters/lexor/maw.svg"
  38933. }
  38934. },
  38935. dick: {
  38936. height: math.unit(2.59, "feet"),
  38937. name: "Dick",
  38938. image: {
  38939. source: "./media/characters/lexor/dick.svg"
  38940. }
  38941. },
  38942. },
  38943. [
  38944. {
  38945. name: "Normal",
  38946. height: math.unit(11 + 6/12, "feet"),
  38947. default: true
  38948. },
  38949. ]
  38950. ))
  38951. characterMakers.push(() => makeCharacter(
  38952. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38953. {
  38954. front: {
  38955. height: math.unit(5 + 8/12, "feet"),
  38956. name: "Front",
  38957. image: {
  38958. source: "./media/characters/magnum/front.svg",
  38959. extra: 942/855,
  38960. bottom: 26/968
  38961. }
  38962. },
  38963. },
  38964. [
  38965. {
  38966. name: "Normal",
  38967. height: math.unit(5 + 8/12, "feet"),
  38968. default: true
  38969. },
  38970. ]
  38971. ))
  38972. characterMakers.push(() => makeCharacter(
  38973. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38974. {
  38975. front: {
  38976. height: math.unit(18 + 4/12, "feet"),
  38977. weight: math.unit(1500, "kg"),
  38978. name: "Front",
  38979. image: {
  38980. source: "./media/characters/solas-sharpsman/front.svg",
  38981. extra: 1698/1589,
  38982. bottom: 0/1698
  38983. }
  38984. },
  38985. },
  38986. [
  38987. {
  38988. name: "Normal",
  38989. height: math.unit(18 + 4/12, "feet"),
  38990. default: true
  38991. },
  38992. ]
  38993. ))
  38994. characterMakers.push(() => makeCharacter(
  38995. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38996. {
  38997. front: {
  38998. height: math.unit(5 + 5/12, "feet"),
  38999. weight: math.unit(180, "lb"),
  39000. name: "Front",
  39001. image: {
  39002. source: "./media/characters/october/front.svg",
  39003. extra: 1800/1650,
  39004. bottom: 0/1800
  39005. }
  39006. },
  39007. frontNsfw: {
  39008. height: math.unit(5 + 5/12, "feet"),
  39009. weight: math.unit(180, "lb"),
  39010. name: "Front (NSFW)",
  39011. image: {
  39012. source: "./media/characters/october/front-nsfw.svg",
  39013. extra: 1392/1307,
  39014. bottom: 42/1434
  39015. }
  39016. },
  39017. },
  39018. [
  39019. {
  39020. name: "Normal",
  39021. height: math.unit(5 + 5/12, "feet"),
  39022. default: true
  39023. },
  39024. ]
  39025. ))
  39026. characterMakers.push(() => makeCharacter(
  39027. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39028. {
  39029. front: {
  39030. height: math.unit(8 + 6/12, "feet"),
  39031. name: "Front",
  39032. image: {
  39033. source: "./media/characters/essynkardi/front.svg",
  39034. extra: 1914/1846,
  39035. bottom: 22/1936
  39036. }
  39037. },
  39038. },
  39039. [
  39040. {
  39041. name: "Normal",
  39042. height: math.unit(8 + 6/12, "feet"),
  39043. default: true
  39044. },
  39045. ]
  39046. ))
  39047. characterMakers.push(() => makeCharacter(
  39048. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39049. {
  39050. front: {
  39051. height: math.unit(6 + 6/12, "feet"),
  39052. weight: math.unit(7, "lb"),
  39053. name: "Front",
  39054. image: {
  39055. source: "./media/characters/icky/front.svg",
  39056. extra: 813/782,
  39057. bottom: 66/879
  39058. }
  39059. },
  39060. back: {
  39061. height: math.unit(6 + 6/12, "feet"),
  39062. weight: math.unit(7, "lb"),
  39063. name: "Back",
  39064. image: {
  39065. source: "./media/characters/icky/back.svg",
  39066. extra: 754/735,
  39067. bottom: 56/810
  39068. }
  39069. },
  39070. },
  39071. [
  39072. {
  39073. name: "Normal",
  39074. height: math.unit(6 + 6/12, "feet"),
  39075. default: true
  39076. },
  39077. ]
  39078. ))
  39079. characterMakers.push(() => makeCharacter(
  39080. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39081. {
  39082. front: {
  39083. height: math.unit(15, "feet"),
  39084. name: "Front",
  39085. image: {
  39086. source: "./media/characters/rojas/front.svg",
  39087. extra: 1462/1408,
  39088. bottom: 95/1557
  39089. }
  39090. },
  39091. back: {
  39092. height: math.unit(15, "feet"),
  39093. name: "Back",
  39094. image: {
  39095. source: "./media/characters/rojas/back.svg",
  39096. extra: 1023/954,
  39097. bottom: 28/1051
  39098. }
  39099. },
  39100. },
  39101. [
  39102. {
  39103. name: "Normal",
  39104. height: math.unit(15, "feet"),
  39105. default: true
  39106. },
  39107. ]
  39108. ))
  39109. characterMakers.push(() => makeCharacter(
  39110. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39111. {
  39112. frontHuman: {
  39113. height: math.unit(5 + 7/12, "feet"),
  39114. name: "Front (Human)",
  39115. image: {
  39116. source: "./media/characters/alek-dryagan/front-human.svg",
  39117. extra: 1687/1667,
  39118. bottom: 69/1756
  39119. }
  39120. },
  39121. backHuman: {
  39122. height: math.unit(5 + 7/12, "feet"),
  39123. name: "Back (Human)",
  39124. image: {
  39125. source: "./media/characters/alek-dryagan/back-human.svg",
  39126. extra: 1670/1649,
  39127. bottom: 65/1735
  39128. }
  39129. },
  39130. frontDemi: {
  39131. height: math.unit(65, "feet"),
  39132. name: "Front (Demi)",
  39133. image: {
  39134. source: "./media/characters/alek-dryagan/front-demi.svg",
  39135. extra: 1669/1642,
  39136. bottom: 49/1718
  39137. }
  39138. },
  39139. backDemi: {
  39140. height: math.unit(65, "feet"),
  39141. name: "Back (Demi)",
  39142. image: {
  39143. source: "./media/characters/alek-dryagan/back-demi.svg",
  39144. extra: 1658/1637,
  39145. bottom: 40/1698
  39146. }
  39147. },
  39148. mawHuman: {
  39149. height: math.unit(0.3, "feet"),
  39150. name: "Maw (Human)",
  39151. image: {
  39152. source: "./media/characters/alek-dryagan/maw-human.svg"
  39153. }
  39154. },
  39155. mawDemi: {
  39156. height: math.unit(3.8, "feet"),
  39157. name: "Maw (Demi)",
  39158. image: {
  39159. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39160. }
  39161. },
  39162. },
  39163. [
  39164. {
  39165. name: "Normal",
  39166. height: math.unit(5 + 7/12, "feet"),
  39167. default: true
  39168. },
  39169. ]
  39170. ))
  39171. characterMakers.push(() => makeCharacter(
  39172. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39173. {
  39174. frontHuman: {
  39175. height: math.unit(5 + 2/12, "feet"),
  39176. name: "Front (Human)",
  39177. image: {
  39178. source: "./media/characters/gen/front-human.svg",
  39179. extra: 1627/1538,
  39180. bottom: 71/1698
  39181. }
  39182. },
  39183. backHuman: {
  39184. height: math.unit(5 + 2/12, "feet"),
  39185. name: "Back (Human)",
  39186. image: {
  39187. source: "./media/characters/gen/back-human.svg",
  39188. extra: 1638/1548,
  39189. bottom: 69/1707
  39190. }
  39191. },
  39192. frontDemi: {
  39193. height: math.unit(5 + 2/12, "feet"),
  39194. name: "Front (Demi)",
  39195. image: {
  39196. source: "./media/characters/gen/front-demi.svg",
  39197. extra: 1627/1538,
  39198. bottom: 71/1698
  39199. }
  39200. },
  39201. backDemi: {
  39202. height: math.unit(5 + 2/12, "feet"),
  39203. name: "Back (Demi)",
  39204. image: {
  39205. source: "./media/characters/gen/back-demi.svg",
  39206. extra: 1638/1548,
  39207. bottom: 69/1707
  39208. }
  39209. },
  39210. },
  39211. [
  39212. {
  39213. name: "Normal",
  39214. height: math.unit(5 + 2/12, "feet"),
  39215. default: true
  39216. },
  39217. ]
  39218. ))
  39219. characterMakers.push(() => makeCharacter(
  39220. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39221. {
  39222. frontImp: {
  39223. height: math.unit(1 + 11/12, "feet"),
  39224. name: "Front (Imp)",
  39225. image: {
  39226. source: "./media/characters/max-kobold/front-imp.svg",
  39227. extra: 1238/1134,
  39228. bottom: 81/1319
  39229. }
  39230. },
  39231. backImp: {
  39232. height: math.unit(1 + 11/12, "feet"),
  39233. name: "Back (Imp)",
  39234. image: {
  39235. source: "./media/characters/max-kobold/back-imp.svg",
  39236. extra: 1334/1175,
  39237. bottom: 34/1368
  39238. }
  39239. },
  39240. frontDemi: {
  39241. height: math.unit(5 + 9/12, "feet"),
  39242. name: "Front (Demi)",
  39243. image: {
  39244. source: "./media/characters/max-kobold/front-demi.svg",
  39245. extra: 1715/1685,
  39246. bottom: 54/1769
  39247. }
  39248. },
  39249. backDemi: {
  39250. height: math.unit(5 + 9/12, "feet"),
  39251. name: "Back (Demi)",
  39252. image: {
  39253. source: "./media/characters/max-kobold/back-demi.svg",
  39254. extra: 1752/1729,
  39255. bottom: 41/1793
  39256. }
  39257. },
  39258. handImp: {
  39259. height: math.unit(0.45, "feet"),
  39260. name: "Hand (Imp)",
  39261. image: {
  39262. source: "./media/characters/max-kobold/hand.svg"
  39263. }
  39264. },
  39265. pawImp: {
  39266. height: math.unit(0.46, "feet"),
  39267. name: "Paw (Imp)",
  39268. image: {
  39269. source: "./media/characters/max-kobold/paw.svg"
  39270. }
  39271. },
  39272. handDemi: {
  39273. height: math.unit(0.80, "feet"),
  39274. name: "Hand (Demi)",
  39275. image: {
  39276. source: "./media/characters/max-kobold/hand.svg"
  39277. }
  39278. },
  39279. pawDemi: {
  39280. height: math.unit(1.1, "feet"),
  39281. name: "Paw (Demi)",
  39282. image: {
  39283. source: "./media/characters/max-kobold/paw.svg"
  39284. }
  39285. },
  39286. headImp: {
  39287. height: math.unit(1.33, "feet"),
  39288. name: "Head (Imp)",
  39289. image: {
  39290. source: "./media/characters/max-kobold/head-imp.svg"
  39291. }
  39292. },
  39293. mawImp: {
  39294. height: math.unit(0.75, "feet"),
  39295. name: "Maw (Imp)",
  39296. image: {
  39297. source: "./media/characters/max-kobold/maw-imp.svg"
  39298. }
  39299. },
  39300. mawDemi: {
  39301. height: math.unit(0.42, "feet"),
  39302. name: "Maw (Demi)",
  39303. image: {
  39304. source: "./media/characters/max-kobold/maw-demi.svg"
  39305. }
  39306. },
  39307. },
  39308. [
  39309. {
  39310. name: "Normal",
  39311. height: math.unit(1 + 11/12, "feet"),
  39312. default: true
  39313. },
  39314. ]
  39315. ))
  39316. characterMakers.push(() => makeCharacter(
  39317. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39318. {
  39319. front: {
  39320. height: math.unit(7 + 5/12, "feet"),
  39321. name: "Front",
  39322. image: {
  39323. source: "./media/characters/carbon/front.svg",
  39324. extra: 1754/1689,
  39325. bottom: 65/1819
  39326. }
  39327. },
  39328. back: {
  39329. height: math.unit(7 + 5/12, "feet"),
  39330. name: "Back",
  39331. image: {
  39332. source: "./media/characters/carbon/back.svg",
  39333. extra: 1762/1695,
  39334. bottom: 24/1786
  39335. }
  39336. },
  39337. frontGigantamax: {
  39338. height: math.unit(150, "feet"),
  39339. name: "Front (Gigantamax)",
  39340. image: {
  39341. source: "./media/characters/carbon/front-gigantamax.svg",
  39342. extra: 1826/1669,
  39343. bottom: 59/1885
  39344. }
  39345. },
  39346. backGigantamax: {
  39347. height: math.unit(150, "feet"),
  39348. name: "Back (Gigantamax)",
  39349. image: {
  39350. source: "./media/characters/carbon/back-gigantamax.svg",
  39351. extra: 1796/1653,
  39352. bottom: 53/1849
  39353. }
  39354. },
  39355. maw: {
  39356. height: math.unit(0.48, "feet"),
  39357. name: "Maw",
  39358. image: {
  39359. source: "./media/characters/carbon/maw.svg"
  39360. }
  39361. },
  39362. mawGigantamax: {
  39363. height: math.unit(7.5, "feet"),
  39364. name: "Maw (Gigantamax)",
  39365. image: {
  39366. source: "./media/characters/carbon/maw-gigantamax.svg"
  39367. }
  39368. },
  39369. },
  39370. [
  39371. {
  39372. name: "Normal",
  39373. height: math.unit(7 + 5/12, "feet"),
  39374. default: true
  39375. },
  39376. ]
  39377. ))
  39378. characterMakers.push(() => makeCharacter(
  39379. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39380. {
  39381. front: {
  39382. height: math.unit(6, "feet"),
  39383. name: "Front",
  39384. image: {
  39385. source: "./media/characters/maverick/front.svg",
  39386. extra: 1672/1661,
  39387. bottom: 85/1757
  39388. }
  39389. },
  39390. back: {
  39391. height: math.unit(6, "feet"),
  39392. name: "Back",
  39393. image: {
  39394. source: "./media/characters/maverick/back.svg",
  39395. extra: 1642/1631,
  39396. bottom: 38/1680
  39397. }
  39398. },
  39399. },
  39400. [
  39401. {
  39402. name: "Normal",
  39403. height: math.unit(6, "feet"),
  39404. default: true
  39405. },
  39406. ]
  39407. ))
  39408. characterMakers.push(() => makeCharacter(
  39409. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39410. {
  39411. front: {
  39412. height: math.unit(15, "feet"),
  39413. weight: math.unit(615, "lb"),
  39414. name: "Front",
  39415. image: {
  39416. source: "./media/characters/grockle/front.svg",
  39417. extra: 1535/1427,
  39418. bottom: 56/1591
  39419. }
  39420. },
  39421. },
  39422. [
  39423. {
  39424. name: "Normal",
  39425. height: math.unit(15, "feet"),
  39426. default: true
  39427. },
  39428. {
  39429. name: "Large",
  39430. height: math.unit(150, "feet")
  39431. },
  39432. {
  39433. name: "Macro",
  39434. height: math.unit(1876, "feet")
  39435. },
  39436. {
  39437. name: "Mega Macro",
  39438. height: math.unit(121940, "feet")
  39439. },
  39440. {
  39441. name: "Giga Macro",
  39442. height: math.unit(750, "km")
  39443. },
  39444. {
  39445. name: "Tera Macro",
  39446. height: math.unit(750000, "km")
  39447. },
  39448. {
  39449. name: "Galactic",
  39450. height: math.unit(1.4e5, "km")
  39451. },
  39452. {
  39453. name: "Godlike",
  39454. height: math.unit(9.8e280, "galaxies")
  39455. },
  39456. ]
  39457. ))
  39458. characterMakers.push(() => makeCharacter(
  39459. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39460. {
  39461. front: {
  39462. height: math.unit(11, "meters"),
  39463. weight: math.unit(20, "tonnes"),
  39464. name: "Front",
  39465. image: {
  39466. source: "./media/characters/alistair/front.svg",
  39467. extra: 1265/1009,
  39468. bottom: 93/1358
  39469. }
  39470. },
  39471. },
  39472. [
  39473. {
  39474. name: "Normal",
  39475. height: math.unit(11, "meters"),
  39476. default: true
  39477. },
  39478. ]
  39479. ))
  39480. characterMakers.push(() => makeCharacter(
  39481. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39482. {
  39483. front: {
  39484. height: math.unit(5 + 8/12, "feet"),
  39485. name: "Front",
  39486. image: {
  39487. source: "./media/characters/haruka/front.svg",
  39488. extra: 2012/1952,
  39489. bottom: 0/2012
  39490. }
  39491. },
  39492. },
  39493. [
  39494. {
  39495. name: "Normal",
  39496. height: math.unit(5 + 8/12, "feet"),
  39497. default: true
  39498. },
  39499. ]
  39500. ))
  39501. characterMakers.push(() => makeCharacter(
  39502. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39503. {
  39504. back: {
  39505. height: math.unit(9, "feet"),
  39506. name: "Back",
  39507. image: {
  39508. source: "./media/characters/vivian-sylveon/back.svg",
  39509. extra: 1853/1714,
  39510. bottom: 0/1853
  39511. }
  39512. },
  39513. },
  39514. [
  39515. {
  39516. name: "Normal",
  39517. height: math.unit(9, "feet"),
  39518. default: true
  39519. },
  39520. {
  39521. name: "Macro",
  39522. height: math.unit(500, "feet")
  39523. },
  39524. {
  39525. name: "Megamacro",
  39526. height: math.unit(600, "miles")
  39527. },
  39528. {
  39529. name: "Gigamacro",
  39530. height: math.unit(30000, "miles")
  39531. },
  39532. ]
  39533. ))
  39534. characterMakers.push(() => makeCharacter(
  39535. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39536. {
  39537. anthro: {
  39538. height: math.unit(5 + 10/12, "feet"),
  39539. weight: math.unit(100, "lb"),
  39540. name: "Anthro",
  39541. image: {
  39542. source: "./media/characters/daiki/anthro.svg",
  39543. extra: 1115/1027,
  39544. bottom: 69/1184
  39545. }
  39546. },
  39547. feral: {
  39548. height: math.unit(200, "feet"),
  39549. name: "Feral",
  39550. image: {
  39551. source: "./media/characters/daiki/feral.svg",
  39552. extra: 1256/313,
  39553. bottom: 39/1295
  39554. }
  39555. },
  39556. feralHead: {
  39557. height: math.unit(171, "feet"),
  39558. name: "Feral Head",
  39559. image: {
  39560. source: "./media/characters/daiki/feral-head.svg"
  39561. }
  39562. },
  39563. manaDragon: {
  39564. height: math.unit(170, "meters"),
  39565. name: "Mana-dragon",
  39566. image: {
  39567. source: "./media/characters/daiki/mana-dragon.svg",
  39568. extra: 763/420,
  39569. bottom: 97/860
  39570. }
  39571. },
  39572. },
  39573. [
  39574. {
  39575. name: "Normal",
  39576. height: math.unit(5 + 10/12, "feet"),
  39577. default: true
  39578. },
  39579. ]
  39580. ))
  39581. characterMakers.push(() => makeCharacter(
  39582. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39583. {
  39584. fullyEquippedFront: {
  39585. height: math.unit(3 + 1/12, "feet"),
  39586. weight: math.unit(24, "lb"),
  39587. name: "Fully Equipped (Front)",
  39588. image: {
  39589. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39590. extra: 687/605,
  39591. bottom: 18/705
  39592. }
  39593. },
  39594. fullyEquippedBack: {
  39595. height: math.unit(3 + 1/12, "feet"),
  39596. weight: math.unit(24, "lb"),
  39597. name: "Fully Equipped (Back)",
  39598. image: {
  39599. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39600. extra: 689/590,
  39601. bottom: 18/707
  39602. }
  39603. },
  39604. dailyWear: {
  39605. height: math.unit(3 + 1/12, "feet"),
  39606. weight: math.unit(24, "lb"),
  39607. name: "Daily Wear",
  39608. image: {
  39609. source: "./media/characters/tea-spot/daily-wear.svg",
  39610. extra: 701/620,
  39611. bottom: 21/722
  39612. }
  39613. },
  39614. maidWork: {
  39615. height: math.unit(3 + 1/12, "feet"),
  39616. weight: math.unit(24, "lb"),
  39617. name: "Maid Work",
  39618. image: {
  39619. source: "./media/characters/tea-spot/maid-work.svg",
  39620. extra: 693/609,
  39621. bottom: 15/708
  39622. }
  39623. },
  39624. },
  39625. [
  39626. {
  39627. name: "Normal",
  39628. height: math.unit(3 + 1/12, "feet"),
  39629. default: true
  39630. },
  39631. ]
  39632. ))
  39633. characterMakers.push(() => makeCharacter(
  39634. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39635. {
  39636. front: {
  39637. height: math.unit(175, "cm"),
  39638. weight: math.unit(75, "kg"),
  39639. name: "Front",
  39640. image: {
  39641. source: "./media/characters/chee/front.svg",
  39642. extra: 1796/1740,
  39643. bottom: 40/1836
  39644. }
  39645. },
  39646. },
  39647. [
  39648. {
  39649. name: "Micro-Micro",
  39650. height: math.unit(1, "nm")
  39651. },
  39652. {
  39653. name: "Micro-erst",
  39654. height: math.unit(1, "micrometer")
  39655. },
  39656. {
  39657. name: "Micro-er",
  39658. height: math.unit(1, "cm")
  39659. },
  39660. {
  39661. name: "Normal",
  39662. height: math.unit(175, "cm"),
  39663. default: true
  39664. },
  39665. {
  39666. name: "Macro",
  39667. height: math.unit(100, "m")
  39668. },
  39669. {
  39670. name: "Macro-er",
  39671. height: math.unit(1, "km")
  39672. },
  39673. {
  39674. name: "Macro-erst",
  39675. height: math.unit(10, "km")
  39676. },
  39677. {
  39678. name: "Macro-Macro",
  39679. height: math.unit(100, "km")
  39680. },
  39681. ]
  39682. ))
  39683. characterMakers.push(() => makeCharacter(
  39684. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39685. {
  39686. front: {
  39687. height: math.unit(11 + 9/12, "feet"),
  39688. weight: math.unit(935, "lb"),
  39689. name: "Front",
  39690. image: {
  39691. source: "./media/characters/kingsley/front.svg",
  39692. extra: 1803/1674,
  39693. bottom: 127/1930
  39694. }
  39695. },
  39696. frontNude: {
  39697. height: math.unit(11 + 9/12, "feet"),
  39698. weight: math.unit(935, "lb"),
  39699. name: "Front (Nude)",
  39700. image: {
  39701. source: "./media/characters/kingsley/front-nude.svg",
  39702. extra: 1803/1674,
  39703. bottom: 127/1930
  39704. }
  39705. },
  39706. },
  39707. [
  39708. {
  39709. name: "Normal",
  39710. height: math.unit(11 + 9/12, "feet"),
  39711. default: true
  39712. },
  39713. ]
  39714. ))
  39715. characterMakers.push(() => makeCharacter(
  39716. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39717. {
  39718. side: {
  39719. height: math.unit(9, "feet"),
  39720. name: "Side",
  39721. image: {
  39722. source: "./media/characters/rymel/side.svg",
  39723. extra: 792/469,
  39724. bottom: 121/913
  39725. }
  39726. },
  39727. maw: {
  39728. height: math.unit(2.4, "meters"),
  39729. name: "Maw",
  39730. image: {
  39731. source: "./media/characters/rymel/maw.svg"
  39732. }
  39733. },
  39734. },
  39735. [
  39736. {
  39737. name: "House Drake",
  39738. height: math.unit(2, "feet")
  39739. },
  39740. {
  39741. name: "Reduced",
  39742. height: math.unit(4.5, "feet")
  39743. },
  39744. {
  39745. name: "Normal",
  39746. height: math.unit(9, "feet"),
  39747. default: true
  39748. },
  39749. ]
  39750. ))
  39751. characterMakers.push(() => makeCharacter(
  39752. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39753. {
  39754. front: {
  39755. height: math.unit(1.74, "meters"),
  39756. weight: math.unit(55, "kg"),
  39757. name: "Front",
  39758. image: {
  39759. source: "./media/characters/rubus/front.svg",
  39760. extra: 1894/1742,
  39761. bottom: 44/1938
  39762. }
  39763. },
  39764. },
  39765. [
  39766. {
  39767. name: "Normal",
  39768. height: math.unit(1.74, "meters"),
  39769. default: true
  39770. },
  39771. ]
  39772. ))
  39773. characterMakers.push(() => makeCharacter(
  39774. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39775. {
  39776. front: {
  39777. height: math.unit(5 + 2/12, "feet"),
  39778. weight: math.unit(112, "lb"),
  39779. name: "Front",
  39780. image: {
  39781. source: "./media/characters/cassie-kingston/front.svg",
  39782. extra: 1438/1390,
  39783. bottom: 47/1485
  39784. }
  39785. },
  39786. },
  39787. [
  39788. {
  39789. name: "Normal",
  39790. height: math.unit(5 + 2/12, "feet"),
  39791. default: true
  39792. },
  39793. {
  39794. name: "Macro",
  39795. height: math.unit(128, "feet")
  39796. },
  39797. {
  39798. name: "Megamacro",
  39799. height: math.unit(2.56, "miles")
  39800. },
  39801. ]
  39802. ))
  39803. characterMakers.push(() => makeCharacter(
  39804. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39805. {
  39806. front: {
  39807. height: math.unit(7, "feet"),
  39808. name: "Front",
  39809. image: {
  39810. source: "./media/characters/fox/front.svg",
  39811. extra: 1798/1703,
  39812. bottom: 55/1853
  39813. }
  39814. },
  39815. back: {
  39816. height: math.unit(7, "feet"),
  39817. name: "Back",
  39818. image: {
  39819. source: "./media/characters/fox/back.svg",
  39820. extra: 1748/1649,
  39821. bottom: 32/1780
  39822. }
  39823. },
  39824. head: {
  39825. height: math.unit(1.95, "feet"),
  39826. name: "Head",
  39827. image: {
  39828. source: "./media/characters/fox/head.svg"
  39829. }
  39830. },
  39831. dick: {
  39832. height: math.unit(1.33, "feet"),
  39833. name: "Dick",
  39834. image: {
  39835. source: "./media/characters/fox/dick.svg"
  39836. }
  39837. },
  39838. foot: {
  39839. height: math.unit(1, "feet"),
  39840. name: "Foot",
  39841. image: {
  39842. source: "./media/characters/fox/foot.svg"
  39843. }
  39844. },
  39845. paw: {
  39846. height: math.unit(0.92, "feet"),
  39847. name: "Paw",
  39848. image: {
  39849. source: "./media/characters/fox/paw.svg"
  39850. }
  39851. },
  39852. },
  39853. [
  39854. {
  39855. name: "Small",
  39856. height: math.unit(3, "inches")
  39857. },
  39858. {
  39859. name: "\"Realistic\"",
  39860. height: math.unit(7, "feet")
  39861. },
  39862. {
  39863. name: "Normal",
  39864. height: math.unit(150, "feet"),
  39865. default: true
  39866. },
  39867. {
  39868. name: "BIG",
  39869. height: math.unit(1200, "feet")
  39870. },
  39871. {
  39872. name: "👀",
  39873. height: math.unit(5, "miles")
  39874. },
  39875. {
  39876. name: "👀👀👀",
  39877. height: math.unit(64, "miles")
  39878. },
  39879. ]
  39880. ))
  39881. characterMakers.push(() => makeCharacter(
  39882. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39883. {
  39884. front: {
  39885. height: math.unit(625, "feet"),
  39886. name: "Front",
  39887. image: {
  39888. source: "./media/characters/asonja-rossa/front.svg",
  39889. extra: 1833/1686,
  39890. bottom: 24/1857
  39891. }
  39892. },
  39893. back: {
  39894. height: math.unit(625, "feet"),
  39895. name: "Back",
  39896. image: {
  39897. source: "./media/characters/asonja-rossa/back.svg",
  39898. extra: 1852/1753,
  39899. bottom: 26/1878
  39900. }
  39901. },
  39902. },
  39903. [
  39904. {
  39905. name: "Macro",
  39906. height: math.unit(625, "feet"),
  39907. default: true
  39908. },
  39909. ]
  39910. ))
  39911. characterMakers.push(() => makeCharacter(
  39912. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39913. {
  39914. side: {
  39915. height: math.unit(8, "feet"),
  39916. name: "Side",
  39917. image: {
  39918. source: "./media/characters/rezukii/side.svg",
  39919. extra: 979/542,
  39920. bottom: 87/1066
  39921. }
  39922. },
  39923. sitting: {
  39924. height: math.unit(14.6, "feet"),
  39925. name: "Sitting",
  39926. image: {
  39927. source: "./media/characters/rezukii/sitting.svg",
  39928. extra: 1023/813,
  39929. bottom: 45/1068
  39930. }
  39931. },
  39932. },
  39933. [
  39934. {
  39935. name: "Tiny",
  39936. height: math.unit(2, "feet")
  39937. },
  39938. {
  39939. name: "Smol",
  39940. height: math.unit(4, "feet")
  39941. },
  39942. {
  39943. name: "Normal",
  39944. height: math.unit(8, "feet"),
  39945. default: true
  39946. },
  39947. {
  39948. name: "Big",
  39949. height: math.unit(12, "feet")
  39950. },
  39951. {
  39952. name: "Macro",
  39953. height: math.unit(30, "feet")
  39954. },
  39955. ]
  39956. ))
  39957. characterMakers.push(() => makeCharacter(
  39958. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39959. {
  39960. front: {
  39961. height: math.unit(14, "feet"),
  39962. weight: math.unit(9.5, "tonnes"),
  39963. name: "Front",
  39964. image: {
  39965. source: "./media/characters/dawnheart/front.svg",
  39966. extra: 2792/2675,
  39967. bottom: 64/2856
  39968. }
  39969. },
  39970. },
  39971. [
  39972. {
  39973. name: "Normal",
  39974. height: math.unit(14, "feet"),
  39975. default: true
  39976. },
  39977. ]
  39978. ))
  39979. characterMakers.push(() => makeCharacter(
  39980. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39981. {
  39982. front: {
  39983. height: math.unit(1.7, "m"),
  39984. name: "Front",
  39985. image: {
  39986. source: "./media/characters/gladi/front.svg",
  39987. extra: 1460/1362,
  39988. bottom: 19/1479
  39989. }
  39990. },
  39991. back: {
  39992. height: math.unit(1.7, "m"),
  39993. name: "Back",
  39994. image: {
  39995. source: "./media/characters/gladi/back.svg",
  39996. extra: 1459/1357,
  39997. bottom: 12/1471
  39998. }
  39999. },
  40000. feral: {
  40001. height: math.unit(2.05, "m"),
  40002. name: "Feral",
  40003. image: {
  40004. source: "./media/characters/gladi/feral.svg",
  40005. extra: 821/557,
  40006. bottom: 91/912
  40007. }
  40008. },
  40009. },
  40010. [
  40011. {
  40012. name: "Shortest",
  40013. height: math.unit(70, "cm")
  40014. },
  40015. {
  40016. name: "Normal",
  40017. height: math.unit(1.7, "m")
  40018. },
  40019. {
  40020. name: "Macro",
  40021. height: math.unit(10, "m"),
  40022. default: true
  40023. },
  40024. {
  40025. name: "Tallest",
  40026. height: math.unit(200, "m")
  40027. },
  40028. ]
  40029. ))
  40030. characterMakers.push(() => makeCharacter(
  40031. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40032. {
  40033. front: {
  40034. height: math.unit(5 + 7/12, "feet"),
  40035. weight: math.unit(2, "tons"),
  40036. name: "Front",
  40037. image: {
  40038. source: "./media/characters/erdno/front.svg",
  40039. extra: 1234/1129,
  40040. bottom: 35/1269
  40041. }
  40042. },
  40043. angled: {
  40044. height: math.unit(5 + 7/12, "feet"),
  40045. weight: math.unit(2, "tons"),
  40046. name: "Angled",
  40047. image: {
  40048. source: "./media/characters/erdno/angled.svg",
  40049. extra: 1185/1139,
  40050. bottom: 36/1221
  40051. }
  40052. },
  40053. side: {
  40054. height: math.unit(5 + 7/12, "feet"),
  40055. weight: math.unit(2, "tons"),
  40056. name: "Side",
  40057. image: {
  40058. source: "./media/characters/erdno/side.svg",
  40059. extra: 1191/1144,
  40060. bottom: 40/1231
  40061. }
  40062. },
  40063. back: {
  40064. height: math.unit(5 + 7/12, "feet"),
  40065. weight: math.unit(2, "tons"),
  40066. name: "Back",
  40067. image: {
  40068. source: "./media/characters/erdno/back.svg",
  40069. extra: 1202/1146,
  40070. bottom: 17/1219
  40071. }
  40072. },
  40073. frontNsfw: {
  40074. height: math.unit(5 + 7/12, "feet"),
  40075. weight: math.unit(2, "tons"),
  40076. name: "Front (NSFW)",
  40077. image: {
  40078. source: "./media/characters/erdno/front-nsfw.svg",
  40079. extra: 1234/1129,
  40080. bottom: 35/1269
  40081. }
  40082. },
  40083. angledNsfw: {
  40084. height: math.unit(5 + 7/12, "feet"),
  40085. weight: math.unit(2, "tons"),
  40086. name: "Angled (NSFW)",
  40087. image: {
  40088. source: "./media/characters/erdno/angled-nsfw.svg",
  40089. extra: 1185/1139,
  40090. bottom: 36/1221
  40091. }
  40092. },
  40093. sideNsfw: {
  40094. height: math.unit(5 + 7/12, "feet"),
  40095. weight: math.unit(2, "tons"),
  40096. name: "Side (NSFW)",
  40097. image: {
  40098. source: "./media/characters/erdno/side-nsfw.svg",
  40099. extra: 1191/1144,
  40100. bottom: 40/1231
  40101. }
  40102. },
  40103. backNsfw: {
  40104. height: math.unit(5 + 7/12, "feet"),
  40105. weight: math.unit(2, "tons"),
  40106. name: "Back (NSFW)",
  40107. image: {
  40108. source: "./media/characters/erdno/back-nsfw.svg",
  40109. extra: 1202/1146,
  40110. bottom: 17/1219
  40111. }
  40112. },
  40113. frontHyper: {
  40114. height: math.unit(5 + 7/12, "feet"),
  40115. weight: math.unit(2, "tons"),
  40116. name: "Front (Hyper)",
  40117. image: {
  40118. source: "./media/characters/erdno/front-hyper.svg",
  40119. extra: 1298/1136,
  40120. bottom: 35/1333
  40121. }
  40122. },
  40123. },
  40124. [
  40125. {
  40126. name: "Normal",
  40127. height: math.unit(5 + 7/12, "feet"),
  40128. default: true
  40129. },
  40130. {
  40131. name: "Big",
  40132. height: math.unit(5.7, "meters")
  40133. },
  40134. {
  40135. name: "Macro",
  40136. height: math.unit(5.7, "kilometers")
  40137. },
  40138. {
  40139. name: "Megamacro",
  40140. height: math.unit(5.7, "earths")
  40141. },
  40142. ]
  40143. ))
  40144. characterMakers.push(() => makeCharacter(
  40145. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40146. {
  40147. front: {
  40148. height: math.unit(5 + 10/12, "feet"),
  40149. weight: math.unit(150, "lb"),
  40150. name: "Front",
  40151. image: {
  40152. source: "./media/characters/jamie/front.svg",
  40153. extra: 1908/1768,
  40154. bottom: 19/1927
  40155. }
  40156. },
  40157. },
  40158. [
  40159. {
  40160. name: "Minimum",
  40161. height: math.unit(2, "cm")
  40162. },
  40163. {
  40164. name: "Micro",
  40165. height: math.unit(3, "inches")
  40166. },
  40167. {
  40168. name: "Normal",
  40169. height: math.unit(5 + 10/12, "feet"),
  40170. default: true
  40171. },
  40172. {
  40173. name: "Macro",
  40174. height: math.unit(150, "feet")
  40175. },
  40176. {
  40177. name: "Megamacro",
  40178. height: math.unit(10000, "m")
  40179. },
  40180. ]
  40181. ))
  40182. characterMakers.push(() => makeCharacter(
  40183. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40184. {
  40185. front: {
  40186. height: math.unit(2, "meters"),
  40187. weight: math.unit(100, "kg"),
  40188. name: "Front",
  40189. image: {
  40190. source: "./media/characters/shiron/front.svg",
  40191. extra: 2103/1985,
  40192. bottom: 98/2201
  40193. }
  40194. },
  40195. back: {
  40196. height: math.unit(2, "meters"),
  40197. weight: math.unit(100, "kg"),
  40198. name: "Back",
  40199. image: {
  40200. source: "./media/characters/shiron/back.svg",
  40201. extra: 2110/2015,
  40202. bottom: 89/2199
  40203. }
  40204. },
  40205. hand: {
  40206. height: math.unit(0.96, "feet"),
  40207. name: "Hand",
  40208. image: {
  40209. source: "./media/characters/shiron/hand.svg"
  40210. }
  40211. },
  40212. foot: {
  40213. height: math.unit(1.464, "feet"),
  40214. name: "Foot",
  40215. image: {
  40216. source: "./media/characters/shiron/foot.svg"
  40217. }
  40218. },
  40219. },
  40220. [
  40221. {
  40222. name: "Normal",
  40223. height: math.unit(2, "meters")
  40224. },
  40225. {
  40226. name: "Macro",
  40227. height: math.unit(500, "meters"),
  40228. default: true
  40229. },
  40230. {
  40231. name: "Megamacro",
  40232. height: math.unit(20, "km")
  40233. },
  40234. ]
  40235. ))
  40236. characterMakers.push(() => makeCharacter(
  40237. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40238. {
  40239. front: {
  40240. height: math.unit(6, "feet"),
  40241. name: "Front",
  40242. image: {
  40243. source: "./media/characters/sam/front.svg",
  40244. extra: 849/826,
  40245. bottom: 19/868
  40246. }
  40247. },
  40248. },
  40249. [
  40250. {
  40251. name: "Normal",
  40252. height: math.unit(6, "feet"),
  40253. default: true
  40254. },
  40255. ]
  40256. ))
  40257. characterMakers.push(() => makeCharacter(
  40258. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40259. {
  40260. front: {
  40261. height: math.unit(8 + 4/12, "feet"),
  40262. weight: math.unit(122, "kg"),
  40263. name: "Front",
  40264. image: {
  40265. source: "./media/characters/namori-kurogawa/front.svg",
  40266. extra: 1894/1576,
  40267. bottom: 34/1928
  40268. }
  40269. },
  40270. },
  40271. [
  40272. {
  40273. name: "Normal",
  40274. height: math.unit(8 + 4/12, "feet"),
  40275. default: true
  40276. },
  40277. ]
  40278. ))
  40279. characterMakers.push(() => makeCharacter(
  40280. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40281. {
  40282. front: {
  40283. height: math.unit(9, "feet"),
  40284. weight: math.unit(621, "lb"),
  40285. name: "Front",
  40286. image: {
  40287. source: "./media/characters/unmru/front.svg",
  40288. extra: 1853/1747,
  40289. bottom: 73/1926
  40290. }
  40291. },
  40292. side: {
  40293. height: math.unit(9, "feet"),
  40294. weight: math.unit(621, "lb"),
  40295. name: "Side",
  40296. image: {
  40297. source: "./media/characters/unmru/side.svg",
  40298. extra: 1781/1671,
  40299. bottom: 127/1908
  40300. }
  40301. },
  40302. back: {
  40303. height: math.unit(9, "feet"),
  40304. weight: math.unit(621, "lb"),
  40305. name: "Back",
  40306. image: {
  40307. source: "./media/characters/unmru/back.svg",
  40308. extra: 1894/1765,
  40309. bottom: 75/1969
  40310. }
  40311. },
  40312. dick: {
  40313. height: math.unit(3, "feet"),
  40314. weight: math.unit(35, "lb"),
  40315. name: "Dick",
  40316. image: {
  40317. source: "./media/characters/unmru/dick.svg"
  40318. }
  40319. },
  40320. },
  40321. [
  40322. {
  40323. name: "Normal",
  40324. height: math.unit(9, "feet")
  40325. },
  40326. {
  40327. name: "Natural",
  40328. height: math.unit(27, "feet"),
  40329. default: true
  40330. },
  40331. {
  40332. name: "Giant",
  40333. height: math.unit(90, "feet")
  40334. },
  40335. {
  40336. name: "Kaiju",
  40337. height: math.unit(270, "feet")
  40338. },
  40339. {
  40340. name: "Macro",
  40341. height: math.unit(900, "feet")
  40342. },
  40343. {
  40344. name: "Macro+",
  40345. height: math.unit(2700, "feet")
  40346. },
  40347. {
  40348. name: "Megamacro",
  40349. height: math.unit(9000, "feet")
  40350. },
  40351. {
  40352. name: "City-Crushing",
  40353. height: math.unit(27000, "feet")
  40354. },
  40355. {
  40356. name: "Mountain-Mashing",
  40357. height: math.unit(90000, "feet")
  40358. },
  40359. {
  40360. name: "Earth-Eclipsing",
  40361. height: math.unit(2.7e8, "feet")
  40362. },
  40363. {
  40364. name: "Sol-Swallowing",
  40365. height: math.unit(9e10, "feet")
  40366. },
  40367. {
  40368. name: "Majoris-Munching",
  40369. height: math.unit(2.7e13, "feet")
  40370. },
  40371. ]
  40372. ))
  40373. characterMakers.push(() => makeCharacter(
  40374. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40375. {
  40376. front: {
  40377. height: math.unit(1, "inch"),
  40378. name: "Front",
  40379. image: {
  40380. source: "./media/characters/squeaks-mouse/front.svg",
  40381. extra: 352/308,
  40382. bottom: 25/377
  40383. }
  40384. },
  40385. },
  40386. [
  40387. {
  40388. name: "Micro",
  40389. height: math.unit(1, "inch"),
  40390. default: true
  40391. },
  40392. ]
  40393. ))
  40394. characterMakers.push(() => makeCharacter(
  40395. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40396. {
  40397. side: {
  40398. height: math.unit(35, "feet"),
  40399. name: "Side",
  40400. image: {
  40401. source: "./media/characters/sayko/side.svg",
  40402. extra: 1697/1021,
  40403. bottom: 82/1779
  40404. }
  40405. },
  40406. head: {
  40407. height: math.unit(16, "feet"),
  40408. name: "Head",
  40409. image: {
  40410. source: "./media/characters/sayko/head.svg"
  40411. }
  40412. },
  40413. forepaw: {
  40414. height: math.unit(7.85, "feet"),
  40415. name: "Forepaw",
  40416. image: {
  40417. source: "./media/characters/sayko/forepaw.svg"
  40418. }
  40419. },
  40420. hindpaw: {
  40421. height: math.unit(8.8, "feet"),
  40422. name: "Hindpaw",
  40423. image: {
  40424. source: "./media/characters/sayko/hindpaw.svg"
  40425. }
  40426. },
  40427. },
  40428. [
  40429. {
  40430. name: "Normal",
  40431. height: math.unit(35, "feet"),
  40432. default: true
  40433. },
  40434. {
  40435. name: "Colossus",
  40436. height: math.unit(100, "meters")
  40437. },
  40438. {
  40439. name: "\"Small\" Deity",
  40440. height: math.unit(1, "km")
  40441. },
  40442. {
  40443. name: "\"Large\" Deity",
  40444. height: math.unit(15, "km")
  40445. },
  40446. ]
  40447. ))
  40448. characterMakers.push(() => makeCharacter(
  40449. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40450. {
  40451. front: {
  40452. height: math.unit(6, "feet"),
  40453. weight: math.unit(250, "lb"),
  40454. name: "Front",
  40455. image: {
  40456. source: "./media/characters/mukiro/front.svg",
  40457. extra: 1368/1310,
  40458. bottom: 34/1402
  40459. }
  40460. },
  40461. },
  40462. [
  40463. {
  40464. name: "Normal",
  40465. height: math.unit(6, "feet"),
  40466. default: true
  40467. },
  40468. ]
  40469. ))
  40470. characterMakers.push(() => makeCharacter(
  40471. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40472. {
  40473. front: {
  40474. height: math.unit(12 + 4/12, "feet"),
  40475. name: "Front",
  40476. image: {
  40477. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40478. extra: 1346/1311,
  40479. bottom: 65/1411
  40480. }
  40481. },
  40482. },
  40483. [
  40484. {
  40485. name: "Base",
  40486. height: math.unit(12 + 4/12, "feet"),
  40487. default: true
  40488. },
  40489. {
  40490. name: "Macro",
  40491. height: math.unit(150, "feet")
  40492. },
  40493. {
  40494. name: "Mega",
  40495. height: math.unit(2, "miles")
  40496. },
  40497. {
  40498. name: "Demi God",
  40499. height: math.unit(4, "AU")
  40500. },
  40501. {
  40502. name: "God Size",
  40503. height: math.unit(1, "universe")
  40504. },
  40505. ]
  40506. ))
  40507. characterMakers.push(() => makeCharacter(
  40508. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40509. {
  40510. front: {
  40511. height: math.unit(3 + 3/12, "feet"),
  40512. weight: math.unit(88, "lb"),
  40513. name: "Front",
  40514. image: {
  40515. source: "./media/characters/trey/front.svg",
  40516. extra: 1815/1509,
  40517. bottom: 60/1875
  40518. }
  40519. },
  40520. },
  40521. [
  40522. {
  40523. name: "Normal",
  40524. height: math.unit(3 + 3/12, "feet"),
  40525. default: true
  40526. },
  40527. ]
  40528. ))
  40529. characterMakers.push(() => makeCharacter(
  40530. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40531. {
  40532. front: {
  40533. height: math.unit(4, "meters"),
  40534. name: "Front",
  40535. image: {
  40536. source: "./media/characters/adelonda/front.svg",
  40537. extra: 1077/982,
  40538. bottom: 39/1116
  40539. }
  40540. },
  40541. back: {
  40542. height: math.unit(4, "meters"),
  40543. name: "Back",
  40544. image: {
  40545. source: "./media/characters/adelonda/back.svg",
  40546. extra: 1105/1003,
  40547. bottom: 25/1130
  40548. }
  40549. },
  40550. feral: {
  40551. height: math.unit(40/1.5, "meters"),
  40552. name: "Feral",
  40553. image: {
  40554. source: "./media/characters/adelonda/feral.svg",
  40555. extra: 597/271,
  40556. bottom: 387/984
  40557. }
  40558. },
  40559. },
  40560. [
  40561. {
  40562. name: "Normal",
  40563. height: math.unit(4, "meters"),
  40564. default: true
  40565. },
  40566. ]
  40567. ))
  40568. characterMakers.push(() => makeCharacter(
  40569. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40570. {
  40571. front: {
  40572. height: math.unit(8 + 4/12, "feet"),
  40573. weight: math.unit(670, "lb"),
  40574. name: "Front",
  40575. image: {
  40576. source: "./media/characters/acadiel/front.svg",
  40577. extra: 1901/1595,
  40578. bottom: 142/2043
  40579. }
  40580. },
  40581. },
  40582. [
  40583. {
  40584. name: "Normal",
  40585. height: math.unit(8 + 4/12, "feet"),
  40586. default: true
  40587. },
  40588. {
  40589. name: "Macro",
  40590. height: math.unit(200, "feet")
  40591. },
  40592. ]
  40593. ))
  40594. characterMakers.push(() => makeCharacter(
  40595. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40596. {
  40597. front: {
  40598. height: math.unit(6 + 2/12, "feet"),
  40599. weight: math.unit(185, "lb"),
  40600. name: "Front",
  40601. image: {
  40602. source: "./media/characters/kayne-ein/front.svg",
  40603. extra: 1780/1560,
  40604. bottom: 81/1861
  40605. }
  40606. },
  40607. },
  40608. [
  40609. {
  40610. name: "Normal",
  40611. height: math.unit(6 + 2/12, "feet"),
  40612. default: true
  40613. },
  40614. {
  40615. name: "Transformation Stage",
  40616. height: math.unit(15, "feet")
  40617. },
  40618. {
  40619. name: "Macro",
  40620. height: math.unit(150, "feet")
  40621. },
  40622. {
  40623. name: "Earth's Shadow",
  40624. height: math.unit(6200, "miles")
  40625. },
  40626. {
  40627. name: "Universal Demon",
  40628. height: math.unit(28e9, "parsecs")
  40629. },
  40630. {
  40631. name: "Multiverse God",
  40632. height: math.unit(3, "multiverses")
  40633. },
  40634. ]
  40635. ))
  40636. characterMakers.push(() => makeCharacter(
  40637. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40638. {
  40639. front: {
  40640. height: math.unit(5 + 5/12, "feet"),
  40641. name: "Front",
  40642. image: {
  40643. source: "./media/characters/fawn/front.svg",
  40644. extra: 1873/1731,
  40645. bottom: 95/1968
  40646. }
  40647. },
  40648. back: {
  40649. height: math.unit(5 + 5/12, "feet"),
  40650. name: "Back",
  40651. image: {
  40652. source: "./media/characters/fawn/back.svg",
  40653. extra: 1813/1700,
  40654. bottom: 14/1827
  40655. }
  40656. },
  40657. hoof: {
  40658. height: math.unit(1.45, "feet"),
  40659. name: "Hoof",
  40660. image: {
  40661. source: "./media/characters/fawn/hoof.svg"
  40662. }
  40663. },
  40664. },
  40665. [
  40666. {
  40667. name: "Normal",
  40668. height: math.unit(5 + 5/12, "feet"),
  40669. default: true
  40670. },
  40671. ]
  40672. ))
  40673. characterMakers.push(() => makeCharacter(
  40674. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40675. {
  40676. front: {
  40677. height: math.unit(2 + 5/12, "feet"),
  40678. name: "Front",
  40679. image: {
  40680. source: "./media/characters/orion/front.svg",
  40681. extra: 1366/1304,
  40682. bottom: 43/1409
  40683. }
  40684. },
  40685. paw: {
  40686. height: math.unit(0.52, "feet"),
  40687. name: "Paw",
  40688. image: {
  40689. source: "./media/characters/orion/paw.svg"
  40690. }
  40691. },
  40692. },
  40693. [
  40694. {
  40695. name: "Normal",
  40696. height: math.unit(2 + 5/12, "feet"),
  40697. default: true
  40698. },
  40699. ]
  40700. ))
  40701. characterMakers.push(() => makeCharacter(
  40702. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40703. {
  40704. front: {
  40705. height: math.unit(5 + 10/12, "feet"),
  40706. name: "Front",
  40707. image: {
  40708. source: "./media/characters/vera/front.svg",
  40709. extra: 1680/1575,
  40710. bottom: 49/1729
  40711. }
  40712. },
  40713. back: {
  40714. height: math.unit(5 + 10/12, "feet"),
  40715. name: "Back",
  40716. image: {
  40717. source: "./media/characters/vera/back.svg",
  40718. extra: 1700/1588,
  40719. bottom: 18/1718
  40720. }
  40721. },
  40722. arcanine: {
  40723. height: math.unit(6 + 8/12, "feet"),
  40724. name: "Arcanine",
  40725. image: {
  40726. source: "./media/characters/vera/arcanine.svg",
  40727. extra: 1590/1511,
  40728. bottom: 71/1661
  40729. }
  40730. },
  40731. maw: {
  40732. height: math.unit(0.82, "feet"),
  40733. name: "Maw",
  40734. image: {
  40735. source: "./media/characters/vera/maw.svg"
  40736. }
  40737. },
  40738. mawArcanine: {
  40739. height: math.unit(0.97, "feet"),
  40740. name: "Maw (Arcanine)",
  40741. image: {
  40742. source: "./media/characters/vera/maw-arcanine.svg"
  40743. }
  40744. },
  40745. paw: {
  40746. height: math.unit(0.75, "feet"),
  40747. name: "Paw",
  40748. image: {
  40749. source: "./media/characters/vera/paw.svg"
  40750. }
  40751. },
  40752. pawprint: {
  40753. height: math.unit(0.52, "feet"),
  40754. name: "Pawprint",
  40755. image: {
  40756. source: "./media/characters/vera/pawprint.svg"
  40757. }
  40758. },
  40759. },
  40760. [
  40761. {
  40762. name: "Normal",
  40763. height: math.unit(5 + 10/12, "feet"),
  40764. default: true
  40765. },
  40766. {
  40767. name: "Macro",
  40768. height: math.unit(75, "feet")
  40769. },
  40770. ]
  40771. ))
  40772. characterMakers.push(() => makeCharacter(
  40773. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40774. {
  40775. front: {
  40776. height: math.unit(4, "feet"),
  40777. weight: math.unit(40, "lb"),
  40778. name: "Front",
  40779. image: {
  40780. source: "./media/characters/orvan-rabbit/front.svg",
  40781. extra: 1896/1642,
  40782. bottom: 29/1925
  40783. }
  40784. },
  40785. },
  40786. [
  40787. {
  40788. name: "Normal",
  40789. height: math.unit(4, "feet"),
  40790. default: true
  40791. },
  40792. ]
  40793. ))
  40794. characterMakers.push(() => makeCharacter(
  40795. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40796. {
  40797. front: {
  40798. height: math.unit(6, "feet"),
  40799. weight: math.unit(168, "lb"),
  40800. name: "Front",
  40801. image: {
  40802. source: "./media/characters/lisa/front.svg",
  40803. extra: 2065/1867,
  40804. bottom: 46/2111
  40805. }
  40806. },
  40807. back: {
  40808. height: math.unit(6, "feet"),
  40809. weight: math.unit(168, "lb"),
  40810. name: "Back",
  40811. image: {
  40812. source: "./media/characters/lisa/back.svg",
  40813. extra: 1982/1838,
  40814. bottom: 29/2011
  40815. }
  40816. },
  40817. maw: {
  40818. height: math.unit(0.81, "feet"),
  40819. name: "Maw",
  40820. image: {
  40821. source: "./media/characters/lisa/maw.svg"
  40822. }
  40823. },
  40824. paw: {
  40825. height: math.unit(0.9, "feet"),
  40826. name: "Paw",
  40827. image: {
  40828. source: "./media/characters/lisa/paw.svg"
  40829. }
  40830. },
  40831. caribousune: {
  40832. height: math.unit(7 + 2/12, "feet"),
  40833. weight: math.unit(268, "lb"),
  40834. name: "Caribousune",
  40835. image: {
  40836. source: "./media/characters/lisa/caribousune.svg",
  40837. extra: 1843/1633,
  40838. bottom: 29/1872
  40839. }
  40840. },
  40841. frontCaribousune: {
  40842. height: math.unit(7 + 2/12, "feet"),
  40843. weight: math.unit(268, "lb"),
  40844. name: "Front (Caribousune)",
  40845. image: {
  40846. source: "./media/characters/lisa/front-caribousune.svg",
  40847. extra: 1818/1638,
  40848. bottom: 52/1870
  40849. }
  40850. },
  40851. sideCaribousune: {
  40852. height: math.unit(7 + 2/12, "feet"),
  40853. weight: math.unit(268, "lb"),
  40854. name: "Side (Caribousune)",
  40855. image: {
  40856. source: "./media/characters/lisa/side-caribousune.svg",
  40857. extra: 1851/1635,
  40858. bottom: 16/1867
  40859. }
  40860. },
  40861. backCaribousune: {
  40862. height: math.unit(7 + 2/12, "feet"),
  40863. weight: math.unit(268, "lb"),
  40864. name: "Back (Caribousune)",
  40865. image: {
  40866. source: "./media/characters/lisa/back-caribousune.svg",
  40867. extra: 1801/1604,
  40868. bottom: 44/1845
  40869. }
  40870. },
  40871. caribou: {
  40872. height: math.unit(7 + 2/12, "feet"),
  40873. weight: math.unit(268, "lb"),
  40874. name: "Caribou",
  40875. image: {
  40876. source: "./media/characters/lisa/caribou.svg",
  40877. extra: 1843/1633,
  40878. bottom: 29/1872
  40879. }
  40880. },
  40881. frontCaribou: {
  40882. height: math.unit(7 + 2/12, "feet"),
  40883. weight: math.unit(268, "lb"),
  40884. name: "Front (Caribou)",
  40885. image: {
  40886. source: "./media/characters/lisa/front-caribou.svg",
  40887. extra: 1818/1638,
  40888. bottom: 52/1870
  40889. }
  40890. },
  40891. sideCaribou: {
  40892. height: math.unit(7 + 2/12, "feet"),
  40893. weight: math.unit(268, "lb"),
  40894. name: "Side (Caribou)",
  40895. image: {
  40896. source: "./media/characters/lisa/side-caribou.svg",
  40897. extra: 1851/1635,
  40898. bottom: 16/1867
  40899. }
  40900. },
  40901. backCaribou: {
  40902. height: math.unit(7 + 2/12, "feet"),
  40903. weight: math.unit(268, "lb"),
  40904. name: "Back (Caribou)",
  40905. image: {
  40906. source: "./media/characters/lisa/back-caribou.svg",
  40907. extra: 1801/1604,
  40908. bottom: 44/1845
  40909. }
  40910. },
  40911. mawCaribou: {
  40912. height: math.unit(1.45, "feet"),
  40913. name: "Maw (Caribou)",
  40914. image: {
  40915. source: "./media/characters/lisa/maw-caribou.svg"
  40916. }
  40917. },
  40918. mawCaribousune: {
  40919. height: math.unit(1.45, "feet"),
  40920. name: "Maw (Caribousune)",
  40921. image: {
  40922. source: "./media/characters/lisa/maw-caribousune.svg"
  40923. }
  40924. },
  40925. pawCaribousune: {
  40926. height: math.unit(1.61, "feet"),
  40927. name: "Paw (Caribou)",
  40928. image: {
  40929. source: "./media/characters/lisa/paw-caribousune.svg"
  40930. }
  40931. },
  40932. },
  40933. [
  40934. {
  40935. name: "Normal",
  40936. height: math.unit(6, "feet")
  40937. },
  40938. {
  40939. name: "God Size",
  40940. height: math.unit(72, "feet"),
  40941. default: true
  40942. },
  40943. {
  40944. name: "Towering",
  40945. height: math.unit(288, "feet")
  40946. },
  40947. {
  40948. name: "City Size",
  40949. height: math.unit(48384, "feet")
  40950. },
  40951. {
  40952. name: "Continental",
  40953. height: math.unit(4200, "miles")
  40954. },
  40955. {
  40956. name: "Planet Eater",
  40957. height: math.unit(42, "earths")
  40958. },
  40959. {
  40960. name: "Star Swallower",
  40961. height: math.unit(42, "solarradii")
  40962. },
  40963. {
  40964. name: "System Swallower",
  40965. height: math.unit(84000, "AU")
  40966. },
  40967. {
  40968. name: "Galaxy Gobbler",
  40969. height: math.unit(42, "galaxies")
  40970. },
  40971. {
  40972. name: "Universe Devourer",
  40973. height: math.unit(42, "universes")
  40974. },
  40975. {
  40976. name: "Multiverse Muncher",
  40977. height: math.unit(42, "multiverses")
  40978. },
  40979. ]
  40980. ))
  40981. characterMakers.push(() => makeCharacter(
  40982. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40983. {
  40984. front: {
  40985. height: math.unit(36, "feet"),
  40986. name: "Front",
  40987. image: {
  40988. source: "./media/characters/shadow-rat/front.svg",
  40989. extra: 1845/1758,
  40990. bottom: 83/1928
  40991. }
  40992. },
  40993. },
  40994. [
  40995. {
  40996. name: "Macro",
  40997. height: math.unit(36, "feet"),
  40998. default: true
  40999. },
  41000. ]
  41001. ))
  41002. characterMakers.push(() => makeCharacter(
  41003. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41004. {
  41005. side: {
  41006. height: math.unit(8, "feet"),
  41007. weight: math.unit(2630, "lb"),
  41008. name: "Side",
  41009. image: {
  41010. source: "./media/characters/torallia/side.svg",
  41011. extra: 2164/2021,
  41012. bottom: 371/2535
  41013. }
  41014. },
  41015. },
  41016. [
  41017. {
  41018. name: "Mortal Interaction",
  41019. height: math.unit(8, "feet")
  41020. },
  41021. {
  41022. name: "Natural",
  41023. height: math.unit(24, "feet"),
  41024. default: true
  41025. },
  41026. {
  41027. name: "Giant",
  41028. height: math.unit(80, "feet")
  41029. },
  41030. {
  41031. name: "Kaiju",
  41032. height: math.unit(240, "feet")
  41033. },
  41034. {
  41035. name: "Macro",
  41036. height: math.unit(800, "feet")
  41037. },
  41038. {
  41039. name: "Macro+",
  41040. height: math.unit(2400, "feet")
  41041. },
  41042. {
  41043. name: "Macro++",
  41044. height: math.unit(8000, "feet")
  41045. },
  41046. {
  41047. name: "City-Crushing",
  41048. height: math.unit(24000, "feet")
  41049. },
  41050. {
  41051. name: "Mountain-Mashing",
  41052. height: math.unit(80000, "feet")
  41053. },
  41054. {
  41055. name: "District Demolisher",
  41056. height: math.unit(240000, "feet")
  41057. },
  41058. {
  41059. name: "Tri-County Terror",
  41060. height: math.unit(800000, "feet")
  41061. },
  41062. {
  41063. name: "State Smasher",
  41064. height: math.unit(2.4e6, "feet")
  41065. },
  41066. {
  41067. name: "Nation Nemesis",
  41068. height: math.unit(8e6, "feet")
  41069. },
  41070. {
  41071. name: "Continent Cracker",
  41072. height: math.unit(2.4e7, "feet")
  41073. },
  41074. {
  41075. name: "Planet-Pillaging",
  41076. height: math.unit(8e7, "feet")
  41077. },
  41078. {
  41079. name: "Earth-Eclipsing",
  41080. height: math.unit(2.4e8, "feet")
  41081. },
  41082. {
  41083. name: "Jovian-Jostling",
  41084. height: math.unit(8e8, "feet")
  41085. },
  41086. {
  41087. name: "Gas Giant Gulper",
  41088. height: math.unit(2.4e9, "feet")
  41089. },
  41090. {
  41091. name: "Astral Annihilator",
  41092. height: math.unit(8e9, "feet")
  41093. },
  41094. {
  41095. name: "Celestial Conqueror",
  41096. height: math.unit(2.4e10, "feet")
  41097. },
  41098. {
  41099. name: "Sol-Swallowing",
  41100. height: math.unit(8e10, "feet")
  41101. },
  41102. {
  41103. name: "Hunter of the Heavens",
  41104. height: math.unit(2.4e13, "feet")
  41105. },
  41106. ]
  41107. ))
  41108. characterMakers.push(() => makeCharacter(
  41109. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41110. {
  41111. front: {
  41112. height: math.unit(6 + 8/12, "feet"),
  41113. weight: math.unit(250, "kilograms"),
  41114. volume: math.unit(28, "liters"),
  41115. name: "Front",
  41116. image: {
  41117. source: "./media/characters/rebecca-pawlson/front.svg",
  41118. extra: 1737/1596,
  41119. bottom: 107/1844
  41120. }
  41121. },
  41122. back: {
  41123. height: math.unit(6 + 8/12, "feet"),
  41124. weight: math.unit(250, "kilograms"),
  41125. volume: math.unit(28, "liters"),
  41126. name: "Back",
  41127. image: {
  41128. source: "./media/characters/rebecca-pawlson/back.svg",
  41129. extra: 1702/1523,
  41130. bottom: 86/1788
  41131. }
  41132. },
  41133. },
  41134. [
  41135. {
  41136. name: "Normal",
  41137. height: math.unit(6 + 8/12, "feet")
  41138. },
  41139. {
  41140. name: "Mini Macro",
  41141. height: math.unit(10, "feet"),
  41142. default: true
  41143. },
  41144. {
  41145. name: "Macro",
  41146. height: math.unit(100, "feet")
  41147. },
  41148. {
  41149. name: "Mega Macro",
  41150. height: math.unit(2500, "feet")
  41151. },
  41152. {
  41153. name: "Giga Macro",
  41154. height: math.unit(50, "miles")
  41155. },
  41156. ]
  41157. ))
  41158. characterMakers.push(() => makeCharacter(
  41159. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41160. {
  41161. front: {
  41162. height: math.unit(7 + 6/12, "feet"),
  41163. weight: math.unit(600, "lb"),
  41164. name: "Front",
  41165. image: {
  41166. source: "./media/characters/moxie-nova/front.svg",
  41167. extra: 1734/1652,
  41168. bottom: 41/1775
  41169. }
  41170. },
  41171. },
  41172. [
  41173. {
  41174. name: "Normal",
  41175. height: math.unit(7 + 6/12, "feet"),
  41176. default: true
  41177. },
  41178. ]
  41179. ))
  41180. characterMakers.push(() => makeCharacter(
  41181. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41182. {
  41183. goat: {
  41184. height: math.unit(4, "feet"),
  41185. weight: math.unit(180, "lb"),
  41186. name: "Goat",
  41187. image: {
  41188. source: "./media/characters/tiffany/goat.svg",
  41189. extra: 1845/1595,
  41190. bottom: 106/1951
  41191. }
  41192. },
  41193. front: {
  41194. height: math.unit(5, "feet"),
  41195. weight: math.unit(150, "lb"),
  41196. name: "Foxcoon",
  41197. image: {
  41198. source: "./media/characters/tiffany/foxcoon.svg",
  41199. extra: 1941/1845,
  41200. bottom: 58/1999
  41201. }
  41202. },
  41203. },
  41204. [
  41205. {
  41206. name: "Normal",
  41207. height: math.unit(5, "feet"),
  41208. default: true
  41209. },
  41210. ]
  41211. ))
  41212. characterMakers.push(() => makeCharacter(
  41213. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41214. {
  41215. front: {
  41216. height: math.unit(8, "feet"),
  41217. weight: math.unit(300, "lb"),
  41218. name: "Front",
  41219. image: {
  41220. source: "./media/characters/raxinath/front.svg",
  41221. extra: 1407/1309,
  41222. bottom: 39/1446
  41223. }
  41224. },
  41225. back: {
  41226. height: math.unit(8, "feet"),
  41227. weight: math.unit(300, "lb"),
  41228. name: "Back",
  41229. image: {
  41230. source: "./media/characters/raxinath/back.svg",
  41231. extra: 1405/1315,
  41232. bottom: 9/1414
  41233. }
  41234. },
  41235. },
  41236. [
  41237. {
  41238. name: "Speck",
  41239. height: math.unit(0.5, "nm")
  41240. },
  41241. {
  41242. name: "Micro",
  41243. height: math.unit(3, "inches")
  41244. },
  41245. {
  41246. name: "Kobold",
  41247. height: math.unit(3, "feet")
  41248. },
  41249. {
  41250. name: "Normal",
  41251. height: math.unit(8, "feet"),
  41252. default: true
  41253. },
  41254. {
  41255. name: "Giant",
  41256. height: math.unit(50, "feet")
  41257. },
  41258. {
  41259. name: "Macro",
  41260. height: math.unit(1000, "feet")
  41261. },
  41262. {
  41263. name: "Megamacro",
  41264. height: math.unit(1, "mile")
  41265. },
  41266. ]
  41267. ))
  41268. characterMakers.push(() => makeCharacter(
  41269. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41270. {
  41271. front: {
  41272. height: math.unit(10, "feet"),
  41273. weight: math.unit(1442, "lb"),
  41274. name: "Front",
  41275. image: {
  41276. source: "./media/characters/mal-dragon/front.svg",
  41277. extra: 1515/1444,
  41278. bottom: 113/1628
  41279. }
  41280. },
  41281. back: {
  41282. height: math.unit(10, "feet"),
  41283. weight: math.unit(1442, "lb"),
  41284. name: "Back",
  41285. image: {
  41286. source: "./media/characters/mal-dragon/back.svg",
  41287. extra: 1527/1434,
  41288. bottom: 25/1552
  41289. }
  41290. },
  41291. },
  41292. [
  41293. {
  41294. name: "Mortal Interaction",
  41295. height: math.unit(10, "feet"),
  41296. default: true
  41297. },
  41298. {
  41299. name: "Large",
  41300. height: math.unit(30, "feet")
  41301. },
  41302. {
  41303. name: "Kaiju",
  41304. height: math.unit(300, "feet")
  41305. },
  41306. {
  41307. name: "Megamacro",
  41308. height: math.unit(10000, "feet")
  41309. },
  41310. {
  41311. name: "Continent Cracker",
  41312. height: math.unit(30000000, "feet")
  41313. },
  41314. {
  41315. name: "Sol-Swallowing",
  41316. height: math.unit(1e11, "feet")
  41317. },
  41318. {
  41319. name: "Light Universal",
  41320. height: math.unit(5, "universes")
  41321. },
  41322. {
  41323. name: "Universe Atoms",
  41324. height: math.unit(1.829e9, "universes")
  41325. },
  41326. {
  41327. name: "Light Multiversal",
  41328. height: math.unit(5, "multiverses")
  41329. },
  41330. {
  41331. name: "Multiverse Atoms",
  41332. height: math.unit(1.829e9, "multiverses")
  41333. },
  41334. {
  41335. name: "Fabric of Time",
  41336. height: math.unit(1e262, "multiverses")
  41337. },
  41338. ]
  41339. ))
  41340. characterMakers.push(() => makeCharacter(
  41341. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41342. {
  41343. front: {
  41344. height: math.unit(9, "feet"),
  41345. weight: math.unit(1050, "lb"),
  41346. name: "Front",
  41347. image: {
  41348. source: "./media/characters/tabitha/front.svg",
  41349. extra: 2083/1994,
  41350. bottom: 68/2151
  41351. }
  41352. },
  41353. },
  41354. [
  41355. {
  41356. name: "Baseline",
  41357. height: math.unit(9, "feet"),
  41358. default: true
  41359. },
  41360. {
  41361. name: "Giant",
  41362. height: math.unit(90, "feet")
  41363. },
  41364. {
  41365. name: "Macro",
  41366. height: math.unit(900, "feet")
  41367. },
  41368. {
  41369. name: "Megamacro",
  41370. height: math.unit(9000, "feet")
  41371. },
  41372. {
  41373. name: "City-Crushing",
  41374. height: math.unit(27000, "feet")
  41375. },
  41376. {
  41377. name: "Mountain-Mashing",
  41378. height: math.unit(90000, "feet")
  41379. },
  41380. {
  41381. name: "Nation Nemesis",
  41382. height: math.unit(9e6, "feet")
  41383. },
  41384. {
  41385. name: "Continent Cracker",
  41386. height: math.unit(27e6, "feet")
  41387. },
  41388. {
  41389. name: "Earth-Eclipsing",
  41390. height: math.unit(2.7e8, "feet")
  41391. },
  41392. {
  41393. name: "Gas Giant Gulper",
  41394. height: math.unit(2.7e9, "feet")
  41395. },
  41396. {
  41397. name: "Sol-Swallowing",
  41398. height: math.unit(9e10, "feet")
  41399. },
  41400. {
  41401. name: "Galaxy Gulper",
  41402. height: math.unit(9, "galaxies")
  41403. },
  41404. {
  41405. name: "Cosmos Churner",
  41406. height: math.unit(9, "universes")
  41407. },
  41408. ]
  41409. ))
  41410. characterMakers.push(() => makeCharacter(
  41411. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41412. {
  41413. front: {
  41414. height: math.unit(160, "cm"),
  41415. weight: math.unit(55, "kg"),
  41416. name: "Front",
  41417. image: {
  41418. source: "./media/characters/tow/front.svg",
  41419. extra: 1751/1722,
  41420. bottom: 74/1825
  41421. }
  41422. },
  41423. },
  41424. [
  41425. {
  41426. name: "Norm",
  41427. height: math.unit(160, "cm")
  41428. },
  41429. {
  41430. name: "Casual",
  41431. height: math.unit(3200, "m"),
  41432. default: true
  41433. },
  41434. {
  41435. name: "Show-Off",
  41436. height: math.unit(160, "km")
  41437. },
  41438. ]
  41439. ))
  41440. characterMakers.push(() => makeCharacter(
  41441. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41442. {
  41443. front: {
  41444. height: math.unit(7 + 11/12, "feet"),
  41445. weight: math.unit(342.8, "lb"),
  41446. name: "Front",
  41447. image: {
  41448. source: "./media/characters/vivian-orca-dragon/front.svg",
  41449. extra: 1890/1865,
  41450. bottom: 28/1918
  41451. }
  41452. },
  41453. },
  41454. [
  41455. {
  41456. name: "Micro",
  41457. height: math.unit(5, "inches")
  41458. },
  41459. {
  41460. name: "Normal",
  41461. height: math.unit(7 + 11/12, "feet"),
  41462. default: true
  41463. },
  41464. {
  41465. name: "Macro",
  41466. height: math.unit(395 + 7/12, "feet")
  41467. },
  41468. ]
  41469. ))
  41470. characterMakers.push(() => makeCharacter(
  41471. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41472. {
  41473. side: {
  41474. height: math.unit(10, "feet"),
  41475. weight: math.unit(1442, "lb"),
  41476. name: "Side",
  41477. image: {
  41478. source: "./media/characters/lotherakon/side.svg",
  41479. extra: 1604/1497,
  41480. bottom: 89/1693
  41481. }
  41482. },
  41483. },
  41484. [
  41485. {
  41486. name: "Mortal Interaction",
  41487. height: math.unit(10, "feet")
  41488. },
  41489. {
  41490. name: "Large",
  41491. height: math.unit(30, "feet"),
  41492. default: true
  41493. },
  41494. {
  41495. name: "Giant",
  41496. height: math.unit(100, "feet")
  41497. },
  41498. {
  41499. name: "Kaiju",
  41500. height: math.unit(300, "feet")
  41501. },
  41502. {
  41503. name: "Macro",
  41504. height: math.unit(1000, "feet")
  41505. },
  41506. {
  41507. name: "Macro+",
  41508. height: math.unit(3000, "feet")
  41509. },
  41510. {
  41511. name: "Megamacro",
  41512. height: math.unit(10000, "feet")
  41513. },
  41514. {
  41515. name: "City-Crushing",
  41516. height: math.unit(30000, "feet")
  41517. },
  41518. {
  41519. name: "Continent Cracker",
  41520. height: math.unit(30e6, "feet")
  41521. },
  41522. {
  41523. name: "Earth Eclipsing",
  41524. height: math.unit(3e8, "feet")
  41525. },
  41526. {
  41527. name: "Gas Giant Gulper",
  41528. height: math.unit(3e9, "feet")
  41529. },
  41530. {
  41531. name: "Sol-Swallowing",
  41532. height: math.unit(1e11, "feet")
  41533. },
  41534. {
  41535. name: "System Swallower",
  41536. height: math.unit(3e14, "feet")
  41537. },
  41538. {
  41539. name: "Galaxy Gulper",
  41540. height: math.unit(10, "galaxies")
  41541. },
  41542. {
  41543. name: "Light Universal",
  41544. height: math.unit(5, "universes")
  41545. },
  41546. {
  41547. name: "Universe Palm",
  41548. height: math.unit(20, "universes")
  41549. },
  41550. {
  41551. name: "Light Multiversal",
  41552. height: math.unit(5, "multiverses")
  41553. },
  41554. {
  41555. name: "Multiverse Palm",
  41556. height: math.unit(20, "multiverses")
  41557. },
  41558. {
  41559. name: "Inferno Incarnate",
  41560. height: math.unit(1e7, "multiverses")
  41561. },
  41562. ]
  41563. ))
  41564. characterMakers.push(() => makeCharacter(
  41565. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41566. {
  41567. front: {
  41568. height: math.unit(8, "feet"),
  41569. weight: math.unit(1200, "lb"),
  41570. name: "Front",
  41571. image: {
  41572. source: "./media/characters/malithee/front.svg",
  41573. extra: 1675/1640,
  41574. bottom: 162/1837
  41575. }
  41576. },
  41577. },
  41578. [
  41579. {
  41580. name: "Mortal Interaction",
  41581. height: math.unit(8, "feet"),
  41582. default: true
  41583. },
  41584. {
  41585. name: "Large",
  41586. height: math.unit(24, "feet")
  41587. },
  41588. {
  41589. name: "Kaiju",
  41590. height: math.unit(240, "feet")
  41591. },
  41592. {
  41593. name: "Megamacro",
  41594. height: math.unit(8000, "feet")
  41595. },
  41596. {
  41597. name: "Continent Cracker",
  41598. height: math.unit(24e6, "feet")
  41599. },
  41600. {
  41601. name: "Earth-Eclipsing",
  41602. height: math.unit(2.4e8, "feet")
  41603. },
  41604. {
  41605. name: "Sol-Swallowing",
  41606. height: math.unit(8e10, "feet")
  41607. },
  41608. {
  41609. name: "Galaxy Gulper",
  41610. height: math.unit(8, "galaxies")
  41611. },
  41612. {
  41613. name: "Light Universal",
  41614. height: math.unit(4, "universes")
  41615. },
  41616. {
  41617. name: "Universe Atoms",
  41618. height: math.unit(1.829e9, "universes")
  41619. },
  41620. {
  41621. name: "Light Multiversal",
  41622. height: math.unit(4, "multiverses")
  41623. },
  41624. {
  41625. name: "Multiverse Atoms",
  41626. height: math.unit(1.829e9, "multiverses")
  41627. },
  41628. {
  41629. name: "Nigh-Omnipresence",
  41630. height: math.unit(8e261, "multiverses")
  41631. },
  41632. ]
  41633. ))
  41634. characterMakers.push(() => makeCharacter(
  41635. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41636. {
  41637. front: {
  41638. height: math.unit(10, "feet"),
  41639. weight: math.unit(1500, "lb"),
  41640. name: "Front",
  41641. image: {
  41642. source: "./media/characters/miles-thestia/front.svg",
  41643. extra: 1812/1727,
  41644. bottom: 86/1898
  41645. }
  41646. },
  41647. back: {
  41648. height: math.unit(10, "feet"),
  41649. weight: math.unit(1500, "lb"),
  41650. name: "Back",
  41651. image: {
  41652. source: "./media/characters/miles-thestia/back.svg",
  41653. extra: 1799/1690,
  41654. bottom: 47/1846
  41655. }
  41656. },
  41657. frontNsfw: {
  41658. height: math.unit(10, "feet"),
  41659. weight: math.unit(1500, "lb"),
  41660. name: "Front (NSFW)",
  41661. image: {
  41662. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41663. extra: 1812/1727,
  41664. bottom: 86/1898
  41665. }
  41666. },
  41667. },
  41668. [
  41669. {
  41670. name: "Mini-Macro",
  41671. height: math.unit(10, "feet"),
  41672. default: true
  41673. },
  41674. ]
  41675. ))
  41676. characterMakers.push(() => makeCharacter(
  41677. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41678. {
  41679. front: {
  41680. height: math.unit(25, "feet"),
  41681. name: "Front",
  41682. image: {
  41683. source: "./media/characters/titan-s-wulf/front.svg",
  41684. extra: 1560/1484,
  41685. bottom: 76/1636
  41686. }
  41687. },
  41688. },
  41689. [
  41690. {
  41691. name: "Smallest",
  41692. height: math.unit(25, "feet"),
  41693. default: true
  41694. },
  41695. {
  41696. name: "Normal",
  41697. height: math.unit(200, "feet")
  41698. },
  41699. {
  41700. name: "Macro",
  41701. height: math.unit(200000, "feet")
  41702. },
  41703. {
  41704. name: "Multiversal Original",
  41705. height: math.unit(10000, "multiverses")
  41706. },
  41707. ]
  41708. ))
  41709. characterMakers.push(() => makeCharacter(
  41710. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41711. {
  41712. front: {
  41713. height: math.unit(8, "feet"),
  41714. weight: math.unit(553, "lb"),
  41715. name: "Front",
  41716. image: {
  41717. source: "./media/characters/tawendeh/front.svg",
  41718. extra: 2365/2268,
  41719. bottom: 83/2448
  41720. }
  41721. },
  41722. frontClothed: {
  41723. height: math.unit(8, "feet"),
  41724. weight: math.unit(553, "lb"),
  41725. name: "Front (Clothed)",
  41726. image: {
  41727. source: "./media/characters/tawendeh/front-clothed.svg",
  41728. extra: 2365/2268,
  41729. bottom: 83/2448
  41730. }
  41731. },
  41732. back: {
  41733. height: math.unit(8, "feet"),
  41734. weight: math.unit(553, "lb"),
  41735. name: "Back",
  41736. image: {
  41737. source: "./media/characters/tawendeh/back.svg",
  41738. extra: 2397/2294,
  41739. bottom: 42/2439
  41740. }
  41741. },
  41742. },
  41743. [
  41744. {
  41745. name: "Mortal Interaction",
  41746. height: math.unit(8, "feet"),
  41747. default: true
  41748. },
  41749. {
  41750. name: "Giant",
  41751. height: math.unit(80, "feet")
  41752. },
  41753. {
  41754. name: "Macro",
  41755. height: math.unit(800, "feet")
  41756. },
  41757. {
  41758. name: "Megamacro",
  41759. height: math.unit(8000, "feet")
  41760. },
  41761. {
  41762. name: "City-Crushing",
  41763. height: math.unit(24000, "feet")
  41764. },
  41765. {
  41766. name: "Mountain-Mashing",
  41767. height: math.unit(80000, "feet")
  41768. },
  41769. {
  41770. name: "Nation Nemesis",
  41771. height: math.unit(8e6, "feet")
  41772. },
  41773. {
  41774. name: "Continent Cracker",
  41775. height: math.unit(24e6, "feet")
  41776. },
  41777. {
  41778. name: "Earth-Eclipsing",
  41779. height: math.unit(2.4e8, "feet")
  41780. },
  41781. {
  41782. name: "Gas Giant Gulper",
  41783. height: math.unit(2.4e9, "feet")
  41784. },
  41785. {
  41786. name: "Sol-Swallowing",
  41787. height: math.unit(8e10, "feet")
  41788. },
  41789. {
  41790. name: "Galaxy Gulper",
  41791. height: math.unit(8, "galaxies")
  41792. },
  41793. {
  41794. name: "Cosmos Churner",
  41795. height: math.unit(8, "universes")
  41796. },
  41797. {
  41798. name: "Omnipotent Otter",
  41799. height: math.unit(80, "universes")
  41800. },
  41801. ]
  41802. ))
  41803. characterMakers.push(() => makeCharacter(
  41804. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41805. {
  41806. front: {
  41807. height: math.unit(2.6, "meters"),
  41808. weight: math.unit(900, "kg"),
  41809. name: "Front",
  41810. image: {
  41811. source: "./media/characters/neesha/front.svg",
  41812. extra: 1803/1653,
  41813. bottom: 128/1931
  41814. }
  41815. },
  41816. },
  41817. [
  41818. {
  41819. name: "Normal",
  41820. height: math.unit(2.6, "meters"),
  41821. default: true
  41822. },
  41823. {
  41824. name: "Macro",
  41825. height: math.unit(50, "meters")
  41826. },
  41827. ]
  41828. ))
  41829. characterMakers.push(() => makeCharacter(
  41830. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41831. {
  41832. front: {
  41833. height: math.unit(5, "feet"),
  41834. weight: math.unit(185, "lb"),
  41835. name: "Front",
  41836. image: {
  41837. source: "./media/characters/kyera/front.svg",
  41838. extra: 1875/1790,
  41839. bottom: 96/1971
  41840. }
  41841. },
  41842. },
  41843. [
  41844. {
  41845. name: "Normal",
  41846. height: math.unit(5, "feet"),
  41847. default: true
  41848. },
  41849. ]
  41850. ))
  41851. characterMakers.push(() => makeCharacter(
  41852. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41853. {
  41854. front: {
  41855. height: math.unit(7 + 6/12, "feet"),
  41856. weight: math.unit(540, "lb"),
  41857. name: "Front",
  41858. image: {
  41859. source: "./media/characters/yuko/front.svg",
  41860. extra: 1282/1222,
  41861. bottom: 101/1383
  41862. }
  41863. },
  41864. frontClothed: {
  41865. height: math.unit(7 + 6/12, "feet"),
  41866. weight: math.unit(540, "lb"),
  41867. name: "Front (Clothed)",
  41868. image: {
  41869. source: "./media/characters/yuko/front-clothed.svg",
  41870. extra: 1282/1222,
  41871. bottom: 101/1383
  41872. }
  41873. },
  41874. },
  41875. [
  41876. {
  41877. name: "Normal",
  41878. height: math.unit(7 + 6/12, "feet"),
  41879. default: true
  41880. },
  41881. {
  41882. name: "Macro",
  41883. height: math.unit(26 + 9/12, "feet")
  41884. },
  41885. {
  41886. name: "Megamacro",
  41887. height: math.unit(300, "feet")
  41888. },
  41889. {
  41890. name: "Gigamacro",
  41891. height: math.unit(5000, "feet")
  41892. },
  41893. {
  41894. name: "Planetary",
  41895. height: math.unit(10000, "miles")
  41896. },
  41897. ]
  41898. ))
  41899. characterMakers.push(() => makeCharacter(
  41900. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41901. {
  41902. front: {
  41903. height: math.unit(8 + 2/12, "feet"),
  41904. weight: math.unit(600, "lb"),
  41905. name: "Front",
  41906. image: {
  41907. source: "./media/characters/deam-nitrel/front.svg",
  41908. extra: 1308/1234,
  41909. bottom: 125/1433
  41910. }
  41911. },
  41912. },
  41913. [
  41914. {
  41915. name: "Normal",
  41916. height: math.unit(8 + 2/12, "feet"),
  41917. default: true
  41918. },
  41919. ]
  41920. ))
  41921. characterMakers.push(() => makeCharacter(
  41922. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41923. {
  41924. front: {
  41925. height: math.unit(6.1, "feet"),
  41926. weight: math.unit(180, "lb"),
  41927. name: "Front",
  41928. image: {
  41929. source: "./media/characters/skyress/front.svg",
  41930. extra: 1045/915,
  41931. bottom: 28/1073
  41932. }
  41933. },
  41934. maw: {
  41935. height: math.unit(1, "feet"),
  41936. name: "Maw",
  41937. image: {
  41938. source: "./media/characters/skyress/maw.svg"
  41939. }
  41940. },
  41941. },
  41942. [
  41943. {
  41944. name: "Normal",
  41945. height: math.unit(6.1, "feet"),
  41946. default: true
  41947. },
  41948. {
  41949. name: "Macro",
  41950. height: math.unit(200, "feet")
  41951. },
  41952. ]
  41953. ))
  41954. characterMakers.push(() => makeCharacter(
  41955. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41956. {
  41957. front: {
  41958. height: math.unit(4 + 2/12, "feet"),
  41959. weight: math.unit(40, "kg"),
  41960. name: "Front",
  41961. image: {
  41962. source: "./media/characters/amethyst-jones/front.svg",
  41963. extra: 1220/1150,
  41964. bottom: 101/1321
  41965. }
  41966. },
  41967. },
  41968. [
  41969. {
  41970. name: "Normal",
  41971. height: math.unit(4 + 2/12, "feet"),
  41972. default: true
  41973. },
  41974. ]
  41975. ))
  41976. characterMakers.push(() => makeCharacter(
  41977. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41978. {
  41979. front: {
  41980. height: math.unit(1.7, "m"),
  41981. weight: math.unit(135, "lb"),
  41982. name: "Front",
  41983. image: {
  41984. source: "./media/characters/jade/front.svg",
  41985. extra: 1818/1767,
  41986. bottom: 32/1850
  41987. }
  41988. },
  41989. back: {
  41990. height: math.unit(1.7, "m"),
  41991. weight: math.unit(135, "lb"),
  41992. name: "Back",
  41993. image: {
  41994. source: "./media/characters/jade/back.svg",
  41995. extra: 1869/1809,
  41996. bottom: 35/1904
  41997. }
  41998. },
  41999. hand: {
  42000. height: math.unit(0.24, "m"),
  42001. name: "Hand",
  42002. image: {
  42003. source: "./media/characters/jade/hand.svg"
  42004. }
  42005. },
  42006. foot: {
  42007. height: math.unit(0.263, "m"),
  42008. name: "Foot",
  42009. image: {
  42010. source: "./media/characters/jade/foot.svg"
  42011. }
  42012. },
  42013. dick: {
  42014. height: math.unit(0.47, "m"),
  42015. name: "Dick",
  42016. image: {
  42017. source: "./media/characters/jade/dick.svg"
  42018. }
  42019. },
  42020. },
  42021. [
  42022. {
  42023. name: "Micro",
  42024. height: math.unit(22, "cm")
  42025. },
  42026. {
  42027. name: "Normal",
  42028. height: math.unit(1.7, "m"),
  42029. default: true
  42030. },
  42031. {
  42032. name: "Macro",
  42033. height: math.unit(152, "m")
  42034. },
  42035. ]
  42036. ))
  42037. characterMakers.push(() => makeCharacter(
  42038. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42039. {
  42040. front: {
  42041. height: math.unit(100, "miles"),
  42042. weight: math.unit(20000, "tons"),
  42043. name: "Front",
  42044. image: {
  42045. source: "./media/characters/cookie/front.svg",
  42046. extra: 1125/1070,
  42047. bottom: 30/1155
  42048. }
  42049. },
  42050. },
  42051. [
  42052. {
  42053. name: "Big",
  42054. height: math.unit(50, "feet")
  42055. },
  42056. {
  42057. name: "Macro",
  42058. height: math.unit(100, "miles"),
  42059. default: true
  42060. },
  42061. {
  42062. name: "Megamacro",
  42063. height: math.unit(90000, "miles")
  42064. },
  42065. ]
  42066. ))
  42067. characterMakers.push(() => makeCharacter(
  42068. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42069. {
  42070. front: {
  42071. height: math.unit(6, "feet"),
  42072. weight: math.unit(145, "lb"),
  42073. name: "Front",
  42074. image: {
  42075. source: "./media/characters/farzian/front.svg",
  42076. extra: 1902/1693,
  42077. bottom: 108/2010
  42078. }
  42079. },
  42080. },
  42081. [
  42082. {
  42083. name: "Macro",
  42084. height: math.unit(500, "feet"),
  42085. default: true
  42086. },
  42087. ]
  42088. ))
  42089. characterMakers.push(() => makeCharacter(
  42090. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42091. {
  42092. front: {
  42093. height: math.unit(3 + 6/12, "feet"),
  42094. weight: math.unit(50, "lb"),
  42095. name: "Front",
  42096. image: {
  42097. source: "./media/characters/kimberly-tilson/front.svg",
  42098. extra: 1400/1322,
  42099. bottom: 36/1436
  42100. }
  42101. },
  42102. back: {
  42103. height: math.unit(3 + 6/12, "feet"),
  42104. weight: math.unit(50, "lb"),
  42105. name: "Back",
  42106. image: {
  42107. source: "./media/characters/kimberly-tilson/back.svg",
  42108. extra: 1370/1307,
  42109. bottom: 20/1390
  42110. }
  42111. },
  42112. },
  42113. [
  42114. {
  42115. name: "Normal",
  42116. height: math.unit(3 + 6/12, "feet"),
  42117. default: true
  42118. },
  42119. ]
  42120. ))
  42121. characterMakers.push(() => makeCharacter(
  42122. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42123. {
  42124. front: {
  42125. height: math.unit(1148, "feet"),
  42126. weight: math.unit(34057, "lb"),
  42127. name: "Front",
  42128. image: {
  42129. source: "./media/characters/harthos/front.svg",
  42130. extra: 1391/1339,
  42131. bottom: 13/1404
  42132. }
  42133. },
  42134. },
  42135. [
  42136. {
  42137. name: "Macro",
  42138. height: math.unit(1148, "feet"),
  42139. default: true
  42140. },
  42141. ]
  42142. ))
  42143. characterMakers.push(() => makeCharacter(
  42144. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42145. {
  42146. front: {
  42147. height: math.unit(15, "feet"),
  42148. name: "Front",
  42149. image: {
  42150. source: "./media/characters/hypatia/front.svg",
  42151. extra: 1653/1591,
  42152. bottom: 79/1732
  42153. }
  42154. },
  42155. },
  42156. [
  42157. {
  42158. name: "Normal",
  42159. height: math.unit(15, "feet")
  42160. },
  42161. {
  42162. name: "Small",
  42163. height: math.unit(300, "feet")
  42164. },
  42165. {
  42166. name: "Macro",
  42167. height: math.unit(2500, "feet"),
  42168. default: true
  42169. },
  42170. {
  42171. name: "Mega Macro",
  42172. height: math.unit(1500, "miles")
  42173. },
  42174. {
  42175. name: "Giga Macro",
  42176. height: math.unit(1.5e6, "miles")
  42177. },
  42178. ]
  42179. ))
  42180. characterMakers.push(() => makeCharacter(
  42181. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42182. {
  42183. front: {
  42184. height: math.unit(6, "feet"),
  42185. weight: math.unit(200, "lb"),
  42186. name: "Front",
  42187. image: {
  42188. source: "./media/characters/wulver/front.svg",
  42189. extra: 1724/1632,
  42190. bottom: 130/1854
  42191. }
  42192. },
  42193. frontNsfw: {
  42194. height: math.unit(6, "feet"),
  42195. weight: math.unit(200, "lb"),
  42196. name: "Front (NSFW)",
  42197. image: {
  42198. source: "./media/characters/wulver/front-nsfw.svg",
  42199. extra: 1724/1632,
  42200. bottom: 130/1854
  42201. }
  42202. },
  42203. },
  42204. [
  42205. {
  42206. name: "Human-Sized",
  42207. height: math.unit(6, "feet")
  42208. },
  42209. {
  42210. name: "Normal",
  42211. height: math.unit(4, "meters"),
  42212. default: true
  42213. },
  42214. {
  42215. name: "Large",
  42216. height: math.unit(6, "m")
  42217. },
  42218. ]
  42219. ))
  42220. characterMakers.push(() => makeCharacter(
  42221. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42222. {
  42223. front: {
  42224. height: math.unit(7, "feet"),
  42225. name: "Front",
  42226. image: {
  42227. source: "./media/characters/maru/front.svg",
  42228. extra: 1595/1570,
  42229. bottom: 0/1595
  42230. }
  42231. },
  42232. },
  42233. [
  42234. {
  42235. name: "Normal",
  42236. height: math.unit(7, "feet"),
  42237. default: true
  42238. },
  42239. {
  42240. name: "Macro",
  42241. height: math.unit(700, "feet")
  42242. },
  42243. {
  42244. name: "Mega Macro",
  42245. height: math.unit(25, "miles")
  42246. },
  42247. ]
  42248. ))
  42249. characterMakers.push(() => makeCharacter(
  42250. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42251. {
  42252. front: {
  42253. height: math.unit(6, "feet"),
  42254. weight: math.unit(170, "lb"),
  42255. name: "Front",
  42256. image: {
  42257. source: "./media/characters/xenon/front.svg",
  42258. extra: 1376/1305,
  42259. bottom: 56/1432
  42260. }
  42261. },
  42262. back: {
  42263. height: math.unit(6, "feet"),
  42264. weight: math.unit(170, "lb"),
  42265. name: "Back",
  42266. image: {
  42267. source: "./media/characters/xenon/back.svg",
  42268. extra: 1328/1259,
  42269. bottom: 95/1423
  42270. }
  42271. },
  42272. maw: {
  42273. height: math.unit(0.52, "feet"),
  42274. name: "Maw",
  42275. image: {
  42276. source: "./media/characters/xenon/maw.svg"
  42277. }
  42278. },
  42279. handLeft: {
  42280. height: math.unit(0.82 * 169 / 153, "feet"),
  42281. name: "Hand (Left)",
  42282. image: {
  42283. source: "./media/characters/xenon/hand-left.svg"
  42284. }
  42285. },
  42286. handRight: {
  42287. height: math.unit(0.82, "feet"),
  42288. name: "Hand (Right)",
  42289. image: {
  42290. source: "./media/characters/xenon/hand-right.svg"
  42291. }
  42292. },
  42293. footLeft: {
  42294. height: math.unit(1.13, "feet"),
  42295. name: "Foot (Left)",
  42296. image: {
  42297. source: "./media/characters/xenon/foot-left.svg"
  42298. }
  42299. },
  42300. footRight: {
  42301. height: math.unit(1.13 * 194 / 196, "feet"),
  42302. name: "Foot (Right)",
  42303. image: {
  42304. source: "./media/characters/xenon/foot-right.svg"
  42305. }
  42306. },
  42307. },
  42308. [
  42309. {
  42310. name: "Micro",
  42311. height: math.unit(0.8, "inches")
  42312. },
  42313. {
  42314. name: "Normal",
  42315. height: math.unit(6, "feet")
  42316. },
  42317. {
  42318. name: "Macro",
  42319. height: math.unit(50, "feet"),
  42320. default: true
  42321. },
  42322. {
  42323. name: "Macro+",
  42324. height: math.unit(250, "feet")
  42325. },
  42326. {
  42327. name: "Megamacro",
  42328. height: math.unit(1500, "feet")
  42329. },
  42330. ]
  42331. ))
  42332. characterMakers.push(() => makeCharacter(
  42333. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42334. {
  42335. front: {
  42336. height: math.unit(7 + 5/12, "feet"),
  42337. name: "Front",
  42338. image: {
  42339. source: "./media/characters/zane/front.svg",
  42340. extra: 1260/1203,
  42341. bottom: 94/1354
  42342. }
  42343. },
  42344. back: {
  42345. height: math.unit(5.05, "feet"),
  42346. name: "Back",
  42347. image: {
  42348. source: "./media/characters/zane/back.svg",
  42349. extra: 893/829,
  42350. bottom: 30/923
  42351. }
  42352. },
  42353. werewolf: {
  42354. height: math.unit(11, "feet"),
  42355. name: "Werewolf",
  42356. image: {
  42357. source: "./media/characters/zane/werewolf.svg",
  42358. extra: 1383/1323,
  42359. bottom: 89/1472
  42360. }
  42361. },
  42362. foot: {
  42363. height: math.unit(1.46, "feet"),
  42364. name: "Foot",
  42365. image: {
  42366. source: "./media/characters/zane/foot.svg"
  42367. }
  42368. },
  42369. footFront: {
  42370. height: math.unit(0.784, "feet"),
  42371. name: "Foot (Front)",
  42372. image: {
  42373. source: "./media/characters/zane/foot-front.svg"
  42374. }
  42375. },
  42376. dick: {
  42377. height: math.unit(1.95, "feet"),
  42378. name: "Dick",
  42379. image: {
  42380. source: "./media/characters/zane/dick.svg"
  42381. }
  42382. },
  42383. dickWerewolf: {
  42384. height: math.unit(3.77, "feet"),
  42385. name: "Dick (Werewolf)",
  42386. image: {
  42387. source: "./media/characters/zane/dick.svg"
  42388. }
  42389. },
  42390. },
  42391. [
  42392. {
  42393. name: "Normal",
  42394. height: math.unit(7 + 5/12, "feet"),
  42395. default: true
  42396. },
  42397. ]
  42398. ))
  42399. characterMakers.push(() => makeCharacter(
  42400. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42401. {
  42402. front: {
  42403. height: math.unit(6 + 2/12, "feet"),
  42404. weight: math.unit(284, "lb"),
  42405. name: "Front",
  42406. image: {
  42407. source: "./media/characters/benni-desparque/front.svg",
  42408. extra: 1353/1126,
  42409. bottom: 69/1422
  42410. }
  42411. },
  42412. },
  42413. [
  42414. {
  42415. name: "Civilian",
  42416. height: math.unit(6 + 2/12, "feet")
  42417. },
  42418. {
  42419. name: "Normal",
  42420. height: math.unit(98, "feet"),
  42421. default: true
  42422. },
  42423. {
  42424. name: "Kaiju Fighter",
  42425. height: math.unit(268, "feet")
  42426. },
  42427. ]
  42428. ))
  42429. characterMakers.push(() => makeCharacter(
  42430. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42431. {
  42432. front: {
  42433. height: math.unit(5, "feet"),
  42434. weight: math.unit(105, "lb"),
  42435. name: "Front",
  42436. image: {
  42437. source: "./media/characters/maxine/front.svg",
  42438. extra: 1386/1250,
  42439. bottom: 71/1457
  42440. }
  42441. },
  42442. },
  42443. [
  42444. {
  42445. name: "Normal",
  42446. height: math.unit(5, "feet"),
  42447. default: true
  42448. },
  42449. ]
  42450. ))
  42451. characterMakers.push(() => makeCharacter(
  42452. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42453. {
  42454. front: {
  42455. height: math.unit(11 + 7/12, "feet"),
  42456. weight: math.unit(9576, "lb"),
  42457. name: "Front",
  42458. image: {
  42459. source: "./media/characters/scaly/front.svg",
  42460. extra: 888/867,
  42461. bottom: 36/924
  42462. }
  42463. },
  42464. },
  42465. [
  42466. {
  42467. name: "Normal",
  42468. height: math.unit(11 + 7/12, "feet"),
  42469. default: true
  42470. },
  42471. ]
  42472. ))
  42473. characterMakers.push(() => makeCharacter(
  42474. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42475. {
  42476. front: {
  42477. height: math.unit(6 + 3/12, "feet"),
  42478. name: "Front",
  42479. image: {
  42480. source: "./media/characters/saelria/front.svg",
  42481. extra: 1243/1138,
  42482. bottom: 46/1289
  42483. }
  42484. },
  42485. },
  42486. [
  42487. {
  42488. name: "Micro",
  42489. height: math.unit(6, "inches"),
  42490. },
  42491. {
  42492. name: "Normal",
  42493. height: math.unit(6 + 3/12, "feet"),
  42494. default: true
  42495. },
  42496. {
  42497. name: "Macro",
  42498. height: math.unit(25, "feet")
  42499. },
  42500. ]
  42501. ))
  42502. characterMakers.push(() => makeCharacter(
  42503. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42504. {
  42505. front: {
  42506. height: math.unit(80, "meters"),
  42507. weight: math.unit(7000, "tonnes"),
  42508. name: "Front",
  42509. image: {
  42510. source: "./media/characters/tef/front.svg",
  42511. extra: 2036/1991,
  42512. bottom: 54/2090
  42513. }
  42514. },
  42515. back: {
  42516. height: math.unit(80, "meters"),
  42517. weight: math.unit(7000, "tonnes"),
  42518. name: "Back",
  42519. image: {
  42520. source: "./media/characters/tef/back.svg",
  42521. extra: 2036/1991,
  42522. bottom: 54/2090
  42523. }
  42524. },
  42525. },
  42526. [
  42527. {
  42528. name: "Macro",
  42529. height: math.unit(80, "meters"),
  42530. default: true
  42531. },
  42532. ]
  42533. ))
  42534. characterMakers.push(() => makeCharacter(
  42535. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42536. {
  42537. front: {
  42538. height: math.unit(13, "feet"),
  42539. weight: math.unit(6, "tons"),
  42540. name: "Front",
  42541. image: {
  42542. source: "./media/characters/rover/front.svg",
  42543. extra: 1233/1156,
  42544. bottom: 50/1283
  42545. }
  42546. },
  42547. back: {
  42548. height: math.unit(13, "feet"),
  42549. weight: math.unit(6, "tons"),
  42550. name: "Back",
  42551. image: {
  42552. source: "./media/characters/rover/back.svg",
  42553. extra: 1327/1258,
  42554. bottom: 39/1366
  42555. }
  42556. },
  42557. },
  42558. [
  42559. {
  42560. name: "Normal",
  42561. height: math.unit(13, "feet"),
  42562. default: true
  42563. },
  42564. {
  42565. name: "Macro",
  42566. height: math.unit(1300, "feet")
  42567. },
  42568. {
  42569. name: "Megamacro",
  42570. height: math.unit(1300, "miles")
  42571. },
  42572. {
  42573. name: "Gigamacro",
  42574. height: math.unit(1300000, "miles")
  42575. },
  42576. ]
  42577. ))
  42578. characterMakers.push(() => makeCharacter(
  42579. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42580. {
  42581. front: {
  42582. height: math.unit(6, "feet"),
  42583. weight: math.unit(150, "lb"),
  42584. name: "Front",
  42585. image: {
  42586. source: "./media/characters/ariz/front.svg",
  42587. extra: 1401/1346,
  42588. bottom: 5/1406
  42589. }
  42590. },
  42591. },
  42592. [
  42593. {
  42594. name: "Normal",
  42595. height: math.unit(10, "feet"),
  42596. default: true
  42597. },
  42598. ]
  42599. ))
  42600. characterMakers.push(() => makeCharacter(
  42601. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42602. {
  42603. front: {
  42604. height: math.unit(6, "feet"),
  42605. weight: math.unit(140, "lb"),
  42606. name: "Front",
  42607. image: {
  42608. source: "./media/characters/sigrun/front.svg",
  42609. extra: 1418/1359,
  42610. bottom: 27/1445
  42611. }
  42612. },
  42613. },
  42614. [
  42615. {
  42616. name: "Macro",
  42617. height: math.unit(35, "feet"),
  42618. default: true
  42619. },
  42620. ]
  42621. ))
  42622. characterMakers.push(() => makeCharacter(
  42623. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42624. {
  42625. front: {
  42626. height: math.unit(6, "feet"),
  42627. weight: math.unit(150, "lb"),
  42628. name: "Front",
  42629. image: {
  42630. source: "./media/characters/numin/front.svg",
  42631. extra: 1433/1388,
  42632. bottom: 12/1445
  42633. }
  42634. },
  42635. },
  42636. [
  42637. {
  42638. name: "Macro",
  42639. height: math.unit(21.5, "km"),
  42640. default: true
  42641. },
  42642. ]
  42643. ))
  42644. characterMakers.push(() => makeCharacter(
  42645. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42646. {
  42647. front: {
  42648. height: math.unit(6, "feet"),
  42649. weight: math.unit(463, "lb"),
  42650. name: "Front",
  42651. image: {
  42652. source: "./media/characters/melwa/front.svg",
  42653. extra: 1307/1248,
  42654. bottom: 93/1400
  42655. }
  42656. },
  42657. },
  42658. [
  42659. {
  42660. name: "Macro",
  42661. height: math.unit(50, "meters"),
  42662. default: true
  42663. },
  42664. ]
  42665. ))
  42666. characterMakers.push(() => makeCharacter(
  42667. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42668. {
  42669. front: {
  42670. height: math.unit(325, "feet"),
  42671. name: "Front",
  42672. image: {
  42673. source: "./media/characters/zorkaiju/front.svg",
  42674. extra: 1955/1814,
  42675. bottom: 40/1995
  42676. }
  42677. },
  42678. frontExtended: {
  42679. height: math.unit(325, "feet"),
  42680. name: "Front (Extended)",
  42681. image: {
  42682. source: "./media/characters/zorkaiju/front-extended.svg",
  42683. extra: 1955/1814,
  42684. bottom: 40/1995
  42685. }
  42686. },
  42687. side: {
  42688. height: math.unit(325, "feet"),
  42689. name: "Side",
  42690. image: {
  42691. source: "./media/characters/zorkaiju/side.svg",
  42692. extra: 1495/1396,
  42693. bottom: 17/1512
  42694. }
  42695. },
  42696. sideExtended: {
  42697. height: math.unit(325, "feet"),
  42698. name: "Side (Extended)",
  42699. image: {
  42700. source: "./media/characters/zorkaiju/side-extended.svg",
  42701. extra: 1495/1396,
  42702. bottom: 17/1512
  42703. }
  42704. },
  42705. back: {
  42706. height: math.unit(325, "feet"),
  42707. name: "Back",
  42708. image: {
  42709. source: "./media/characters/zorkaiju/back.svg",
  42710. extra: 1959/1821,
  42711. bottom: 31/1990
  42712. }
  42713. },
  42714. backExtended: {
  42715. height: math.unit(325, "feet"),
  42716. name: "Back (Extended)",
  42717. image: {
  42718. source: "./media/characters/zorkaiju/back-extended.svg",
  42719. extra: 1959/1821,
  42720. bottom: 31/1990
  42721. }
  42722. },
  42723. hand: {
  42724. height: math.unit(58.4, "feet"),
  42725. name: "Hand",
  42726. image: {
  42727. source: "./media/characters/zorkaiju/hand.svg"
  42728. }
  42729. },
  42730. handExtended: {
  42731. height: math.unit(61.4, "feet"),
  42732. name: "Hand (Extended)",
  42733. image: {
  42734. source: "./media/characters/zorkaiju/hand-extended.svg"
  42735. }
  42736. },
  42737. foot: {
  42738. height: math.unit(95, "feet"),
  42739. name: "Foot",
  42740. image: {
  42741. source: "./media/characters/zorkaiju/foot.svg"
  42742. }
  42743. },
  42744. leftArm: {
  42745. height: math.unit(59, "feet"),
  42746. name: "Left Arm",
  42747. image: {
  42748. source: "./media/characters/zorkaiju/left-arm.svg"
  42749. }
  42750. },
  42751. rightArm: {
  42752. height: math.unit(59, "feet"),
  42753. name: "Right Arm",
  42754. image: {
  42755. source: "./media/characters/zorkaiju/right-arm.svg"
  42756. }
  42757. },
  42758. leftArmExtended: {
  42759. height: math.unit(59 * 1.033546, "feet"),
  42760. name: "Left Arm (Extended)",
  42761. image: {
  42762. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42763. }
  42764. },
  42765. rightArmExtended: {
  42766. height: math.unit(59 * 1.0496, "feet"),
  42767. name: "Right Arm (Extended)",
  42768. image: {
  42769. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42770. }
  42771. },
  42772. tail: {
  42773. height: math.unit(104, "feet"),
  42774. name: "Tail",
  42775. image: {
  42776. source: "./media/characters/zorkaiju/tail.svg"
  42777. }
  42778. },
  42779. tailExtended: {
  42780. height: math.unit(104, "feet"),
  42781. name: "Tail (Extended)",
  42782. image: {
  42783. source: "./media/characters/zorkaiju/tail-extended.svg"
  42784. }
  42785. },
  42786. tailBottom: {
  42787. height: math.unit(104, "feet"),
  42788. name: "Tail Bottom",
  42789. image: {
  42790. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42791. }
  42792. },
  42793. crystal: {
  42794. height: math.unit(27.54, "feet"),
  42795. name: "Crystal",
  42796. image: {
  42797. source: "./media/characters/zorkaiju/crystal.svg"
  42798. }
  42799. },
  42800. },
  42801. [
  42802. {
  42803. name: "Kaiju",
  42804. height: math.unit(325, "feet"),
  42805. default: true
  42806. },
  42807. ]
  42808. ))
  42809. characterMakers.push(() => makeCharacter(
  42810. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42811. {
  42812. front: {
  42813. height: math.unit(6 + 1/12, "feet"),
  42814. weight: math.unit(115, "lb"),
  42815. name: "Front",
  42816. image: {
  42817. source: "./media/characters/bailey-belfry/front.svg",
  42818. extra: 1240/1121,
  42819. bottom: 101/1341
  42820. }
  42821. },
  42822. },
  42823. [
  42824. {
  42825. name: "Normal",
  42826. height: math.unit(6 + 1/12, "feet"),
  42827. default: true
  42828. },
  42829. ]
  42830. ))
  42831. characterMakers.push(() => makeCharacter(
  42832. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42833. {
  42834. side: {
  42835. height: math.unit(4, "meters"),
  42836. weight: math.unit(250, "kg"),
  42837. name: "Side",
  42838. image: {
  42839. source: "./media/characters/blacky/side.svg",
  42840. extra: 1027/919,
  42841. bottom: 43/1070
  42842. }
  42843. },
  42844. maw: {
  42845. height: math.unit(1, "meters"),
  42846. name: "Maw",
  42847. image: {
  42848. source: "./media/characters/blacky/maw.svg"
  42849. }
  42850. },
  42851. paw: {
  42852. height: math.unit(1, "meters"),
  42853. name: "Paw",
  42854. image: {
  42855. source: "./media/characters/blacky/paw.svg"
  42856. }
  42857. },
  42858. },
  42859. [
  42860. {
  42861. name: "Normal",
  42862. height: math.unit(4, "meters"),
  42863. default: true
  42864. },
  42865. ]
  42866. ))
  42867. characterMakers.push(() => makeCharacter(
  42868. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42869. {
  42870. front: {
  42871. height: math.unit(170, "cm"),
  42872. weight: math.unit(66, "kg"),
  42873. name: "Front",
  42874. image: {
  42875. source: "./media/characters/thux-ei/front.svg",
  42876. extra: 1109/1011,
  42877. bottom: 8/1117
  42878. }
  42879. },
  42880. },
  42881. [
  42882. {
  42883. name: "Normal",
  42884. height: math.unit(170, "cm"),
  42885. default: true
  42886. },
  42887. ]
  42888. ))
  42889. characterMakers.push(() => makeCharacter(
  42890. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42891. {
  42892. front: {
  42893. height: math.unit(5, "feet"),
  42894. weight: math.unit(120, "lb"),
  42895. name: "Front",
  42896. image: {
  42897. source: "./media/characters/roxanne-voltaire/front.svg",
  42898. extra: 1901/1779,
  42899. bottom: 53/1954
  42900. }
  42901. },
  42902. },
  42903. [
  42904. {
  42905. name: "Normal",
  42906. height: math.unit(5, "feet"),
  42907. default: true
  42908. },
  42909. {
  42910. name: "Giant",
  42911. height: math.unit(50, "feet")
  42912. },
  42913. {
  42914. name: "Titan",
  42915. height: math.unit(500, "feet")
  42916. },
  42917. {
  42918. name: "Macro",
  42919. height: math.unit(5000, "feet")
  42920. },
  42921. {
  42922. name: "Megamacro",
  42923. height: math.unit(50000, "feet")
  42924. },
  42925. {
  42926. name: "Gigamacro",
  42927. height: math.unit(500000, "feet")
  42928. },
  42929. {
  42930. name: "Teramacro",
  42931. height: math.unit(5e6, "feet")
  42932. },
  42933. ]
  42934. ))
  42935. characterMakers.push(() => makeCharacter(
  42936. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42937. {
  42938. front: {
  42939. height: math.unit(6 + 2/12, "feet"),
  42940. name: "Front",
  42941. image: {
  42942. source: "./media/characters/squeaks/front.svg",
  42943. extra: 1823/1768,
  42944. bottom: 138/1961
  42945. }
  42946. },
  42947. },
  42948. [
  42949. {
  42950. name: "Micro",
  42951. height: math.unit(0.5, "inches")
  42952. },
  42953. {
  42954. name: "Normal",
  42955. height: math.unit(6 + 2/12, "feet"),
  42956. default: true
  42957. },
  42958. {
  42959. name: "Macro",
  42960. height: math.unit(600, "feet")
  42961. },
  42962. ]
  42963. ))
  42964. characterMakers.push(() => makeCharacter(
  42965. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42966. {
  42967. front: {
  42968. height: math.unit(1.72, "meters"),
  42969. name: "Front",
  42970. image: {
  42971. source: "./media/characters/archinger/front.svg",
  42972. extra: 1861/1675,
  42973. bottom: 125/1986
  42974. }
  42975. },
  42976. back: {
  42977. height: math.unit(1.72, "meters"),
  42978. name: "Back",
  42979. image: {
  42980. source: "./media/characters/archinger/back.svg",
  42981. extra: 1844/1701,
  42982. bottom: 104/1948
  42983. }
  42984. },
  42985. cock: {
  42986. height: math.unit(0.59, "feet"),
  42987. name: "Cock",
  42988. image: {
  42989. source: "./media/characters/archinger/cock.svg"
  42990. }
  42991. },
  42992. },
  42993. [
  42994. {
  42995. name: "Normal",
  42996. height: math.unit(1.72, "meters"),
  42997. default: true
  42998. },
  42999. {
  43000. name: "Macro",
  43001. height: math.unit(84, "meters")
  43002. },
  43003. {
  43004. name: "Macro+",
  43005. height: math.unit(112, "meters")
  43006. },
  43007. {
  43008. name: "Macro++",
  43009. height: math.unit(960, "meters")
  43010. },
  43011. {
  43012. name: "Macro+++",
  43013. height: math.unit(4, "km")
  43014. },
  43015. {
  43016. name: "Macro++++",
  43017. height: math.unit(48, "km")
  43018. },
  43019. {
  43020. name: "Macro+++++",
  43021. height: math.unit(4500, "km")
  43022. },
  43023. ]
  43024. ))
  43025. characterMakers.push(() => makeCharacter(
  43026. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43027. {
  43028. front: {
  43029. height: math.unit(5 + 5/12, "feet"),
  43030. name: "Front",
  43031. image: {
  43032. source: "./media/characters/alsnapz/front.svg",
  43033. extra: 1157/1065,
  43034. bottom: 42/1199
  43035. }
  43036. },
  43037. },
  43038. [
  43039. {
  43040. name: "Normal",
  43041. height: math.unit(5 + 5/12, "feet"),
  43042. default: true
  43043. },
  43044. ]
  43045. ))
  43046. characterMakers.push(() => makeCharacter(
  43047. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43048. {
  43049. side: {
  43050. height: math.unit(3.2, "earths"),
  43051. name: "Side",
  43052. image: {
  43053. source: "./media/characters/mag/side.svg",
  43054. extra: 1331/1008,
  43055. bottom: 52/1383
  43056. }
  43057. },
  43058. wing: {
  43059. height: math.unit(1.94, "earths"),
  43060. name: "Wing",
  43061. image: {
  43062. source: "./media/characters/mag/wing.svg"
  43063. }
  43064. },
  43065. dick: {
  43066. height: math.unit(1.8, "earths"),
  43067. name: "Dick",
  43068. image: {
  43069. source: "./media/characters/mag/dick.svg"
  43070. }
  43071. },
  43072. ass: {
  43073. height: math.unit(1.33, "earths"),
  43074. name: "Ass",
  43075. image: {
  43076. source: "./media/characters/mag/ass.svg"
  43077. }
  43078. },
  43079. head: {
  43080. height: math.unit(1.1, "earths"),
  43081. name: "Head",
  43082. image: {
  43083. source: "./media/characters/mag/head.svg"
  43084. }
  43085. },
  43086. maw: {
  43087. height: math.unit(1.62, "earths"),
  43088. name: "Maw",
  43089. image: {
  43090. source: "./media/characters/mag/maw.svg"
  43091. }
  43092. },
  43093. },
  43094. [
  43095. {
  43096. name: "Small",
  43097. height: math.unit(162, "feet")
  43098. },
  43099. {
  43100. name: "Normal",
  43101. height: math.unit(3.2, "earths"),
  43102. default: true
  43103. },
  43104. ]
  43105. ))
  43106. characterMakers.push(() => makeCharacter(
  43107. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43108. {
  43109. front: {
  43110. height: math.unit(512, "feet"),
  43111. weight: math.unit(63509, "tonnes"),
  43112. name: "Front",
  43113. image: {
  43114. source: "./media/characters/vorrel-harroc/front.svg",
  43115. extra: 1075/1063,
  43116. bottom: 62/1137
  43117. }
  43118. },
  43119. },
  43120. [
  43121. {
  43122. name: "Normal",
  43123. height: math.unit(10, "feet")
  43124. },
  43125. {
  43126. name: "Macro",
  43127. height: math.unit(512, "feet"),
  43128. default: true
  43129. },
  43130. {
  43131. name: "Megamacro",
  43132. height: math.unit(256, "miles")
  43133. },
  43134. {
  43135. name: "Gigamacro",
  43136. height: math.unit(4096, "miles")
  43137. },
  43138. ]
  43139. ))
  43140. characterMakers.push(() => makeCharacter(
  43141. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43142. {
  43143. side: {
  43144. height: math.unit(50, "feet"),
  43145. name: "Side",
  43146. image: {
  43147. source: "./media/characters/froimar/side.svg",
  43148. extra: 855/638,
  43149. bottom: 99/954
  43150. }
  43151. },
  43152. },
  43153. [
  43154. {
  43155. name: "Macro",
  43156. height: math.unit(50, "feet"),
  43157. default: true
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43163. {
  43164. front: {
  43165. height: math.unit(210, "miles"),
  43166. name: "Front",
  43167. image: {
  43168. source: "./media/characters/timothy/front.svg",
  43169. extra: 1007/943,
  43170. bottom: 62/1069
  43171. }
  43172. },
  43173. frontSkirt: {
  43174. height: math.unit(210, "miles"),
  43175. name: "Front (Skirt)",
  43176. image: {
  43177. source: "./media/characters/timothy/front-skirt.svg",
  43178. extra: 1007/943,
  43179. bottom: 62/1069
  43180. }
  43181. },
  43182. frontCoat: {
  43183. height: math.unit(210, "miles"),
  43184. name: "Front (Coat)",
  43185. image: {
  43186. source: "./media/characters/timothy/front-coat.svg",
  43187. extra: 1007/943,
  43188. bottom: 62/1069
  43189. }
  43190. },
  43191. },
  43192. [
  43193. {
  43194. name: "Macro",
  43195. height: math.unit(210, "miles"),
  43196. default: true
  43197. },
  43198. {
  43199. name: "Megamacro",
  43200. height: math.unit(210000, "miles")
  43201. },
  43202. ]
  43203. ))
  43204. characterMakers.push(() => makeCharacter(
  43205. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43206. {
  43207. front: {
  43208. height: math.unit(188, "feet"),
  43209. name: "Front",
  43210. image: {
  43211. source: "./media/characters/pyotr/front.svg",
  43212. extra: 1912/1826,
  43213. bottom: 18/1930
  43214. }
  43215. },
  43216. },
  43217. [
  43218. {
  43219. name: "Macro",
  43220. height: math.unit(188, "feet"),
  43221. default: true
  43222. },
  43223. {
  43224. name: "Megamacro",
  43225. height: math.unit(8, "miles")
  43226. },
  43227. ]
  43228. ))
  43229. characterMakers.push(() => makeCharacter(
  43230. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43231. {
  43232. side: {
  43233. height: math.unit(10, "feet"),
  43234. weight: math.unit(4500, "lb"),
  43235. name: "Side",
  43236. image: {
  43237. source: "./media/characters/ackart/side.svg",
  43238. extra: 1776/1668,
  43239. bottom: 116/1892
  43240. }
  43241. },
  43242. },
  43243. [
  43244. {
  43245. name: "Normal",
  43246. height: math.unit(10, "feet"),
  43247. default: true
  43248. },
  43249. ]
  43250. ))
  43251. characterMakers.push(() => makeCharacter(
  43252. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43253. {
  43254. side: {
  43255. height: math.unit(21, "feet"),
  43256. name: "Side",
  43257. image: {
  43258. source: "./media/characters/nolow/side.svg",
  43259. extra: 1484/1434,
  43260. bottom: 85/1569
  43261. }
  43262. },
  43263. sideErect: {
  43264. height: math.unit(21, "feet"),
  43265. name: "Side-erect",
  43266. image: {
  43267. source: "./media/characters/nolow/side-erect.svg",
  43268. extra: 1484/1434,
  43269. bottom: 85/1569
  43270. }
  43271. },
  43272. },
  43273. [
  43274. {
  43275. name: "Regular",
  43276. height: math.unit(12, "feet")
  43277. },
  43278. {
  43279. name: "Big Chee",
  43280. height: math.unit(21, "feet"),
  43281. default: true
  43282. },
  43283. ]
  43284. ))
  43285. characterMakers.push(() => makeCharacter(
  43286. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43287. {
  43288. front: {
  43289. height: math.unit(7, "feet"),
  43290. weight: math.unit(250, "lb"),
  43291. name: "Front",
  43292. image: {
  43293. source: "./media/characters/nines/front.svg",
  43294. extra: 1741/1607,
  43295. bottom: 41/1782
  43296. }
  43297. },
  43298. side: {
  43299. height: math.unit(7, "feet"),
  43300. weight: math.unit(250, "lb"),
  43301. name: "Side",
  43302. image: {
  43303. source: "./media/characters/nines/side.svg",
  43304. extra: 1854/1735,
  43305. bottom: 93/1947
  43306. }
  43307. },
  43308. back: {
  43309. height: math.unit(7, "feet"),
  43310. weight: math.unit(250, "lb"),
  43311. name: "Back",
  43312. image: {
  43313. source: "./media/characters/nines/back.svg",
  43314. extra: 1748/1615,
  43315. bottom: 20/1768
  43316. }
  43317. },
  43318. },
  43319. [
  43320. {
  43321. name: "Megamacro",
  43322. height: math.unit(99, "km"),
  43323. default: true
  43324. },
  43325. ]
  43326. ))
  43327. characterMakers.push(() => makeCharacter(
  43328. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43329. {
  43330. front: {
  43331. height: math.unit(5 + 10/12, "feet"),
  43332. weight: math.unit(210, "lb"),
  43333. name: "Front",
  43334. image: {
  43335. source: "./media/characters/zenith/front.svg",
  43336. extra: 1531/1452,
  43337. bottom: 198/1729
  43338. }
  43339. },
  43340. back: {
  43341. height: math.unit(5 + 10/12, "feet"),
  43342. weight: math.unit(210, "lb"),
  43343. name: "Back",
  43344. image: {
  43345. source: "./media/characters/zenith/back.svg",
  43346. extra: 1571/1487,
  43347. bottom: 75/1646
  43348. }
  43349. },
  43350. },
  43351. [
  43352. {
  43353. name: "Normal",
  43354. height: math.unit(5 + 10/12, "feet"),
  43355. default: true
  43356. }
  43357. ]
  43358. ))
  43359. characterMakers.push(() => makeCharacter(
  43360. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43361. {
  43362. front: {
  43363. height: math.unit(4, "feet"),
  43364. weight: math.unit(60, "lb"),
  43365. name: "Front",
  43366. image: {
  43367. source: "./media/characters/jasper/front.svg",
  43368. extra: 1450/1379,
  43369. bottom: 19/1469
  43370. }
  43371. },
  43372. },
  43373. [
  43374. {
  43375. name: "Normal",
  43376. height: math.unit(4, "feet"),
  43377. default: true
  43378. },
  43379. ]
  43380. ))
  43381. characterMakers.push(() => makeCharacter(
  43382. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43383. {
  43384. front: {
  43385. height: math.unit(6 + 5/12, "feet"),
  43386. weight: math.unit(290, "lb"),
  43387. name: "Front",
  43388. image: {
  43389. source: "./media/characters/tiberius-thyben/front.svg",
  43390. extra: 757/739,
  43391. bottom: 39/796
  43392. }
  43393. },
  43394. },
  43395. [
  43396. {
  43397. name: "Micro",
  43398. height: math.unit(1.5, "inches")
  43399. },
  43400. {
  43401. name: "Normal",
  43402. height: math.unit(6 + 5/12, "feet"),
  43403. default: true
  43404. },
  43405. {
  43406. name: "Macro",
  43407. height: math.unit(300, "feet")
  43408. },
  43409. ]
  43410. ))
  43411. characterMakers.push(() => makeCharacter(
  43412. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43413. {
  43414. front: {
  43415. height: math.unit(5 + 6/12, "feet"),
  43416. weight: math.unit(60, "kg"),
  43417. name: "Front",
  43418. image: {
  43419. source: "./media/characters/sabre/front.svg",
  43420. extra: 738/671,
  43421. bottom: 27/765
  43422. }
  43423. },
  43424. },
  43425. [
  43426. {
  43427. name: "Teeny",
  43428. height: math.unit(2, "inches")
  43429. },
  43430. {
  43431. name: "Smol",
  43432. height: math.unit(8, "inches")
  43433. },
  43434. {
  43435. name: "Normal",
  43436. height: math.unit(5 + 6/12, "feet"),
  43437. default: true
  43438. },
  43439. {
  43440. name: "Mini-Macro",
  43441. height: math.unit(15, "feet")
  43442. },
  43443. {
  43444. name: "Macro",
  43445. height: math.unit(50, "feet")
  43446. },
  43447. ]
  43448. ))
  43449. characterMakers.push(() => makeCharacter(
  43450. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43451. {
  43452. front: {
  43453. height: math.unit(6 + 4/12, "feet"),
  43454. weight: math.unit(170, "lb"),
  43455. name: "Front",
  43456. image: {
  43457. source: "./media/characters/charlie/front.svg",
  43458. extra: 1348/1228,
  43459. bottom: 15/1363
  43460. }
  43461. },
  43462. },
  43463. [
  43464. {
  43465. name: "Macro",
  43466. height: math.unit(1700, "meters"),
  43467. default: true
  43468. },
  43469. {
  43470. name: "MegaMacro",
  43471. height: math.unit(20400, "meters")
  43472. },
  43473. ]
  43474. ))
  43475. characterMakers.push(() => makeCharacter(
  43476. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43477. {
  43478. front: {
  43479. height: math.unit(6 + 3/12, "feet"),
  43480. weight: math.unit(185, "lb"),
  43481. name: "Front",
  43482. image: {
  43483. source: "./media/characters/susan-grant/front.svg",
  43484. extra: 1351/1327,
  43485. bottom: 26/1377
  43486. }
  43487. },
  43488. },
  43489. [
  43490. {
  43491. name: "Normal",
  43492. height: math.unit(6 + 3/12, "feet"),
  43493. default: true
  43494. },
  43495. {
  43496. name: "Macro",
  43497. height: math.unit(225, "feet")
  43498. },
  43499. {
  43500. name: "Macro+",
  43501. height: math.unit(900, "feet")
  43502. },
  43503. {
  43504. name: "MegaMacro",
  43505. height: math.unit(14400, "feet")
  43506. },
  43507. ]
  43508. ))
  43509. characterMakers.push(() => makeCharacter(
  43510. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43511. {
  43512. front: {
  43513. height: math.unit(5 + 4/12, "feet"),
  43514. weight: math.unit(110, "lb"),
  43515. name: "Front",
  43516. image: {
  43517. source: "./media/characters/axel-isanov/front.svg",
  43518. extra: 1096/1065,
  43519. bottom: 13/1109
  43520. }
  43521. },
  43522. },
  43523. [
  43524. {
  43525. name: "Normal",
  43526. height: math.unit(5 + 4/12, "feet"),
  43527. default: true
  43528. },
  43529. ]
  43530. ))
  43531. characterMakers.push(() => makeCharacter(
  43532. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43533. {
  43534. front: {
  43535. height: math.unit(9, "feet"),
  43536. weight: math.unit(467, "lb"),
  43537. name: "Front",
  43538. image: {
  43539. source: "./media/characters/necahual/front.svg",
  43540. extra: 920/873,
  43541. bottom: 26/946
  43542. }
  43543. },
  43544. back: {
  43545. height: math.unit(9, "feet"),
  43546. weight: math.unit(467, "lb"),
  43547. name: "Back",
  43548. image: {
  43549. source: "./media/characters/necahual/back.svg",
  43550. extra: 930/884,
  43551. bottom: 16/946
  43552. }
  43553. },
  43554. frontUnderwear: {
  43555. height: math.unit(9, "feet"),
  43556. weight: math.unit(467, "lb"),
  43557. name: "Front (Underwear)",
  43558. image: {
  43559. source: "./media/characters/necahual/front-underwear.svg",
  43560. extra: 920/873,
  43561. bottom: 26/946
  43562. }
  43563. },
  43564. frontDressed: {
  43565. height: math.unit(9, "feet"),
  43566. weight: math.unit(467, "lb"),
  43567. name: "Front (Dressed)",
  43568. image: {
  43569. source: "./media/characters/necahual/front-dressed.svg",
  43570. extra: 920/873,
  43571. bottom: 26/946
  43572. }
  43573. },
  43574. },
  43575. [
  43576. {
  43577. name: "Comprsesed",
  43578. height: math.unit(9, "feet")
  43579. },
  43580. {
  43581. name: "Natural",
  43582. height: math.unit(15, "feet"),
  43583. default: true
  43584. },
  43585. {
  43586. name: "Boosted",
  43587. height: math.unit(50, "feet")
  43588. },
  43589. {
  43590. name: "Boosted+",
  43591. height: math.unit(150, "feet")
  43592. },
  43593. {
  43594. name: "Max",
  43595. height: math.unit(500, "feet")
  43596. },
  43597. ]
  43598. ))
  43599. characterMakers.push(() => makeCharacter(
  43600. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43601. {
  43602. front: {
  43603. height: math.unit(22 + 1/12, "feet"),
  43604. weight: math.unit(3200, "lb"),
  43605. name: "Front",
  43606. image: {
  43607. source: "./media/characters/theo-acacia/front.svg",
  43608. extra: 1796/1741,
  43609. bottom: 83/1879
  43610. }
  43611. },
  43612. frontUnderwear: {
  43613. height: math.unit(22 + 1/12, "feet"),
  43614. weight: math.unit(3200, "lb"),
  43615. name: "Front (Underwear)",
  43616. image: {
  43617. source: "./media/characters/theo-acacia/front-underwear.svg",
  43618. extra: 1796/1741,
  43619. bottom: 83/1879
  43620. }
  43621. },
  43622. frontNude: {
  43623. height: math.unit(22 + 1/12, "feet"),
  43624. weight: math.unit(3200, "lb"),
  43625. name: "Front (Nude)",
  43626. image: {
  43627. source: "./media/characters/theo-acacia/front-nude.svg",
  43628. extra: 1796/1741,
  43629. bottom: 83/1879
  43630. }
  43631. },
  43632. },
  43633. [
  43634. {
  43635. name: "Normal",
  43636. height: math.unit(22 + 1/12, "feet"),
  43637. default: true
  43638. },
  43639. ]
  43640. ))
  43641. characterMakers.push(() => makeCharacter(
  43642. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43643. {
  43644. front: {
  43645. height: math.unit(20, "feet"),
  43646. name: "Front",
  43647. image: {
  43648. source: "./media/characters/astra/front.svg",
  43649. extra: 1850/1714,
  43650. bottom: 106/1956
  43651. }
  43652. },
  43653. frontUndressed: {
  43654. height: math.unit(20, "feet"),
  43655. name: "Front (Undressed)",
  43656. image: {
  43657. source: "./media/characters/astra/front-undressed.svg",
  43658. extra: 1926/1749,
  43659. bottom: 0/1926
  43660. }
  43661. },
  43662. hand: {
  43663. height: math.unit(1.53, "feet"),
  43664. name: "Hand",
  43665. image: {
  43666. source: "./media/characters/astra/hand.svg"
  43667. }
  43668. },
  43669. paw: {
  43670. height: math.unit(1.53, "feet"),
  43671. name: "Paw",
  43672. image: {
  43673. source: "./media/characters/astra/paw.svg"
  43674. }
  43675. },
  43676. },
  43677. [
  43678. {
  43679. name: "Smallest",
  43680. height: math.unit(20, "feet")
  43681. },
  43682. {
  43683. name: "Normal",
  43684. height: math.unit(1e9, "miles"),
  43685. default: true
  43686. },
  43687. {
  43688. name: "Larger",
  43689. height: math.unit(5, "multiverses")
  43690. },
  43691. {
  43692. name: "Largest",
  43693. height: math.unit(1e9, "multiverses")
  43694. },
  43695. ]
  43696. ))
  43697. characterMakers.push(() => makeCharacter(
  43698. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43699. {
  43700. front: {
  43701. height: math.unit(8, "feet"),
  43702. name: "Front",
  43703. image: {
  43704. source: "./media/characters/breanna/front.svg",
  43705. extra: 1912/1632,
  43706. bottom: 33/1945
  43707. }
  43708. },
  43709. },
  43710. [
  43711. {
  43712. name: "Smallest",
  43713. height: math.unit(8, "feet")
  43714. },
  43715. {
  43716. name: "Normal",
  43717. height: math.unit(1, "mile"),
  43718. default: true
  43719. },
  43720. {
  43721. name: "Maximum",
  43722. height: math.unit(1500000000000, "lightyears")
  43723. },
  43724. ]
  43725. ))
  43726. characterMakers.push(() => makeCharacter(
  43727. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43728. {
  43729. front: {
  43730. height: math.unit(5 + 11/12, "feet"),
  43731. weight: math.unit(155, "lb"),
  43732. name: "Front",
  43733. image: {
  43734. source: "./media/characters/cai/front.svg",
  43735. extra: 1823/1702,
  43736. bottom: 32/1855
  43737. }
  43738. },
  43739. back: {
  43740. height: math.unit(5 + 11/12, "feet"),
  43741. weight: math.unit(155, "lb"),
  43742. name: "Back",
  43743. image: {
  43744. source: "./media/characters/cai/back.svg",
  43745. extra: 1809/1708,
  43746. bottom: 31/1840
  43747. }
  43748. },
  43749. },
  43750. [
  43751. {
  43752. name: "Normal",
  43753. height: math.unit(5 + 11/12, "feet"),
  43754. default: true
  43755. },
  43756. {
  43757. name: "Big",
  43758. height: math.unit(15, "feet")
  43759. },
  43760. {
  43761. name: "Macro",
  43762. height: math.unit(200, "feet")
  43763. },
  43764. ]
  43765. ))
  43766. characterMakers.push(() => makeCharacter(
  43767. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43768. {
  43769. front: {
  43770. height: math.unit(5 + 6/12, "feet"),
  43771. weight: math.unit(160, "lb"),
  43772. name: "Front",
  43773. image: {
  43774. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43775. extra: 1227/1174,
  43776. bottom: 37/1264
  43777. }
  43778. },
  43779. },
  43780. [
  43781. {
  43782. name: "Macro",
  43783. height: math.unit(444, "meters"),
  43784. default: true
  43785. },
  43786. ]
  43787. ))
  43788. characterMakers.push(() => makeCharacter(
  43789. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43790. {
  43791. front: {
  43792. height: math.unit(18 + 7/12, "feet"),
  43793. name: "Front",
  43794. image: {
  43795. source: "./media/characters/rex/front.svg",
  43796. extra: 1941/1807,
  43797. bottom: 66/2007
  43798. }
  43799. },
  43800. back: {
  43801. height: math.unit(18 + 7/12, "feet"),
  43802. name: "Back",
  43803. image: {
  43804. source: "./media/characters/rex/back.svg",
  43805. extra: 1937/1822,
  43806. bottom: 42/1979
  43807. }
  43808. },
  43809. boot: {
  43810. height: math.unit(3.45, "feet"),
  43811. name: "Boot",
  43812. image: {
  43813. source: "./media/characters/rex/boot.svg"
  43814. }
  43815. },
  43816. paw: {
  43817. height: math.unit(4.17, "feet"),
  43818. name: "Paw",
  43819. image: {
  43820. source: "./media/characters/rex/paw.svg"
  43821. }
  43822. },
  43823. head: {
  43824. height: math.unit(6.728, "feet"),
  43825. name: "Head",
  43826. image: {
  43827. source: "./media/characters/rex/head.svg"
  43828. }
  43829. },
  43830. },
  43831. [
  43832. {
  43833. name: "Nano",
  43834. height: math.unit(18 + 7/12, "feet")
  43835. },
  43836. {
  43837. name: "Micro",
  43838. height: math.unit(1.5, "megameters")
  43839. },
  43840. {
  43841. name: "Normal",
  43842. height: math.unit(440, "megameters"),
  43843. default: true
  43844. },
  43845. {
  43846. name: "Macro",
  43847. height: math.unit(2.5, "gigameters")
  43848. },
  43849. {
  43850. name: "Gigamacro",
  43851. height: math.unit(2, "galaxies")
  43852. },
  43853. ]
  43854. ))
  43855. characterMakers.push(() => makeCharacter(
  43856. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43857. {
  43858. side: {
  43859. height: math.unit(32, "feet"),
  43860. weight: math.unit(250000, "lb"),
  43861. name: "Side",
  43862. image: {
  43863. source: "./media/characters/silverwing/side.svg",
  43864. extra: 1100/1019,
  43865. bottom: 204/1304
  43866. }
  43867. },
  43868. },
  43869. [
  43870. {
  43871. name: "Normal",
  43872. height: math.unit(32, "feet"),
  43873. default: true
  43874. },
  43875. ]
  43876. ))
  43877. characterMakers.push(() => makeCharacter(
  43878. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43879. {
  43880. front: {
  43881. height: math.unit(6 + 6/12, "feet"),
  43882. weight: math.unit(350, "lb"),
  43883. name: "Front",
  43884. image: {
  43885. source: "./media/characters/tristan-hawthorne/front.svg",
  43886. extra: 1159/1124,
  43887. bottom: 37/1196
  43888. },
  43889. form: "labrador",
  43890. default: true
  43891. },
  43892. skunkFront: {
  43893. height: math.unit(4 + 6/12, "feet"),
  43894. weight: math.unit(120, "lb"),
  43895. name: "Front",
  43896. image: {
  43897. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43898. extra: 1609/1551,
  43899. bottom: 169/1778
  43900. },
  43901. form: "skunk",
  43902. default: true
  43903. },
  43904. },
  43905. [
  43906. {
  43907. name: "Normal",
  43908. height: math.unit(6 + 6/12, "feet"),
  43909. form: "labrador",
  43910. default: true
  43911. },
  43912. {
  43913. name: "Normal",
  43914. height: math.unit(4 + 6/12, "feet"),
  43915. form: "skunk",
  43916. default: true
  43917. },
  43918. ],
  43919. {
  43920. "labrador": {
  43921. name: "Labrador",
  43922. default: true
  43923. },
  43924. "skunk": {
  43925. name: "Skunk"
  43926. }
  43927. }
  43928. ))
  43929. characterMakers.push(() => makeCharacter(
  43930. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43931. {
  43932. front: {
  43933. height: math.unit(5 + 11/12, "feet"),
  43934. weight: math.unit(190, "lb"),
  43935. name: "Front",
  43936. image: {
  43937. source: "./media/characters/mizu/front.svg",
  43938. extra: 1988/1788,
  43939. bottom: 14/2002
  43940. }
  43941. },
  43942. },
  43943. [
  43944. {
  43945. name: "Normal",
  43946. height: math.unit(5 + 11/12, "feet"),
  43947. default: true
  43948. },
  43949. ]
  43950. ))
  43951. characterMakers.push(() => makeCharacter(
  43952. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43953. {
  43954. front: {
  43955. height: math.unit(1.7, "feet"),
  43956. weight: math.unit(50, "lb"),
  43957. name: "Front",
  43958. image: {
  43959. source: "./media/characters/dechroma/front.svg",
  43960. extra: 1095/859,
  43961. bottom: 64/1159
  43962. }
  43963. },
  43964. },
  43965. [
  43966. {
  43967. name: "Normal",
  43968. height: math.unit(1.7, "feet"),
  43969. default: true
  43970. },
  43971. ]
  43972. ))
  43973. characterMakers.push(() => makeCharacter(
  43974. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43975. {
  43976. side: {
  43977. height: math.unit(30, "feet"),
  43978. name: "Side",
  43979. image: {
  43980. source: "./media/characters/veluren-thanazel/side.svg",
  43981. extra: 1611/633,
  43982. bottom: 118/1729
  43983. }
  43984. },
  43985. front: {
  43986. height: math.unit(30, "feet"),
  43987. name: "Front",
  43988. image: {
  43989. source: "./media/characters/veluren-thanazel/front.svg",
  43990. extra: 1486/636,
  43991. bottom: 238/1724
  43992. }
  43993. },
  43994. head: {
  43995. height: math.unit(21.4, "feet"),
  43996. name: "Head",
  43997. image: {
  43998. source: "./media/characters/veluren-thanazel/head.svg"
  43999. }
  44000. },
  44001. genitals: {
  44002. height: math.unit(19.4, "feet"),
  44003. name: "Genitals",
  44004. image: {
  44005. source: "./media/characters/veluren-thanazel/genitals.svg"
  44006. }
  44007. },
  44008. },
  44009. [
  44010. {
  44011. name: "Social",
  44012. height: math.unit(6, "feet")
  44013. },
  44014. {
  44015. name: "Play",
  44016. height: math.unit(12, "feet")
  44017. },
  44018. {
  44019. name: "True",
  44020. height: math.unit(30, "feet"),
  44021. default: true
  44022. },
  44023. ]
  44024. ))
  44025. characterMakers.push(() => makeCharacter(
  44026. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44027. {
  44028. front: {
  44029. height: math.unit(7 + 6/12, "feet"),
  44030. weight: math.unit(500, "kg"),
  44031. name: "Front",
  44032. image: {
  44033. source: "./media/characters/arcturas/front.svg",
  44034. extra: 1700/1500,
  44035. bottom: 145/1845
  44036. }
  44037. },
  44038. },
  44039. [
  44040. {
  44041. name: "Normal",
  44042. height: math.unit(7 + 6/12, "feet"),
  44043. default: true
  44044. },
  44045. ]
  44046. ))
  44047. characterMakers.push(() => makeCharacter(
  44048. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44049. {
  44050. side: {
  44051. height: math.unit(6, "feet"),
  44052. weight: math.unit(2, "tons"),
  44053. name: "Side",
  44054. image: {
  44055. source: "./media/characters/vitaen/side.svg",
  44056. extra: 1157/617,
  44057. bottom: 122/1279
  44058. }
  44059. },
  44060. },
  44061. [
  44062. {
  44063. name: "Normal",
  44064. height: math.unit(6, "feet"),
  44065. default: true
  44066. },
  44067. ]
  44068. ))
  44069. characterMakers.push(() => makeCharacter(
  44070. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44071. {
  44072. front: {
  44073. height: math.unit(19, "feet"),
  44074. name: "Front",
  44075. image: {
  44076. source: "./media/characters/fia-dreamweaver/front.svg",
  44077. extra: 1630/1504,
  44078. bottom: 25/1655
  44079. }
  44080. },
  44081. },
  44082. [
  44083. {
  44084. name: "Normal",
  44085. height: math.unit(19, "feet"),
  44086. default: true
  44087. },
  44088. ]
  44089. ))
  44090. characterMakers.push(() => makeCharacter(
  44091. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44092. {
  44093. front: {
  44094. height: math.unit(5 + 4/12, "feet"),
  44095. name: "Front",
  44096. image: {
  44097. source: "./media/characters/artan/front.svg",
  44098. extra: 1618/1535,
  44099. bottom: 46/1664
  44100. }
  44101. },
  44102. back: {
  44103. height: math.unit(5 + 4/12, "feet"),
  44104. name: "Back",
  44105. image: {
  44106. source: "./media/characters/artan/back.svg",
  44107. extra: 1618/1543,
  44108. bottom: 31/1649
  44109. }
  44110. },
  44111. },
  44112. [
  44113. {
  44114. name: "Normal",
  44115. height: math.unit(5 + 4/12, "feet"),
  44116. default: true
  44117. },
  44118. ]
  44119. ))
  44120. characterMakers.push(() => makeCharacter(
  44121. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44122. {
  44123. side: {
  44124. height: math.unit(182, "cm"),
  44125. weight: math.unit(1000, "lb"),
  44126. name: "Side",
  44127. image: {
  44128. source: "./media/characters/silver-dragon/side.svg",
  44129. extra: 710/287,
  44130. bottom: 88/798
  44131. }
  44132. },
  44133. },
  44134. [
  44135. {
  44136. name: "Normal",
  44137. height: math.unit(182, "cm"),
  44138. default: true
  44139. },
  44140. ]
  44141. ))
  44142. characterMakers.push(() => makeCharacter(
  44143. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44144. {
  44145. side: {
  44146. height: math.unit(6 + 6/12, "feet"),
  44147. weight: math.unit(1.5, "tons"),
  44148. name: "Side",
  44149. image: {
  44150. source: "./media/characters/zephyr/side.svg",
  44151. extra: 1433/586,
  44152. bottom: 109/1542
  44153. }
  44154. },
  44155. },
  44156. [
  44157. {
  44158. name: "Normal",
  44159. height: math.unit(6 + 6/12, "feet"),
  44160. default: true
  44161. },
  44162. ]
  44163. ))
  44164. characterMakers.push(() => makeCharacter(
  44165. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44166. {
  44167. side: {
  44168. height: math.unit(1, "feet"),
  44169. name: "Side",
  44170. image: {
  44171. source: "./media/characters/vixye/side.svg",
  44172. extra: 632/541,
  44173. bottom: 0/632
  44174. }
  44175. },
  44176. },
  44177. [
  44178. {
  44179. name: "Normal",
  44180. height: math.unit(1, "feet"),
  44181. default: true
  44182. },
  44183. {
  44184. name: "True",
  44185. height: math.unit(1e15, "multiverses")
  44186. },
  44187. ]
  44188. ))
  44189. characterMakers.push(() => makeCharacter(
  44190. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44191. {
  44192. front: {
  44193. height: math.unit(8 + 2/12, "feet"),
  44194. weight: math.unit(650, "lb"),
  44195. name: "Front",
  44196. image: {
  44197. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44198. extra: 1174/1137,
  44199. bottom: 82/1256
  44200. }
  44201. },
  44202. back: {
  44203. height: math.unit(8 + 2/12, "feet"),
  44204. weight: math.unit(650, "lb"),
  44205. name: "Back",
  44206. image: {
  44207. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44208. extra: 1204/1157,
  44209. bottom: 46/1250
  44210. }
  44211. },
  44212. },
  44213. [
  44214. {
  44215. name: "Wildform",
  44216. height: math.unit(8 + 2/12, "feet"),
  44217. default: true
  44218. },
  44219. ]
  44220. ))
  44221. characterMakers.push(() => makeCharacter(
  44222. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44223. {
  44224. front: {
  44225. height: math.unit(18, "feet"),
  44226. name: "Front",
  44227. image: {
  44228. source: "./media/characters/cyphin/front.svg",
  44229. extra: 970/886,
  44230. bottom: 42/1012
  44231. }
  44232. },
  44233. back: {
  44234. height: math.unit(18, "feet"),
  44235. name: "Back",
  44236. image: {
  44237. source: "./media/characters/cyphin/back.svg",
  44238. extra: 1009/894,
  44239. bottom: 24/1033
  44240. }
  44241. },
  44242. head: {
  44243. height: math.unit(5.05, "feet"),
  44244. name: "Head",
  44245. image: {
  44246. source: "./media/characters/cyphin/head.svg"
  44247. }
  44248. },
  44249. tailbud: {
  44250. height: math.unit(5, "feet"),
  44251. name: "Tailbud",
  44252. image: {
  44253. source: "./media/characters/cyphin/tailbud.svg"
  44254. }
  44255. },
  44256. },
  44257. [
  44258. ]
  44259. ))
  44260. characterMakers.push(() => makeCharacter(
  44261. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44262. {
  44263. side: {
  44264. height: math.unit(10, "feet"),
  44265. weight: math.unit(6, "tons"),
  44266. name: "Side",
  44267. image: {
  44268. source: "./media/characters/raijin/side.svg",
  44269. extra: 1529/613,
  44270. bottom: 337/1866
  44271. }
  44272. },
  44273. },
  44274. [
  44275. {
  44276. name: "Normal",
  44277. height: math.unit(10, "feet"),
  44278. default: true
  44279. },
  44280. ]
  44281. ))
  44282. characterMakers.push(() => makeCharacter(
  44283. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44284. {
  44285. side: {
  44286. height: math.unit(9, "feet"),
  44287. name: "Side",
  44288. image: {
  44289. source: "./media/characters/nilghais/side.svg",
  44290. extra: 1047/744,
  44291. bottom: 91/1138
  44292. }
  44293. },
  44294. head: {
  44295. height: math.unit(3.14, "feet"),
  44296. name: "Head",
  44297. image: {
  44298. source: "./media/characters/nilghais/head.svg"
  44299. }
  44300. },
  44301. mouth: {
  44302. height: math.unit(4.6, "feet"),
  44303. name: "Mouth",
  44304. image: {
  44305. source: "./media/characters/nilghais/mouth.svg"
  44306. }
  44307. },
  44308. wings: {
  44309. height: math.unit(24, "feet"),
  44310. name: "Wings",
  44311. image: {
  44312. source: "./media/characters/nilghais/wings.svg"
  44313. }
  44314. },
  44315. ass: {
  44316. height: math.unit(6.12, "feet"),
  44317. name: "Ass",
  44318. image: {
  44319. source: "./media/characters/nilghais/ass.svg"
  44320. }
  44321. },
  44322. },
  44323. [
  44324. {
  44325. name: "Normal",
  44326. height: math.unit(9, "feet"),
  44327. default: true
  44328. },
  44329. ]
  44330. ))
  44331. characterMakers.push(() => makeCharacter(
  44332. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44333. {
  44334. regular: {
  44335. height: math.unit(16 + 2/12, "feet"),
  44336. weight: math.unit(2300, "lb"),
  44337. name: "Regular",
  44338. image: {
  44339. source: "./media/characters/zolgar/regular.svg",
  44340. extra: 1246/1004,
  44341. bottom: 124/1370
  44342. }
  44343. },
  44344. boxers: {
  44345. height: math.unit(16 + 2/12, "feet"),
  44346. weight: math.unit(2300, "lb"),
  44347. name: "Boxers",
  44348. image: {
  44349. source: "./media/characters/zolgar/boxers.svg",
  44350. extra: 1246/1004,
  44351. bottom: 124/1370
  44352. }
  44353. },
  44354. armored: {
  44355. height: math.unit(16 + 2/12, "feet"),
  44356. weight: math.unit(2300, "lb"),
  44357. name: "Armored",
  44358. image: {
  44359. source: "./media/characters/zolgar/armored.svg",
  44360. extra: 1246/1004,
  44361. bottom: 124/1370
  44362. }
  44363. },
  44364. goth: {
  44365. height: math.unit(16 + 2/12, "feet"),
  44366. weight: math.unit(2300, "lb"),
  44367. name: "Goth",
  44368. image: {
  44369. source: "./media/characters/zolgar/goth.svg",
  44370. extra: 1246/1004,
  44371. bottom: 124/1370
  44372. }
  44373. },
  44374. },
  44375. [
  44376. {
  44377. name: "Shrunken Down",
  44378. height: math.unit(9 + 2/12, "feet")
  44379. },
  44380. {
  44381. name: "Normal",
  44382. height: math.unit(16 + 2/12, "feet"),
  44383. default: true
  44384. },
  44385. ]
  44386. ))
  44387. characterMakers.push(() => makeCharacter(
  44388. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44389. {
  44390. front: {
  44391. height: math.unit(6, "feet"),
  44392. weight: math.unit(168, "lb"),
  44393. name: "Front",
  44394. image: {
  44395. source: "./media/characters/luca/front.svg",
  44396. extra: 841/667,
  44397. bottom: 102/943
  44398. }
  44399. },
  44400. },
  44401. [
  44402. {
  44403. name: "Normal",
  44404. height: math.unit(6, "feet"),
  44405. default: true
  44406. },
  44407. ]
  44408. ))
  44409. characterMakers.push(() => makeCharacter(
  44410. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44411. {
  44412. side: {
  44413. height: math.unit(7 + 3/12, "feet"),
  44414. weight: math.unit(312, "lb"),
  44415. name: "Side",
  44416. image: {
  44417. source: "./media/characters/zezo/side.svg",
  44418. extra: 1192/1067,
  44419. bottom: 63/1255
  44420. }
  44421. },
  44422. },
  44423. [
  44424. {
  44425. name: "Normal",
  44426. height: math.unit(7 + 3/12, "feet"),
  44427. default: true
  44428. },
  44429. ]
  44430. ))
  44431. characterMakers.push(() => makeCharacter(
  44432. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44433. {
  44434. front: {
  44435. height: math.unit(5 + 5/12, "feet"),
  44436. weight: math.unit(170, "lb"),
  44437. name: "Front",
  44438. image: {
  44439. source: "./media/characters/mayso/front.svg",
  44440. extra: 1215/1108,
  44441. bottom: 16/1231
  44442. }
  44443. },
  44444. },
  44445. [
  44446. {
  44447. name: "Normal",
  44448. height: math.unit(5 + 5/12, "feet"),
  44449. default: true
  44450. },
  44451. ]
  44452. ))
  44453. characterMakers.push(() => makeCharacter(
  44454. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44455. {
  44456. front: {
  44457. height: math.unit(4 + 3/12, "feet"),
  44458. weight: math.unit(80, "lb"),
  44459. name: "Front",
  44460. image: {
  44461. source: "./media/characters/hess/front.svg",
  44462. extra: 1200/1123,
  44463. bottom: 16/1216
  44464. }
  44465. },
  44466. },
  44467. [
  44468. {
  44469. name: "Normal",
  44470. height: math.unit(4 + 3/12, "feet"),
  44471. default: true
  44472. },
  44473. ]
  44474. ))
  44475. characterMakers.push(() => makeCharacter(
  44476. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44477. {
  44478. front: {
  44479. height: math.unit(1.9, "meters"),
  44480. name: "Front",
  44481. image: {
  44482. source: "./media/characters/ashgar/front.svg",
  44483. extra: 1177/1146,
  44484. bottom: 99/1276
  44485. }
  44486. },
  44487. back: {
  44488. height: math.unit(1.9, "meters"),
  44489. name: "Back",
  44490. image: {
  44491. source: "./media/characters/ashgar/back.svg",
  44492. extra: 1201/1183,
  44493. bottom: 53/1254
  44494. }
  44495. },
  44496. feral: {
  44497. height: math.unit(1.4, "meters"),
  44498. name: "Feral",
  44499. image: {
  44500. source: "./media/characters/ashgar/feral.svg",
  44501. extra: 370/345,
  44502. bottom: 45/415
  44503. }
  44504. },
  44505. },
  44506. [
  44507. {
  44508. name: "Normal",
  44509. height: math.unit(1.9, "meters"),
  44510. default: true
  44511. },
  44512. ]
  44513. ))
  44514. characterMakers.push(() => makeCharacter(
  44515. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44516. {
  44517. regular: {
  44518. height: math.unit(6, "feet"),
  44519. weight: math.unit(220, "lb"),
  44520. name: "Regular",
  44521. image: {
  44522. source: "./media/characters/phillip/regular.svg",
  44523. extra: 1373/1277,
  44524. bottom: 75/1448
  44525. }
  44526. },
  44527. dressed: {
  44528. height: math.unit(6, "feet"),
  44529. weight: math.unit(220, "lb"),
  44530. name: "Dressed",
  44531. image: {
  44532. source: "./media/characters/phillip/dressed.svg",
  44533. extra: 1373/1277,
  44534. bottom: 75/1448
  44535. }
  44536. },
  44537. paw: {
  44538. height: math.unit(1.44, "feet"),
  44539. name: "Paw",
  44540. image: {
  44541. source: "./media/characters/phillip/paw.svg"
  44542. }
  44543. },
  44544. },
  44545. [
  44546. {
  44547. name: "Normal",
  44548. height: math.unit(6, "feet"),
  44549. default: true
  44550. },
  44551. ]
  44552. ))
  44553. characterMakers.push(() => makeCharacter(
  44554. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44555. {
  44556. side: {
  44557. height: math.unit(42, "feet"),
  44558. name: "Side",
  44559. image: {
  44560. source: "./media/characters/uvula/side.svg",
  44561. extra: 683/586,
  44562. bottom: 60/743
  44563. }
  44564. },
  44565. front: {
  44566. height: math.unit(42, "feet"),
  44567. name: "Front",
  44568. image: {
  44569. source: "./media/characters/uvula/front.svg",
  44570. extra: 705/613,
  44571. bottom: 54/759
  44572. }
  44573. },
  44574. maw: {
  44575. height: math.unit(23.5, "feet"),
  44576. name: "Maw",
  44577. image: {
  44578. source: "./media/characters/uvula/maw.svg"
  44579. }
  44580. },
  44581. },
  44582. [
  44583. {
  44584. name: "Original Size",
  44585. height: math.unit(14, "inches")
  44586. },
  44587. {
  44588. name: "Human Size",
  44589. height: math.unit(6, "feet")
  44590. },
  44591. {
  44592. name: "Big",
  44593. height: math.unit(42, "feet"),
  44594. default: true
  44595. },
  44596. {
  44597. name: "Bigger",
  44598. height: math.unit(100, "feet")
  44599. },
  44600. ]
  44601. ))
  44602. characterMakers.push(() => makeCharacter(
  44603. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44604. {
  44605. front: {
  44606. height: math.unit(5 + 11/12, "feet"),
  44607. name: "Front",
  44608. image: {
  44609. source: "./media/characters/lannah/front.svg",
  44610. extra: 1208/1113,
  44611. bottom: 97/1305
  44612. }
  44613. },
  44614. },
  44615. [
  44616. {
  44617. name: "Normal",
  44618. height: math.unit(5 + 11/12, "feet"),
  44619. default: true
  44620. },
  44621. ]
  44622. ))
  44623. characterMakers.push(() => makeCharacter(
  44624. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44625. {
  44626. front: {
  44627. height: math.unit(6 + 3/12, "feet"),
  44628. weight: math.unit(3.5, "tons"),
  44629. name: "Front",
  44630. image: {
  44631. source: "./media/characters/emberflame/front.svg",
  44632. extra: 1198/672,
  44633. bottom: 82/1280
  44634. }
  44635. },
  44636. side: {
  44637. height: math.unit(6 + 3/12, "feet"),
  44638. weight: math.unit(3.5, "tons"),
  44639. name: "Side",
  44640. image: {
  44641. source: "./media/characters/emberflame/side.svg",
  44642. extra: 938/527,
  44643. bottom: 56/994
  44644. }
  44645. },
  44646. },
  44647. [
  44648. {
  44649. name: "Normal",
  44650. height: math.unit(6 + 3/12, "feet"),
  44651. default: true
  44652. },
  44653. ]
  44654. ))
  44655. characterMakers.push(() => makeCharacter(
  44656. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44657. {
  44658. side: {
  44659. height: math.unit(17.5, "feet"),
  44660. weight: math.unit(35, "tons"),
  44661. name: "Side",
  44662. image: {
  44663. source: "./media/characters/sophie-ambrose/side.svg",
  44664. extra: 1573/1242,
  44665. bottom: 71/1644
  44666. }
  44667. },
  44668. maw: {
  44669. height: math.unit(7.4, "feet"),
  44670. name: "Maw",
  44671. image: {
  44672. source: "./media/characters/sophie-ambrose/maw.svg"
  44673. }
  44674. },
  44675. },
  44676. [
  44677. {
  44678. name: "Normal",
  44679. height: math.unit(17.5, "feet"),
  44680. default: true
  44681. },
  44682. ]
  44683. ))
  44684. characterMakers.push(() => makeCharacter(
  44685. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44686. {
  44687. front: {
  44688. height: math.unit(280, "feet"),
  44689. weight: math.unit(550, "tons"),
  44690. name: "Front",
  44691. image: {
  44692. source: "./media/characters/king-mugi/front.svg",
  44693. extra: 1102/947,
  44694. bottom: 104/1206
  44695. }
  44696. },
  44697. },
  44698. [
  44699. {
  44700. name: "King Mugi",
  44701. height: math.unit(280, "feet"),
  44702. default: true
  44703. },
  44704. ]
  44705. ))
  44706. characterMakers.push(() => makeCharacter(
  44707. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44708. {
  44709. front: {
  44710. height: math.unit(64, "meters"),
  44711. name: "Front",
  44712. image: {
  44713. source: "./media/characters/nova-fox/front.svg",
  44714. extra: 1310/1246,
  44715. bottom: 65/1375
  44716. }
  44717. },
  44718. },
  44719. [
  44720. {
  44721. name: "Macro",
  44722. height: math.unit(64, "meters"),
  44723. default: true
  44724. },
  44725. ]
  44726. ))
  44727. characterMakers.push(() => makeCharacter(
  44728. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44729. {
  44730. front: {
  44731. height: math.unit(6 + 3/12, "feet"),
  44732. weight: math.unit(170, "lb"),
  44733. name: "Front",
  44734. image: {
  44735. source: "./media/characters/sam-bat/front.svg",
  44736. extra: 1601/1411,
  44737. bottom: 125/1726
  44738. }
  44739. },
  44740. back: {
  44741. height: math.unit(6 + 3/12, "feet"),
  44742. weight: math.unit(170, "lb"),
  44743. name: "Back",
  44744. image: {
  44745. source: "./media/characters/sam-bat/back.svg",
  44746. extra: 1577/1405,
  44747. bottom: 58/1635
  44748. }
  44749. },
  44750. },
  44751. [
  44752. {
  44753. name: "Normal",
  44754. height: math.unit(6 + 3/12, "feet"),
  44755. default: true
  44756. },
  44757. ]
  44758. ))
  44759. characterMakers.push(() => makeCharacter(
  44760. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44761. {
  44762. front: {
  44763. height: math.unit(59, "feet"),
  44764. weight: math.unit(40000, "lb"),
  44765. name: "Front",
  44766. image: {
  44767. source: "./media/characters/inari/front.svg",
  44768. extra: 1884/1350,
  44769. bottom: 95/1979
  44770. }
  44771. },
  44772. },
  44773. [
  44774. {
  44775. name: "Gigantamax",
  44776. height: math.unit(59, "feet"),
  44777. default: true
  44778. },
  44779. ]
  44780. ))
  44781. characterMakers.push(() => makeCharacter(
  44782. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44783. {
  44784. front: {
  44785. height: math.unit(5 + 8/12, "feet"),
  44786. name: "Front",
  44787. image: {
  44788. source: "./media/characters/elizabeth/front.svg",
  44789. extra: 1395/1298,
  44790. bottom: 54/1449
  44791. }
  44792. },
  44793. mouth: {
  44794. height: math.unit(1.97, "feet"),
  44795. name: "Mouth",
  44796. image: {
  44797. source: "./media/characters/elizabeth/mouth.svg"
  44798. }
  44799. },
  44800. foot: {
  44801. height: math.unit(1.17, "feet"),
  44802. name: "Foot",
  44803. image: {
  44804. source: "./media/characters/elizabeth/foot.svg"
  44805. }
  44806. },
  44807. },
  44808. [
  44809. {
  44810. name: "Normal",
  44811. height: math.unit(5 + 8/12, "feet"),
  44812. default: true
  44813. },
  44814. {
  44815. name: "Minimacro",
  44816. height: math.unit(18, "feet")
  44817. },
  44818. {
  44819. name: "Macro",
  44820. height: math.unit(180, "feet")
  44821. },
  44822. ]
  44823. ))
  44824. characterMakers.push(() => makeCharacter(
  44825. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44826. {
  44827. front: {
  44828. height: math.unit(5 + 2/12, "feet"),
  44829. name: "Front",
  44830. image: {
  44831. source: "./media/characters/october-gossamer/front.svg",
  44832. extra: 505/454,
  44833. bottom: 7/512
  44834. }
  44835. },
  44836. back: {
  44837. height: math.unit(5 + 2/12, "feet"),
  44838. name: "Back",
  44839. image: {
  44840. source: "./media/characters/october-gossamer/back.svg",
  44841. extra: 501/454,
  44842. bottom: 11/512
  44843. }
  44844. },
  44845. },
  44846. [
  44847. {
  44848. name: "Normal",
  44849. height: math.unit(5 + 2/12, "feet"),
  44850. default: true
  44851. },
  44852. ]
  44853. ))
  44854. characterMakers.push(() => makeCharacter(
  44855. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44856. {
  44857. front: {
  44858. height: math.unit(5, "feet"),
  44859. name: "Front",
  44860. image: {
  44861. source: "./media/characters/epiglottis/front.svg",
  44862. extra: 923/849,
  44863. bottom: 17/940
  44864. }
  44865. },
  44866. },
  44867. [
  44868. {
  44869. name: "Original Size",
  44870. height: math.unit(10, "inches")
  44871. },
  44872. {
  44873. name: "Human Size",
  44874. height: math.unit(5, "feet"),
  44875. default: true
  44876. },
  44877. {
  44878. name: "Big",
  44879. height: math.unit(25, "feet")
  44880. },
  44881. {
  44882. name: "Bigger",
  44883. height: math.unit(50, "feet")
  44884. },
  44885. {
  44886. name: "oh lawd",
  44887. height: math.unit(75, "feet")
  44888. },
  44889. ]
  44890. ))
  44891. characterMakers.push(() => makeCharacter(
  44892. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44893. {
  44894. front: {
  44895. height: math.unit(2 + 4/12, "feet"),
  44896. weight: math.unit(60, "lb"),
  44897. name: "Front",
  44898. image: {
  44899. source: "./media/characters/lerm/front.svg",
  44900. extra: 796/790,
  44901. bottom: 79/875
  44902. }
  44903. },
  44904. },
  44905. [
  44906. {
  44907. name: "Normal",
  44908. height: math.unit(2 + 4/12, "feet"),
  44909. default: true
  44910. },
  44911. ]
  44912. ))
  44913. characterMakers.push(() => makeCharacter(
  44914. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44915. {
  44916. front: {
  44917. height: math.unit(5.5, "feet"),
  44918. weight: math.unit(130, "lb"),
  44919. name: "Front",
  44920. image: {
  44921. source: "./media/characters/xena-nebadon/front.svg",
  44922. extra: 1828/1730,
  44923. bottom: 79/1907
  44924. }
  44925. },
  44926. },
  44927. [
  44928. {
  44929. name: "Tiny Puppy",
  44930. height: math.unit(3, "inches")
  44931. },
  44932. {
  44933. name: "Normal",
  44934. height: math.unit(5.5, "feet"),
  44935. default: true
  44936. },
  44937. {
  44938. name: "Lotta Lady",
  44939. height: math.unit(12, "feet")
  44940. },
  44941. {
  44942. name: "Pretty Big",
  44943. height: math.unit(100, "feet")
  44944. },
  44945. {
  44946. name: "Big",
  44947. height: math.unit(500, "feet")
  44948. },
  44949. {
  44950. name: "Skyscraper Toys",
  44951. height: math.unit(2500, "feet")
  44952. },
  44953. {
  44954. name: "Plane Catcher",
  44955. height: math.unit(8, "miles")
  44956. },
  44957. {
  44958. name: "Planet Toys",
  44959. height: math.unit(15, "earths")
  44960. },
  44961. {
  44962. name: "Stardust",
  44963. height: math.unit(0.25, "galaxies")
  44964. },
  44965. {
  44966. name: "Snacks",
  44967. height: math.unit(70, "universes")
  44968. },
  44969. ]
  44970. ))
  44971. characterMakers.push(() => makeCharacter(
  44972. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44973. {
  44974. front: {
  44975. height: math.unit(1.6, "meters"),
  44976. weight: math.unit(60, "kg"),
  44977. name: "Front",
  44978. image: {
  44979. source: "./media/characters/bounty/front.svg",
  44980. extra: 1426/1308,
  44981. bottom: 15/1441
  44982. }
  44983. },
  44984. back: {
  44985. height: math.unit(1.6, "meters"),
  44986. weight: math.unit(60, "kg"),
  44987. name: "Back",
  44988. image: {
  44989. source: "./media/characters/bounty/back.svg",
  44990. extra: 1417/1307,
  44991. bottom: 8/1425
  44992. }
  44993. },
  44994. },
  44995. [
  44996. {
  44997. name: "Normal",
  44998. height: math.unit(1.6, "meters"),
  44999. default: true
  45000. },
  45001. {
  45002. name: "Macro",
  45003. height: math.unit(300, "meters")
  45004. },
  45005. ]
  45006. ))
  45007. characterMakers.push(() => makeCharacter(
  45008. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45009. {
  45010. front: {
  45011. height: math.unit(2 + 8/12, "feet"),
  45012. weight: math.unit(15, "lb"),
  45013. name: "Front",
  45014. image: {
  45015. source: "./media/characters/mochi/front.svg",
  45016. extra: 1022/852,
  45017. bottom: 435/1457
  45018. }
  45019. },
  45020. back: {
  45021. height: math.unit(2 + 8/12, "feet"),
  45022. weight: math.unit(15, "lb"),
  45023. name: "Back",
  45024. image: {
  45025. source: "./media/characters/mochi/back.svg",
  45026. extra: 1335/1119,
  45027. bottom: 39/1374
  45028. }
  45029. },
  45030. bird: {
  45031. height: math.unit(2 + 8/12, "feet"),
  45032. weight: math.unit(15, "lb"),
  45033. name: "Bird",
  45034. image: {
  45035. source: "./media/characters/mochi/bird.svg",
  45036. extra: 1251/1113,
  45037. bottom: 178/1429
  45038. }
  45039. },
  45040. kaiju: {
  45041. height: math.unit(154, "feet"),
  45042. weight: math.unit(1e7, "lb"),
  45043. name: "Kaiju",
  45044. image: {
  45045. source: "./media/characters/mochi/kaiju.svg",
  45046. extra: 460/324,
  45047. bottom: 40/500
  45048. }
  45049. },
  45050. head: {
  45051. height: math.unit(1.21, "feet"),
  45052. name: "Head",
  45053. image: {
  45054. source: "./media/characters/mochi/head.svg"
  45055. }
  45056. },
  45057. alternateTail: {
  45058. height: math.unit(2 + 8/12, "feet"),
  45059. weight: math.unit(45, "lb"),
  45060. name: "Alternate Tail",
  45061. image: {
  45062. source: "./media/characters/mochi/alternate-tail.svg",
  45063. extra: 139/76,
  45064. bottom: 45/184
  45065. }
  45066. },
  45067. },
  45068. [
  45069. {
  45070. name: "Micro",
  45071. height: math.unit(2, "inches")
  45072. },
  45073. {
  45074. name: "Normal",
  45075. height: math.unit(2 + 8/12, "feet"),
  45076. default: true
  45077. },
  45078. {
  45079. name: "Macro",
  45080. height: math.unit(106, "feet")
  45081. },
  45082. ]
  45083. ))
  45084. characterMakers.push(() => makeCharacter(
  45085. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45086. {
  45087. front: {
  45088. height: math.unit(5.67, "feet"),
  45089. weight: math.unit(135, "lb"),
  45090. name: "Front",
  45091. image: {
  45092. source: "./media/characters/sarel/front.svg",
  45093. extra: 865/788,
  45094. bottom: 97/962
  45095. }
  45096. },
  45097. back: {
  45098. height: math.unit(5.67, "feet"),
  45099. weight: math.unit(135, "lb"),
  45100. name: "Back",
  45101. image: {
  45102. source: "./media/characters/sarel/back.svg",
  45103. extra: 857/777,
  45104. bottom: 32/889
  45105. }
  45106. },
  45107. chozoan: {
  45108. height: math.unit(5.67, "feet"),
  45109. weight: math.unit(135, "lb"),
  45110. name: "Chozoan",
  45111. image: {
  45112. source: "./media/characters/sarel/chozoan.svg",
  45113. extra: 865/788,
  45114. bottom: 97/962
  45115. }
  45116. },
  45117. current: {
  45118. height: math.unit(5.67, "feet"),
  45119. weight: math.unit(135, "lb"),
  45120. name: "Current",
  45121. image: {
  45122. source: "./media/characters/sarel/current.svg",
  45123. extra: 865/788,
  45124. bottom: 97/962
  45125. }
  45126. },
  45127. head: {
  45128. height: math.unit(1.77, "feet"),
  45129. name: "Head",
  45130. image: {
  45131. source: "./media/characters/sarel/head.svg"
  45132. }
  45133. },
  45134. claws: {
  45135. height: math.unit(1.8, "feet"),
  45136. name: "Claws",
  45137. image: {
  45138. source: "./media/characters/sarel/claws.svg"
  45139. }
  45140. },
  45141. clawsAlt: {
  45142. height: math.unit(1.8, "feet"),
  45143. name: "Claws-alt",
  45144. image: {
  45145. source: "./media/characters/sarel/claws-alt.svg"
  45146. }
  45147. },
  45148. },
  45149. [
  45150. {
  45151. name: "Normal",
  45152. height: math.unit(5.67, "feet"),
  45153. default: true
  45154. },
  45155. ]
  45156. ))
  45157. characterMakers.push(() => makeCharacter(
  45158. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45159. {
  45160. front: {
  45161. height: math.unit(5500, "feet"),
  45162. name: "Front",
  45163. image: {
  45164. source: "./media/characters/alyonia/front.svg",
  45165. extra: 1200/1135,
  45166. bottom: 29/1229
  45167. }
  45168. },
  45169. back: {
  45170. height: math.unit(5500, "feet"),
  45171. name: "Back",
  45172. image: {
  45173. source: "./media/characters/alyonia/back.svg",
  45174. extra: 1205/1138,
  45175. bottom: 10/1215
  45176. }
  45177. },
  45178. },
  45179. [
  45180. {
  45181. name: "Small",
  45182. height: math.unit(10, "feet")
  45183. },
  45184. {
  45185. name: "Macro",
  45186. height: math.unit(500, "feet")
  45187. },
  45188. {
  45189. name: "Mega Macro",
  45190. height: math.unit(5500, "feet"),
  45191. default: true
  45192. },
  45193. {
  45194. name: "Mega Macro+",
  45195. height: math.unit(500000, "feet")
  45196. },
  45197. {
  45198. name: "Giga Macro",
  45199. height: math.unit(3000, "miles")
  45200. },
  45201. {
  45202. name: "Tera Macro",
  45203. height: math.unit(2.8e6, "miles")
  45204. },
  45205. {
  45206. name: "Galactic",
  45207. height: math.unit(120000, "lightyears")
  45208. },
  45209. ]
  45210. ))
  45211. characterMakers.push(() => makeCharacter(
  45212. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45213. {
  45214. werewolf: {
  45215. height: math.unit(8, "feet"),
  45216. weight: math.unit(425, "lb"),
  45217. name: "Werewolf",
  45218. image: {
  45219. source: "./media/characters/autumn/werewolf.svg",
  45220. extra: 2154/2031,
  45221. bottom: 160/2314
  45222. }
  45223. },
  45224. human: {
  45225. height: math.unit(5 + 8/12, "feet"),
  45226. weight: math.unit(150, "lb"),
  45227. name: "Human",
  45228. image: {
  45229. source: "./media/characters/autumn/human.svg",
  45230. extra: 1200/1149,
  45231. bottom: 30/1230
  45232. }
  45233. },
  45234. },
  45235. [
  45236. {
  45237. name: "Normal",
  45238. height: math.unit(8, "feet"),
  45239. default: true
  45240. },
  45241. ]
  45242. ))
  45243. characterMakers.push(() => makeCharacter(
  45244. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45245. {
  45246. front: {
  45247. height: math.unit(8 + 5/12, "feet"),
  45248. weight: math.unit(825, "lb"),
  45249. name: "Front",
  45250. image: {
  45251. source: "./media/characters/cobalt-charizard/front.svg",
  45252. extra: 1268/1155,
  45253. bottom: 122/1390
  45254. }
  45255. },
  45256. side: {
  45257. height: math.unit(8 + 5/12, "feet"),
  45258. weight: math.unit(825, "lb"),
  45259. name: "Side",
  45260. image: {
  45261. source: "./media/characters/cobalt-charizard/side.svg",
  45262. extra: 1348/1257,
  45263. bottom: 58/1406
  45264. }
  45265. },
  45266. gMax: {
  45267. height: math.unit(134 + 11/12, "feet"),
  45268. name: "G-Max",
  45269. image: {
  45270. source: "./media/characters/cobalt-charizard/g-max.svg",
  45271. extra: 1835/1541,
  45272. bottom: 151/1986
  45273. }
  45274. },
  45275. },
  45276. [
  45277. {
  45278. name: "Normal",
  45279. height: math.unit(8 + 5/12, "feet"),
  45280. default: true
  45281. },
  45282. ]
  45283. ))
  45284. characterMakers.push(() => makeCharacter(
  45285. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45286. {
  45287. front: {
  45288. height: math.unit(6 + 3/12, "feet"),
  45289. weight: math.unit(210, "lb"),
  45290. name: "Front",
  45291. image: {
  45292. source: "./media/characters/stella/front.svg",
  45293. extra: 3549/3335,
  45294. bottom: 51/3600
  45295. }
  45296. },
  45297. },
  45298. [
  45299. {
  45300. name: "Normal",
  45301. height: math.unit(6 + 3/12, "feet"),
  45302. default: true
  45303. },
  45304. ]
  45305. ))
  45306. characterMakers.push(() => makeCharacter(
  45307. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45308. {
  45309. front: {
  45310. height: math.unit(5, "feet"),
  45311. weight: math.unit(90, "lb"),
  45312. name: "Front",
  45313. image: {
  45314. source: "./media/characters/riley-bishop/front.svg",
  45315. extra: 1450/1428,
  45316. bottom: 152/1602
  45317. }
  45318. },
  45319. },
  45320. [
  45321. {
  45322. name: "Normal",
  45323. height: math.unit(5, "feet"),
  45324. default: true
  45325. },
  45326. ]
  45327. ))
  45328. characterMakers.push(() => makeCharacter(
  45329. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45330. {
  45331. side: {
  45332. height: math.unit(8 + 2/12, "feet"),
  45333. weight: math.unit(500, "kg"),
  45334. name: "Side",
  45335. image: {
  45336. source: "./media/characters/theo-arcanine/side.svg",
  45337. extra: 1342/1074,
  45338. bottom: 111/1453
  45339. }
  45340. },
  45341. },
  45342. [
  45343. {
  45344. name: "Normal",
  45345. height: math.unit(8 + 2/12, "feet"),
  45346. default: true
  45347. },
  45348. ]
  45349. ))
  45350. characterMakers.push(() => makeCharacter(
  45351. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45352. {
  45353. front: {
  45354. height: math.unit(4, "feet"),
  45355. name: "Front",
  45356. image: {
  45357. source: "./media/characters/kali/front.svg",
  45358. extra: 1921/1357,
  45359. bottom: 70/1991
  45360. }
  45361. },
  45362. },
  45363. [
  45364. {
  45365. name: "Normal",
  45366. height: math.unit(4, "feet"),
  45367. default: true
  45368. },
  45369. {
  45370. name: "Macro",
  45371. height: math.unit(32, "meters")
  45372. },
  45373. {
  45374. name: "Macro+",
  45375. height: math.unit(150, "meters")
  45376. },
  45377. {
  45378. name: "Megamacro",
  45379. height: math.unit(7500, "meters")
  45380. },
  45381. {
  45382. name: "Megamacro+",
  45383. height: math.unit(80, "kilometers")
  45384. },
  45385. ]
  45386. ))
  45387. characterMakers.push(() => makeCharacter(
  45388. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45389. {
  45390. side: {
  45391. height: math.unit(5 + 11/12, "feet"),
  45392. weight: math.unit(236, "lb"),
  45393. name: "Side",
  45394. image: {
  45395. source: "./media/characters/gapp/side.svg",
  45396. extra: 775/340,
  45397. bottom: 58/833
  45398. }
  45399. },
  45400. mouth: {
  45401. height: math.unit(2.98, "feet"),
  45402. name: "Mouth",
  45403. image: {
  45404. source: "./media/characters/gapp/mouth.svg"
  45405. }
  45406. },
  45407. },
  45408. [
  45409. {
  45410. name: "Normal",
  45411. height: math.unit(5 + 1/12, "feet"),
  45412. default: true
  45413. },
  45414. ]
  45415. ))
  45416. characterMakers.push(() => makeCharacter(
  45417. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45418. {
  45419. front: {
  45420. height: math.unit(6, "feet"),
  45421. name: "Front",
  45422. image: {
  45423. source: "./media/characters/persephone/front.svg",
  45424. extra: 1895/1717,
  45425. bottom: 96/1991
  45426. }
  45427. },
  45428. back: {
  45429. height: math.unit(6, "feet"),
  45430. name: "Back",
  45431. image: {
  45432. source: "./media/characters/persephone/back.svg",
  45433. extra: 1868/1679,
  45434. bottom: 26/1894
  45435. }
  45436. },
  45437. casual: {
  45438. height: math.unit(6, "feet"),
  45439. name: "Casual",
  45440. image: {
  45441. source: "./media/characters/persephone/casual.svg",
  45442. extra: 1713/1541,
  45443. bottom: 76/1789
  45444. }
  45445. },
  45446. },
  45447. [
  45448. {
  45449. name: "Human Size",
  45450. height: math.unit(6, "feet")
  45451. },
  45452. {
  45453. name: "Big Steppy",
  45454. height: math.unit(600, "meters"),
  45455. default: true
  45456. },
  45457. {
  45458. name: "Galaxy Brain",
  45459. height: math.unit(1, "zettameter")
  45460. },
  45461. ]
  45462. ))
  45463. characterMakers.push(() => makeCharacter(
  45464. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45465. {
  45466. front: {
  45467. height: math.unit(1.85, "meters"),
  45468. name: "Front",
  45469. image: {
  45470. source: "./media/characters/riley-foxthing/front.svg",
  45471. extra: 1495/1354,
  45472. bottom: 122/1617
  45473. }
  45474. },
  45475. frontAlt: {
  45476. height: math.unit(1.85, "meters"),
  45477. name: "Front (Alt)",
  45478. image: {
  45479. source: "./media/characters/riley-foxthing/front-alt.svg",
  45480. extra: 1572/1389,
  45481. bottom: 116/1688
  45482. }
  45483. },
  45484. },
  45485. [
  45486. {
  45487. name: "Normal Sized",
  45488. height: math.unit(1.85, "meters"),
  45489. default: true
  45490. },
  45491. {
  45492. name: "Quite Sizable",
  45493. height: math.unit(5, "meters")
  45494. },
  45495. {
  45496. name: "Rather Large",
  45497. height: math.unit(20, "meters")
  45498. },
  45499. {
  45500. name: "Macro",
  45501. height: math.unit(450, "meters")
  45502. },
  45503. {
  45504. name: "Giga",
  45505. height: math.unit(5, "km")
  45506. },
  45507. ]
  45508. ))
  45509. characterMakers.push(() => makeCharacter(
  45510. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45511. {
  45512. front: {
  45513. height: math.unit(6, "feet"),
  45514. weight: math.unit(200, "lb"),
  45515. name: "Front",
  45516. image: {
  45517. source: "./media/characters/blizzard/front.svg",
  45518. extra: 1136/990,
  45519. bottom: 136/1272
  45520. }
  45521. },
  45522. back: {
  45523. height: math.unit(6, "feet"),
  45524. weight: math.unit(200, "lb"),
  45525. name: "Back",
  45526. image: {
  45527. source: "./media/characters/blizzard/back.svg",
  45528. extra: 1175/1034,
  45529. bottom: 97/1272
  45530. }
  45531. },
  45532. sitting: {
  45533. height: math.unit(3.725, "feet"),
  45534. weight: math.unit(200, "lb"),
  45535. name: "Sitting",
  45536. image: {
  45537. source: "./media/characters/blizzard/sitting.svg",
  45538. extra: 581/485,
  45539. bottom: 90/671
  45540. }
  45541. },
  45542. frontWizard: {
  45543. height: math.unit(7.9, "feet"),
  45544. weight: math.unit(200, "lb"),
  45545. name: "Front (Wizard)",
  45546. image: {
  45547. source: "./media/characters/blizzard/front-wizard.svg"
  45548. }
  45549. },
  45550. backWizard: {
  45551. height: math.unit(7.9, "feet"),
  45552. weight: math.unit(200, "lb"),
  45553. name: "Back (Wizard)",
  45554. image: {
  45555. source: "./media/characters/blizzard/back-wizard.svg"
  45556. }
  45557. },
  45558. frontNsfw: {
  45559. height: math.unit(6, "feet"),
  45560. weight: math.unit(200, "lb"),
  45561. name: "Front (NSFW)",
  45562. image: {
  45563. source: "./media/characters/blizzard/front-nsfw.svg",
  45564. extra: 1136/990,
  45565. bottom: 136/1272
  45566. }
  45567. },
  45568. backNsfw: {
  45569. height: math.unit(6, "feet"),
  45570. weight: math.unit(200, "lb"),
  45571. name: "Back (NSFW)",
  45572. image: {
  45573. source: "./media/characters/blizzard/back-nsfw.svg",
  45574. extra: 1175/1034,
  45575. bottom: 97/1272
  45576. }
  45577. },
  45578. sittingNsfw: {
  45579. height: math.unit(3.725, "feet"),
  45580. weight: math.unit(200, "lb"),
  45581. name: "Sitting (NSFW)",
  45582. image: {
  45583. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45584. extra: 581/485,
  45585. bottom: 90/671
  45586. }
  45587. },
  45588. wizardFrontNsfw: {
  45589. height: math.unit(7.9, "feet"),
  45590. weight: math.unit(200, "lb"),
  45591. name: "Wizard (Front, NSFW)",
  45592. image: {
  45593. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45594. }
  45595. },
  45596. },
  45597. [
  45598. {
  45599. name: "Normal",
  45600. height: math.unit(6, "feet"),
  45601. default: true
  45602. },
  45603. ]
  45604. ))
  45605. characterMakers.push(() => makeCharacter(
  45606. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45607. {
  45608. front: {
  45609. height: math.unit(5 + 2/12, "feet"),
  45610. name: "Front",
  45611. image: {
  45612. source: "./media/characters/lumi/front.svg",
  45613. extra: 1328/1268,
  45614. bottom: 103/1431
  45615. }
  45616. },
  45617. back: {
  45618. height: math.unit(5 + 2/12, "feet"),
  45619. name: "Back",
  45620. image: {
  45621. source: "./media/characters/lumi/back.svg",
  45622. extra: 1381/1327,
  45623. bottom: 43/1424
  45624. }
  45625. },
  45626. },
  45627. [
  45628. {
  45629. name: "Normal",
  45630. height: math.unit(5 + 2/12, "feet"),
  45631. default: true
  45632. },
  45633. ]
  45634. ))
  45635. characterMakers.push(() => makeCharacter(
  45636. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45637. {
  45638. front: {
  45639. height: math.unit(5 + 9/12, "feet"),
  45640. name: "Front",
  45641. image: {
  45642. source: "./media/characters/aliya-cotton/front.svg",
  45643. extra: 577/564,
  45644. bottom: 29/606
  45645. }
  45646. },
  45647. },
  45648. [
  45649. {
  45650. name: "Normal",
  45651. height: math.unit(5 + 9/12, "feet"),
  45652. default: true
  45653. },
  45654. ]
  45655. ))
  45656. characterMakers.push(() => makeCharacter(
  45657. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45658. {
  45659. front: {
  45660. height: math.unit(2.7, "meters"),
  45661. weight: math.unit(25000, "lb"),
  45662. name: "Front",
  45663. image: {
  45664. source: "./media/characters/noah-luxray/front.svg",
  45665. extra: 1644/825,
  45666. bottom: 339/1983
  45667. }
  45668. },
  45669. side: {
  45670. height: math.unit(2.97, "meters"),
  45671. weight: math.unit(25000, "lb"),
  45672. name: "Side",
  45673. image: {
  45674. source: "./media/characters/noah-luxray/side.svg",
  45675. extra: 1319/650,
  45676. bottom: 163/1482
  45677. }
  45678. },
  45679. dick: {
  45680. height: math.unit(7.4, "feet"),
  45681. weight: math.unit(2500, "lb"),
  45682. name: "Dick",
  45683. image: {
  45684. source: "./media/characters/noah-luxray/dick.svg"
  45685. }
  45686. },
  45687. dickAlt: {
  45688. height: math.unit(10.83, "feet"),
  45689. weight: math.unit(2500, "lb"),
  45690. name: "Dick-alt",
  45691. image: {
  45692. source: "./media/characters/noah-luxray/dick-alt.svg"
  45693. }
  45694. },
  45695. },
  45696. [
  45697. {
  45698. name: "BIG",
  45699. height: math.unit(2.7, "meters"),
  45700. default: true
  45701. },
  45702. ]
  45703. ))
  45704. characterMakers.push(() => makeCharacter(
  45705. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45706. {
  45707. standing: {
  45708. height: math.unit(183, "cm"),
  45709. weight: math.unit(68, "kg"),
  45710. name: "Standing",
  45711. image: {
  45712. source: "./media/characters/arion/standing.svg",
  45713. extra: 1869/1807,
  45714. bottom: 93/1962
  45715. }
  45716. },
  45717. reclining: {
  45718. height: math.unit(70.5, "cm"),
  45719. weight: math.unit(68, "lb"),
  45720. name: "Reclining",
  45721. image: {
  45722. source: "./media/characters/arion/reclining.svg",
  45723. extra: 937/870,
  45724. bottom: 63/1000
  45725. }
  45726. },
  45727. },
  45728. [
  45729. {
  45730. name: "Colossus Size, Low",
  45731. height: math.unit(33, "meters"),
  45732. default: true
  45733. },
  45734. {
  45735. name: "Colossus Size, Mid",
  45736. height: math.unit(52, "meters")
  45737. },
  45738. {
  45739. name: "Colossus Size, High",
  45740. height: math.unit(60, "meters")
  45741. },
  45742. {
  45743. name: "Titan Size, Low",
  45744. height: math.unit(91, "meters"),
  45745. },
  45746. {
  45747. name: "Titan Size, Mid",
  45748. height: math.unit(122, "meters")
  45749. },
  45750. {
  45751. name: "Titan Size, High",
  45752. height: math.unit(162, "meters")
  45753. },
  45754. ]
  45755. ))
  45756. characterMakers.push(() => makeCharacter(
  45757. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45758. {
  45759. front: {
  45760. height: math.unit(53, "meters"),
  45761. name: "Front",
  45762. image: {
  45763. source: "./media/characters/stellar-marbey/front.svg",
  45764. extra: 1913/1805,
  45765. bottom: 92/2005
  45766. }
  45767. },
  45768. back: {
  45769. height: math.unit(53, "meters"),
  45770. name: "Back",
  45771. image: {
  45772. source: "./media/characters/stellar-marbey/back.svg",
  45773. extra: 1960/1851,
  45774. bottom: 28/1988
  45775. }
  45776. },
  45777. mouth: {
  45778. height: math.unit(3.5, "meters"),
  45779. name: "Mouth",
  45780. image: {
  45781. source: "./media/characters/stellar-marbey/mouth.svg"
  45782. }
  45783. },
  45784. },
  45785. [
  45786. {
  45787. name: "Macro",
  45788. height: math.unit(53, "meters"),
  45789. default: true
  45790. },
  45791. ]
  45792. ))
  45793. characterMakers.push(() => makeCharacter(
  45794. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45795. {
  45796. front: {
  45797. height: math.unit(8 + 1/12, "feet"),
  45798. weight: math.unit(233, "lb"),
  45799. name: "Front",
  45800. image: {
  45801. source: "./media/characters/matsu/front.svg",
  45802. extra: 832/772,
  45803. bottom: 40/872
  45804. }
  45805. },
  45806. back: {
  45807. height: math.unit(8 + 1/12, "feet"),
  45808. weight: math.unit(233, "lb"),
  45809. name: "Back",
  45810. image: {
  45811. source: "./media/characters/matsu/back.svg",
  45812. extra: 839/780,
  45813. bottom: 47/886
  45814. }
  45815. },
  45816. },
  45817. [
  45818. {
  45819. name: "Normal",
  45820. height: math.unit(8 + 1/12, "feet"),
  45821. default: true
  45822. },
  45823. ]
  45824. ))
  45825. characterMakers.push(() => makeCharacter(
  45826. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45827. {
  45828. front: {
  45829. height: math.unit(4, "feet"),
  45830. weight: math.unit(148, "lb"),
  45831. name: "Front",
  45832. image: {
  45833. source: "./media/characters/thiz/front.svg",
  45834. extra: 1913/1748,
  45835. bottom: 62/1975
  45836. }
  45837. },
  45838. },
  45839. [
  45840. {
  45841. name: "Normal",
  45842. height: math.unit(4, "feet"),
  45843. default: true
  45844. },
  45845. ]
  45846. ))
  45847. characterMakers.push(() => makeCharacter(
  45848. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45849. {
  45850. front: {
  45851. height: math.unit(7 + 6/12, "feet"),
  45852. weight: math.unit(267, "lb"),
  45853. name: "Front",
  45854. image: {
  45855. source: "./media/characters/marcel/front.svg",
  45856. extra: 1221/1096,
  45857. bottom: 76/1297
  45858. }
  45859. },
  45860. },
  45861. [
  45862. {
  45863. name: "Normal",
  45864. height: math.unit(7 + 6/12, "feet"),
  45865. default: true
  45866. },
  45867. ]
  45868. ))
  45869. characterMakers.push(() => makeCharacter(
  45870. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45871. {
  45872. side: {
  45873. height: math.unit(42, "meters"),
  45874. name: "Side",
  45875. image: {
  45876. source: "./media/characters/flake/side.svg",
  45877. extra: 1525/1306,
  45878. bottom: 209/1734
  45879. }
  45880. },
  45881. },
  45882. [
  45883. {
  45884. name: "Normal",
  45885. height: math.unit(42, "meters"),
  45886. default: true
  45887. },
  45888. ]
  45889. ))
  45890. characterMakers.push(() => makeCharacter(
  45891. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45892. {
  45893. dressed: {
  45894. height: math.unit(6 + 4/12, "feet"),
  45895. weight: math.unit(520, "lb"),
  45896. name: "Dressed",
  45897. image: {
  45898. source: "./media/characters/someonne/dressed.svg",
  45899. extra: 1020/1010,
  45900. bottom: 178/1198
  45901. }
  45902. },
  45903. undressed: {
  45904. height: math.unit(6 + 4/12, "feet"),
  45905. weight: math.unit(520, "lb"),
  45906. name: "Undressed",
  45907. image: {
  45908. source: "./media/characters/someonne/undressed.svg",
  45909. extra: 1019/1014,
  45910. bottom: 169/1188
  45911. }
  45912. },
  45913. },
  45914. [
  45915. {
  45916. name: "Normal",
  45917. height: math.unit(6 + 4/12, "feet"),
  45918. default: true
  45919. },
  45920. ]
  45921. ))
  45922. characterMakers.push(() => makeCharacter(
  45923. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45924. {
  45925. front: {
  45926. height: math.unit(3, "feet"),
  45927. weight: math.unit(30, "lb"),
  45928. name: "Front",
  45929. image: {
  45930. source: "./media/characters/till/front.svg",
  45931. extra: 892/823,
  45932. bottom: 55/947
  45933. }
  45934. },
  45935. },
  45936. [
  45937. {
  45938. name: "Normal",
  45939. height: math.unit(3, "feet"),
  45940. default: true
  45941. },
  45942. ]
  45943. ))
  45944. characterMakers.push(() => makeCharacter(
  45945. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45946. {
  45947. front: {
  45948. height: math.unit(9 + 8/12, "feet"),
  45949. weight: math.unit(800, "lb"),
  45950. name: "Front",
  45951. image: {
  45952. source: "./media/characters/sydney-heki/front.svg",
  45953. extra: 1360/1300,
  45954. bottom: 22/1382
  45955. }
  45956. },
  45957. back: {
  45958. height: math.unit(9 + 8/12, "feet"),
  45959. weight: math.unit(800, "lb"),
  45960. name: "Back",
  45961. image: {
  45962. source: "./media/characters/sydney-heki/back.svg",
  45963. extra: 1356/1293,
  45964. bottom: 12/1368
  45965. }
  45966. },
  45967. frontDressed: {
  45968. height: math.unit(9 + 8/12, "feet"),
  45969. weight: math.unit(800, "lb"),
  45970. name: "Front-dressed",
  45971. image: {
  45972. source: "./media/characters/sydney-heki/front-dressed.svg",
  45973. extra: 1360/1300,
  45974. bottom: 22/1382
  45975. }
  45976. },
  45977. },
  45978. [
  45979. {
  45980. name: "Normal",
  45981. height: math.unit(9 + 8/12, "feet"),
  45982. default: true
  45983. },
  45984. {
  45985. name: "Macro",
  45986. height: math.unit(500, "feet")
  45987. },
  45988. {
  45989. name: "Megamacro",
  45990. height: math.unit(3.6, "miles")
  45991. },
  45992. ]
  45993. ))
  45994. characterMakers.push(() => makeCharacter(
  45995. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45996. {
  45997. front: {
  45998. height: math.unit(200, "cm"),
  45999. weight: math.unit(250, "lb"),
  46000. name: "Front",
  46001. image: {
  46002. source: "./media/characters/fowler-karlsson/front.svg",
  46003. extra: 897/845,
  46004. bottom: 123/1020
  46005. }
  46006. },
  46007. back: {
  46008. height: math.unit(200, "cm"),
  46009. weight: math.unit(250, "lb"),
  46010. name: "Back",
  46011. image: {
  46012. source: "./media/characters/fowler-karlsson/back.svg",
  46013. extra: 999/944,
  46014. bottom: 26/1025
  46015. }
  46016. },
  46017. dick: {
  46018. height: math.unit(1.92, "feet"),
  46019. weight: math.unit(150, "lb"),
  46020. name: "Dick",
  46021. image: {
  46022. source: "./media/characters/fowler-karlsson/dick.svg"
  46023. }
  46024. },
  46025. },
  46026. [
  46027. {
  46028. name: "Normal",
  46029. height: math.unit(200, "cm"),
  46030. default: true
  46031. },
  46032. {
  46033. name: "Smaller Macro",
  46034. height: math.unit(90, "m")
  46035. },
  46036. {
  46037. name: "Macro",
  46038. height: math.unit(150, "m")
  46039. },
  46040. {
  46041. name: "Bigger Macro",
  46042. height: math.unit(300, "m")
  46043. },
  46044. ]
  46045. ))
  46046. characterMakers.push(() => makeCharacter(
  46047. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46048. {
  46049. side: {
  46050. height: math.unit(8 + 2/12, "feet"),
  46051. weight: math.unit(1, "tonne"),
  46052. name: "Side",
  46053. image: {
  46054. source: "./media/characters/rylide/side.svg",
  46055. extra: 1318/1034,
  46056. bottom: 106/1424
  46057. }
  46058. },
  46059. sitting: {
  46060. height: math.unit(303, "cm"),
  46061. weight: math.unit(1, "tonne"),
  46062. name: "Sitting",
  46063. image: {
  46064. source: "./media/characters/rylide/sitting.svg",
  46065. extra: 1303/1103,
  46066. bottom: 36/1339
  46067. }
  46068. },
  46069. },
  46070. [
  46071. {
  46072. name: "Normal",
  46073. height: math.unit(8 + 2/12, "feet"),
  46074. default: true
  46075. },
  46076. ]
  46077. ))
  46078. characterMakers.push(() => makeCharacter(
  46079. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46080. {
  46081. front: {
  46082. height: math.unit(5 + 10/12, "feet"),
  46083. weight: math.unit(160, "lb"),
  46084. name: "Front",
  46085. image: {
  46086. source: "./media/characters/pudask/front.svg",
  46087. extra: 1616/1590,
  46088. bottom: 161/1777
  46089. }
  46090. },
  46091. },
  46092. [
  46093. {
  46094. name: "Ferret Height",
  46095. height: math.unit(2 + 5/12, "feet")
  46096. },
  46097. {
  46098. name: "Canon Height",
  46099. height: math.unit(5 + 10/12, "feet"),
  46100. default: true
  46101. },
  46102. ]
  46103. ))
  46104. characterMakers.push(() => makeCharacter(
  46105. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46106. {
  46107. front: {
  46108. height: math.unit(3 + 6/12, "feet"),
  46109. weight: math.unit(60, "lb"),
  46110. name: "Front",
  46111. image: {
  46112. source: "./media/characters/ramita/front.svg",
  46113. extra: 1402/1232,
  46114. bottom: 62/1464
  46115. }
  46116. },
  46117. dressed: {
  46118. height: math.unit(3 + 6/12, "feet"),
  46119. weight: math.unit(60, "lb"),
  46120. name: "Dressed",
  46121. image: {
  46122. source: "./media/characters/ramita/dressed.svg",
  46123. extra: 1534/1249,
  46124. bottom: 50/1584
  46125. }
  46126. },
  46127. },
  46128. [
  46129. {
  46130. name: "Normal",
  46131. height: math.unit(3 + 6/12, "feet"),
  46132. default: true
  46133. },
  46134. ]
  46135. ))
  46136. characterMakers.push(() => makeCharacter(
  46137. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46138. {
  46139. front: {
  46140. height: math.unit(8, "feet"),
  46141. name: "Front",
  46142. image: {
  46143. source: "./media/characters/ark/front.svg",
  46144. extra: 772/693,
  46145. bottom: 45/817
  46146. }
  46147. },
  46148. },
  46149. [
  46150. {
  46151. name: "Normal",
  46152. height: math.unit(8, "feet"),
  46153. default: true
  46154. },
  46155. ]
  46156. ))
  46157. characterMakers.push(() => makeCharacter(
  46158. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46159. {
  46160. front: {
  46161. height: math.unit(6, "feet"),
  46162. weight: math.unit(250, "lb"),
  46163. volume: math.unit(5/8, "gallons"),
  46164. name: "Front",
  46165. image: {
  46166. source: "./media/characters/ludwig-horn/front.svg",
  46167. extra: 1782/1635,
  46168. bottom: 96/1878
  46169. }
  46170. },
  46171. back: {
  46172. height: math.unit(6, "feet"),
  46173. weight: math.unit(250, "lb"),
  46174. volume: math.unit(5/8, "gallons"),
  46175. name: "Back",
  46176. image: {
  46177. source: "./media/characters/ludwig-horn/back.svg",
  46178. extra: 1874/1729,
  46179. bottom: 27/1901
  46180. }
  46181. },
  46182. dick: {
  46183. height: math.unit(1.05, "feet"),
  46184. weight: math.unit(15, "lb"),
  46185. volume: math.unit(5/8, "gallons"),
  46186. name: "Dick",
  46187. image: {
  46188. source: "./media/characters/ludwig-horn/dick.svg"
  46189. }
  46190. },
  46191. },
  46192. [
  46193. {
  46194. name: "Small",
  46195. height: math.unit(6, "feet")
  46196. },
  46197. {
  46198. name: "Typical",
  46199. height: math.unit(12, "feet"),
  46200. default: true
  46201. },
  46202. {
  46203. name: "Building",
  46204. height: math.unit(80, "feet")
  46205. },
  46206. {
  46207. name: "Town",
  46208. height: math.unit(800, "feet")
  46209. },
  46210. {
  46211. name: "Kingdom",
  46212. height: math.unit(80000, "feet")
  46213. },
  46214. {
  46215. name: "Planet",
  46216. height: math.unit(8000000, "feet")
  46217. },
  46218. {
  46219. name: "Universe",
  46220. height: math.unit(8000000000, "feet")
  46221. },
  46222. {
  46223. name: "Transcended",
  46224. height: math.unit(8e27, "feet")
  46225. },
  46226. ]
  46227. ))
  46228. characterMakers.push(() => makeCharacter(
  46229. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46230. {
  46231. front: {
  46232. height: math.unit(5, "feet"),
  46233. weight: math.unit(50, "kg"),
  46234. name: "Front",
  46235. image: {
  46236. source: "./media/characters/biot-avery/front.svg",
  46237. extra: 1295/1232,
  46238. bottom: 86/1381
  46239. }
  46240. },
  46241. },
  46242. [
  46243. {
  46244. name: "Normal",
  46245. height: math.unit(5, "feet"),
  46246. default: true
  46247. },
  46248. ]
  46249. ))
  46250. characterMakers.push(() => makeCharacter(
  46251. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46252. {
  46253. front: {
  46254. height: math.unit(6, "feet"),
  46255. name: "Front",
  46256. image: {
  46257. source: "./media/characters/kitsune-kiro/front.svg",
  46258. extra: 1270/1158,
  46259. bottom: 42/1312
  46260. }
  46261. },
  46262. frontAlt: {
  46263. height: math.unit(6, "feet"),
  46264. name: "Front-alt",
  46265. image: {
  46266. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46267. extra: 1130/1081,
  46268. bottom: 36/1166
  46269. }
  46270. },
  46271. },
  46272. [
  46273. {
  46274. name: "Smol",
  46275. height: math.unit(3, "feet")
  46276. },
  46277. {
  46278. name: "Normal",
  46279. height: math.unit(6, "feet"),
  46280. default: true
  46281. },
  46282. ]
  46283. ))
  46284. characterMakers.push(() => makeCharacter(
  46285. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46286. {
  46287. front: {
  46288. height: math.unit(6, "feet"),
  46289. weight: math.unit(125, "lb"),
  46290. name: "Front",
  46291. image: {
  46292. source: "./media/characters/jack-thatcher/front.svg",
  46293. extra: 1474/1370,
  46294. bottom: 26/1500
  46295. }
  46296. },
  46297. back: {
  46298. height: math.unit(6, "feet"),
  46299. weight: math.unit(125, "lb"),
  46300. name: "Back",
  46301. image: {
  46302. source: "./media/characters/jack-thatcher/back.svg",
  46303. extra: 1489/1384,
  46304. bottom: 18/1507
  46305. }
  46306. },
  46307. },
  46308. [
  46309. {
  46310. name: "Normal",
  46311. height: math.unit(6, "feet"),
  46312. default: true
  46313. },
  46314. {
  46315. name: "Macro",
  46316. height: math.unit(75, "feet")
  46317. },
  46318. {
  46319. name: "Macro-er",
  46320. height: math.unit(250, "feet")
  46321. },
  46322. ]
  46323. ))
  46324. characterMakers.push(() => makeCharacter(
  46325. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46326. {
  46327. front: {
  46328. height: math.unit(7, "feet"),
  46329. weight: math.unit(110, "kg"),
  46330. name: "Front",
  46331. image: {
  46332. source: "./media/characters/max-hyper/front.svg",
  46333. extra: 1969/1881,
  46334. bottom: 49/2018
  46335. }
  46336. },
  46337. },
  46338. [
  46339. {
  46340. name: "Normal",
  46341. height: math.unit(7, "feet"),
  46342. default: true
  46343. },
  46344. ]
  46345. ))
  46346. characterMakers.push(() => makeCharacter(
  46347. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46348. {
  46349. front: {
  46350. height: math.unit(5 + 5/12, "feet"),
  46351. weight: math.unit(160, "lb"),
  46352. name: "Front",
  46353. image: {
  46354. source: "./media/characters/spook/front.svg",
  46355. extra: 794/791,
  46356. bottom: 54/848
  46357. }
  46358. },
  46359. back: {
  46360. height: math.unit(5 + 5/12, "feet"),
  46361. weight: math.unit(160, "lb"),
  46362. name: "Back",
  46363. image: {
  46364. source: "./media/characters/spook/back.svg",
  46365. extra: 812/798,
  46366. bottom: 32/844
  46367. }
  46368. },
  46369. },
  46370. [
  46371. {
  46372. name: "Normal",
  46373. height: math.unit(5 + 5/12, "feet"),
  46374. default: true
  46375. },
  46376. ]
  46377. ))
  46378. characterMakers.push(() => makeCharacter(
  46379. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46380. {
  46381. front: {
  46382. height: math.unit(18, "feet"),
  46383. name: "Front",
  46384. image: {
  46385. source: "./media/characters/xeaduulix/front.svg",
  46386. extra: 1380/1166,
  46387. bottom: 110/1490
  46388. }
  46389. },
  46390. back: {
  46391. height: math.unit(18, "feet"),
  46392. name: "Back",
  46393. image: {
  46394. source: "./media/characters/xeaduulix/back.svg",
  46395. extra: 1592/1170,
  46396. bottom: 128/1720
  46397. }
  46398. },
  46399. frontNsfw: {
  46400. height: math.unit(18, "feet"),
  46401. name: "Front (NSFW)",
  46402. image: {
  46403. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46404. extra: 1380/1166,
  46405. bottom: 110/1490
  46406. }
  46407. },
  46408. backNsfw: {
  46409. height: math.unit(18, "feet"),
  46410. name: "Back (NSFW)",
  46411. image: {
  46412. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46413. extra: 1592/1170,
  46414. bottom: 128/1720
  46415. }
  46416. },
  46417. },
  46418. [
  46419. {
  46420. name: "Normal",
  46421. height: math.unit(18, "feet"),
  46422. default: true
  46423. },
  46424. ]
  46425. ))
  46426. characterMakers.push(() => makeCharacter(
  46427. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46428. {
  46429. spreadWings: {
  46430. height: math.unit(20, "feet"),
  46431. name: "Spread Wings",
  46432. image: {
  46433. source: "./media/characters/fledge/spread-wings.svg",
  46434. extra: 693/635,
  46435. bottom: 26/719
  46436. }
  46437. },
  46438. front: {
  46439. height: math.unit(20, "feet"),
  46440. name: "Front",
  46441. image: {
  46442. source: "./media/characters/fledge/front.svg",
  46443. extra: 684/637,
  46444. bottom: 18/702
  46445. }
  46446. },
  46447. frontAlt: {
  46448. height: math.unit(20, "feet"),
  46449. name: "Front (Alt)",
  46450. image: {
  46451. source: "./media/characters/fledge/front-alt.svg",
  46452. extra: 708/664,
  46453. bottom: 13/721
  46454. }
  46455. },
  46456. back: {
  46457. height: math.unit(20, "feet"),
  46458. name: "Back",
  46459. image: {
  46460. source: "./media/characters/fledge/back.svg",
  46461. extra: 718/634,
  46462. bottom: 22/740
  46463. }
  46464. },
  46465. head: {
  46466. height: math.unit(5.55, "feet"),
  46467. name: "Head",
  46468. image: {
  46469. source: "./media/characters/fledge/head.svg"
  46470. }
  46471. },
  46472. headAlt: {
  46473. height: math.unit(5.1, "feet"),
  46474. name: "Head (Alt)",
  46475. image: {
  46476. source: "./media/characters/fledge/head-alt.svg"
  46477. }
  46478. },
  46479. },
  46480. [
  46481. {
  46482. name: "Small",
  46483. height: math.unit(6 + 2/12, "feet")
  46484. },
  46485. {
  46486. name: "Big",
  46487. height: math.unit(20, "feet"),
  46488. default: true
  46489. },
  46490. {
  46491. name: "Giant",
  46492. height: math.unit(100, "feet")
  46493. },
  46494. {
  46495. name: "Macro",
  46496. height: math.unit(200, "feet")
  46497. },
  46498. ]
  46499. ))
  46500. characterMakers.push(() => makeCharacter(
  46501. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46502. {
  46503. front: {
  46504. height: math.unit(1, "meter"),
  46505. name: "Front",
  46506. image: {
  46507. source: "./media/characters/atlas-morenai/front.svg",
  46508. extra: 1275/1043,
  46509. bottom: 19/1294
  46510. }
  46511. },
  46512. back: {
  46513. height: math.unit(1, "meter"),
  46514. name: "Back",
  46515. image: {
  46516. source: "./media/characters/atlas-morenai/back.svg",
  46517. extra: 1141/1001,
  46518. bottom: 25/1166
  46519. }
  46520. },
  46521. },
  46522. [
  46523. {
  46524. name: "Normal",
  46525. height: math.unit(1, "meter"),
  46526. default: true
  46527. },
  46528. {
  46529. name: "Magic-Infused",
  46530. height: math.unit(5, "meters")
  46531. },
  46532. ]
  46533. ))
  46534. characterMakers.push(() => makeCharacter(
  46535. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46536. {
  46537. front: {
  46538. height: math.unit(5, "meters"),
  46539. name: "Front",
  46540. image: {
  46541. source: "./media/characters/cintia/front.svg",
  46542. extra: 1312/1228,
  46543. bottom: 38/1350
  46544. }
  46545. },
  46546. back: {
  46547. height: math.unit(5, "meters"),
  46548. name: "Back",
  46549. image: {
  46550. source: "./media/characters/cintia/back.svg",
  46551. extra: 1260/1166,
  46552. bottom: 98/1358
  46553. }
  46554. },
  46555. frontDick: {
  46556. height: math.unit(5, "meters"),
  46557. name: "Front (Dick)",
  46558. image: {
  46559. source: "./media/characters/cintia/front-dick.svg",
  46560. extra: 1312/1228,
  46561. bottom: 38/1350
  46562. }
  46563. },
  46564. backDick: {
  46565. height: math.unit(5, "meters"),
  46566. name: "Back (Dick)",
  46567. image: {
  46568. source: "./media/characters/cintia/back-dick.svg",
  46569. extra: 1260/1166,
  46570. bottom: 98/1358
  46571. }
  46572. },
  46573. bust: {
  46574. height: math.unit(1.97, "meters"),
  46575. name: "Bust",
  46576. image: {
  46577. source: "./media/characters/cintia/bust.svg",
  46578. extra: 617/565,
  46579. bottom: 0/617
  46580. }
  46581. },
  46582. },
  46583. [
  46584. {
  46585. name: "Normal",
  46586. height: math.unit(5, "meters"),
  46587. default: true
  46588. },
  46589. ]
  46590. ))
  46591. characterMakers.push(() => makeCharacter(
  46592. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46593. {
  46594. side: {
  46595. height: math.unit(100, "feet"),
  46596. name: "Side",
  46597. image: {
  46598. source: "./media/characters/denora/side.svg",
  46599. extra: 875/803,
  46600. bottom: 9/884
  46601. }
  46602. },
  46603. },
  46604. [
  46605. {
  46606. name: "Standard",
  46607. height: math.unit(100, "feet"),
  46608. default: true
  46609. },
  46610. {
  46611. name: "Grand",
  46612. height: math.unit(1000, "feet")
  46613. },
  46614. {
  46615. name: "Conquering",
  46616. height: math.unit(10000, "feet")
  46617. },
  46618. ]
  46619. ))
  46620. characterMakers.push(() => makeCharacter(
  46621. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46622. {
  46623. dressed: {
  46624. height: math.unit(8 + 5/12, "feet"),
  46625. weight: math.unit(700, "lb"),
  46626. name: "Dressed",
  46627. image: {
  46628. source: "./media/characters/kiva/dressed.svg",
  46629. extra: 1102/1055,
  46630. bottom: 60/1162
  46631. }
  46632. },
  46633. nude: {
  46634. height: math.unit(8 + 5/12, "feet"),
  46635. weight: math.unit(700, "lb"),
  46636. name: "Nude",
  46637. image: {
  46638. source: "./media/characters/kiva/nude.svg",
  46639. extra: 1102/1055,
  46640. bottom: 60/1162
  46641. }
  46642. },
  46643. },
  46644. [
  46645. {
  46646. name: "Base Height",
  46647. height: math.unit(8 + 5/12, "feet"),
  46648. default: true
  46649. },
  46650. {
  46651. name: "Macro",
  46652. height: math.unit(100, "feet")
  46653. },
  46654. {
  46655. name: "Max",
  46656. height: math.unit(3280, "feet")
  46657. },
  46658. ]
  46659. ))
  46660. characterMakers.push(() => makeCharacter(
  46661. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46662. {
  46663. front: {
  46664. height: math.unit(6 + 8/12, "feet"),
  46665. weight: math.unit(250, "lb"),
  46666. name: "Front",
  46667. image: {
  46668. source: "./media/characters/ztragon/front.svg",
  46669. extra: 1825/1684,
  46670. bottom: 98/1923
  46671. }
  46672. },
  46673. },
  46674. [
  46675. {
  46676. name: "Normal",
  46677. height: math.unit(6 + 8/12, "feet"),
  46678. default: true
  46679. },
  46680. {
  46681. name: "Macro",
  46682. height: math.unit(80, "feet")
  46683. },
  46684. ]
  46685. ))
  46686. characterMakers.push(() => makeCharacter(
  46687. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46688. {
  46689. front: {
  46690. height: math.unit(10.4, "feet"),
  46691. weight: math.unit(2, "tons"),
  46692. name: "Front",
  46693. image: {
  46694. source: "./media/characters/yesenia/front.svg",
  46695. extra: 1479/1474,
  46696. bottom: 233/1712
  46697. }
  46698. },
  46699. },
  46700. [
  46701. {
  46702. name: "Normal",
  46703. height: math.unit(10.4, "feet"),
  46704. default: true
  46705. },
  46706. ]
  46707. ))
  46708. characterMakers.push(() => makeCharacter(
  46709. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46710. {
  46711. normal: {
  46712. height: math.unit(6 + 1/12, "feet"),
  46713. weight: math.unit(180, "lb"),
  46714. name: "Normal",
  46715. image: {
  46716. source: "./media/characters/leanne-lycheborne/normal.svg",
  46717. extra: 1748/1660,
  46718. bottom: 98/1846
  46719. }
  46720. },
  46721. were: {
  46722. height: math.unit(12, "feet"),
  46723. weight: math.unit(1600, "lb"),
  46724. name: "Were",
  46725. image: {
  46726. source: "./media/characters/leanne-lycheborne/were.svg",
  46727. extra: 1485/1432,
  46728. bottom: 66/1551
  46729. }
  46730. },
  46731. },
  46732. [
  46733. {
  46734. name: "Normal",
  46735. height: math.unit(6 + 1/12, "feet"),
  46736. default: true
  46737. },
  46738. ]
  46739. ))
  46740. characterMakers.push(() => makeCharacter(
  46741. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46742. {
  46743. side: {
  46744. height: math.unit(13, "feet"),
  46745. name: "Side",
  46746. image: {
  46747. source: "./media/characters/kira-tyler/side.svg",
  46748. extra: 693/393,
  46749. bottom: 58/751
  46750. }
  46751. },
  46752. },
  46753. [
  46754. {
  46755. name: "Normal",
  46756. height: math.unit(13, "feet"),
  46757. default: true
  46758. },
  46759. ]
  46760. ))
  46761. characterMakers.push(() => makeCharacter(
  46762. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46763. {
  46764. front: {
  46765. height: math.unit(10.3, "feet"),
  46766. weight: math.unit(150, "lb"),
  46767. name: "Front",
  46768. image: {
  46769. source: "./media/characters/blaze/front.svg",
  46770. extra: 1378/1286,
  46771. bottom: 172/1550
  46772. }
  46773. },
  46774. },
  46775. [
  46776. {
  46777. name: "Normal",
  46778. height: math.unit(10.3, "feet"),
  46779. default: true
  46780. },
  46781. ]
  46782. ))
  46783. characterMakers.push(() => makeCharacter(
  46784. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46785. {
  46786. side: {
  46787. height: math.unit(2, "meters"),
  46788. weight: math.unit(400, "kg"),
  46789. name: "Side",
  46790. image: {
  46791. source: "./media/characters/anu/side.svg",
  46792. extra: 506/394,
  46793. bottom: 18/524
  46794. }
  46795. },
  46796. },
  46797. [
  46798. {
  46799. name: "Humanoid",
  46800. height: math.unit(2, "meters")
  46801. },
  46802. {
  46803. name: "Normal",
  46804. height: math.unit(5, "meters"),
  46805. default: true
  46806. },
  46807. ]
  46808. ))
  46809. characterMakers.push(() => makeCharacter(
  46810. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46811. {
  46812. front: {
  46813. height: math.unit(5 + 5/12, "feet"),
  46814. weight: math.unit(170, "lb"),
  46815. name: "Front",
  46816. image: {
  46817. source: "./media/characters/synx-the-lynx/front.svg",
  46818. extra: 1893/1745,
  46819. bottom: 17/1910
  46820. }
  46821. },
  46822. side: {
  46823. height: math.unit(5 + 5/12, "feet"),
  46824. weight: math.unit(170, "lb"),
  46825. name: "Side",
  46826. image: {
  46827. source: "./media/characters/synx-the-lynx/side.svg",
  46828. extra: 1884/1740,
  46829. bottom: 39/1923
  46830. }
  46831. },
  46832. back: {
  46833. height: math.unit(5 + 5/12, "feet"),
  46834. weight: math.unit(170, "lb"),
  46835. name: "Back",
  46836. image: {
  46837. source: "./media/characters/synx-the-lynx/back.svg",
  46838. extra: 1903/1755,
  46839. bottom: 14/1917
  46840. }
  46841. },
  46842. },
  46843. [
  46844. {
  46845. name: "Normal",
  46846. height: math.unit(5 + 5/12, "feet"),
  46847. default: true
  46848. },
  46849. ]
  46850. ))
  46851. characterMakers.push(() => makeCharacter(
  46852. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46853. {
  46854. back: {
  46855. height: math.unit(15, "feet"),
  46856. name: "Back",
  46857. image: {
  46858. source: "./media/characters/nadezda-fex/back.svg",
  46859. extra: 1695/1481,
  46860. bottom: 25/1720
  46861. }
  46862. },
  46863. },
  46864. [
  46865. {
  46866. name: "Normal",
  46867. height: math.unit(15, "feet"),
  46868. default: true
  46869. },
  46870. {
  46871. name: "Macro",
  46872. height: math.unit(2.5, "miles")
  46873. },
  46874. {
  46875. name: "Goddess",
  46876. height: math.unit(2, "multiverses")
  46877. },
  46878. ]
  46879. ))
  46880. characterMakers.push(() => makeCharacter(
  46881. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46882. {
  46883. front: {
  46884. height: math.unit(216, "cm"),
  46885. name: "Front",
  46886. image: {
  46887. source: "./media/characters/lev/front.svg",
  46888. extra: 1728/1670,
  46889. bottom: 82/1810
  46890. }
  46891. },
  46892. back: {
  46893. height: math.unit(216, "cm"),
  46894. name: "Back",
  46895. image: {
  46896. source: "./media/characters/lev/back.svg",
  46897. extra: 1738/1675,
  46898. bottom: 24/1762
  46899. }
  46900. },
  46901. dressed: {
  46902. height: math.unit(216, "cm"),
  46903. name: "Dressed",
  46904. image: {
  46905. source: "./media/characters/lev/dressed.svg",
  46906. extra: 1397/1351,
  46907. bottom: 73/1470
  46908. }
  46909. },
  46910. head: {
  46911. height: math.unit(0.51, "meter"),
  46912. name: "Head",
  46913. image: {
  46914. source: "./media/characters/lev/head.svg"
  46915. }
  46916. },
  46917. },
  46918. [
  46919. {
  46920. name: "Normal",
  46921. height: math.unit(216, "cm"),
  46922. default: true
  46923. },
  46924. {
  46925. name: "Relatively Macro",
  46926. height: math.unit(80, "meters")
  46927. },
  46928. {
  46929. name: "Megamacro",
  46930. height: math.unit(21600, "meters")
  46931. },
  46932. {
  46933. name: "Megamacro+",
  46934. height: math.unit(64800, "meters")
  46935. },
  46936. ]
  46937. ))
  46938. characterMakers.push(() => makeCharacter(
  46939. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46940. {
  46941. front: {
  46942. height: math.unit(2, "meters"),
  46943. weight: math.unit(80, "kg"),
  46944. name: "Front",
  46945. image: {
  46946. source: "./media/characters/moka/front.svg",
  46947. extra: 1337/1255,
  46948. bottom: 58/1395
  46949. }
  46950. },
  46951. },
  46952. [
  46953. {
  46954. name: "Micro",
  46955. height: math.unit(15, "cm")
  46956. },
  46957. {
  46958. name: "Normal",
  46959. height: math.unit(2, "meters"),
  46960. default: true
  46961. },
  46962. {
  46963. name: "Macro",
  46964. height: math.unit(20, "meters"),
  46965. },
  46966. ]
  46967. ))
  46968. characterMakers.push(() => makeCharacter(
  46969. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46970. {
  46971. front: {
  46972. height: math.unit(9, "feet"),
  46973. weight: math.unit(240, "lb"),
  46974. name: "Front",
  46975. image: {
  46976. source: "./media/characters/kuzco/front.svg",
  46977. extra: 1593/1487,
  46978. bottom: 32/1625
  46979. }
  46980. },
  46981. side: {
  46982. height: math.unit(9, "feet"),
  46983. weight: math.unit(240, "lb"),
  46984. name: "Side",
  46985. image: {
  46986. source: "./media/characters/kuzco/side.svg",
  46987. extra: 1575/1485,
  46988. bottom: 30/1605
  46989. }
  46990. },
  46991. back: {
  46992. height: math.unit(9, "feet"),
  46993. weight: math.unit(240, "lb"),
  46994. name: "Back",
  46995. image: {
  46996. source: "./media/characters/kuzco/back.svg",
  46997. extra: 1603/1514,
  46998. bottom: 14/1617
  46999. }
  47000. },
  47001. },
  47002. [
  47003. {
  47004. name: "Normal",
  47005. height: math.unit(9, "feet"),
  47006. default: true
  47007. },
  47008. ]
  47009. ))
  47010. characterMakers.push(() => makeCharacter(
  47011. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47012. {
  47013. side: {
  47014. height: math.unit(2, "meters"),
  47015. weight: math.unit(300, "kg"),
  47016. name: "Side",
  47017. image: {
  47018. source: "./media/characters/ceruleus/side.svg",
  47019. extra: 1068/974,
  47020. bottom: 126/1194
  47021. }
  47022. },
  47023. maw: {
  47024. height: math.unit(0.8125, "meter"),
  47025. name: "Maw",
  47026. image: {
  47027. source: "./media/characters/ceruleus/maw.svg"
  47028. }
  47029. },
  47030. },
  47031. [
  47032. {
  47033. name: "Normal",
  47034. height: math.unit(16, "meters"),
  47035. default: true
  47036. },
  47037. ]
  47038. ))
  47039. characterMakers.push(() => makeCharacter(
  47040. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47041. {
  47042. front: {
  47043. height: math.unit(9, "feet"),
  47044. weight: math.unit(500, "kg"),
  47045. name: "Front",
  47046. image: {
  47047. source: "./media/characters/acouya/front.svg",
  47048. extra: 1660/1473,
  47049. bottom: 28/1688
  47050. }
  47051. },
  47052. },
  47053. [
  47054. {
  47055. name: "Normal",
  47056. height: math.unit(9, "feet"),
  47057. default: true
  47058. },
  47059. ]
  47060. ))
  47061. characterMakers.push(() => makeCharacter(
  47062. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47063. {
  47064. front: {
  47065. height: math.unit(5 + 6/12, "feet"),
  47066. weight: math.unit(195, "lb"),
  47067. name: "Front",
  47068. image: {
  47069. source: "./media/characters/vant/front.svg",
  47070. extra: 1396/1320,
  47071. bottom: 20/1416
  47072. }
  47073. },
  47074. back: {
  47075. height: math.unit(5 + 6/12, "feet"),
  47076. weight: math.unit(195, "lb"),
  47077. name: "Back",
  47078. image: {
  47079. source: "./media/characters/vant/back.svg",
  47080. extra: 1396/1320,
  47081. bottom: 20/1416
  47082. }
  47083. },
  47084. maw: {
  47085. height: math.unit(0.75, "feet"),
  47086. name: "Maw",
  47087. image: {
  47088. source: "./media/characters/vant/maw.svg"
  47089. }
  47090. },
  47091. paw: {
  47092. height: math.unit(1.07, "feet"),
  47093. name: "Paw",
  47094. image: {
  47095. source: "./media/characters/vant/paw.svg"
  47096. }
  47097. },
  47098. },
  47099. [
  47100. {
  47101. name: "Micro",
  47102. height: math.unit(0.25, "inches")
  47103. },
  47104. {
  47105. name: "Normal",
  47106. height: math.unit(5 + 6/12, "feet"),
  47107. default: true
  47108. },
  47109. {
  47110. name: "Macro",
  47111. height: math.unit(75, "feet")
  47112. },
  47113. ]
  47114. ))
  47115. characterMakers.push(() => makeCharacter(
  47116. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47117. {
  47118. front: {
  47119. height: math.unit(30, "meters"),
  47120. weight: math.unit(363, "tons"),
  47121. name: "Front",
  47122. image: {
  47123. source: "./media/characters/ahra/front.svg",
  47124. extra: 1914/1814,
  47125. bottom: 46/1960
  47126. }
  47127. },
  47128. },
  47129. [
  47130. {
  47131. name: "Macro",
  47132. height: math.unit(30, "meters"),
  47133. default: true
  47134. },
  47135. ]
  47136. ))
  47137. characterMakers.push(() => makeCharacter(
  47138. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47139. {
  47140. undressed: {
  47141. height: math.unit(2, "m"),
  47142. weight: math.unit(250, "kg"),
  47143. name: "Undressed",
  47144. image: {
  47145. source: "./media/characters/coriander/undressed.svg",
  47146. extra: 1757/1606,
  47147. bottom: 107/1864
  47148. }
  47149. },
  47150. dressed: {
  47151. height: math.unit(2, "m"),
  47152. weight: math.unit(250, "kg"),
  47153. name: "Dressed",
  47154. image: {
  47155. source: "./media/characters/coriander/dressed.svg",
  47156. extra: 1757/1606,
  47157. bottom: 107/1864
  47158. }
  47159. },
  47160. },
  47161. [
  47162. {
  47163. name: "Normal",
  47164. height: math.unit(4, "meters"),
  47165. default: true
  47166. },
  47167. {
  47168. name: "XL",
  47169. height: math.unit(6, "meters")
  47170. },
  47171. {
  47172. name: "XXL",
  47173. height: math.unit(8, "meters")
  47174. },
  47175. ]
  47176. ))
  47177. characterMakers.push(() => makeCharacter(
  47178. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47179. {
  47180. front: {
  47181. height: math.unit(6, "feet"),
  47182. name: "Front",
  47183. image: {
  47184. source: "./media/characters/syrinx/front.svg",
  47185. extra: 1557/1259,
  47186. bottom: 171/1728
  47187. }
  47188. },
  47189. },
  47190. [
  47191. {
  47192. name: "Normal",
  47193. height: math.unit(6 + 3/12, "feet"),
  47194. default: true
  47195. },
  47196. ]
  47197. ))
  47198. characterMakers.push(() => makeCharacter(
  47199. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47200. {
  47201. front: {
  47202. height: math.unit(11 + 6/12, "feet"),
  47203. weight: math.unit(1.5, "tons"),
  47204. name: "Front",
  47205. image: {
  47206. source: "./media/characters/bor/front.svg",
  47207. extra: 1189/1109,
  47208. bottom: 170/1359
  47209. }
  47210. },
  47211. },
  47212. [
  47213. {
  47214. name: "Normal",
  47215. height: math.unit(11 + 6/12, "feet"),
  47216. default: true
  47217. },
  47218. {
  47219. name: "Macro",
  47220. height: math.unit(32 + 9/12, "feet")
  47221. },
  47222. ]
  47223. ))
  47224. characterMakers.push(() => makeCharacter(
  47225. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47226. {
  47227. anthro: {
  47228. height: math.unit(9, "feet"),
  47229. weight: math.unit(2076, "lb"),
  47230. name: "Anthro",
  47231. image: {
  47232. source: "./media/characters/abacus/anthro.svg",
  47233. extra: 1540/1494,
  47234. bottom: 233/1773
  47235. }
  47236. },
  47237. pigeon: {
  47238. height: math.unit(1, "feet"),
  47239. name: "Pigeon",
  47240. image: {
  47241. source: "./media/characters/abacus/pigeon.svg",
  47242. extra: 528/525,
  47243. bottom: 46/574
  47244. }
  47245. },
  47246. },
  47247. [
  47248. {
  47249. name: "Normal",
  47250. height: math.unit(9, "feet"),
  47251. default: true
  47252. },
  47253. ]
  47254. ))
  47255. characterMakers.push(() => makeCharacter(
  47256. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47257. {
  47258. side: {
  47259. height: math.unit(6, "feet"),
  47260. name: "Side",
  47261. image: {
  47262. source: "./media/characters/delkhan/side.svg",
  47263. extra: 1884/1786,
  47264. bottom: 308/2192
  47265. }
  47266. },
  47267. head: {
  47268. height: math.unit(3.38, "feet"),
  47269. name: "Head",
  47270. image: {
  47271. source: "./media/characters/delkhan/head.svg"
  47272. }
  47273. },
  47274. },
  47275. [
  47276. {
  47277. name: "Normal",
  47278. height: math.unit(72, "feet"),
  47279. default: true
  47280. },
  47281. {
  47282. name: "Giant",
  47283. height: math.unit(172, "feet")
  47284. },
  47285. ]
  47286. ))
  47287. characterMakers.push(() => makeCharacter(
  47288. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47289. {
  47290. standing: {
  47291. height: math.unit(6, "feet"),
  47292. name: "Standing",
  47293. image: {
  47294. source: "./media/characters/euchidat/standing.svg",
  47295. extra: 1612/1553,
  47296. bottom: 116/1728
  47297. }
  47298. },
  47299. leaning: {
  47300. height: math.unit(6, "feet"),
  47301. name: "Leaning",
  47302. image: {
  47303. source: "./media/characters/euchidat/leaning.svg",
  47304. extra: 1719/1674,
  47305. bottom: 27/1746
  47306. }
  47307. },
  47308. },
  47309. [
  47310. {
  47311. name: "Normal",
  47312. height: math.unit(175, "feet"),
  47313. default: true
  47314. },
  47315. {
  47316. name: "Megamacro",
  47317. height: math.unit(190, "miles")
  47318. },
  47319. {
  47320. name: "Gigamacro",
  47321. height: math.unit(190000, "miles")
  47322. },
  47323. ]
  47324. ))
  47325. characterMakers.push(() => makeCharacter(
  47326. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47327. {
  47328. front: {
  47329. height: math.unit(6, "feet"),
  47330. weight: math.unit(150, "lb"),
  47331. name: "Front",
  47332. image: {
  47333. source: "./media/characters/rebecca-stack/front.svg",
  47334. extra: 1256/1201,
  47335. bottom: 18/1274
  47336. }
  47337. },
  47338. },
  47339. [
  47340. {
  47341. name: "Normal",
  47342. height: math.unit(5 + 8/12, "feet"),
  47343. default: true
  47344. },
  47345. {
  47346. name: "Demolitionist",
  47347. height: math.unit(200, "feet")
  47348. },
  47349. {
  47350. name: "Out of Control",
  47351. height: math.unit(2, "miles")
  47352. },
  47353. {
  47354. name: "Giga",
  47355. height: math.unit(7200, "miles")
  47356. },
  47357. ]
  47358. ))
  47359. characterMakers.push(() => makeCharacter(
  47360. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47361. {
  47362. front: {
  47363. height: math.unit(6, "feet"),
  47364. weight: math.unit(150, "lb"),
  47365. name: "Front",
  47366. image: {
  47367. source: "./media/characters/jenny-cartwright/front.svg",
  47368. extra: 1384/1376,
  47369. bottom: 58/1442
  47370. }
  47371. },
  47372. },
  47373. [
  47374. {
  47375. name: "Normal",
  47376. height: math.unit(6 + 7/12, "feet"),
  47377. default: true
  47378. },
  47379. {
  47380. name: "Librarian",
  47381. height: math.unit(55, "feet")
  47382. },
  47383. {
  47384. name: "Sightseer",
  47385. height: math.unit(50, "miles")
  47386. },
  47387. {
  47388. name: "Giga",
  47389. height: math.unit(30000, "miles")
  47390. },
  47391. ]
  47392. ))
  47393. characterMakers.push(() => makeCharacter(
  47394. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47395. {
  47396. nude: {
  47397. height: math.unit(8, "feet"),
  47398. weight: math.unit(225, "lb"),
  47399. name: "Nude",
  47400. image: {
  47401. source: "./media/characters/marvy/nude.svg",
  47402. extra: 1900/1683,
  47403. bottom: 89/1989
  47404. }
  47405. },
  47406. dressed: {
  47407. height: math.unit(8, "feet"),
  47408. weight: math.unit(225, "lb"),
  47409. name: "Dressed",
  47410. image: {
  47411. source: "./media/characters/marvy/dressed.svg",
  47412. extra: 1900/1683,
  47413. bottom: 89/1989
  47414. }
  47415. },
  47416. head: {
  47417. height: math.unit(2.85, "feet"),
  47418. name: "Head",
  47419. image: {
  47420. source: "./media/characters/marvy/head.svg"
  47421. }
  47422. },
  47423. },
  47424. [
  47425. {
  47426. name: "Normal",
  47427. height: math.unit(8, "feet"),
  47428. default: true
  47429. },
  47430. ]
  47431. ))
  47432. characterMakers.push(() => makeCharacter(
  47433. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47434. {
  47435. front: {
  47436. height: math.unit(8, "feet"),
  47437. weight: math.unit(250, "lb"),
  47438. name: "Front",
  47439. image: {
  47440. source: "./media/characters/leah/front.svg",
  47441. extra: 1257/1149,
  47442. bottom: 109/1366
  47443. }
  47444. },
  47445. },
  47446. [
  47447. {
  47448. name: "Normal",
  47449. height: math.unit(8, "feet"),
  47450. default: true
  47451. },
  47452. {
  47453. name: "Minimacro",
  47454. height: math.unit(40, "feet")
  47455. },
  47456. {
  47457. name: "Macro",
  47458. height: math.unit(124, "feet")
  47459. },
  47460. {
  47461. name: "Megamacro",
  47462. height: math.unit(850, "feet")
  47463. },
  47464. ]
  47465. ))
  47466. characterMakers.push(() => makeCharacter(
  47467. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47468. {
  47469. side: {
  47470. height: math.unit(13 + 6/12, "feet"),
  47471. weight: math.unit(3200, "lb"),
  47472. name: "Side",
  47473. image: {
  47474. source: "./media/characters/alvir/side.svg",
  47475. extra: 896/589,
  47476. bottom: 26/922
  47477. }
  47478. },
  47479. },
  47480. [
  47481. {
  47482. name: "Normal",
  47483. height: math.unit(13 + 6/12, "feet"),
  47484. default: true
  47485. },
  47486. ]
  47487. ))
  47488. characterMakers.push(() => makeCharacter(
  47489. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47490. {
  47491. front: {
  47492. height: math.unit(5 + 4/12, "feet"),
  47493. weight: math.unit(236, "lb"),
  47494. name: "Front",
  47495. image: {
  47496. source: "./media/characters/zaina-khalil/front.svg",
  47497. extra: 1533/1485,
  47498. bottom: 94/1627
  47499. }
  47500. },
  47501. side: {
  47502. height: math.unit(5 + 4/12, "feet"),
  47503. weight: math.unit(236, "lb"),
  47504. name: "Side",
  47505. image: {
  47506. source: "./media/characters/zaina-khalil/side.svg",
  47507. extra: 1537/1498,
  47508. bottom: 66/1603
  47509. }
  47510. },
  47511. back: {
  47512. height: math.unit(5 + 4/12, "feet"),
  47513. weight: math.unit(236, "lb"),
  47514. name: "Back",
  47515. image: {
  47516. source: "./media/characters/zaina-khalil/back.svg",
  47517. extra: 1546/1494,
  47518. bottom: 89/1635
  47519. }
  47520. },
  47521. },
  47522. [
  47523. {
  47524. name: "Normal",
  47525. height: math.unit(5 + 4/12, "feet"),
  47526. default: true
  47527. },
  47528. ]
  47529. ))
  47530. characterMakers.push(() => makeCharacter(
  47531. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47532. {
  47533. side: {
  47534. height: math.unit(12, "feet"),
  47535. weight: math.unit(4000, "lb"),
  47536. name: "Side",
  47537. image: {
  47538. source: "./media/characters/terry/side.svg",
  47539. extra: 1518/1439,
  47540. bottom: 149/1667
  47541. }
  47542. },
  47543. },
  47544. [
  47545. {
  47546. name: "Normal",
  47547. height: math.unit(12, "feet"),
  47548. default: true
  47549. },
  47550. ]
  47551. ))
  47552. characterMakers.push(() => makeCharacter(
  47553. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47554. {
  47555. front: {
  47556. height: math.unit(12, "feet"),
  47557. weight: math.unit(1500, "lb"),
  47558. name: "Front",
  47559. image: {
  47560. source: "./media/characters/kahea/front.svg",
  47561. extra: 1722/1617,
  47562. bottom: 179/1901
  47563. }
  47564. },
  47565. },
  47566. [
  47567. {
  47568. name: "Normal",
  47569. height: math.unit(12, "feet"),
  47570. default: true
  47571. },
  47572. ]
  47573. ))
  47574. characterMakers.push(() => makeCharacter(
  47575. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47576. {
  47577. demonFront: {
  47578. height: math.unit(36, "feet"),
  47579. name: "Front",
  47580. image: {
  47581. source: "./media/characters/alex-xuria/demon-front.svg",
  47582. extra: 1705/1673,
  47583. bottom: 198/1903
  47584. },
  47585. form: "demon",
  47586. default: true
  47587. },
  47588. demonBack: {
  47589. height: math.unit(36, "feet"),
  47590. name: "Back",
  47591. image: {
  47592. source: "./media/characters/alex-xuria/demon-back.svg",
  47593. extra: 1725/1693,
  47594. bottom: 70/1795
  47595. },
  47596. form: "demon"
  47597. },
  47598. demonHead: {
  47599. height: math.unit(2.14, "meters"),
  47600. name: "Head",
  47601. image: {
  47602. source: "./media/characters/alex-xuria/demon-head.svg"
  47603. },
  47604. form: "demon"
  47605. },
  47606. demonHand: {
  47607. height: math.unit(1.61, "meters"),
  47608. name: "Hand",
  47609. image: {
  47610. source: "./media/characters/alex-xuria/demon-hand.svg"
  47611. },
  47612. form: "demon"
  47613. },
  47614. demonPaw: {
  47615. height: math.unit(1.35, "meters"),
  47616. name: "Paw",
  47617. image: {
  47618. source: "./media/characters/alex-xuria/demon-paw.svg"
  47619. },
  47620. form: "demon"
  47621. },
  47622. demonFoot: {
  47623. height: math.unit(2.2, "meters"),
  47624. name: "Foot",
  47625. image: {
  47626. source: "./media/characters/alex-xuria/demon-foot.svg"
  47627. },
  47628. form: "demon"
  47629. },
  47630. demonCock: {
  47631. height: math.unit(1.74, "meters"),
  47632. name: "Cock",
  47633. image: {
  47634. source: "./media/characters/alex-xuria/demon-cock.svg"
  47635. },
  47636. form: "demon"
  47637. },
  47638. demonTailClosed: {
  47639. height: math.unit(1.47, "meters"),
  47640. name: "Tail (Closed)",
  47641. image: {
  47642. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47643. },
  47644. form: "demon"
  47645. },
  47646. demonTailOpen: {
  47647. height: math.unit(2.85, "meters"),
  47648. name: "Tail (Open)",
  47649. image: {
  47650. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47651. },
  47652. form: "demon"
  47653. },
  47654. incubusFront: {
  47655. height: math.unit(12, "feet"),
  47656. name: "Front",
  47657. image: {
  47658. source: "./media/characters/alex-xuria/incubus-front.svg",
  47659. extra: 1754/1677,
  47660. bottom: 125/1879
  47661. },
  47662. form: "incubus",
  47663. default: true
  47664. },
  47665. incubusBack: {
  47666. height: math.unit(12, "feet"),
  47667. name: "Back",
  47668. image: {
  47669. source: "./media/characters/alex-xuria/incubus-back.svg",
  47670. extra: 1702/1647,
  47671. bottom: 30/1732
  47672. },
  47673. form: "incubus"
  47674. },
  47675. incubusHead: {
  47676. height: math.unit(3.45, "feet"),
  47677. name: "Head",
  47678. image: {
  47679. source: "./media/characters/alex-xuria/incubus-head.svg"
  47680. },
  47681. form: "incubus"
  47682. },
  47683. rabbitFront: {
  47684. height: math.unit(6, "feet"),
  47685. name: "Front",
  47686. image: {
  47687. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47688. extra: 1369/1349,
  47689. bottom: 45/1414
  47690. },
  47691. form: "rabbit",
  47692. default: true
  47693. },
  47694. rabbitSide: {
  47695. height: math.unit(6, "feet"),
  47696. name: "Side",
  47697. image: {
  47698. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47699. extra: 1370/1356,
  47700. bottom: 37/1407
  47701. },
  47702. form: "rabbit"
  47703. },
  47704. rabbitBack: {
  47705. height: math.unit(6, "feet"),
  47706. name: "Back",
  47707. image: {
  47708. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47709. extra: 1375/1358,
  47710. bottom: 43/1418
  47711. },
  47712. form: "rabbit"
  47713. },
  47714. },
  47715. [
  47716. {
  47717. name: "Normal",
  47718. height: math.unit(6, "feet"),
  47719. default: true,
  47720. form: "rabbit"
  47721. },
  47722. {
  47723. name: "Incubus",
  47724. height: math.unit(12, "feet"),
  47725. default: true,
  47726. form: "incubus"
  47727. },
  47728. {
  47729. name: "Demon",
  47730. height: math.unit(36, "feet"),
  47731. default: true,
  47732. form: "demon"
  47733. }
  47734. ],
  47735. {
  47736. "demon": {
  47737. name: "Demon",
  47738. default: true
  47739. },
  47740. "incubus": {
  47741. name: "Incubus",
  47742. },
  47743. "rabbit": {
  47744. name: "Rabbit"
  47745. }
  47746. }
  47747. ))
  47748. characterMakers.push(() => makeCharacter(
  47749. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47750. {
  47751. front: {
  47752. height: math.unit(7 + 5/12, "feet"),
  47753. weight: math.unit(510, "lb"),
  47754. name: "Front",
  47755. image: {
  47756. source: "./media/characters/syrup/front.svg",
  47757. extra: 932/916,
  47758. bottom: 26/958
  47759. }
  47760. },
  47761. },
  47762. [
  47763. {
  47764. name: "Normal",
  47765. height: math.unit(7 + 5/12, "feet"),
  47766. default: true
  47767. },
  47768. {
  47769. name: "Big",
  47770. height: math.unit(50, "feet")
  47771. },
  47772. {
  47773. name: "Macro",
  47774. height: math.unit(300, "feet")
  47775. },
  47776. {
  47777. name: "Megamacro",
  47778. height: math.unit(1, "mile")
  47779. },
  47780. ]
  47781. ))
  47782. characterMakers.push(() => makeCharacter(
  47783. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47784. {
  47785. front: {
  47786. height: math.unit(6 + 9/12, "feet"),
  47787. name: "Front",
  47788. image: {
  47789. source: "./media/characters/zeimne/front.svg",
  47790. extra: 1969/1806,
  47791. bottom: 53/2022
  47792. }
  47793. },
  47794. },
  47795. [
  47796. {
  47797. name: "Normal",
  47798. height: math.unit(6 + 9/12, "feet"),
  47799. default: true
  47800. },
  47801. {
  47802. name: "Giant",
  47803. height: math.unit(550, "feet")
  47804. },
  47805. {
  47806. name: "Mega",
  47807. height: math.unit(3, "miles")
  47808. },
  47809. {
  47810. name: "Giga",
  47811. height: math.unit(250, "miles")
  47812. },
  47813. {
  47814. name: "Tera",
  47815. height: math.unit(1, "AU")
  47816. },
  47817. ]
  47818. ))
  47819. characterMakers.push(() => makeCharacter(
  47820. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47821. {
  47822. front: {
  47823. height: math.unit(5 + 2/12, "feet"),
  47824. name: "Front",
  47825. image: {
  47826. source: "./media/characters/grar/front.svg",
  47827. extra: 1331/1119,
  47828. bottom: 60/1391
  47829. }
  47830. },
  47831. back: {
  47832. height: math.unit(5 + 2/12, "feet"),
  47833. name: "Back",
  47834. image: {
  47835. source: "./media/characters/grar/back.svg",
  47836. extra: 1385/1169,
  47837. bottom: 23/1408
  47838. }
  47839. },
  47840. },
  47841. [
  47842. {
  47843. name: "Normal",
  47844. height: math.unit(5 + 2/12, "feet"),
  47845. default: true
  47846. },
  47847. ]
  47848. ))
  47849. characterMakers.push(() => makeCharacter(
  47850. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47851. {
  47852. front: {
  47853. height: math.unit(13 + 7/12, "feet"),
  47854. weight: math.unit(2200, "lb"),
  47855. name: "Front",
  47856. image: {
  47857. source: "./media/characters/endraya/front.svg",
  47858. extra: 1289/1215,
  47859. bottom: 50/1339
  47860. }
  47861. },
  47862. nude: {
  47863. height: math.unit(13 + 7/12, "feet"),
  47864. weight: math.unit(2200, "lb"),
  47865. name: "Nude",
  47866. image: {
  47867. source: "./media/characters/endraya/nude.svg",
  47868. extra: 1247/1171,
  47869. bottom: 40/1287
  47870. }
  47871. },
  47872. head: {
  47873. height: math.unit(2.6, "feet"),
  47874. name: "Head",
  47875. image: {
  47876. source: "./media/characters/endraya/head.svg"
  47877. }
  47878. },
  47879. slit: {
  47880. height: math.unit(3.4, "feet"),
  47881. name: "Slit",
  47882. image: {
  47883. source: "./media/characters/endraya/slit.svg"
  47884. }
  47885. },
  47886. },
  47887. [
  47888. {
  47889. name: "Normal",
  47890. height: math.unit(13 + 7/12, "feet"),
  47891. default: true
  47892. },
  47893. {
  47894. name: "Macro",
  47895. height: math.unit(200, "feet")
  47896. },
  47897. ]
  47898. ))
  47899. characterMakers.push(() => makeCharacter(
  47900. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47901. {
  47902. front: {
  47903. height: math.unit(1.81, "meters"),
  47904. weight: math.unit(69, "kg"),
  47905. name: "Front",
  47906. image: {
  47907. source: "./media/characters/rodryana/front.svg",
  47908. extra: 2002/1921,
  47909. bottom: 53/2055
  47910. }
  47911. },
  47912. back: {
  47913. height: math.unit(1.81, "meters"),
  47914. weight: math.unit(69, "kg"),
  47915. name: "Back",
  47916. image: {
  47917. source: "./media/characters/rodryana/back.svg",
  47918. extra: 1993/1926,
  47919. bottom: 48/2041
  47920. }
  47921. },
  47922. maw: {
  47923. height: math.unit(0.19769417475, "meters"),
  47924. name: "Maw",
  47925. image: {
  47926. source: "./media/characters/rodryana/maw.svg"
  47927. }
  47928. },
  47929. slit: {
  47930. height: math.unit(0.31631067961, "meters"),
  47931. name: "Slit",
  47932. image: {
  47933. source: "./media/characters/rodryana/slit.svg"
  47934. }
  47935. },
  47936. },
  47937. [
  47938. {
  47939. name: "Normal",
  47940. height: math.unit(1.81, "meters")
  47941. },
  47942. {
  47943. name: "Mini Macro",
  47944. height: math.unit(181, "meters")
  47945. },
  47946. {
  47947. name: "Macro",
  47948. height: math.unit(452, "meters"),
  47949. default: true
  47950. },
  47951. {
  47952. name: "Mega Macro",
  47953. height: math.unit(1.375, "km")
  47954. },
  47955. {
  47956. name: "Giga Macro",
  47957. height: math.unit(13.575, "km")
  47958. },
  47959. ]
  47960. ))
  47961. characterMakers.push(() => makeCharacter(
  47962. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47963. {
  47964. front: {
  47965. height: math.unit(6, "feet"),
  47966. weight: math.unit(1000, "lb"),
  47967. name: "Front",
  47968. image: {
  47969. source: "./media/characters/asaya/front.svg",
  47970. extra: 1460/1200,
  47971. bottom: 71/1531
  47972. }
  47973. },
  47974. },
  47975. [
  47976. {
  47977. name: "Normal",
  47978. height: math.unit(8, "km"),
  47979. default: true
  47980. },
  47981. ]
  47982. ))
  47983. characterMakers.push(() => makeCharacter(
  47984. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47985. {
  47986. front: {
  47987. height: math.unit(3.5, "meters"),
  47988. name: "Front",
  47989. image: {
  47990. source: "./media/characters/sarzu-and-israz/front.svg",
  47991. extra: 1570/1558,
  47992. bottom: 150/1720
  47993. },
  47994. },
  47995. back: {
  47996. height: math.unit(3.5, "meters"),
  47997. name: "Back",
  47998. image: {
  47999. source: "./media/characters/sarzu-and-israz/back.svg",
  48000. extra: 1523/1509,
  48001. bottom: 132/1655
  48002. },
  48003. },
  48004. frontFemale: {
  48005. height: math.unit(3.5, "meters"),
  48006. name: "Front (Female)",
  48007. image: {
  48008. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48009. extra: 1570/1558,
  48010. bottom: 150/1720
  48011. },
  48012. },
  48013. frontHerm: {
  48014. height: math.unit(3.5, "meters"),
  48015. name: "Front (Herm)",
  48016. image: {
  48017. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48018. extra: 1570/1558,
  48019. bottom: 150/1720
  48020. },
  48021. },
  48022. },
  48023. [
  48024. {
  48025. name: "Normal",
  48026. height: math.unit(3.5, "meters"),
  48027. default: true,
  48028. },
  48029. {
  48030. name: "Macro",
  48031. height: math.unit(65.5, "meters"),
  48032. },
  48033. ],
  48034. ))
  48035. characterMakers.push(() => makeCharacter(
  48036. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48037. {
  48038. front: {
  48039. height: math.unit(6, "feet"),
  48040. weight: math.unit(250, "lb"),
  48041. name: "Front",
  48042. image: {
  48043. source: "./media/characters/zenimma/front.svg",
  48044. extra: 1346/1320,
  48045. bottom: 58/1404
  48046. }
  48047. },
  48048. back: {
  48049. height: math.unit(6, "feet"),
  48050. weight: math.unit(250, "lb"),
  48051. name: "Back",
  48052. image: {
  48053. source: "./media/characters/zenimma/back.svg",
  48054. extra: 1324/1308,
  48055. bottom: 44/1368
  48056. }
  48057. },
  48058. dick: {
  48059. height: math.unit(1.44, "feet"),
  48060. name: "Dick",
  48061. image: {
  48062. source: "./media/characters/zenimma/dick.svg"
  48063. }
  48064. },
  48065. },
  48066. [
  48067. {
  48068. name: "Canon Height",
  48069. height: math.unit(66, "miles"),
  48070. default: true
  48071. },
  48072. ]
  48073. ))
  48074. characterMakers.push(() => makeCharacter(
  48075. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48076. {
  48077. nude: {
  48078. height: math.unit(6, "feet"),
  48079. weight: math.unit(150, "lb"),
  48080. name: "Nude",
  48081. image: {
  48082. source: "./media/characters/shavon/nude.svg",
  48083. extra: 1242/1096,
  48084. bottom: 98/1340
  48085. }
  48086. },
  48087. dressed: {
  48088. height: math.unit(6, "feet"),
  48089. weight: math.unit(150, "lb"),
  48090. name: "Dressed",
  48091. image: {
  48092. source: "./media/characters/shavon/dressed.svg",
  48093. extra: 1242/1096,
  48094. bottom: 98/1340
  48095. }
  48096. },
  48097. },
  48098. [
  48099. {
  48100. name: "Macro",
  48101. height: math.unit(255, "feet"),
  48102. default: true
  48103. },
  48104. ]
  48105. ))
  48106. characterMakers.push(() => makeCharacter(
  48107. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48108. {
  48109. front: {
  48110. height: math.unit(6, "feet"),
  48111. name: "Front",
  48112. image: {
  48113. source: "./media/characters/steph/front.svg",
  48114. extra: 1430/1330,
  48115. bottom: 54/1484
  48116. }
  48117. },
  48118. },
  48119. [
  48120. {
  48121. name: "Normal",
  48122. height: math.unit(6, "feet"),
  48123. default: true
  48124. },
  48125. ]
  48126. ))
  48127. characterMakers.push(() => makeCharacter(
  48128. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48129. {
  48130. front: {
  48131. height: math.unit(9, "feet"),
  48132. weight: math.unit(400, "lb"),
  48133. name: "Front",
  48134. image: {
  48135. source: "./media/characters/kil'aman/front.svg",
  48136. extra: 1210/1159,
  48137. bottom: 109/1319
  48138. }
  48139. },
  48140. head: {
  48141. height: math.unit(2.14, "feet"),
  48142. name: "Head",
  48143. image: {
  48144. source: "./media/characters/kil'aman/head.svg"
  48145. }
  48146. },
  48147. maw: {
  48148. height: math.unit(1.21, "feet"),
  48149. name: "Maw",
  48150. image: {
  48151. source: "./media/characters/kil'aman/maw.svg"
  48152. }
  48153. },
  48154. foot: {
  48155. height: math.unit(1.7, "feet"),
  48156. name: "Foot",
  48157. image: {
  48158. source: "./media/characters/kil'aman/foot.svg"
  48159. }
  48160. },
  48161. dick: {
  48162. height: math.unit(2.1, "feet"),
  48163. name: "Dick",
  48164. image: {
  48165. source: "./media/characters/kil'aman/dick.svg"
  48166. }
  48167. },
  48168. },
  48169. [
  48170. {
  48171. name: "Normal",
  48172. height: math.unit(9, "feet")
  48173. },
  48174. {
  48175. name: "Canon Height",
  48176. height: math.unit(10, "miles"),
  48177. default: true
  48178. },
  48179. {
  48180. name: "Maximum",
  48181. height: math.unit(6e9, "miles")
  48182. },
  48183. ]
  48184. ))
  48185. characterMakers.push(() => makeCharacter(
  48186. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48187. {
  48188. front: {
  48189. height: math.unit(90, "feet"),
  48190. weight: math.unit(675000, "lb"),
  48191. name: "Front",
  48192. image: {
  48193. source: "./media/characters/qadan/front.svg",
  48194. extra: 1012/1004,
  48195. bottom: 78/1090
  48196. }
  48197. },
  48198. back: {
  48199. height: math.unit(90, "feet"),
  48200. weight: math.unit(675000, "lb"),
  48201. name: "Back",
  48202. image: {
  48203. source: "./media/characters/qadan/back.svg",
  48204. extra: 1042/1031,
  48205. bottom: 55/1097
  48206. }
  48207. },
  48208. armored: {
  48209. height: math.unit(90, "feet"),
  48210. weight: math.unit(675000, "lb"),
  48211. name: "Armored",
  48212. image: {
  48213. source: "./media/characters/qadan/armored.svg",
  48214. extra: 1047/1037,
  48215. bottom: 48/1095
  48216. }
  48217. },
  48218. },
  48219. [
  48220. {
  48221. name: "Normal",
  48222. height: math.unit(90, "feet"),
  48223. default: true
  48224. },
  48225. ]
  48226. ))
  48227. characterMakers.push(() => makeCharacter(
  48228. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48229. {
  48230. front: {
  48231. height: math.unit(6, "feet"),
  48232. weight: math.unit(225, "lb"),
  48233. name: "Front",
  48234. image: {
  48235. source: "./media/characters/brooke/front.svg",
  48236. extra: 1050/1010,
  48237. bottom: 66/1116
  48238. }
  48239. },
  48240. back: {
  48241. height: math.unit(6, "feet"),
  48242. weight: math.unit(225, "lb"),
  48243. name: "Back",
  48244. image: {
  48245. source: "./media/characters/brooke/back.svg",
  48246. extra: 1053/1013,
  48247. bottom: 41/1094
  48248. }
  48249. },
  48250. dressed: {
  48251. height: math.unit(6, "feet"),
  48252. weight: math.unit(225, "lb"),
  48253. name: "Dressed",
  48254. image: {
  48255. source: "./media/characters/brooke/dressed.svg",
  48256. extra: 1050/1010,
  48257. bottom: 66/1116
  48258. }
  48259. },
  48260. },
  48261. [
  48262. {
  48263. name: "Canon Height",
  48264. height: math.unit(500, "miles"),
  48265. default: true
  48266. },
  48267. ]
  48268. ))
  48269. characterMakers.push(() => makeCharacter(
  48270. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48271. {
  48272. front: {
  48273. height: math.unit(6 + 2/12, "feet"),
  48274. weight: math.unit(210, "lb"),
  48275. name: "Front",
  48276. image: {
  48277. source: "./media/characters/wubs/front.svg",
  48278. extra: 1345/1325,
  48279. bottom: 70/1415
  48280. }
  48281. },
  48282. back: {
  48283. height: math.unit(6 + 2/12, "feet"),
  48284. weight: math.unit(210, "lb"),
  48285. name: "Back",
  48286. image: {
  48287. source: "./media/characters/wubs/back.svg",
  48288. extra: 1296/1275,
  48289. bottom: 58/1354
  48290. }
  48291. },
  48292. },
  48293. [
  48294. {
  48295. name: "Normal",
  48296. height: math.unit(6 + 2/12, "feet"),
  48297. default: true
  48298. },
  48299. {
  48300. name: "Macro",
  48301. height: math.unit(1000, "feet")
  48302. },
  48303. {
  48304. name: "Megamacro",
  48305. height: math.unit(1, "mile")
  48306. },
  48307. ]
  48308. ))
  48309. characterMakers.push(() => makeCharacter(
  48310. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48311. {
  48312. front: {
  48313. height: math.unit(4, "feet"),
  48314. weight: math.unit(120, "lb"),
  48315. name: "Front",
  48316. image: {
  48317. source: "./media/characters/blue/front.svg",
  48318. extra: 1636/1525,
  48319. bottom: 43/1679
  48320. }
  48321. },
  48322. back: {
  48323. height: math.unit(4, "feet"),
  48324. weight: math.unit(120, "lb"),
  48325. name: "Back",
  48326. image: {
  48327. source: "./media/characters/blue/back.svg",
  48328. extra: 1660/1560,
  48329. bottom: 57/1717
  48330. }
  48331. },
  48332. paws: {
  48333. height: math.unit(0.826, "feet"),
  48334. name: "Paws",
  48335. image: {
  48336. source: "./media/characters/blue/paws.svg"
  48337. }
  48338. },
  48339. },
  48340. [
  48341. {
  48342. name: "Micro",
  48343. height: math.unit(3, "inches")
  48344. },
  48345. {
  48346. name: "Normal",
  48347. height: math.unit(4, "feet"),
  48348. default: true
  48349. },
  48350. {
  48351. name: "Femenine Form",
  48352. height: math.unit(14, "feet")
  48353. },
  48354. {
  48355. name: "Werebat Form",
  48356. height: math.unit(18, "feet")
  48357. },
  48358. ]
  48359. ))
  48360. characterMakers.push(() => makeCharacter(
  48361. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48362. {
  48363. female: {
  48364. height: math.unit(7 + 4/12, "feet"),
  48365. weight: math.unit(243, "lb"),
  48366. name: "Female",
  48367. image: {
  48368. source: "./media/characters/kaya/female.svg",
  48369. extra: 975/898,
  48370. bottom: 34/1009
  48371. }
  48372. },
  48373. herm: {
  48374. height: math.unit(7 + 4/12, "feet"),
  48375. weight: math.unit(243, "lb"),
  48376. name: "Herm",
  48377. image: {
  48378. source: "./media/characters/kaya/herm.svg",
  48379. extra: 975/898,
  48380. bottom: 34/1009
  48381. }
  48382. },
  48383. },
  48384. [
  48385. {
  48386. name: "Normal",
  48387. height: math.unit(7 + 4/12, "feet"),
  48388. default: true
  48389. },
  48390. ]
  48391. ))
  48392. characterMakers.push(() => makeCharacter(
  48393. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48394. {
  48395. female: {
  48396. height: math.unit(9 + 4/12, "feet"),
  48397. weight: math.unit(398, "lb"),
  48398. name: "Female",
  48399. image: {
  48400. source: "./media/characters/kassandra/female.svg",
  48401. extra: 908/839,
  48402. bottom: 61/969
  48403. }
  48404. },
  48405. intersex: {
  48406. height: math.unit(9 + 4/12, "feet"),
  48407. weight: math.unit(398, "lb"),
  48408. name: "Intersex",
  48409. image: {
  48410. source: "./media/characters/kassandra/intersex.svg",
  48411. extra: 908/839,
  48412. bottom: 61/969
  48413. }
  48414. },
  48415. },
  48416. [
  48417. {
  48418. name: "Normal",
  48419. height: math.unit(9 + 4/12, "feet"),
  48420. default: true
  48421. },
  48422. ]
  48423. ))
  48424. characterMakers.push(() => makeCharacter(
  48425. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48426. {
  48427. front: {
  48428. height: math.unit(3, "meters"),
  48429. name: "Front",
  48430. image: {
  48431. source: "./media/characters/amy/front.svg",
  48432. extra: 1380/1343,
  48433. bottom: 70/1450
  48434. }
  48435. },
  48436. back: {
  48437. height: math.unit(3, "meters"),
  48438. name: "Back",
  48439. image: {
  48440. source: "./media/characters/amy/back.svg",
  48441. extra: 1380/1347,
  48442. bottom: 66/1446
  48443. }
  48444. },
  48445. },
  48446. [
  48447. {
  48448. name: "Normal",
  48449. height: math.unit(3, "meters"),
  48450. default: true
  48451. },
  48452. ]
  48453. ))
  48454. characterMakers.push(() => makeCharacter(
  48455. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48456. {
  48457. side: {
  48458. height: math.unit(47, "cm"),
  48459. weight: math.unit(10.8, "kg"),
  48460. name: "Side",
  48461. image: {
  48462. source: "./media/characters/alphaschakal/side.svg",
  48463. extra: 1058/568,
  48464. bottom: 62/1120
  48465. }
  48466. },
  48467. back: {
  48468. height: math.unit(78, "cm"),
  48469. weight: math.unit(10.8, "kg"),
  48470. name: "Back",
  48471. image: {
  48472. source: "./media/characters/alphaschakal/back.svg",
  48473. extra: 1102/942,
  48474. bottom: 185/1287
  48475. }
  48476. },
  48477. head: {
  48478. height: math.unit(28, "cm"),
  48479. name: "Head",
  48480. image: {
  48481. source: "./media/characters/alphaschakal/head.svg",
  48482. extra: 696/508,
  48483. bottom: 0/696
  48484. }
  48485. },
  48486. paw: {
  48487. height: math.unit(16, "cm"),
  48488. name: "Paw",
  48489. image: {
  48490. source: "./media/characters/alphaschakal/paw.svg"
  48491. }
  48492. },
  48493. },
  48494. [
  48495. {
  48496. name: "Normal",
  48497. height: math.unit(47, "cm"),
  48498. default: true
  48499. },
  48500. {
  48501. name: "Macro",
  48502. height: math.unit(340, "cm")
  48503. },
  48504. ]
  48505. ))
  48506. characterMakers.push(() => makeCharacter(
  48507. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48508. {
  48509. front: {
  48510. height: math.unit(36, "earths"),
  48511. name: "Front",
  48512. image: {
  48513. source: "./media/characters/ecobyss/front.svg",
  48514. extra: 1282/1215,
  48515. bottom: 11/1293
  48516. }
  48517. },
  48518. back: {
  48519. height: math.unit(36, "earths"),
  48520. name: "Back",
  48521. image: {
  48522. source: "./media/characters/ecobyss/back.svg",
  48523. extra: 1291/1222,
  48524. bottom: 8/1299
  48525. }
  48526. },
  48527. },
  48528. [
  48529. {
  48530. name: "Normal",
  48531. height: math.unit(36, "earths"),
  48532. default: true
  48533. },
  48534. ]
  48535. ))
  48536. characterMakers.push(() => makeCharacter(
  48537. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48538. {
  48539. front: {
  48540. height: math.unit(12, "feet"),
  48541. name: "Front",
  48542. image: {
  48543. source: "./media/characters/vasuk/front.svg",
  48544. extra: 1326/1207,
  48545. bottom: 64/1390
  48546. }
  48547. },
  48548. },
  48549. [
  48550. {
  48551. name: "Normal",
  48552. height: math.unit(12, "feet"),
  48553. default: true
  48554. },
  48555. ]
  48556. ))
  48557. characterMakers.push(() => makeCharacter(
  48558. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48559. {
  48560. side: {
  48561. height: math.unit(100, "feet"),
  48562. name: "Side",
  48563. image: {
  48564. source: "./media/characters/linneaus/side.svg",
  48565. extra: 987/807,
  48566. bottom: 47/1034
  48567. }
  48568. },
  48569. },
  48570. [
  48571. {
  48572. name: "Macro",
  48573. height: math.unit(100, "feet"),
  48574. default: true
  48575. },
  48576. ]
  48577. ))
  48578. characterMakers.push(() => makeCharacter(
  48579. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48580. {
  48581. front: {
  48582. height: math.unit(8, "feet"),
  48583. weight: math.unit(1200, "lb"),
  48584. name: "Front",
  48585. image: {
  48586. source: "./media/characters/nyterious-daligdig/front.svg",
  48587. extra: 1284/1094,
  48588. bottom: 84/1368
  48589. }
  48590. },
  48591. back: {
  48592. height: math.unit(8, "feet"),
  48593. weight: math.unit(1200, "lb"),
  48594. name: "Back",
  48595. image: {
  48596. source: "./media/characters/nyterious-daligdig/back.svg",
  48597. extra: 1301/1121,
  48598. bottom: 129/1430
  48599. }
  48600. },
  48601. mouth: {
  48602. height: math.unit(1.464, "feet"),
  48603. name: "Mouth",
  48604. image: {
  48605. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48606. }
  48607. },
  48608. },
  48609. [
  48610. {
  48611. name: "Small",
  48612. height: math.unit(8, "feet"),
  48613. default: true
  48614. },
  48615. {
  48616. name: "Normal",
  48617. height: math.unit(15, "feet")
  48618. },
  48619. {
  48620. name: "Macro",
  48621. height: math.unit(90, "feet")
  48622. },
  48623. ]
  48624. ))
  48625. characterMakers.push(() => makeCharacter(
  48626. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48627. {
  48628. front: {
  48629. height: math.unit(7 + 4/12, "feet"),
  48630. weight: math.unit(252, "lb"),
  48631. name: "Front",
  48632. image: {
  48633. source: "./media/characters/bandel/front.svg",
  48634. extra: 1946/1775,
  48635. bottom: 26/1972
  48636. }
  48637. },
  48638. back: {
  48639. height: math.unit(7 + 4/12, "feet"),
  48640. weight: math.unit(252, "lb"),
  48641. name: "Back",
  48642. image: {
  48643. source: "./media/characters/bandel/back.svg",
  48644. extra: 1940/1770,
  48645. bottom: 25/1965
  48646. }
  48647. },
  48648. maw: {
  48649. height: math.unit(2.15, "feet"),
  48650. name: "Maw",
  48651. image: {
  48652. source: "./media/characters/bandel/maw.svg"
  48653. }
  48654. },
  48655. stomach: {
  48656. height: math.unit(1.95, "feet"),
  48657. name: "Stomach",
  48658. image: {
  48659. source: "./media/characters/bandel/stomach.svg"
  48660. }
  48661. },
  48662. },
  48663. [
  48664. {
  48665. name: "Normal",
  48666. height: math.unit(7 + 4/12, "feet"),
  48667. default: true
  48668. },
  48669. ]
  48670. ))
  48671. characterMakers.push(() => makeCharacter(
  48672. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48673. {
  48674. front: {
  48675. height: math.unit(10 + 5/12, "feet"),
  48676. weight: math.unit(773.5, "kg"),
  48677. name: "Front",
  48678. image: {
  48679. source: "./media/characters/zed/front.svg",
  48680. extra: 987/941,
  48681. bottom: 52/1039
  48682. }
  48683. },
  48684. },
  48685. [
  48686. {
  48687. name: "Short",
  48688. height: math.unit(5 + 4/12, "feet")
  48689. },
  48690. {
  48691. name: "Average",
  48692. height: math.unit(10 + 5/12, "feet"),
  48693. default: true
  48694. },
  48695. {
  48696. name: "Mini-Macro",
  48697. height: math.unit(24 + 9/12, "feet")
  48698. },
  48699. {
  48700. name: "Macro",
  48701. height: math.unit(249, "feet")
  48702. },
  48703. {
  48704. name: "Mega-Macro",
  48705. height: math.unit(12490, "feet")
  48706. },
  48707. {
  48708. name: "Giga-Macro",
  48709. height: math.unit(24.9, "miles")
  48710. },
  48711. {
  48712. name: "Tera-Macro",
  48713. height: math.unit(24900, "miles")
  48714. },
  48715. {
  48716. name: "Cosmic Scale",
  48717. height: math.unit(38.9, "lightyears")
  48718. },
  48719. {
  48720. name: "Universal Scale",
  48721. height: math.unit(138e12, "lightyears")
  48722. },
  48723. ]
  48724. ))
  48725. characterMakers.push(() => makeCharacter(
  48726. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48727. {
  48728. front: {
  48729. height: math.unit(1561, "inches"),
  48730. name: "Front",
  48731. image: {
  48732. source: "./media/characters/ivan/front.svg",
  48733. extra: 1126/1071,
  48734. bottom: 26/1152
  48735. }
  48736. },
  48737. back: {
  48738. height: math.unit(1561, "inches"),
  48739. name: "Back",
  48740. image: {
  48741. source: "./media/characters/ivan/back.svg",
  48742. extra: 1134/1079,
  48743. bottom: 30/1164
  48744. }
  48745. },
  48746. },
  48747. [
  48748. {
  48749. name: "Normal",
  48750. height: math.unit(1561, "inches"),
  48751. default: true
  48752. },
  48753. ]
  48754. ))
  48755. characterMakers.push(() => makeCharacter(
  48756. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48757. {
  48758. front: {
  48759. height: math.unit(5 + 7/12, "feet"),
  48760. weight: math.unit(150, "lb"),
  48761. name: "Front",
  48762. image: {
  48763. source: "./media/characters/robin-arctic-hare/front.svg",
  48764. extra: 1148/974,
  48765. bottom: 20/1168
  48766. }
  48767. },
  48768. },
  48769. [
  48770. {
  48771. name: "Normal",
  48772. height: math.unit(5 + 7/12, "feet"),
  48773. default: true
  48774. },
  48775. ]
  48776. ))
  48777. characterMakers.push(() => makeCharacter(
  48778. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48779. {
  48780. side: {
  48781. height: math.unit(5, "feet"),
  48782. name: "Side",
  48783. image: {
  48784. source: "./media/characters/birch/side.svg",
  48785. extra: 985/796,
  48786. bottom: 111/1096
  48787. }
  48788. },
  48789. },
  48790. [
  48791. {
  48792. name: "Normal",
  48793. height: math.unit(5, "feet"),
  48794. default: true
  48795. },
  48796. ]
  48797. ))
  48798. characterMakers.push(() => makeCharacter(
  48799. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48800. {
  48801. front: {
  48802. height: math.unit(4, "feet"),
  48803. name: "Front",
  48804. image: {
  48805. source: "./media/characters/rasp/front.svg",
  48806. extra: 561/478,
  48807. bottom: 74/635
  48808. }
  48809. },
  48810. },
  48811. [
  48812. {
  48813. name: "Normal",
  48814. height: math.unit(4, "feet"),
  48815. default: true
  48816. },
  48817. ]
  48818. ))
  48819. characterMakers.push(() => makeCharacter(
  48820. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48821. {
  48822. front: {
  48823. height: math.unit(4 + 6/12, "feet"),
  48824. name: "Front",
  48825. image: {
  48826. source: "./media/characters/agatha/front.svg",
  48827. extra: 947/933,
  48828. bottom: 42/989
  48829. }
  48830. },
  48831. back: {
  48832. height: math.unit(4 + 6/12, "feet"),
  48833. name: "Back",
  48834. image: {
  48835. source: "./media/characters/agatha/back.svg",
  48836. extra: 935/922,
  48837. bottom: 48/983
  48838. }
  48839. },
  48840. },
  48841. [
  48842. {
  48843. name: "Normal",
  48844. height: math.unit(4 + 6 /12, "feet"),
  48845. default: true
  48846. },
  48847. {
  48848. name: "Max Size",
  48849. height: math.unit(500, "feet")
  48850. },
  48851. ]
  48852. ))
  48853. characterMakers.push(() => makeCharacter(
  48854. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48855. {
  48856. side: {
  48857. height: math.unit(30, "feet"),
  48858. name: "Side",
  48859. image: {
  48860. source: "./media/characters/roggy/side.svg",
  48861. extra: 909/643,
  48862. bottom: 63/972
  48863. }
  48864. },
  48865. lounging: {
  48866. height: math.unit(20, "feet"),
  48867. name: "Lounging",
  48868. image: {
  48869. source: "./media/characters/roggy/lounging.svg",
  48870. extra: 643/479,
  48871. bottom: 145/788
  48872. }
  48873. },
  48874. handpaw: {
  48875. height: math.unit(13.1, "feet"),
  48876. name: "Handpaw",
  48877. image: {
  48878. source: "./media/characters/roggy/handpaw.svg"
  48879. }
  48880. },
  48881. footpaw: {
  48882. height: math.unit(15.8, "feet"),
  48883. name: "Footpaw",
  48884. image: {
  48885. source: "./media/characters/roggy/footpaw.svg"
  48886. }
  48887. },
  48888. },
  48889. [
  48890. {
  48891. name: "Menacing",
  48892. height: math.unit(30, "feet"),
  48893. default: true
  48894. },
  48895. ]
  48896. ))
  48897. characterMakers.push(() => makeCharacter(
  48898. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48899. {
  48900. front: {
  48901. height: math.unit(5 + 7/12, "feet"),
  48902. weight: math.unit(135, "lb"),
  48903. name: "Front",
  48904. image: {
  48905. source: "./media/characters/naomi/front.svg",
  48906. extra: 1209/1154,
  48907. bottom: 129/1338
  48908. }
  48909. },
  48910. back: {
  48911. height: math.unit(5 + 7/12, "feet"),
  48912. weight: math.unit(135, "lb"),
  48913. name: "Back",
  48914. image: {
  48915. source: "./media/characters/naomi/back.svg",
  48916. extra: 1252/1190,
  48917. bottom: 23/1275
  48918. }
  48919. },
  48920. },
  48921. [
  48922. {
  48923. name: "Normal",
  48924. height: math.unit(5 + 7 /12, "feet"),
  48925. default: true
  48926. },
  48927. ]
  48928. ))
  48929. characterMakers.push(() => makeCharacter(
  48930. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48931. {
  48932. side: {
  48933. height: math.unit(35, "meters"),
  48934. name: "Side",
  48935. image: {
  48936. source: "./media/characters/kimpi/side.svg",
  48937. extra: 419/382,
  48938. bottom: 63/482
  48939. }
  48940. },
  48941. hand: {
  48942. height: math.unit(8.96, "meters"),
  48943. name: "Hand",
  48944. image: {
  48945. source: "./media/characters/kimpi/hand.svg"
  48946. }
  48947. },
  48948. },
  48949. [
  48950. {
  48951. name: "Normal",
  48952. height: math.unit(35, "meters"),
  48953. default: true
  48954. },
  48955. ]
  48956. ))
  48957. characterMakers.push(() => makeCharacter(
  48958. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48959. {
  48960. front: {
  48961. height: math.unit(4 + 4/12, "feet"),
  48962. name: "Front",
  48963. image: {
  48964. source: "./media/characters/pepper-purrloin/front.svg",
  48965. extra: 1141/1024,
  48966. bottom: 21/1162
  48967. }
  48968. },
  48969. },
  48970. [
  48971. {
  48972. name: "Normal",
  48973. height: math.unit(4 + 4/12, "feet"),
  48974. default: true
  48975. },
  48976. ]
  48977. ))
  48978. characterMakers.push(() => makeCharacter(
  48979. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48980. {
  48981. front: {
  48982. height: math.unit(6 + 2/12, "feet"),
  48983. name: "Front",
  48984. image: {
  48985. source: "./media/characters/raphael/front.svg",
  48986. extra: 1101/962,
  48987. bottom: 59/1160
  48988. }
  48989. },
  48990. },
  48991. [
  48992. {
  48993. name: "Normal",
  48994. height: math.unit(6 + 2/12, "feet"),
  48995. default: true
  48996. },
  48997. ]
  48998. ))
  48999. characterMakers.push(() => makeCharacter(
  49000. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49001. {
  49002. front: {
  49003. height: math.unit(6, "feet"),
  49004. weight: math.unit(150, "lb"),
  49005. name: "Front",
  49006. image: {
  49007. source: "./media/characters/victor-williams/front.svg",
  49008. extra: 1894/1825,
  49009. bottom: 67/1961
  49010. }
  49011. },
  49012. },
  49013. [
  49014. {
  49015. name: "Normal",
  49016. height: math.unit(6, "feet"),
  49017. default: true
  49018. },
  49019. ]
  49020. ))
  49021. characterMakers.push(() => makeCharacter(
  49022. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49023. {
  49024. front: {
  49025. height: math.unit(5 + 8/12, "feet"),
  49026. weight: math.unit(150, "lb"),
  49027. name: "Front",
  49028. image: {
  49029. source: "./media/characters/rachel/front.svg",
  49030. extra: 1902/1787,
  49031. bottom: 46/1948
  49032. }
  49033. },
  49034. },
  49035. [
  49036. {
  49037. name: "Base Height",
  49038. height: math.unit(5 + 8/12, "feet"),
  49039. default: true
  49040. },
  49041. {
  49042. name: "Macro",
  49043. height: math.unit(200, "feet")
  49044. },
  49045. {
  49046. name: "Mega Macro",
  49047. height: math.unit(1, "mile")
  49048. },
  49049. {
  49050. name: "Giga Macro",
  49051. height: math.unit(1500, "miles")
  49052. },
  49053. {
  49054. name: "Tera Macro",
  49055. height: math.unit(8000, "miles")
  49056. },
  49057. {
  49058. name: "Tera Macro+",
  49059. height: math.unit(2e5, "miles")
  49060. },
  49061. ]
  49062. ))
  49063. characterMakers.push(() => makeCharacter(
  49064. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49065. {
  49066. front: {
  49067. height: math.unit(6.5, "feet"),
  49068. name: "Front",
  49069. image: {
  49070. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49071. extra: 860/819,
  49072. bottom: 307/1167
  49073. }
  49074. },
  49075. back: {
  49076. height: math.unit(6.5, "feet"),
  49077. name: "Back",
  49078. image: {
  49079. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49080. extra: 880/837,
  49081. bottom: 395/1275
  49082. }
  49083. },
  49084. sleeping: {
  49085. height: math.unit(2.79, "feet"),
  49086. name: "Sleeping",
  49087. image: {
  49088. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49089. extra: 465/383,
  49090. bottom: 263/728
  49091. }
  49092. },
  49093. maw: {
  49094. height: math.unit(2.52, "feet"),
  49095. name: "Maw",
  49096. image: {
  49097. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49098. }
  49099. },
  49100. },
  49101. [
  49102. {
  49103. name: "Normal",
  49104. height: math.unit(6.5, "feet"),
  49105. default: true
  49106. },
  49107. ]
  49108. ))
  49109. characterMakers.push(() => makeCharacter(
  49110. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49111. {
  49112. front: {
  49113. height: math.unit(5, "feet"),
  49114. name: "Front",
  49115. image: {
  49116. source: "./media/characters/nova-nerium/front.svg",
  49117. extra: 1548/1392,
  49118. bottom: 374/1922
  49119. }
  49120. },
  49121. back: {
  49122. height: math.unit(5, "feet"),
  49123. name: "Back",
  49124. image: {
  49125. source: "./media/characters/nova-nerium/back.svg",
  49126. extra: 1658/1468,
  49127. bottom: 257/1915
  49128. }
  49129. },
  49130. },
  49131. [
  49132. {
  49133. name: "Normal",
  49134. height: math.unit(5, "feet"),
  49135. default: true
  49136. },
  49137. ]
  49138. ))
  49139. characterMakers.push(() => makeCharacter(
  49140. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49141. {
  49142. front: {
  49143. height: math.unit(5 + 4/12, "feet"),
  49144. name: "Front",
  49145. image: {
  49146. source: "./media/characters/ashe-pyriph/front.svg",
  49147. extra: 1935/1747,
  49148. bottom: 60/1995
  49149. }
  49150. },
  49151. },
  49152. [
  49153. {
  49154. name: "Normal",
  49155. height: math.unit(5 + 4/12, "feet"),
  49156. default: true
  49157. },
  49158. ]
  49159. ))
  49160. characterMakers.push(() => makeCharacter(
  49161. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49162. {
  49163. front: {
  49164. height: math.unit(8.7, "feet"),
  49165. name: "Front",
  49166. image: {
  49167. source: "./media/characters/flicker-wisp/front.svg",
  49168. extra: 1835/1613,
  49169. bottom: 449/2284
  49170. }
  49171. },
  49172. side: {
  49173. height: math.unit(8.7, "feet"),
  49174. name: "Side",
  49175. image: {
  49176. source: "./media/characters/flicker-wisp/side.svg",
  49177. extra: 1841/1642,
  49178. bottom: 336/2177
  49179. },
  49180. default: true
  49181. },
  49182. maw: {
  49183. height: math.unit(3.35, "feet"),
  49184. name: "Maw",
  49185. image: {
  49186. source: "./media/characters/flicker-wisp/maw.svg",
  49187. extra: 2338/1506,
  49188. bottom: 0/2338
  49189. }
  49190. },
  49191. ovipositor: {
  49192. height: math.unit(4.95, "feet"),
  49193. name: "Ovipositor",
  49194. image: {
  49195. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49196. }
  49197. },
  49198. egg: {
  49199. height: math.unit(0.385, "feet"),
  49200. weight: math.unit(2, "lb"),
  49201. name: "Egg",
  49202. image: {
  49203. source: "./media/characters/flicker-wisp/egg.svg"
  49204. }
  49205. },
  49206. },
  49207. [
  49208. {
  49209. name: "Normal",
  49210. height: math.unit(8.7, "feet"),
  49211. default: true
  49212. },
  49213. ]
  49214. ))
  49215. characterMakers.push(() => makeCharacter(
  49216. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49217. {
  49218. side: {
  49219. height: math.unit(11, "feet"),
  49220. name: "Side",
  49221. image: {
  49222. source: "./media/characters/faefnul/side.svg",
  49223. extra: 1100/1007,
  49224. bottom: 0/1100
  49225. }
  49226. },
  49227. },
  49228. [
  49229. {
  49230. name: "Normal",
  49231. height: math.unit(11, "feet"),
  49232. default: true
  49233. },
  49234. ]
  49235. ))
  49236. characterMakers.push(() => makeCharacter(
  49237. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49238. {
  49239. front: {
  49240. height: math.unit(6 + 2/12, "feet"),
  49241. name: "Front",
  49242. image: {
  49243. source: "./media/characters/shady/front.svg",
  49244. extra: 502/461,
  49245. bottom: 9/511
  49246. }
  49247. },
  49248. kneeling: {
  49249. height: math.unit(4.6, "feet"),
  49250. name: "Kneeling",
  49251. image: {
  49252. source: "./media/characters/shady/kneeling.svg",
  49253. extra: 1328/1219,
  49254. bottom: 117/1445
  49255. }
  49256. },
  49257. maw: {
  49258. height: math.unit(2, "feet"),
  49259. name: "Maw",
  49260. image: {
  49261. source: "./media/characters/shady/maw.svg"
  49262. }
  49263. },
  49264. },
  49265. [
  49266. {
  49267. name: "Nano",
  49268. height: math.unit(1, "mm")
  49269. },
  49270. {
  49271. name: "Micro",
  49272. height: math.unit(12, "mm")
  49273. },
  49274. {
  49275. name: "Tiny",
  49276. height: math.unit(3, "inches")
  49277. },
  49278. {
  49279. name: "Normal",
  49280. height: math.unit(6 + 2/12, "feet"),
  49281. default: true
  49282. },
  49283. {
  49284. name: "Big",
  49285. height: math.unit(15, "feet")
  49286. },
  49287. {
  49288. name: "Macro",
  49289. height: math.unit(150, "feet")
  49290. },
  49291. {
  49292. name: "Titanic",
  49293. height: math.unit(500, "feet")
  49294. },
  49295. ]
  49296. ))
  49297. characterMakers.push(() => makeCharacter(
  49298. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49299. {
  49300. front: {
  49301. height: math.unit(12, "feet"),
  49302. name: "Front",
  49303. image: {
  49304. source: "./media/characters/fenrir/front.svg",
  49305. extra: 968/875,
  49306. bottom: 22/990
  49307. }
  49308. },
  49309. },
  49310. [
  49311. {
  49312. name: "Big",
  49313. height: math.unit(12, "feet"),
  49314. default: true
  49315. },
  49316. ]
  49317. ))
  49318. characterMakers.push(() => makeCharacter(
  49319. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49320. {
  49321. front: {
  49322. height: math.unit(5 + 4/12, "feet"),
  49323. name: "Front",
  49324. image: {
  49325. source: "./media/characters/makar/front.svg",
  49326. extra: 1181/1112,
  49327. bottom: 78/1259
  49328. }
  49329. },
  49330. },
  49331. [
  49332. {
  49333. name: "Normal",
  49334. height: math.unit(5 + 4/12, "feet"),
  49335. default: true
  49336. },
  49337. ]
  49338. ))
  49339. characterMakers.push(() => makeCharacter(
  49340. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49341. {
  49342. front: {
  49343. height: math.unit(5 + 7/12, "feet"),
  49344. name: "Front",
  49345. image: {
  49346. source: "./media/characters/callow/front.svg",
  49347. extra: 1482/1304,
  49348. bottom: 23/1505
  49349. }
  49350. },
  49351. back: {
  49352. height: math.unit(5 + 7/12, "feet"),
  49353. name: "Back",
  49354. image: {
  49355. source: "./media/characters/callow/back.svg",
  49356. extra: 1484/1296,
  49357. bottom: 25/1509
  49358. }
  49359. },
  49360. },
  49361. [
  49362. {
  49363. name: "Micro",
  49364. height: math.unit(3, "inches"),
  49365. default: true
  49366. },
  49367. {
  49368. name: "Normal",
  49369. height: math.unit(5 + 7/12, "feet")
  49370. },
  49371. ]
  49372. ))
  49373. characterMakers.push(() => makeCharacter(
  49374. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49375. {
  49376. front: {
  49377. height: math.unit(6 + 2/12, "feet"),
  49378. name: "Front",
  49379. image: {
  49380. source: "./media/characters/natel/front.svg",
  49381. extra: 1833/1692,
  49382. bottom: 166/1999
  49383. }
  49384. },
  49385. },
  49386. [
  49387. {
  49388. name: "Normal",
  49389. height: math.unit(6 + 2/12, "feet"),
  49390. default: true
  49391. },
  49392. ]
  49393. ))
  49394. characterMakers.push(() => makeCharacter(
  49395. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49396. {
  49397. front: {
  49398. height: math.unit(1.75, "meters"),
  49399. name: "Front",
  49400. image: {
  49401. source: "./media/characters/misu/front.svg",
  49402. extra: 1690/1558,
  49403. bottom: 234/1924
  49404. }
  49405. },
  49406. back: {
  49407. height: math.unit(1.75, "meters"),
  49408. name: "Back",
  49409. image: {
  49410. source: "./media/characters/misu/back.svg",
  49411. extra: 1762/1618,
  49412. bottom: 146/1908
  49413. }
  49414. },
  49415. frontNude: {
  49416. height: math.unit(1.75, "meters"),
  49417. name: "Front (Nude)",
  49418. image: {
  49419. source: "./media/characters/misu/front-nude.svg",
  49420. extra: 1690/1558,
  49421. bottom: 234/1924
  49422. }
  49423. },
  49424. backNude: {
  49425. height: math.unit(1.75, "meters"),
  49426. name: "Back (Nude)",
  49427. image: {
  49428. source: "./media/characters/misu/back-nude.svg",
  49429. extra: 1762/1618,
  49430. bottom: 146/1908
  49431. }
  49432. },
  49433. frontErect: {
  49434. height: math.unit(1.75, "meters"),
  49435. name: "Front (Erect)",
  49436. image: {
  49437. source: "./media/characters/misu/front-erect.svg",
  49438. extra: 1690/1558,
  49439. bottom: 234/1924
  49440. }
  49441. },
  49442. maw: {
  49443. height: math.unit(0.47, "meters"),
  49444. name: "Maw",
  49445. image: {
  49446. source: "./media/characters/misu/maw.svg"
  49447. }
  49448. },
  49449. head: {
  49450. height: math.unit(0.35, "meters"),
  49451. name: "Head",
  49452. image: {
  49453. source: "./media/characters/misu/head.svg"
  49454. }
  49455. },
  49456. rear: {
  49457. height: math.unit(0.47, "meters"),
  49458. name: "Rear",
  49459. image: {
  49460. source: "./media/characters/misu/rear.svg"
  49461. }
  49462. },
  49463. },
  49464. [
  49465. {
  49466. name: "Normal",
  49467. height: math.unit(1.75, "meters")
  49468. },
  49469. {
  49470. name: "Not good for the people",
  49471. height: math.unit(42, "meters")
  49472. },
  49473. {
  49474. name: "Not good for the neighborhood",
  49475. height: math.unit(135, "meters")
  49476. },
  49477. {
  49478. name: "Bit bigger problem",
  49479. height: math.unit(380, "meters"),
  49480. default: true
  49481. },
  49482. {
  49483. name: "Not good for the city",
  49484. height: math.unit(1.5, "km")
  49485. },
  49486. {
  49487. name: "Not good for the county",
  49488. height: math.unit(5.5, "km")
  49489. },
  49490. {
  49491. name: "Not good for the state",
  49492. height: math.unit(25, "km")
  49493. },
  49494. {
  49495. name: "Not good for the country",
  49496. height: math.unit(125, "km")
  49497. },
  49498. {
  49499. name: "Not good for the continent",
  49500. height: math.unit(2100, "km")
  49501. },
  49502. {
  49503. name: "Not good for the planet",
  49504. height: math.unit(35000, "km")
  49505. },
  49506. {
  49507. name: "Just no",
  49508. height: math.unit(8.5e18, "km")
  49509. },
  49510. ]
  49511. ))
  49512. characterMakers.push(() => makeCharacter(
  49513. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49514. {
  49515. front: {
  49516. height: math.unit(6.5, "feet"),
  49517. name: "Front",
  49518. image: {
  49519. source: "./media/characters/poppy/front.svg",
  49520. extra: 1878/1812,
  49521. bottom: 43/1921
  49522. }
  49523. },
  49524. feet: {
  49525. height: math.unit(1.06, "feet"),
  49526. name: "Feet",
  49527. image: {
  49528. source: "./media/characters/poppy/feet.svg",
  49529. extra: 1083/1083,
  49530. bottom: 87/1170
  49531. }
  49532. },
  49533. },
  49534. [
  49535. {
  49536. name: "Human",
  49537. height: math.unit(6.5, "feet")
  49538. },
  49539. {
  49540. name: "Default",
  49541. height: math.unit(300, "feet"),
  49542. default: true
  49543. },
  49544. {
  49545. name: "Huge",
  49546. height: math.unit(850, "feet")
  49547. },
  49548. {
  49549. name: "Mega",
  49550. height: math.unit(8000, "feet")
  49551. },
  49552. {
  49553. name: "Giga",
  49554. height: math.unit(300, "miles")
  49555. },
  49556. ]
  49557. ))
  49558. characterMakers.push(() => makeCharacter(
  49559. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49560. {
  49561. bipedal: {
  49562. height: math.unit(7, "feet"),
  49563. name: "Bipedal",
  49564. image: {
  49565. source: "./media/characters/zener/bipedal.svg",
  49566. extra: 874/805,
  49567. bottom: 109/983
  49568. }
  49569. },
  49570. quadrupedal: {
  49571. height: math.unit(4.64, "feet"),
  49572. name: "Quadrupedal",
  49573. image: {
  49574. source: "./media/characters/zener/quadrupedal.svg",
  49575. extra: 638/507,
  49576. bottom: 190/828
  49577. }
  49578. },
  49579. cock: {
  49580. height: math.unit(18, "inches"),
  49581. name: "Cock",
  49582. image: {
  49583. source: "./media/characters/zener/cock.svg"
  49584. }
  49585. },
  49586. },
  49587. [
  49588. {
  49589. name: "Normal",
  49590. height: math.unit(7, "feet"),
  49591. default: true
  49592. },
  49593. ]
  49594. ))
  49595. characterMakers.push(() => makeCharacter(
  49596. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49597. {
  49598. nude: {
  49599. height: math.unit(5 + 6/12, "feet"),
  49600. name: "Nude",
  49601. image: {
  49602. source: "./media/characters/charlie-dog/nude.svg",
  49603. extra: 768/734,
  49604. bottom: 26/794
  49605. }
  49606. },
  49607. dressed: {
  49608. height: math.unit(5 + 6/12, "feet"),
  49609. name: "Dressed",
  49610. image: {
  49611. source: "./media/characters/charlie-dog/dressed.svg",
  49612. extra: 768/734,
  49613. bottom: 26/794
  49614. }
  49615. },
  49616. },
  49617. [
  49618. {
  49619. name: "Normal",
  49620. height: math.unit(5 + 6/12, "feet"),
  49621. default: true
  49622. },
  49623. ]
  49624. ))
  49625. characterMakers.push(() => makeCharacter(
  49626. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49627. {
  49628. front: {
  49629. height: math.unit(6 + 4/12, "feet"),
  49630. name: "Front",
  49631. image: {
  49632. source: "./media/characters/ir'istrasz/front.svg",
  49633. extra: 1014/977,
  49634. bottom: 65/1079
  49635. }
  49636. },
  49637. back: {
  49638. height: math.unit(6 + 4/12, "feet"),
  49639. name: "Back",
  49640. image: {
  49641. source: "./media/characters/ir'istrasz/back.svg",
  49642. extra: 1024/992,
  49643. bottom: 34/1058
  49644. }
  49645. },
  49646. },
  49647. [
  49648. {
  49649. name: "Normal",
  49650. height: math.unit(6 + 4/12, "feet"),
  49651. default: true
  49652. },
  49653. ]
  49654. ))
  49655. characterMakers.push(() => makeCharacter(
  49656. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49657. {
  49658. front: {
  49659. height: math.unit(5 + 8/12, "feet"),
  49660. name: "Front",
  49661. image: {
  49662. source: "./media/characters/dee-ditto/front.svg",
  49663. extra: 1874/1785,
  49664. bottom: 68/1942
  49665. }
  49666. },
  49667. back: {
  49668. height: math.unit(5 + 8/12, "feet"),
  49669. name: "Back",
  49670. image: {
  49671. source: "./media/characters/dee-ditto/back.svg",
  49672. extra: 1870/1783,
  49673. bottom: 77/1947
  49674. }
  49675. },
  49676. },
  49677. [
  49678. {
  49679. name: "Normal",
  49680. height: math.unit(5 + 8/12, "feet"),
  49681. default: true
  49682. },
  49683. ]
  49684. ))
  49685. characterMakers.push(() => makeCharacter(
  49686. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49687. {
  49688. front: {
  49689. height: math.unit(7 + 6/12, "feet"),
  49690. name: "Front",
  49691. image: {
  49692. source: "./media/characters/fey/front.svg",
  49693. extra: 995/979,
  49694. bottom: 30/1025
  49695. }
  49696. },
  49697. back: {
  49698. height: math.unit(7 + 6/12, "feet"),
  49699. name: "Back",
  49700. image: {
  49701. source: "./media/characters/fey/back.svg",
  49702. extra: 1079/1008,
  49703. bottom: 5/1084
  49704. }
  49705. },
  49706. dressed: {
  49707. height: math.unit(7 + 6/12, "feet"),
  49708. name: "Dressed",
  49709. image: {
  49710. source: "./media/characters/fey/dressed.svg",
  49711. extra: 995/979,
  49712. bottom: 30/1025
  49713. }
  49714. },
  49715. },
  49716. [
  49717. {
  49718. name: "Normal",
  49719. height: math.unit(7 + 6/12, "feet"),
  49720. default: true
  49721. },
  49722. ]
  49723. ))
  49724. characterMakers.push(() => makeCharacter(
  49725. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49726. {
  49727. standing: {
  49728. height: math.unit(17, "feet"),
  49729. name: "Standing",
  49730. image: {
  49731. source: "./media/characters/aster/standing.svg",
  49732. extra: 1798/1598,
  49733. bottom: 117/1915
  49734. }
  49735. },
  49736. },
  49737. [
  49738. {
  49739. name: "Normal",
  49740. height: math.unit(17, "feet"),
  49741. default: true
  49742. },
  49743. {
  49744. name: "Homewrecker",
  49745. height: math.unit(95, "feet")
  49746. },
  49747. {
  49748. name: "Planet Devourer",
  49749. height: math.unit(1008000, "miles")
  49750. },
  49751. ]
  49752. ))
  49753. characterMakers.push(() => makeCharacter(
  49754. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49755. {
  49756. front: {
  49757. height: math.unit(6 + 5/12, "feet"),
  49758. weight: math.unit(265, "lb"),
  49759. name: "Front",
  49760. image: {
  49761. source: "./media/characters/devon-childs/front.svg",
  49762. extra: 1795/1721,
  49763. bottom: 41/1836
  49764. }
  49765. },
  49766. side: {
  49767. height: math.unit(6 + 5/12, "feet"),
  49768. weight: math.unit(265, "lb"),
  49769. name: "Side",
  49770. image: {
  49771. source: "./media/characters/devon-childs/side.svg",
  49772. extra: 1812/1738,
  49773. bottom: 30/1842
  49774. }
  49775. },
  49776. back: {
  49777. height: math.unit(6 + 5/12, "feet"),
  49778. weight: math.unit(265, "lb"),
  49779. name: "Back",
  49780. image: {
  49781. source: "./media/characters/devon-childs/back.svg",
  49782. extra: 1808/1735,
  49783. bottom: 23/1831
  49784. }
  49785. },
  49786. hand: {
  49787. height: math.unit(1.464, "feet"),
  49788. name: "Hand",
  49789. image: {
  49790. source: "./media/characters/devon-childs/hand.svg"
  49791. }
  49792. },
  49793. foot: {
  49794. height: math.unit(1.6, "feet"),
  49795. name: "Foot",
  49796. image: {
  49797. source: "./media/characters/devon-childs/foot.svg"
  49798. }
  49799. },
  49800. },
  49801. [
  49802. {
  49803. name: "Micro",
  49804. height: math.unit(7, "cm")
  49805. },
  49806. {
  49807. name: "Normal",
  49808. height: math.unit(6 + 5/12, "feet"),
  49809. default: true
  49810. },
  49811. {
  49812. name: "Macro",
  49813. height: math.unit(154, "feet")
  49814. },
  49815. ]
  49816. ))
  49817. characterMakers.push(() => makeCharacter(
  49818. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49819. {
  49820. front: {
  49821. height: math.unit(6, "feet"),
  49822. weight: math.unit(180, "lb"),
  49823. name: "Front",
  49824. image: {
  49825. source: "./media/characters/lydemox-vir/front.svg",
  49826. extra: 1632/1435,
  49827. bottom: 58/1690
  49828. }
  49829. },
  49830. frontSFW: {
  49831. height: math.unit(6, "feet"),
  49832. weight: math.unit(180, "lb"),
  49833. name: "Front (SFW)",
  49834. image: {
  49835. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49836. extra: 1632/1435,
  49837. bottom: 58/1690
  49838. }
  49839. },
  49840. back: {
  49841. height: math.unit(6, "feet"),
  49842. weight: math.unit(180, "lb"),
  49843. name: "Back",
  49844. image: {
  49845. source: "./media/characters/lydemox-vir/back.svg",
  49846. extra: 1593/1408,
  49847. bottom: 31/1624
  49848. }
  49849. },
  49850. paw: {
  49851. height: math.unit(1.85, "feet"),
  49852. name: "Paw",
  49853. image: {
  49854. source: "./media/characters/lydemox-vir/paw.svg"
  49855. }
  49856. },
  49857. dick: {
  49858. height: math.unit(1.8, "feet"),
  49859. name: "Dick",
  49860. image: {
  49861. source: "./media/characters/lydemox-vir/dick.svg"
  49862. }
  49863. },
  49864. },
  49865. [
  49866. {
  49867. name: "Macro",
  49868. height: math.unit(100, "feet"),
  49869. default: true
  49870. },
  49871. {
  49872. name: "Teramacro",
  49873. height: math.unit(1, "earth")
  49874. },
  49875. {
  49876. name: "Planetary",
  49877. height: math.unit(20, "earths")
  49878. },
  49879. ]
  49880. ))
  49881. characterMakers.push(() => makeCharacter(
  49882. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49883. {
  49884. front: {
  49885. height: math.unit(15 + 8/12, "feet"),
  49886. weight: math.unit(1237, "kg"),
  49887. name: "Front",
  49888. image: {
  49889. source: "./media/characters/mia/front.svg",
  49890. extra: 1573/1446,
  49891. bottom: 58/1631
  49892. }
  49893. },
  49894. },
  49895. [
  49896. {
  49897. name: "Small",
  49898. height: math.unit(9 + 5/12, "feet")
  49899. },
  49900. {
  49901. name: "Normal",
  49902. height: math.unit(15 + 8/12, "feet"),
  49903. default: true
  49904. },
  49905. ]
  49906. ))
  49907. characterMakers.push(() => makeCharacter(
  49908. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49909. {
  49910. front: {
  49911. height: math.unit(10 + 6/12, "feet"),
  49912. weight: math.unit(1.3, "tons"),
  49913. name: "Front",
  49914. image: {
  49915. source: "./media/characters/mr-graves/front.svg",
  49916. extra: 1779/1695,
  49917. bottom: 198/1977
  49918. }
  49919. },
  49920. },
  49921. [
  49922. {
  49923. name: "Normal",
  49924. height: math.unit(10 + 6 /12, "feet"),
  49925. default: true
  49926. },
  49927. ]
  49928. ))
  49929. characterMakers.push(() => makeCharacter(
  49930. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49931. {
  49932. dressedFront: {
  49933. height: math.unit(5 + 8/12, "feet"),
  49934. weight: math.unit(125, "lb"),
  49935. name: "Dressed (Front)",
  49936. image: {
  49937. source: "./media/characters/jess/dressed-front.svg",
  49938. extra: 1176/1152,
  49939. bottom: 42/1218
  49940. }
  49941. },
  49942. dressedSide: {
  49943. height: math.unit(5 + 8/12, "feet"),
  49944. weight: math.unit(125, "lb"),
  49945. name: "Dressed (Side)",
  49946. image: {
  49947. source: "./media/characters/jess/dressed-side.svg",
  49948. extra: 1204/1190,
  49949. bottom: 6/1210
  49950. }
  49951. },
  49952. nudeFront: {
  49953. height: math.unit(5 + 8/12, "feet"),
  49954. weight: math.unit(125, "lb"),
  49955. name: "Nude (Front)",
  49956. image: {
  49957. source: "./media/characters/jess/nude-front.svg",
  49958. extra: 1176/1152,
  49959. bottom: 42/1218
  49960. }
  49961. },
  49962. nudeSide: {
  49963. height: math.unit(5 + 8/12, "feet"),
  49964. weight: math.unit(125, "lb"),
  49965. name: "Nude (Side)",
  49966. image: {
  49967. source: "./media/characters/jess/nude-side.svg",
  49968. extra: 1204/1190,
  49969. bottom: 6/1210
  49970. }
  49971. },
  49972. organsFront: {
  49973. height: math.unit(2.83799342105, "feet"),
  49974. name: "Organs (Front)",
  49975. image: {
  49976. source: "./media/characters/jess/organs-front.svg"
  49977. }
  49978. },
  49979. organsSide: {
  49980. height: math.unit(2.64225290474, "feet"),
  49981. name: "Organs (Side)",
  49982. image: {
  49983. source: "./media/characters/jess/organs-side.svg"
  49984. }
  49985. },
  49986. digestiveTractFront: {
  49987. height: math.unit(2.8106580871, "feet"),
  49988. name: "Digestive Tract (Front)",
  49989. image: {
  49990. source: "./media/characters/jess/digestive-tract-front.svg"
  49991. }
  49992. },
  49993. digestiveTractSide: {
  49994. height: math.unit(2.54365045014, "feet"),
  49995. name: "Digestive Tract (Side)",
  49996. image: {
  49997. source: "./media/characters/jess/digestive-tract-side.svg"
  49998. }
  49999. },
  50000. respiratorySystemFront: {
  50001. height: math.unit(1.11196233456, "feet"),
  50002. name: "Respiratory System (Front)",
  50003. image: {
  50004. source: "./media/characters/jess/respiratory-system-front.svg"
  50005. }
  50006. },
  50007. respiratorySystemSide: {
  50008. height: math.unit(0.89327966297, "feet"),
  50009. name: "Respiratory System (Side)",
  50010. image: {
  50011. source: "./media/characters/jess/respiratory-system-side.svg"
  50012. }
  50013. },
  50014. urinaryTractFront: {
  50015. height: math.unit(1.16126356186, "feet"),
  50016. name: "Urinary Tract (Front)",
  50017. image: {
  50018. source: "./media/characters/jess/urinary-tract-front.svg"
  50019. }
  50020. },
  50021. urinaryTractSide: {
  50022. height: math.unit(1.20910039627, "feet"),
  50023. name: "Urinary Tract (Side)",
  50024. image: {
  50025. source: "./media/characters/jess/urinary-tract-side.svg"
  50026. }
  50027. },
  50028. reproductiveOrgansFront: {
  50029. height: math.unit(0.48422591566, "feet"),
  50030. name: "Reproductive Organs (Front)",
  50031. image: {
  50032. source: "./media/characters/jess/reproductive-organs-front.svg"
  50033. }
  50034. },
  50035. reproductiveOrgansSide: {
  50036. height: math.unit(0.61553314481, "feet"),
  50037. name: "Reproductive Organs (Side)",
  50038. image: {
  50039. source: "./media/characters/jess/reproductive-organs-side.svg"
  50040. }
  50041. },
  50042. breastsFront: {
  50043. height: math.unit(0.47690395121, "feet"),
  50044. name: "Breasts (Front)",
  50045. image: {
  50046. source: "./media/characters/jess/breasts-front.svg"
  50047. }
  50048. },
  50049. breastsSide: {
  50050. height: math.unit(0.30556998307, "feet"),
  50051. name: "Breasts (Side)",
  50052. image: {
  50053. source: "./media/characters/jess/breasts-side.svg"
  50054. }
  50055. },
  50056. heartFront: {
  50057. height: math.unit(0.53011022622, "feet"),
  50058. name: "Heart (Front)",
  50059. image: {
  50060. source: "./media/characters/jess/heart-front.svg"
  50061. }
  50062. },
  50063. heartSide: {
  50064. height: math.unit(0.51790695213, "feet"),
  50065. name: "Heart (Side)",
  50066. image: {
  50067. source: "./media/characters/jess/heart-side.svg"
  50068. }
  50069. },
  50070. earsAndNoseFront: {
  50071. height: math.unit(0.29385483995, "feet"),
  50072. name: "Ears and Nose (Front)",
  50073. image: {
  50074. source: "./media/characters/jess/ears-and-nose-front.svg"
  50075. }
  50076. },
  50077. earsAndNoseSide: {
  50078. height: math.unit(0.18109658741, "feet"),
  50079. name: "Ears and Nose (Side)",
  50080. image: {
  50081. source: "./media/characters/jess/ears-and-nose-side.svg"
  50082. }
  50083. },
  50084. },
  50085. [
  50086. {
  50087. name: "Normal",
  50088. height: math.unit(5 + 8/12, "feet"),
  50089. default: true
  50090. },
  50091. ]
  50092. ))
  50093. characterMakers.push(() => makeCharacter(
  50094. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50095. {
  50096. front: {
  50097. height: math.unit(6, "feet"),
  50098. weight: math.unit(6.64467e-7, "grams"),
  50099. name: "Front",
  50100. image: {
  50101. source: "./media/characters/wimpering/front.svg",
  50102. extra: 597/587,
  50103. bottom: 34/631
  50104. }
  50105. },
  50106. },
  50107. [
  50108. {
  50109. name: "Micro",
  50110. height: math.unit(0.4, "mm"),
  50111. default: true
  50112. },
  50113. ]
  50114. ))
  50115. characterMakers.push(() => makeCharacter(
  50116. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50117. {
  50118. front: {
  50119. height: math.unit(5 + 2/12, "feet"),
  50120. weight: math.unit(110, "lb"),
  50121. name: "Front",
  50122. image: {
  50123. source: "./media/characters/keltre/front.svg",
  50124. extra: 1099/1057,
  50125. bottom: 22/1121
  50126. }
  50127. },
  50128. back: {
  50129. height: math.unit(5 + 2/12, "feet"),
  50130. weight: math.unit(110, "lb"),
  50131. name: "Back",
  50132. image: {
  50133. source: "./media/characters/keltre/back.svg",
  50134. extra: 1095/1053,
  50135. bottom: 17/1112
  50136. }
  50137. },
  50138. dressed: {
  50139. height: math.unit(5 + 2/12, "feet"),
  50140. weight: math.unit(110, "lb"),
  50141. name: "Dressed",
  50142. image: {
  50143. source: "./media/characters/keltre/dressed.svg",
  50144. extra: 1099/1057,
  50145. bottom: 22/1121
  50146. }
  50147. },
  50148. winter: {
  50149. height: math.unit(5 + 2/12, "feet"),
  50150. weight: math.unit(110, "lb"),
  50151. name: "Winter",
  50152. image: {
  50153. source: "./media/characters/keltre/winter.svg",
  50154. extra: 1099/1057,
  50155. bottom: 22/1121
  50156. }
  50157. },
  50158. head: {
  50159. height: math.unit(1.61 * 0.86, "feet"),
  50160. name: "Head",
  50161. image: {
  50162. source: "./media/characters/keltre/head.svg",
  50163. extra: 534/421,
  50164. bottom: 0/534
  50165. }
  50166. },
  50167. hand: {
  50168. height: math.unit(1.3 * 0.86, "feet"),
  50169. name: "Hand",
  50170. image: {
  50171. source: "./media/characters/keltre/hand.svg"
  50172. }
  50173. },
  50174. foot: {
  50175. height: math.unit(1.8 * 0.86, "feet"),
  50176. name: "Foot",
  50177. image: {
  50178. source: "./media/characters/keltre/foot.svg"
  50179. }
  50180. },
  50181. },
  50182. [
  50183. {
  50184. name: "Fine",
  50185. height: math.unit(1, "inch")
  50186. },
  50187. {
  50188. name: "Dimnutive",
  50189. height: math.unit(4, "inches")
  50190. },
  50191. {
  50192. name: "Tiny",
  50193. height: math.unit(1, "foot")
  50194. },
  50195. {
  50196. name: "Small",
  50197. height: math.unit(3, "feet")
  50198. },
  50199. {
  50200. name: "Normal",
  50201. height: math.unit(5 + 2/12, "feet"),
  50202. default: true
  50203. },
  50204. ]
  50205. ))
  50206. characterMakers.push(() => makeCharacter(
  50207. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50208. {
  50209. front: {
  50210. height: math.unit(6 + 2/12, "feet"),
  50211. name: "Front",
  50212. image: {
  50213. source: "./media/characters/nox/front.svg",
  50214. extra: 1917/1830,
  50215. bottom: 74/1991
  50216. }
  50217. },
  50218. back: {
  50219. height: math.unit(6 + 2/12, "feet"),
  50220. name: "Back",
  50221. image: {
  50222. source: "./media/characters/nox/back.svg",
  50223. extra: 1896/1815,
  50224. bottom: 21/1917
  50225. }
  50226. },
  50227. head: {
  50228. height: math.unit(1.1, "feet"),
  50229. name: "Head",
  50230. image: {
  50231. source: "./media/characters/nox/head.svg",
  50232. extra: 874/704,
  50233. bottom: 0/874
  50234. }
  50235. },
  50236. tattoo: {
  50237. height: math.unit(0.729, "feet"),
  50238. name: "Tattoo",
  50239. image: {
  50240. source: "./media/characters/nox/tattoo.svg"
  50241. }
  50242. },
  50243. },
  50244. [
  50245. {
  50246. name: "Normal",
  50247. height: math.unit(6 + 2/12, "feet")
  50248. },
  50249. {
  50250. name: "Gigamacro",
  50251. height: math.unit(2, "earths"),
  50252. default: true
  50253. },
  50254. {
  50255. name: "Cosmic",
  50256. height: math.unit(867, "yottameters")
  50257. },
  50258. ]
  50259. ))
  50260. characterMakers.push(() => makeCharacter(
  50261. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50262. {
  50263. front: {
  50264. height: math.unit(6, "feet"),
  50265. weight: math.unit(150, "lb"),
  50266. name: "Front",
  50267. image: {
  50268. source: "./media/characters/caspian/front.svg",
  50269. extra: 1443/1359,
  50270. bottom: 0/1443
  50271. }
  50272. },
  50273. back: {
  50274. height: math.unit(6, "feet"),
  50275. weight: math.unit(150, "lb"),
  50276. name: "Back",
  50277. image: {
  50278. source: "./media/characters/caspian/back.svg",
  50279. extra: 1379/1309,
  50280. bottom: 0/1379
  50281. }
  50282. },
  50283. head: {
  50284. height: math.unit(0.9, "feet"),
  50285. name: "Head",
  50286. image: {
  50287. source: "./media/characters/caspian/head.svg",
  50288. extra: 692/492,
  50289. bottom: 0/692
  50290. }
  50291. },
  50292. headAlt: {
  50293. height: math.unit(0.95, "feet"),
  50294. name: "Head (Alt)",
  50295. image: {
  50296. source: "./media/characters/caspian/head-alt.svg",
  50297. extra: 668/508,
  50298. bottom: 0/668
  50299. }
  50300. },
  50301. hand: {
  50302. height: math.unit(0.8, "feet"),
  50303. name: "Hand",
  50304. image: {
  50305. source: "./media/characters/caspian/hand.svg"
  50306. }
  50307. },
  50308. paw: {
  50309. height: math.unit(0.95, "feet"),
  50310. name: "Paw",
  50311. image: {
  50312. source: "./media/characters/caspian/paw.svg"
  50313. }
  50314. },
  50315. },
  50316. [
  50317. {
  50318. name: "Normal",
  50319. height: math.unit(162, "feet"),
  50320. default: true
  50321. },
  50322. ]
  50323. ))
  50324. characterMakers.push(() => makeCharacter(
  50325. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50326. {
  50327. front: {
  50328. height: math.unit(6, "feet"),
  50329. name: "Front",
  50330. image: {
  50331. source: "./media/characters/myra-aisling/front.svg",
  50332. extra: 1268/1166,
  50333. bottom: 73/1341
  50334. }
  50335. },
  50336. back: {
  50337. height: math.unit(6, "feet"),
  50338. name: "Back",
  50339. image: {
  50340. source: "./media/characters/myra-aisling/back.svg",
  50341. extra: 1249/1149,
  50342. bottom: 79/1328
  50343. }
  50344. },
  50345. dressed: {
  50346. height: math.unit(6, "feet"),
  50347. name: "Dressed",
  50348. image: {
  50349. source: "./media/characters/myra-aisling/dressed.svg",
  50350. extra: 1290/1189,
  50351. bottom: 47/1337
  50352. }
  50353. },
  50354. hand: {
  50355. height: math.unit(1.1, "feet"),
  50356. name: "Hand",
  50357. image: {
  50358. source: "./media/characters/myra-aisling/hand.svg"
  50359. }
  50360. },
  50361. paw: {
  50362. height: math.unit(1.23, "feet"),
  50363. name: "Paw",
  50364. image: {
  50365. source: "./media/characters/myra-aisling/paw.svg"
  50366. }
  50367. },
  50368. },
  50369. [
  50370. {
  50371. name: "Normal",
  50372. height: math.unit(160, "feet"),
  50373. default: true
  50374. },
  50375. ]
  50376. ))
  50377. characterMakers.push(() => makeCharacter(
  50378. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50379. {
  50380. front: {
  50381. height: math.unit(6, "feet"),
  50382. name: "Front",
  50383. image: {
  50384. source: "./media/characters/tenley-sidero/front.svg",
  50385. extra: 1365/1276,
  50386. bottom: 47/1412
  50387. }
  50388. },
  50389. back: {
  50390. height: math.unit(6, "feet"),
  50391. name: "Back",
  50392. image: {
  50393. source: "./media/characters/tenley-sidero/back.svg",
  50394. extra: 1383/1283,
  50395. bottom: 35/1418
  50396. }
  50397. },
  50398. dressed: {
  50399. height: math.unit(6, "feet"),
  50400. name: "Dressed",
  50401. image: {
  50402. source: "./media/characters/tenley-sidero/dressed.svg",
  50403. extra: 1364/1275,
  50404. bottom: 42/1406
  50405. }
  50406. },
  50407. head: {
  50408. height: math.unit(1.47, "feet"),
  50409. name: "Head",
  50410. image: {
  50411. source: "./media/characters/tenley-sidero/head.svg",
  50412. extra: 610/490,
  50413. bottom: 0/610
  50414. }
  50415. },
  50416. },
  50417. [
  50418. {
  50419. name: "Normal",
  50420. height: math.unit(154, "feet"),
  50421. default: true
  50422. },
  50423. ]
  50424. ))
  50425. characterMakers.push(() => makeCharacter(
  50426. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50427. {
  50428. front: {
  50429. height: math.unit(5, "inches"),
  50430. name: "Front",
  50431. image: {
  50432. source: "./media/characters/mallory/front.svg",
  50433. extra: 1919/1678,
  50434. bottom: 29/1948
  50435. }
  50436. },
  50437. hand: {
  50438. height: math.unit(0.73, "inches"),
  50439. name: "Hand",
  50440. image: {
  50441. source: "./media/characters/mallory/hand.svg"
  50442. }
  50443. },
  50444. paw: {
  50445. height: math.unit(0.68, "inches"),
  50446. name: "Paw",
  50447. image: {
  50448. source: "./media/characters/mallory/paw.svg"
  50449. }
  50450. },
  50451. },
  50452. [
  50453. {
  50454. name: "Small",
  50455. height: math.unit(5, "inches"),
  50456. default: true
  50457. },
  50458. ]
  50459. ))
  50460. characterMakers.push(() => makeCharacter(
  50461. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50462. {
  50463. naked: {
  50464. height: math.unit(6, "feet"),
  50465. name: "Naked",
  50466. image: {
  50467. source: "./media/characters/mab/naked.svg",
  50468. extra: 1855/1757,
  50469. bottom: 208/2063
  50470. }
  50471. },
  50472. outside: {
  50473. height: math.unit(6, "feet"),
  50474. name: "Outside",
  50475. image: {
  50476. source: "./media/characters/mab/outside.svg",
  50477. extra: 1855/1757,
  50478. bottom: 208/2063
  50479. }
  50480. },
  50481. party: {
  50482. height: math.unit(6, "feet"),
  50483. name: "Party",
  50484. image: {
  50485. source: "./media/characters/mab/party.svg",
  50486. extra: 1855/1757,
  50487. bottom: 208/2063
  50488. }
  50489. },
  50490. },
  50491. [
  50492. {
  50493. name: "Normal",
  50494. height: math.unit(165, "feet"),
  50495. default: true
  50496. },
  50497. ]
  50498. ))
  50499. characterMakers.push(() => makeCharacter(
  50500. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50501. {
  50502. feral: {
  50503. height: math.unit(12, "feet"),
  50504. weight: math.unit(20000, "lb"),
  50505. name: "Side",
  50506. image: {
  50507. source: "./media/characters/winter/feral.svg",
  50508. extra: 1286/943,
  50509. bottom: 112/1398
  50510. },
  50511. form: "feral",
  50512. default: true
  50513. },
  50514. feralNsfw: {
  50515. height: math.unit(12, "feet"),
  50516. weight: math.unit(20000, "lb"),
  50517. name: "Side (NSFW)",
  50518. image: {
  50519. source: "./media/characters/winter/feral-nsfw.svg",
  50520. extra: 1286/943,
  50521. bottom: 112/1398
  50522. },
  50523. form: "feral"
  50524. },
  50525. dick: {
  50526. height: math.unit(3.79, "feet"),
  50527. name: "Dick",
  50528. image: {
  50529. source: "./media/characters/winter/dick.svg"
  50530. },
  50531. form: "feral"
  50532. },
  50533. anthro: {
  50534. height: math.unit(12, "feet"),
  50535. weight: math.unit(10, "tons"),
  50536. name: "Anthro",
  50537. image: {
  50538. source: "./media/characters/winter/anthro.svg",
  50539. extra: 1701/1553,
  50540. bottom: 64/1765
  50541. },
  50542. form: "anthro",
  50543. default: true
  50544. },
  50545. },
  50546. [
  50547. {
  50548. name: "Big",
  50549. height: math.unit(12, "feet"),
  50550. default: true,
  50551. form: "feral"
  50552. },
  50553. {
  50554. name: "Big",
  50555. height: math.unit(12, "feet"),
  50556. default: true,
  50557. form: "anthro"
  50558. },
  50559. ],
  50560. {
  50561. "feral": {
  50562. name: "Feral",
  50563. default: true
  50564. },
  50565. "anthro": {
  50566. name: "Anthro"
  50567. }
  50568. }
  50569. ))
  50570. characterMakers.push(() => makeCharacter(
  50571. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50572. {
  50573. front: {
  50574. height: math.unit(4.1, "inches"),
  50575. name: "Front",
  50576. image: {
  50577. source: "./media/characters/alto/front.svg",
  50578. extra: 736/627,
  50579. bottom: 90/826
  50580. }
  50581. },
  50582. },
  50583. [
  50584. {
  50585. name: "Normal",
  50586. height: math.unit(4.1, "inches"),
  50587. default: true
  50588. },
  50589. ]
  50590. ))
  50591. characterMakers.push(() => makeCharacter(
  50592. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50593. {
  50594. sitting: {
  50595. height: math.unit(3, "feet"),
  50596. name: "Sitting",
  50597. image: {
  50598. source: "./media/characters/ratstrid-v/sitting.svg",
  50599. extra: 355/310,
  50600. bottom: 136/491
  50601. }
  50602. },
  50603. },
  50604. [
  50605. {
  50606. name: "Normal",
  50607. height: math.unit(3, "feet"),
  50608. default: true
  50609. },
  50610. ]
  50611. ))
  50612. characterMakers.push(() => makeCharacter(
  50613. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50614. {
  50615. back: {
  50616. height: math.unit(6, "feet"),
  50617. weight: math.unit(450, "lb"),
  50618. name: "Back",
  50619. image: {
  50620. source: "./media/characters/siz/back.svg",
  50621. extra: 1449/1274,
  50622. bottom: 13/1462
  50623. }
  50624. },
  50625. },
  50626. [
  50627. {
  50628. name: "Smallest",
  50629. height: math.unit(18 + 3/12, "feet")
  50630. },
  50631. {
  50632. name: "Modest",
  50633. height: math.unit(56 + 8/12, "feet"),
  50634. default: true
  50635. },
  50636. {
  50637. name: "Largest",
  50638. height: math.unit(3590, "feet")
  50639. },
  50640. ]
  50641. ))
  50642. characterMakers.push(() => makeCharacter(
  50643. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50644. {
  50645. front: {
  50646. height: math.unit(5 + 9/12, "feet"),
  50647. weight: math.unit(150, "lb"),
  50648. name: "Front",
  50649. image: {
  50650. source: "./media/characters/ven/front.svg",
  50651. extra: 1372/1320,
  50652. bottom: 73/1445
  50653. }
  50654. },
  50655. side: {
  50656. height: math.unit(5 + 9/12, "feet"),
  50657. weight: math.unit(1150, "lb"),
  50658. name: "Side",
  50659. image: {
  50660. source: "./media/characters/ven/side.svg",
  50661. extra: 1119/1070,
  50662. bottom: 42/1161
  50663. },
  50664. default: true
  50665. },
  50666. },
  50667. [
  50668. {
  50669. name: "Normal",
  50670. height: math.unit(5 + 9/12, "feet"),
  50671. default: true
  50672. },
  50673. ]
  50674. ))
  50675. characterMakers.push(() => makeCharacter(
  50676. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50677. {
  50678. front: {
  50679. height: math.unit(12, "feet"),
  50680. weight: math.unit(1000, "kg"),
  50681. name: "Front",
  50682. image: {
  50683. source: "./media/characters/maple/front.svg",
  50684. extra: 1193/1081,
  50685. bottom: 22/1215
  50686. }
  50687. },
  50688. },
  50689. [
  50690. {
  50691. name: "Compressed",
  50692. height: math.unit(7, "feet")
  50693. },
  50694. {
  50695. name: "Normal",
  50696. height: math.unit(12, "feet"),
  50697. default: true
  50698. },
  50699. ]
  50700. ))
  50701. characterMakers.push(() => makeCharacter(
  50702. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50703. {
  50704. front: {
  50705. height: math.unit(9, "feet"),
  50706. weight: math.unit(1500, "lb"),
  50707. name: "Front",
  50708. image: {
  50709. source: "./media/characters/nora/front.svg",
  50710. extra: 1348/1286,
  50711. bottom: 218/1566
  50712. }
  50713. },
  50714. erect: {
  50715. height: math.unit(9, "feet"),
  50716. weight: math.unit(11500, "lb"),
  50717. name: "Erect",
  50718. image: {
  50719. source: "./media/characters/nora/erect.svg",
  50720. extra: 1488/1433,
  50721. bottom: 133/1621
  50722. }
  50723. },
  50724. },
  50725. [
  50726. {
  50727. name: "Normal",
  50728. height: math.unit(9, "feet"),
  50729. default: true
  50730. },
  50731. ]
  50732. ))
  50733. characterMakers.push(() => makeCharacter(
  50734. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50735. {
  50736. front: {
  50737. height: math.unit(25, "feet"),
  50738. weight: math.unit(27500, "lb"),
  50739. name: "Front",
  50740. image: {
  50741. source: "./media/characters/north-caudin/front.svg",
  50742. extra: 1184/1082,
  50743. bottom: 23/1207
  50744. }
  50745. },
  50746. },
  50747. [
  50748. {
  50749. name: "Compressed",
  50750. height: math.unit(10, "feet")
  50751. },
  50752. {
  50753. name: "Normal",
  50754. height: math.unit(25, "feet"),
  50755. default: true
  50756. },
  50757. ]
  50758. ))
  50759. characterMakers.push(() => makeCharacter(
  50760. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50761. {
  50762. front: {
  50763. height: math.unit(9, "feet"),
  50764. weight: math.unit(1250, "lb"),
  50765. name: "Front",
  50766. image: {
  50767. source: "./media/characters/merrian/front.svg",
  50768. extra: 2393/2304,
  50769. bottom: 40/2433
  50770. }
  50771. },
  50772. },
  50773. [
  50774. {
  50775. name: "Normal",
  50776. height: math.unit(9, "feet"),
  50777. default: true
  50778. },
  50779. ]
  50780. ))
  50781. characterMakers.push(() => makeCharacter(
  50782. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50783. {
  50784. front: {
  50785. height: math.unit(9, "feet"),
  50786. weight: math.unit(1000, "lb"),
  50787. name: "Front",
  50788. image: {
  50789. source: "./media/characters/hazel/front.svg",
  50790. extra: 2351/2298,
  50791. bottom: 38/2389
  50792. }
  50793. },
  50794. },
  50795. [
  50796. {
  50797. name: "Normal",
  50798. height: math.unit(9, "feet"),
  50799. default: true
  50800. },
  50801. ]
  50802. ))
  50803. characterMakers.push(() => makeCharacter(
  50804. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50805. {
  50806. front: {
  50807. height: math.unit(13, "feet"),
  50808. weight: math.unit(3200, "lb"),
  50809. name: "Front",
  50810. image: {
  50811. source: "./media/characters/emma/front.svg",
  50812. extra: 2263/2029,
  50813. bottom: 68/2331
  50814. }
  50815. },
  50816. },
  50817. [
  50818. {
  50819. name: "Normal",
  50820. height: math.unit(13, "feet"),
  50821. default: true
  50822. },
  50823. ]
  50824. ))
  50825. characterMakers.push(() => makeCharacter(
  50826. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50827. {
  50828. front: {
  50829. height: math.unit(11 + 9/12, "feet"),
  50830. weight: math.unit(2500, "lb"),
  50831. name: "Front",
  50832. image: {
  50833. source: "./media/characters/ilumina/front.svg",
  50834. extra: 2248/2209,
  50835. bottom: 164/2412
  50836. }
  50837. },
  50838. },
  50839. [
  50840. {
  50841. name: "Normal",
  50842. height: math.unit(11 + 9/12, "feet"),
  50843. default: true
  50844. },
  50845. ]
  50846. ))
  50847. characterMakers.push(() => makeCharacter(
  50848. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50849. {
  50850. front: {
  50851. height: math.unit(8 + 10/12, "feet"),
  50852. weight: math.unit(1350, "lb"),
  50853. name: "Front",
  50854. image: {
  50855. source: "./media/characters/moonshine/front.svg",
  50856. extra: 2395/2288,
  50857. bottom: 40/2435
  50858. }
  50859. },
  50860. },
  50861. [
  50862. {
  50863. name: "Normal",
  50864. height: math.unit(8 + 10/12, "feet"),
  50865. default: true
  50866. },
  50867. ]
  50868. ))
  50869. characterMakers.push(() => makeCharacter(
  50870. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50871. {
  50872. front: {
  50873. height: math.unit(14, "feet"),
  50874. weight: math.unit(3400, "lb"),
  50875. name: "Front",
  50876. image: {
  50877. source: "./media/characters/aletia/front.svg",
  50878. extra: 1185/1052,
  50879. bottom: 21/1206
  50880. }
  50881. },
  50882. },
  50883. [
  50884. {
  50885. name: "Compressed",
  50886. height: math.unit(8, "feet")
  50887. },
  50888. {
  50889. name: "Normal",
  50890. height: math.unit(14, "feet"),
  50891. default: true
  50892. },
  50893. ]
  50894. ))
  50895. characterMakers.push(() => makeCharacter(
  50896. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50897. {
  50898. front: {
  50899. height: math.unit(17, "feet"),
  50900. weight: math.unit(6500, "lb"),
  50901. name: "Front",
  50902. image: {
  50903. source: "./media/characters/deidra/front.svg",
  50904. extra: 1201/1081,
  50905. bottom: 16/1217
  50906. }
  50907. },
  50908. },
  50909. [
  50910. {
  50911. name: "Compressed",
  50912. height: math.unit(9 + 6/12, "feet")
  50913. },
  50914. {
  50915. name: "Normal",
  50916. height: math.unit(17, "feet"),
  50917. default: true
  50918. },
  50919. ]
  50920. ))
  50921. characterMakers.push(() => makeCharacter(
  50922. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50923. {
  50924. front: {
  50925. height: math.unit(7 + 4/12, "feet"),
  50926. weight: math.unit(280, "lb"),
  50927. name: "Front",
  50928. image: {
  50929. source: "./media/characters/freki-yrmori/front.svg",
  50930. extra: 1286/1182,
  50931. bottom: 29/1315
  50932. }
  50933. },
  50934. maw: {
  50935. height: math.unit(0.9, "feet"),
  50936. name: "Maw",
  50937. image: {
  50938. source: "./media/characters/freki-yrmori/maw.svg"
  50939. }
  50940. },
  50941. },
  50942. [
  50943. {
  50944. name: "Normal",
  50945. height: math.unit(7 + 4/12, "feet"),
  50946. default: true
  50947. },
  50948. {
  50949. name: "Macro",
  50950. height: math.unit(38.5, "meters")
  50951. },
  50952. ]
  50953. ))
  50954. characterMakers.push(() => makeCharacter(
  50955. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50956. {
  50957. side: {
  50958. height: math.unit(47.2, "meters"),
  50959. weight: math.unit(10000, "tons"),
  50960. name: "Side",
  50961. image: {
  50962. source: "./media/characters/aetherios/side.svg",
  50963. extra: 2363/642,
  50964. bottom: 221/2584
  50965. }
  50966. },
  50967. top: {
  50968. height: math.unit(240, "meters"),
  50969. weight: math.unit(10000, "tons"),
  50970. name: "Top",
  50971. image: {
  50972. source: "./media/characters/aetherios/top.svg"
  50973. }
  50974. },
  50975. bottom: {
  50976. height: math.unit(240, "meters"),
  50977. weight: math.unit(10000, "tons"),
  50978. name: "Bottom",
  50979. image: {
  50980. source: "./media/characters/aetherios/bottom.svg"
  50981. }
  50982. },
  50983. head: {
  50984. height: math.unit(38.6, "meters"),
  50985. name: "Head",
  50986. image: {
  50987. source: "./media/characters/aetherios/head.svg",
  50988. extra: 1335/1112,
  50989. bottom: 0/1335
  50990. }
  50991. },
  50992. front: {
  50993. height: math.unit(29, "meters"),
  50994. name: "Front",
  50995. image: {
  50996. source: "./media/characters/aetherios/front.svg",
  50997. extra: 1266/953,
  50998. bottom: 158/1424
  50999. }
  51000. },
  51001. maw: {
  51002. height: math.unit(16.37, "meters"),
  51003. name: "Maw",
  51004. image: {
  51005. source: "./media/characters/aetherios/maw.svg",
  51006. extra: 748/637,
  51007. bottom: 0/748
  51008. },
  51009. extraAttributes: {
  51010. preyCapacity: {
  51011. name: "Capacity",
  51012. power: 3,
  51013. type: "volume",
  51014. base: math.unit(1000, "people")
  51015. },
  51016. tongueSize: {
  51017. name: "Tongue Size",
  51018. power: 2,
  51019. type: "area",
  51020. base: math.unit(21, "m^2")
  51021. }
  51022. }
  51023. },
  51024. forepaw: {
  51025. height: math.unit(18, "meters"),
  51026. name: "Forepaw",
  51027. image: {
  51028. source: "./media/characters/aetherios/forepaw.svg"
  51029. }
  51030. },
  51031. hindpaw: {
  51032. height: math.unit(23, "meters"),
  51033. name: "Hindpaw",
  51034. image: {
  51035. source: "./media/characters/aetherios/hindpaw.svg"
  51036. }
  51037. },
  51038. genitals: {
  51039. height: math.unit(42, "meters"),
  51040. name: "Genitals",
  51041. image: {
  51042. source: "./media/characters/aetherios/genitals.svg"
  51043. }
  51044. },
  51045. },
  51046. [
  51047. {
  51048. name: "Normal",
  51049. height: math.unit(47.2, "meters"),
  51050. default: true
  51051. },
  51052. {
  51053. name: "Macro",
  51054. height: math.unit(160, "meters")
  51055. },
  51056. {
  51057. name: "Mega",
  51058. height: math.unit(1.87, "km")
  51059. },
  51060. {
  51061. name: "Giga",
  51062. height: math.unit(40000, "km")
  51063. },
  51064. {
  51065. name: "Stellar",
  51066. height: math.unit(158000000, "km")
  51067. },
  51068. {
  51069. name: "Cosmic",
  51070. height: math.unit(9.46e12, "km")
  51071. },
  51072. ]
  51073. ))
  51074. characterMakers.push(() => makeCharacter(
  51075. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51076. {
  51077. front: {
  51078. height: math.unit(5 + 4/12, "feet"),
  51079. weight: math.unit(80, "lb"),
  51080. name: "Front",
  51081. image: {
  51082. source: "./media/characters/mizu-gieeg/front.svg",
  51083. extra: 850/709,
  51084. bottom: 52/902
  51085. }
  51086. },
  51087. back: {
  51088. height: math.unit(5 + 4/12, "feet"),
  51089. weight: math.unit(80, "lb"),
  51090. name: "Back",
  51091. image: {
  51092. source: "./media/characters/mizu-gieeg/back.svg",
  51093. extra: 882/745,
  51094. bottom: 25/907
  51095. }
  51096. },
  51097. },
  51098. [
  51099. {
  51100. name: "Normal",
  51101. height: math.unit(5 + 4/12, "feet"),
  51102. default: true
  51103. },
  51104. ]
  51105. ))
  51106. characterMakers.push(() => makeCharacter(
  51107. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51108. {
  51109. front: {
  51110. height: math.unit(6, "feet"),
  51111. name: "Front",
  51112. image: {
  51113. source: "./media/characters/roselle-st-papier/front.svg",
  51114. extra: 1430/1280,
  51115. bottom: 37/1467
  51116. }
  51117. },
  51118. back: {
  51119. height: math.unit(6, "feet"),
  51120. name: "Back",
  51121. image: {
  51122. source: "./media/characters/roselle-st-papier/back.svg",
  51123. extra: 1491/1296,
  51124. bottom: 23/1514
  51125. }
  51126. },
  51127. ear: {
  51128. height: math.unit(1.26, "feet"),
  51129. name: "Ear",
  51130. image: {
  51131. source: "./media/characters/roselle-st-papier/ear.svg"
  51132. }
  51133. },
  51134. },
  51135. [
  51136. {
  51137. name: "Normal",
  51138. height: math.unit(150, "feet"),
  51139. default: true
  51140. },
  51141. ]
  51142. ))
  51143. characterMakers.push(() => makeCharacter(
  51144. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51145. {
  51146. front: {
  51147. height: math.unit(1, "inches"),
  51148. name: "Front",
  51149. image: {
  51150. source: "./media/characters/valargent/front.svg",
  51151. extra: 1825/1694,
  51152. bottom: 62/1887
  51153. }
  51154. },
  51155. back: {
  51156. height: math.unit(1, "inches"),
  51157. name: "Back",
  51158. image: {
  51159. source: "./media/characters/valargent/back.svg",
  51160. extra: 1775/1682,
  51161. bottom: 88/1863
  51162. }
  51163. },
  51164. },
  51165. [
  51166. {
  51167. name: "Micro",
  51168. height: math.unit(1, "inch"),
  51169. default: true
  51170. },
  51171. ]
  51172. ))
  51173. characterMakers.push(() => makeCharacter(
  51174. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51175. {
  51176. front: {
  51177. height: math.unit(3.4, "meters"),
  51178. name: "Front",
  51179. image: {
  51180. source: "./media/characters/zarina/front.svg",
  51181. extra: 1733/1425,
  51182. bottom: 93/1826
  51183. }
  51184. },
  51185. squatting: {
  51186. height: math.unit(2.14, "meters"),
  51187. name: "Squatting",
  51188. image: {
  51189. source: "./media/characters/zarina/squatting.svg",
  51190. extra: 1073/788,
  51191. bottom: 63/1136
  51192. }
  51193. },
  51194. back: {
  51195. height: math.unit(2.14, "meters"),
  51196. name: "Back",
  51197. image: {
  51198. source: "./media/characters/zarina/back.svg",
  51199. extra: 1128/885,
  51200. bottom: 0/1128
  51201. }
  51202. },
  51203. },
  51204. [
  51205. {
  51206. name: "Normal",
  51207. height: math.unit(3.4, "meters"),
  51208. default: true
  51209. },
  51210. {
  51211. name: "Big",
  51212. height: math.unit(5, "meters")
  51213. },
  51214. {
  51215. name: "Macro",
  51216. height: math.unit(110, "meters")
  51217. },
  51218. ]
  51219. ))
  51220. characterMakers.push(() => makeCharacter(
  51221. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51222. {
  51223. front: {
  51224. height: math.unit(7, "feet"),
  51225. name: "Front",
  51226. image: {
  51227. source: "./media/characters/ventus-astro-fox/front.svg",
  51228. extra: 1792/1623,
  51229. bottom: 28/1820
  51230. }
  51231. },
  51232. back: {
  51233. height: math.unit(7, "feet"),
  51234. name: "Back",
  51235. image: {
  51236. source: "./media/characters/ventus-astro-fox/back.svg",
  51237. extra: 1789/1620,
  51238. bottom: 31/1820
  51239. }
  51240. },
  51241. outfit: {
  51242. height: math.unit(7, "feet"),
  51243. name: "Outfit",
  51244. image: {
  51245. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51246. extra: 1054/925,
  51247. bottom: 15/1069
  51248. }
  51249. },
  51250. head: {
  51251. height: math.unit(1.12, "feet"),
  51252. name: "Head",
  51253. image: {
  51254. source: "./media/characters/ventus-astro-fox/head.svg",
  51255. extra: 866/504,
  51256. bottom: 0/866
  51257. }
  51258. },
  51259. hand: {
  51260. height: math.unit(1, "feet"),
  51261. name: "Hand",
  51262. image: {
  51263. source: "./media/characters/ventus-astro-fox/hand.svg"
  51264. }
  51265. },
  51266. paw: {
  51267. height: math.unit(1.5, "feet"),
  51268. name: "Paw",
  51269. image: {
  51270. source: "./media/characters/ventus-astro-fox/paw.svg"
  51271. }
  51272. },
  51273. },
  51274. [
  51275. {
  51276. name: "Normal",
  51277. height: math.unit(7, "feet"),
  51278. default: true
  51279. },
  51280. {
  51281. name: "Macro",
  51282. height: math.unit(200, "feet")
  51283. },
  51284. {
  51285. name: "Cosmic",
  51286. height: math.unit(3, "universes")
  51287. },
  51288. ]
  51289. ))
  51290. characterMakers.push(() => makeCharacter(
  51291. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51292. {
  51293. front: {
  51294. height: math.unit(3, "meters"),
  51295. weight: math.unit(7000, "lb"),
  51296. name: "Front",
  51297. image: {
  51298. source: "./media/characters/core-t/front.svg",
  51299. extra: 5729/4941,
  51300. bottom: 1129/6858
  51301. }
  51302. },
  51303. },
  51304. [
  51305. {
  51306. name: "Big",
  51307. height: math.unit(3, "meters"),
  51308. default: true
  51309. },
  51310. ]
  51311. ))
  51312. characterMakers.push(() => makeCharacter(
  51313. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51314. {
  51315. normal: {
  51316. height: math.unit(6 + 6/12, "feet"),
  51317. weight: math.unit(275, "lb"),
  51318. name: "Front",
  51319. image: {
  51320. source: "./media/characters/cadbunny/normal.svg",
  51321. extra: 1129/947,
  51322. bottom: 93/1222
  51323. },
  51324. default: true,
  51325. form: "normal"
  51326. },
  51327. gigantamax: {
  51328. height: math.unit(26, "feet"),
  51329. weight: math.unit(16000, "lb"),
  51330. name: "Front",
  51331. image: {
  51332. source: "./media/characters/cadbunny/gigantamax.svg",
  51333. extra: 1133/944,
  51334. bottom: 90/1223
  51335. },
  51336. default: true,
  51337. form: "gigantamax"
  51338. },
  51339. },
  51340. [
  51341. {
  51342. name: "Normal",
  51343. height: math.unit(6 + 6/12, "feet"),
  51344. default: true,
  51345. form: "normal"
  51346. },
  51347. {
  51348. name: "Small",
  51349. height: math.unit(26, "feet"),
  51350. default: true,
  51351. form: "gigantamax"
  51352. },
  51353. {
  51354. name: "Large",
  51355. height: math.unit(78, "feet"),
  51356. form: "gigantamax"
  51357. },
  51358. ],
  51359. {
  51360. "normal": {
  51361. name: "Normal",
  51362. default: true
  51363. },
  51364. "gigantamax": {
  51365. name: "Gigantamax"
  51366. }
  51367. }
  51368. ))
  51369. characterMakers.push(() => makeCharacter(
  51370. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51371. {
  51372. anthroFront: {
  51373. height: math.unit(8, "feet"),
  51374. weight: math.unit(300, "lb"),
  51375. name: "Front",
  51376. image: {
  51377. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51378. extra: 1272/1176,
  51379. bottom: 53/1325
  51380. },
  51381. form: "anthro",
  51382. default: true
  51383. },
  51384. feralSide: {
  51385. height: math.unit(4, "feet"),
  51386. weight: math.unit(250, "lb"),
  51387. name: "Side",
  51388. image: {
  51389. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51390. extra: 731/621,
  51391. bottom: 0/731
  51392. },
  51393. form: "feral",
  51394. default: true
  51395. },
  51396. },
  51397. [
  51398. {
  51399. name: "Regular",
  51400. height: math.unit(8, "feet"),
  51401. form: "anthro"
  51402. },
  51403. {
  51404. name: "Macro",
  51405. height: math.unit(250, "feet"),
  51406. form: "anthro",
  51407. default: true
  51408. },
  51409. {
  51410. name: "Regular",
  51411. height: math.unit(4, "feet"),
  51412. form: "feral"
  51413. },
  51414. {
  51415. name: "Macro",
  51416. height: math.unit(125, "feet"),
  51417. form: "feral",
  51418. default: true
  51419. },
  51420. ],
  51421. {
  51422. "anthro": {
  51423. name: "Anthro",
  51424. default: true
  51425. },
  51426. "feral": {
  51427. name: "Feral",
  51428. },
  51429. }
  51430. ))
  51431. characterMakers.push(() => makeCharacter(
  51432. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51433. {
  51434. front: {
  51435. height: math.unit(11 + 10/12, "feet"),
  51436. weight: math.unit(1587, "kg"),
  51437. name: "Front",
  51438. image: {
  51439. source: "./media/characters/maple-javira-dragon/front.svg",
  51440. extra: 1136/744,
  51441. bottom: 73/1209
  51442. }
  51443. },
  51444. side: {
  51445. height: math.unit(11 + 10/12, "feet"),
  51446. weight: math.unit(1587, "kg"),
  51447. name: "Side",
  51448. image: {
  51449. source: "./media/characters/maple-javira-dragon/side.svg",
  51450. extra: 712/505,
  51451. bottom: 17/729
  51452. }
  51453. },
  51454. head: {
  51455. height: math.unit(8.05, "feet"),
  51456. name: "Head",
  51457. image: {
  51458. source: "./media/characters/maple-javira-dragon/head.svg",
  51459. extra: 1420/1344,
  51460. bottom: 0/1420
  51461. }
  51462. },
  51463. },
  51464. [
  51465. {
  51466. name: "Normal",
  51467. height: math.unit(11 + 10/12, "feet"),
  51468. default: true
  51469. },
  51470. ]
  51471. ))
  51472. characterMakers.push(() => makeCharacter(
  51473. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51474. {
  51475. front: {
  51476. height: math.unit(117, "cm"),
  51477. weight: math.unit(50, "kg"),
  51478. name: "Front",
  51479. image: {
  51480. source: "./media/characters/sonia-wyverntail/front.svg",
  51481. extra: 708/592,
  51482. bottom: 25/733
  51483. }
  51484. },
  51485. },
  51486. [
  51487. {
  51488. name: "Normal",
  51489. height: math.unit(117, "cm"),
  51490. default: true
  51491. },
  51492. ]
  51493. ))
  51494. characterMakers.push(() => makeCharacter(
  51495. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51496. {
  51497. front: {
  51498. height: math.unit(6 + 5/12, "feet"),
  51499. name: "Front",
  51500. image: {
  51501. source: "./media/characters/micah/front.svg",
  51502. extra: 1758/1546,
  51503. bottom: 214/1972
  51504. }
  51505. },
  51506. },
  51507. [
  51508. {
  51509. name: "Normal",
  51510. height: math.unit(6 + 5/12, "feet"),
  51511. default: true
  51512. },
  51513. ]
  51514. ))
  51515. characterMakers.push(() => makeCharacter(
  51516. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51517. {
  51518. front: {
  51519. height: math.unit(1.75, "meters"),
  51520. weight: math.unit(100, "kg"),
  51521. name: "Front",
  51522. image: {
  51523. source: "./media/characters/zarya/front.svg",
  51524. extra: 741/735,
  51525. bottom: 44/785
  51526. },
  51527. extraAttributes: {
  51528. "tailLength": {
  51529. name: "Tail Length",
  51530. power: 1,
  51531. type: "length",
  51532. base: math.unit(180, "cm")
  51533. },
  51534. "pawLength": {
  51535. name: "Paw Length",
  51536. power: 1,
  51537. type: "length",
  51538. base: math.unit(31, "cm")
  51539. },
  51540. }
  51541. },
  51542. side: {
  51543. height: math.unit(1.75, "meters"),
  51544. weight: math.unit(100, "kg"),
  51545. name: "Side",
  51546. image: {
  51547. source: "./media/characters/zarya/side.svg",
  51548. extra: 776/770,
  51549. bottom: 17/793
  51550. },
  51551. extraAttributes: {
  51552. "tailLength": {
  51553. name: "Tail Length",
  51554. power: 1,
  51555. type: "length",
  51556. base: math.unit(180, "cm")
  51557. },
  51558. "pawLength": {
  51559. name: "Paw Length",
  51560. power: 1,
  51561. type: "length",
  51562. base: math.unit(31, "cm")
  51563. },
  51564. }
  51565. },
  51566. back: {
  51567. height: math.unit(1.75, "meters"),
  51568. weight: math.unit(100, "kg"),
  51569. name: "Back",
  51570. image: {
  51571. source: "./media/characters/zarya/back.svg",
  51572. extra: 741/735,
  51573. bottom: 44/785
  51574. },
  51575. extraAttributes: {
  51576. "tailLength": {
  51577. name: "Tail Length",
  51578. power: 1,
  51579. type: "length",
  51580. base: math.unit(180, "cm")
  51581. },
  51582. "pawLength": {
  51583. name: "Paw Length",
  51584. power: 1,
  51585. type: "length",
  51586. base: math.unit(31, "cm")
  51587. },
  51588. }
  51589. },
  51590. frontNoTail: {
  51591. height: math.unit(1.75, "meters"),
  51592. weight: math.unit(100, "kg"),
  51593. name: "Front (No Tail)",
  51594. image: {
  51595. source: "./media/characters/zarya/front-no-tail.svg",
  51596. extra: 741/735,
  51597. bottom: 44/785
  51598. },
  51599. extraAttributes: {
  51600. "tailLength": {
  51601. name: "Tail Length",
  51602. power: 1,
  51603. type: "length",
  51604. base: math.unit(180, "cm")
  51605. },
  51606. "pawLength": {
  51607. name: "Paw Length",
  51608. power: 1,
  51609. type: "length",
  51610. base: math.unit(31, "cm")
  51611. },
  51612. }
  51613. },
  51614. dressed: {
  51615. height: math.unit(1.75, "meters"),
  51616. weight: math.unit(100, "kg"),
  51617. name: "Dressed",
  51618. image: {
  51619. source: "./media/characters/zarya/dressed.svg",
  51620. extra: 683/672,
  51621. bottom: 79/762
  51622. },
  51623. extraAttributes: {
  51624. "tailLength": {
  51625. name: "Tail Length",
  51626. power: 1,
  51627. type: "length",
  51628. base: math.unit(180, "cm")
  51629. },
  51630. "pawLength": {
  51631. name: "Paw Length",
  51632. power: 1,
  51633. type: "length",
  51634. base: math.unit(31, "cm")
  51635. },
  51636. }
  51637. },
  51638. },
  51639. [
  51640. {
  51641. name: "Micro",
  51642. height: math.unit(5, "cm")
  51643. },
  51644. {
  51645. name: "Normal",
  51646. height: math.unit(1.75, "meters"),
  51647. default: true
  51648. },
  51649. {
  51650. name: "Macro",
  51651. height: math.unit(122, "meters")
  51652. },
  51653. ]
  51654. ))
  51655. characterMakers.push(() => makeCharacter(
  51656. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51657. {
  51658. front: {
  51659. height: math.unit(7.5, "feet"),
  51660. name: "Front",
  51661. image: {
  51662. source: "./media/characters/sven-hatisson/front.svg",
  51663. extra: 917/857,
  51664. bottom: 42/959
  51665. }
  51666. },
  51667. back: {
  51668. height: math.unit(7.5, "feet"),
  51669. name: "Back",
  51670. image: {
  51671. source: "./media/characters/sven-hatisson/back.svg",
  51672. extra: 903/856,
  51673. bottom: 15/918
  51674. }
  51675. },
  51676. },
  51677. [
  51678. {
  51679. name: "Base Height",
  51680. height: math.unit(7.5, "feet")
  51681. },
  51682. {
  51683. name: "Usual Height",
  51684. height: math.unit(13.5, "feet"),
  51685. default: true
  51686. },
  51687. {
  51688. name: "Smaller Macro",
  51689. height: math.unit(85, "feet")
  51690. },
  51691. {
  51692. name: "Moderate Macro",
  51693. height: math.unit(320, "feet")
  51694. },
  51695. {
  51696. name: "Large Macro",
  51697. height: math.unit(1000, "feet")
  51698. },
  51699. {
  51700. name: "Largest Size",
  51701. height: math.unit(2, "miles")
  51702. },
  51703. ]
  51704. ))
  51705. characterMakers.push(() => makeCharacter(
  51706. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51707. {
  51708. side: {
  51709. height: math.unit(1.8, "meters"),
  51710. weight: math.unit(275, "kg"),
  51711. name: "Side",
  51712. image: {
  51713. source: "./media/characters/terra/side.svg",
  51714. extra: 1273/1147,
  51715. bottom: 0/1273
  51716. }
  51717. },
  51718. },
  51719. [
  51720. {
  51721. name: "Normal",
  51722. height: math.unit(16.2, "meters"),
  51723. default: true
  51724. },
  51725. ]
  51726. ))
  51727. characterMakers.push(() => makeCharacter(
  51728. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51729. {
  51730. borzoiFront: {
  51731. height: math.unit(6 + 9/12, "feet"),
  51732. name: "Front",
  51733. image: {
  51734. source: "./media/characters/rae/borzoi-front.svg",
  51735. extra: 1161/1098,
  51736. bottom: 31/1192
  51737. },
  51738. form: "borzoi",
  51739. default: true
  51740. },
  51741. werewolfFront: {
  51742. height: math.unit(8 + 7/12, "feet"),
  51743. name: "Front",
  51744. image: {
  51745. source: "./media/characters/rae/werewolf-front.svg",
  51746. extra: 1411/1334,
  51747. bottom: 127/1538
  51748. },
  51749. form: "werewolf",
  51750. default: true
  51751. },
  51752. },
  51753. [
  51754. {
  51755. name: "Normal",
  51756. height: math.unit(6 + 9/12, "feet"),
  51757. default: true,
  51758. form: "borzoi"
  51759. },
  51760. {
  51761. name: "Normal",
  51762. height: math.unit(8 + 7/12, "feet"),
  51763. default: true,
  51764. form: "werewolf"
  51765. },
  51766. ],
  51767. {
  51768. "borzoi": {
  51769. name: "Borzoi",
  51770. default: true
  51771. },
  51772. "werewolf": {
  51773. name: "Werewolf",
  51774. },
  51775. }
  51776. ))
  51777. characterMakers.push(() => makeCharacter(
  51778. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51779. {
  51780. front: {
  51781. height: math.unit(8 + 7/12, "feet"),
  51782. weight: math.unit(482, "lb"),
  51783. name: "Front",
  51784. image: {
  51785. source: "./media/characters/kit/front.svg",
  51786. extra: 1247/1103,
  51787. bottom: 41/1288
  51788. }
  51789. },
  51790. back: {
  51791. height: math.unit(8 + 7/12, "feet"),
  51792. weight: math.unit(482, "lb"),
  51793. name: "Back",
  51794. image: {
  51795. source: "./media/characters/kit/back.svg",
  51796. extra: 1252/1123,
  51797. bottom: 21/1273
  51798. }
  51799. },
  51800. paw: {
  51801. height: math.unit(1.46, "feet"),
  51802. name: "Paw",
  51803. image: {
  51804. source: "./media/characters/kit/paw.svg"
  51805. }
  51806. },
  51807. },
  51808. [
  51809. {
  51810. name: "Normal",
  51811. height: math.unit(2.61, "meters"),
  51812. default: true
  51813. },
  51814. {
  51815. name: "\"Tall\"",
  51816. height: math.unit(8.21, "meters")
  51817. },
  51818. {
  51819. name: "Tall",
  51820. height: math.unit(19.6, "meters")
  51821. },
  51822. {
  51823. name: "Very Tall",
  51824. height: math.unit(57.91, "meters")
  51825. },
  51826. {
  51827. name: "Semi-Macro",
  51828. height: math.unit(138.64, "meters")
  51829. },
  51830. {
  51831. name: "Macro",
  51832. height: math.unit(831.99, "meters")
  51833. },
  51834. {
  51835. name: "EX-Macro",
  51836. height: math.unit(96451121, "meters")
  51837. },
  51838. {
  51839. name: "S1-Omnipotent",
  51840. height: math.unit(4.42074e+9, "meters")
  51841. },
  51842. {
  51843. name: "S2-Omnipotent",
  51844. height: math.unit(9.42074e+17, "meters")
  51845. },
  51846. {
  51847. name: "Omnipotent",
  51848. height: math.unit(4.23112e+24, "meters")
  51849. },
  51850. {
  51851. name: "Hypergod",
  51852. height: math.unit(5.05176e+27, "meters")
  51853. },
  51854. {
  51855. name: "Hypergod-EX",
  51856. height: math.unit(9.45532e+49, "meters")
  51857. },
  51858. {
  51859. name: "Hypergod-SP",
  51860. height: math.unit(9.45532e+195, "meters")
  51861. },
  51862. ]
  51863. ))
  51864. characterMakers.push(() => makeCharacter(
  51865. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51866. {
  51867. side: {
  51868. height: math.unit(0.6, "meters"),
  51869. weight: math.unit(24, "kg"),
  51870. name: "Side",
  51871. image: {
  51872. source: "./media/characters/celeste/side.svg",
  51873. extra: 810/517,
  51874. bottom: 53/863
  51875. }
  51876. },
  51877. },
  51878. [
  51879. {
  51880. name: "Velociraptor",
  51881. height: math.unit(0.6, "meters"),
  51882. default: true
  51883. },
  51884. {
  51885. name: "Utahraptor",
  51886. height: math.unit(1.8, "meters")
  51887. },
  51888. {
  51889. name: "Gallimimus",
  51890. height: math.unit(4.0, "meters")
  51891. },
  51892. {
  51893. name: "Large",
  51894. height: math.unit(20, "meters")
  51895. },
  51896. {
  51897. name: "Planetary",
  51898. height: math.unit(50, "megameters")
  51899. },
  51900. {
  51901. name: "Stellar",
  51902. height: math.unit(1.5, "gigameters")
  51903. },
  51904. {
  51905. name: "Galactic",
  51906. height: math.unit(100, "exameters")
  51907. },
  51908. ]
  51909. ))
  51910. characterMakers.push(() => makeCharacter(
  51911. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51912. {
  51913. front: {
  51914. height: math.unit(6, "feet"),
  51915. weight: math.unit(210, "lb"),
  51916. name: "Front",
  51917. image: {
  51918. source: "./media/characters/glacia/front.svg",
  51919. extra: 958/901,
  51920. bottom: 45/1003
  51921. }
  51922. },
  51923. },
  51924. [
  51925. {
  51926. name: "Macro",
  51927. height: math.unit(1000, "meters"),
  51928. default: true
  51929. },
  51930. ]
  51931. ))
  51932. characterMakers.push(() => makeCharacter(
  51933. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51934. {
  51935. front: {
  51936. height: math.unit(4, "meters"),
  51937. name: "Front",
  51938. image: {
  51939. source: "./media/characters/giri/front.svg",
  51940. extra: 966/894,
  51941. bottom: 21/987
  51942. }
  51943. },
  51944. },
  51945. [
  51946. {
  51947. name: "Normal",
  51948. height: math.unit(4, "meters"),
  51949. default: true
  51950. },
  51951. ]
  51952. ))
  51953. characterMakers.push(() => makeCharacter(
  51954. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51955. {
  51956. back: {
  51957. height: math.unit(4, "feet"),
  51958. weight: math.unit(37, "lb"),
  51959. name: "Back",
  51960. image: {
  51961. source: "./media/characters/tin/back.svg",
  51962. extra: 845/780,
  51963. bottom: 28/873
  51964. }
  51965. },
  51966. },
  51967. [
  51968. {
  51969. name: "Normal",
  51970. height: math.unit(4, "feet"),
  51971. default: true
  51972. },
  51973. ]
  51974. ))
  51975. characterMakers.push(() => makeCharacter(
  51976. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51977. {
  51978. front: {
  51979. height: math.unit(25, "feet"),
  51980. name: "Front",
  51981. image: {
  51982. source: "./media/characters/cadenza-vivace/front.svg",
  51983. extra: 1842/1578,
  51984. bottom: 30/1872
  51985. }
  51986. },
  51987. },
  51988. [
  51989. {
  51990. name: "Macro",
  51991. height: math.unit(25, "feet"),
  51992. default: true
  51993. },
  51994. ]
  51995. ))
  51996. characterMakers.push(() => makeCharacter(
  51997. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51998. {
  51999. front: {
  52000. height: math.unit(10, "feet"),
  52001. weight: math.unit(625, "kg"),
  52002. name: "Front",
  52003. image: {
  52004. source: "./media/characters/zain/front.svg",
  52005. extra: 1682/1498,
  52006. bottom: 223/1905
  52007. }
  52008. },
  52009. back: {
  52010. height: math.unit(10, "feet"),
  52011. weight: math.unit(625, "kg"),
  52012. name: "Back",
  52013. image: {
  52014. source: "./media/characters/zain/back.svg",
  52015. extra: 1814/1657,
  52016. bottom: 152/1966
  52017. }
  52018. },
  52019. head: {
  52020. height: math.unit(10, "feet"),
  52021. weight: math.unit(625, "kg"),
  52022. name: "Head",
  52023. image: {
  52024. source: "./media/characters/zain/head.svg",
  52025. extra: 1059/762,
  52026. bottom: 0/1059
  52027. }
  52028. },
  52029. },
  52030. [
  52031. {
  52032. name: "Normal",
  52033. height: math.unit(10, "feet"),
  52034. default: true
  52035. },
  52036. ]
  52037. ))
  52038. characterMakers.push(() => makeCharacter(
  52039. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52040. {
  52041. front: {
  52042. height: math.unit(6 + 5/12, "feet"),
  52043. weight: math.unit(750, "lb"),
  52044. name: "Front",
  52045. image: {
  52046. source: "./media/characters/ruchex/front.svg",
  52047. extra: 877/820,
  52048. bottom: 17/894
  52049. },
  52050. extraAttributes: {
  52051. "width": {
  52052. name: "Width",
  52053. power: 1,
  52054. type: "length",
  52055. base: math.unit(4.757, "feet")
  52056. },
  52057. }
  52058. },
  52059. },
  52060. [
  52061. {
  52062. name: "Normal",
  52063. height: math.unit(6 + 5/12, "feet"),
  52064. default: true
  52065. },
  52066. ]
  52067. ))
  52068. characterMakers.push(() => makeCharacter(
  52069. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52070. {
  52071. dressedFront: {
  52072. height: math.unit(191, "cm"),
  52073. weight: math.unit(80, "kg"),
  52074. name: "Front",
  52075. image: {
  52076. source: "./media/characters/buster/dressed-front.svg",
  52077. extra: 1022/973,
  52078. bottom: 69/1091
  52079. }
  52080. },
  52081. dressedBack: {
  52082. height: math.unit(191, "cm"),
  52083. weight: math.unit(80, "kg"),
  52084. name: "Back",
  52085. image: {
  52086. source: "./media/characters/buster/dressed-back.svg",
  52087. extra: 1018/970,
  52088. bottom: 55/1073
  52089. }
  52090. },
  52091. nudeFront: {
  52092. height: math.unit(191, "cm"),
  52093. weight: math.unit(80, "kg"),
  52094. name: "Front (Nude)",
  52095. image: {
  52096. source: "./media/characters/buster/nude-front.svg",
  52097. extra: 1022/973,
  52098. bottom: 69/1091
  52099. }
  52100. },
  52101. nudeBack: {
  52102. height: math.unit(191, "cm"),
  52103. weight: math.unit(80, "kg"),
  52104. name: "Back (Nude)",
  52105. image: {
  52106. source: "./media/characters/buster/nude-back.svg",
  52107. extra: 1018/970,
  52108. bottom: 55/1073
  52109. }
  52110. },
  52111. dick: {
  52112. height: math.unit(2.59, "feet"),
  52113. name: "Dick",
  52114. image: {
  52115. source: "./media/characters/buster/dick.svg"
  52116. }
  52117. },
  52118. ass: {
  52119. height: math.unit(1.2, "feet"),
  52120. name: "Ass",
  52121. image: {
  52122. source: "./media/characters/buster/ass.svg"
  52123. }
  52124. },
  52125. },
  52126. [
  52127. {
  52128. name: "Normal",
  52129. height: math.unit(191, "cm"),
  52130. default: true
  52131. },
  52132. ]
  52133. ))
  52134. characterMakers.push(() => makeCharacter(
  52135. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52136. {
  52137. side: {
  52138. height: math.unit(8.1, "feet"),
  52139. weight: math.unit(3500, "lb"),
  52140. name: "Side",
  52141. image: {
  52142. source: "./media/characters/sonya/side.svg",
  52143. extra: 1730/1317,
  52144. bottom: 86/1816
  52145. }
  52146. },
  52147. },
  52148. [
  52149. {
  52150. name: "Normal",
  52151. height: math.unit(8.1, "feet"),
  52152. default: true
  52153. },
  52154. ]
  52155. ))
  52156. characterMakers.push(() => makeCharacter(
  52157. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52158. {
  52159. front: {
  52160. height: math.unit(6, "feet"),
  52161. weight: math.unit(150, "lb"),
  52162. name: "Front",
  52163. image: {
  52164. source: "./media/characters/cadence-andrysiak/front.svg",
  52165. extra: 1164/1121,
  52166. bottom: 60/1224
  52167. }
  52168. },
  52169. back: {
  52170. height: math.unit(6, "feet"),
  52171. weight: math.unit(150, "lb"),
  52172. name: "Back",
  52173. image: {
  52174. source: "./media/characters/cadence-andrysiak/back.svg",
  52175. extra: 1200/1165,
  52176. bottom: 9/1209
  52177. }
  52178. },
  52179. dressed: {
  52180. height: math.unit(6, "feet"),
  52181. weight: math.unit(150, "lb"),
  52182. name: "Dressed",
  52183. image: {
  52184. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52185. extra: 1164/1121,
  52186. bottom: 60/1224
  52187. }
  52188. },
  52189. },
  52190. [
  52191. {
  52192. name: "Micro",
  52193. height: math.unit(1, "mm")
  52194. },
  52195. {
  52196. name: "Normal",
  52197. height: math.unit(6, "feet"),
  52198. default: true
  52199. },
  52200. ]
  52201. ))
  52202. characterMakers.push(() => makeCharacter(
  52203. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52204. {
  52205. front: {
  52206. height: math.unit(60, "inches"),
  52207. weight: math.unit(16, "lb"),
  52208. preyCapacity: math.unit(80, "liters"),
  52209. name: "Front",
  52210. image: {
  52211. source: "./media/characters/penny-lynx/front.svg",
  52212. extra: 1959/1769,
  52213. bottom: 49/2008
  52214. }
  52215. },
  52216. },
  52217. [
  52218. {
  52219. name: "Nokia",
  52220. height: math.unit(2, "inches")
  52221. },
  52222. {
  52223. name: "Desktop",
  52224. height: math.unit(24, "inches")
  52225. },
  52226. {
  52227. name: "TV",
  52228. height: math.unit(60, "inches")
  52229. },
  52230. {
  52231. name: "Jumbotron",
  52232. height: math.unit(12, "feet")
  52233. },
  52234. {
  52235. name: "Billboard",
  52236. height: math.unit(48, "feet"),
  52237. default: true
  52238. },
  52239. {
  52240. name: "IMAX",
  52241. height: math.unit(96, "feet")
  52242. },
  52243. {
  52244. name: "SINGULARITY",
  52245. height: math.unit(864938, "miles")
  52246. },
  52247. ]
  52248. ))
  52249. characterMakers.push(() => makeCharacter(
  52250. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52251. {
  52252. front: {
  52253. height: math.unit(5 + 4/12, "feet"),
  52254. weight: math.unit(230, "lb"),
  52255. name: "Front",
  52256. image: {
  52257. source: "./media/characters/sukebe/front.svg",
  52258. extra: 2130/2038,
  52259. bottom: 90/2220
  52260. }
  52261. },
  52262. back: {
  52263. height: math.unit(3.48, "feet"),
  52264. weight: math.unit(230, "lb"),
  52265. name: "Back",
  52266. image: {
  52267. source: "./media/characters/sukebe/back.svg",
  52268. extra: 1670/1604,
  52269. bottom: 0/1670
  52270. }
  52271. },
  52272. },
  52273. [
  52274. {
  52275. name: "Normal",
  52276. height: math.unit(5 + 4/12, "feet"),
  52277. default: true
  52278. },
  52279. ]
  52280. ))
  52281. characterMakers.push(() => makeCharacter(
  52282. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52283. {
  52284. front: {
  52285. height: math.unit(6, "feet"),
  52286. name: "Front",
  52287. image: {
  52288. source: "./media/characters/nylla/front.svg",
  52289. extra: 1868/1699,
  52290. bottom: 97/1965
  52291. }
  52292. },
  52293. back: {
  52294. height: math.unit(6, "feet"),
  52295. name: "Back",
  52296. image: {
  52297. source: "./media/characters/nylla/back.svg",
  52298. extra: 1889/1712,
  52299. bottom: 93/1982
  52300. }
  52301. },
  52302. frontNsfw: {
  52303. height: math.unit(6, "feet"),
  52304. name: "Front (NSFW)",
  52305. image: {
  52306. source: "./media/characters/nylla/front-nsfw.svg",
  52307. extra: 1868/1699,
  52308. bottom: 97/1965
  52309. },
  52310. extraAttributes: {
  52311. "dickLength": {
  52312. name: "Dick Length",
  52313. power: 1,
  52314. type: "length",
  52315. base: math.unit(1.4, "feet")
  52316. },
  52317. "cumVolume": {
  52318. name: "Cum Volume",
  52319. power: 3,
  52320. type: "volume",
  52321. base: math.unit(100, "mL")
  52322. },
  52323. }
  52324. },
  52325. backNsfw: {
  52326. height: math.unit(6, "feet"),
  52327. name: "Back (NSFW)",
  52328. image: {
  52329. source: "./media/characters/nylla/back-nsfw.svg",
  52330. extra: 1889/1712,
  52331. bottom: 93/1982
  52332. }
  52333. },
  52334. maw: {
  52335. height: math.unit(2.10, "feet"),
  52336. name: "Maw",
  52337. image: {
  52338. source: "./media/characters/nylla/maw.svg"
  52339. }
  52340. },
  52341. paws: {
  52342. height: math.unit(2.06, "feet"),
  52343. name: "Paws",
  52344. image: {
  52345. source: "./media/characters/nylla/paws.svg"
  52346. }
  52347. },
  52348. muzzle: {
  52349. height: math.unit(0.61, "feet"),
  52350. name: "Muzzle",
  52351. image: {
  52352. source: "./media/characters/nylla/muzzle.svg"
  52353. }
  52354. },
  52355. sheath: {
  52356. height: math.unit(1.305, "feet"),
  52357. name: "Sheath",
  52358. image: {
  52359. source: "./media/characters/nylla/sheath.svg"
  52360. }
  52361. },
  52362. },
  52363. [
  52364. {
  52365. name: "Micro",
  52366. height: math.unit(7.5, "inches")
  52367. },
  52368. {
  52369. name: "Normal",
  52370. height: math.unit(7, "feet"),
  52371. default: true
  52372. },
  52373. {
  52374. name: "Macro",
  52375. height: math.unit(60, "feet")
  52376. },
  52377. {
  52378. name: "Mega",
  52379. height: math.unit(200, "feet")
  52380. },
  52381. ]
  52382. ))
  52383. characterMakers.push(() => makeCharacter(
  52384. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52385. {
  52386. front: {
  52387. height: math.unit(10, "feet"),
  52388. weight: math.unit(2300, "lb"),
  52389. name: "Front",
  52390. image: {
  52391. source: "./media/characters/hunt3r/front.svg",
  52392. extra: 1909/1742,
  52393. bottom: 46/1955
  52394. }
  52395. },
  52396. },
  52397. [
  52398. {
  52399. name: "Normal",
  52400. height: math.unit(10, "feet"),
  52401. default: true
  52402. },
  52403. ]
  52404. ))
  52405. characterMakers.push(() => makeCharacter(
  52406. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52407. {
  52408. dressed: {
  52409. height: math.unit(11, "feet"),
  52410. weight: math.unit(18500, "lb"),
  52411. preyCapacity: math.unit(9, "people"),
  52412. name: "Dressed",
  52413. image: {
  52414. source: "./media/characters/cylphis/dressed.svg",
  52415. extra: 1028/1003,
  52416. bottom: 75/1103
  52417. },
  52418. },
  52419. undressed: {
  52420. height: math.unit(11, "feet"),
  52421. weight: math.unit(18500, "lb"),
  52422. preyCapacity: math.unit(9, "people"),
  52423. name: "Undressed",
  52424. image: {
  52425. source: "./media/characters/cylphis/undressed.svg",
  52426. extra: 1028/1003,
  52427. bottom: 75/1103
  52428. }
  52429. },
  52430. full: {
  52431. height: math.unit(11, "feet"),
  52432. weight: math.unit(18500 + 150*9, "lb"),
  52433. preyCapacity: math.unit(9, "people"),
  52434. name: "Full",
  52435. image: {
  52436. source: "./media/characters/cylphis/full.svg",
  52437. extra: 1028/1003,
  52438. bottom: 75/1103
  52439. }
  52440. },
  52441. },
  52442. [
  52443. {
  52444. name: "Small",
  52445. height: math.unit(8, "feet")
  52446. },
  52447. {
  52448. name: "Normal",
  52449. height: math.unit(11, "feet"),
  52450. default: true
  52451. },
  52452. ]
  52453. ))
  52454. characterMakers.push(() => makeCharacter(
  52455. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52456. {
  52457. front: {
  52458. height: math.unit(2 + 7/12, "feet"),
  52459. name: "Front",
  52460. image: {
  52461. source: "./media/characters/orishan/front.svg",
  52462. extra: 1058/1023,
  52463. bottom: 23/1081
  52464. }
  52465. },
  52466. back: {
  52467. height: math.unit(2 + 7/12, "feet"),
  52468. name: "Back",
  52469. image: {
  52470. source: "./media/characters/orishan/back.svg",
  52471. extra: 1058/1023,
  52472. bottom: 23/1081
  52473. }
  52474. },
  52475. },
  52476. [
  52477. {
  52478. name: "Micro",
  52479. height: math.unit(2, "cm")
  52480. },
  52481. {
  52482. name: "Normal",
  52483. height: math.unit(2 + 7/12, "feet"),
  52484. default: true
  52485. },
  52486. ]
  52487. ))
  52488. characterMakers.push(() => makeCharacter(
  52489. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52490. {
  52491. front: {
  52492. height: math.unit(3, "meters"),
  52493. weight: math.unit(508, "kg"),
  52494. name: "Front",
  52495. image: {
  52496. source: "./media/characters/seranis/front.svg",
  52497. extra: 1478/1454,
  52498. bottom: 41/1519
  52499. }
  52500. },
  52501. },
  52502. [
  52503. {
  52504. name: "Normal",
  52505. height: math.unit(3, "meters"),
  52506. default: true
  52507. },
  52508. {
  52509. name: "Macro",
  52510. height: math.unit(108, "meters")
  52511. },
  52512. {
  52513. name: "Megamacro",
  52514. height: math.unit(1250, "meters")
  52515. },
  52516. ]
  52517. ))
  52518. characterMakers.push(() => makeCharacter(
  52519. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52520. {
  52521. undressed: {
  52522. height: math.unit(5 + 3/12, "feet"),
  52523. name: "Undressed",
  52524. image: {
  52525. source: "./media/characters/ankou/undressed.svg",
  52526. extra: 1301/1213,
  52527. bottom: 87/1388
  52528. }
  52529. },
  52530. dressed: {
  52531. height: math.unit(5 + 3/12, "feet"),
  52532. name: "Dressed",
  52533. image: {
  52534. source: "./media/characters/ankou/dressed.svg",
  52535. extra: 1301/1213,
  52536. bottom: 87/1388
  52537. }
  52538. },
  52539. head: {
  52540. height: math.unit(1.61, "feet"),
  52541. name: "Head",
  52542. image: {
  52543. source: "./media/characters/ankou/head.svg"
  52544. }
  52545. },
  52546. },
  52547. [
  52548. {
  52549. name: "Normal",
  52550. height: math.unit(5 + 3/12, "feet"),
  52551. default: true
  52552. },
  52553. ]
  52554. ))
  52555. characterMakers.push(() => makeCharacter(
  52556. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52557. {
  52558. side: {
  52559. height: math.unit(6 + 3/12, "feet"),
  52560. weight: math.unit(200, "kg"),
  52561. name: "Side",
  52562. image: {
  52563. source: "./media/characters/juniper-skunktaur/side.svg",
  52564. extra: 1574/1229,
  52565. bottom: 38/1612
  52566. }
  52567. },
  52568. front: {
  52569. height: math.unit(6 + 3/12, "feet"),
  52570. weight: math.unit(200, "kg"),
  52571. name: "Front",
  52572. image: {
  52573. source: "./media/characters/juniper-skunktaur/front.svg",
  52574. extra: 1337/1278,
  52575. bottom: 22/1359
  52576. }
  52577. },
  52578. back: {
  52579. height: math.unit(6 + 3/12, "feet"),
  52580. weight: math.unit(200, "kg"),
  52581. name: "Back",
  52582. image: {
  52583. source: "./media/characters/juniper-skunktaur/back.svg",
  52584. extra: 1618/1273,
  52585. bottom: 13/1631
  52586. }
  52587. },
  52588. top: {
  52589. height: math.unit(2.62, "feet"),
  52590. weight: math.unit(200, "kg"),
  52591. name: "Top",
  52592. image: {
  52593. source: "./media/characters/juniper-skunktaur/top.svg"
  52594. }
  52595. },
  52596. },
  52597. [
  52598. {
  52599. name: "Normal",
  52600. height: math.unit(6 + 3/12, "feet"),
  52601. default: true
  52602. },
  52603. ]
  52604. ))
  52605. characterMakers.push(() => makeCharacter(
  52606. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52607. {
  52608. front: {
  52609. height: math.unit(20.5, "feet"),
  52610. name: "Front",
  52611. image: {
  52612. source: "./media/characters/rei/front.svg",
  52613. extra: 1349/1195,
  52614. bottom: 31/1380
  52615. }
  52616. },
  52617. back: {
  52618. height: math.unit(20.5, "feet"),
  52619. name: "Back",
  52620. image: {
  52621. source: "./media/characters/rei/back.svg",
  52622. extra: 1358/1204,
  52623. bottom: 22/1380
  52624. }
  52625. },
  52626. pawsDigi: {
  52627. height: math.unit(3.45, "feet"),
  52628. name: "Paws (Digi)",
  52629. image: {
  52630. source: "./media/characters/rei/paws-digi.svg"
  52631. }
  52632. },
  52633. pawsPlanti: {
  52634. height: math.unit(3.45, "feet"),
  52635. name: "Paws (Planti)",
  52636. image: {
  52637. source: "./media/characters/rei/paws-planti.svg"
  52638. }
  52639. },
  52640. },
  52641. [
  52642. {
  52643. name: "Normal",
  52644. height: math.unit(20.5, "feet"),
  52645. default: true
  52646. },
  52647. ]
  52648. ))
  52649. characterMakers.push(() => makeCharacter(
  52650. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52651. {
  52652. front: {
  52653. height: math.unit(5 + 11/12, "feet"),
  52654. name: "Front",
  52655. image: {
  52656. source: "./media/characters/carina/front.svg",
  52657. extra: 1720/1449,
  52658. bottom: 14/1734
  52659. }
  52660. },
  52661. back: {
  52662. height: math.unit(5 + 11/12, "feet"),
  52663. name: "Back",
  52664. image: {
  52665. source: "./media/characters/carina/back.svg",
  52666. extra: 1493/1445,
  52667. bottom: 17/1510
  52668. }
  52669. },
  52670. paw: {
  52671. height: math.unit(0.92, "feet"),
  52672. name: "Paw",
  52673. image: {
  52674. source: "./media/characters/carina/paw.svg"
  52675. }
  52676. },
  52677. },
  52678. [
  52679. {
  52680. name: "Normal",
  52681. height: math.unit(5 + 11/12, "feet"),
  52682. default: true
  52683. },
  52684. ]
  52685. ))
  52686. characterMakers.push(() => makeCharacter(
  52687. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52688. {
  52689. normal_front: {
  52690. height: math.unit(4.88, "meters"),
  52691. name: "Front",
  52692. image: {
  52693. source: "./media/characters/maya/normal-front.svg",
  52694. extra: 1222/1145,
  52695. bottom: 57/1279
  52696. },
  52697. form: "normal",
  52698. default: true
  52699. },
  52700. monstrous_front: {
  52701. height: math.unit(10, "meters"),
  52702. name: "Front",
  52703. image: {
  52704. source: "./media/characters/maya/monstrous-front.svg",
  52705. extra: 1523/1109,
  52706. bottom: 113/1636
  52707. },
  52708. form: "monstrous",
  52709. extraAttributes: {
  52710. "swallowSize": {
  52711. name: "Tailmaw Bite Size",
  52712. power: 3,
  52713. type: "volume",
  52714. base: math.unit(43000, "liters")
  52715. },
  52716. }
  52717. },
  52718. taur_front: {
  52719. height: math.unit(10, "meters"),
  52720. name: "Front",
  52721. image: {
  52722. source: "./media/characters/maya/taur-front.svg",
  52723. extra: 743/506,
  52724. bottom: 101/844
  52725. },
  52726. form: "taur",
  52727. },
  52728. },
  52729. [
  52730. {
  52731. name: "Normal",
  52732. height: math.unit(4.88, "meters"),
  52733. default: true,
  52734. form: "normal"
  52735. },
  52736. {
  52737. name: "Macro",
  52738. height: math.unit(38.1, "meters"),
  52739. form: "normal"
  52740. },
  52741. {
  52742. name: "Macro+",
  52743. height: math.unit(152.4, "meters"),
  52744. form: "normal"
  52745. },
  52746. {
  52747. name: "Macro++",
  52748. height: math.unit(16.09, "km"),
  52749. form: "normal"
  52750. },
  52751. {
  52752. name: "Mega-macro",
  52753. height: math.unit(700, "megameters"),
  52754. form: "normal"
  52755. },
  52756. {
  52757. name: "Satiated",
  52758. height: math.unit(10, "meters"),
  52759. default: true,
  52760. form: "monstrous"
  52761. },
  52762. {
  52763. name: "Hungry",
  52764. height: math.unit(75, "meters"),
  52765. form: "monstrous"
  52766. },
  52767. {
  52768. name: "Ravenous",
  52769. height: math.unit(500, "meters"),
  52770. form: "monstrous"
  52771. },
  52772. {
  52773. name: "\"Normal\"",
  52774. height: math.unit(10, "meters"),
  52775. form: "taur"
  52776. },
  52777. {
  52778. name: "Macro",
  52779. height: math.unit(50, "meters"),
  52780. form: "taur"
  52781. },
  52782. ],
  52783. {
  52784. "normal": {
  52785. name: "Normal",
  52786. default: true
  52787. },
  52788. "monstrous": {
  52789. name: "Monstrous",
  52790. },
  52791. "taur": {
  52792. name: "Taur",
  52793. },
  52794. }
  52795. ))
  52796. characterMakers.push(() => makeCharacter(
  52797. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52798. {
  52799. front: {
  52800. height: math.unit(6 + 2/12, "feet"),
  52801. weight: math.unit(500, "lb"),
  52802. preyCapacity: math.unit(4, "people"),
  52803. name: "Front",
  52804. image: {
  52805. source: "./media/characters/yepir/front.svg"
  52806. }
  52807. },
  52808. side: {
  52809. height: math.unit(6 + 2/12, "feet"),
  52810. weight: math.unit(500, "lb"),
  52811. preyCapacity: math.unit(4, "people"),
  52812. name: "Side",
  52813. image: {
  52814. source: "./media/characters/yepir/side.svg"
  52815. }
  52816. },
  52817. paw: {
  52818. height: math.unit(1.05, "feet"),
  52819. name: "Paw",
  52820. image: {
  52821. source: "./media/characters/yepir/paw.svg"
  52822. }
  52823. },
  52824. },
  52825. [
  52826. {
  52827. name: "Normal",
  52828. height: math.unit(6 + 2/12, "feet"),
  52829. default: true
  52830. },
  52831. ]
  52832. ))
  52833. characterMakers.push(() => makeCharacter(
  52834. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52835. {
  52836. front: {
  52837. height: math.unit(5 + 4/12, "feet"),
  52838. name: "Front",
  52839. image: {
  52840. source: "./media/characters/russec/front.svg",
  52841. extra: 1926/1626,
  52842. bottom: 72/1998
  52843. }
  52844. },
  52845. back: {
  52846. height: math.unit(5 + 4/12, "feet"),
  52847. name: "Back",
  52848. image: {
  52849. source: "./media/characters/russec/back.svg",
  52850. extra: 1910/1591,
  52851. bottom: 48/1958
  52852. }
  52853. },
  52854. },
  52855. [
  52856. {
  52857. name: "Small",
  52858. height: math.unit(5 + 4/12, "feet")
  52859. },
  52860. {
  52861. name: "Normal",
  52862. height: math.unit(72, "feet"),
  52863. default: true
  52864. },
  52865. ]
  52866. ))
  52867. characterMakers.push(() => makeCharacter(
  52868. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52869. {
  52870. side: {
  52871. height: math.unit(12, "feet"),
  52872. name: "Side",
  52873. image: {
  52874. source: "./media/characters/cianus/side.svg",
  52875. extra: 808/526,
  52876. bottom: 61/869
  52877. }
  52878. },
  52879. },
  52880. [
  52881. {
  52882. name: "Normal",
  52883. height: math.unit(12, "feet"),
  52884. default: true
  52885. },
  52886. ]
  52887. ))
  52888. characterMakers.push(() => makeCharacter(
  52889. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52890. {
  52891. front: {
  52892. height: math.unit(9 + 6/12, "feet"),
  52893. weight: math.unit(300, "lb"),
  52894. name: "Front",
  52895. image: {
  52896. source: "./media/characters/ahab/front.svg",
  52897. extra: 1897/1868,
  52898. bottom: 121/2018
  52899. }
  52900. },
  52901. frontNsfw: {
  52902. height: math.unit(9 + 6/12, "feet"),
  52903. weight: math.unit(300, "lb"),
  52904. name: "Front-nsfw",
  52905. image: {
  52906. source: "./media/characters/ahab/front-nsfw.svg",
  52907. extra: 1897/1868,
  52908. bottom: 121/2018
  52909. }
  52910. },
  52911. },
  52912. [
  52913. {
  52914. name: "Normal",
  52915. height: math.unit(9 + 6/12, "feet")
  52916. },
  52917. {
  52918. name: "Macro",
  52919. height: math.unit(657, "feet"),
  52920. default: true
  52921. },
  52922. ]
  52923. ))
  52924. characterMakers.push(() => makeCharacter(
  52925. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52926. {
  52927. front: {
  52928. height: math.unit(2.69, "meters"),
  52929. weight: math.unit(132, "kg"),
  52930. name: "Front",
  52931. image: {
  52932. source: "./media/characters/aarkus/front.svg",
  52933. extra: 1400/1231,
  52934. bottom: 34/1434
  52935. }
  52936. },
  52937. back: {
  52938. height: math.unit(2.69, "meters"),
  52939. weight: math.unit(132, "kg"),
  52940. name: "Back",
  52941. image: {
  52942. source: "./media/characters/aarkus/back.svg",
  52943. extra: 1381/1218,
  52944. bottom: 30/1411
  52945. }
  52946. },
  52947. frontNsfw: {
  52948. height: math.unit(2.69, "meters"),
  52949. weight: math.unit(132, "kg"),
  52950. name: "Front (NSFW)",
  52951. image: {
  52952. source: "./media/characters/aarkus/front-nsfw.svg",
  52953. extra: 1400/1231,
  52954. bottom: 34/1434
  52955. }
  52956. },
  52957. foot: {
  52958. height: math.unit(1.45, "feet"),
  52959. name: "Foot",
  52960. image: {
  52961. source: "./media/characters/aarkus/foot.svg"
  52962. }
  52963. },
  52964. head: {
  52965. height: math.unit(2.85, "feet"),
  52966. name: "Head",
  52967. image: {
  52968. source: "./media/characters/aarkus/head.svg"
  52969. }
  52970. },
  52971. headAlt: {
  52972. height: math.unit(3.07, "feet"),
  52973. name: "Head (Alt)",
  52974. image: {
  52975. source: "./media/characters/aarkus/head-alt.svg"
  52976. }
  52977. },
  52978. mouth: {
  52979. height: math.unit(1.25, "feet"),
  52980. name: "Mouth",
  52981. image: {
  52982. source: "./media/characters/aarkus/mouth.svg"
  52983. }
  52984. },
  52985. dick: {
  52986. height: math.unit(1.77, "feet"),
  52987. name: "Dick",
  52988. image: {
  52989. source: "./media/characters/aarkus/dick.svg"
  52990. }
  52991. },
  52992. },
  52993. [
  52994. {
  52995. name: "Normal",
  52996. height: math.unit(2.69, "meters"),
  52997. default: true
  52998. },
  52999. {
  53000. name: "Macro",
  53001. height: math.unit(269, "meters")
  53002. },
  53003. {
  53004. name: "Macro+",
  53005. height: math.unit(672.5, "meters")
  53006. },
  53007. {
  53008. name: "Megamacro",
  53009. height: math.unit(2.017, "km")
  53010. },
  53011. ]
  53012. ))
  53013. characterMakers.push(() => makeCharacter(
  53014. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53015. {
  53016. front: {
  53017. height: math.unit(23.47, "cm"),
  53018. weight: math.unit(600, "grams"),
  53019. name: "Front",
  53020. image: {
  53021. source: "./media/characters/diode/front.svg",
  53022. extra: 1778/1396,
  53023. bottom: 95/1873
  53024. }
  53025. },
  53026. side: {
  53027. height: math.unit(23.47, "cm"),
  53028. weight: math.unit(600, "grams"),
  53029. name: "Side",
  53030. image: {
  53031. source: "./media/characters/diode/side.svg",
  53032. extra: 1831/1404,
  53033. bottom: 86/1917
  53034. }
  53035. },
  53036. wings: {
  53037. height: math.unit(0.683, "feet"),
  53038. name: "Wings",
  53039. image: {
  53040. source: "./media/characters/diode/wings.svg"
  53041. }
  53042. },
  53043. },
  53044. [
  53045. {
  53046. name: "Normal",
  53047. height: math.unit(23.47, "cm"),
  53048. default: true
  53049. },
  53050. ]
  53051. ))
  53052. characterMakers.push(() => makeCharacter(
  53053. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53054. {
  53055. front: {
  53056. height: math.unit(6 + 3/12, "feet"),
  53057. weight: math.unit(250, "lb"),
  53058. name: "Front",
  53059. image: {
  53060. source: "./media/characters/reika/front.svg",
  53061. extra: 1120/1078,
  53062. bottom: 86/1206
  53063. }
  53064. },
  53065. },
  53066. [
  53067. {
  53068. name: "Normal",
  53069. height: math.unit(6 + 3/12, "feet"),
  53070. default: true
  53071. },
  53072. ]
  53073. ))
  53074. characterMakers.push(() => makeCharacter(
  53075. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53076. {
  53077. front: {
  53078. height: math.unit(16 + 8/12, "feet"),
  53079. weight: math.unit(9000, "lb"),
  53080. name: "Front",
  53081. image: {
  53082. source: "./media/characters/lokuto-takama/front.svg",
  53083. extra: 1774/1632,
  53084. bottom: 147/1921
  53085. },
  53086. extraAttributes: {
  53087. "bustWidth": {
  53088. name: "Bust Width",
  53089. power: 1,
  53090. type: "length",
  53091. base: math.unit(2.4, "meters")
  53092. },
  53093. "breastWeight": {
  53094. name: "Breast Weight",
  53095. power: 3,
  53096. type: "mass",
  53097. base: math.unit(1000, "kg")
  53098. },
  53099. }
  53100. },
  53101. },
  53102. [
  53103. {
  53104. name: "Normal",
  53105. height: math.unit(16 + 8/12, "feet"),
  53106. default: true
  53107. },
  53108. ]
  53109. ))
  53110. characterMakers.push(() => makeCharacter(
  53111. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53112. {
  53113. front: {
  53114. height: math.unit(10, "cm"),
  53115. weight: math.unit(850, "grams"),
  53116. name: "Front",
  53117. image: {
  53118. source: "./media/characters/owak-bone/front.svg",
  53119. extra: 1965/1801,
  53120. bottom: 31/1996
  53121. }
  53122. },
  53123. },
  53124. [
  53125. {
  53126. name: "Normal",
  53127. height: math.unit(10, "cm"),
  53128. default: true
  53129. },
  53130. ]
  53131. ))
  53132. characterMakers.push(() => makeCharacter(
  53133. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53134. {
  53135. front: {
  53136. height: math.unit(2 + 6/12, "feet"),
  53137. weight: math.unit(9, "lb"),
  53138. name: "Front",
  53139. image: {
  53140. source: "./media/characters/muffin/front.svg",
  53141. extra: 1220/1195,
  53142. bottom: 84/1304
  53143. }
  53144. },
  53145. },
  53146. [
  53147. {
  53148. name: "Normal",
  53149. height: math.unit(2 + 6/12, "feet"),
  53150. default: true
  53151. },
  53152. ]
  53153. ))
  53154. characterMakers.push(() => makeCharacter(
  53155. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53156. {
  53157. front: {
  53158. height: math.unit(7, "feet"),
  53159. name: "Front",
  53160. image: {
  53161. source: "./media/characters/chimera/front.svg",
  53162. extra: 1752/1614,
  53163. bottom: 68/1820
  53164. }
  53165. },
  53166. },
  53167. [
  53168. {
  53169. name: "Normal",
  53170. height: math.unit(7, "feet")
  53171. },
  53172. {
  53173. name: "Gigamacro",
  53174. height: math.unit(2.9, "gigameters"),
  53175. default: true
  53176. },
  53177. {
  53178. name: "Universal",
  53179. height: math.unit(1.56e26, "yottameters")
  53180. },
  53181. ]
  53182. ))
  53183. characterMakers.push(() => makeCharacter(
  53184. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53185. {
  53186. front: {
  53187. height: math.unit(3, "feet"),
  53188. weight: math.unit(20, "lb"),
  53189. name: "Front",
  53190. image: {
  53191. source: "./media/characters/kit-fennec-fox/front.svg",
  53192. extra: 1027/932,
  53193. bottom: 16/1043
  53194. }
  53195. },
  53196. back: {
  53197. height: math.unit(3, "feet"),
  53198. weight: math.unit(20, "lb"),
  53199. name: "Back",
  53200. image: {
  53201. source: "./media/characters/kit-fennec-fox/back.svg",
  53202. extra: 1027/932,
  53203. bottom: 16/1043
  53204. }
  53205. },
  53206. },
  53207. [
  53208. {
  53209. name: "Normal",
  53210. height: math.unit(3, "feet"),
  53211. default: true
  53212. },
  53213. ]
  53214. ))
  53215. characterMakers.push(() => makeCharacter(
  53216. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53217. {
  53218. front: {
  53219. height: math.unit(167, "cm"),
  53220. name: "Front",
  53221. image: {
  53222. source: "./media/characters/blue-otter/front.svg",
  53223. extra: 1951/1920,
  53224. bottom: 31/1982
  53225. }
  53226. },
  53227. },
  53228. [
  53229. {
  53230. name: "Otter-Sized",
  53231. height: math.unit(100, "cm")
  53232. },
  53233. {
  53234. name: "Normal",
  53235. height: math.unit(167, "cm"),
  53236. default: true
  53237. },
  53238. ]
  53239. ))
  53240. characterMakers.push(() => makeCharacter(
  53241. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53242. {
  53243. front: {
  53244. height: math.unit(4 + 4/12, "feet"),
  53245. name: "Front",
  53246. image: {
  53247. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53248. extra: 1072/1067,
  53249. bottom: 117/1189
  53250. }
  53251. },
  53252. back: {
  53253. height: math.unit(4 + 4/12, "feet"),
  53254. name: "Back",
  53255. image: {
  53256. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53257. extra: 1135/1129,
  53258. bottom: 57/1192
  53259. }
  53260. },
  53261. head: {
  53262. height: math.unit(1.77, "feet"),
  53263. name: "Head",
  53264. image: {
  53265. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53266. }
  53267. },
  53268. },
  53269. [
  53270. {
  53271. name: "Normal",
  53272. height: math.unit(4 + 4/12, "feet"),
  53273. default: true
  53274. },
  53275. ]
  53276. ))
  53277. characterMakers.push(() => makeCharacter(
  53278. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53279. {
  53280. front: {
  53281. height: math.unit(2, "inches"),
  53282. name: "Front",
  53283. image: {
  53284. source: "./media/characters/carley-hartford/front.svg",
  53285. extra: 1035/988,
  53286. bottom: 23/1058
  53287. }
  53288. },
  53289. back: {
  53290. height: math.unit(2, "inches"),
  53291. name: "Back",
  53292. image: {
  53293. source: "./media/characters/carley-hartford/back.svg",
  53294. extra: 1035/988,
  53295. bottom: 23/1058
  53296. }
  53297. },
  53298. dressed: {
  53299. height: math.unit(2, "inches"),
  53300. name: "Dressed",
  53301. image: {
  53302. source: "./media/characters/carley-hartford/dressed.svg",
  53303. extra: 651/620,
  53304. bottom: 0/651
  53305. }
  53306. },
  53307. },
  53308. [
  53309. {
  53310. name: "Micro",
  53311. height: math.unit(2, "inches"),
  53312. default: true
  53313. },
  53314. {
  53315. name: "Macro",
  53316. height: math.unit(6 + 3/12, "feet")
  53317. },
  53318. ]
  53319. ))
  53320. characterMakers.push(() => makeCharacter(
  53321. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53322. {
  53323. front: {
  53324. height: math.unit(2 + 3/12, "feet"),
  53325. weight: math.unit(15 + 7/16, "lb"),
  53326. name: "Front",
  53327. image: {
  53328. source: "./media/characters/duke/front.svg",
  53329. extra: 910/815,
  53330. bottom: 30/940
  53331. }
  53332. },
  53333. },
  53334. [
  53335. {
  53336. name: "Normal",
  53337. height: math.unit(2 + 3/12, "feet"),
  53338. default: true
  53339. },
  53340. ]
  53341. ))
  53342. characterMakers.push(() => makeCharacter(
  53343. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53344. {
  53345. front: {
  53346. height: math.unit(5 + 4/12, "feet"),
  53347. weight: math.unit(156, "lb"),
  53348. name: "Front",
  53349. image: {
  53350. source: "./media/characters/dein/front.svg",
  53351. extra: 855/815,
  53352. bottom: 48/903
  53353. }
  53354. },
  53355. side: {
  53356. height: math.unit(5 + 4/12, "feet"),
  53357. weight: math.unit(156, "lb"),
  53358. name: "side",
  53359. image: {
  53360. source: "./media/characters/dein/side.svg",
  53361. extra: 846/803,
  53362. bottom: 25/871
  53363. }
  53364. },
  53365. maw: {
  53366. height: math.unit(1.45, "feet"),
  53367. name: "Maw",
  53368. image: {
  53369. source: "./media/characters/dein/maw.svg"
  53370. }
  53371. },
  53372. },
  53373. [
  53374. {
  53375. name: "Ferret Sized",
  53376. height: math.unit(2 + 5/12, "feet")
  53377. },
  53378. {
  53379. name: "Normal",
  53380. height: math.unit(5 + 4/12, "feet"),
  53381. default: true
  53382. },
  53383. ]
  53384. ))
  53385. characterMakers.push(() => makeCharacter(
  53386. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53387. {
  53388. front: {
  53389. height: math.unit(84 + 8/12, "feet"),
  53390. weight: math.unit(942180, "lb"),
  53391. name: "Front",
  53392. image: {
  53393. source: "./media/characters/daurine-arima/front.svg",
  53394. extra: 1989/1782,
  53395. bottom: 37/2026
  53396. }
  53397. },
  53398. side: {
  53399. height: math.unit(84 + 8/12, "feet"),
  53400. weight: math.unit(942180, "lb"),
  53401. name: "Side",
  53402. image: {
  53403. source: "./media/characters/daurine-arima/side.svg",
  53404. extra: 1997/1790,
  53405. bottom: 21/2018
  53406. }
  53407. },
  53408. back: {
  53409. height: math.unit(84 + 8/12, "feet"),
  53410. weight: math.unit(942180, "lb"),
  53411. name: "Back",
  53412. image: {
  53413. source: "./media/characters/daurine-arima/back.svg",
  53414. extra: 1992/1800,
  53415. bottom: 12/2004
  53416. }
  53417. },
  53418. head: {
  53419. height: math.unit(15.5, "feet"),
  53420. name: "Head",
  53421. image: {
  53422. source: "./media/characters/daurine-arima/head.svg"
  53423. }
  53424. },
  53425. headAlt: {
  53426. height: math.unit(19.19, "feet"),
  53427. name: "Head (Alt)",
  53428. image: {
  53429. source: "./media/characters/daurine-arima/head-alt.svg"
  53430. }
  53431. },
  53432. },
  53433. [
  53434. {
  53435. name: "Minimum height",
  53436. height: math.unit(8 + 10/12, "feet")
  53437. },
  53438. {
  53439. name: "Comfort height",
  53440. height: math.unit(19 + 6 /12, "feet")
  53441. },
  53442. {
  53443. name: "\"Normal\" height",
  53444. height: math.unit(28 + 10/12, "feet")
  53445. },
  53446. {
  53447. name: "Base height",
  53448. height: math.unit(84 + 8/12, "feet"),
  53449. default: true
  53450. },
  53451. {
  53452. name: "Mini-macro",
  53453. height: math.unit(2360, "feet")
  53454. },
  53455. {
  53456. name: "Macro",
  53457. height: math.unit(10, "miles")
  53458. },
  53459. {
  53460. name: "Goddess",
  53461. height: math.unit(9.99e40, "yottameters")
  53462. },
  53463. ]
  53464. ))
  53465. characterMakers.push(() => makeCharacter(
  53466. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53467. {
  53468. front: {
  53469. height: math.unit(2.3, "meters"),
  53470. name: "Front",
  53471. image: {
  53472. source: "./media/characters/cilenomon/front.svg",
  53473. extra: 1963/1778,
  53474. bottom: 54/2017
  53475. }
  53476. },
  53477. },
  53478. [
  53479. {
  53480. name: "Normal",
  53481. height: math.unit(2.3, "meters"),
  53482. default: true
  53483. },
  53484. {
  53485. name: "Big",
  53486. height: math.unit(5, "meters")
  53487. },
  53488. {
  53489. name: "Macro",
  53490. height: math.unit(30, "meters")
  53491. },
  53492. {
  53493. name: "True",
  53494. height: math.unit(1, "universe")
  53495. },
  53496. ]
  53497. ))
  53498. characterMakers.push(() => makeCharacter(
  53499. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53500. {
  53501. front: {
  53502. height: math.unit(5, "feet"),
  53503. name: "Front",
  53504. image: {
  53505. source: "./media/characters/sen-mink/front.svg",
  53506. extra: 1727/1675,
  53507. bottom: 35/1762
  53508. }
  53509. },
  53510. },
  53511. [
  53512. {
  53513. name: "Normal",
  53514. height: math.unit(5, "feet"),
  53515. default: true
  53516. },
  53517. ]
  53518. ))
  53519. characterMakers.push(() => makeCharacter(
  53520. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53521. {
  53522. front: {
  53523. height: math.unit(5.42999, "feet"),
  53524. weight: math.unit(100, "lb"),
  53525. name: "Front",
  53526. image: {
  53527. source: "./media/characters/ophois/front.svg",
  53528. extra: 1429/1286,
  53529. bottom: 60/1489
  53530. }
  53531. },
  53532. },
  53533. [
  53534. {
  53535. name: "Normal",
  53536. height: math.unit(5.42999, "feet"),
  53537. default: true
  53538. },
  53539. ]
  53540. ))
  53541. characterMakers.push(() => makeCharacter(
  53542. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53543. {
  53544. front: {
  53545. height: math.unit(2, "meters"),
  53546. name: "Front",
  53547. image: {
  53548. source: "./media/characters/riley/front.svg",
  53549. extra: 1779/1754,
  53550. bottom: 139/1918
  53551. }
  53552. },
  53553. },
  53554. [
  53555. {
  53556. name: "Normal",
  53557. height: math.unit(2, "meters"),
  53558. default: true
  53559. },
  53560. ]
  53561. ))
  53562. characterMakers.push(() => makeCharacter(
  53563. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53564. {
  53565. front: {
  53566. height: math.unit(6 + 2/12, "feet"),
  53567. weight: math.unit(195, "lb"),
  53568. preyCapacity: math.unit(6, "people"),
  53569. name: "Front",
  53570. image: {
  53571. source: "./media/characters/shuken-flash/front.svg",
  53572. extra: 1905/1739,
  53573. bottom: 65/1970
  53574. }
  53575. },
  53576. back: {
  53577. height: math.unit(6 + 2/12, "feet"),
  53578. weight: math.unit(195, "lb"),
  53579. preyCapacity: math.unit(6, "people"),
  53580. name: "Back",
  53581. image: {
  53582. source: "./media/characters/shuken-flash/back.svg",
  53583. extra: 1912/1751,
  53584. bottom: 13/1925
  53585. }
  53586. },
  53587. },
  53588. [
  53589. {
  53590. name: "Normal",
  53591. height: math.unit(6 + 2/12, "feet"),
  53592. default: true
  53593. },
  53594. ]
  53595. ))
  53596. characterMakers.push(() => makeCharacter(
  53597. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53598. {
  53599. front: {
  53600. height: math.unit(5 + 9/12, "feet"),
  53601. weight: math.unit(150, "lb"),
  53602. name: "Front",
  53603. image: {
  53604. source: "./media/characters/plat/front.svg",
  53605. extra: 1816/1703,
  53606. bottom: 43/1859
  53607. }
  53608. },
  53609. side: {
  53610. height: math.unit(5 + 9/12, "feet"),
  53611. weight: math.unit(300, "lb"),
  53612. name: "Side",
  53613. image: {
  53614. source: "./media/characters/plat/side.svg",
  53615. extra: 1824/1699,
  53616. bottom: 18/1842
  53617. }
  53618. },
  53619. },
  53620. [
  53621. {
  53622. name: "Normal",
  53623. height: math.unit(5 + 9/12, "feet"),
  53624. default: true
  53625. },
  53626. ]
  53627. ))
  53628. characterMakers.push(() => makeCharacter(
  53629. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53630. {
  53631. front: {
  53632. height: math.unit(9, "feet"),
  53633. weight: math.unit(1800, "lb"),
  53634. name: "Front",
  53635. image: {
  53636. source: "./media/characters/elaine/front.svg",
  53637. extra: 1833/1354,
  53638. bottom: 25/1858
  53639. }
  53640. },
  53641. back: {
  53642. height: math.unit(8.8, "feet"),
  53643. weight: math.unit(1800, "lb"),
  53644. name: "Back",
  53645. image: {
  53646. source: "./media/characters/elaine/back.svg",
  53647. extra: 1641/1233,
  53648. bottom: 53/1694
  53649. }
  53650. },
  53651. },
  53652. [
  53653. {
  53654. name: "Normal",
  53655. height: math.unit(9, "feet"),
  53656. default: true
  53657. },
  53658. ]
  53659. ))
  53660. characterMakers.push(() => makeCharacter(
  53661. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53662. {
  53663. front: {
  53664. height: math.unit(17 + 9/12, "feet"),
  53665. weight: math.unit(8000, "lb"),
  53666. name: "Front",
  53667. image: {
  53668. source: "./media/characters/vera-raven/front.svg",
  53669. extra: 1457/1412,
  53670. bottom: 121/1578
  53671. }
  53672. },
  53673. side: {
  53674. height: math.unit(17 + 9/12, "feet"),
  53675. weight: math.unit(8000, "lb"),
  53676. name: "Side",
  53677. image: {
  53678. source: "./media/characters/vera-raven/side.svg",
  53679. extra: 1510/1464,
  53680. bottom: 54/1564
  53681. }
  53682. },
  53683. },
  53684. [
  53685. {
  53686. name: "Normal",
  53687. height: math.unit(17 + 9/12, "feet"),
  53688. default: true
  53689. },
  53690. ]
  53691. ))
  53692. characterMakers.push(() => makeCharacter(
  53693. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53694. {
  53695. dressed: {
  53696. height: math.unit(6 + 9/12, "feet"),
  53697. name: "Dressed",
  53698. image: {
  53699. source: "./media/characters/nakisha/dressed.svg",
  53700. extra: 1909/1757,
  53701. bottom: 48/1957
  53702. }
  53703. },
  53704. nude: {
  53705. height: math.unit(6 + 9/12, "feet"),
  53706. name: "Nude",
  53707. image: {
  53708. source: "./media/characters/nakisha/nude.svg",
  53709. extra: 1917/1765,
  53710. bottom: 34/1951
  53711. }
  53712. },
  53713. },
  53714. [
  53715. {
  53716. name: "Normal",
  53717. height: math.unit(6 + 9/12, "feet"),
  53718. default: true
  53719. },
  53720. ]
  53721. ))
  53722. characterMakers.push(() => makeCharacter(
  53723. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53724. {
  53725. front: {
  53726. height: math.unit(87, "meters"),
  53727. name: "Front",
  53728. image: {
  53729. source: "./media/characters/serafin/front.svg",
  53730. extra: 1919/1776,
  53731. bottom: 65/1984
  53732. }
  53733. },
  53734. },
  53735. [
  53736. {
  53737. name: "Normal",
  53738. height: math.unit(87, "meters"),
  53739. default: true
  53740. },
  53741. ]
  53742. ))
  53743. characterMakers.push(() => makeCharacter(
  53744. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53745. {
  53746. front: {
  53747. height: math.unit(6, "feet"),
  53748. weight: math.unit(200, "lb"),
  53749. name: "Front",
  53750. image: {
  53751. source: "./media/characters/poptart/front.svg",
  53752. extra: 615/583,
  53753. bottom: 23/638
  53754. }
  53755. },
  53756. back: {
  53757. height: math.unit(6, "feet"),
  53758. weight: math.unit(200, "lb"),
  53759. name: "Back",
  53760. image: {
  53761. source: "./media/characters/poptart/back.svg",
  53762. extra: 617/584,
  53763. bottom: 22/639
  53764. }
  53765. },
  53766. frontNsfw: {
  53767. height: math.unit(6, "feet"),
  53768. weight: math.unit(200, "lb"),
  53769. name: "Front (NSFW)",
  53770. image: {
  53771. source: "./media/characters/poptart/front-nsfw.svg",
  53772. extra: 615/583,
  53773. bottom: 23/638
  53774. }
  53775. },
  53776. backNsfw: {
  53777. height: math.unit(6, "feet"),
  53778. weight: math.unit(200, "lb"),
  53779. name: "Back (NSFW)",
  53780. image: {
  53781. source: "./media/characters/poptart/back-nsfw.svg",
  53782. extra: 617/584,
  53783. bottom: 22/639
  53784. }
  53785. },
  53786. hand: {
  53787. height: math.unit(1.14, "feet"),
  53788. name: "Hand",
  53789. image: {
  53790. source: "./media/characters/poptart/hand.svg"
  53791. }
  53792. },
  53793. foot: {
  53794. height: math.unit(1.5, "feet"),
  53795. name: "Foot",
  53796. image: {
  53797. source: "./media/characters/poptart/foot.svg"
  53798. }
  53799. },
  53800. },
  53801. [
  53802. {
  53803. name: "Normal",
  53804. height: math.unit(6, "feet"),
  53805. default: true
  53806. },
  53807. {
  53808. name: "Grande",
  53809. height: math.unit(350, "feet")
  53810. },
  53811. {
  53812. name: "Massif",
  53813. height: math.unit(967, "feet")
  53814. },
  53815. ]
  53816. ))
  53817. characterMakers.push(() => makeCharacter(
  53818. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53819. {
  53820. hyenaSide: {
  53821. height: math.unit(120, "cm"),
  53822. weight: math.unit(120, "lb"),
  53823. name: "Side",
  53824. image: {
  53825. source: "./media/characters/trance/hyena-side.svg",
  53826. extra: 998/904,
  53827. bottom: 76/1074
  53828. }
  53829. },
  53830. },
  53831. [
  53832. {
  53833. name: "Normal",
  53834. height: math.unit(120, "cm"),
  53835. default: true
  53836. },
  53837. {
  53838. name: "Dire",
  53839. height: math.unit(230, "cm")
  53840. },
  53841. {
  53842. name: "Macro",
  53843. height: math.unit(37, "feet")
  53844. },
  53845. ]
  53846. ))
  53847. characterMakers.push(() => makeCharacter(
  53848. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53849. {
  53850. front: {
  53851. height: math.unit(6 + 3/12, "feet"),
  53852. name: "Front",
  53853. image: {
  53854. source: "./media/characters/michael-berretta/front.svg",
  53855. extra: 515/494,
  53856. bottom: 20/535
  53857. }
  53858. },
  53859. back: {
  53860. height: math.unit(6 + 3/12, "feet"),
  53861. name: "Back",
  53862. image: {
  53863. source: "./media/characters/michael-berretta/back.svg",
  53864. extra: 520/497,
  53865. bottom: 21/541
  53866. }
  53867. },
  53868. frontNsfw: {
  53869. height: math.unit(6 + 3/12, "feet"),
  53870. name: "Front (NSFW)",
  53871. image: {
  53872. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53873. extra: 515/494,
  53874. bottom: 20/535
  53875. }
  53876. },
  53877. dick: {
  53878. height: math.unit(1, "feet"),
  53879. name: "Dick",
  53880. image: {
  53881. source: "./media/characters/michael-berretta/dick.svg"
  53882. }
  53883. },
  53884. },
  53885. [
  53886. {
  53887. name: "Normal",
  53888. height: math.unit(6 + 3/12, "feet"),
  53889. default: true
  53890. },
  53891. {
  53892. name: "Big",
  53893. height: math.unit(12, "feet")
  53894. },
  53895. {
  53896. name: "Macro",
  53897. height: math.unit(187.5, "feet")
  53898. },
  53899. ]
  53900. ))
  53901. characterMakers.push(() => makeCharacter(
  53902. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53903. {
  53904. front: {
  53905. height: math.unit(9 + 9/12, "feet"),
  53906. weight: math.unit(1244, "lb"),
  53907. name: "Front",
  53908. image: {
  53909. source: "./media/characters/stella-edgecomb/front.svg",
  53910. extra: 1835/1706,
  53911. bottom: 49/1884
  53912. }
  53913. },
  53914. pen: {
  53915. height: math.unit(0.95, "feet"),
  53916. name: "Pen",
  53917. image: {
  53918. source: "./media/characters/stella-edgecomb/pen.svg"
  53919. }
  53920. },
  53921. },
  53922. [
  53923. {
  53924. name: "Cozy Bear",
  53925. height: math.unit(0.5, "inches")
  53926. },
  53927. {
  53928. name: "Normal",
  53929. height: math.unit(9 + 9/12, "feet"),
  53930. default: true
  53931. },
  53932. {
  53933. name: "Giga Bear",
  53934. height: math.unit(1, "mile")
  53935. },
  53936. {
  53937. name: "Great Bear",
  53938. height: math.unit(53, "miles")
  53939. },
  53940. {
  53941. name: "Goddess Bear",
  53942. height: math.unit(40000, "miles")
  53943. },
  53944. {
  53945. name: "Sun Bear",
  53946. height: math.unit(900000, "miles")
  53947. },
  53948. ]
  53949. ))
  53950. characterMakers.push(() => makeCharacter(
  53951. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53952. {
  53953. anthroFront: {
  53954. height: math.unit(556, "cm"),
  53955. weight: math.unit(2650, "kg"),
  53956. preyCapacity: math.unit(3, "people"),
  53957. name: "Front",
  53958. image: {
  53959. source: "./media/characters/ash´iika/front.svg",
  53960. extra: 710/673,
  53961. bottom: 15/725
  53962. },
  53963. form: "anthro",
  53964. default: true
  53965. },
  53966. anthroSide: {
  53967. height: math.unit(556, "cm"),
  53968. weight: math.unit(2650, "kg"),
  53969. preyCapacity: math.unit(3, "people"),
  53970. name: "Side",
  53971. image: {
  53972. source: "./media/characters/ash´iika/side.svg",
  53973. extra: 696/676,
  53974. bottom: 13/709
  53975. },
  53976. form: "anthro"
  53977. },
  53978. anthroDressed: {
  53979. height: math.unit(556, "cm"),
  53980. weight: math.unit(2650, "kg"),
  53981. preyCapacity: math.unit(3, "people"),
  53982. name: "Dressed",
  53983. image: {
  53984. source: "./media/characters/ash´iika/dressed.svg",
  53985. extra: 710/673,
  53986. bottom: 15/725
  53987. },
  53988. form: "anthro"
  53989. },
  53990. anthroHead: {
  53991. height: math.unit(3.5, "feet"),
  53992. name: "Head",
  53993. image: {
  53994. source: "./media/characters/ash´iika/head.svg",
  53995. extra: 348/291,
  53996. bottom: 45/393
  53997. },
  53998. form: "anthro"
  53999. },
  54000. feralSide: {
  54001. height: math.unit(870, "cm"),
  54002. weight: math.unit(17500, "kg"),
  54003. preyCapacity: math.unit(15, "people"),
  54004. name: "Side",
  54005. image: {
  54006. source: "./media/characters/ash´iika/feral.svg",
  54007. extra: 595/199,
  54008. bottom: 7/602
  54009. },
  54010. form: "feral",
  54011. default: true,
  54012. },
  54013. },
  54014. [
  54015. {
  54016. name: "Normal",
  54017. height: math.unit(556, "cm"),
  54018. default: true,
  54019. form: "anthro"
  54020. },
  54021. {
  54022. name: "Macro",
  54023. height: math.unit(88, "meters"),
  54024. form: "anthro"
  54025. },
  54026. {
  54027. name: "Normal",
  54028. height: math.unit(870, "cm"),
  54029. default: true,
  54030. form: "feral"
  54031. },
  54032. {
  54033. name: "Large",
  54034. height: math.unit(25, "meters"),
  54035. form: "feral"
  54036. },
  54037. ],
  54038. {
  54039. "anthro": {
  54040. name: "Anthro",
  54041. default: true
  54042. },
  54043. "feral": {
  54044. name: "Feral",
  54045. },
  54046. }
  54047. ))
  54048. characterMakers.push(() => makeCharacter(
  54049. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54050. {
  54051. front: {
  54052. height: math.unit(10, "feet"),
  54053. weight: math.unit(800, "lb"),
  54054. name: "Front",
  54055. image: {
  54056. source: "./media/characters/yen/front.svg",
  54057. extra: 443/411,
  54058. bottom: 6/449
  54059. }
  54060. },
  54061. sleeping: {
  54062. height: math.unit(10, "feet"),
  54063. weight: math.unit(800, "lb"),
  54064. name: "Sleeping",
  54065. image: {
  54066. source: "./media/characters/yen/sleeping.svg",
  54067. extra: 470/422,
  54068. bottom: 0/470
  54069. }
  54070. },
  54071. head: {
  54072. height: math.unit(2.2, "feet"),
  54073. name: "Head",
  54074. image: {
  54075. source: "./media/characters/yen/head.svg"
  54076. }
  54077. },
  54078. headAlt: {
  54079. height: math.unit(2.1, "feet"),
  54080. name: "Head (Alt)",
  54081. image: {
  54082. source: "./media/characters/yen/head-alt.svg"
  54083. }
  54084. },
  54085. },
  54086. [
  54087. {
  54088. name: "Normal",
  54089. height: math.unit(10, "feet"),
  54090. default: true
  54091. },
  54092. ]
  54093. ))
  54094. characterMakers.push(() => makeCharacter(
  54095. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54096. {
  54097. front: {
  54098. height: math.unit(12, "feet"),
  54099. name: "Front",
  54100. image: {
  54101. source: "./media/characters/citra/front.svg",
  54102. extra: 1950/1710,
  54103. bottom: 47/1997
  54104. }
  54105. },
  54106. },
  54107. [
  54108. {
  54109. name: "Normal",
  54110. height: math.unit(12, "feet"),
  54111. default: true
  54112. },
  54113. ]
  54114. ))
  54115. characterMakers.push(() => makeCharacter(
  54116. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54117. {
  54118. side: {
  54119. height: math.unit(7 + 10/12, "feet"),
  54120. name: "Side",
  54121. image: {
  54122. source: "./media/characters/sholstim/side.svg",
  54123. extra: 786/682,
  54124. bottom: 40/826
  54125. }
  54126. },
  54127. },
  54128. [
  54129. {
  54130. name: "Normal",
  54131. height: math.unit(7 + 10/12, "feet"),
  54132. default: true
  54133. },
  54134. ]
  54135. ))
  54136. characterMakers.push(() => makeCharacter(
  54137. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54138. {
  54139. front: {
  54140. height: math.unit(3.10, "meters"),
  54141. name: "Front",
  54142. image: {
  54143. source: "./media/characters/aggyn/front.svg",
  54144. extra: 1188/963,
  54145. bottom: 24/1212
  54146. }
  54147. },
  54148. },
  54149. [
  54150. {
  54151. name: "Normal",
  54152. height: math.unit(3.10, "meters"),
  54153. default: true
  54154. },
  54155. ]
  54156. ))
  54157. characterMakers.push(() => makeCharacter(
  54158. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54159. {
  54160. front: {
  54161. height: math.unit(7 + 5/12, "feet"),
  54162. weight: math.unit(687, "lb"),
  54163. name: "Front",
  54164. image: {
  54165. source: "./media/characters/alsandair-hergenroether/front.svg",
  54166. extra: 1251/1186,
  54167. bottom: 75/1326
  54168. }
  54169. },
  54170. back: {
  54171. height: math.unit(7 + 5/12, "feet"),
  54172. weight: math.unit(687, "lb"),
  54173. name: "Back",
  54174. image: {
  54175. source: "./media/characters/alsandair-hergenroether/back.svg",
  54176. extra: 1290/1229,
  54177. bottom: 17/1307
  54178. }
  54179. },
  54180. },
  54181. [
  54182. {
  54183. name: "Max Compression",
  54184. height: math.unit(7 + 5/12, "feet"),
  54185. default: true
  54186. },
  54187. {
  54188. name: "\"Normal\"",
  54189. height: math.unit(2, "universes")
  54190. },
  54191. ]
  54192. ))
  54193. characterMakers.push(() => makeCharacter(
  54194. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54195. {
  54196. front: {
  54197. height: math.unit(4 + 1/12, "feet"),
  54198. weight: math.unit(92, "lb"),
  54199. name: "Front",
  54200. image: {
  54201. source: "./media/characters/ie/front.svg",
  54202. extra: 1585/1352,
  54203. bottom: 91/1676
  54204. }
  54205. },
  54206. },
  54207. [
  54208. {
  54209. name: "Normal",
  54210. height: math.unit(4 + 1/12, "feet"),
  54211. default: true
  54212. },
  54213. ]
  54214. ))
  54215. characterMakers.push(() => makeCharacter(
  54216. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54217. {
  54218. anthro: {
  54219. height: math.unit(6, "feet"),
  54220. weight: math.unit(150, "lb"),
  54221. name: "Front",
  54222. image: {
  54223. source: "./media/characters/willow/anthro.svg",
  54224. extra: 1073/986,
  54225. bottom: 34/1107
  54226. },
  54227. form: "anthro",
  54228. default: true
  54229. },
  54230. taur: {
  54231. height: math.unit(6, "feet"),
  54232. weight: math.unit(150, "lb"),
  54233. name: "Side",
  54234. image: {
  54235. source: "./media/characters/willow/taur.svg",
  54236. extra: 647/512,
  54237. bottom: 136/783
  54238. },
  54239. form: "taur",
  54240. default: true
  54241. },
  54242. },
  54243. [
  54244. {
  54245. name: "Humanoid",
  54246. height: math.unit(2.7, "meters"),
  54247. form: "anthro"
  54248. },
  54249. {
  54250. name: "Normal",
  54251. height: math.unit(9, "meters"),
  54252. form: "anthro",
  54253. default: true
  54254. },
  54255. {
  54256. name: "Humanoid",
  54257. height: math.unit(2.1, "meters"),
  54258. form: "taur"
  54259. },
  54260. {
  54261. name: "Normal",
  54262. height: math.unit(7, "meters"),
  54263. form: "taur",
  54264. default: true
  54265. },
  54266. ],
  54267. {
  54268. "anthro": {
  54269. name: "Anthro",
  54270. default: true
  54271. },
  54272. "taur": {
  54273. name: "Taur",
  54274. },
  54275. }
  54276. ))
  54277. characterMakers.push(() => makeCharacter(
  54278. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54279. {
  54280. front: {
  54281. height: math.unit(2 + 5/12, "feet"),
  54282. name: "Front",
  54283. image: {
  54284. source: "./media/characters/kyan/front.svg",
  54285. extra: 460/334,
  54286. bottom: 23/483
  54287. },
  54288. extraAttributes: {
  54289. "toeLength": {
  54290. name: "Toe Length",
  54291. power: 1,
  54292. type: "length",
  54293. base: math.unit(7, "cm")
  54294. },
  54295. "toeclawLength": {
  54296. name: "Toeclaw Length",
  54297. power: 1,
  54298. type: "length",
  54299. base: math.unit(4.7, "cm")
  54300. },
  54301. "earHeight": {
  54302. name: "Ear Height",
  54303. power: 1,
  54304. type: "length",
  54305. base: math.unit(14.1, "cm")
  54306. },
  54307. }
  54308. },
  54309. paws: {
  54310. height: math.unit(0.45, "feet"),
  54311. name: "Paws",
  54312. image: {
  54313. source: "./media/characters/kyan/paws.svg",
  54314. extra: 581/581,
  54315. bottom: 114/695
  54316. }
  54317. },
  54318. },
  54319. [
  54320. {
  54321. name: "Normal",
  54322. height: math.unit(2 + 5/12, "feet"),
  54323. default: true
  54324. },
  54325. ]
  54326. ))
  54327. characterMakers.push(() => makeCharacter(
  54328. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54329. {
  54330. front: {
  54331. height: math.unit(2 + 2/3, "feet"),
  54332. name: "Front",
  54333. image: {
  54334. source: "./media/characters/xazzon/front.svg",
  54335. extra: 1109/984,
  54336. bottom: 42/1151
  54337. }
  54338. },
  54339. back: {
  54340. height: math.unit(2 + 2/3, "feet"),
  54341. name: "Back",
  54342. image: {
  54343. source: "./media/characters/xazzon/back.svg",
  54344. extra: 1095/971,
  54345. bottom: 23/1118
  54346. }
  54347. },
  54348. },
  54349. [
  54350. {
  54351. name: "Normal",
  54352. height: math.unit(2 + 2/3, "feet"),
  54353. default: true
  54354. },
  54355. ]
  54356. ))
  54357. characterMakers.push(() => makeCharacter(
  54358. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54359. {
  54360. dressed: {
  54361. height: math.unit(5 + 7/12, "feet"),
  54362. weight: math.unit(173, "lb"),
  54363. name: "Dressed",
  54364. image: {
  54365. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54366. extra: 3262/2862,
  54367. bottom: 188/3450
  54368. }
  54369. },
  54370. undressed: {
  54371. height: math.unit(5 + 7/12, "feet"),
  54372. weight: math.unit(173, "lb"),
  54373. name: "Undressed",
  54374. image: {
  54375. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54376. extra: 3262/2862,
  54377. bottom: 188/3450
  54378. }
  54379. },
  54380. },
  54381. [
  54382. {
  54383. name: "The void",
  54384. height: math.unit(7.29193e-34, "angstroms")
  54385. },
  54386. {
  54387. name: "Uh-Oh.",
  54388. height: math.unit(5.734e-7, "angstroms")
  54389. },
  54390. {
  54391. name: "Pico",
  54392. height: math.unit(0.876, "angstroms")
  54393. },
  54394. {
  54395. name: "Nano",
  54396. height: math.unit(0.000134200, "mm")
  54397. },
  54398. {
  54399. name: "Micro",
  54400. height: math.unit(0.0673020, "mm")
  54401. },
  54402. {
  54403. name: "Tiny",
  54404. height: math.unit(2.4, "mm")
  54405. },
  54406. {
  54407. name: "Actual Normal",
  54408. height: math.unit(3, "inches"),
  54409. default: true
  54410. },
  54411. {
  54412. name: "Normal",
  54413. height: math.unit(5 + 8/12, "feet")
  54414. },
  54415. {
  54416. name: "Giant",
  54417. height: math.unit(12, "feet")
  54418. },
  54419. {
  54420. name: "City Ruler",
  54421. height: math.unit(270, "meters")
  54422. },
  54423. {
  54424. name: "Giga",
  54425. height: math.unit(1117.6, "km")
  54426. },
  54427. {
  54428. name: "All-Powerful Queen",
  54429. height: math.unit(70.8, "gigameters")
  54430. },
  54431. {
  54432. name: "'Goddess'",
  54433. height: math.unit(600, "yottameters")
  54434. },
  54435. {
  54436. name: "Biggest!",
  54437. height: math.unit(4.23e5, "yottameters")
  54438. },
  54439. ]
  54440. ))
  54441. characterMakers.push(() => makeCharacter(
  54442. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54443. {
  54444. front: {
  54445. height: math.unit(8, "feet"),
  54446. weight: math.unit(300, "lb"),
  54447. name: "Front",
  54448. image: {
  54449. source: "./media/characters/khyla-shadowsong/front.svg",
  54450. extra: 861/798,
  54451. bottom: 32/893
  54452. }
  54453. },
  54454. side: {
  54455. height: math.unit(8, "feet"),
  54456. weight: math.unit(300, "lb"),
  54457. name: "Side",
  54458. image: {
  54459. source: "./media/characters/khyla-shadowsong/side.svg",
  54460. extra: 790/750,
  54461. bottom: 87/877
  54462. }
  54463. },
  54464. back: {
  54465. height: math.unit(8, "feet"),
  54466. weight: math.unit(300, "lb"),
  54467. name: "Back",
  54468. image: {
  54469. source: "./media/characters/khyla-shadowsong/back.svg",
  54470. extra: 855/808,
  54471. bottom: 14/869
  54472. }
  54473. },
  54474. head: {
  54475. height: math.unit(2.7, "feet"),
  54476. name: "Head",
  54477. image: {
  54478. source: "./media/characters/khyla-shadowsong/head.svg"
  54479. }
  54480. },
  54481. },
  54482. [
  54483. {
  54484. name: "Micro",
  54485. height: math.unit(6, "inches")
  54486. },
  54487. {
  54488. name: "Normal",
  54489. height: math.unit(8, "feet"),
  54490. default: true
  54491. },
  54492. ]
  54493. ))
  54494. characterMakers.push(() => makeCharacter(
  54495. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54496. {
  54497. hyperFront: {
  54498. height: math.unit(9 + 4/12, "feet"),
  54499. weight: math.unit(2000, "lb"),
  54500. name: "Front",
  54501. image: {
  54502. source: "./media/characters/tiden/hyper-front.svg",
  54503. extra: 400/382,
  54504. bottom: 6/406
  54505. },
  54506. form: "hyper",
  54507. },
  54508. regularFront: {
  54509. height: math.unit(7 + 10/12, "feet"),
  54510. weight: math.unit(470, "lb"),
  54511. name: "Front",
  54512. image: {
  54513. source: "./media/characters/tiden/regular-front.svg",
  54514. extra: 468/442,
  54515. bottom: 6/474
  54516. },
  54517. form: "regular",
  54518. },
  54519. },
  54520. [
  54521. {
  54522. name: "Normal",
  54523. height: math.unit(9 + 4/12, "feet"),
  54524. default: true,
  54525. form: "hyper"
  54526. },
  54527. {
  54528. name: "Normal",
  54529. height: math.unit(7 + 10/12, "feet"),
  54530. default: true,
  54531. form: "regular"
  54532. },
  54533. ],
  54534. {
  54535. "hyper": {
  54536. name: "Hyper",
  54537. default: true
  54538. },
  54539. "regular": {
  54540. name: "Regular",
  54541. },
  54542. }
  54543. ))
  54544. characterMakers.push(() => makeCharacter(
  54545. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54546. {
  54547. side: {
  54548. height: math.unit(6, "feet"),
  54549. weight: math.unit(150, "lb"),
  54550. name: "Side",
  54551. image: {
  54552. source: "./media/characters/jason-crowe/side.svg",
  54553. extra: 1771/766,
  54554. bottom: 219/1990
  54555. }
  54556. },
  54557. },
  54558. [
  54559. {
  54560. name: "Pocket Gryphon",
  54561. height: math.unit(6, "cm")
  54562. },
  54563. {
  54564. name: "Raven",
  54565. height: math.unit(60, "cm")
  54566. },
  54567. {
  54568. name: "Normal",
  54569. height: math.unit(1, "meter"),
  54570. default: true
  54571. },
  54572. ]
  54573. ))
  54574. characterMakers.push(() => makeCharacter(
  54575. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54576. {
  54577. front: {
  54578. height: math.unit(9 + 6/12, "feet"),
  54579. weight: math.unit(1100, "lb"),
  54580. name: "Front",
  54581. image: {
  54582. source: "./media/characters/django/front.svg",
  54583. extra: 1231/1136,
  54584. bottom: 34/1265
  54585. }
  54586. },
  54587. side: {
  54588. height: math.unit(9 + 6/12, "feet"),
  54589. weight: math.unit(1100, "lb"),
  54590. name: "Side",
  54591. image: {
  54592. source: "./media/characters/django/side.svg",
  54593. extra: 1267/1174,
  54594. bottom: 9/1276
  54595. }
  54596. },
  54597. },
  54598. [
  54599. {
  54600. name: "Normal",
  54601. height: math.unit(9 + 6/12, "feet"),
  54602. default: true
  54603. },
  54604. {
  54605. name: "Macro 1",
  54606. height: math.unit(50, "feet")
  54607. },
  54608. {
  54609. name: "Macro 2",
  54610. height: math.unit(500, "feet")
  54611. },
  54612. {
  54613. name: "Mega Macro",
  54614. height: math.unit(5300, "feet")
  54615. },
  54616. ]
  54617. ))
  54618. characterMakers.push(() => makeCharacter(
  54619. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54620. {
  54621. frontSfw: {
  54622. height: math.unit(120, "cm"),
  54623. weight: math.unit(15, "kg"),
  54624. name: "Front (SFW)",
  54625. image: {
  54626. source: "./media/characters/eri/front-sfw.svg",
  54627. extra: 1014/939,
  54628. bottom: 37/1051
  54629. },
  54630. form: "moth",
  54631. },
  54632. frontNsfw: {
  54633. height: math.unit(120, "cm"),
  54634. weight: math.unit(15, "kg"),
  54635. name: "Front (NSFW)",
  54636. image: {
  54637. source: "./media/characters/eri/front-nsfw.svg",
  54638. extra: 1014/939,
  54639. bottom: 37/1051
  54640. },
  54641. form: "moth",
  54642. default: true
  54643. },
  54644. egg: {
  54645. height: math.unit(10, "cm"),
  54646. name: "Egg",
  54647. image: {
  54648. source: "./media/characters/eri/egg.svg"
  54649. },
  54650. form: "egg",
  54651. default: true
  54652. },
  54653. },
  54654. [
  54655. {
  54656. name: "Normal",
  54657. height: math.unit(120, "cm"),
  54658. default: true,
  54659. form: "moth"
  54660. },
  54661. {
  54662. name: "Normal",
  54663. height: math.unit(10, "cm"),
  54664. default: true,
  54665. form: "egg"
  54666. },
  54667. ],
  54668. {
  54669. "moth": {
  54670. name: "Moth",
  54671. default: true
  54672. },
  54673. "egg": {
  54674. name: "Egg",
  54675. },
  54676. }
  54677. ))
  54678. characterMakers.push(() => makeCharacter(
  54679. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54680. {
  54681. front: {
  54682. height: math.unit(200, "feet"),
  54683. name: "Front",
  54684. image: {
  54685. source: "./media/characters/bishop-dowser/front.svg",
  54686. extra: 933/868,
  54687. bottom: 106/1039
  54688. }
  54689. },
  54690. },
  54691. [
  54692. {
  54693. name: "Giant",
  54694. height: math.unit(200, "feet"),
  54695. default: true
  54696. },
  54697. ]
  54698. ))
  54699. characterMakers.push(() => makeCharacter(
  54700. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54701. {
  54702. front: {
  54703. height: math.unit(2, "meters"),
  54704. preyCapacity: math.unit(3, "people"),
  54705. name: "Front",
  54706. image: {
  54707. source: "./media/characters/fryra/front.svg",
  54708. extra: 1025/948,
  54709. bottom: 30/1055
  54710. },
  54711. extraAttributes: {
  54712. "breastVolume": {
  54713. name: "Breast Volume",
  54714. power: 3,
  54715. type: "volume",
  54716. base: math.unit(8, "liters")
  54717. },
  54718. }
  54719. },
  54720. back: {
  54721. height: math.unit(2, "meters"),
  54722. preyCapacity: math.unit(3, "people"),
  54723. name: "Back",
  54724. image: {
  54725. source: "./media/characters/fryra/back.svg",
  54726. extra: 993/938,
  54727. bottom: 38/1031
  54728. },
  54729. extraAttributes: {
  54730. "breastVolume": {
  54731. name: "Breast Volume",
  54732. power: 3,
  54733. type: "volume",
  54734. base: math.unit(8, "liters")
  54735. },
  54736. }
  54737. },
  54738. head: {
  54739. height: math.unit(1.33, "feet"),
  54740. name: "Head",
  54741. image: {
  54742. source: "./media/characters/fryra/head.svg"
  54743. }
  54744. },
  54745. maw: {
  54746. height: math.unit(0.56, "feet"),
  54747. name: "Maw",
  54748. image: {
  54749. source: "./media/characters/fryra/maw.svg"
  54750. }
  54751. },
  54752. },
  54753. [
  54754. {
  54755. name: "Micro",
  54756. height: math.unit(5, "cm")
  54757. },
  54758. {
  54759. name: "Normal",
  54760. height: math.unit(2, "meters"),
  54761. default: true
  54762. },
  54763. {
  54764. name: "Small Macro",
  54765. height: math.unit(8, "meters")
  54766. },
  54767. {
  54768. name: "Macro",
  54769. height: math.unit(50, "meters")
  54770. },
  54771. {
  54772. name: "Megamacro",
  54773. height: math.unit(1, "km")
  54774. },
  54775. {
  54776. name: "Planetary",
  54777. height: math.unit(300000, "km")
  54778. },
  54779. {
  54780. name: "Universal",
  54781. height: math.unit(250, "lightyears")
  54782. },
  54783. {
  54784. name: "Fabric of Reality",
  54785. height: math.unit(1000, "multiverses")
  54786. },
  54787. ]
  54788. ))
  54789. characterMakers.push(() => makeCharacter(
  54790. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54791. {
  54792. frontDressed: {
  54793. height: math.unit(6 + 2/12, "feet"),
  54794. name: "Front (Dressed)",
  54795. image: {
  54796. source: "./media/characters/fiera/front-dressed.svg",
  54797. extra: 1883/1793,
  54798. bottom: 70/1953
  54799. }
  54800. },
  54801. backDressed: {
  54802. height: math.unit(6 + 2/12, "feet"),
  54803. name: "Back (Dressed)",
  54804. image: {
  54805. source: "./media/characters/fiera/back-dressed.svg",
  54806. extra: 1847/1780,
  54807. bottom: 70/1917
  54808. }
  54809. },
  54810. frontNude: {
  54811. height: math.unit(6 + 2/12, "feet"),
  54812. name: "Front (Nude)",
  54813. image: {
  54814. source: "./media/characters/fiera/front-nude.svg",
  54815. extra: 1875/1785,
  54816. bottom: 66/1941
  54817. }
  54818. },
  54819. backNude: {
  54820. height: math.unit(6 + 2/12, "feet"),
  54821. name: "Back (Nude)",
  54822. image: {
  54823. source: "./media/characters/fiera/back-nude.svg",
  54824. extra: 1855/1788,
  54825. bottom: 44/1899
  54826. }
  54827. },
  54828. maw: {
  54829. height: math.unit(1.3, "feet"),
  54830. name: "Maw",
  54831. image: {
  54832. source: "./media/characters/fiera/maw.svg"
  54833. }
  54834. },
  54835. paw: {
  54836. height: math.unit(1, "feet"),
  54837. name: "Paw",
  54838. image: {
  54839. source: "./media/characters/fiera/paw.svg"
  54840. }
  54841. },
  54842. shoe: {
  54843. height: math.unit(1.05, "feet"),
  54844. name: "Shoe",
  54845. image: {
  54846. source: "./media/characters/fiera/shoe.svg"
  54847. }
  54848. },
  54849. },
  54850. [
  54851. {
  54852. name: "Normal",
  54853. height: math.unit(6 + 2/12, "feet"),
  54854. default: true
  54855. },
  54856. {
  54857. name: "Size Difference",
  54858. height: math.unit(13, "feet")
  54859. },
  54860. {
  54861. name: "Macro",
  54862. height: math.unit(60, "feet")
  54863. },
  54864. {
  54865. name: "Mega Macro",
  54866. height: math.unit(200, "feet")
  54867. },
  54868. ]
  54869. ))
  54870. characterMakers.push(() => makeCharacter(
  54871. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54872. {
  54873. back: {
  54874. height: math.unit(6, "feet"),
  54875. name: "Back",
  54876. image: {
  54877. source: "./media/characters/flare/back.svg",
  54878. extra: 1883/1765,
  54879. bottom: 32/1915
  54880. }
  54881. },
  54882. },
  54883. [
  54884. {
  54885. name: "Normal",
  54886. height: math.unit(6 + 2/12, "feet"),
  54887. default: true
  54888. },
  54889. {
  54890. name: "Size Difference",
  54891. height: math.unit(13, "feet")
  54892. },
  54893. {
  54894. name: "Macro",
  54895. height: math.unit(60, "feet")
  54896. },
  54897. {
  54898. name: "Macro 2",
  54899. height: math.unit(100, "feet")
  54900. },
  54901. {
  54902. name: "Mega Macro",
  54903. height: math.unit(200, "feet")
  54904. },
  54905. ]
  54906. ))
  54907. characterMakers.push(() => makeCharacter(
  54908. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54909. {
  54910. front: {
  54911. height: math.unit(2.2, "m"),
  54912. weight: math.unit(300, "kg"),
  54913. name: "Front",
  54914. image: {
  54915. source: "./media/characters/hanna/front.svg",
  54916. extra: 1696/1502,
  54917. bottom: 206/1902
  54918. }
  54919. },
  54920. },
  54921. [
  54922. {
  54923. name: "Humanoid",
  54924. height: math.unit(2.2, "meters")
  54925. },
  54926. {
  54927. name: "Normal",
  54928. height: math.unit(4.8, "meters"),
  54929. default: true
  54930. },
  54931. ]
  54932. ))
  54933. characterMakers.push(() => makeCharacter(
  54934. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54935. {
  54936. front: {
  54937. height: math.unit(2.8, "meters"),
  54938. name: "Front",
  54939. image: {
  54940. source: "./media/characters/argo/front.svg",
  54941. extra: 731/518,
  54942. bottom: 84/815
  54943. }
  54944. },
  54945. },
  54946. [
  54947. {
  54948. name: "Normal",
  54949. height: math.unit(3, "meters"),
  54950. default: true
  54951. },
  54952. ]
  54953. ))
  54954. characterMakers.push(() => makeCharacter(
  54955. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54956. {
  54957. side: {
  54958. height: math.unit(3.8, "meters"),
  54959. name: "Side",
  54960. image: {
  54961. source: "./media/characters/sybil/side.svg",
  54962. extra: 382/361,
  54963. bottom: 25/407
  54964. }
  54965. },
  54966. },
  54967. [
  54968. {
  54969. name: "Normal",
  54970. height: math.unit(3.8, "meters"),
  54971. default: true
  54972. },
  54973. ]
  54974. ))
  54975. characterMakers.push(() => makeCharacter(
  54976. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54977. {
  54978. side: {
  54979. height: math.unit(6, "meters"),
  54980. name: "Side",
  54981. image: {
  54982. source: "./media/characters/plum/side.svg",
  54983. extra: 858/755,
  54984. bottom: 45/903
  54985. },
  54986. form: "taur",
  54987. default: true
  54988. },
  54989. back: {
  54990. height: math.unit(6.3, "meters"),
  54991. name: "Back",
  54992. image: {
  54993. source: "./media/characters/plum/back.svg",
  54994. extra: 887/813,
  54995. bottom: 32/919
  54996. },
  54997. form: "taur",
  54998. },
  54999. feral: {
  55000. height: math.unit(5.5, "meter"),
  55001. name: "Front",
  55002. image: {
  55003. source: "./media/characters/plum/feral.svg",
  55004. extra: 568/403,
  55005. bottom: 51/619
  55006. },
  55007. form: "feral",
  55008. default: true
  55009. },
  55010. head: {
  55011. height: math.unit(1.46, "meter"),
  55012. name: "Head",
  55013. image: {
  55014. source: "./media/characters/plum/head.svg"
  55015. },
  55016. form: "taur"
  55017. },
  55018. tailTop: {
  55019. height: math.unit(5.6, "meter"),
  55020. name: "Tail (Top)",
  55021. image: {
  55022. source: "./media/characters/plum/tail-top.svg"
  55023. },
  55024. form: "taur",
  55025. },
  55026. tailBottom: {
  55027. height: math.unit(5.6, "meter"),
  55028. name: "Tail (Bottom)",
  55029. image: {
  55030. source: "./media/characters/plum/tail-bottom.svg"
  55031. },
  55032. form: "taur",
  55033. },
  55034. feralHead: {
  55035. height: math.unit(2.56549521, "meter"),
  55036. name: "Head",
  55037. image: {
  55038. source: "./media/characters/plum/head.svg"
  55039. },
  55040. form: "feral"
  55041. },
  55042. feralTailTop: {
  55043. height: math.unit(5.44728435, "meter"),
  55044. name: "Tail (Top)",
  55045. image: {
  55046. source: "./media/characters/plum/tail-top.svg"
  55047. },
  55048. form: "feral",
  55049. },
  55050. feralTailBottom: {
  55051. height: math.unit(5.44728435, "meter"),
  55052. name: "Tail (Bottom)",
  55053. image: {
  55054. source: "./media/characters/plum/tail-bottom.svg"
  55055. },
  55056. form: "feral",
  55057. },
  55058. },
  55059. [
  55060. {
  55061. name: "Normal",
  55062. height: math.unit(6, "meters"),
  55063. default: true,
  55064. form: "taur"
  55065. },
  55066. {
  55067. name: "Normal",
  55068. height: math.unit(5.5, "meters"),
  55069. default: true,
  55070. form: "feral"
  55071. },
  55072. ],
  55073. {
  55074. "taur": {
  55075. name: "Taur",
  55076. default: true
  55077. },
  55078. "feral": {
  55079. name: "Feral",
  55080. },
  55081. }
  55082. ))
  55083. characterMakers.push(() => makeCharacter(
  55084. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55085. {
  55086. front: {
  55087. height: math.unit(6, "feet"),
  55088. weight: math.unit(115, "lb"),
  55089. name: "Front",
  55090. image: {
  55091. source: "./media/characters/celeste-kitsune/front.svg",
  55092. extra: 393/366,
  55093. bottom: 7/400
  55094. }
  55095. },
  55096. side: {
  55097. height: math.unit(6, "feet"),
  55098. weight: math.unit(115, "lb"),
  55099. name: "Side",
  55100. image: {
  55101. source: "./media/characters/celeste-kitsune/side.svg",
  55102. extra: 818/765,
  55103. bottom: 40/858
  55104. }
  55105. },
  55106. },
  55107. [
  55108. {
  55109. name: "Megamacro",
  55110. height: math.unit(1500, "miles"),
  55111. default: true
  55112. },
  55113. ]
  55114. ))
  55115. characterMakers.push(() => makeCharacter(
  55116. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55117. {
  55118. front: {
  55119. height: math.unit(8, "meters"),
  55120. name: "Front",
  55121. image: {
  55122. source: "./media/characters/io/front.svg",
  55123. extra: 865/722,
  55124. bottom: 58/923
  55125. }
  55126. },
  55127. back: {
  55128. height: math.unit(8, "meters"),
  55129. name: "Back",
  55130. image: {
  55131. source: "./media/characters/io/back.svg",
  55132. extra: 920/776,
  55133. bottom: 42/962
  55134. }
  55135. },
  55136. head: {
  55137. height: math.unit(5.09, "meters"),
  55138. name: "Head",
  55139. image: {
  55140. source: "./media/characters/io/head.svg"
  55141. }
  55142. },
  55143. hand: {
  55144. height: math.unit(1.6, "meters"),
  55145. name: "Hand",
  55146. image: {
  55147. source: "./media/characters/io/hand.svg"
  55148. }
  55149. },
  55150. foot: {
  55151. height: math.unit(2.4, "meters"),
  55152. name: "Foot",
  55153. image: {
  55154. source: "./media/characters/io/foot.svg"
  55155. }
  55156. },
  55157. },
  55158. [
  55159. {
  55160. name: "Normal",
  55161. height: math.unit(8, "meters"),
  55162. default: true
  55163. },
  55164. ]
  55165. ))
  55166. characterMakers.push(() => makeCharacter(
  55167. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55168. {
  55169. side: {
  55170. height: math.unit(6 + 3/12, "feet"),
  55171. weight: math.unit(225, "lb"),
  55172. name: "Side",
  55173. image: {
  55174. source: "./media/characters/silas/side.svg",
  55175. extra: 703/653,
  55176. bottom: 23/726
  55177. },
  55178. extraAttributes: {
  55179. "pawLength": {
  55180. name: "Paw Length",
  55181. power: 1,
  55182. type: "length",
  55183. base: math.unit(12, "inches")
  55184. },
  55185. "pawWidth": {
  55186. name: "Paw Width",
  55187. power: 1,
  55188. type: "length",
  55189. base: math.unit(4.5, "inches")
  55190. },
  55191. "pawArea": {
  55192. name: "Paw Area",
  55193. power: 2,
  55194. type: "area",
  55195. base: math.unit(12 * 4.5, "inches^2")
  55196. },
  55197. }
  55198. },
  55199. },
  55200. [
  55201. {
  55202. name: "Normal",
  55203. height: math.unit(6 + 3/12, "feet"),
  55204. default: true
  55205. },
  55206. ]
  55207. ))
  55208. characterMakers.push(() => makeCharacter(
  55209. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55210. {
  55211. back: {
  55212. height: math.unit(1.6, "meters"),
  55213. weight: math.unit(150, "lb"),
  55214. name: "Back",
  55215. image: {
  55216. source: "./media/characters/zari/back.svg",
  55217. extra: 424/411,
  55218. bottom: 32/456
  55219. },
  55220. extraAttributes: {
  55221. "bladderCapacity": {
  55222. name: "Bladder Size",
  55223. power: 3,
  55224. type: "volume",
  55225. base: math.unit(500, "mL")
  55226. },
  55227. "bladderFlow": {
  55228. name: "Flow Rate",
  55229. power: 3,
  55230. type: "volume",
  55231. base: math.unit(25, "mL")
  55232. },
  55233. }
  55234. },
  55235. },
  55236. [
  55237. {
  55238. name: "Normal",
  55239. height: math.unit(1.6, "meters"),
  55240. default: true
  55241. },
  55242. ]
  55243. ))
  55244. characterMakers.push(() => makeCharacter(
  55245. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55246. {
  55247. front: {
  55248. height: math.unit(25, "feet"),
  55249. weight: math.unit(5, "tons"),
  55250. name: "Front",
  55251. image: {
  55252. source: "./media/characters/charlie-human/front.svg",
  55253. extra: 1870/1740,
  55254. bottom: 102/1972
  55255. },
  55256. extraAttributes: {
  55257. "dickLength": {
  55258. name: "Dick Length",
  55259. power: 1,
  55260. type: "length",
  55261. base: math.unit(9, "feet")
  55262. },
  55263. }
  55264. },
  55265. back: {
  55266. height: math.unit(25, "feet"),
  55267. weight: math.unit(5, "tons"),
  55268. name: "Back",
  55269. image: {
  55270. source: "./media/characters/charlie-human/back.svg",
  55271. extra: 1858/1733,
  55272. bottom: 105/1963
  55273. },
  55274. extraAttributes: {
  55275. "dickLength": {
  55276. name: "Dick Length",
  55277. power: 1,
  55278. type: "length",
  55279. base: math.unit(9, "feet")
  55280. },
  55281. }
  55282. },
  55283. },
  55284. [
  55285. {
  55286. name: "\"Normal\"",
  55287. height: math.unit(6 + 4/12, "feet")
  55288. },
  55289. {
  55290. name: "Big",
  55291. height: math.unit(25, "feet"),
  55292. default: true
  55293. },
  55294. ]
  55295. ))
  55296. characterMakers.push(() => makeCharacter(
  55297. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55298. {
  55299. front: {
  55300. height: math.unit(6 + 4/12, "feet"),
  55301. weight: math.unit(320, "lb"),
  55302. name: "Front",
  55303. image: {
  55304. source: "./media/characters/ookitsu/front.svg",
  55305. extra: 1160/976,
  55306. bottom: 38/1198
  55307. }
  55308. },
  55309. frontNsfw: {
  55310. height: math.unit(6 + 4/12, "feet"),
  55311. weight: math.unit(320, "lb"),
  55312. name: "Front (NSFW)",
  55313. image: {
  55314. source: "./media/characters/ookitsu/front-nsfw.svg",
  55315. extra: 1160/976,
  55316. bottom: 38/1198
  55317. }
  55318. },
  55319. back: {
  55320. height: math.unit(6 + 4/12, "feet"),
  55321. weight: math.unit(320, "lb"),
  55322. name: "Back",
  55323. image: {
  55324. source: "./media/characters/ookitsu/back.svg",
  55325. extra: 1030/975,
  55326. bottom: 70/1100
  55327. }
  55328. },
  55329. head: {
  55330. height: math.unit(1.79, "feet"),
  55331. name: "Head",
  55332. image: {
  55333. source: "./media/characters/ookitsu/head.svg"
  55334. }
  55335. },
  55336. hand: {
  55337. height: math.unit(0.92, "feet"),
  55338. name: "Hand",
  55339. image: {
  55340. source: "./media/characters/ookitsu/hand.svg"
  55341. }
  55342. },
  55343. tails: {
  55344. height: math.unit(3.3, "feet"),
  55345. name: "Tails",
  55346. image: {
  55347. source: "./media/characters/ookitsu/tails.svg"
  55348. }
  55349. },
  55350. dick: {
  55351. height: math.unit(1.10833, "feet"),
  55352. name: "Dick",
  55353. image: {
  55354. source: "./media/characters/ookitsu/dick.svg"
  55355. }
  55356. },
  55357. },
  55358. [
  55359. {
  55360. name: "Normal",
  55361. height: math.unit(6 + 4/12, "feet"),
  55362. default: true
  55363. },
  55364. {
  55365. name: "Macro",
  55366. height: math.unit(30, "feet")
  55367. },
  55368. ]
  55369. ))
  55370. characterMakers.push(() => makeCharacter(
  55371. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55372. {
  55373. anthroFront: {
  55374. height: math.unit(6, "feet"),
  55375. weight: math.unit(250, "lb"),
  55376. name: "Front",
  55377. image: {
  55378. source: "./media/characters/jhusky/anthro-front.svg",
  55379. extra: 474/439,
  55380. bottom: 7/481
  55381. },
  55382. form: "anthro",
  55383. default: true
  55384. },
  55385. taurSideSfw: {
  55386. height: math.unit(6 + 4/12, "feet"),
  55387. weight: math.unit(500, "lb"),
  55388. name: "Side (SFW)",
  55389. image: {
  55390. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55391. extra: 1741/1629,
  55392. bottom: 196/1937
  55393. },
  55394. form: "taur",
  55395. default: true
  55396. },
  55397. taurSideNsfw: {
  55398. height: math.unit(6 + 4/12, "feet"),
  55399. weight: math.unit(500, "lb"),
  55400. name: "Taur (NSFW)",
  55401. image: {
  55402. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55403. extra: 1741/1629,
  55404. bottom: 196/1937
  55405. },
  55406. form: "taur",
  55407. },
  55408. },
  55409. [
  55410. {
  55411. name: "Huge",
  55412. height: math.unit(500, "feet"),
  55413. form: "anthro"
  55414. },
  55415. {
  55416. name: "Macro",
  55417. height: math.unit(1000, "feet"),
  55418. default: true,
  55419. form: "anthro"
  55420. },
  55421. {
  55422. name: "Megamacro",
  55423. height: math.unit(10000, "feet"),
  55424. form: "anthro"
  55425. },
  55426. {
  55427. name: "Huge",
  55428. height: math.unit(528, "feet"),
  55429. form: "taur"
  55430. },
  55431. {
  55432. name: "Macro",
  55433. height: math.unit(1056, "feet"),
  55434. default: true,
  55435. form: "taur"
  55436. },
  55437. {
  55438. name: "Megamacro",
  55439. height: math.unit(10556, "feet"),
  55440. form: "taur"
  55441. },
  55442. ],
  55443. {
  55444. "anthro": {
  55445. name: "Anthro",
  55446. default: true
  55447. },
  55448. "taur": {
  55449. name: "Taur",
  55450. },
  55451. }
  55452. ))
  55453. characterMakers.push(() => makeCharacter(
  55454. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55455. {
  55456. front: {
  55457. height: math.unit(8, "feet"),
  55458. weight: math.unit(500, "lb"),
  55459. name: "Front",
  55460. image: {
  55461. source: "./media/characters/armail/front.svg",
  55462. extra: 1753/1669,
  55463. bottom: 155/1908
  55464. }
  55465. },
  55466. back: {
  55467. height: math.unit(8, "feet"),
  55468. weight: math.unit(500, "lb"),
  55469. name: "Back",
  55470. image: {
  55471. source: "./media/characters/armail/back.svg",
  55472. extra: 1872/1803,
  55473. bottom: 63/1935
  55474. }
  55475. },
  55476. },
  55477. [
  55478. {
  55479. name: "Micro",
  55480. height: math.unit(0.25, "feet")
  55481. },
  55482. {
  55483. name: "Normal",
  55484. height: math.unit(8, "feet"),
  55485. default: true
  55486. },
  55487. {
  55488. name: "Mini-macro",
  55489. height: math.unit(30, "feet")
  55490. },
  55491. {
  55492. name: "Macro",
  55493. height: math.unit(400, "feet")
  55494. },
  55495. {
  55496. name: "Mega-macro",
  55497. height: math.unit(6000, "feet")
  55498. },
  55499. ]
  55500. ))
  55501. characterMakers.push(() => makeCharacter(
  55502. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55503. {
  55504. front: {
  55505. height: math.unit(6 + 7/12, "feet"),
  55506. weight: math.unit(210, "lb"),
  55507. name: "Front",
  55508. image: {
  55509. source: "./media/characters/wilfred-t-buxton/front.svg",
  55510. extra: 1068/882,
  55511. bottom: 28/1096
  55512. }
  55513. },
  55514. },
  55515. [
  55516. {
  55517. name: "Normal",
  55518. height: math.unit(6 + 7/12, "feet"),
  55519. default: true
  55520. },
  55521. ]
  55522. ))
  55523. characterMakers.push(() => makeCharacter(
  55524. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55525. {
  55526. front: {
  55527. height: math.unit(5 + 2/12, "feet"),
  55528. weight: math.unit(120, "lb"),
  55529. name: "Front",
  55530. image: {
  55531. source: "./media/characters/leighton-marrow/front.svg",
  55532. extra: 441/409,
  55533. bottom: 37/478
  55534. }
  55535. },
  55536. },
  55537. [
  55538. {
  55539. name: "Normal",
  55540. height: math.unit(5 + 2/12, "feet"),
  55541. default: true
  55542. },
  55543. ]
  55544. ))
  55545. characterMakers.push(() => makeCharacter(
  55546. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55547. {
  55548. front: {
  55549. height: math.unit(4, "meters"),
  55550. weight: math.unit(1200, "kg"),
  55551. name: "Front",
  55552. image: {
  55553. source: "./media/characters/licos/front.svg",
  55554. extra: 1727/1604,
  55555. bottom: 101/1828
  55556. },
  55557. form: "anthro",
  55558. default: true
  55559. },
  55560. taur_side: {
  55561. height: math.unit(20, "meters"),
  55562. weight: math.unit(1100000, "kg"),
  55563. name: "Side",
  55564. image: {
  55565. source: "./media/characters/licos/taur.svg",
  55566. extra: 1158/1091,
  55567. bottom: 80/1238
  55568. },
  55569. form: "taur",
  55570. default: true
  55571. },
  55572. },
  55573. [
  55574. {
  55575. name: "Normal",
  55576. height: math.unit(4, "meters"),
  55577. default: true,
  55578. form: "anthro"
  55579. },
  55580. {
  55581. name: "Normal",
  55582. height: math.unit(20, "meters"),
  55583. default: true,
  55584. form: "taur"
  55585. },
  55586. ],
  55587. {
  55588. "anthro": {
  55589. name: "Anthro",
  55590. default: true
  55591. },
  55592. "taur": {
  55593. name: "Taur",
  55594. },
  55595. }
  55596. ))
  55597. characterMakers.push(() => makeCharacter(
  55598. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55599. {
  55600. front: {
  55601. height: math.unit(10 + 3/12, "feet"),
  55602. name: "Front",
  55603. image: {
  55604. source: "./media/characters/theo-monkey/front.svg",
  55605. extra: 1735/1658,
  55606. bottom: 73/1808
  55607. }
  55608. },
  55609. back: {
  55610. height: math.unit(10 + 3/12, "feet"),
  55611. name: "Back",
  55612. image: {
  55613. source: "./media/characters/theo-monkey/back.svg",
  55614. extra: 1742/1664,
  55615. bottom: 33/1775
  55616. }
  55617. },
  55618. head: {
  55619. height: math.unit(2.29, "feet"),
  55620. name: "Head",
  55621. image: {
  55622. source: "./media/characters/theo-monkey/head.svg"
  55623. }
  55624. },
  55625. handPalm: {
  55626. height: math.unit(1.73, "feet"),
  55627. name: "Hand (Palm)",
  55628. image: {
  55629. source: "./media/characters/theo-monkey/hand-palm.svg"
  55630. }
  55631. },
  55632. handBack: {
  55633. height: math.unit(1.63, "feet"),
  55634. name: "Hand (Back)",
  55635. image: {
  55636. source: "./media/characters/theo-monkey/hand-back.svg"
  55637. }
  55638. },
  55639. footSole: {
  55640. height: math.unit(2.15, "feet"),
  55641. name: "Foot (Sole)",
  55642. image: {
  55643. source: "./media/characters/theo-monkey/foot-sole.svg"
  55644. }
  55645. },
  55646. footSide: {
  55647. height: math.unit(1.6, "feet"),
  55648. name: "Foot (Side)",
  55649. image: {
  55650. source: "./media/characters/theo-monkey/foot-side.svg"
  55651. }
  55652. },
  55653. },
  55654. [
  55655. {
  55656. name: "Normal",
  55657. height: math.unit(10 + 3/12, "feet"),
  55658. default: true
  55659. },
  55660. ]
  55661. ))
  55662. characterMakers.push(() => makeCharacter(
  55663. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55664. {
  55665. front: {
  55666. height: math.unit(11, "feet"),
  55667. weight: math.unit(3000, "lb"),
  55668. preyCapacity: math.unit(10, "people"),
  55669. name: "Front",
  55670. image: {
  55671. source: "./media/characters/brook/front.svg",
  55672. extra: 909/835,
  55673. bottom: 108/1017
  55674. }
  55675. },
  55676. back: {
  55677. height: math.unit(11, "feet"),
  55678. weight: math.unit(3000, "lb"),
  55679. preyCapacity: math.unit(10, "people"),
  55680. name: "Back",
  55681. image: {
  55682. source: "./media/characters/brook/back.svg",
  55683. extra: 976/916,
  55684. bottom: 34/1010
  55685. }
  55686. },
  55687. backAlt: {
  55688. height: math.unit(11, "feet"),
  55689. weight: math.unit(3000, "lb"),
  55690. preyCapacity: math.unit(10, "people"),
  55691. name: "Back (Alt)",
  55692. image: {
  55693. source: "./media/characters/brook/back-alt.svg",
  55694. extra: 1283/1213,
  55695. bottom: 35/1318
  55696. }
  55697. },
  55698. bust: {
  55699. height: math.unit(9.0859030837, "feet"),
  55700. weight: math.unit(3000, "lb"),
  55701. preyCapacity: math.unit(10, "people"),
  55702. name: "Bust",
  55703. image: {
  55704. source: "./media/characters/brook/bust.svg",
  55705. extra: 2043/1923,
  55706. bottom: 0/2043
  55707. }
  55708. },
  55709. },
  55710. [
  55711. {
  55712. name: "Small",
  55713. height: math.unit(11, "feet"),
  55714. default: true
  55715. },
  55716. {
  55717. name: "Towering",
  55718. height: math.unit(5, "km")
  55719. },
  55720. {
  55721. name: "Enormous",
  55722. height: math.unit(25, "earths")
  55723. },
  55724. ]
  55725. ))
  55726. characterMakers.push(() => makeCharacter(
  55727. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55728. {
  55729. front: {
  55730. height: math.unit(4, "feet"),
  55731. weight: math.unit(150, "lb"),
  55732. name: "Front",
  55733. image: {
  55734. source: "./media/characters/squishi/front.svg",
  55735. extra: 1428/1271,
  55736. bottom: 30/1458
  55737. },
  55738. extraAttributes: {
  55739. "pawSize": {
  55740. name: "Paw Size",
  55741. power: 1,
  55742. type: "length",
  55743. base: math.unit(14, "ShoeSizeMensUS"),
  55744. defaultUnit: "ShoeSizeMensUS"
  55745. },
  55746. }
  55747. },
  55748. side: {
  55749. height: math.unit(4, "feet"),
  55750. weight: math.unit(150, "lb"),
  55751. name: "Side",
  55752. image: {
  55753. source: "./media/characters/squishi/side.svg",
  55754. extra: 1428/1271,
  55755. bottom: 30/1458
  55756. },
  55757. extraAttributes: {
  55758. "pawSize": {
  55759. name: "Paw Size",
  55760. power: 1,
  55761. type: "length",
  55762. base: math.unit(14, "ShoeSizeMensUS"),
  55763. defaultUnit: "ShoeSizeMensUS"
  55764. },
  55765. }
  55766. },
  55767. back: {
  55768. height: math.unit(4, "feet"),
  55769. weight: math.unit(150, "lb"),
  55770. name: "Back",
  55771. image: {
  55772. source: "./media/characters/squishi/back.svg",
  55773. extra: 1428/1271,
  55774. bottom: 30/1458
  55775. },
  55776. extraAttributes: {
  55777. "pawSize": {
  55778. name: "Paw Size",
  55779. power: 1,
  55780. type: "length",
  55781. base: math.unit(14, "ShoeSizeMensUS"),
  55782. defaultUnit: "ShoeSizeMensUS"
  55783. },
  55784. }
  55785. },
  55786. },
  55787. [
  55788. {
  55789. name: "Normal",
  55790. height: math.unit(4, "feet"),
  55791. default: true
  55792. },
  55793. ]
  55794. ))
  55795. characterMakers.push(() => makeCharacter(
  55796. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55797. {
  55798. front: {
  55799. height: math.unit(7 + 8/12, "feet"),
  55800. weight: math.unit(333, "lb"),
  55801. name: "Front",
  55802. image: {
  55803. source: "./media/characters/vincent-vasroc/front.svg",
  55804. extra: 1962/1860,
  55805. bottom: 41/2003
  55806. }
  55807. },
  55808. back: {
  55809. height: math.unit(7 + 8/12, "feet"),
  55810. weight: math.unit(333, "lb"),
  55811. name: "Back",
  55812. image: {
  55813. source: "./media/characters/vincent-vasroc/back.svg",
  55814. extra: 1952/1815,
  55815. bottom: 33/1985
  55816. }
  55817. },
  55818. paw: {
  55819. height: math.unit(1.24, "feet"),
  55820. name: "Paw",
  55821. image: {
  55822. source: "./media/characters/vincent-vasroc/paw.svg"
  55823. }
  55824. },
  55825. ear: {
  55826. height: math.unit(0.75, "feet"),
  55827. name: "Ear",
  55828. image: {
  55829. source: "./media/characters/vincent-vasroc/ear.svg"
  55830. }
  55831. },
  55832. },
  55833. [
  55834. {
  55835. name: "Nano",
  55836. height: math.unit(92, "micrometers")
  55837. },
  55838. {
  55839. name: "Normal",
  55840. height: math.unit(7 + 8/12, "feet"),
  55841. default: true
  55842. },
  55843. ]
  55844. ))
  55845. characterMakers.push(() => makeCharacter(
  55846. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55847. {
  55848. frontNsfw: {
  55849. height: math.unit(40, "feet"),
  55850. weight: math.unit(58, "tons"),
  55851. name: "Front (NSFW)",
  55852. image: {
  55853. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55854. extra: 1265/965,
  55855. bottom: 155/1420
  55856. }
  55857. },
  55858. frontSfw: {
  55859. height: math.unit(40, "feet"),
  55860. weight: math.unit(58, "tons"),
  55861. name: "Front (SFW)",
  55862. image: {
  55863. source: "./media/characters/ru-kahn/front-sfw.svg",
  55864. extra: 1265/965,
  55865. bottom: 80/1345
  55866. }
  55867. },
  55868. },
  55869. [
  55870. {
  55871. name: "Small",
  55872. height: math.unit(4, "feet")
  55873. },
  55874. {
  55875. name: "Normal",
  55876. height: math.unit(40, "feet"),
  55877. default: true
  55878. },
  55879. {
  55880. name: "Macro",
  55881. height: math.unit(400, "feet")
  55882. },
  55883. ]
  55884. ))
  55885. characterMakers.push(() => makeCharacter(
  55886. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55887. {
  55888. frontNude: {
  55889. height: math.unit(6 + 5/12, "feet"),
  55890. name: "Front (Nude)",
  55891. image: {
  55892. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55893. extra: 1369/1366,
  55894. bottom: 68/1437
  55895. }
  55896. },
  55897. frontDressed: {
  55898. height: math.unit(6 + 5/12, "feet"),
  55899. name: "Front (Dressed)",
  55900. image: {
  55901. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55902. extra: 1369/1366,
  55903. bottom: 68/1437
  55904. }
  55905. },
  55906. },
  55907. [
  55908. {
  55909. name: "Normal",
  55910. height: math.unit(6 + 5/12, "feet"),
  55911. default: true
  55912. },
  55913. {
  55914. name: "Maximum",
  55915. height: math.unit(1930, "feet")
  55916. },
  55917. ]
  55918. ))
  55919. characterMakers.push(() => makeCharacter(
  55920. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55921. {
  55922. front: {
  55923. height: math.unit(5 + 6/12, "feet"),
  55924. name: "Front",
  55925. image: {
  55926. source: "./media/characters/kaja/front.svg",
  55927. extra: 1874/1514,
  55928. bottom: 117/1991
  55929. }
  55930. },
  55931. },
  55932. [
  55933. {
  55934. name: "Normal",
  55935. height: math.unit(5 + 6/12, "feet"),
  55936. default: true
  55937. },
  55938. ]
  55939. ))
  55940. characterMakers.push(() => makeCharacter(
  55941. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55942. {
  55943. front: {
  55944. height: math.unit(5 + 9/12, "feet"),
  55945. weight: math.unit(200, "lb"),
  55946. name: "Front",
  55947. image: {
  55948. source: "./media/characters/mark-smith/front.svg",
  55949. extra: 1004/943,
  55950. bottom: 58/1062
  55951. }
  55952. },
  55953. back: {
  55954. height: math.unit(5 + 9/12, "feet"),
  55955. weight: math.unit(200, "lb"),
  55956. name: "Back",
  55957. image: {
  55958. source: "./media/characters/mark-smith/back.svg",
  55959. extra: 1023/953,
  55960. bottom: 24/1047
  55961. }
  55962. },
  55963. head: {
  55964. height: math.unit(1.82, "feet"),
  55965. name: "Head",
  55966. image: {
  55967. source: "./media/characters/mark-smith/head.svg"
  55968. }
  55969. },
  55970. hand: {
  55971. height: math.unit(1.4, "feet"),
  55972. name: "Hand",
  55973. image: {
  55974. source: "./media/characters/mark-smith/hand.svg"
  55975. }
  55976. },
  55977. paw: {
  55978. height: math.unit(1.69, "feet"),
  55979. name: "Paw",
  55980. image: {
  55981. source: "./media/characters/mark-smith/paw.svg"
  55982. }
  55983. },
  55984. },
  55985. [
  55986. {
  55987. name: "Micro",
  55988. height: math.unit(0.25, "inches")
  55989. },
  55990. {
  55991. name: "Normal",
  55992. height: math.unit(5 + 9/12, "feet"),
  55993. default: true
  55994. },
  55995. {
  55996. name: "Macro",
  55997. height: math.unit(500, "feet")
  55998. },
  55999. ]
  56000. ))
  56001. characterMakers.push(() => makeCharacter(
  56002. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56003. {
  56004. frontNude: {
  56005. height: math.unit(6, "feet"),
  56006. name: "Front (Nude)",
  56007. image: {
  56008. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56009. extra: 1384/1321,
  56010. bottom: 57/1441
  56011. }
  56012. },
  56013. frontDressed: {
  56014. height: math.unit(6, "feet"),
  56015. name: "Front (Dressed)",
  56016. image: {
  56017. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56018. extra: 1384/1321,
  56019. bottom: 57/1441
  56020. }
  56021. },
  56022. },
  56023. [
  56024. {
  56025. name: "Normal",
  56026. height: math.unit(6, "feet"),
  56027. default: true
  56028. },
  56029. {
  56030. name: "Maximum",
  56031. height: math.unit(1776, "feet")
  56032. },
  56033. ]
  56034. ))
  56035. characterMakers.push(() => makeCharacter(
  56036. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56037. {
  56038. front: {
  56039. height: math.unit(2 + 4/12, "feet"),
  56040. weight: math.unit(350, "lb"),
  56041. name: "Front",
  56042. image: {
  56043. source: "./media/characters/devos/front.svg",
  56044. extra: 958/852,
  56045. bottom: 143/1101
  56046. }
  56047. },
  56048. },
  56049. [
  56050. {
  56051. name: "Base",
  56052. height: math.unit(2 + 4/12, "feet"),
  56053. default: true
  56054. },
  56055. ]
  56056. ))
  56057. characterMakers.push(() => makeCharacter(
  56058. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56059. {
  56060. front: {
  56061. height: math.unit(9 + 2/12, "feet"),
  56062. name: "Front",
  56063. image: {
  56064. source: "./media/characters/hiveheart/front.svg",
  56065. extra: 394/364,
  56066. bottom: 65/459
  56067. }
  56068. },
  56069. back: {
  56070. height: math.unit(9 + 2/12, "feet"),
  56071. name: "Back",
  56072. image: {
  56073. source: "./media/characters/hiveheart/back.svg",
  56074. extra: 374/357,
  56075. bottom: 63/437
  56076. }
  56077. },
  56078. },
  56079. [
  56080. {
  56081. name: "Base",
  56082. height: math.unit(9 + 2/12, "feet"),
  56083. default: true
  56084. },
  56085. ]
  56086. ))
  56087. characterMakers.push(() => makeCharacter(
  56088. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56089. {
  56090. front: {
  56091. height: math.unit(2.5, "inches"),
  56092. weight: math.unit(0.6, "oz"),
  56093. name: "Front",
  56094. image: {
  56095. source: "./media/characters/bryn/front.svg",
  56096. extra: 1480/1205,
  56097. bottom: 27/1507
  56098. }
  56099. },
  56100. back: {
  56101. height: math.unit(2.5, "inches"),
  56102. weight: math.unit(0.6, "oz"),
  56103. name: "Back",
  56104. image: {
  56105. source: "./media/characters/bryn/back.svg",
  56106. extra: 1475/1201,
  56107. bottom: 39/1514
  56108. }
  56109. },
  56110. foot: {
  56111. height: math.unit(0.4, "inches"),
  56112. name: "Foot",
  56113. image: {
  56114. source: "./media/characters/bryn/foot.svg"
  56115. }
  56116. },
  56117. },
  56118. [
  56119. {
  56120. name: "Normal",
  56121. height: math.unit(2.5, "inches"),
  56122. default: true
  56123. },
  56124. ]
  56125. ))
  56126. characterMakers.push(() => makeCharacter(
  56127. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56128. {
  56129. side: {
  56130. height: math.unit(7, "feet"),
  56131. weight: math.unit(657, "kg"),
  56132. name: "Side",
  56133. image: {
  56134. source: "./media/characters/delta/side.svg",
  56135. extra: 781/212,
  56136. bottom: 7/788
  56137. },
  56138. extraAttributes: {
  56139. "wingspan": {
  56140. name: "Wingspan",
  56141. power: 1,
  56142. type: "length",
  56143. base: math.unit(48, "feet")
  56144. },
  56145. "length": {
  56146. name: "Length",
  56147. power: 1,
  56148. type: "length",
  56149. base: math.unit(21, "feet")
  56150. },
  56151. "pawSize": {
  56152. name: "Paw Size",
  56153. power: 2,
  56154. type: "area",
  56155. base: math.unit(1.5*1.4, "feet^2")
  56156. },
  56157. }
  56158. },
  56159. },
  56160. [
  56161. {
  56162. name: "Normal",
  56163. height: math.unit(6, "feet"),
  56164. default: true
  56165. },
  56166. ]
  56167. ))
  56168. characterMakers.push(() => makeCharacter(
  56169. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56170. {
  56171. front: {
  56172. height: math.unit(6, "feet"),
  56173. name: "Front",
  56174. image: {
  56175. source: "./media/characters/pyrow/front.svg",
  56176. extra: 513/486,
  56177. bottom: 14/527
  56178. }
  56179. },
  56180. frontWing: {
  56181. height: math.unit(6, "feet"),
  56182. name: "Front (Wing)",
  56183. image: {
  56184. source: "./media/characters/pyrow/front-wing.svg",
  56185. extra: 539/383,
  56186. bottom: 20/559
  56187. }
  56188. },
  56189. back: {
  56190. height: math.unit(6, "feet"),
  56191. name: "Back",
  56192. image: {
  56193. source: "./media/characters/pyrow/back.svg",
  56194. extra: 500/473,
  56195. bottom: 9/509
  56196. }
  56197. },
  56198. },
  56199. [
  56200. {
  56201. name: "Normal",
  56202. height: math.unit(6, "feet"),
  56203. default: true
  56204. },
  56205. ]
  56206. ))
  56207. characterMakers.push(() => makeCharacter(
  56208. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56209. {
  56210. front: {
  56211. height: math.unit(5, "meters"),
  56212. weight: math.unit(3, "tonnes"),
  56213. name: "Front",
  56214. image: {
  56215. source: "./media/characters/velikan/front.svg",
  56216. extra: 867/744,
  56217. bottom: 71/938
  56218. },
  56219. extraAttributes: {
  56220. "shoeSize": {
  56221. name: "Shoe Size",
  56222. power: 1,
  56223. type: "length",
  56224. base: math.unit(135, "ShoeSizeUK"),
  56225. defaultUnit: "ShoeSizeUK"
  56226. },
  56227. }
  56228. },
  56229. },
  56230. [
  56231. {
  56232. name: "Normal",
  56233. height: math.unit(5, "meters"),
  56234. default: true
  56235. },
  56236. {
  56237. name: "Macro",
  56238. height: math.unit(1, "km")
  56239. },
  56240. {
  56241. name: "Mega Macro",
  56242. height: math.unit(100, "km")
  56243. },
  56244. {
  56245. name: "Giga Macro",
  56246. height: math.unit(2, "megameters")
  56247. },
  56248. {
  56249. name: "Planetary",
  56250. height: math.unit(22, "megameters")
  56251. },
  56252. {
  56253. name: "Solar",
  56254. height: math.unit(8, "gigameters")
  56255. },
  56256. {
  56257. name: "Cosmic",
  56258. height: math.unit(10, "zettameters")
  56259. },
  56260. {
  56261. name: "Omni",
  56262. height: math.unit(9e260, "multiverses")
  56263. },
  56264. ]
  56265. ))
  56266. characterMakers.push(() => makeCharacter(
  56267. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56268. {
  56269. front: {
  56270. height: math.unit(4 + 3/12, "feet"),
  56271. weight: math.unit(90, "lb"),
  56272. name: "Front",
  56273. image: {
  56274. source: "./media/characters/sabiki/front.svg",
  56275. extra: 1662/1423,
  56276. bottom: 65/1727
  56277. }
  56278. },
  56279. },
  56280. [
  56281. {
  56282. name: "Normal",
  56283. height: math.unit(4 + 3/12, "feet"),
  56284. default: true
  56285. },
  56286. ]
  56287. ))
  56288. characterMakers.push(() => makeCharacter(
  56289. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56290. {
  56291. frontSfw: {
  56292. height: math.unit(2, "mm"),
  56293. name: "Front (SFW)",
  56294. image: {
  56295. source: "./media/characters/carmel/front-sfw.svg",
  56296. extra: 1131/1006,
  56297. bottom: 66/1197
  56298. }
  56299. },
  56300. frontNsfw: {
  56301. height: math.unit(2, "mm"),
  56302. name: "Front (NSFW)",
  56303. image: {
  56304. source: "./media/characters/carmel/front-nsfw.svg",
  56305. extra: 1131/1006,
  56306. bottom: 66/1197
  56307. }
  56308. },
  56309. foot: {
  56310. height: math.unit(0.3, "mm"),
  56311. name: "Foot",
  56312. image: {
  56313. source: "./media/characters/carmel/foot.svg"
  56314. }
  56315. },
  56316. tongue: {
  56317. height: math.unit(0.71, "mm"),
  56318. name: "Tongue",
  56319. image: {
  56320. source: "./media/characters/carmel/tongue.svg"
  56321. }
  56322. },
  56323. dick: {
  56324. height: math.unit(0.085, "mm"),
  56325. name: "Dick",
  56326. image: {
  56327. source: "./media/characters/carmel/dick.svg"
  56328. }
  56329. },
  56330. },
  56331. [
  56332. {
  56333. name: "Micro",
  56334. height: math.unit(2, "mm"),
  56335. default: true
  56336. },
  56337. {
  56338. name: "Normal",
  56339. height: math.unit(4 + 8/12, "feet")
  56340. },
  56341. {
  56342. name: "Mega Macro",
  56343. height: math.unit(250, "feet")
  56344. },
  56345. {
  56346. name: "BIGGER",
  56347. height: math.unit(1000, "feet")
  56348. },
  56349. {
  56350. name: "BIGGEST",
  56351. height: math.unit(2, "miles")
  56352. },
  56353. ]
  56354. ))
  56355. characterMakers.push(() => makeCharacter(
  56356. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56357. {
  56358. front: {
  56359. height: math.unit(6.5, "feet"),
  56360. weight: math.unit(198, "lb"),
  56361. name: "Front",
  56362. image: {
  56363. source: "./media/characters/tamani/anthro.svg",
  56364. extra: 930/890,
  56365. bottom: 34/964
  56366. },
  56367. form: "anthro",
  56368. default: true
  56369. },
  56370. side: {
  56371. height: math.unit(6, "feet"),
  56372. weight: math.unit(198*2, "lb"),
  56373. name: "Side",
  56374. image: {
  56375. source: "./media/characters/tamani/feral.svg",
  56376. extra: 559/519,
  56377. bottom: 43/602
  56378. },
  56379. form: "feral"
  56380. },
  56381. },
  56382. [
  56383. {
  56384. name: "Normal",
  56385. height: math.unit(6.5, "feet"),
  56386. default: true,
  56387. form: "anthro"
  56388. },
  56389. {
  56390. name: "Normal",
  56391. height: math.unit(6, "feet"),
  56392. default: true,
  56393. form: "feral"
  56394. },
  56395. ],
  56396. {
  56397. "anthro": {
  56398. name: "Anthro",
  56399. default: true
  56400. },
  56401. "feral": {
  56402. name: "Feral",
  56403. },
  56404. }
  56405. ))
  56406. characterMakers.push(() => makeCharacter(
  56407. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56408. {
  56409. front: {
  56410. height: math.unit(4 + 1/12, "feet"),
  56411. weight: math.unit(114, "lb"),
  56412. name: "Front",
  56413. image: {
  56414. source: "./media/characters/dex/front.svg",
  56415. extra: 787/680,
  56416. bottom: 18/805
  56417. }
  56418. },
  56419. side: {
  56420. height: math.unit(4 + 1/12, "feet"),
  56421. weight: math.unit(114, "lb"),
  56422. name: "Side",
  56423. image: {
  56424. source: "./media/characters/dex/side.svg",
  56425. extra: 785/680,
  56426. bottom: 12/797
  56427. }
  56428. },
  56429. back: {
  56430. height: math.unit(4 + 1/12, "feet"),
  56431. weight: math.unit(114, "lb"),
  56432. name: "Back",
  56433. image: {
  56434. source: "./media/characters/dex/back.svg",
  56435. extra: 785/681,
  56436. bottom: 17/802
  56437. }
  56438. },
  56439. loungewear: {
  56440. height: math.unit(4 + 1/12, "feet"),
  56441. weight: math.unit(114, "lb"),
  56442. name: "Loungewear",
  56443. image: {
  56444. source: "./media/characters/dex/loungewear.svg",
  56445. extra: 787/680,
  56446. bottom: 18/805
  56447. }
  56448. },
  56449. workout: {
  56450. height: math.unit(4 + 1/12, "feet"),
  56451. weight: math.unit(114, "lb"),
  56452. name: "Workout",
  56453. image: {
  56454. source: "./media/characters/dex/workout.svg",
  56455. extra: 787/680,
  56456. bottom: 18/805
  56457. }
  56458. },
  56459. schoolUniform: {
  56460. height: math.unit(4 + 1/12, "feet"),
  56461. weight: math.unit(114, "lb"),
  56462. name: "School-uniform",
  56463. image: {
  56464. source: "./media/characters/dex/school-uniform.svg",
  56465. extra: 787/680,
  56466. bottom: 18/805
  56467. }
  56468. },
  56469. maw: {
  56470. height: math.unit(0.55, "feet"),
  56471. name: "Maw",
  56472. image: {
  56473. source: "./media/characters/dex/maw.svg"
  56474. }
  56475. },
  56476. paw: {
  56477. height: math.unit(0.87, "feet"),
  56478. name: "Paw",
  56479. image: {
  56480. source: "./media/characters/dex/paw.svg"
  56481. }
  56482. },
  56483. bust: {
  56484. height: math.unit(1.67, "feet"),
  56485. name: "Bust",
  56486. image: {
  56487. source: "./media/characters/dex/bust.svg"
  56488. }
  56489. },
  56490. },
  56491. [
  56492. {
  56493. name: "Normal",
  56494. height: math.unit(4 + 1/12, "feet"),
  56495. default: true
  56496. },
  56497. ]
  56498. ))
  56499. characterMakers.push(() => makeCharacter(
  56500. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56501. {
  56502. front: {
  56503. height: math.unit(4 + 3/12, "feet"),
  56504. weight: math.unit(60, "lb"),
  56505. name: "Front",
  56506. image: {
  56507. source: "./media/characters/silke/front.svg",
  56508. extra: 1334/1122,
  56509. bottom: 21/1355
  56510. }
  56511. },
  56512. back: {
  56513. height: math.unit(4 + 3/12, "feet"),
  56514. weight: math.unit(60, "lb"),
  56515. name: "Back",
  56516. image: {
  56517. source: "./media/characters/silke/back.svg",
  56518. extra: 1328/1092,
  56519. bottom: 16/1344
  56520. }
  56521. },
  56522. dressed: {
  56523. height: math.unit(4 + 3/12, "feet"),
  56524. weight: math.unit(60, "lb"),
  56525. name: "Dressed",
  56526. image: {
  56527. source: "./media/characters/silke/dressed.svg",
  56528. extra: 1334/1122,
  56529. bottom: 43/1377
  56530. }
  56531. },
  56532. },
  56533. [
  56534. {
  56535. name: "Normal",
  56536. height: math.unit(4 + 3/12, "feet"),
  56537. default: true
  56538. },
  56539. ]
  56540. ))
  56541. characterMakers.push(() => makeCharacter(
  56542. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56543. {
  56544. front: {
  56545. height: math.unit(1.58, "meters"),
  56546. weight: math.unit(47, "kg"),
  56547. name: "Front",
  56548. image: {
  56549. source: "./media/characters/wireshark/front.svg",
  56550. extra: 883/838,
  56551. bottom: 66/949
  56552. }
  56553. },
  56554. },
  56555. [
  56556. {
  56557. name: "Normal",
  56558. height: math.unit(1.58, "meters"),
  56559. default: true
  56560. },
  56561. ]
  56562. ))
  56563. characterMakers.push(() => makeCharacter(
  56564. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56565. {
  56566. front: {
  56567. height: math.unit(6, "meters"),
  56568. weight: math.unit(15000, "kg"),
  56569. name: "Front",
  56570. image: {
  56571. source: "./media/characters/gallagher/front.svg",
  56572. extra: 532/493,
  56573. bottom: 0/532
  56574. }
  56575. },
  56576. },
  56577. [
  56578. {
  56579. name: "Normal",
  56580. height: math.unit(6, "meters"),
  56581. default: true
  56582. },
  56583. ]
  56584. ))
  56585. characterMakers.push(() => makeCharacter(
  56586. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56587. {
  56588. front: {
  56589. height: math.unit(2.4, "meters"),
  56590. weight: math.unit(270, "kg"),
  56591. name: "Front",
  56592. image: {
  56593. source: "./media/characters/alice/front.svg",
  56594. extra: 950/900,
  56595. bottom: 36/986
  56596. }
  56597. },
  56598. side: {
  56599. height: math.unit(2.4, "meters"),
  56600. weight: math.unit(270, "kg"),
  56601. name: "Side",
  56602. image: {
  56603. source: "./media/characters/alice/side.svg",
  56604. extra: 921/876,
  56605. bottom: 19/940
  56606. }
  56607. },
  56608. dressed: {
  56609. height: math.unit(2.4, "meters"),
  56610. weight: math.unit(270, "kg"),
  56611. name: "Dressed",
  56612. image: {
  56613. source: "./media/characters/alice/dressed.svg",
  56614. extra: 905/850,
  56615. bottom: 81/986
  56616. }
  56617. },
  56618. fishnet: {
  56619. height: math.unit(2.4, "meters"),
  56620. weight: math.unit(270, "kg"),
  56621. name: "Fishnet",
  56622. image: {
  56623. source: "./media/characters/alice/fishnet.svg",
  56624. extra: 905/850,
  56625. bottom: 81/986
  56626. }
  56627. },
  56628. },
  56629. [
  56630. {
  56631. name: "Normal",
  56632. height: math.unit(2.4, "meters"),
  56633. default: true
  56634. },
  56635. ]
  56636. ))
  56637. characterMakers.push(() => makeCharacter(
  56638. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56639. {
  56640. front: {
  56641. height: math.unit(175.25, "feet"),
  56642. name: "Front",
  56643. image: {
  56644. source: "./media/characters/fio/front.svg",
  56645. extra: 1883/1591,
  56646. bottom: 34/1917
  56647. }
  56648. },
  56649. },
  56650. [
  56651. {
  56652. name: "Normal",
  56653. height: math.unit(175.25, "cm"),
  56654. default: true
  56655. },
  56656. ]
  56657. ))
  56658. characterMakers.push(() => makeCharacter(
  56659. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56660. {
  56661. side: {
  56662. height: math.unit(6, "meters"),
  56663. weight: math.unit(3400, "kg"),
  56664. preyCapacity: math.unit(1700, "liters"),
  56665. name: "Side",
  56666. image: {
  56667. source: "./media/characters/hass/side.svg",
  56668. extra: 1058/997,
  56669. bottom: 177/1235
  56670. }
  56671. },
  56672. feeding: {
  56673. height: math.unit(6*0.63, "meters"),
  56674. weight: math.unit(3400, "kg"),
  56675. preyCapacity: math.unit(1700, "liters"),
  56676. name: "Feeding",
  56677. image: {
  56678. source: "./media/characters/hass/feeding.svg",
  56679. extra: 689/579,
  56680. bottom: 146/835
  56681. }
  56682. },
  56683. guts: {
  56684. height: math.unit(6, "meters"),
  56685. weight: math.unit(3400, "kg"),
  56686. name: "Guts",
  56687. image: {
  56688. source: "./media/characters/hass/guts.svg",
  56689. extra: 1223/1198,
  56690. bottom: 182/1405
  56691. }
  56692. },
  56693. dickFront: {
  56694. height: math.unit(1.4, "meters"),
  56695. name: "Dick (Front)",
  56696. image: {
  56697. source: "./media/characters/hass/dick-front.svg"
  56698. }
  56699. },
  56700. dickSide: {
  56701. height: math.unit(1.3, "meters"),
  56702. name: "Dick (Side)",
  56703. image: {
  56704. source: "./media/characters/hass/dick-side.svg"
  56705. }
  56706. },
  56707. dickBack: {
  56708. height: math.unit(1.4, "meters"),
  56709. name: "Dick (Back)",
  56710. image: {
  56711. source: "./media/characters/hass/dick-back.svg"
  56712. }
  56713. },
  56714. },
  56715. [
  56716. {
  56717. name: "Normal",
  56718. height: math.unit(6, "meters"),
  56719. default: true
  56720. },
  56721. ]
  56722. ))
  56723. characterMakers.push(() => makeCharacter(
  56724. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56725. {
  56726. front: {
  56727. height: math.unit(4, "feet"),
  56728. weight: math.unit(60, "lb"),
  56729. name: "Front",
  56730. image: {
  56731. source: "./media/characters/hickory-finnegan/front.svg",
  56732. extra: 444/411,
  56733. bottom: 10/454
  56734. }
  56735. },
  56736. side: {
  56737. height: math.unit(4, "feet"),
  56738. weight: math.unit(60, "lb"),
  56739. name: "Side",
  56740. image: {
  56741. source: "./media/characters/hickory-finnegan/side.svg",
  56742. extra: 444/411,
  56743. bottom: 10/454
  56744. }
  56745. },
  56746. back: {
  56747. height: math.unit(4, "feet"),
  56748. weight: math.unit(60, "lb"),
  56749. name: "Back",
  56750. image: {
  56751. source: "./media/characters/hickory-finnegan/back.svg",
  56752. extra: 444/411,
  56753. bottom: 10/454
  56754. }
  56755. },
  56756. },
  56757. [
  56758. {
  56759. name: "Normal",
  56760. height: math.unit(4, "feet"),
  56761. default: true
  56762. },
  56763. ]
  56764. ))
  56765. characterMakers.push(() => makeCharacter(
  56766. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56767. {
  56768. snivy_front: {
  56769. height: math.unit(2, "feet"),
  56770. weight: math.unit(17.9, "lb"),
  56771. name: "Front",
  56772. image: {
  56773. source: "./media/characters/robin-phox/snivy-front.svg",
  56774. extra: 569/504,
  56775. bottom: 33/602
  56776. },
  56777. form: "snivy",
  56778. default: true
  56779. },
  56780. snivy_frontNsfw: {
  56781. height: math.unit(2, "feet"),
  56782. weight: math.unit(17.9, "lb"),
  56783. name: "Front (NSFW)",
  56784. image: {
  56785. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56786. extra: 569/504,
  56787. bottom: 33/602
  56788. },
  56789. form: "snivy",
  56790. },
  56791. snivy_back: {
  56792. height: math.unit(2, "feet"),
  56793. weight: math.unit(17.9, "lb"),
  56794. name: "Back",
  56795. image: {
  56796. source: "./media/characters/robin-phox/snivy-back.svg",
  56797. extra: 577/508,
  56798. bottom: 21/598
  56799. },
  56800. form: "snivy",
  56801. },
  56802. snivy_foot: {
  56803. height: math.unit(0.68, "feet"),
  56804. name: "Foot",
  56805. image: {
  56806. source: "./media/characters/robin-phox/snivy-foot.svg"
  56807. },
  56808. form: "snivy",
  56809. },
  56810. snivy_sole: {
  56811. height: math.unit(0.68, "feet"),
  56812. name: "Sole",
  56813. image: {
  56814. source: "./media/characters/robin-phox/snivy-sole.svg"
  56815. },
  56816. form: "snivy",
  56817. },
  56818. yoshi_front: {
  56819. height: math.unit(6, "feet"),
  56820. weight: math.unit(150, "lb"),
  56821. name: "Front",
  56822. image: {
  56823. source: "./media/characters/robin-phox/yoshi-front.svg",
  56824. extra: 890/792,
  56825. bottom: 29/919
  56826. },
  56827. form: "yoshi",
  56828. default: true
  56829. },
  56830. yoshi_frontNsfw: {
  56831. height: math.unit(6, "feet"),
  56832. weight: math.unit(150, "lb"),
  56833. name: "Front (NSFW)",
  56834. image: {
  56835. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56836. extra: 890/792,
  56837. bottom: 29/919
  56838. },
  56839. form: "yoshi",
  56840. },
  56841. yoshi_back: {
  56842. height: math.unit(6, "feet"),
  56843. weight: math.unit(150, "lb"),
  56844. name: "Back",
  56845. image: {
  56846. source: "./media/characters/robin-phox/yoshi-back.svg",
  56847. extra: 890/792,
  56848. bottom: 29/919
  56849. },
  56850. form: "yoshi",
  56851. },
  56852. yoshi_foot: {
  56853. height: math.unit(1.5, "feet"),
  56854. name: "Foot",
  56855. image: {
  56856. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56857. },
  56858. form: "yoshi",
  56859. },
  56860. delphox_front: {
  56861. height: math.unit(4 + 11/12, "feet"),
  56862. weight: math.unit(86, "lb"),
  56863. name: "Front",
  56864. image: {
  56865. source: "./media/characters/robin-phox/delphox-front.svg",
  56866. extra: 1266/1069,
  56867. bottom: 32/1298
  56868. },
  56869. form: "delphox",
  56870. default: true
  56871. },
  56872. delphox_frontNsfw: {
  56873. height: math.unit(4 + 11/12, "feet"),
  56874. weight: math.unit(86, "lb"),
  56875. name: "Front (NSFW)",
  56876. image: {
  56877. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56878. extra: 1266/1069,
  56879. bottom: 32/1298
  56880. },
  56881. form: "delphox",
  56882. },
  56883. delphox_back: {
  56884. height: math.unit(4 + 11/12, "feet"),
  56885. weight: math.unit(86, "lb"),
  56886. name: "Back",
  56887. image: {
  56888. source: "./media/characters/robin-phox/delphox-back.svg",
  56889. extra: 1269/1083,
  56890. bottom: 15/1284
  56891. },
  56892. form: "delphox",
  56893. },
  56894. mienshao_front: {
  56895. height: math.unit(4 + 7/12, "feet"),
  56896. weight: math.unit(78.3, "lb"),
  56897. name: "Front",
  56898. image: {
  56899. source: "./media/characters/robin-phox/mienshao-front.svg",
  56900. extra: 1052/970,
  56901. bottom: 108/1160
  56902. },
  56903. form: "mienshao",
  56904. default: true
  56905. },
  56906. mienshao_frontNsfw: {
  56907. height: math.unit(4 + 7/12, "feet"),
  56908. weight: math.unit(78.3, "lb"),
  56909. name: "Front (NSFW)",
  56910. image: {
  56911. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56912. extra: 1052/970,
  56913. bottom: 108/1160
  56914. },
  56915. form: "mienshao",
  56916. },
  56917. mienshao_back: {
  56918. height: math.unit(4 + 7/12, "feet"),
  56919. weight: math.unit(78.3, "lb"),
  56920. name: "Back",
  56921. image: {
  56922. source: "./media/characters/robin-phox/mienshao-back.svg",
  56923. extra: 1102/982,
  56924. bottom: 32/1134
  56925. },
  56926. form: "mienshao",
  56927. },
  56928. inteleon_front: {
  56929. height: math.unit(6 + 3/12, "feet"),
  56930. weight: math.unit(99.6, "lb"),
  56931. name: "Front",
  56932. image: {
  56933. source: "./media/characters/robin-phox/inteleon-front.svg",
  56934. extra: 910/799,
  56935. bottom: 76/986
  56936. },
  56937. form: "inteleon",
  56938. default: true
  56939. },
  56940. inteleon_frontNsfw: {
  56941. height: math.unit(6 + 3/12, "feet"),
  56942. weight: math.unit(99.6, "lb"),
  56943. name: "Front (NSFW)",
  56944. image: {
  56945. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56946. extra: 910/799,
  56947. bottom: 76/986
  56948. },
  56949. form: "inteleon",
  56950. },
  56951. inteleon_back: {
  56952. height: math.unit(6 + 3/12, "feet"),
  56953. weight: math.unit(99.6, "lb"),
  56954. name: "Back",
  56955. image: {
  56956. source: "./media/characters/robin-phox/inteleon-back.svg",
  56957. extra: 907/796,
  56958. bottom: 25/932
  56959. },
  56960. form: "inteleon",
  56961. },
  56962. reshiram_front: {
  56963. height: math.unit(10 + 6/12, "feet"),
  56964. weight: math.unit(727.5, "lb"),
  56965. name: "Front",
  56966. image: {
  56967. source: "./media/characters/robin-phox/reshiram-front.svg",
  56968. extra: 1198/940,
  56969. bottom: 123/1321
  56970. },
  56971. form: "reshiram",
  56972. },
  56973. reshiram_frontNsfw: {
  56974. height: math.unit(10 + 6/12, "feet"),
  56975. weight: math.unit(727.5, "lb"),
  56976. name: "Front-nsfw",
  56977. image: {
  56978. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56979. extra: 1198/940,
  56980. bottom: 123/1321
  56981. },
  56982. form: "reshiram",
  56983. },
  56984. reshiram_back: {
  56985. height: math.unit(10 + 6/12, "feet"),
  56986. weight: math.unit(727.5, "lb"),
  56987. name: "Back",
  56988. image: {
  56989. source: "./media/characters/robin-phox/reshiram-back.svg",
  56990. extra: 1024/904,
  56991. bottom: 85/1109
  56992. },
  56993. form: "reshiram",
  56994. },
  56995. samurott_front: {
  56996. height: math.unit(8, "feet"),
  56997. weight: math.unit(208.6, "lb"),
  56998. name: "Front",
  56999. image: {
  57000. source: "./media/characters/robin-phox/samurott-front.svg",
  57001. extra: 1048/984,
  57002. bottom: 100/1148
  57003. },
  57004. form: "samurott",
  57005. },
  57006. samurott_frontNsfw: {
  57007. height: math.unit(8, "feet"),
  57008. weight: math.unit(208.6, "lb"),
  57009. name: "Front-nsfw",
  57010. image: {
  57011. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57012. extra: 1048/984,
  57013. bottom: 100/1148
  57014. },
  57015. form: "samurott",
  57016. },
  57017. samurott_back: {
  57018. height: math.unit(8, "feet"),
  57019. weight: math.unit(208.6, "lb"),
  57020. name: "Back",
  57021. image: {
  57022. source: "./media/characters/robin-phox/samurott-back.svg",
  57023. extra: 1110/1042,
  57024. bottom: 12/1122
  57025. },
  57026. form: "samurott",
  57027. },
  57028. samurott_feral: {
  57029. height: math.unit(4 + 11/12, "feet"),
  57030. weight: math.unit(208.6, "lb"),
  57031. name: "Feral",
  57032. image: {
  57033. source: "./media/characters/robin-phox/samurott-feral.svg",
  57034. extra: 766/681,
  57035. bottom: 108/874
  57036. },
  57037. form: "samurott",
  57038. },
  57039. },
  57040. [
  57041. {
  57042. name: "Normal",
  57043. height: math.unit(2, "feet"),
  57044. default: true,
  57045. form: "snivy"
  57046. },
  57047. {
  57048. name: "Normal",
  57049. height: math.unit(6, "feet"),
  57050. default: true,
  57051. form: "yoshi"
  57052. },
  57053. {
  57054. name: "Normal",
  57055. height: math.unit(4 + 11/12, "feet"),
  57056. default: true,
  57057. form: "delphox"
  57058. },
  57059. {
  57060. name: "Normal",
  57061. height: math.unit(4 + 7/12, "feet"),
  57062. default: true,
  57063. form: "mienshao"
  57064. },
  57065. {
  57066. name: "Normal",
  57067. height: math.unit(6 + 3/12, "feet"),
  57068. default: true,
  57069. form: "inteleon"
  57070. },
  57071. {
  57072. name: "Normal",
  57073. height: math.unit(10 + 6/12, "feet"),
  57074. default: true,
  57075. form: "reshiram"
  57076. },
  57077. {
  57078. name: "Normal",
  57079. height: math.unit(8, "feet"),
  57080. default: true,
  57081. form: "samurott"
  57082. },
  57083. {
  57084. name: "Macro",
  57085. height: math.unit(500, "feet"),
  57086. allForms: true
  57087. },
  57088. {
  57089. name: "Mega Macro",
  57090. height: math.unit(10, "earths"),
  57091. allForms: true
  57092. },
  57093. {
  57094. name: "Giga Macro",
  57095. height: math.unit(1, "galaxy"),
  57096. allForms: true
  57097. },
  57098. {
  57099. name: "Godly Macro",
  57100. height: math.unit(1e10, "multiverses"),
  57101. allForms: true
  57102. },
  57103. ],
  57104. {
  57105. "snivy": {
  57106. name: "Snivy",
  57107. default: true
  57108. },
  57109. "yoshi": {
  57110. name: "Yoshi",
  57111. },
  57112. "delphox": {
  57113. name: "Delphox",
  57114. },
  57115. "mienshao": {
  57116. name: "Mienshao",
  57117. },
  57118. "inteleon": {
  57119. name: "Inteleon",
  57120. },
  57121. "reshiram": {
  57122. name: "Reshiram",
  57123. },
  57124. "samurott": {
  57125. name: "Samurott",
  57126. },
  57127. }
  57128. ))
  57129. characterMakers.push(() => makeCharacter(
  57130. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57131. {
  57132. front: {
  57133. height: math.unit(4, "feet"),
  57134. name: "Front",
  57135. image: {
  57136. source: "./media/characters/ash-leung/front.svg",
  57137. extra: 1916/1792,
  57138. bottom: 50/1966
  57139. }
  57140. },
  57141. },
  57142. [
  57143. {
  57144. name: "Atomic",
  57145. height: math.unit(1, "angstrom")
  57146. },
  57147. {
  57148. name: "Microscopic",
  57149. height: math.unit(4000, "angstroms")
  57150. },
  57151. {
  57152. name: "Speck",
  57153. height: math.unit(1, "mm")
  57154. },
  57155. {
  57156. name: "Small",
  57157. height: math.unit(1, "inch")
  57158. },
  57159. {
  57160. name: "Normal",
  57161. height: math.unit(4, "feet"),
  57162. default: true
  57163. },
  57164. ]
  57165. ))
  57166. characterMakers.push(() => makeCharacter(
  57167. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57168. {
  57169. frontDressed: {
  57170. height: math.unit(2.08, "meters"),
  57171. weight: math.unit(175, "lb"),
  57172. name: "Front (Dressed)",
  57173. image: {
  57174. source: "./media/characters/carie/front-dressed.svg",
  57175. extra: 456/417,
  57176. bottom: 7/463
  57177. }
  57178. },
  57179. backDressed: {
  57180. height: math.unit(2.08, "meters"),
  57181. weight: math.unit(175, "lb"),
  57182. name: "Back (Dressed)",
  57183. image: {
  57184. source: "./media/characters/carie/back-dressed.svg",
  57185. extra: 455/414,
  57186. bottom: 11/466
  57187. }
  57188. },
  57189. front: {
  57190. height: math.unit(2, "meters"),
  57191. weight: math.unit(175, "lb"),
  57192. name: "Front",
  57193. image: {
  57194. source: "./media/characters/carie/front.svg",
  57195. extra: 438/399,
  57196. bottom: 12/450
  57197. }
  57198. },
  57199. back: {
  57200. height: math.unit(2, "meters"),
  57201. weight: math.unit(175, "lb"),
  57202. name: "Back",
  57203. image: {
  57204. source: "./media/characters/carie/back.svg",
  57205. extra: 438/397,
  57206. bottom: 7/445
  57207. }
  57208. },
  57209. },
  57210. [
  57211. {
  57212. name: "Normal",
  57213. height: math.unit(2.08, "meters"),
  57214. default: true
  57215. },
  57216. {
  57217. name: "Macro",
  57218. height: math.unit(2.08e3, "meters")
  57219. },
  57220. {
  57221. name: "Mega Macro",
  57222. height: math.unit(2.08e6, "meters")
  57223. },
  57224. {
  57225. name: "Giga Macro",
  57226. height: math.unit(2.08e9, "meters")
  57227. },
  57228. {
  57229. name: "Tera Macro",
  57230. height: math.unit(2.08e12, "meters")
  57231. },
  57232. {
  57233. name: "Peta Macro",
  57234. height: math.unit(2.08e15, "meters")
  57235. },
  57236. {
  57237. name: "Exa Macro",
  57238. height: math.unit(2.08e18, "meters")
  57239. },
  57240. {
  57241. name: "Zetta Macro",
  57242. height: math.unit(2.08e21, "meters")
  57243. },
  57244. {
  57245. name: "Yotta Macro",
  57246. height: math.unit(2.08e24, "meters")
  57247. },
  57248. ]
  57249. ))
  57250. characterMakers.push(() => makeCharacter(
  57251. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57252. {
  57253. front: {
  57254. height: math.unit(5 + 2/12, "feet"),
  57255. weight: math.unit(120, "lb"),
  57256. name: "Front",
  57257. image: {
  57258. source: "./media/characters/sai-bree/front.svg",
  57259. extra: 1843/1702,
  57260. bottom: 91/1934
  57261. }
  57262. },
  57263. back: {
  57264. height: math.unit(5 + 2/12, "feet"),
  57265. weight: math.unit(120, "lb"),
  57266. name: "Back",
  57267. image: {
  57268. source: "./media/characters/sai-bree/back.svg",
  57269. extra: 1809/1637,
  57270. bottom: 56/1865
  57271. }
  57272. },
  57273. },
  57274. [
  57275. {
  57276. name: "Normal",
  57277. height: math.unit(5 + 2/12, "feet"),
  57278. default: true
  57279. },
  57280. {
  57281. name: "Macro",
  57282. height: math.unit(500, "feet")
  57283. },
  57284. ]
  57285. ))
  57286. characterMakers.push(() => makeCharacter(
  57287. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57288. {
  57289. side: {
  57290. height: math.unit(0.77, "meters"),
  57291. weight: math.unit(120, "lb"),
  57292. name: "Side",
  57293. image: {
  57294. source: "./media/characters/davwyn/side.svg",
  57295. extra: 1557/1225,
  57296. bottom: 131/1688
  57297. }
  57298. },
  57299. front: {
  57300. height: math.unit(0.835410, "meters"),
  57301. weight: math.unit(120, "lb"),
  57302. name: "Front",
  57303. image: {
  57304. source: "./media/characters/davwyn/front.svg",
  57305. extra: 870/843,
  57306. bottom: 175/1045
  57307. }
  57308. },
  57309. },
  57310. [
  57311. {
  57312. name: "Minidrake",
  57313. height: math.unit(0.77/4, "meters")
  57314. },
  57315. {
  57316. name: "Normal",
  57317. height: math.unit(0.77, "meters"),
  57318. default: true
  57319. },
  57320. ]
  57321. ))
  57322. characterMakers.push(() => makeCharacter(
  57323. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57324. {
  57325. front: {
  57326. height: math.unit(10 + 3/12, "feet"),
  57327. weight: math.unit(2857, "lb"),
  57328. name: "Front",
  57329. image: {
  57330. source: "./media/characters/balans/front.svg",
  57331. extra: 427/402,
  57332. bottom: 26/453
  57333. }
  57334. },
  57335. side: {
  57336. height: math.unit(10 + 3/12, "feet"),
  57337. weight: math.unit(2857, "lb"),
  57338. name: "Side",
  57339. image: {
  57340. source: "./media/characters/balans/side.svg",
  57341. extra: 397/371,
  57342. bottom: 17/414
  57343. }
  57344. },
  57345. back: {
  57346. height: math.unit(10 + 3/12, "feet"),
  57347. weight: math.unit(2857, "lb"),
  57348. name: "Back",
  57349. image: {
  57350. source: "./media/characters/balans/back.svg",
  57351. extra: 408/381,
  57352. bottom: 14/422
  57353. }
  57354. },
  57355. hand: {
  57356. height: math.unit(1.15, "feet"),
  57357. name: "Hand",
  57358. image: {
  57359. source: "./media/characters/balans/hand.svg"
  57360. }
  57361. },
  57362. footRest: {
  57363. height: math.unit(3.1, "feet"),
  57364. name: "Foot (Rest)",
  57365. image: {
  57366. source: "./media/characters/balans/foot-rest.svg"
  57367. }
  57368. },
  57369. footActive: {
  57370. height: math.unit(3.5, "feet"),
  57371. name: "Foot (Active)",
  57372. image: {
  57373. source: "./media/characters/balans/foot-active.svg"
  57374. }
  57375. },
  57376. },
  57377. [
  57378. {
  57379. name: "Normal",
  57380. height: math.unit(10 + 3/12, "feet"),
  57381. default: true
  57382. },
  57383. ]
  57384. ))
  57385. characterMakers.push(() => makeCharacter(
  57386. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57387. {
  57388. side: {
  57389. height: math.unit(9, "meters"),
  57390. weight: math.unit(114, "tonnes"),
  57391. name: "Side",
  57392. image: {
  57393. source: "./media/characters/eldkveikir/side.svg",
  57394. extra: 1927/338,
  57395. bottom: 42/1969
  57396. }
  57397. },
  57398. sitting: {
  57399. height: math.unit(13.4, "meters"),
  57400. weight: math.unit(114, "tonnes"),
  57401. name: "Sitting",
  57402. image: {
  57403. source: "./media/characters/eldkveikir/sitting.svg",
  57404. extra: 1108/963,
  57405. bottom: 610/1718
  57406. }
  57407. },
  57408. maw: {
  57409. height: math.unit(8.36, "meters"),
  57410. name: "Maw",
  57411. image: {
  57412. source: "./media/characters/eldkveikir/maw.svg"
  57413. }
  57414. },
  57415. hand: {
  57416. height: math.unit(4.84, "meters"),
  57417. name: "Hand",
  57418. image: {
  57419. source: "./media/characters/eldkveikir/hand.svg"
  57420. }
  57421. },
  57422. foot: {
  57423. height: math.unit(6.9, "meters"),
  57424. name: "Foot",
  57425. image: {
  57426. source: "./media/characters/eldkveikir/foot.svg"
  57427. }
  57428. },
  57429. genitals: {
  57430. height: math.unit(9.6, "meters"),
  57431. name: "Genitals",
  57432. image: {
  57433. source: "./media/characters/eldkveikir/genitals.svg"
  57434. }
  57435. },
  57436. },
  57437. [
  57438. {
  57439. name: "Normal",
  57440. height: math.unit(9, "meters"),
  57441. default: true
  57442. },
  57443. ]
  57444. ))
  57445. characterMakers.push(() => makeCharacter(
  57446. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57447. {
  57448. front: {
  57449. height: math.unit(14, "feet"),
  57450. weight: math.unit(4100, "lb"),
  57451. name: "Front",
  57452. image: {
  57453. source: "./media/characters/arrow/front.svg",
  57454. extra: 330/318,
  57455. bottom: 56/386
  57456. }
  57457. },
  57458. },
  57459. [
  57460. {
  57461. name: "Normal",
  57462. height: math.unit(14, "feet"),
  57463. default: true
  57464. },
  57465. {
  57466. name: "Minimacro",
  57467. height: math.unit(63, "feet")
  57468. },
  57469. {
  57470. name: "Macro",
  57471. height: math.unit(630, "feet")
  57472. },
  57473. {
  57474. name: "Megamacro",
  57475. height: math.unit(12600, "feet")
  57476. },
  57477. {
  57478. name: "Gigamacro",
  57479. height: math.unit(18000, "miles")
  57480. },
  57481. ]
  57482. ))
  57483. characterMakers.push(() => makeCharacter(
  57484. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57485. {
  57486. front: {
  57487. height: math.unit(10, "feet"),
  57488. weight: math.unit(2.4, "tons"),
  57489. name: "Front",
  57490. image: {
  57491. source: "./media/characters/3yk-k0-unit/front.svg",
  57492. extra: 573/561,
  57493. bottom: 33/606
  57494. }
  57495. },
  57496. back: {
  57497. height: math.unit(10, "feet"),
  57498. weight: math.unit(2.4, "tons"),
  57499. name: "Back",
  57500. image: {
  57501. source: "./media/characters/3yk-k0-unit/back.svg",
  57502. extra: 614/573,
  57503. bottom: 32/646
  57504. }
  57505. },
  57506. maw: {
  57507. height: math.unit(2.15, "feet"),
  57508. name: "Maw",
  57509. image: {
  57510. source: "./media/characters/3yk-k0-unit/maw.svg"
  57511. }
  57512. },
  57513. },
  57514. [
  57515. {
  57516. name: "Normal",
  57517. height: math.unit(10, "feet"),
  57518. default: true
  57519. },
  57520. ]
  57521. ))
  57522. characterMakers.push(() => makeCharacter(
  57523. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57524. {
  57525. front: {
  57526. height: math.unit(8 + 8/12, "feet"),
  57527. name: "Front",
  57528. image: {
  57529. source: "./media/characters/nemo/front.svg",
  57530. extra: 1308/1217,
  57531. bottom: 57/1365
  57532. }
  57533. },
  57534. },
  57535. [
  57536. {
  57537. name: "Normal",
  57538. height: math.unit(8 + 8/12, "feet"),
  57539. default: true
  57540. },
  57541. ]
  57542. ))
  57543. characterMakers.push(() => makeCharacter(
  57544. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57545. {
  57546. front: {
  57547. height: math.unit(8, "feet"),
  57548. weight: math.unit(760, "lb"),
  57549. name: "Front",
  57550. image: {
  57551. source: "./media/characters/rexx/front.svg",
  57552. extra: 786/750,
  57553. bottom: 17/803
  57554. },
  57555. extraAttributes: {
  57556. "pawLength": {
  57557. name: "Paw Length",
  57558. power: 1,
  57559. type: "length",
  57560. base: math.unit(27, "inches")
  57561. },
  57562. }
  57563. },
  57564. },
  57565. [
  57566. {
  57567. name: "Micro",
  57568. height: math.unit(2, "inches")
  57569. },
  57570. {
  57571. name: "Normal",
  57572. height: math.unit(8, "feet"),
  57573. default: true
  57574. },
  57575. {
  57576. name: "Macro",
  57577. height: math.unit(150, "feet")
  57578. },
  57579. ]
  57580. ))
  57581. characterMakers.push(() => makeCharacter(
  57582. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57583. {
  57584. front: {
  57585. height: math.unit(18, "feet"),
  57586. weight: math.unit(1975, "lb"),
  57587. name: "Front",
  57588. image: {
  57589. source: "./media/characters/draco/front.svg",
  57590. extra: 1325/1241,
  57591. bottom: 83/1408
  57592. }
  57593. },
  57594. back: {
  57595. height: math.unit(18, "feet"),
  57596. weight: math.unit(1975, "lb"),
  57597. name: "Back",
  57598. image: {
  57599. source: "./media/characters/draco/back.svg",
  57600. extra: 1332/1250,
  57601. bottom: 43/1375
  57602. }
  57603. },
  57604. dick: {
  57605. height: math.unit(7.5, "feet"),
  57606. name: "Dick",
  57607. image: {
  57608. source: "./media/characters/draco/dick.svg"
  57609. }
  57610. },
  57611. },
  57612. [
  57613. {
  57614. name: "Normal",
  57615. height: math.unit(18, "feet"),
  57616. default: true
  57617. },
  57618. ]
  57619. ))
  57620. characterMakers.push(() => makeCharacter(
  57621. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57622. {
  57623. front: {
  57624. height: math.unit(3.2, "meters"),
  57625. name: "Front",
  57626. image: {
  57627. source: "./media/characters/harriett/front.svg",
  57628. extra: 1966/1915,
  57629. bottom: 9/1975
  57630. }
  57631. },
  57632. },
  57633. [
  57634. {
  57635. name: "Normal",
  57636. height: math.unit(3.2, "meters"),
  57637. default: true
  57638. },
  57639. ]
  57640. ))
  57641. characterMakers.push(() => makeCharacter(
  57642. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57643. {
  57644. sitting: {
  57645. height: math.unit(0.8, "meter"),
  57646. name: "Sitting",
  57647. image: {
  57648. source: "./media/characters/serpentus/sitting.svg",
  57649. extra: 293/290,
  57650. bottom: 140/433
  57651. }
  57652. },
  57653. },
  57654. [
  57655. {
  57656. name: "Normal",
  57657. height: math.unit(0.8, "meter"),
  57658. default: true
  57659. },
  57660. ]
  57661. ))
  57662. characterMakers.push(() => makeCharacter(
  57663. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57664. {
  57665. front: {
  57666. height: math.unit(5.7174385736, "feet"),
  57667. name: "Front",
  57668. image: {
  57669. source: "./media/characters/nova-polecat/front.svg",
  57670. extra: 1317/1216,
  57671. bottom: 92/1409
  57672. }
  57673. },
  57674. },
  57675. [
  57676. {
  57677. name: "Normal",
  57678. height: math.unit(5.7174385736, "feet"),
  57679. default: true
  57680. },
  57681. ]
  57682. ))
  57683. characterMakers.push(() => makeCharacter(
  57684. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57685. {
  57686. front: {
  57687. height: math.unit(5 + 4/12, "feet"),
  57688. weight: math.unit(250, "lb"),
  57689. name: "Front",
  57690. image: {
  57691. source: "./media/characters/mook/front.svg",
  57692. extra: 1088/1037,
  57693. bottom: 132/1220
  57694. }
  57695. },
  57696. back: {
  57697. height: math.unit(5 + 1/12, "feet"),
  57698. weight: math.unit(250, "lb"),
  57699. name: "Back",
  57700. image: {
  57701. source: "./media/characters/mook/back.svg",
  57702. extra: 1184/905,
  57703. bottom: 96/1280
  57704. }
  57705. },
  57706. head: {
  57707. height: math.unit(1.85, "feet"),
  57708. name: "Head",
  57709. image: {
  57710. source: "./media/characters/mook/head.svg"
  57711. }
  57712. },
  57713. hand: {
  57714. height: math.unit(1.9, "feet"),
  57715. name: "Hand",
  57716. image: {
  57717. source: "./media/characters/mook/hand.svg"
  57718. }
  57719. },
  57720. palm: {
  57721. height: math.unit(1.84, "feet"),
  57722. name: "Palm",
  57723. image: {
  57724. source: "./media/characters/mook/palm.svg"
  57725. }
  57726. },
  57727. foot: {
  57728. height: math.unit(1.44, "feet"),
  57729. name: "Foot",
  57730. image: {
  57731. source: "./media/characters/mook/foot.svg"
  57732. }
  57733. },
  57734. sole: {
  57735. height: math.unit(1.44, "feet"),
  57736. name: "Sole",
  57737. image: {
  57738. source: "./media/characters/mook/sole.svg"
  57739. }
  57740. },
  57741. },
  57742. [
  57743. {
  57744. name: "Normal",
  57745. height: math.unit(5 + 4/12, "feet"),
  57746. default: true
  57747. },
  57748. {
  57749. name: "Big",
  57750. height: math.unit(12, "feet")
  57751. },
  57752. ]
  57753. ))
  57754. characterMakers.push(() => makeCharacter(
  57755. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57756. {
  57757. front: {
  57758. height: math.unit(6 + 10/12, "feet"),
  57759. weight: math.unit(233, "lb"),
  57760. name: "Front",
  57761. image: {
  57762. source: "./media/characters/kayla/front.svg",
  57763. extra: 1850/1775,
  57764. bottom: 65/1915
  57765. }
  57766. },
  57767. },
  57768. [
  57769. {
  57770. name: "Normal",
  57771. height: math.unit(6 + 10/12, "feet"),
  57772. default: true
  57773. },
  57774. {
  57775. name: "Amazonian",
  57776. height: math.unit(12 + 5/12, "feet")
  57777. },
  57778. {
  57779. name: "Mini Giantess",
  57780. height: math.unit(26, "feet")
  57781. },
  57782. {
  57783. name: "Giantess",
  57784. height: math.unit(200, "feet")
  57785. },
  57786. {
  57787. name: "Mega Giantess",
  57788. height: math.unit(2500, "feet")
  57789. },
  57790. {
  57791. name: "City Sized",
  57792. height: math.unit(50, "miles")
  57793. },
  57794. {
  57795. name: "Country Sized",
  57796. height: math.unit(500, "miles")
  57797. },
  57798. {
  57799. name: "Continent Sized",
  57800. height: math.unit(2500, "miles")
  57801. },
  57802. {
  57803. name: "Planet Sized",
  57804. height: math.unit(10000, "miles")
  57805. },
  57806. {
  57807. name: "Star Sized",
  57808. height: math.unit(5e6, "miles")
  57809. },
  57810. {
  57811. name: "Solar System Sized",
  57812. height: math.unit(125, "AU")
  57813. },
  57814. {
  57815. name: "Galaxy Sized",
  57816. height: math.unit(300e3, "lightyears")
  57817. },
  57818. {
  57819. name: "Universe Sized",
  57820. height: math.unit(200e9, "lightyears")
  57821. },
  57822. {
  57823. name: "Multiverse Sized",
  57824. height: math.unit(20, "exauniverses")
  57825. },
  57826. {
  57827. name: "Mother of Existence",
  57828. height: math.unit(1e6, "yottauniverses")
  57829. },
  57830. ]
  57831. ))
  57832. characterMakers.push(() => makeCharacter(
  57833. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57834. {
  57835. side: {
  57836. height: math.unit(9.5, "meters"),
  57837. name: "Side",
  57838. image: {
  57839. source: "./media/characters/kulve-ragnarok/side.svg",
  57840. extra: 364/326,
  57841. bottom: 50/414
  57842. }
  57843. },
  57844. },
  57845. [
  57846. {
  57847. name: "Normal",
  57848. height: math.unit(9.5, "meters"),
  57849. default: true
  57850. },
  57851. ]
  57852. ))
  57853. characterMakers.push(() => makeCharacter(
  57854. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57855. {
  57856. front: {
  57857. height: math.unit(8 + 9/12, "feet"),
  57858. name: "Front",
  57859. image: {
  57860. source: "./media/characters/atlas-goat/front.svg",
  57861. extra: 1462/1323,
  57862. bottom: 12/1474
  57863. }
  57864. },
  57865. },
  57866. [
  57867. {
  57868. name: "Normal",
  57869. height: math.unit(8 + 9/12, "feet"),
  57870. default: true
  57871. },
  57872. {
  57873. name: "Skyline",
  57874. height: math.unit(845, "feet")
  57875. },
  57876. {
  57877. name: "Orbital",
  57878. height: math.unit(93000, "miles")
  57879. },
  57880. {
  57881. name: "Constellation",
  57882. height: math.unit(27000, "lightyears")
  57883. },
  57884. ]
  57885. ))
  57886. characterMakers.push(() => makeCharacter(
  57887. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57888. {
  57889. side: {
  57890. height: math.unit(1.8, "meters"),
  57891. weight: math.unit(120, "kg"),
  57892. name: "Side",
  57893. image: {
  57894. source: "./media/characters/xie-ling/side.svg",
  57895. extra: 646/574,
  57896. bottom: 44/690
  57897. }
  57898. },
  57899. },
  57900. [
  57901. {
  57902. name: "Tiny",
  57903. height: math.unit(1.80, "meters")
  57904. },
  57905. {
  57906. name: "Small",
  57907. height: math.unit(6, "meters")
  57908. },
  57909. {
  57910. name: "Medium",
  57911. height: math.unit(15, "meters")
  57912. },
  57913. {
  57914. name: "Normal",
  57915. height: math.unit(30, "meters"),
  57916. default: true
  57917. },
  57918. {
  57919. name: "Above Normal",
  57920. height: math.unit(60, "meters")
  57921. },
  57922. {
  57923. name: "Big",
  57924. height: math.unit(220, "meters")
  57925. },
  57926. {
  57927. name: "Giant",
  57928. height: math.unit(2.2, "km")
  57929. },
  57930. {
  57931. name: "Macro",
  57932. height: math.unit(25, "km")
  57933. },
  57934. {
  57935. name: "Mega Macro",
  57936. height: math.unit(350, "km")
  57937. },
  57938. {
  57939. name: "Mega Macro+",
  57940. height: math.unit(5000, "km")
  57941. },
  57942. {
  57943. name: "Goddess",
  57944. height: math.unit(3, "multiverses")
  57945. },
  57946. ]
  57947. ))
  57948. characterMakers.push(() => makeCharacter(
  57949. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57950. {
  57951. frontSfw: {
  57952. height: math.unit(5 + 11/12, "feet"),
  57953. weight: math.unit(210, "lb"),
  57954. name: "Front",
  57955. image: {
  57956. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57957. extra: 1928/1821,
  57958. bottom: 45/1973
  57959. }
  57960. },
  57961. backSfw: {
  57962. height: math.unit(5 + 11/12, "feet"),
  57963. weight: math.unit(210, "lb"),
  57964. name: "Back",
  57965. image: {
  57966. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57967. extra: 1920/1813,
  57968. bottom: 34/1954
  57969. }
  57970. },
  57971. frontNsfw: {
  57972. height: math.unit(5 + 11/12, "feet"),
  57973. weight: math.unit(210, "lb"),
  57974. name: "Front (NSFW)",
  57975. image: {
  57976. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57977. extra: 1928/1821,
  57978. bottom: 45/1973
  57979. }
  57980. },
  57981. backNsfw: {
  57982. height: math.unit(5 + 11/12, "feet"),
  57983. weight: math.unit(210, "lb"),
  57984. name: "Back (NSFW)",
  57985. image: {
  57986. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57987. extra: 1920/1813,
  57988. bottom: 34/1954
  57989. }
  57990. },
  57991. },
  57992. [
  57993. {
  57994. name: "Normal",
  57995. height: math.unit(5 + 11/12, "feet"),
  57996. default: true
  57997. },
  57998. {
  57999. name: "Goddess",
  58000. height: math.unit(20 + 3/12, "feet")
  58001. },
  58002. {
  58003. name: "Breaker of Man",
  58004. height: math.unit(329 + 9/12, "feet")
  58005. },
  58006. {
  58007. name: "Solar Justice",
  58008. height: math.unit(0.6, "solarradii")
  58009. },
  58010. {
  58011. name: "She Who Judges",
  58012. height: math.unit(1, "universe")
  58013. },
  58014. ]
  58015. ))
  58016. characterMakers.push(() => makeCharacter(
  58017. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58018. {
  58019. casual_front: {
  58020. height: math.unit(6 + 1/12, "feet"),
  58021. weight: math.unit(190, "lb"),
  58022. preyCapacity: math.unit(1, "people"),
  58023. name: "Front",
  58024. image: {
  58025. source: "./media/characters/managarmr/casual-front.svg",
  58026. extra: 411/381,
  58027. bottom: 15/426
  58028. },
  58029. extraAttributes: {
  58030. "pawSize": {
  58031. name: "Paw Size",
  58032. power: 1,
  58033. type: "length",
  58034. base: math.unit(0.2, "meters")
  58035. },
  58036. },
  58037. form: "casual",
  58038. },
  58039. casual_back: {
  58040. height: math.unit(6 + 1/12, "feet"),
  58041. weight: math.unit(190, "lb"),
  58042. preyCapacity: math.unit(1, "people"),
  58043. name: "Back",
  58044. image: {
  58045. source: "./media/characters/managarmr/casual-back.svg",
  58046. extra: 413/383,
  58047. bottom: 13/426
  58048. },
  58049. extraAttributes: {
  58050. "pawSize": {
  58051. name: "Paw Size",
  58052. power: 1,
  58053. type: "length",
  58054. base: math.unit(0.2, "meters")
  58055. },
  58056. },
  58057. form: "casual",
  58058. },
  58059. base_front: {
  58060. height: math.unit(7, "feet"),
  58061. weight: math.unit(210, "lb"),
  58062. preyCapacity: math.unit(2, "people"),
  58063. name: "Front",
  58064. image: {
  58065. source: "./media/characters/managarmr/base-front.svg",
  58066. extra: 580/485,
  58067. bottom: 32/612
  58068. },
  58069. extraAttributes: {
  58070. "wingspan": {
  58071. name: "Wingspan",
  58072. power: 1,
  58073. type: "length",
  58074. base: math.unit(4, "meters")
  58075. },
  58076. "pawSize": {
  58077. name: "Paw Size",
  58078. power: 1,
  58079. type: "length",
  58080. base: math.unit(0.2, "meters")
  58081. },
  58082. },
  58083. form: "base",
  58084. },
  58085. "true-divine_front": {
  58086. height: math.unit(40, "feet"),
  58087. weight: math.unit(39000, "lb"),
  58088. preyCapacity: math.unit(375, "people"),
  58089. name: "Front",
  58090. image: {
  58091. source: "./media/characters/managarmr/true-divine-front.svg",
  58092. extra: 725/573,
  58093. bottom: 120/845
  58094. },
  58095. extraAttributes: {
  58096. "wingspan": {
  58097. name: "Wingspan",
  58098. power: 1,
  58099. type: "length",
  58100. base: math.unit(20, "meters")
  58101. },
  58102. "pawSize": {
  58103. name: "Paw Size",
  58104. power: 1,
  58105. type: "length",
  58106. base: math.unit(1.5, "meters")
  58107. },
  58108. },
  58109. form: "true-divine",
  58110. },
  58111. },
  58112. [
  58113. {
  58114. name: "Normal",
  58115. height: math.unit(6 + 1/12, "feet"),
  58116. form: "casual",
  58117. default: true
  58118. },
  58119. {
  58120. name: "Normal",
  58121. height: math.unit(7, "feet"),
  58122. form: "base",
  58123. default: true
  58124. },
  58125. ],
  58126. {
  58127. "casual": {
  58128. name: "Casual",
  58129. default: true
  58130. },
  58131. "base": {
  58132. name: "Base",
  58133. },
  58134. "true-divine": {
  58135. name: "True Divine",
  58136. },
  58137. }
  58138. ))
  58139. characterMakers.push(() => makeCharacter(
  58140. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58141. {
  58142. front: {
  58143. height: math.unit(1.8, "meters"),
  58144. weight: math.unit(110, "kg"),
  58145. name: "Front",
  58146. image: {
  58147. source: "./media/characters/mystra/front.svg",
  58148. extra: 529/442,
  58149. bottom: 31/560
  58150. }
  58151. },
  58152. frontLewd: {
  58153. height: math.unit(1.8, "meters"),
  58154. weight: math.unit(110, "kg"),
  58155. name: "Front (Lewd)",
  58156. image: {
  58157. source: "./media/characters/mystra/front-lewd.svg",
  58158. extra: 529/442,
  58159. bottom: 31/560
  58160. }
  58161. },
  58162. head: {
  58163. height: math.unit(1.63, "feet"),
  58164. name: "Head",
  58165. image: {
  58166. source: "./media/characters/mystra/head.svg"
  58167. }
  58168. },
  58169. paw: {
  58170. height: math.unit(1.9, "feet"),
  58171. name: "Paw",
  58172. image: {
  58173. source: "./media/characters/mystra/paw.svg"
  58174. }
  58175. },
  58176. },
  58177. [
  58178. {
  58179. name: "Incognito",
  58180. height: math.unit(2.3, "meters")
  58181. },
  58182. {
  58183. name: "Small Macro",
  58184. height: math.unit(300, "meters")
  58185. },
  58186. {
  58187. name: "Small Mega",
  58188. height: math.unit(2, "km")
  58189. },
  58190. {
  58191. name: "Mega",
  58192. height: math.unit(30, "km")
  58193. },
  58194. {
  58195. name: "Small Giga",
  58196. height: math.unit(100, "km")
  58197. },
  58198. {
  58199. name: "Giga",
  58200. height: math.unit(1000, "km"),
  58201. default: true
  58202. },
  58203. {
  58204. name: "Continental",
  58205. height: math.unit(5000, "km")
  58206. },
  58207. {
  58208. name: "Terra",
  58209. height: math.unit(20000, "km")
  58210. },
  58211. {
  58212. name: "Solar",
  58213. height: math.unit(2e6, "km")
  58214. },
  58215. {
  58216. name: "Galactic",
  58217. height: math.unit(528502, "lightyears")
  58218. },
  58219. {
  58220. name: "Universal",
  58221. height: math.unit(20, "universes")
  58222. },
  58223. ]
  58224. ))
  58225. characterMakers.push(() => makeCharacter(
  58226. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58227. {
  58228. front: {
  58229. height: math.unit(2, "meters"),
  58230. weight: math.unit(140, "kg"),
  58231. name: "Front",
  58232. image: {
  58233. source: "./media/characters/caleb/front.svg",
  58234. extra: 873/817,
  58235. bottom: 47/920
  58236. }
  58237. },
  58238. back: {
  58239. height: math.unit(2, "meters"),
  58240. weight: math.unit(140, "kg"),
  58241. name: "Back",
  58242. image: {
  58243. source: "./media/characters/caleb/back.svg",
  58244. extra: 877/828,
  58245. bottom: 24/901
  58246. }
  58247. },
  58248. snakeTail: {
  58249. height: math.unit(1.44, "feet"),
  58250. name: "Snake Tail",
  58251. image: {
  58252. source: "./media/characters/caleb/snake-tail.svg"
  58253. }
  58254. },
  58255. dick: {
  58256. height: math.unit(2.6, "feet"),
  58257. name: "Dick",
  58258. image: {
  58259. source: "./media/characters/caleb/dick.svg"
  58260. }
  58261. },
  58262. },
  58263. [
  58264. {
  58265. name: "Incognito",
  58266. height: math.unit(3, "meters")
  58267. },
  58268. {
  58269. name: "Home Size",
  58270. height: math.unit(200, "meters"),
  58271. default: true
  58272. },
  58273. {
  58274. name: "Macro",
  58275. height: math.unit(500, "meters")
  58276. },
  58277. {
  58278. name: "Big Macro",
  58279. height: math.unit(5, "km")
  58280. },
  58281. {
  58282. name: "Giga",
  58283. height: math.unit(250, "km")
  58284. },
  58285. {
  58286. name: "Giga+",
  58287. height: math.unit(5000, "km")
  58288. },
  58289. {
  58290. name: "Small Terra",
  58291. height: math.unit(35e3, "km")
  58292. },
  58293. {
  58294. name: "Terra",
  58295. height: math.unit(2e6, "km")
  58296. },
  58297. {
  58298. name: "Terra+",
  58299. height: math.unit(1.5e6, "km")
  58300. },
  58301. ]
  58302. ))
  58303. characterMakers.push(() => makeCharacter(
  58304. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58305. {
  58306. front: {
  58307. height: math.unit(2, "meters"),
  58308. weight: math.unit(120, "kg"),
  58309. name: "Front",
  58310. image: {
  58311. source: "./media/characters/gilirian/front.svg",
  58312. extra: 805/737,
  58313. bottom: 13/818
  58314. }
  58315. },
  58316. side: {
  58317. height: math.unit(2, "meters"),
  58318. weight: math.unit(120, "kg"),
  58319. name: "Side",
  58320. image: {
  58321. source: "./media/characters/gilirian/side.svg",
  58322. extra: 810/746,
  58323. bottom: 6/816
  58324. }
  58325. },
  58326. back: {
  58327. height: math.unit(2, "meters"),
  58328. weight: math.unit(120, "kg"),
  58329. name: "Back",
  58330. image: {
  58331. source: "./media/characters/gilirian/back.svg",
  58332. extra: 815/745,
  58333. bottom: 15/830
  58334. }
  58335. },
  58336. frontNsfw: {
  58337. height: math.unit(2, "meters"),
  58338. weight: math.unit(120, "kg"),
  58339. name: "Front (NSFW)",
  58340. image: {
  58341. source: "./media/characters/gilirian/front-nsfw.svg",
  58342. extra: 805/737,
  58343. bottom: 13/818
  58344. }
  58345. },
  58346. sideNsfw: {
  58347. height: math.unit(2, "meters"),
  58348. weight: math.unit(120, "kg"),
  58349. name: "Side (NSFW)",
  58350. image: {
  58351. source: "./media/characters/gilirian/side-nsfw.svg",
  58352. extra: 810/746,
  58353. bottom: 6/816
  58354. }
  58355. },
  58356. },
  58357. [
  58358. {
  58359. name: "Incognito",
  58360. height: math.unit(2, "meters"),
  58361. default: true
  58362. },
  58363. {
  58364. name: "Macro",
  58365. height: math.unit(250, "meters")
  58366. },
  58367. {
  58368. name: "Big Macro",
  58369. height: math.unit(1500, "meters")
  58370. },
  58371. {
  58372. name: "Mega",
  58373. height: math.unit(40, "km")
  58374. },
  58375. {
  58376. name: "Giga",
  58377. height: math.unit(300, "km")
  58378. },
  58379. {
  58380. name: "Extra Giga",
  58381. height: math.unit(5000, "km")
  58382. },
  58383. {
  58384. name: "Small Terra",
  58385. height: math.unit(10e3, "km")
  58386. },
  58387. {
  58388. name: "Terra",
  58389. height: math.unit(3e5, "km")
  58390. },
  58391. {
  58392. name: "Galactic",
  58393. height: math.unit(369950, "lightyears")
  58394. },
  58395. ]
  58396. ))
  58397. characterMakers.push(() => makeCharacter(
  58398. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58399. {
  58400. front: {
  58401. height: math.unit(2.5, "meters"),
  58402. weight: math.unit(230, "lb"),
  58403. name: "Front",
  58404. image: {
  58405. source: "./media/characters/tarken/front.svg",
  58406. extra: 764/720,
  58407. bottom: 49/813
  58408. }
  58409. },
  58410. back: {
  58411. height: math.unit(2.5, "meters"),
  58412. weight: math.unit(230, "lb"),
  58413. name: "Back",
  58414. image: {
  58415. source: "./media/characters/tarken/back.svg",
  58416. extra: 756/720,
  58417. bottom: 35/791
  58418. }
  58419. },
  58420. frontNsfw: {
  58421. height: math.unit(2.5, "meters"),
  58422. weight: math.unit(230, "lb"),
  58423. name: "Front (NSFW)",
  58424. image: {
  58425. source: "./media/characters/tarken/front-nsfw.svg",
  58426. extra: 764/720,
  58427. bottom: 49/813
  58428. }
  58429. },
  58430. backNsfw: {
  58431. height: math.unit(2.5, "meters"),
  58432. weight: math.unit(230, "lb"),
  58433. name: "Back (NSFW)",
  58434. image: {
  58435. source: "./media/characters/tarken/back-nsfw.svg",
  58436. extra: 756/720,
  58437. bottom: 35/791
  58438. }
  58439. },
  58440. head: {
  58441. height: math.unit(2.22, "feet"),
  58442. name: "Head",
  58443. image: {
  58444. source: "./media/characters/tarken/head.svg"
  58445. }
  58446. },
  58447. tail: {
  58448. height: math.unit(5.25, "feet"),
  58449. name: "Tail",
  58450. image: {
  58451. source: "./media/characters/tarken/tail.svg"
  58452. }
  58453. },
  58454. dick: {
  58455. height: math.unit(1.95, "feet"),
  58456. name: "Dick",
  58457. image: {
  58458. source: "./media/characters/tarken/dick.svg"
  58459. }
  58460. },
  58461. hand: {
  58462. height: math.unit(1.78, "feet"),
  58463. name: "Hand",
  58464. image: {
  58465. source: "./media/characters/tarken/hand.svg"
  58466. }
  58467. },
  58468. beam: {
  58469. height: math.unit(1.5, "feet"),
  58470. name: "Beam",
  58471. image: {
  58472. source: "./media/characters/tarken/beam.svg"
  58473. }
  58474. },
  58475. },
  58476. [
  58477. {
  58478. name: "Original Size",
  58479. height: math.unit(2.5, "meters")
  58480. },
  58481. {
  58482. name: "Macro",
  58483. height: math.unit(150, "meters"),
  58484. default: true
  58485. },
  58486. {
  58487. name: "Macro+",
  58488. height: math.unit(300, "meters")
  58489. },
  58490. {
  58491. name: "Mega",
  58492. height: math.unit(2, "km")
  58493. },
  58494. {
  58495. name: "Mega+",
  58496. height: math.unit(35, "km")
  58497. },
  58498.  {
  58499. name: "Mega++",
  58500. height: math.unit(60, "km")
  58501. },
  58502. {
  58503. name: "Giga",
  58504. height: math.unit(200, "km")
  58505. },
  58506. {
  58507. name: "Giga+",
  58508. height: math.unit(2500, "km")
  58509. },
  58510. {
  58511. name: "Giga++",
  58512. height: math.unit(6600, "km")
  58513. },
  58514. {
  58515. name: "Terra",
  58516. height: math.unit(20000, "km")
  58517. },
  58518. {
  58519. name: "Terra+",
  58520. height: math.unit(300000, "km")
  58521. },
  58522. ]
  58523. ))
  58524. characterMakers.push(() => makeCharacter(
  58525. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58526. {
  58527. magpie_dressed: {
  58528. height: math.unit(1.7, "meters"),
  58529. weight: math.unit(70, "kg"),
  58530. name: "Dressed",
  58531. image: {
  58532. source: "./media/characters/otreus/magpie-dressed.svg",
  58533. extra: 691/672,
  58534. bottom: 116/807
  58535. },
  58536. form: "magpie",
  58537. default: true
  58538. },
  58539. magpie_nude: {
  58540. height: math.unit(1.7, "meters"),
  58541. weight: math.unit(70, "kg"),
  58542. name: "Nude",
  58543. image: {
  58544. source: "./media/characters/otreus/magpie-nude.svg",
  58545. extra: 691/672,
  58546. bottom: 116/807
  58547. },
  58548. form: "magpie",
  58549. },
  58550. magpie_dressedLewd: {
  58551. height: math.unit(1.7, "meters"),
  58552. weight: math.unit(70, "kg"),
  58553. name: "Dressed (Lewd)",
  58554. image: {
  58555. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58556. extra: 691/672,
  58557. bottom: 116/807
  58558. },
  58559. form: "magpie",
  58560. },
  58561. magpie_nudeLewd: {
  58562. height: math.unit(1.7, "meters"),
  58563. weight: math.unit(70, "kg"),
  58564. name: "Nude (Lewd)",
  58565. image: {
  58566. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58567. extra: 691/672,
  58568. bottom: 116/807
  58569. },
  58570. form: "magpie",
  58571. },
  58572. magpie_leftFoot: {
  58573. height: math.unit(1.58, "feet"),
  58574. name: "Left Foot",
  58575. image: {
  58576. source: "./media/characters/otreus/magpie-left-foot.svg"
  58577. },
  58578. form: "magpie",
  58579. },
  58580. magpie_rightFoot: {
  58581. height: math.unit(1.58, "feet"),
  58582. name: "Right Foot",
  58583. image: {
  58584. source: "./media/characters/otreus/magpie-right-foot.svg"
  58585. },
  58586. form: "magpie",
  58587. },
  58588. magpie_wingspan: {
  58589. height: math.unit(2, "meters"),
  58590. weight: math.unit(70, "kg"),
  58591. name: "Wingspan",
  58592. image: {
  58593. source: "./media/characters/otreus/magpie-wingspan.svg"
  58594. },
  58595. extraAttributes: {
  58596. "wingspan": {
  58597. name: "Wingspan",
  58598. power: 1,
  58599. type: "length",
  58600. base: math.unit(3.35, "meters")
  58601. },
  58602. },
  58603. form: "magpie",
  58604. },
  58605. hippogriff_dressed: {
  58606. height: math.unit(1.7, "meters"),
  58607. weight: math.unit(70, "kg"),
  58608. name: "Dressed",
  58609. image: {
  58610. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58611. extra: 710/689,
  58612. bottom: 67/777
  58613. },
  58614. form: "hippogriff",
  58615. default: true
  58616. },
  58617. hippogriff_nude: {
  58618. height: math.unit(1.7, "meters"),
  58619. weight: math.unit(70, "kg"),
  58620. name: "Nude",
  58621. image: {
  58622. source: "./media/characters/otreus/hippogriff-nude.svg",
  58623. extra: 710/689,
  58624. bottom: 67/777
  58625. },
  58626. form: "hippogriff",
  58627. },
  58628. hippogriff_dressedLewd: {
  58629. height: math.unit(1.7, "meters"),
  58630. weight: math.unit(70, "kg"),
  58631. name: "Dressed (Lewd)",
  58632. image: {
  58633. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58634. extra: 710/689,
  58635. bottom: 67/777
  58636. },
  58637. form: "hippogriff",
  58638. },
  58639. hippogriff_nudeLewd: {
  58640. height: math.unit(1.7, "meters"),
  58641. weight: math.unit(70, "kg"),
  58642. name: "Nude (Lewd)",
  58643. image: {
  58644. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58645. extra: 710/689,
  58646. bottom: 67/777
  58647. },
  58648. form: "hippogriff",
  58649. },
  58650. },
  58651. [
  58652. {
  58653. name: "Original Size",
  58654. height: math.unit(1.7, "meters"),
  58655. allForms: true
  58656. },
  58657. {
  58658. name: "Incognito Size",
  58659. height: math.unit(2, "meters"),
  58660. allForms: true
  58661. },
  58662. {
  58663. name: "Mega",
  58664. height: math.unit(2, "km"),
  58665. allForms: true
  58666. },
  58667. {
  58668. name: "Mega+",
  58669. height: math.unit(40, "km"),
  58670. allForms: true
  58671. },
  58672. {
  58673. name: "Giga",
  58674. height: math.unit(250, "km"),
  58675. allForms: true
  58676. },
  58677. {
  58678. name: "Giga+",
  58679. height: math.unit(3000, "km"),
  58680. allForms: true
  58681. },
  58682. {
  58683. name: "Terra",
  58684. height: math.unit(20000, "km"),
  58685. allForms: true
  58686. },
  58687. {
  58688. name: "Solar (Home Size)",
  58689. height: math.unit(3e6, "km"),
  58690. allForms: true,
  58691. default: true
  58692. },
  58693. ],
  58694. {
  58695. "magpie": {
  58696. name: "Magpie",
  58697. default: true
  58698. },
  58699. "hippogriff": {
  58700. name: "Hippogriff",
  58701. },
  58702. }
  58703. ))
  58704. characterMakers.push(() => makeCharacter(
  58705. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58706. {
  58707. frontDressed: {
  58708. height: math.unit(1.8, "meters"),
  58709. weight: math.unit(90, "kg"),
  58710. name: "Front (Dressed)",
  58711. image: {
  58712. source: "./media/characters/thalia/front-dressed.svg",
  58713. extra: 478/402,
  58714. bottom: 55/533
  58715. }
  58716. },
  58717. backDressed: {
  58718. height: math.unit(1.8, "meters"),
  58719. weight: math.unit(90, "kg"),
  58720. name: "Back (Dressed)",
  58721. image: {
  58722. source: "./media/characters/thalia/back-dressed.svg",
  58723. extra: 500/424,
  58724. bottom: 15/515
  58725. }
  58726. },
  58727. frontNude: {
  58728. height: math.unit(1.8, "meters"),
  58729. weight: math.unit(90, "kg"),
  58730. name: "Front (Nude)",
  58731. image: {
  58732. source: "./media/characters/thalia/front-nude.svg",
  58733. extra: 478/402,
  58734. bottom: 55/533
  58735. }
  58736. },
  58737. backNude: {
  58738. height: math.unit(1.8, "meters"),
  58739. weight: math.unit(90, "kg"),
  58740. name: "Back (Nude)",
  58741. image: {
  58742. source: "./media/characters/thalia/back-nude.svg",
  58743. extra: 500/424,
  58744. bottom: 15/515
  58745. }
  58746. },
  58747. },
  58748. [
  58749. {
  58750. name: "Incognito",
  58751. height: math.unit(3, "meters")
  58752. },
  58753. {
  58754. name: "Macro",
  58755. height: math.unit(500, "meters")
  58756. },
  58757. {
  58758. name: "Mega",
  58759. height: math.unit(5, "km")
  58760. },
  58761. {
  58762. name: "Mega+",
  58763. height: math.unit(30, "km")
  58764. },
  58765. {
  58766. name: "Giga",
  58767. height: math.unit(350, "km")
  58768. },
  58769. {
  58770. name: "Giga+",
  58771. height: math.unit(4000, "km")
  58772. },
  58773. {
  58774. name: "Terra",
  58775. height: math.unit(35000, "km")
  58776. },
  58777. {
  58778. name: "Original Size",
  58779. height: math.unit(130000, "km")
  58780. },
  58781. {
  58782. name: "Solar (Home Size)",
  58783. height: math.unit(4e6, "km"),
  58784. default: true
  58785. },
  58786. ]
  58787. ))
  58788. characterMakers.push(() => makeCharacter(
  58789. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58790. {
  58791. front: {
  58792. height: math.unit(1.8, "meters"),
  58793. weight: math.unit(95, "kg"),
  58794. name: "Front",
  58795. image: {
  58796. source: "./media/characters/shango/front.svg",
  58797. extra: 1925/1774,
  58798. bottom: 67/1992
  58799. }
  58800. },
  58801. back: {
  58802. height: math.unit(1.8, "meters"),
  58803. weight: math.unit(95, "kg"),
  58804. name: "Back",
  58805. image: {
  58806. source: "./media/characters/shango/back.svg",
  58807. extra: 1915/1766,
  58808. bottom: 52/1967
  58809. }
  58810. },
  58811. frontLewd: {
  58812. height: math.unit(1.8, "meters"),
  58813. weight: math.unit(95, "kg"),
  58814. name: "Front (Lewd)",
  58815. image: {
  58816. source: "./media/characters/shango/front-lewd.svg",
  58817. extra: 1925/1774,
  58818. bottom: 67/1992
  58819. }
  58820. },
  58821. backLewd: {
  58822. height: math.unit(1.8, "meters"),
  58823. weight: math.unit(95, "kg"),
  58824. name: "Back (Lewd)",
  58825. image: {
  58826. source: "./media/characters/shango/back-lewd.svg",
  58827. extra: 1915/1766,
  58828. bottom: 52/1967
  58829. }
  58830. },
  58831. maw: {
  58832. height: math.unit(1.64, "feet"),
  58833. name: "Maw",
  58834. image: {
  58835. source: "./media/characters/shango/maw.svg"
  58836. }
  58837. },
  58838. dick: {
  58839. height: math.unit(2.14, "feet"),
  58840. name: "Dick",
  58841. image: {
  58842. source: "./media/characters/shango/dick.svg"
  58843. }
  58844. },
  58845. },
  58846. [
  58847. {
  58848. name: "Incognito",
  58849. height: math.unit(1.8, "meters")
  58850. },
  58851. {
  58852. name: "Home Size",
  58853. height: math.unit(60, "meters"),
  58854. default: true
  58855. },
  58856. {
  58857. name: "Macro",
  58858. height: math.unit(450, "meters")
  58859. },
  58860. {
  58861. name: "Mega",
  58862. height: math.unit(6, "km")
  58863. },
  58864. {
  58865. name: "Mega+",
  58866. height: math.unit(35, "km")
  58867. },
  58868. {
  58869. name: "Giga",
  58870. height: math.unit(500, "km")
  58871. },
  58872. {
  58873. name: "Giga+",
  58874. height: math.unit(5000, "km")
  58875. },
  58876. {
  58877. name: "Terra",
  58878. height: math.unit(60000, "km")
  58879. },
  58880. {
  58881. name: "Terra+",
  58882. height: math.unit(400000, "km")
  58883. },
  58884. ]
  58885. ))
  58886. characterMakers.push(() => makeCharacter(
  58887. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58888. {
  58889. front: {
  58890. height: math.unit(2, "meters"),
  58891. weight: math.unit(95, "kg"),
  58892. name: "Front",
  58893. image: {
  58894. source: "./media/characters/osiris-gryphon/front.svg",
  58895. extra: 1508/1313,
  58896. bottom: 87/1595
  58897. }
  58898. },
  58899. back: {
  58900. height: math.unit(2, "meters"),
  58901. weight: math.unit(95, "kg"),
  58902. name: "Back",
  58903. image: {
  58904. source: "./media/characters/osiris-gryphon/back.svg",
  58905. extra: 1436/1309,
  58906. bottom: 64/1500
  58907. }
  58908. },
  58909. frontLewd: {
  58910. height: math.unit(2, "meters"),
  58911. weight: math.unit(95, "kg"),
  58912. name: "Front-lewd",
  58913. image: {
  58914. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58915. extra: 1508/1313,
  58916. bottom: 87/1595
  58917. }
  58918. },
  58919. wing: {
  58920. height: math.unit(6.3333, "feet"),
  58921. name: "Wing",
  58922. image: {
  58923. source: "./media/characters/osiris-gryphon/wing.svg"
  58924. }
  58925. },
  58926. },
  58927. [
  58928. {
  58929. name: "Incognito",
  58930. height: math.unit(2, "meters")
  58931. },
  58932. {
  58933. name: "Home Size",
  58934. height: math.unit(30, "meters"),
  58935. default: true
  58936. },
  58937. {
  58938. name: "Macro",
  58939. height: math.unit(100, "meters")
  58940. },
  58941. {
  58942. name: "Macro+",
  58943. height: math.unit(350, "meters")
  58944. },
  58945. {
  58946. name: "Mega",
  58947. height: math.unit(40, "km")
  58948. },
  58949. {
  58950. name: "Giga",
  58951. height: math.unit(300, "km")
  58952. },
  58953. {
  58954. name: "Giga+",
  58955. height: math.unit(2000, "km")
  58956. },
  58957. {
  58958. name: "Terra",
  58959. height: math.unit(30000, "km")
  58960. },
  58961. ]
  58962. ))
  58963. characterMakers.push(() => makeCharacter(
  58964. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58965. {
  58966. front: {
  58967. height: math.unit(2.5, "meters"),
  58968. weight: math.unit(200, "kg"),
  58969. name: "Front",
  58970. image: {
  58971. source: "./media/characters/atlas-dragon/front.svg",
  58972. extra: 745/462,
  58973. bottom: 36/781
  58974. }
  58975. },
  58976. back: {
  58977. height: math.unit(2.5, "meters"),
  58978. weight: math.unit(200, "kg"),
  58979. name: "Back",
  58980. image: {
  58981. source: "./media/characters/atlas-dragon/back.svg",
  58982. extra: 848/822,
  58983. bottom: 57/905
  58984. }
  58985. },
  58986. frontLewd: {
  58987. height: math.unit(2.5, "meters"),
  58988. weight: math.unit(200, "kg"),
  58989. name: "Front (Lewd)",
  58990. image: {
  58991. source: "./media/characters/atlas-dragon/front-lewd.svg",
  58992. extra: 745/462,
  58993. bottom: 36/781
  58994. }
  58995. },
  58996. backLewd: {
  58997. height: math.unit(2.5, "meters"),
  58998. weight: math.unit(200, "kg"),
  58999. name: "Back (Lewd)",
  59000. image: {
  59001. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59002. extra: 848/822,
  59003. bottom: 57/905
  59004. }
  59005. },
  59006. },
  59007. [
  59008. {
  59009. name: "Incognito",
  59010. height: math.unit(2.5, "meters")
  59011. },
  59012. {
  59013. name: "Small Macro",
  59014. height: math.unit(50, "meters")
  59015. },
  59016. {
  59017. name: "Macro",
  59018. height: math.unit(350, "meters")
  59019. },
  59020. {
  59021. name: "Mega",
  59022. height: math.unit(5.5, "kilometers")
  59023. },
  59024. {
  59025. name: "Mega+",
  59026. height: math.unit(50, "km")
  59027. },
  59028. {
  59029. name: "Giga",
  59030. height: math.unit(350, "km")
  59031. },
  59032. {
  59033. name: "Giga+",
  59034. height: math.unit(2000, "km")
  59035. },
  59036. {
  59037. name: "Giga++",
  59038. height: math.unit(6500, "km")
  59039. },
  59040. {
  59041. name: "Terra",
  59042. height: math.unit(30000, "km")
  59043. },
  59044. {
  59045. name: "Terra+",
  59046. height: math.unit(250000, "km")
  59047. },
  59048. {
  59049. name: "True Size",
  59050. height: math.unit(100, "multiverses"),
  59051. default: true
  59052. },
  59053. ]
  59054. ))
  59055. characterMakers.push(() => makeCharacter(
  59056. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59057. {
  59058. front: {
  59059. height: math.unit(1.8, "m"),
  59060. weight: math.unit(120, "kg"),
  59061. name: "Front",
  59062. image: {
  59063. source: "./media/characters/chey/front.svg",
  59064. extra: 1359/1270,
  59065. bottom: 18/1377
  59066. }
  59067. },
  59068. arm: {
  59069. height: math.unit(2.05, "feet"),
  59070. name: "Arm",
  59071. image: {
  59072. source: "./media/characters/chey/arm.svg"
  59073. }
  59074. },
  59075. head: {
  59076. height: math.unit(1.89, "feet"),
  59077. name: "Head",
  59078. image: {
  59079. source: "./media/characters/chey/head.svg"
  59080. }
  59081. },
  59082. },
  59083. [
  59084. {
  59085. name: "Original Size",
  59086. height: math.unit(5, "cm")
  59087. },
  59088. {
  59089. name: "Incognito Size",
  59090. height: math.unit(2.4, "m")
  59091. },
  59092. {
  59093. name: "Home Size",
  59094. height: math.unit(200, "meters"),
  59095. default: true
  59096. },
  59097. {
  59098. name: "Mega",
  59099. height: math.unit(2, "km")
  59100. },
  59101. {
  59102. name: "Giga (Preferred Size)",
  59103. height: math.unit(2000, "km")
  59104. },
  59105. {
  59106. name: "Giga+",
  59107. height: math.unit(6000, "km")
  59108. },
  59109. {
  59110. name: "Terra",
  59111. height: math.unit(17000, "km")
  59112. },
  59113. {
  59114. name: "Terra+",
  59115. height: math.unit(75000, "km")
  59116. },
  59117. {
  59118. name: "Terra++",
  59119. height: math.unit(225000, "km")
  59120. },
  59121. ]
  59122. ))
  59123. characterMakers.push(() => makeCharacter(
  59124. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59125. {
  59126. side: {
  59127. height: math.unit(7.8, "meters"),
  59128. name: "Side",
  59129. image: {
  59130. source: "./media/characters/ragnarok/side.svg",
  59131. extra: 725/621,
  59132. bottom: 72/797
  59133. }
  59134. },
  59135. },
  59136. [
  59137. {
  59138. name: "Normal",
  59139. height: math.unit(7.8, "meters"),
  59140. default: true
  59141. },
  59142. ]
  59143. ))
  59144. characterMakers.push(() => makeCharacter(
  59145. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59146. {
  59147. hyena_front: {
  59148. height: math.unit(2.1, "meters"),
  59149. weight: math.unit(110, "kg"),
  59150. name: "Front",
  59151. image: {
  59152. source: "./media/characters/nima/hyena-front.svg",
  59153. extra: 1904/1796,
  59154. bottom: 67/1971
  59155. },
  59156. form: "hyena",
  59157. },
  59158. hyena_back: {
  59159. height: math.unit(2.1, "meters"),
  59160. weight: math.unit(110, "kg"),
  59161. name: "Back",
  59162. image: {
  59163. source: "./media/characters/nima/hyena-back.svg",
  59164. extra: 1964/1884,
  59165. bottom: 35/1999
  59166. },
  59167. form: "hyena",
  59168. },
  59169. shark_front: {
  59170. height: math.unit(1.95, "meters"),
  59171. weight: math.unit(110, "kg"),
  59172. name: "Front",
  59173. image: {
  59174. source: "./media/characters/nima/shark-front.svg",
  59175. extra: 2238/2013,
  59176. bottom: 0/223
  59177. },
  59178. form: "shark",
  59179. },
  59180. paw: {
  59181. height: math.unit(1, "feet"),
  59182. name: "Paw",
  59183. image: {
  59184. source: "./media/characters/nima/paw.svg"
  59185. }
  59186. },
  59187. circlet: {
  59188. height: math.unit(0.3, "feet"),
  59189. name: "Circlet",
  59190. image: {
  59191. source: "./media/characters/nima/circlet.svg"
  59192. }
  59193. },
  59194. necklace: {
  59195. height: math.unit(1.2, "feet"),
  59196. name: "Necklace",
  59197. image: {
  59198. source: "./media/characters/nima/necklace.svg"
  59199. }
  59200. },
  59201. bracelet: {
  59202. height: math.unit(0.51, "feet"),
  59203. name: "Bracelet",
  59204. image: {
  59205. source: "./media/characters/nima/bracelet.svg"
  59206. }
  59207. },
  59208. armband: {
  59209. height: math.unit(1.3, "feet"),
  59210. name: "Armband",
  59211. image: {
  59212. source: "./media/characters/nima/armband.svg"
  59213. }
  59214. },
  59215. },
  59216. [
  59217. {
  59218. name: "Incognito",
  59219. height: math.unit(2.1, "meters"),
  59220. allForms: true
  59221. },
  59222. {
  59223. name: "Small Macro",
  59224. height: math.unit(50, "meters"),
  59225. allForms: true
  59226. },
  59227. {
  59228. name: "Macro",
  59229. height: math.unit(200, "meters"),
  59230. allForms: true
  59231. },
  59232. {
  59233. name: "Mega",
  59234. height: math.unit(2.5, "km"),
  59235. allForms: true
  59236. },
  59237. {
  59238. name: "Mega+",
  59239. height: math.unit(30, "km"),
  59240. allForms: true
  59241. },
  59242. {
  59243. name: "Giga (Home Size)",
  59244. height: math.unit(400, "km"),
  59245. allForms: true,
  59246. default: true
  59247. },
  59248. {
  59249. name: "Giga+",
  59250. height: math.unit(2500, "km"),
  59251. allForms: true
  59252. },
  59253. {
  59254. name: "Giga++",
  59255. height: math.unit(8000, "km"),
  59256. allForms: true
  59257. },
  59258. {
  59259. name: "Terra",
  59260. height: math.unit(20000, "km"),
  59261. allForms: true
  59262. },
  59263. {
  59264. name: "Terra+",
  59265. height: math.unit(70000, "km"),
  59266. allForms: true
  59267. },
  59268. {
  59269. name: "Terra++",
  59270. height: math.unit(600000, "km"),
  59271. allForms: true
  59272. },
  59273. {
  59274. name: "Galactic",
  59275. height: math.unit(40, "galaxies"),
  59276. allForms: true
  59277. },
  59278. {
  59279. name: "Universal",
  59280. height: math.unit(40, "universes"),
  59281. allForms: true
  59282. },
  59283. ],
  59284. {
  59285. "hyena": {
  59286. name: "Hyena",
  59287. default: true
  59288. },
  59289. "shark": {
  59290. name: "Shark",
  59291. },
  59292. }
  59293. ))
  59294. characterMakers.push(() => makeCharacter(
  59295. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59296. {
  59297. anthro_front: {
  59298. height: math.unit(1.5, "meters"),
  59299. name: "Front",
  59300. image: {
  59301. source: "./media/characters/adelaide/anthro-front.svg",
  59302. extra: 860/783,
  59303. bottom: 60/920
  59304. },
  59305. form: "anthro",
  59306. default: true
  59307. },
  59308. hand: {
  59309. height: math.unit(0.65, "feet"),
  59310. name: "Hand",
  59311. image: {
  59312. source: "./media/characters/adelaide/hand.svg"
  59313. },
  59314. form: "anthro"
  59315. },
  59316. foot: {
  59317. height: math.unit(1.38 * 259 / 314, "feet"),
  59318. name: "Foot",
  59319. image: {
  59320. source: "./media/characters/adelaide/foot.svg",
  59321. extra: 259/259,
  59322. bottom: 55/314
  59323. },
  59324. form: "anthro"
  59325. },
  59326. feather: {
  59327. height: math.unit(0.85, "feet"),
  59328. name: "Feather",
  59329. image: {
  59330. source: "./media/characters/adelaide/feather.svg"
  59331. },
  59332. form: "anthro"
  59333. },
  59334. feral_side: {
  59335. height: math.unit(1, "meters"),
  59336. name: "Side",
  59337. image: {
  59338. source: "./media/characters/adelaide/feral-side.svg",
  59339. extra: 550/467,
  59340. bottom: 37/587
  59341. },
  59342. form: "feral",
  59343. default: true
  59344. },
  59345. feral_hand: {
  59346. height: math.unit(0.58, "feet"),
  59347. name: "Hand",
  59348. image: {
  59349. source: "./media/characters/adelaide/hand.svg"
  59350. },
  59351. form: "feral"
  59352. },
  59353. feral_foot: {
  59354. height: math.unit(1.2 * 259 / 314, "feet"),
  59355. name: "Foot",
  59356. image: {
  59357. source: "./media/characters/adelaide/foot.svg",
  59358. extra: 259/259,
  59359. bottom: 55/314
  59360. },
  59361. form: "feral"
  59362. },
  59363. feral_feather: {
  59364. height: math.unit(0.63, "feet"),
  59365. name: "Feather",
  59366. image: {
  59367. source: "./media/characters/adelaide/feather.svg"
  59368. },
  59369. form: "feral"
  59370. },
  59371. },
  59372. [
  59373. {
  59374. name: "Normal",
  59375. height: math.unit(1.5, "meters"),
  59376. form: "anthro",
  59377. default: true
  59378. },
  59379. {
  59380. name: "Normal",
  59381. height: math.unit(1, "meters"),
  59382. form: "feral",
  59383. default: true
  59384. },
  59385. ],
  59386. {
  59387. "anthro": {
  59388. name: "Anthro",
  59389. default: true
  59390. },
  59391. "feral": {
  59392. name: "Feral",
  59393. },
  59394. }
  59395. ))
  59396. characterMakers.push(() => makeCharacter(
  59397. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59398. {
  59399. front: {
  59400. height: math.unit(2.5, "meters"),
  59401. name: "Front",
  59402. image: {
  59403. source: "./media/characters/goa/front.svg",
  59404. extra: 1109/1013,
  59405. bottom: 150/1259
  59406. }
  59407. },
  59408. },
  59409. [
  59410. {
  59411. name: "Normal",
  59412. height: math.unit(2.5, "meters"),
  59413. default: true
  59414. },
  59415. ]
  59416. ))
  59417. characterMakers.push(() => makeCharacter(
  59418. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59419. {
  59420. front: {
  59421. height: math.unit(2, "meters"),
  59422. weight: math.unit(100, "kg"),
  59423. name: "Front",
  59424. image: {
  59425. source: "./media/characters/kiki-weavile/front.svg",
  59426. extra: 357/332,
  59427. bottom: 60/417
  59428. }
  59429. },
  59430. },
  59431. [
  59432. {
  59433. name: "Normal",
  59434. height: math.unit(2, "meters"),
  59435. default: true
  59436. },
  59437. ]
  59438. ))
  59439. characterMakers.push(() => makeCharacter(
  59440. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59441. {
  59442. side: {
  59443. height: math.unit(1.6, "meters"),
  59444. name: "Side",
  59445. image: {
  59446. source: "./media/characters/liza/side.svg",
  59447. extra: 943/915,
  59448. bottom: 72/1015
  59449. }
  59450. },
  59451. },
  59452. [
  59453. {
  59454. name: "Normal",
  59455. height: math.unit(1.6, "meters"),
  59456. default: true
  59457. },
  59458. ]
  59459. ))
  59460. characterMakers.push(() => makeCharacter(
  59461. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59462. {
  59463. side: {
  59464. height: math.unit(2.5, "meters"),
  59465. name: "Side",
  59466. image: {
  59467. source: "./media/characters/persephone-sweetbreath/side.svg",
  59468. extra: 796/700,
  59469. bottom: 44/840
  59470. }
  59471. },
  59472. },
  59473. [
  59474. {
  59475. name: "Normal",
  59476. height: math.unit(2.5, "meters"),
  59477. default: true
  59478. },
  59479. ]
  59480. ))
  59481. characterMakers.push(() => makeCharacter(
  59482. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59483. {
  59484. front: {
  59485. height: math.unit(32, "meters"),
  59486. name: "Front",
  59487. image: {
  59488. source: "./media/characters/pierce/front.svg",
  59489. extra: 1695/1475,
  59490. bottom: 185/1880
  59491. }
  59492. },
  59493. side: {
  59494. height: math.unit(32, "meters"),
  59495. name: "Side",
  59496. image: {
  59497. source: "./media/characters/pierce/side.svg",
  59498. extra: 974/859,
  59499. bottom: 43/1017
  59500. }
  59501. },
  59502. frontWingless: {
  59503. height: math.unit(32, "meters"),
  59504. name: "Front (Wingless)",
  59505. image: {
  59506. source: "./media/characters/pierce/front-wingless.svg",
  59507. extra: 1695/1475,
  59508. bottom: 185/1880
  59509. }
  59510. },
  59511. sideWingless: {
  59512. height: math.unit(32, "meters"),
  59513. name: "Side (Wingless)",
  59514. image: {
  59515. source: "./media/characters/pierce/side-wingless.svg",
  59516. extra: 974/859,
  59517. bottom: 43/1017
  59518. }
  59519. },
  59520. maw: {
  59521. height: math.unit(19.3, "meters"),
  59522. name: "Maw",
  59523. image: {
  59524. source: "./media/characters/pierce/maw.svg"
  59525. }
  59526. },
  59527. },
  59528. [
  59529. {
  59530. name: "Small",
  59531. height: math.unit(8.5, "meters")
  59532. },
  59533. {
  59534. name: "Normal",
  59535. height: math.unit(32, "meters"),
  59536. default: true
  59537. },
  59538. ]
  59539. ))
  59540. characterMakers.push(() => makeCharacter(
  59541. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59542. {
  59543. front: {
  59544. height: math.unit(2.3, "meters"),
  59545. weight: math.unit(165, "kg"),
  59546. name: "Front",
  59547. image: {
  59548. source: "./media/characters/shira/front.svg",
  59549. extra: 924/919,
  59550. bottom: 17/941
  59551. },
  59552. form: "cobra",
  59553. default: true
  59554. },
  59555. back: {
  59556. height: math.unit(2.3, "meters"),
  59557. weight: math.unit(165, "kg"),
  59558. name: "Back",
  59559. image: {
  59560. source: "./media/characters/shira/back.svg",
  59561. extra: 928/922,
  59562. bottom: 18/946
  59563. },
  59564. form: "cobra"
  59565. },
  59566. frontLewd: {
  59567. height: math.unit(2.3, "meters"),
  59568. weight: math.unit(165, "kg"),
  59569. name: "Front (Lewd)",
  59570. image: {
  59571. source: "./media/characters/shira/front-lewd.svg",
  59572. extra: 924/919,
  59573. bottom: 17/941
  59574. },
  59575. form: "cobra"
  59576. },
  59577. backLewd: {
  59578. height: math.unit(2.3, "meters"),
  59579. weight: math.unit(165, "kg"),
  59580. name: "Back (Lewd)",
  59581. image: {
  59582. source: "./media/characters/shira/back-lewd.svg",
  59583. extra: 928/922,
  59584. bottom: 18/946
  59585. },
  59586. form: "cobra"
  59587. },
  59588. maw: {
  59589. height: math.unit(1.14, "feet"),
  59590. name: "Maw",
  59591. image: {
  59592. source: "./media/characters/shira/maw.svg"
  59593. },
  59594. form: "cobra"
  59595. },
  59596. magma_front: {
  59597. height: math.unit(2.3, "meters"),
  59598. weight: math.unit(165, "kg"),
  59599. name: "Front",
  59600. image: {
  59601. source: "./media/characters/shira/magma-front.svg",
  59602. extra: 1870/1693,
  59603. bottom: 24/1894
  59604. },
  59605. form: "magma",
  59606. },
  59607. magma_back: {
  59608. height: math.unit(2.3, "meters"),
  59609. weight: math.unit(165, "kg"),
  59610. name: "Back",
  59611. image: {
  59612. source: "./media/characters/shira/magma-back.svg",
  59613. extra: 1918/1756,
  59614. bottom: 46/1964
  59615. },
  59616. form: "magma",
  59617. },
  59618. },
  59619. [
  59620. {
  59621. name: "Incognito",
  59622. height: math.unit(2.3, "meters"),
  59623. allForms: true
  59624. },
  59625. {
  59626. name: "Home Size",
  59627. height: math.unit(150, "meters"),
  59628. default: true,
  59629. allForms: true
  59630. },
  59631. {
  59632. name: "Macro",
  59633. height: math.unit(2, "km"),
  59634. allForms: true
  59635. },
  59636. {
  59637. name: "Mega",
  59638. height: math.unit(30, "km"),
  59639. allForms: true
  59640. },
  59641. {
  59642. name: "Giga",
  59643. height: math.unit(450, "km"),
  59644. allForms: true
  59645. },
  59646. {
  59647. name: "Giga+",
  59648. height: math.unit(3000, "km"),
  59649. allForms: true
  59650. },
  59651. {
  59652. name: "Giga++",
  59653. height: math.unit(6000, "km"),
  59654. allForms: true
  59655. },
  59656. {
  59657. name: "Terra",
  59658. height: math.unit(80000, "km"),
  59659. allForms: true
  59660. },
  59661. {
  59662. name: "Terra+",
  59663. height: math.unit(350000, "km"),
  59664. allForms: true
  59665. },
  59666. {
  59667. name: "Solar",
  59668. height: math.unit(1e6, "km"),
  59669. allForms: true
  59670. },
  59671. ],
  59672. {
  59673. "cobra": {
  59674. name: "Cobra",
  59675. default: true
  59676. },
  59677. "magma": {
  59678. name: "Magma Dragon",
  59679. },
  59680. }
  59681. ))
  59682. characterMakers.push(() => makeCharacter(
  59683. { name: "Daxerios", species: ["wolf", "cerberus"], tags: ["anthro"] },
  59684. {
  59685. front: {
  59686. height: math.unit(2, "meters"),
  59687. weight: math.unit(160, "kg"),
  59688. name: "Front",
  59689. image: {
  59690. source: "./media/characters/daxerios/front.svg",
  59691. extra: 1334/1277,
  59692. bottom: 45/1379
  59693. }
  59694. },
  59695. frontLewd: {
  59696. height: math.unit(2, "meters"),
  59697. weight: math.unit(160, "kg"),
  59698. name: "Front (Lewd)",
  59699. image: {
  59700. source: "./media/characters/daxerios/front-lewd.svg",
  59701. extra: 1334/1277,
  59702. bottom: 45/1379
  59703. }
  59704. },
  59705. dick: {
  59706. height: math.unit(2.35, "feet"),
  59707. name: "Dick",
  59708. image: {
  59709. source: "./media/characters/daxerios/dick.svg"
  59710. }
  59711. },
  59712. },
  59713. [
  59714. {
  59715. name: "\"Small\"",
  59716. height: math.unit(5, "meters")
  59717. },
  59718. {
  59719. name: "Original Size",
  59720. height: math.unit(500, "meters"),
  59721. default: true
  59722. },
  59723. {
  59724. name: "Mega",
  59725. height: math.unit(2, "km")
  59726. },
  59727. {
  59728. name: "Mega+",
  59729. height: math.unit(35, "km")
  59730. },
  59731. {
  59732. name: "Giga",
  59733. height: math.unit(250, "km")
  59734. },
  59735. {
  59736. name: "Giga+",
  59737. height: math.unit(3000, "km")
  59738. },
  59739. {
  59740. name: "Terra",
  59741. height: math.unit(25000, "km")
  59742. },
  59743. {
  59744. name: "Terra+",
  59745. height: math.unit(300000, "km")
  59746. },
  59747. {
  59748. name: "Solar",
  59749. height: math.unit(1e6, "km")
  59750. },
  59751. ]
  59752. ))
  59753. characterMakers.push(() => makeCharacter(
  59754. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59755. {
  59756. front: {
  59757. height: math.unit(8 + 4/12, "feet"),
  59758. weight: math.unit(464, "lb"),
  59759. name: "Front",
  59760. image: {
  59761. source: "./media/characters/caveat/front.svg",
  59762. extra: 1861/1678,
  59763. bottom: 40/1901
  59764. }
  59765. },
  59766. },
  59767. [
  59768. {
  59769. name: "Normal",
  59770. height: math.unit(8 + 4/12, "feet"),
  59771. default: true
  59772. },
  59773. ]
  59774. ))
  59775. characterMakers.push(() => makeCharacter(
  59776. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59777. {
  59778. front: {
  59779. height: math.unit(12, "feet"),
  59780. weight: math.unit(1800, "lb"),
  59781. name: "Front",
  59782. image: {
  59783. source: "./media/characters/centbair/front.svg",
  59784. extra: 781/663,
  59785. bottom: 25/806
  59786. }
  59787. },
  59788. frontNsfw: {
  59789. height: math.unit(12, "feet"),
  59790. weight: math.unit(1800, "lb"),
  59791. name: "Front (NSFW)",
  59792. image: {
  59793. source: "./media/characters/centbair/front-nsfw.svg",
  59794. extra: 781/663,
  59795. bottom: 25/806
  59796. }
  59797. },
  59798. back: {
  59799. height: math.unit(12, "feet"),
  59800. weight: math.unit(1800, "lb"),
  59801. name: "Back",
  59802. image: {
  59803. source: "./media/characters/centbair/back.svg",
  59804. extra: 808/761,
  59805. bottom: 19/827
  59806. }
  59807. },
  59808. dick: {
  59809. height: math.unit(6.5, "feet"),
  59810. name: "Dick",
  59811. image: {
  59812. source: "./media/characters/centbair/dick.svg"
  59813. }
  59814. },
  59815. slit: {
  59816. height: math.unit(3.25, "feet"),
  59817. name: "Slit",
  59818. image: {
  59819. source: "./media/characters/centbair/slit.svg"
  59820. }
  59821. },
  59822. },
  59823. [
  59824. {
  59825. name: "Normal",
  59826. height: math.unit(12, "feet"),
  59827. default: true
  59828. },
  59829. ]
  59830. ))
  59831. characterMakers.push(() => makeCharacter(
  59832. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59833. {
  59834. front: {
  59835. height: math.unit(5 + 7/12, "feet"),
  59836. name: "Front",
  59837. image: {
  59838. source: "./media/characters/andy/front.svg",
  59839. extra: 634/588,
  59840. bottom: 36/670
  59841. },
  59842. extraAttributes: {
  59843. "pawLength": {
  59844. name: "Paw Length",
  59845. power: 1,
  59846. type: "length",
  59847. base: math.unit(1, "feet")
  59848. },
  59849. }
  59850. },
  59851. side: {
  59852. height: math.unit(5 + 7/12, "feet"),
  59853. name: "Side",
  59854. image: {
  59855. source: "./media/characters/andy/side.svg",
  59856. extra: 641/596,
  59857. bottom: 34/675
  59858. },
  59859. extraAttributes: {
  59860. "pawLength": {
  59861. name: "Paw Length",
  59862. power: 1,
  59863. type: "length",
  59864. base: math.unit(1, "feet")
  59865. },
  59866. }
  59867. },
  59868. back: {
  59869. height: math.unit(5 + 7/12, "feet"),
  59870. name: "Back",
  59871. image: {
  59872. source: "./media/characters/andy/back.svg",
  59873. extra: 618/583,
  59874. bottom: 39/657
  59875. },
  59876. extraAttributes: {
  59877. "pawLength": {
  59878. name: "Paw Length",
  59879. power: 1,
  59880. type: "length",
  59881. base: math.unit(1, "feet")
  59882. },
  59883. }
  59884. },
  59885. paw: {
  59886. height: math.unit(1.13, "feet"),
  59887. name: "Paw",
  59888. image: {
  59889. source: "./media/characters/andy/paw.svg"
  59890. }
  59891. },
  59892. },
  59893. [
  59894. {
  59895. name: "Micro",
  59896. height: math.unit(4, "inches")
  59897. },
  59898. {
  59899. name: "Normal",
  59900. height: math.unit(5 + 7/12, "feet"),
  59901. default: true
  59902. },
  59903. {
  59904. name: "Macro",
  59905. height: math.unit(390.42, "feet")
  59906. },
  59907. ]
  59908. ))
  59909. characterMakers.push(() => makeCharacter(
  59910. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59911. {
  59912. front: {
  59913. height: math.unit(7, "feet"),
  59914. weight: math.unit(250, "lb"),
  59915. name: "Front",
  59916. image: {
  59917. source: "./media/characters/vix-titan/front.svg",
  59918. extra: 460/428,
  59919. bottom: 15/475
  59920. },
  59921. extraAttributes: {
  59922. "pawWidth": {
  59923. name: "Paw Width",
  59924. power: 1,
  59925. type: "length",
  59926. base: math.unit(0.75, "feet")
  59927. },
  59928. }
  59929. },
  59930. },
  59931. [
  59932. {
  59933. name: "Normal",
  59934. height: math.unit(7, "feet"),
  59935. default: true
  59936. },
  59937. {
  59938. name: "Giant",
  59939. height: math.unit(1500, "feet")
  59940. },
  59941. {
  59942. name: "Mega",
  59943. height: math.unit(10, "miles")
  59944. },
  59945. {
  59946. name: "Giga",
  59947. height: math.unit(150, "miles")
  59948. },
  59949. {
  59950. name: "Tera",
  59951. height: math.unit(144000, "miles")
  59952. },
  59953. ]
  59954. ))
  59955. characterMakers.push(() => makeCharacter(
  59956. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  59957. {
  59958. front: {
  59959. height: math.unit(6 + 2/12, "feet"),
  59960. name: "Front",
  59961. image: {
  59962. source: "./media/characters/reiku/front.svg",
  59963. extra: 1910/1757,
  59964. bottom: 103/2013
  59965. },
  59966. extraAttributes: {
  59967. "thighThickness": {
  59968. name: "Thigh Thickness",
  59969. power: 1,
  59970. type: "length",
  59971. base: math.unit(1.12, "feet")
  59972. },
  59973. "assThickness": {
  59974. name: "Ass Thickness",
  59975. power: 1,
  59976. type: "length",
  59977. base: math.unit(1.12*2, "feet")
  59978. },
  59979. }
  59980. },
  59981. side: {
  59982. height: math.unit(6 + 2/12, "feet"),
  59983. name: "Side",
  59984. image: {
  59985. source: "./media/characters/reiku/side.svg",
  59986. extra: 1846/1748,
  59987. bottom: 99/1945
  59988. },
  59989. extraAttributes: {
  59990. "thighThickness": {
  59991. name: "Thigh Thickness",
  59992. power: 1,
  59993. type: "length",
  59994. base: math.unit(1.12, "feet")
  59995. },
  59996. "assThickness": {
  59997. name: "Ass Thickness",
  59998. power: 1,
  59999. type: "length",
  60000. base: math.unit(1.12*2, "feet")
  60001. },
  60002. }
  60003. },
  60004. back: {
  60005. height: math.unit(6 + 2/12, "feet"),
  60006. name: "Back",
  60007. image: {
  60008. source: "./media/characters/reiku/back.svg",
  60009. extra: 1941/1786,
  60010. bottom: 34/1975
  60011. },
  60012. extraAttributes: {
  60013. "thighThickness": {
  60014. name: "Thigh Thickness",
  60015. power: 1,
  60016. type: "length",
  60017. base: math.unit(1.12, "feet")
  60018. },
  60019. "assThickness": {
  60020. name: "Ass Thickness",
  60021. power: 1,
  60022. type: "length",
  60023. base: math.unit(1.12*2, "feet")
  60024. },
  60025. }
  60026. },
  60027. head: {
  60028. height: math.unit(1.8, "feet"),
  60029. name: "Head",
  60030. image: {
  60031. source: "./media/characters/reiku/head.svg"
  60032. }
  60033. },
  60034. tailTop: {
  60035. height: math.unit(8.4, "feet"),
  60036. name: "Tail (Top)",
  60037. image: {
  60038. source: "./media/characters/reiku/tail-top.svg"
  60039. }
  60040. },
  60041. tailBottom: {
  60042. height: math.unit(8.4, "feet"),
  60043. name: "Tail (Bottom)",
  60044. image: {
  60045. source: "./media/characters/reiku/tail-bottom.svg"
  60046. }
  60047. },
  60048. foot: {
  60049. height: math.unit(2.6, "feet"),
  60050. name: "Foot",
  60051. image: {
  60052. source: "./media/characters/reiku/foot.svg"
  60053. }
  60054. },
  60055. footCurled: {
  60056. height: math.unit(2.3, "feet"),
  60057. name: "Foot (Curled)",
  60058. image: {
  60059. source: "./media/characters/reiku/foot-curled.svg"
  60060. }
  60061. },
  60062. footSide: {
  60063. height: math.unit(1.26, "feet"),
  60064. name: "Foot (Side)",
  60065. image: {
  60066. source: "./media/characters/reiku/foot-side.svg"
  60067. }
  60068. },
  60069. },
  60070. [
  60071. {
  60072. name: "Normal",
  60073. height: math.unit(6 + 2/12, "feet"),
  60074. default: true
  60075. },
  60076. ]
  60077. ))
  60078. characterMakers.push(() => makeCharacter(
  60079. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60080. {
  60081. front: {
  60082. height: math.unit(7, "feet"),
  60083. weight: math.unit(500, "kg"),
  60084. name: "Front",
  60085. image: {
  60086. source: "./media/characters/cialda/front.svg",
  60087. extra: 912/745,
  60088. bottom: 55/967
  60089. }
  60090. },
  60091. },
  60092. [
  60093. {
  60094. name: "Normal",
  60095. height: math.unit(7, "feet"),
  60096. default: true
  60097. },
  60098. ]
  60099. ))
  60100. characterMakers.push(() => makeCharacter(
  60101. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60102. {
  60103. side: {
  60104. height: math.unit(6, "feet"),
  60105. weight: math.unit(600, "lb"),
  60106. preyCapacity: math.unit(25, "liters"),
  60107. name: "Side",
  60108. image: {
  60109. source: "./media/characters/darkkin/side.svg",
  60110. extra: 1597/1447,
  60111. bottom: 101/1698
  60112. }
  60113. },
  60114. },
  60115. [
  60116. {
  60117. name: "Canon Height",
  60118. height: math.unit(568, "feet"),
  60119. default: true
  60120. },
  60121. ]
  60122. ))
  60123. characterMakers.push(() => makeCharacter(
  60124. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60125. {
  60126. front: {
  60127. height: math.unit(6, "feet"),
  60128. weight: math.unit(1500, "lb"),
  60129. preyCapacity: math.unit(3, "people"),
  60130. name: "Front",
  60131. image: {
  60132. source: "./media/characters/livnia/front.svg",
  60133. extra: 934/932,
  60134. bottom: 83/1017
  60135. }
  60136. },
  60137. back: {
  60138. height: math.unit(6, "feet"),
  60139. weight: math.unit(1500, "lb"),
  60140. preyCapacity: math.unit(3, "people"),
  60141. name: "Back",
  60142. image: {
  60143. source: "./media/characters/livnia/back.svg",
  60144. extra: 916/915,
  60145. bottom: 58/974
  60146. }
  60147. },
  60148. head: {
  60149. height: math.unit(1.53, "feet"),
  60150. name: "Head",
  60151. image: {
  60152. source: "./media/characters/livnia/head.svg"
  60153. }
  60154. },
  60155. maw: {
  60156. height: math.unit(0.78, "feet"),
  60157. name: "Maw",
  60158. image: {
  60159. source: "./media/characters/livnia/maw.svg"
  60160. }
  60161. },
  60162. genitals: {
  60163. height: math.unit(0.35, "feet"),
  60164. name: "Genitals",
  60165. image: {
  60166. source: "./media/characters/livnia/genitals.svg"
  60167. }
  60168. },
  60169. },
  60170. [
  60171. {
  60172. name: "Normal",
  60173. height: math.unit(1000, "feet"),
  60174. default: true
  60175. },
  60176. ]
  60177. ))
  60178. characterMakers.push(() => makeCharacter(
  60179. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60180. {
  60181. front: {
  60182. height: math.unit(4, "feet"),
  60183. weight: math.unit(73, "lb"),
  60184. name: "Front",
  60185. image: {
  60186. source: "./media/characters/hayaku/front.svg",
  60187. extra: 1011/888,
  60188. bottom: 33/1044
  60189. }
  60190. },
  60191. back: {
  60192. height: math.unit(4, "feet"),
  60193. weight: math.unit(73, "lb"),
  60194. name: "Back",
  60195. image: {
  60196. source: "./media/characters/hayaku/back.svg",
  60197. extra: 1040/930,
  60198. bottom: 20/1060
  60199. }
  60200. },
  60201. },
  60202. [
  60203. {
  60204. name: "Normal",
  60205. height: math.unit(4, "feet"),
  60206. default: true
  60207. },
  60208. ]
  60209. ))
  60210. characterMakers.push(() => makeCharacter(
  60211. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60212. {
  60213. front: {
  60214. height: math.unit(6 + 7/12, "feet"),
  60215. weight: math.unit(300, "lb"),
  60216. name: "Front",
  60217. image: {
  60218. source: "./media/characters/athena-bryzant/front.svg",
  60219. extra: 870/835,
  60220. bottom: 33/903
  60221. }
  60222. },
  60223. back: {
  60224. height: math.unit(6 + 7/12, "feet"),
  60225. weight: math.unit(300, "lb"),
  60226. name: "Back",
  60227. image: {
  60228. source: "./media/characters/athena-bryzant/back.svg",
  60229. extra: 858/823,
  60230. bottom: 30/888
  60231. }
  60232. },
  60233. head: {
  60234. height: math.unit(2.38, "feet"),
  60235. name: "Head",
  60236. image: {
  60237. source: "./media/characters/athena-bryzant/head.svg"
  60238. }
  60239. },
  60240. wings: {
  60241. height: math.unit(2.85, "feet"),
  60242. name: "Wings",
  60243. image: {
  60244. source: "./media/characters/athena-bryzant/wings.svg"
  60245. }
  60246. },
  60247. },
  60248. [
  60249. {
  60250. name: "Normal",
  60251. height: math.unit(6 + 7/12, "feet"),
  60252. default: true
  60253. },
  60254. {
  60255. name: "Big",
  60256. height: math.unit(8, "feet")
  60257. },
  60258. {
  60259. name: "Very Big",
  60260. height: math.unit(11, "feet")
  60261. },
  60262. ]
  60263. ))
  60264. characterMakers.push(() => makeCharacter(
  60265. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60266. {
  60267. side: {
  60268. height: math.unit(3, "meters"),
  60269. weight: math.unit(7500, "kg"),
  60270. preyCapacity: math.unit(1e12, "people"),
  60271. name: "Side",
  60272. image: {
  60273. source: "./media/characters/zel-kesh/side.svg",
  60274. extra: 910/407,
  60275. bottom: 147/1057
  60276. }
  60277. },
  60278. },
  60279. [
  60280. {
  60281. name: "Normal",
  60282. height: math.unit(3, "meters"),
  60283. default: true
  60284. },
  60285. ]
  60286. ))
  60287. characterMakers.push(() => makeCharacter(
  60288. { name: "Kane (Fox)", species: ["fox"], tags: ["anthro"] },
  60289. {
  60290. front: {
  60291. height: math.unit(2, "meters"),
  60292. weight: math.unit(95, "kg"),
  60293. name: "Front",
  60294. image: {
  60295. source: "./media/characters/kane-fox/front.svg",
  60296. extra: 945/888,
  60297. bottom: 27/972
  60298. }
  60299. },
  60300. back: {
  60301. height: math.unit(2, "meters"),
  60302. weight: math.unit(95, "kg"),
  60303. name: "Back",
  60304. image: {
  60305. source: "./media/characters/kane-fox/back.svg",
  60306. extra: 959/914,
  60307. bottom: 15/974
  60308. }
  60309. },
  60310. frontLewd: {
  60311. height: math.unit(2, "meters"),
  60312. weight: math.unit(95, "kg"),
  60313. name: "Front (Lewd)",
  60314. image: {
  60315. source: "./media/characters/kane-fox/front-lewd.svg",
  60316. extra: 945/888,
  60317. bottom: 27/972
  60318. }
  60319. },
  60320. },
  60321. [
  60322. {
  60323. name: "Home Size",
  60324. height: math.unit(2, "meters"),
  60325. default: true
  60326. },
  60327. {
  60328. name: "Macro",
  60329. height: math.unit(200, "meters")
  60330. },
  60331. {
  60332. name: "Small Mega",
  60333. height: math.unit(3, "km")
  60334. },
  60335. {
  60336. name: "Mega",
  60337. height: math.unit(50, "km")
  60338. },
  60339. {
  60340. name: "Giga",
  60341. height: math.unit(200, "km")
  60342. },
  60343. {
  60344. name: "Giga+",
  60345. height: math.unit(2500, "km")
  60346. },
  60347. {
  60348. name: "Terra",
  60349. height: math.unit(70000, "km")
  60350. },
  60351. {
  60352. name: "Terra+",
  60353. height: math.unit(150000, "km")
  60354. },
  60355. {
  60356. name: "Terra++",
  60357. height: math.unit(400000, "km")
  60358. },
  60359. ]
  60360. ))
  60361. characterMakers.push(() => makeCharacter(
  60362. { name: "Ayranus", species: ["otter", "lion", "bat"], tags: ["anthro"] },
  60363. {
  60364. otter_front: {
  60365. height: math.unit(1.8, "meters"),
  60366. weight: math.unit(90, "kg"),
  60367. name: "Front",
  60368. image: {
  60369. source: "./media/characters/ayranus/otter-front.svg",
  60370. extra: 468/452,
  60371. bottom: 43/511
  60372. },
  60373. form: "otter",
  60374. },
  60375. otter_frontLewd: {
  60376. height: math.unit(1.8, "meters"),
  60377. weight: math.unit(90, "kg"),
  60378. name: "Front (Lewd)",
  60379. image: {
  60380. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60381. extra: 468/452,
  60382. bottom: 43/511
  60383. },
  60384. form: "otter",
  60385. },
  60386. lionbat_front: {
  60387. height: math.unit(1.8, "meters"),
  60388. weight: math.unit(90, "kg"),
  60389. name: "Front (Lewd)",
  60390. image: {
  60391. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60392. extra: 797/740,
  60393. bottom: 78/875
  60394. },
  60395. form: "lionbat",
  60396. },
  60397. paw: {
  60398. height: math.unit(1.5, "feet"),
  60399. name: "Paw",
  60400. image: {
  60401. source: "./media/characters/ayranus/paw.svg"
  60402. },
  60403. },
  60404. },
  60405. [
  60406. {
  60407. name: "Incognito",
  60408. height: math.unit(1.8, "meters"),
  60409. allForms: true
  60410. },
  60411. {
  60412. name: "Macro",
  60413. height: math.unit(60, "meters"),
  60414. allForms: true
  60415. },
  60416. {
  60417. name: "Macro+",
  60418. height: math.unit(200, "meters"),
  60419. allForms: true
  60420. },
  60421. {
  60422. name: "Mega",
  60423. height: math.unit(35, "km"),
  60424. allForms: true
  60425. },
  60426. {
  60427. name: "Giga",
  60428. height: math.unit(220, "km"),
  60429. allForms: true
  60430. },
  60431. {
  60432. name: "Giga+",
  60433. height: math.unit(1500, "km"),
  60434. allForms: true
  60435. },
  60436. {
  60437. name: "Terra",
  60438. height: math.unit(13000, "km"),
  60439. allForms: true
  60440. },
  60441. {
  60442. name: "Terra+",
  60443. height: math.unit(500000, "km"),
  60444. allForms: true
  60445. },
  60446. {
  60447. name: "Galactic",
  60448. height: math.unit(486080, "parsecs"),
  60449. default: true,
  60450. allForms: true
  60451. },
  60452. ],
  60453. {
  60454. "otter": {
  60455. name: "Otter",
  60456. default: true
  60457. },
  60458. "lionbat": {
  60459. name: "Lionbat",
  60460. },
  60461. }
  60462. ))
  60463. //characters
  60464. function makeCharacters() {
  60465. const results = [];
  60466. characterMakers.forEach(character => {
  60467. results.push(character());
  60468. });
  60469. return results;
  60470. }