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

61350 строки
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. }
  2254. //species
  2255. function getSpeciesInfo(speciesList) {
  2256. let result = new Set();
  2257. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2258. result.add(entry)
  2259. });
  2260. return Array.from(result);
  2261. };
  2262. function getSpeciesInfoHelper(species) {
  2263. if (!speciesData[species]) {
  2264. console.warn(species + " doesn't exist");
  2265. return [];
  2266. }
  2267. if (speciesData[species].parents) {
  2268. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2269. } else {
  2270. return [species];
  2271. }
  2272. }
  2273. characterMakers.push(() => makeCharacter(
  2274. {
  2275. name: "Fen",
  2276. species: ["crux"],
  2277. description: {
  2278. title: "Bio",
  2279. text: "Very furry. Sheds on everything."
  2280. },
  2281. tags: [
  2282. "anthro",
  2283. "goo"
  2284. ]
  2285. },
  2286. {
  2287. front: {
  2288. height: math.unit(12, "feet"),
  2289. weight: math.unit(2400, "lb"),
  2290. preyCapacity: math.unit(1, "people"),
  2291. name: "Front",
  2292. image: {
  2293. source: "./media/characters/fen/front.svg",
  2294. extra: 1804/1562,
  2295. bottom: 205/2009
  2296. },
  2297. extraAttributes: {
  2298. pawSize: {
  2299. name: "Paw Size",
  2300. power: 2,
  2301. type: "area",
  2302. base: math.unit(0.35, "m^2")
  2303. }
  2304. }
  2305. },
  2306. diving: {
  2307. height: math.unit(4.9, "meters"),
  2308. weight: math.unit(2400, "lb"),
  2309. name: "Diving",
  2310. image: {
  2311. source: "./media/characters/fen/diving.svg"
  2312. }
  2313. },
  2314. sleeby: {
  2315. height: math.unit(3.45, "meters"),
  2316. weight: math.unit(2400, "lb"),
  2317. name: "Sleeby",
  2318. image: {
  2319. source: "./media/characters/fen/sleeby.svg"
  2320. }
  2321. },
  2322. goo: {
  2323. height: math.unit(12, "feet"),
  2324. weight: math.unit(3600, "lb"),
  2325. volume: math.unit(1000, "liters"),
  2326. preyCapacity: math.unit(6, "people"),
  2327. name: "Goo",
  2328. image: {
  2329. source: "./media/characters/fen/goo.svg",
  2330. extra: 1307/1071,
  2331. bottom: 134/1441
  2332. }
  2333. },
  2334. horror: {
  2335. height: math.unit(13.6, "feet"),
  2336. weight: math.unit(2400, "lb"),
  2337. preyCapacity: math.unit(1, "people"),
  2338. name: "Horror",
  2339. image: {
  2340. source: "./media/characters/fen/horror.svg",
  2341. extra: 893/797,
  2342. bottom: 0/893
  2343. }
  2344. },
  2345. gooNsfw: {
  2346. height: math.unit(12, "feet"),
  2347. weight: math.unit(3750, "lb"),
  2348. volume: math.unit(1000, "liters"),
  2349. preyCapacity: math.unit(6, "people"),
  2350. name: "Goo (NSFW)",
  2351. image: {
  2352. source: "./media/characters/fen/goo-nsfw.svg",
  2353. extra: 1875/1734,
  2354. bottom: 122/1997
  2355. }
  2356. },
  2357. maw: {
  2358. height: math.unit(5.03, "feet"),
  2359. name: "Maw",
  2360. image: {
  2361. source: "./media/characters/fen/maw.svg"
  2362. }
  2363. },
  2364. gooCeiling: {
  2365. height: math.unit(6.6, "feet"),
  2366. weight: math.unit(3000, "lb"),
  2367. volume: math.unit(1000, "liters"),
  2368. preyCapacity: math.unit(6, "people"),
  2369. name: "Maw (Goo)",
  2370. image: {
  2371. source: "./media/characters/fen/goo-maw.svg"
  2372. }
  2373. },
  2374. paw: {
  2375. height: math.unit(3.77, "feet"),
  2376. name: "Paw",
  2377. image: {
  2378. source: "./media/characters/fen/paw.svg"
  2379. },
  2380. extraAttributes: {
  2381. "toeSize": {
  2382. name: "Toe Size",
  2383. power: 2,
  2384. type: "area",
  2385. base: math.unit(0.02875, "m^2")
  2386. },
  2387. "pawSize": {
  2388. name: "Paw Size",
  2389. power: 2,
  2390. type: "area",
  2391. base: math.unit(0.378, "m^2")
  2392. },
  2393. }
  2394. },
  2395. tail: {
  2396. height: math.unit(12.1, "feet"),
  2397. name: "Tail",
  2398. image: {
  2399. source: "./media/characters/fen/tail.svg"
  2400. }
  2401. },
  2402. tailFull: {
  2403. height: math.unit(12.1, "feet"),
  2404. name: "Full Tail",
  2405. image: {
  2406. source: "./media/characters/fen/tail-full.svg"
  2407. }
  2408. },
  2409. back: {
  2410. height: math.unit(12, "feet"),
  2411. weight: math.unit(2400, "lb"),
  2412. name: "Back",
  2413. image: {
  2414. source: "./media/characters/fen/back.svg",
  2415. },
  2416. info: {
  2417. description: {
  2418. mode: "append",
  2419. text: "\n\nHe is not currently looking at you."
  2420. }
  2421. }
  2422. },
  2423. full: {
  2424. height: math.unit(1.85, "meter"),
  2425. weight: math.unit(3200, "lb"),
  2426. name: "Full",
  2427. image: {
  2428. source: "./media/characters/fen/full.svg",
  2429. extra: 1133/859,
  2430. bottom: 145/1278
  2431. },
  2432. info: {
  2433. description: {
  2434. mode: "append",
  2435. text: "\n\nMunch."
  2436. }
  2437. }
  2438. },
  2439. gooLounging: {
  2440. height: math.unit(4.53, "feet"),
  2441. weight: math.unit(3000, "lb"),
  2442. preyCapacity: math.unit(6, "people"),
  2443. name: "Goo (Lounging)",
  2444. image: {
  2445. source: "./media/characters/fen/goo-lounging.svg",
  2446. bottom: 116 / 613
  2447. }
  2448. },
  2449. lounging: {
  2450. height: math.unit(10.52, "feet"),
  2451. weight: math.unit(2400, "lb"),
  2452. name: "Lounging",
  2453. image: {
  2454. source: "./media/characters/fen/lounging.svg"
  2455. }
  2456. },
  2457. },
  2458. [
  2459. {
  2460. name: "Small",
  2461. height: math.unit(2.2428, "meter")
  2462. },
  2463. {
  2464. name: "Normal",
  2465. height: math.unit(12, "feet"),
  2466. default: true,
  2467. },
  2468. {
  2469. name: "Big",
  2470. height: math.unit(20, "feet")
  2471. },
  2472. {
  2473. name: "Minimacro",
  2474. height: math.unit(40, "feet"),
  2475. info: {
  2476. description: {
  2477. mode: "append",
  2478. text: "\n\nTOO DAMN BIG"
  2479. }
  2480. }
  2481. },
  2482. {
  2483. name: "Macro",
  2484. height: math.unit(100, "feet"),
  2485. info: {
  2486. description: {
  2487. mode: "append",
  2488. text: "\n\nTOO DAMN BIG"
  2489. }
  2490. }
  2491. },
  2492. {
  2493. name: "Megamacro",
  2494. height: math.unit(2, "miles")
  2495. },
  2496. {
  2497. name: "Gigamacro",
  2498. height: math.unit(10, "earths")
  2499. },
  2500. ]
  2501. ))
  2502. characterMakers.push(() => makeCharacter(
  2503. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2504. {
  2505. front: {
  2506. height: math.unit(183, "cm"),
  2507. weight: math.unit(80, "kg"),
  2508. name: "Front",
  2509. image: {
  2510. source: "./media/characters/sofia-fluttertail/front.svg",
  2511. bottom: 0.01,
  2512. extra: 2154 / 2081
  2513. }
  2514. },
  2515. frontAlt: {
  2516. height: math.unit(183, "cm"),
  2517. weight: math.unit(80, "kg"),
  2518. name: "Front (alt)",
  2519. image: {
  2520. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2521. }
  2522. },
  2523. back: {
  2524. height: math.unit(183, "cm"),
  2525. weight: math.unit(80, "kg"),
  2526. name: "Back",
  2527. image: {
  2528. source: "./media/characters/sofia-fluttertail/back.svg"
  2529. }
  2530. },
  2531. kneeling: {
  2532. height: math.unit(125, "cm"),
  2533. weight: math.unit(80, "kg"),
  2534. name: "Kneeling",
  2535. image: {
  2536. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2537. extra: 1033 / 977,
  2538. bottom: 23.7 / 1057
  2539. }
  2540. },
  2541. maw: {
  2542. height: math.unit(183 / 5, "cm"),
  2543. name: "Maw",
  2544. image: {
  2545. source: "./media/characters/sofia-fluttertail/maw.svg"
  2546. }
  2547. },
  2548. mawcloseup: {
  2549. height: math.unit(183 / 5 * 0.41, "cm"),
  2550. name: "Maw (Closeup)",
  2551. image: {
  2552. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2553. }
  2554. },
  2555. paws: {
  2556. height: math.unit(1.17, "feet"),
  2557. name: "Paws",
  2558. image: {
  2559. source: "./media/characters/sofia-fluttertail/paws.svg",
  2560. extra: 851 / 851,
  2561. bottom: 17 / 868
  2562. }
  2563. },
  2564. },
  2565. [
  2566. {
  2567. name: "Normal",
  2568. height: math.unit(1.83, "meter")
  2569. },
  2570. {
  2571. name: "Size Thief",
  2572. height: math.unit(18, "feet")
  2573. },
  2574. {
  2575. name: "50 Foot Collie",
  2576. height: math.unit(50, "feet")
  2577. },
  2578. {
  2579. name: "Macro",
  2580. height: math.unit(96, "feet"),
  2581. default: true
  2582. },
  2583. {
  2584. name: "Megamerger",
  2585. height: math.unit(650, "feet")
  2586. },
  2587. ]
  2588. ))
  2589. characterMakers.push(() => makeCharacter(
  2590. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2591. {
  2592. front: {
  2593. height: math.unit(7, "feet"),
  2594. weight: math.unit(100, "kg"),
  2595. name: "Front",
  2596. image: {
  2597. source: "./media/characters/march/front.svg",
  2598. extra: 1992/1851,
  2599. bottom: 39/2031
  2600. }
  2601. },
  2602. foot: {
  2603. height: math.unit(0.9, "feet"),
  2604. name: "Foot",
  2605. image: {
  2606. source: "./media/characters/march/foot.svg"
  2607. }
  2608. },
  2609. },
  2610. [
  2611. {
  2612. name: "Normal",
  2613. height: math.unit(7.9, "feet")
  2614. },
  2615. {
  2616. name: "Macro",
  2617. height: math.unit(220, "meters")
  2618. },
  2619. {
  2620. name: "Megamacro",
  2621. height: math.unit(2.98, "km"),
  2622. default: true
  2623. },
  2624. {
  2625. name: "Gigamacro",
  2626. height: math.unit(15963, "km")
  2627. },
  2628. {
  2629. name: "Teramacro",
  2630. height: math.unit(2980000000, "km")
  2631. },
  2632. {
  2633. name: "Examacro",
  2634. height: math.unit(250, "parsecs")
  2635. },
  2636. ]
  2637. ))
  2638. characterMakers.push(() => makeCharacter(
  2639. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2640. {
  2641. front: {
  2642. height: math.unit(6, "feet"),
  2643. weight: math.unit(60, "kg"),
  2644. name: "Front",
  2645. image: {
  2646. source: "./media/characters/noir/front.svg",
  2647. extra: 1,
  2648. bottom: 0.032
  2649. }
  2650. },
  2651. },
  2652. [
  2653. {
  2654. name: "Normal",
  2655. height: math.unit(6.6, "feet")
  2656. },
  2657. {
  2658. name: "Macro",
  2659. height: math.unit(500, "feet")
  2660. },
  2661. {
  2662. name: "Megamacro",
  2663. height: math.unit(2.5, "km"),
  2664. default: true
  2665. },
  2666. {
  2667. name: "Gigamacro",
  2668. height: math.unit(22500, "km")
  2669. },
  2670. {
  2671. name: "Teramacro",
  2672. height: math.unit(2500000000, "km")
  2673. },
  2674. {
  2675. name: "Examacro",
  2676. height: math.unit(200, "parsecs")
  2677. },
  2678. ]
  2679. ))
  2680. characterMakers.push(() => makeCharacter(
  2681. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2682. {
  2683. front: {
  2684. height: math.unit(7, "feet"),
  2685. weight: math.unit(100, "kg"),
  2686. name: "Front",
  2687. image: {
  2688. source: "./media/characters/okuri/front.svg",
  2689. extra: 739/665,
  2690. bottom: 39/778
  2691. }
  2692. },
  2693. back: {
  2694. height: math.unit(7, "feet"),
  2695. weight: math.unit(100, "kg"),
  2696. name: "Back",
  2697. image: {
  2698. source: "./media/characters/okuri/back.svg",
  2699. extra: 734/653,
  2700. bottom: 13/747
  2701. }
  2702. },
  2703. sitting: {
  2704. height: math.unit(2.95, "feet"),
  2705. weight: math.unit(100, "kg"),
  2706. name: "Sitting",
  2707. image: {
  2708. source: "./media/characters/okuri/sitting.svg",
  2709. extra: 370/318,
  2710. bottom: 99/469
  2711. }
  2712. },
  2713. },
  2714. [
  2715. {
  2716. name: "Smallest",
  2717. height: math.unit(5 + 2/12, "feet")
  2718. },
  2719. {
  2720. name: "Smaller",
  2721. height: math.unit(300, "feet")
  2722. },
  2723. {
  2724. name: "Small",
  2725. height: math.unit(1000, "feet")
  2726. },
  2727. {
  2728. name: "Macro",
  2729. height: math.unit(1, "mile")
  2730. },
  2731. {
  2732. name: "Mega Macro (Small)",
  2733. height: math.unit(20, "km")
  2734. },
  2735. {
  2736. name: "Mega Macro (Large)",
  2737. height: math.unit(600, "km")
  2738. },
  2739. {
  2740. name: "Giga Macro",
  2741. height: math.unit(10000, "km")
  2742. },
  2743. {
  2744. name: "Normal",
  2745. height: math.unit(577560, "km"),
  2746. default: true
  2747. },
  2748. {
  2749. name: "Large",
  2750. height: math.unit(4, "galaxies")
  2751. },
  2752. {
  2753. name: "Largest",
  2754. height: math.unit(15, "multiverses")
  2755. },
  2756. ]
  2757. ))
  2758. characterMakers.push(() => makeCharacter(
  2759. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2760. {
  2761. front: {
  2762. height: math.unit(7, "feet"),
  2763. weight: math.unit(100, "kg"),
  2764. name: "Front",
  2765. image: {
  2766. source: "./media/characters/manny/front.svg",
  2767. extra: 1,
  2768. bottom: 0.06
  2769. }
  2770. },
  2771. back: {
  2772. height: math.unit(7, "feet"),
  2773. weight: math.unit(100, "kg"),
  2774. name: "Back",
  2775. image: {
  2776. source: "./media/characters/manny/back.svg",
  2777. extra: 1,
  2778. bottom: 0.014
  2779. }
  2780. },
  2781. },
  2782. [
  2783. {
  2784. name: "Normal",
  2785. height: math.unit(7, "feet"),
  2786. },
  2787. {
  2788. name: "Macro",
  2789. height: math.unit(78, "feet"),
  2790. default: true
  2791. },
  2792. {
  2793. name: "Macro+",
  2794. height: math.unit(300, "meters")
  2795. },
  2796. {
  2797. name: "Macro++",
  2798. height: math.unit(2400, "meters")
  2799. },
  2800. {
  2801. name: "Megamacro",
  2802. height: math.unit(5167, "meters")
  2803. },
  2804. {
  2805. name: "Gigamacro",
  2806. height: math.unit(41769, "miles")
  2807. },
  2808. ]
  2809. ))
  2810. characterMakers.push(() => makeCharacter(
  2811. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2812. {
  2813. front: {
  2814. height: math.unit(7, "feet"),
  2815. weight: math.unit(100, "kg"),
  2816. name: "Front",
  2817. image: {
  2818. source: "./media/characters/adake/front-1.svg"
  2819. }
  2820. },
  2821. frontAlt: {
  2822. height: math.unit(7, "feet"),
  2823. weight: math.unit(100, "kg"),
  2824. name: "Front (Alt)",
  2825. image: {
  2826. source: "./media/characters/adake/front-2.svg",
  2827. extra: 1,
  2828. bottom: 0.01
  2829. }
  2830. },
  2831. back: {
  2832. height: math.unit(7, "feet"),
  2833. weight: math.unit(100, "kg"),
  2834. name: "Back",
  2835. image: {
  2836. source: "./media/characters/adake/back.svg",
  2837. }
  2838. },
  2839. kneel: {
  2840. height: math.unit(5.385, "feet"),
  2841. weight: math.unit(100, "kg"),
  2842. name: "Kneeling",
  2843. image: {
  2844. source: "./media/characters/adake/kneel.svg",
  2845. bottom: 0.052
  2846. }
  2847. },
  2848. },
  2849. [
  2850. {
  2851. name: "Normal",
  2852. height: math.unit(7, "feet"),
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(78, "feet"),
  2857. default: true
  2858. },
  2859. {
  2860. name: "Macro+",
  2861. height: math.unit(300, "meters")
  2862. },
  2863. {
  2864. name: "Macro++",
  2865. height: math.unit(2400, "meters")
  2866. },
  2867. {
  2868. name: "Megamacro",
  2869. height: math.unit(5167, "meters")
  2870. },
  2871. {
  2872. name: "Gigamacro",
  2873. height: math.unit(41769, "miles")
  2874. },
  2875. ]
  2876. ))
  2877. characterMakers.push(() => makeCharacter(
  2878. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2879. {
  2880. front: {
  2881. height: math.unit(1.65, "meters"),
  2882. weight: math.unit(50, "kg"),
  2883. name: "Front",
  2884. image: {
  2885. source: "./media/characters/elijah/front.svg",
  2886. extra: 858 / 830,
  2887. bottom: 95.5 / 953.8559
  2888. }
  2889. },
  2890. back: {
  2891. height: math.unit(1.65, "meters"),
  2892. weight: math.unit(50, "kg"),
  2893. name: "Back",
  2894. image: {
  2895. source: "./media/characters/elijah/back.svg",
  2896. extra: 895 / 850,
  2897. bottom: 5.3 / 897.956
  2898. }
  2899. },
  2900. frontNsfw: {
  2901. height: math.unit(1.65, "meters"),
  2902. weight: math.unit(50, "kg"),
  2903. name: "Front (NSFW)",
  2904. image: {
  2905. source: "./media/characters/elijah/front-nsfw.svg",
  2906. extra: 858 / 830,
  2907. bottom: 95.5 / 953.8559
  2908. }
  2909. },
  2910. backNsfw: {
  2911. height: math.unit(1.65, "meters"),
  2912. weight: math.unit(50, "kg"),
  2913. name: "Back (NSFW)",
  2914. image: {
  2915. source: "./media/characters/elijah/back-nsfw.svg",
  2916. extra: 895 / 850,
  2917. bottom: 5.3 / 897.956
  2918. }
  2919. },
  2920. dick: {
  2921. height: math.unit(1, "feet"),
  2922. name: "Dick",
  2923. image: {
  2924. source: "./media/characters/elijah/dick.svg"
  2925. }
  2926. },
  2927. beakOpen: {
  2928. height: math.unit(1.25, "feet"),
  2929. name: "Beak (Open)",
  2930. image: {
  2931. source: "./media/characters/elijah/beak-open.svg"
  2932. }
  2933. },
  2934. beakShut: {
  2935. height: math.unit(1.25, "feet"),
  2936. name: "Beak (Shut)",
  2937. image: {
  2938. source: "./media/characters/elijah/beak-shut.svg"
  2939. }
  2940. },
  2941. footFlexing: {
  2942. height: math.unit(1.61, "feet"),
  2943. name: "Foot (Flexing)",
  2944. image: {
  2945. source: "./media/characters/elijah/foot-flexing.svg"
  2946. }
  2947. },
  2948. footStepping: {
  2949. height: math.unit(1.44, "feet"),
  2950. name: "Foot (Stepping)",
  2951. image: {
  2952. source: "./media/characters/elijah/foot-stepping.svg"
  2953. }
  2954. },
  2955. plantigradeLeg: {
  2956. height: math.unit(2.34, "feet"),
  2957. name: "Plantigrade Leg",
  2958. image: {
  2959. source: "./media/characters/elijah/plantigrade-leg.svg"
  2960. }
  2961. },
  2962. plantigradeFootLeft: {
  2963. height: math.unit(0.9, "feet"),
  2964. name: "Plantigrade Foot (Left)",
  2965. image: {
  2966. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2967. }
  2968. },
  2969. plantigradeFootRight: {
  2970. height: math.unit(0.9, "feet"),
  2971. name: "Plantigrade Foot (Right)",
  2972. image: {
  2973. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2974. }
  2975. },
  2976. },
  2977. [
  2978. {
  2979. name: "Normal",
  2980. height: math.unit(1.65, "meters")
  2981. },
  2982. {
  2983. name: "Macro",
  2984. height: math.unit(55, "meters"),
  2985. default: true
  2986. },
  2987. {
  2988. name: "Macro+",
  2989. height: math.unit(105, "meters")
  2990. },
  2991. ]
  2992. ))
  2993. characterMakers.push(() => makeCharacter(
  2994. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2995. {
  2996. front: {
  2997. height: math.unit(7 + 2/12, "feet"),
  2998. weight: math.unit(320, "kg"),
  2999. preyCapacity: math.unit(0.276549935, "people"),
  3000. name: "Front",
  3001. image: {
  3002. source: "./media/characters/rai/front.svg",
  3003. extra: 1802/1696,
  3004. bottom: 68/1870
  3005. },
  3006. form: "anthro",
  3007. default: true
  3008. },
  3009. frontDressed: {
  3010. height: math.unit(7 + 2/12, "feet"),
  3011. weight: math.unit(320, "kg"),
  3012. preyCapacity: math.unit(0.276549935, "people"),
  3013. name: "Front (Dressed)",
  3014. image: {
  3015. source: "./media/characters/rai/front-dressed.svg",
  3016. extra: 1802/1696,
  3017. bottom: 68/1870
  3018. },
  3019. form: "anthro"
  3020. },
  3021. side: {
  3022. height: math.unit(7 + 2/12, "feet"),
  3023. weight: math.unit(320, "kg"),
  3024. preyCapacity: math.unit(0.276549935, "people"),
  3025. name: "Side",
  3026. image: {
  3027. source: "./media/characters/rai/side.svg",
  3028. extra: 1789/1710,
  3029. bottom: 115/1904
  3030. },
  3031. form: "anthro"
  3032. },
  3033. back: {
  3034. height: math.unit(7 + 2/12, "feet"),
  3035. weight: math.unit(320, "kg"),
  3036. preyCapacity: math.unit(0.276549935, "people"),
  3037. name: "Back",
  3038. image: {
  3039. source: "./media/characters/rai/back.svg",
  3040. extra: 1770/1707,
  3041. bottom: 28/1798
  3042. },
  3043. form: "anthro"
  3044. },
  3045. feral: {
  3046. height: math.unit(9.5, "feet"),
  3047. weight: math.unit(640, "kg"),
  3048. preyCapacity: math.unit(4, "people"),
  3049. name: "Feral",
  3050. image: {
  3051. source: "./media/characters/rai/feral.svg",
  3052. extra: 945/553,
  3053. bottom: 176/1121
  3054. },
  3055. form: "feral",
  3056. default: true
  3057. },
  3058. dragon: {
  3059. height: math.unit(23, "feet"),
  3060. weight: math.unit(50000, "lb"),
  3061. name: "Dragon",
  3062. image: {
  3063. source: "./media/characters/rai/dragon.svg",
  3064. extra: 2498 / 2030,
  3065. bottom: 85.2 / 2584
  3066. },
  3067. form: "dragon",
  3068. default: true
  3069. },
  3070. maw: {
  3071. height: math.unit(1.69, "feet"),
  3072. name: "Maw",
  3073. image: {
  3074. source: "./media/characters/rai/maw.svg"
  3075. },
  3076. form: "anthro"
  3077. },
  3078. },
  3079. [
  3080. {
  3081. name: "Normal",
  3082. height: math.unit(7 + 2/12, "feet"),
  3083. form: "anthro"
  3084. },
  3085. {
  3086. name: "Big",
  3087. height: math.unit(11, "feet"),
  3088. form: "anthro"
  3089. },
  3090. {
  3091. name: "Minimacro",
  3092. height: math.unit(77, "feet"),
  3093. form: "anthro"
  3094. },
  3095. {
  3096. name: "Macro",
  3097. height: math.unit(302, "feet"),
  3098. default: true,
  3099. form: "anthro"
  3100. },
  3101. {
  3102. name: "Normal",
  3103. height: math.unit(9.5, "feet"),
  3104. form: "feral",
  3105. default: true
  3106. },
  3107. {
  3108. name: "Normal",
  3109. height: math.unit(23, "feet"),
  3110. form: "dragon",
  3111. default: true
  3112. }
  3113. ],
  3114. {
  3115. "anthro": {
  3116. name: "Anthro",
  3117. default: true
  3118. },
  3119. "feral": {
  3120. name: "Feral",
  3121. },
  3122. "dragon": {
  3123. name: "Dragon",
  3124. },
  3125. }
  3126. ))
  3127. characterMakers.push(() => makeCharacter(
  3128. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3129. {
  3130. frontDressed: {
  3131. height: math.unit(216, "feet"),
  3132. weight: math.unit(7000000, "lb"),
  3133. preyCapacity: math.unit(1321, "people"),
  3134. name: "Front (Dressed)",
  3135. image: {
  3136. source: "./media/characters/jazzy/front-dressed.svg",
  3137. extra: 2738 / 2651,
  3138. bottom: 41.8 / 2786
  3139. }
  3140. },
  3141. backDressed: {
  3142. height: math.unit(216, "feet"),
  3143. weight: math.unit(7000000, "lb"),
  3144. preyCapacity: math.unit(1321, "people"),
  3145. name: "Back (Dressed)",
  3146. image: {
  3147. source: "./media/characters/jazzy/back-dressed.svg",
  3148. extra: 2775 / 2673,
  3149. bottom: 36.8 / 2817
  3150. }
  3151. },
  3152. front: {
  3153. height: math.unit(216, "feet"),
  3154. weight: math.unit(7000000, "lb"),
  3155. preyCapacity: math.unit(1321, "people"),
  3156. name: "Front",
  3157. image: {
  3158. source: "./media/characters/jazzy/front.svg",
  3159. extra: 2738 / 2651,
  3160. bottom: 41.8 / 2786
  3161. }
  3162. },
  3163. back: {
  3164. height: math.unit(216, "feet"),
  3165. weight: math.unit(7000000, "lb"),
  3166. preyCapacity: math.unit(1321, "people"),
  3167. name: "Back",
  3168. image: {
  3169. source: "./media/characters/jazzy/back.svg",
  3170. extra: 2775 / 2673,
  3171. bottom: 36.8 / 2817
  3172. }
  3173. },
  3174. maw: {
  3175. height: math.unit(20, "feet"),
  3176. name: "Maw",
  3177. image: {
  3178. source: "./media/characters/jazzy/maw.svg"
  3179. }
  3180. },
  3181. paws: {
  3182. height: math.unit(27.5, "feet"),
  3183. name: "Paws",
  3184. image: {
  3185. source: "./media/characters/jazzy/paws.svg"
  3186. }
  3187. },
  3188. eye: {
  3189. height: math.unit(4.4, "feet"),
  3190. name: "Eye",
  3191. image: {
  3192. source: "./media/characters/jazzy/eye.svg"
  3193. }
  3194. },
  3195. droneOffense: {
  3196. height: math.unit(9.5, "inches"),
  3197. name: "Drone (Offense)",
  3198. image: {
  3199. source: "./media/characters/jazzy/drone-offense.svg"
  3200. }
  3201. },
  3202. droneRecon: {
  3203. height: math.unit(9.5, "inches"),
  3204. name: "Drone (Recon)",
  3205. image: {
  3206. source: "./media/characters/jazzy/drone-recon.svg"
  3207. }
  3208. },
  3209. droneDefense: {
  3210. height: math.unit(9.5, "inches"),
  3211. name: "Drone (Defense)",
  3212. image: {
  3213. source: "./media/characters/jazzy/drone-defense.svg"
  3214. }
  3215. },
  3216. },
  3217. [
  3218. {
  3219. name: "Macro",
  3220. height: math.unit(216, "feet"),
  3221. default: true
  3222. },
  3223. ]
  3224. ))
  3225. characterMakers.push(() => makeCharacter(
  3226. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3227. {
  3228. front: {
  3229. height: math.unit(9 + 6/12, "feet"),
  3230. weight: math.unit(700, "lb"),
  3231. name: "Front",
  3232. image: {
  3233. source: "./media/characters/flamm/front.svg",
  3234. extra: 1736/1596,
  3235. bottom: 93/1829
  3236. }
  3237. },
  3238. buff: {
  3239. height: math.unit(9 + 6/12, "feet"),
  3240. weight: math.unit(950, "lb"),
  3241. name: "Buff",
  3242. image: {
  3243. source: "./media/characters/flamm/buff.svg",
  3244. extra: 3018/2874,
  3245. bottom: 221/3239
  3246. }
  3247. },
  3248. },
  3249. [
  3250. {
  3251. name: "Normal",
  3252. height: math.unit(9.5, "feet")
  3253. },
  3254. {
  3255. name: "Macro",
  3256. height: math.unit(200, "feet"),
  3257. default: true
  3258. },
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3263. {
  3264. front: {
  3265. height: math.unit(5 + 3/12, "feet"),
  3266. weight: math.unit(60, "kg"),
  3267. name: "Front",
  3268. image: {
  3269. source: "./media/characters/zephiro/front.svg",
  3270. extra: 1873/1761,
  3271. bottom: 147/2020
  3272. }
  3273. },
  3274. side: {
  3275. height: math.unit(5 + 3/12, "feet"),
  3276. weight: math.unit(60, "kg"),
  3277. name: "Side",
  3278. image: {
  3279. source: "./media/characters/zephiro/side.svg",
  3280. extra: 1929/1827,
  3281. bottom: 65/1994
  3282. }
  3283. },
  3284. back: {
  3285. height: math.unit(5 + 3/12, "feet"),
  3286. weight: math.unit(60, "kg"),
  3287. name: "Back",
  3288. image: {
  3289. source: "./media/characters/zephiro/back.svg",
  3290. extra: 1926/1816,
  3291. bottom: 41/1967
  3292. }
  3293. },
  3294. hand: {
  3295. height: math.unit(0.68, "feet"),
  3296. name: "Hand",
  3297. image: {
  3298. source: "./media/characters/zephiro/hand.svg"
  3299. }
  3300. },
  3301. paw: {
  3302. height: math.unit(1, "feet"),
  3303. name: "Paw",
  3304. image: {
  3305. source: "./media/characters/zephiro/paw.svg"
  3306. }
  3307. },
  3308. beans: {
  3309. height: math.unit(0.93, "feet"),
  3310. name: "Beans",
  3311. image: {
  3312. source: "./media/characters/zephiro/beans.svg"
  3313. }
  3314. },
  3315. },
  3316. [
  3317. {
  3318. name: "Micro",
  3319. height: math.unit(3, "inches")
  3320. },
  3321. {
  3322. name: "Normal",
  3323. height: math.unit(5 + 3 / 12, "feet"),
  3324. default: true
  3325. },
  3326. {
  3327. name: "Macro",
  3328. height: math.unit(118, "feet")
  3329. },
  3330. ]
  3331. ))
  3332. characterMakers.push(() => makeCharacter(
  3333. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3334. {
  3335. front: {
  3336. height: math.unit(5, "feet"),
  3337. weight: math.unit(90, "kg"),
  3338. preyCapacity: math.unit(14, "people"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/fory/front.svg",
  3342. extra: 2862 / 2674,
  3343. bottom: 180 / 3043.8
  3344. },
  3345. form: "weaselbun",
  3346. default: true,
  3347. extraAttributes: {
  3348. "pawSize": {
  3349. name: "Paw Size",
  3350. power: 2,
  3351. type: "area",
  3352. base: math.unit(0.1596, "m^2")
  3353. },
  3354. "pawLength": {
  3355. name: "Paw Length",
  3356. power: 1,
  3357. type: "length",
  3358. base: math.unit(0.7, "m")
  3359. }
  3360. }
  3361. },
  3362. back: {
  3363. height: math.unit(5, "feet"),
  3364. weight: math.unit(90, "kg"),
  3365. preyCapacity: math.unit(14, "people"),
  3366. name: "Back",
  3367. image: {
  3368. source: "./media/characters/fory/back.svg",
  3369. extra: 1790/1672,
  3370. bottom: 84/1874
  3371. },
  3372. form: "weaselbun",
  3373. extraAttributes: {
  3374. "pawSize": {
  3375. name: "Paw Size",
  3376. power: 2,
  3377. type: "area",
  3378. base: math.unit(0.1596, "m^2")
  3379. },
  3380. "pawLength": {
  3381. name: "Paw Length",
  3382. power: 1,
  3383. type: "length",
  3384. base: math.unit(0.7, "m")
  3385. }
  3386. }
  3387. },
  3388. paw: {
  3389. height: math.unit(2.14, "feet"),
  3390. name: "Paw",
  3391. image: {
  3392. source: "./media/characters/fory/paw.svg"
  3393. },
  3394. form: "weaselbun",
  3395. extraAttributes: {
  3396. "pawSize": {
  3397. name: "Paw Size",
  3398. power: 2,
  3399. type: "area",
  3400. base: math.unit(0.1596, "m^2")
  3401. },
  3402. "pawLength": {
  3403. name: "Paw Length",
  3404. power: 1,
  3405. type: "length",
  3406. base: math.unit(0.48, "m")
  3407. }
  3408. }
  3409. },
  3410. bunBack: {
  3411. height: math.unit(3, "feet"),
  3412. weight: math.unit(20, "kg"),
  3413. preyCapacity: math.unit(3, "people"),
  3414. name: "Back",
  3415. image: {
  3416. source: "./media/characters/fory/bun-back.svg",
  3417. extra: 1749/1564,
  3418. bottom: 246/1995
  3419. },
  3420. form: "bun",
  3421. default: true,
  3422. extraAttributes: {
  3423. "pawSize": {
  3424. name: "Paw Size",
  3425. power: 2,
  3426. type: "area",
  3427. base: math.unit(0.072, "m^2")
  3428. },
  3429. "pawLength": {
  3430. name: "Paw Length",
  3431. power: 1,
  3432. type: "length",
  3433. base: math.unit(0.45, "m")
  3434. }
  3435. }
  3436. },
  3437. },
  3438. [
  3439. {
  3440. name: "Normal",
  3441. height: math.unit(5, "feet"),
  3442. form: "weaselbun"
  3443. },
  3444. {
  3445. name: "Macro",
  3446. height: math.unit(50, "feet"),
  3447. default: true,
  3448. form: "weaselbun"
  3449. },
  3450. {
  3451. name: "Megamacro",
  3452. height: math.unit(10, "miles"),
  3453. form: "weaselbun"
  3454. },
  3455. {
  3456. name: "Gigamacro",
  3457. height: math.unit(5, "earths"),
  3458. form: "weaselbun"
  3459. },
  3460. {
  3461. name: "Normal",
  3462. height: math.unit(3, "feet"),
  3463. default: true,
  3464. form: "bun"
  3465. },
  3466. {
  3467. name: "Fun-Size",
  3468. height: math.unit(12, "feet"),
  3469. form: "bun"
  3470. },
  3471. {
  3472. name: "Macro",
  3473. height: math.unit(100, "feet"),
  3474. form: "bun"
  3475. },
  3476. {
  3477. name: "Planetary",
  3478. height: math.unit(3, "earths"),
  3479. form: "bun"
  3480. },
  3481. ],
  3482. {
  3483. "weaselbun": {
  3484. name: "Weaselbun",
  3485. default: true
  3486. },
  3487. "bun": {
  3488. name: "Bun",
  3489. },
  3490. }
  3491. ))
  3492. characterMakers.push(() => makeCharacter(
  3493. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3494. {
  3495. front: {
  3496. height: math.unit(7, "feet"),
  3497. weight: math.unit(90, "kg"),
  3498. name: "Front",
  3499. image: {
  3500. source: "./media/characters/kurrikage/front.svg",
  3501. extra: 1845/1733,
  3502. bottom: 119/1964
  3503. }
  3504. },
  3505. back: {
  3506. height: math.unit(7, "feet"),
  3507. weight: math.unit(90, "kg"),
  3508. name: "Back",
  3509. image: {
  3510. source: "./media/characters/kurrikage/back.svg",
  3511. extra: 1790/1677,
  3512. bottom: 61/1851
  3513. }
  3514. },
  3515. dressed: {
  3516. height: math.unit(7, "feet"),
  3517. weight: math.unit(90, "kg"),
  3518. name: "Dressed",
  3519. image: {
  3520. source: "./media/characters/kurrikage/dressed.svg",
  3521. extra: 1845/1733,
  3522. bottom: 119/1964
  3523. }
  3524. },
  3525. foot: {
  3526. height: math.unit(1.5, "feet"),
  3527. name: "Foot",
  3528. image: {
  3529. source: "./media/characters/kurrikage/foot.svg"
  3530. }
  3531. },
  3532. staff: {
  3533. height: math.unit(6.7, "feet"),
  3534. name: "Staff",
  3535. image: {
  3536. source: "./media/characters/kurrikage/staff.svg"
  3537. }
  3538. },
  3539. peek: {
  3540. height: math.unit(1.05, "feet"),
  3541. name: "Peeking",
  3542. image: {
  3543. source: "./media/characters/kurrikage/peek.svg",
  3544. bottom: 0.08
  3545. }
  3546. },
  3547. },
  3548. [
  3549. {
  3550. name: "Normal",
  3551. height: math.unit(12, "feet"),
  3552. default: true
  3553. },
  3554. {
  3555. name: "Big",
  3556. height: math.unit(20, "feet")
  3557. },
  3558. {
  3559. name: "Macro",
  3560. height: math.unit(500, "feet")
  3561. },
  3562. {
  3563. name: "Megamacro",
  3564. height: math.unit(20, "miles")
  3565. },
  3566. ]
  3567. ))
  3568. characterMakers.push(() => makeCharacter(
  3569. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3570. {
  3571. front: {
  3572. height: math.unit(6, "feet"),
  3573. weight: math.unit(75, "kg"),
  3574. name: "Front",
  3575. image: {
  3576. source: "./media/characters/shingo/front.svg",
  3577. extra: 1900/1825,
  3578. bottom: 82/1982
  3579. }
  3580. },
  3581. side: {
  3582. height: math.unit(6, "feet"),
  3583. weight: math.unit(75, "kg"),
  3584. name: "Side",
  3585. image: {
  3586. source: "./media/characters/shingo/side.svg",
  3587. extra: 1930/1865,
  3588. bottom: 16/1946
  3589. }
  3590. },
  3591. back: {
  3592. height: math.unit(6, "feet"),
  3593. weight: math.unit(75, "kg"),
  3594. name: "Back",
  3595. image: {
  3596. source: "./media/characters/shingo/back.svg",
  3597. extra: 1922/1852,
  3598. bottom: 16/1938
  3599. }
  3600. },
  3601. frontDressed: {
  3602. height: math.unit(6, "feet"),
  3603. weight: math.unit(150, "lb"),
  3604. name: "Front-dressed",
  3605. image: {
  3606. source: "./media/characters/shingo/front-dressed.svg",
  3607. extra: 1900/1825,
  3608. bottom: 82/1982
  3609. }
  3610. },
  3611. paw: {
  3612. height: math.unit(1.29, "feet"),
  3613. name: "Paw",
  3614. image: {
  3615. source: "./media/characters/shingo/paw.svg"
  3616. }
  3617. },
  3618. hand: {
  3619. height: math.unit(1.07, "feet"),
  3620. name: "Hand",
  3621. image: {
  3622. source: "./media/characters/shingo/hand.svg"
  3623. }
  3624. },
  3625. frontAlt: {
  3626. height: math.unit(6, "feet"),
  3627. weight: math.unit(75, "kg"),
  3628. name: "Front (Alt)",
  3629. image: {
  3630. source: "./media/characters/shingo/front-alt.svg",
  3631. extra: 3511 / 3338,
  3632. bottom: 0.005
  3633. }
  3634. },
  3635. frontAlt2: {
  3636. height: math.unit(6, "feet"),
  3637. weight: math.unit(75, "kg"),
  3638. name: "Front (Alt 2)",
  3639. image: {
  3640. source: "./media/characters/shingo/front-alt-2.svg",
  3641. extra: 706/681,
  3642. bottom: 11/717
  3643. }
  3644. },
  3645. pawAlt: {
  3646. height: math.unit(1, "feet"),
  3647. name: "Paw (Alt)",
  3648. image: {
  3649. source: "./media/characters/shingo/paw-alt.svg"
  3650. }
  3651. },
  3652. },
  3653. [
  3654. {
  3655. name: "Micro",
  3656. height: math.unit(4, "inches")
  3657. },
  3658. {
  3659. name: "Normal",
  3660. height: math.unit(6, "feet"),
  3661. default: true
  3662. },
  3663. {
  3664. name: "Macro",
  3665. height: math.unit(108, "feet")
  3666. },
  3667. {
  3668. name: "Macro+",
  3669. height: math.unit(1500, "feet")
  3670. },
  3671. ]
  3672. ))
  3673. characterMakers.push(() => makeCharacter(
  3674. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3675. {
  3676. side: {
  3677. height: math.unit(6, "feet"),
  3678. weight: math.unit(75, "kg"),
  3679. name: "Side",
  3680. image: {
  3681. source: "./media/characters/aigey/side.svg"
  3682. }
  3683. },
  3684. },
  3685. [
  3686. {
  3687. name: "Macro",
  3688. height: math.unit(200, "feet"),
  3689. default: true
  3690. },
  3691. {
  3692. name: "Megamacro",
  3693. height: math.unit(100, "miles")
  3694. },
  3695. ]
  3696. )
  3697. )
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(5 + 5 / 12, "feet"),
  3703. weight: math.unit(75, "kg"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/natasha/front.svg",
  3707. extra: 859 / 824,
  3708. bottom: 23 / 879.6
  3709. }
  3710. },
  3711. frontNsfw: {
  3712. height: math.unit(5 + 5 / 12, "feet"),
  3713. weight: math.unit(75, "kg"),
  3714. name: "Front (NSFW)",
  3715. image: {
  3716. source: "./media/characters/natasha/front-nsfw.svg",
  3717. extra: 859 / 824,
  3718. bottom: 23 / 879.6
  3719. }
  3720. },
  3721. frontErect: {
  3722. height: math.unit(5 + 5 / 12, "feet"),
  3723. weight: math.unit(75, "kg"),
  3724. name: "Front (Erect)",
  3725. image: {
  3726. source: "./media/characters/natasha/front-erect.svg",
  3727. extra: 859 / 824,
  3728. bottom: 23 / 879.6
  3729. }
  3730. },
  3731. back: {
  3732. height: math.unit(5 + 5 / 12, "feet"),
  3733. weight: math.unit(75, "kg"),
  3734. name: "Back",
  3735. image: {
  3736. source: "./media/characters/natasha/back.svg",
  3737. extra: 887.9 / 852.6,
  3738. bottom: 9.7 / 896.4
  3739. }
  3740. },
  3741. backAlt: {
  3742. height: math.unit(5 + 5 / 12, "feet"),
  3743. weight: math.unit(75, "kg"),
  3744. name: "Back (Alt)",
  3745. image: {
  3746. source: "./media/characters/natasha/back-alt.svg",
  3747. extra: 1236.7 / 1192,
  3748. bottom: 22.3 / 1258.2
  3749. }
  3750. },
  3751. dick: {
  3752. height: math.unit(1.772, "feet"),
  3753. name: "Dick",
  3754. image: {
  3755. source: "./media/characters/natasha/dick.svg"
  3756. }
  3757. },
  3758. paw: {
  3759. height: math.unit(0.250, "meters"),
  3760. name: "Paw",
  3761. image: {
  3762. source: "./media/characters/natasha/paw.svg"
  3763. },
  3764. extraAttributes: {
  3765. "toeSize": {
  3766. name: "Toe Size",
  3767. power: 2,
  3768. type: "area",
  3769. base: math.unit(0.0024, "m^2")
  3770. },
  3771. "padSize": {
  3772. name: "Pad Size",
  3773. power: 2,
  3774. type: "area",
  3775. base: math.unit(0.00889, "m^2")
  3776. },
  3777. "pawSize": {
  3778. name: "Paw Size",
  3779. power: 2,
  3780. type: "area",
  3781. base: math.unit(0.023667, "m^2")
  3782. },
  3783. }
  3784. },
  3785. },
  3786. [
  3787. {
  3788. name: "Shortstack",
  3789. height: math.unit(3, "feet"),
  3790. default: true
  3791. },
  3792. {
  3793. name: "Normal",
  3794. height: math.unit(5 + 5 / 12, "feet")
  3795. },
  3796. {
  3797. name: "Large",
  3798. height: math.unit(12, "feet")
  3799. },
  3800. {
  3801. name: "Macro",
  3802. height: math.unit(100, "feet")
  3803. },
  3804. {
  3805. name: "Macro+",
  3806. height: math.unit(260, "feet")
  3807. },
  3808. {
  3809. name: "Macro++",
  3810. height: math.unit(1, "mile")
  3811. },
  3812. ]
  3813. ))
  3814. characterMakers.push(() => makeCharacter(
  3815. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3816. {
  3817. front: {
  3818. height: math.unit(6, "feet"),
  3819. weight: math.unit(75, "kg"),
  3820. name: "Front",
  3821. image: {
  3822. source: "./media/characters/malik/front.svg",
  3823. extra: 1750/1561,
  3824. bottom: 80/1830
  3825. },
  3826. extraAttributes: {
  3827. "toeSize": {
  3828. name: "Toe Size",
  3829. power: 2,
  3830. type: "area",
  3831. base: math.unit(0.0159, "m^2")
  3832. },
  3833. "pawSize": {
  3834. name: "Paw Size",
  3835. power: 2,
  3836. type: "area",
  3837. base: math.unit(0.09834, "m^2")
  3838. },
  3839. }
  3840. },
  3841. side: {
  3842. height: math.unit(6, "feet"),
  3843. weight: math.unit(75, "kg"),
  3844. name: "Side",
  3845. image: {
  3846. source: "./media/characters/malik/side.svg",
  3847. extra: 1802/1685,
  3848. bottom: 42/1844
  3849. },
  3850. extraAttributes: {
  3851. "toeSize": {
  3852. name: "Toe Size",
  3853. power: 2,
  3854. type: "area",
  3855. base: math.unit(0.0159, "m^2")
  3856. },
  3857. "pawSize": {
  3858. name: "Paw Size",
  3859. power: 2,
  3860. type: "area",
  3861. base: math.unit(0.09834, "m^2")
  3862. },
  3863. }
  3864. },
  3865. back: {
  3866. height: math.unit(6, "feet"),
  3867. weight: math.unit(75, "kg"),
  3868. name: "Back",
  3869. image: {
  3870. source: "./media/characters/malik/back.svg",
  3871. extra: 1803/1607,
  3872. bottom: 33/1836
  3873. },
  3874. extraAttributes: {
  3875. "toeSize": {
  3876. name: "Toe Size",
  3877. power: 2,
  3878. type: "area",
  3879. base: math.unit(0.0159, "m^2")
  3880. },
  3881. "pawSize": {
  3882. name: "Paw Size",
  3883. power: 2,
  3884. type: "area",
  3885. base: math.unit(0.09834, "m^2")
  3886. },
  3887. }
  3888. },
  3889. },
  3890. [
  3891. {
  3892. name: "Macro",
  3893. height: math.unit(156, "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Macro+",
  3898. height: math.unit(1188, "feet")
  3899. },
  3900. ]
  3901. ))
  3902. characterMakers.push(() => makeCharacter(
  3903. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3904. {
  3905. front: {
  3906. height: math.unit(6, "feet"),
  3907. weight: math.unit(75, "kg"),
  3908. name: "Front",
  3909. image: {
  3910. source: "./media/characters/sefer/front.svg",
  3911. extra: 848 / 659,
  3912. bottom: 28.3 / 876.442
  3913. }
  3914. },
  3915. back: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(75, "kg"),
  3918. name: "Back",
  3919. image: {
  3920. source: "./media/characters/sefer/back.svg",
  3921. extra: 864 / 695,
  3922. bottom: 10 / 871
  3923. }
  3924. },
  3925. frontDressed: {
  3926. height: math.unit(6, "feet"),
  3927. weight: math.unit(75, "kg"),
  3928. name: "Dressed",
  3929. image: {
  3930. source: "./media/characters/sefer/dressed.svg",
  3931. extra: 839 / 653,
  3932. bottom: 37.6 / 878
  3933. }
  3934. },
  3935. },
  3936. [
  3937. {
  3938. name: "Normal",
  3939. height: math.unit(6, "feet"),
  3940. default: true
  3941. },
  3942. {
  3943. name: "Big",
  3944. height: math.unit(8, "meters")
  3945. },
  3946. ]
  3947. ))
  3948. characterMakers.push(() => makeCharacter(
  3949. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3950. {
  3951. body: {
  3952. height: math.unit(2.2428, "meter"),
  3953. weight: math.unit(124.738, "kg"),
  3954. name: "Body",
  3955. image: {
  3956. extra: 1225 / 1050,
  3957. source: "./media/characters/north/front.svg"
  3958. }
  3959. }
  3960. },
  3961. [
  3962. {
  3963. name: "Micro",
  3964. height: math.unit(4, "inches")
  3965. },
  3966. {
  3967. name: "Macro",
  3968. height: math.unit(63, "meters")
  3969. },
  3970. {
  3971. name: "Megamacro",
  3972. height: math.unit(101, "miles"),
  3973. default: true
  3974. }
  3975. ]
  3976. ))
  3977. characterMakers.push(() => makeCharacter(
  3978. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3979. {
  3980. angled: {
  3981. height: math.unit(4, "meter"),
  3982. weight: math.unit(150, "kg"),
  3983. name: "Angled",
  3984. image: {
  3985. source: "./media/characters/talan/angled-sfw.svg",
  3986. bottom: 29 / 3734
  3987. }
  3988. },
  3989. angledNsfw: {
  3990. height: math.unit(4, "meter"),
  3991. weight: math.unit(150, "kg"),
  3992. name: "Angled (NSFW)",
  3993. image: {
  3994. source: "./media/characters/talan/angled-nsfw.svg",
  3995. bottom: 29 / 3734
  3996. }
  3997. },
  3998. frontNsfw: {
  3999. height: math.unit(4, "meter"),
  4000. weight: math.unit(150, "kg"),
  4001. name: "Front (NSFW)",
  4002. image: {
  4003. source: "./media/characters/talan/front-nsfw.svg",
  4004. bottom: 29 / 3734
  4005. }
  4006. },
  4007. sideNsfw: {
  4008. height: math.unit(4, "meter"),
  4009. weight: math.unit(150, "kg"),
  4010. name: "Side (NSFW)",
  4011. image: {
  4012. source: "./media/characters/talan/side-nsfw.svg",
  4013. bottom: 29 / 3734
  4014. }
  4015. },
  4016. back: {
  4017. height: math.unit(4, "meter"),
  4018. weight: math.unit(150, "kg"),
  4019. name: "Back",
  4020. image: {
  4021. source: "./media/characters/talan/back.svg"
  4022. }
  4023. },
  4024. dickBottom: {
  4025. height: math.unit(0.621, "meter"),
  4026. name: "Dick (Bottom)",
  4027. image: {
  4028. source: "./media/characters/talan/dick-bottom.svg"
  4029. }
  4030. },
  4031. dickTop: {
  4032. height: math.unit(0.621, "meter"),
  4033. name: "Dick (Top)",
  4034. image: {
  4035. source: "./media/characters/talan/dick-top.svg"
  4036. }
  4037. },
  4038. dickSide: {
  4039. height: math.unit(0.305, "meter"),
  4040. name: "Dick (Side)",
  4041. image: {
  4042. source: "./media/characters/talan/dick-side.svg"
  4043. }
  4044. },
  4045. dickFront: {
  4046. height: math.unit(0.305, "meter"),
  4047. name: "Dick (Front)",
  4048. image: {
  4049. source: "./media/characters/talan/dick-front.svg"
  4050. }
  4051. },
  4052. },
  4053. [
  4054. {
  4055. name: "Normal",
  4056. height: math.unit(4, "meters")
  4057. },
  4058. {
  4059. name: "Macro",
  4060. height: math.unit(100, "meters")
  4061. },
  4062. {
  4063. name: "Megamacro",
  4064. height: math.unit(2, "miles"),
  4065. default: true
  4066. },
  4067. {
  4068. name: "Gigamacro",
  4069. height: math.unit(5000, "miles")
  4070. },
  4071. {
  4072. name: "Teramacro",
  4073. height: math.unit(100, "parsecs")
  4074. }
  4075. ]
  4076. ))
  4077. characterMakers.push(() => makeCharacter(
  4078. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4079. {
  4080. front: {
  4081. height: math.unit(2, "meter"),
  4082. weight: math.unit(90, "kg"),
  4083. name: "Front",
  4084. image: {
  4085. source: "./media/characters/gael'rathus/front.svg"
  4086. }
  4087. },
  4088. frontAlt: {
  4089. height: math.unit(2, "meter"),
  4090. weight: math.unit(90, "kg"),
  4091. name: "Front (alt)",
  4092. image: {
  4093. source: "./media/characters/gael'rathus/front-alt.svg"
  4094. }
  4095. },
  4096. frontAlt2: {
  4097. height: math.unit(2, "meter"),
  4098. weight: math.unit(90, "kg"),
  4099. name: "Front (alt 2)",
  4100. image: {
  4101. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4102. }
  4103. }
  4104. },
  4105. [
  4106. {
  4107. name: "Normal",
  4108. height: math.unit(9, "feet"),
  4109. default: true
  4110. },
  4111. {
  4112. name: "Large",
  4113. height: math.unit(25, "feet")
  4114. },
  4115. {
  4116. name: "Macro",
  4117. height: math.unit(0.25, "miles")
  4118. },
  4119. {
  4120. name: "Megamacro",
  4121. height: math.unit(10, "miles")
  4122. }
  4123. ]
  4124. ))
  4125. characterMakers.push(() => makeCharacter(
  4126. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4127. {
  4128. side: {
  4129. height: math.unit(2, "meter"),
  4130. weight: math.unit(140, "kg"),
  4131. name: "Side",
  4132. image: {
  4133. source: "./media/characters/sosha/side.svg",
  4134. extra: 1170/1006,
  4135. bottom: 94/1264
  4136. }
  4137. },
  4138. maw: {
  4139. height: math.unit(2.87, "feet"),
  4140. name: "Maw",
  4141. image: {
  4142. source: "./media/characters/sosha/maw.svg",
  4143. extra: 966/865,
  4144. bottom: 0/966
  4145. }
  4146. },
  4147. cooch: {
  4148. height: math.unit(5.6, "feet"),
  4149. name: "Cooch",
  4150. image: {
  4151. source: "./media/characters/sosha/cooch.svg"
  4152. }
  4153. },
  4154. },
  4155. [
  4156. {
  4157. name: "Normal",
  4158. height: math.unit(12, "feet"),
  4159. default: true
  4160. }
  4161. ]
  4162. ))
  4163. characterMakers.push(() => makeCharacter(
  4164. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4165. {
  4166. side: {
  4167. height: math.unit(5 + 5 / 12, "feet"),
  4168. weight: math.unit(170, "kg"),
  4169. name: "Side",
  4170. image: {
  4171. source: "./media/characters/runnola/side.svg",
  4172. extra: 741 / 448,
  4173. bottom: 0.05
  4174. }
  4175. },
  4176. },
  4177. [
  4178. {
  4179. name: "Small",
  4180. height: math.unit(3, "feet")
  4181. },
  4182. {
  4183. name: "Normal",
  4184. height: math.unit(5 + 5 / 12, "feet"),
  4185. default: true
  4186. },
  4187. {
  4188. name: "Big",
  4189. height: math.unit(10, "feet")
  4190. },
  4191. ]
  4192. ))
  4193. characterMakers.push(() => makeCharacter(
  4194. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4195. {
  4196. front: {
  4197. height: math.unit(2, "meter"),
  4198. weight: math.unit(50, "kg"),
  4199. name: "Front",
  4200. image: {
  4201. source: "./media/characters/kurribird/front.svg",
  4202. bottom: 0.015
  4203. }
  4204. },
  4205. frontAlt: {
  4206. height: math.unit(1.5, "meter"),
  4207. weight: math.unit(50, "kg"),
  4208. name: "Front (Alt)",
  4209. image: {
  4210. source: "./media/characters/kurribird/front-alt.svg",
  4211. extra: 1.45
  4212. }
  4213. },
  4214. },
  4215. [
  4216. {
  4217. name: "Normal",
  4218. height: math.unit(7, "feet")
  4219. },
  4220. {
  4221. name: "Big",
  4222. height: math.unit(12, "feet"),
  4223. default: true
  4224. },
  4225. {
  4226. name: "Macro",
  4227. height: math.unit(1500, "feet")
  4228. },
  4229. {
  4230. name: "Megamacro",
  4231. height: math.unit(2, "miles")
  4232. }
  4233. ]
  4234. ))
  4235. characterMakers.push(() => makeCharacter(
  4236. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4237. {
  4238. front: {
  4239. height: math.unit(2, "meter"),
  4240. weight: math.unit(80, "kg"),
  4241. name: "Front",
  4242. image: {
  4243. source: "./media/characters/elbial/front.svg",
  4244. extra: 1643 / 1556,
  4245. bottom: 60.2 / 1696
  4246. }
  4247. },
  4248. side: {
  4249. height: math.unit(2, "meter"),
  4250. weight: math.unit(80, "kg"),
  4251. name: "Side",
  4252. image: {
  4253. source: "./media/characters/elbial/side.svg",
  4254. extra: 1601/1528,
  4255. bottom: 97/1698
  4256. }
  4257. },
  4258. back: {
  4259. height: math.unit(2, "meter"),
  4260. weight: math.unit(80, "kg"),
  4261. name: "Back",
  4262. image: {
  4263. source: "./media/characters/elbial/back.svg",
  4264. extra: 1653/1569,
  4265. bottom: 20/1673
  4266. }
  4267. },
  4268. frontDressed: {
  4269. height: math.unit(2, "meter"),
  4270. weight: math.unit(80, "kg"),
  4271. name: "Front (Dressed)",
  4272. image: {
  4273. source: "./media/characters/elbial/front-dressed.svg",
  4274. extra: 1638/1569,
  4275. bottom: 70/1708
  4276. }
  4277. },
  4278. genitals: {
  4279. height: math.unit(2 / 3.367, "meter"),
  4280. name: "Genitals",
  4281. image: {
  4282. source: "./media/characters/elbial/genitals.svg"
  4283. }
  4284. },
  4285. },
  4286. [
  4287. {
  4288. name: "Large",
  4289. height: math.unit(100, "feet")
  4290. },
  4291. {
  4292. name: "Macro",
  4293. height: math.unit(500, "feet"),
  4294. default: true
  4295. },
  4296. {
  4297. name: "Megamacro",
  4298. height: math.unit(10, "miles")
  4299. },
  4300. {
  4301. name: "Gigamacro",
  4302. height: math.unit(25000, "miles")
  4303. },
  4304. {
  4305. name: "Full-Size",
  4306. height: math.unit(8000000, "gigaparsecs")
  4307. }
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4312. {
  4313. front: {
  4314. height: math.unit(2, "meter"),
  4315. weight: math.unit(60, "kg"),
  4316. name: "Front",
  4317. image: {
  4318. source: "./media/characters/noah/front.svg"
  4319. }
  4320. },
  4321. talons: {
  4322. height: math.unit(0.315, "meter"),
  4323. name: "Talons",
  4324. image: {
  4325. source: "./media/characters/noah/talons.svg"
  4326. }
  4327. }
  4328. },
  4329. [
  4330. {
  4331. name: "Large",
  4332. height: math.unit(50, "feet")
  4333. },
  4334. {
  4335. name: "Macro",
  4336. height: math.unit(750, "feet"),
  4337. default: true
  4338. },
  4339. {
  4340. name: "Megamacro",
  4341. height: math.unit(50, "miles")
  4342. },
  4343. {
  4344. name: "Gigamacro",
  4345. height: math.unit(100000, "miles")
  4346. },
  4347. {
  4348. name: "Full-Size",
  4349. height: math.unit(3000000000, "miles")
  4350. }
  4351. ]
  4352. ))
  4353. characterMakers.push(() => makeCharacter(
  4354. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4355. {
  4356. front: {
  4357. height: math.unit(2, "meter"),
  4358. weight: math.unit(80, "kg"),
  4359. name: "Front",
  4360. image: {
  4361. source: "./media/characters/natalya/front.svg"
  4362. }
  4363. },
  4364. back: {
  4365. height: math.unit(2, "meter"),
  4366. weight: math.unit(80, "kg"),
  4367. name: "Back",
  4368. image: {
  4369. source: "./media/characters/natalya/back.svg"
  4370. }
  4371. }
  4372. },
  4373. [
  4374. {
  4375. name: "Normal",
  4376. height: math.unit(150, "feet"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Megamacro",
  4381. height: math.unit(5, "miles")
  4382. },
  4383. {
  4384. name: "Full-Size",
  4385. height: math.unit(600, "kiloparsecs")
  4386. }
  4387. ]
  4388. ))
  4389. characterMakers.push(() => makeCharacter(
  4390. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4391. {
  4392. front: {
  4393. height: math.unit(2, "meter"),
  4394. weight: math.unit(50, "kg"),
  4395. name: "Front",
  4396. image: {
  4397. source: "./media/characters/erestrebah/front.svg",
  4398. extra: 1262/1162,
  4399. bottom: 96/1358
  4400. }
  4401. },
  4402. back: {
  4403. height: math.unit(2, "meter"),
  4404. weight: math.unit(50, "kg"),
  4405. name: "Back",
  4406. image: {
  4407. source: "./media/characters/erestrebah/back.svg",
  4408. extra: 1257/1139,
  4409. bottom: 13/1270
  4410. }
  4411. },
  4412. wing: {
  4413. height: math.unit(2, "meter"),
  4414. weight: math.unit(50, "kg"),
  4415. name: "Wing",
  4416. image: {
  4417. source: "./media/characters/erestrebah/wing.svg",
  4418. extra: 1262/1162,
  4419. bottom: 96/1358
  4420. }
  4421. },
  4422. mouth: {
  4423. height: math.unit(0.39, "feet"),
  4424. name: "Mouth",
  4425. image: {
  4426. source: "./media/characters/erestrebah/mouth.svg"
  4427. }
  4428. }
  4429. },
  4430. [
  4431. {
  4432. name: "Normal",
  4433. height: math.unit(10, "feet")
  4434. },
  4435. {
  4436. name: "Large",
  4437. height: math.unit(50, "feet"),
  4438. default: true
  4439. },
  4440. {
  4441. name: "Macro",
  4442. height: math.unit(300, "feet")
  4443. },
  4444. {
  4445. name: "Macro+",
  4446. height: math.unit(750, "feet")
  4447. },
  4448. {
  4449. name: "Megamacro",
  4450. height: math.unit(3, "miles")
  4451. }
  4452. ]
  4453. ))
  4454. characterMakers.push(() => makeCharacter(
  4455. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4456. {
  4457. front: {
  4458. height: math.unit(2, "meter"),
  4459. weight: math.unit(80, "kg"),
  4460. name: "Front",
  4461. image: {
  4462. source: "./media/characters/jennifer/front.svg",
  4463. bottom: 0.11,
  4464. extra: 1.16
  4465. }
  4466. },
  4467. frontAlt: {
  4468. height: math.unit(2, "meter"),
  4469. weight: math.unit(80, "kg"),
  4470. name: "Front (Alt)",
  4471. image: {
  4472. source: "./media/characters/jennifer/front-alt.svg"
  4473. }
  4474. }
  4475. },
  4476. [
  4477. {
  4478. name: "Canon Height",
  4479. height: math.unit(120, "feet"),
  4480. default: true
  4481. },
  4482. {
  4483. name: "Macro+",
  4484. height: math.unit(300, "feet")
  4485. },
  4486. {
  4487. name: "Megamacro",
  4488. height: math.unit(20000, "feet")
  4489. }
  4490. ]
  4491. ))
  4492. characterMakers.push(() => makeCharacter(
  4493. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4494. {
  4495. front: {
  4496. height: math.unit(2, "meter"),
  4497. weight: math.unit(50, "kg"),
  4498. name: "Front",
  4499. image: {
  4500. source: "./media/characters/kalista/front.svg",
  4501. extra: 1314/1145,
  4502. bottom: 101/1415
  4503. }
  4504. },
  4505. back: {
  4506. height: math.unit(2, "meter"),
  4507. weight: math.unit(50, "kg"),
  4508. name: "Back",
  4509. image: {
  4510. source: "./media/characters/kalista/back.svg",
  4511. extra: 1366 / 1156,
  4512. bottom: 33.9 / 1362.78
  4513. }
  4514. }
  4515. },
  4516. [
  4517. {
  4518. name: "Uncomfortably Small",
  4519. height: math.unit(10, "feet")
  4520. },
  4521. {
  4522. name: "Small",
  4523. height: math.unit(30, "feet")
  4524. },
  4525. {
  4526. name: "Macro",
  4527. height: math.unit(100, "feet"),
  4528. default: true
  4529. },
  4530. {
  4531. name: "Macro+",
  4532. height: math.unit(2000, "feet")
  4533. },
  4534. {
  4535. name: "True Form",
  4536. height: math.unit(8924, "miles")
  4537. }
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4542. {
  4543. front: {
  4544. height: math.unit(2, "meter"),
  4545. weight: math.unit(120, "kg"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/ggv/front.svg"
  4549. }
  4550. },
  4551. side: {
  4552. height: math.unit(2, "meter"),
  4553. weight: math.unit(120, "kg"),
  4554. name: "Side",
  4555. image: {
  4556. source: "./media/characters/ggv/side.svg"
  4557. }
  4558. }
  4559. },
  4560. [
  4561. {
  4562. name: "Extremely Puny",
  4563. height: math.unit(9 + 5 / 12, "feet")
  4564. },
  4565. {
  4566. name: "Horribly Small",
  4567. height: math.unit(47.7, "miles"),
  4568. default: true
  4569. },
  4570. {
  4571. name: "Reasonably Sized",
  4572. height: math.unit(25000, "parsecs")
  4573. },
  4574. {
  4575. name: "Slightly Uncompressed",
  4576. height: math.unit(7.77e31, "parsecs")
  4577. },
  4578. {
  4579. name: "Omniversal",
  4580. height: math.unit(1e300, "meters")
  4581. },
  4582. ]
  4583. ))
  4584. characterMakers.push(() => makeCharacter(
  4585. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4586. {
  4587. front: {
  4588. height: math.unit(2, "meter"),
  4589. weight: math.unit(75, "lb"),
  4590. name: "Front",
  4591. image: {
  4592. source: "./media/characters/napalm/front.svg"
  4593. }
  4594. },
  4595. back: {
  4596. height: math.unit(2, "meter"),
  4597. weight: math.unit(75, "lb"),
  4598. name: "Back",
  4599. image: {
  4600. source: "./media/characters/napalm/back.svg"
  4601. }
  4602. }
  4603. },
  4604. [
  4605. {
  4606. name: "Standard",
  4607. height: math.unit(55, "feet"),
  4608. default: true
  4609. }
  4610. ]
  4611. ))
  4612. characterMakers.push(() => makeCharacter(
  4613. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4614. {
  4615. front: {
  4616. height: math.unit(7 + 5 / 6, "feet"),
  4617. weight: math.unit(325, "lb"),
  4618. name: "Front",
  4619. image: {
  4620. source: "./media/characters/asana/front.svg",
  4621. extra: 1133 / 1060,
  4622. bottom: 15.2 / 1148.6
  4623. }
  4624. },
  4625. back: {
  4626. height: math.unit(7 + 5 / 6, "feet"),
  4627. weight: math.unit(325, "lb"),
  4628. name: "Back",
  4629. image: {
  4630. source: "./media/characters/asana/back.svg",
  4631. extra: 1114 / 1043,
  4632. bottom: 5 / 1120
  4633. }
  4634. },
  4635. dressedDark: {
  4636. height: math.unit(7 + 5 / 6, "feet"),
  4637. weight: math.unit(325, "lb"),
  4638. name: "Dressed (Dark)",
  4639. image: {
  4640. source: "./media/characters/asana/dressed-dark.svg",
  4641. extra: 1133 / 1060,
  4642. bottom: 15.2 / 1148.6
  4643. }
  4644. },
  4645. dressedLight: {
  4646. height: math.unit(7 + 5 / 6, "feet"),
  4647. weight: math.unit(325, "lb"),
  4648. name: "Dressed (Light)",
  4649. image: {
  4650. source: "./media/characters/asana/dressed-light.svg",
  4651. extra: 1133 / 1060,
  4652. bottom: 15.2 / 1148.6
  4653. }
  4654. },
  4655. },
  4656. [
  4657. {
  4658. name: "Standard",
  4659. height: math.unit(7 + 5 / 6, "feet"),
  4660. default: true
  4661. },
  4662. {
  4663. name: "Large",
  4664. height: math.unit(10, "meters")
  4665. },
  4666. {
  4667. name: "Macro",
  4668. height: math.unit(2500, "meters")
  4669. },
  4670. {
  4671. name: "Megamacro",
  4672. height: math.unit(5e6, "meters")
  4673. },
  4674. {
  4675. name: "Examacro",
  4676. height: math.unit(5e12, "lightyears")
  4677. },
  4678. {
  4679. name: "Max Size",
  4680. height: math.unit(1e31, "lightyears")
  4681. }
  4682. ]
  4683. ))
  4684. characterMakers.push(() => makeCharacter(
  4685. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4686. {
  4687. front: {
  4688. height: math.unit(2, "meter"),
  4689. weight: math.unit(60, "kg"),
  4690. name: "Front",
  4691. image: {
  4692. source: "./media/characters/ebony/front.svg",
  4693. bottom: 0.03,
  4694. extra: 1045 / 810 + 0.03
  4695. }
  4696. },
  4697. side: {
  4698. height: math.unit(2, "meter"),
  4699. weight: math.unit(60, "kg"),
  4700. name: "Side",
  4701. image: {
  4702. source: "./media/characters/ebony/side.svg",
  4703. bottom: 0.03,
  4704. extra: 1045 / 810 + 0.03
  4705. }
  4706. },
  4707. back: {
  4708. height: math.unit(2, "meter"),
  4709. weight: math.unit(60, "kg"),
  4710. name: "Back",
  4711. image: {
  4712. source: "./media/characters/ebony/back.svg",
  4713. bottom: 0.01,
  4714. extra: 1045 / 810 + 0.01
  4715. }
  4716. },
  4717. },
  4718. [
  4719. // TODO check why I did this lol
  4720. {
  4721. name: "Standard",
  4722. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4723. default: true
  4724. },
  4725. {
  4726. name: "Macro",
  4727. height: math.unit(200, "feet")
  4728. },
  4729. {
  4730. name: "Gigamacro",
  4731. height: math.unit(13000, "km")
  4732. }
  4733. ]
  4734. ))
  4735. characterMakers.push(() => makeCharacter(
  4736. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4737. {
  4738. front: {
  4739. height: math.unit(6, "feet"),
  4740. weight: math.unit(175, "lb"),
  4741. name: "Front",
  4742. image: {
  4743. source: "./media/characters/mountain/front.svg",
  4744. extra: 972 / 955,
  4745. bottom: 64 / 1036.6
  4746. }
  4747. },
  4748. back: {
  4749. height: math.unit(6, "feet"),
  4750. weight: math.unit(175, "lb"),
  4751. name: "Back",
  4752. image: {
  4753. source: "./media/characters/mountain/back.svg",
  4754. extra: 970 / 950,
  4755. bottom: 28.25 / 999
  4756. }
  4757. },
  4758. },
  4759. [
  4760. {
  4761. name: "Large",
  4762. height: math.unit(20, "meters")
  4763. },
  4764. {
  4765. name: "Macro",
  4766. height: math.unit(300, "meters")
  4767. },
  4768. {
  4769. name: "Gigamacro",
  4770. height: math.unit(10000, "km"),
  4771. default: true
  4772. },
  4773. {
  4774. name: "Examacro",
  4775. height: math.unit(10e9, "lightyears")
  4776. }
  4777. ]
  4778. ))
  4779. characterMakers.push(() => makeCharacter(
  4780. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4781. {
  4782. front: {
  4783. height: math.unit(8, "feet"),
  4784. weight: math.unit(500, "lb"),
  4785. name: "Front",
  4786. image: {
  4787. source: "./media/characters/rick/front.svg"
  4788. }
  4789. }
  4790. },
  4791. [
  4792. {
  4793. name: "Normal",
  4794. height: math.unit(8, "feet"),
  4795. default: true
  4796. },
  4797. {
  4798. name: "Macro",
  4799. height: math.unit(5, "km")
  4800. }
  4801. ]
  4802. ))
  4803. characterMakers.push(() => makeCharacter(
  4804. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4805. {
  4806. front: {
  4807. height: math.unit(8, "feet"),
  4808. weight: math.unit(120, "lb"),
  4809. name: "Front",
  4810. image: {
  4811. source: "./media/characters/ona/front.svg"
  4812. }
  4813. },
  4814. frontAlt: {
  4815. height: math.unit(8, "feet"),
  4816. weight: math.unit(120, "lb"),
  4817. name: "Front (Alt)",
  4818. image: {
  4819. source: "./media/characters/ona/front-alt.svg"
  4820. }
  4821. },
  4822. back: {
  4823. height: math.unit(8, "feet"),
  4824. weight: math.unit(120, "lb"),
  4825. name: "Back",
  4826. image: {
  4827. source: "./media/characters/ona/back.svg"
  4828. }
  4829. },
  4830. foot: {
  4831. height: math.unit(1.1, "feet"),
  4832. name: "Foot",
  4833. image: {
  4834. source: "./media/characters/ona/foot.svg"
  4835. }
  4836. }
  4837. },
  4838. [
  4839. {
  4840. name: "Megamacro",
  4841. height: math.unit(70, "km"),
  4842. default: true
  4843. },
  4844. {
  4845. name: "Gigamacro",
  4846. height: math.unit(681818, "miles")
  4847. },
  4848. {
  4849. name: "Examacro",
  4850. height: math.unit(3800000, "lightyears")
  4851. },
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4856. {
  4857. front: {
  4858. height: math.unit(12, "feet"),
  4859. weight: math.unit(3000, "lb"),
  4860. name: "Front",
  4861. image: {
  4862. source: "./media/characters/mech/front.svg",
  4863. extra: 2900 / 2770,
  4864. bottom: 110 / 3010
  4865. }
  4866. },
  4867. back: {
  4868. height: math.unit(12, "feet"),
  4869. weight: math.unit(3000, "lb"),
  4870. name: "Back",
  4871. image: {
  4872. source: "./media/characters/mech/back.svg",
  4873. extra: 3011 / 2890,
  4874. bottom: 94 / 3105
  4875. }
  4876. },
  4877. maw: {
  4878. height: math.unit(3.07, "feet"),
  4879. name: "Maw",
  4880. image: {
  4881. source: "./media/characters/mech/maw.svg"
  4882. }
  4883. },
  4884. head: {
  4885. height: math.unit(3.07, "feet"),
  4886. name: "Head",
  4887. image: {
  4888. source: "./media/characters/mech/head.svg"
  4889. }
  4890. },
  4891. dick: {
  4892. height: math.unit(1.43, "feet"),
  4893. name: "Dick",
  4894. image: {
  4895. source: "./media/characters/mech/dick.svg"
  4896. }
  4897. },
  4898. },
  4899. [
  4900. {
  4901. name: "Normal",
  4902. height: math.unit(12, "feet")
  4903. },
  4904. {
  4905. name: "Macro",
  4906. height: math.unit(300, "feet"),
  4907. default: true
  4908. },
  4909. {
  4910. name: "Macro+",
  4911. height: math.unit(1500, "feet")
  4912. },
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4917. {
  4918. front: {
  4919. height: math.unit(1.3, "meter"),
  4920. weight: math.unit(30, "kg"),
  4921. name: "Front",
  4922. image: {
  4923. source: "./media/characters/gregory/front.svg",
  4924. }
  4925. }
  4926. },
  4927. [
  4928. {
  4929. name: "Normal",
  4930. height: math.unit(1.3, "meter"),
  4931. default: true
  4932. },
  4933. {
  4934. name: "Macro",
  4935. height: math.unit(20, "meter")
  4936. }
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4941. {
  4942. front: {
  4943. height: math.unit(2.8, "meter"),
  4944. weight: math.unit(200, "kg"),
  4945. name: "Front",
  4946. image: {
  4947. source: "./media/characters/elory/front.svg",
  4948. }
  4949. }
  4950. },
  4951. [
  4952. {
  4953. name: "Normal",
  4954. height: math.unit(2.8, "meter"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Macro",
  4959. height: math.unit(38, "meter")
  4960. }
  4961. ]
  4962. ))
  4963. characterMakers.push(() => makeCharacter(
  4964. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4965. {
  4966. front: {
  4967. height: math.unit(470, "feet"),
  4968. weight: math.unit(924, "tons"),
  4969. name: "Front",
  4970. image: {
  4971. source: "./media/characters/angelpatamon/front.svg",
  4972. }
  4973. }
  4974. },
  4975. [
  4976. {
  4977. name: "Normal",
  4978. height: math.unit(470, "feet"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Deity Size I",
  4983. height: math.unit(28651.2, "km")
  4984. },
  4985. {
  4986. name: "Deity Size II",
  4987. height: math.unit(171907.2, "km")
  4988. }
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4993. {
  4994. side: {
  4995. height: math.unit(7.2, "meter"),
  4996. weight: math.unit(8.2, "tons"),
  4997. name: "Side",
  4998. image: {
  4999. source: "./media/characters/cryae/side.svg",
  5000. extra: 3500 / 1500
  5001. }
  5002. }
  5003. },
  5004. [
  5005. {
  5006. name: "Normal",
  5007. height: math.unit(7.2, "meter"),
  5008. default: true
  5009. }
  5010. ]
  5011. ))
  5012. characterMakers.push(() => makeCharacter(
  5013. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5014. {
  5015. front: {
  5016. height: math.unit(6, "feet"),
  5017. weight: math.unit(175, "lb"),
  5018. name: "Front",
  5019. image: {
  5020. source: "./media/characters/xera/front.svg",
  5021. extra: 2377 / 1972,
  5022. bottom: 75.5 / 2452
  5023. }
  5024. },
  5025. side: {
  5026. height: math.unit(6, "feet"),
  5027. weight: math.unit(175, "lb"),
  5028. name: "Side",
  5029. image: {
  5030. source: "./media/characters/xera/side.svg",
  5031. extra: 2345 / 2019,
  5032. bottom: 39.7 / 2384
  5033. }
  5034. },
  5035. back: {
  5036. height: math.unit(6, "feet"),
  5037. weight: math.unit(175, "lb"),
  5038. name: "Back",
  5039. image: {
  5040. source: "./media/characters/xera/back.svg",
  5041. extra: 2095 / 1984,
  5042. bottom: 67 / 2166
  5043. }
  5044. },
  5045. },
  5046. [
  5047. {
  5048. name: "Small",
  5049. height: math.unit(10, "feet")
  5050. },
  5051. {
  5052. name: "Macro",
  5053. height: math.unit(500, "meters"),
  5054. default: true
  5055. },
  5056. {
  5057. name: "Macro+",
  5058. height: math.unit(10, "km")
  5059. },
  5060. {
  5061. name: "Gigamacro",
  5062. height: math.unit(25000, "km")
  5063. },
  5064. {
  5065. name: "Teramacro",
  5066. height: math.unit(3e6, "km")
  5067. }
  5068. ]
  5069. ))
  5070. characterMakers.push(() => makeCharacter(
  5071. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5072. {
  5073. front: {
  5074. height: math.unit(6, "feet"),
  5075. weight: math.unit(175, "lb"),
  5076. name: "Front",
  5077. image: {
  5078. source: "./media/characters/nebula/front.svg",
  5079. extra: 2566 / 2362,
  5080. bottom: 81 / 2644
  5081. }
  5082. }
  5083. },
  5084. [
  5085. {
  5086. name: "Small",
  5087. height: math.unit(4.5, "meters")
  5088. },
  5089. {
  5090. name: "Macro",
  5091. height: math.unit(1500, "meters"),
  5092. default: true
  5093. },
  5094. {
  5095. name: "Megamacro",
  5096. height: math.unit(150, "km")
  5097. },
  5098. {
  5099. name: "Gigamacro",
  5100. height: math.unit(27000, "km")
  5101. }
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5106. {
  5107. front: {
  5108. height: math.unit(6, "feet"),
  5109. weight: math.unit(225, "lb"),
  5110. name: "Front",
  5111. image: {
  5112. source: "./media/characters/abysgar/front.svg",
  5113. extra: 1739/1614,
  5114. bottom: 71/1810
  5115. }
  5116. },
  5117. frontNsfw: {
  5118. height: math.unit(6, "feet"),
  5119. weight: math.unit(225, "lb"),
  5120. name: "Front (NSFW)",
  5121. image: {
  5122. source: "./media/characters/abysgar/front-nsfw.svg",
  5123. extra: 1739/1614,
  5124. bottom: 71/1810
  5125. }
  5126. },
  5127. back: {
  5128. height: math.unit(4.6, "feet"),
  5129. weight: math.unit(225, "lb"),
  5130. name: "Back",
  5131. image: {
  5132. source: "./media/characters/abysgar/back.svg",
  5133. extra: 1384/1327,
  5134. bottom: 0/1384
  5135. }
  5136. },
  5137. head: {
  5138. height: math.unit(1.25, "feet"),
  5139. name: "Head",
  5140. image: {
  5141. source: "./media/characters/abysgar/head.svg",
  5142. extra: 669/569,
  5143. bottom: 0/669
  5144. }
  5145. },
  5146. },
  5147. [
  5148. {
  5149. name: "Small",
  5150. height: math.unit(4.5, "meters")
  5151. },
  5152. {
  5153. name: "Macro",
  5154. height: math.unit(1250, "meters"),
  5155. default: true
  5156. },
  5157. {
  5158. name: "Megamacro",
  5159. height: math.unit(125, "km")
  5160. },
  5161. {
  5162. name: "Gigamacro",
  5163. height: math.unit(26000, "km")
  5164. }
  5165. ]
  5166. ))
  5167. characterMakers.push(() => makeCharacter(
  5168. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5169. {
  5170. front: {
  5171. height: math.unit(6, "feet"),
  5172. weight: math.unit(180, "lb"),
  5173. name: "Front",
  5174. image: {
  5175. source: "./media/characters/yakuz/front.svg"
  5176. }
  5177. }
  5178. },
  5179. [
  5180. {
  5181. name: "Small",
  5182. height: math.unit(5, "meters")
  5183. },
  5184. {
  5185. name: "Macro",
  5186. height: math.unit(1500, "meters"),
  5187. default: true
  5188. },
  5189. {
  5190. name: "Megamacro",
  5191. height: math.unit(200, "km")
  5192. },
  5193. {
  5194. name: "Gigamacro",
  5195. height: math.unit(100000, "km")
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5201. {
  5202. front: {
  5203. height: math.unit(6, "feet"),
  5204. weight: math.unit(175, "lb"),
  5205. name: "Front",
  5206. image: {
  5207. source: "./media/characters/mirova/front.svg",
  5208. extra: 3334 / 3071,
  5209. bottom: 42 / 3375.6
  5210. }
  5211. }
  5212. },
  5213. [
  5214. {
  5215. name: "Small",
  5216. height: math.unit(5, "meters")
  5217. },
  5218. {
  5219. name: "Macro",
  5220. height: math.unit(900, "meters"),
  5221. default: true
  5222. },
  5223. {
  5224. name: "Megamacro",
  5225. height: math.unit(135, "km")
  5226. },
  5227. {
  5228. name: "Gigamacro",
  5229. height: math.unit(20000, "km")
  5230. }
  5231. ]
  5232. ))
  5233. characterMakers.push(() => makeCharacter(
  5234. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5235. {
  5236. side: {
  5237. height: math.unit(28.35, "feet"),
  5238. weight: math.unit(99.75, "tons"),
  5239. name: "Side",
  5240. image: {
  5241. source: "./media/characters/asana-mech/side.svg",
  5242. extra: 923 / 699,
  5243. bottom: 50 / 975
  5244. }
  5245. },
  5246. chaingun: {
  5247. height: math.unit(7, "feet"),
  5248. weight: math.unit(2400, "lb"),
  5249. name: "Chaingun",
  5250. image: {
  5251. source: "./media/characters/asana-mech/chaingun.svg"
  5252. }
  5253. },
  5254. laser: {
  5255. height: math.unit(7.12, "feet"),
  5256. weight: math.unit(2000, "lb"),
  5257. name: "Laser",
  5258. image: {
  5259. source: "./media/characters/asana-mech/laser.svg"
  5260. }
  5261. },
  5262. },
  5263. [
  5264. {
  5265. name: "Normal",
  5266. height: math.unit(28.35, "feet"),
  5267. default: true
  5268. },
  5269. {
  5270. name: "Macro",
  5271. height: math.unit(2500, "feet")
  5272. },
  5273. {
  5274. name: "Megamacro",
  5275. height: math.unit(25, "miles")
  5276. },
  5277. {
  5278. name: "Examacro",
  5279. height: math.unit(6e8, "lightyears")
  5280. },
  5281. ]
  5282. ))
  5283. characterMakers.push(() => makeCharacter(
  5284. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5285. {
  5286. front: {
  5287. height: math.unit(5, "meters"),
  5288. weight: math.unit(1000, "kg"),
  5289. name: "Front",
  5290. image: {
  5291. source: "./media/characters/asche/front.svg",
  5292. extra: 1258 / 1190,
  5293. bottom: 47 / 1305
  5294. }
  5295. },
  5296. frontUnderwear: {
  5297. height: math.unit(5, "meters"),
  5298. weight: math.unit(1000, "kg"),
  5299. name: "Front (Underwear)",
  5300. image: {
  5301. source: "./media/characters/asche/front-underwear.svg",
  5302. extra: 1258 / 1190,
  5303. bottom: 47 / 1305
  5304. }
  5305. },
  5306. frontDressed: {
  5307. height: math.unit(5, "meters"),
  5308. weight: math.unit(1000, "kg"),
  5309. name: "Front (Dressed)",
  5310. image: {
  5311. source: "./media/characters/asche/front-dressed.svg",
  5312. extra: 1258 / 1190,
  5313. bottom: 47 / 1305
  5314. }
  5315. },
  5316. frontArmor: {
  5317. height: math.unit(5, "meters"),
  5318. weight: math.unit(1000, "kg"),
  5319. name: "Front (Armored)",
  5320. image: {
  5321. source: "./media/characters/asche/front-armored.svg",
  5322. extra: 1374 / 1308,
  5323. bottom: 23 / 1397
  5324. }
  5325. },
  5326. mp724: {
  5327. height: math.unit(0.96, "meters"),
  5328. weight: math.unit(38, "kg"),
  5329. name: "H&K MP724",
  5330. image: {
  5331. source: "./media/characters/asche/h&k-mp724.svg"
  5332. }
  5333. },
  5334. side: {
  5335. height: math.unit(5, "meters"),
  5336. weight: math.unit(1000, "kg"),
  5337. name: "Side",
  5338. image: {
  5339. source: "./media/characters/asche/side.svg",
  5340. extra: 1717 / 1609,
  5341. bottom: 0.005
  5342. }
  5343. },
  5344. back: {
  5345. height: math.unit(5, "meters"),
  5346. weight: math.unit(1000, "kg"),
  5347. name: "Back",
  5348. image: {
  5349. source: "./media/characters/asche/back.svg",
  5350. extra: 1570 / 1501
  5351. }
  5352. },
  5353. },
  5354. [
  5355. {
  5356. name: "DEFCON 5",
  5357. height: math.unit(5, "meters")
  5358. },
  5359. {
  5360. name: "DEFCON 4",
  5361. height: math.unit(500, "meters"),
  5362. default: true
  5363. },
  5364. {
  5365. name: "DEFCON 3",
  5366. height: math.unit(5, "km")
  5367. },
  5368. {
  5369. name: "DEFCON 2",
  5370. height: math.unit(500, "km")
  5371. },
  5372. {
  5373. name: "DEFCON 1",
  5374. height: math.unit(500000, "km")
  5375. },
  5376. {
  5377. name: "DEFCON 0",
  5378. height: math.unit(3, "gigaparsecs")
  5379. },
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5384. {
  5385. front: {
  5386. height: math.unit(7, "feet"),
  5387. weight: math.unit(92.7, "kg"),
  5388. name: "Front",
  5389. image: {
  5390. source: "./media/characters/gale/front.svg",
  5391. extra: 977/919,
  5392. bottom: 105/1082
  5393. }
  5394. },
  5395. side: {
  5396. height: math.unit(6.7, "feet"),
  5397. weight: math.unit(92.7, "kg"),
  5398. name: "Side",
  5399. image: {
  5400. source: "./media/characters/gale/side.svg",
  5401. extra: 978/922,
  5402. bottom: 140/1118
  5403. }
  5404. },
  5405. back: {
  5406. height: math.unit(7, "feet"),
  5407. weight: math.unit(92.7, "kg"),
  5408. name: "Back",
  5409. image: {
  5410. source: "./media/characters/gale/back.svg",
  5411. extra: 966/920,
  5412. bottom: 61/1027
  5413. }
  5414. },
  5415. maw: {
  5416. height: math.unit(2.23, "feet"),
  5417. name: "Maw",
  5418. image: {
  5419. source: "./media/characters/gale/maw.svg"
  5420. }
  5421. },
  5422. foot: {
  5423. height: math.unit(2.1, "feet"),
  5424. name: "Foot",
  5425. image: {
  5426. source: "./media/characters/gale/foot.svg"
  5427. }
  5428. },
  5429. },
  5430. [
  5431. {
  5432. name: "Normal",
  5433. height: math.unit(7, "feet")
  5434. },
  5435. {
  5436. name: "Macro",
  5437. height: math.unit(150, "feet"),
  5438. default: true
  5439. },
  5440. {
  5441. name: "Macro+",
  5442. height: math.unit(300, "feet")
  5443. },
  5444. ]
  5445. ))
  5446. characterMakers.push(() => makeCharacter(
  5447. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5448. {
  5449. front: {
  5450. height: math.unit(5 + 10/12, "feet"),
  5451. weight: math.unit(67, "kg"),
  5452. name: "Front",
  5453. image: {
  5454. source: "./media/characters/draylen/front.svg",
  5455. extra: 832/777,
  5456. bottom: 85/917
  5457. }
  5458. }
  5459. },
  5460. [
  5461. {
  5462. name: "Normal",
  5463. height: math.unit(5 + 10/12, "feet")
  5464. },
  5465. {
  5466. name: "Macro",
  5467. height: math.unit(150, "feet"),
  5468. default: true
  5469. }
  5470. ]
  5471. ))
  5472. characterMakers.push(() => makeCharacter(
  5473. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5474. {
  5475. front: {
  5476. height: math.unit(7 + 9 / 12, "feet"),
  5477. weight: math.unit(379, "lbs"),
  5478. name: "Front",
  5479. image: {
  5480. source: "./media/characters/chez/front.svg"
  5481. }
  5482. },
  5483. side: {
  5484. height: math.unit(7 + 9 / 12, "feet"),
  5485. weight: math.unit(379, "lbs"),
  5486. name: "Side",
  5487. image: {
  5488. source: "./media/characters/chez/side.svg"
  5489. }
  5490. }
  5491. },
  5492. [
  5493. {
  5494. name: "Normal",
  5495. height: math.unit(7 + 9 / 12, "feet"),
  5496. default: true
  5497. },
  5498. {
  5499. name: "God King",
  5500. height: math.unit(9750000, "meters")
  5501. }
  5502. ]
  5503. ))
  5504. characterMakers.push(() => makeCharacter(
  5505. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5506. {
  5507. front: {
  5508. height: math.unit(6, "feet"),
  5509. weight: math.unit(275, "lbs"),
  5510. name: "Front",
  5511. image: {
  5512. source: "./media/characters/kaylum/front.svg",
  5513. bottom: 0.01,
  5514. extra: 1166 / 1031
  5515. }
  5516. },
  5517. frontWingless: {
  5518. height: math.unit(6, "feet"),
  5519. weight: math.unit(275, "lbs"),
  5520. name: "Front (Wingless)",
  5521. image: {
  5522. source: "./media/characters/kaylum/front-wingless.svg",
  5523. bottom: 0.01,
  5524. extra: 1117 / 1031
  5525. }
  5526. }
  5527. },
  5528. [
  5529. {
  5530. name: "Normal",
  5531. height: math.unit(3.05, "meters")
  5532. },
  5533. {
  5534. name: "Master",
  5535. height: math.unit(5.5, "meters")
  5536. },
  5537. {
  5538. name: "Rampage",
  5539. height: math.unit(19, "meters")
  5540. },
  5541. {
  5542. name: "Macro Lite",
  5543. height: math.unit(37, "meters")
  5544. },
  5545. {
  5546. name: "Hyper Predator",
  5547. height: math.unit(61, "meters")
  5548. },
  5549. {
  5550. name: "Macro",
  5551. height: math.unit(138, "meters"),
  5552. default: true
  5553. }
  5554. ]
  5555. ))
  5556. characterMakers.push(() => makeCharacter(
  5557. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5558. {
  5559. front: {
  5560. height: math.unit(5 + 5 / 12, "feet"),
  5561. weight: math.unit(120, "lbs"),
  5562. name: "Front",
  5563. image: {
  5564. source: "./media/characters/geta/front.svg",
  5565. extra: 1003/933,
  5566. bottom: 21/1024
  5567. }
  5568. },
  5569. paw: {
  5570. height: math.unit(0.35, "feet"),
  5571. name: "Paw",
  5572. image: {
  5573. source: "./media/characters/geta/paw.svg"
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Micro",
  5580. height: math.unit(3, "inches"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Normal",
  5585. height: math.unit(5 + 5 / 12, "feet")
  5586. }
  5587. ]
  5588. ))
  5589. characterMakers.push(() => makeCharacter(
  5590. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5591. {
  5592. front: {
  5593. height: math.unit(6, "feet"),
  5594. weight: math.unit(300, "lbs"),
  5595. name: "Front",
  5596. image: {
  5597. source: "./media/characters/tyrnn/front.svg"
  5598. }
  5599. }
  5600. },
  5601. [
  5602. {
  5603. name: "Main Height",
  5604. height: math.unit(355, "feet"),
  5605. default: true
  5606. },
  5607. {
  5608. name: "Fave. Height",
  5609. height: math.unit(2400, "feet")
  5610. }
  5611. ]
  5612. ))
  5613. characterMakers.push(() => makeCharacter(
  5614. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5615. {
  5616. front: {
  5617. height: math.unit(6, "feet"),
  5618. weight: math.unit(300, "lbs"),
  5619. name: "Front",
  5620. image: {
  5621. source: "./media/characters/appledectomy/front.svg"
  5622. }
  5623. }
  5624. },
  5625. [
  5626. {
  5627. name: "Macro",
  5628. height: math.unit(2500, "feet")
  5629. },
  5630. {
  5631. name: "Megamacro",
  5632. height: math.unit(50, "miles"),
  5633. default: true
  5634. },
  5635. {
  5636. name: "Gigamacro",
  5637. height: math.unit(5000, "miles")
  5638. },
  5639. {
  5640. name: "Teramacro",
  5641. height: math.unit(250000, "miles")
  5642. },
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5647. {
  5648. front: {
  5649. height: math.unit(6, "feet"),
  5650. weight: math.unit(200, "lbs"),
  5651. name: "Front",
  5652. image: {
  5653. source: "./media/characters/vulpes/front.svg",
  5654. extra: 573 / 543,
  5655. bottom: 0.033
  5656. }
  5657. },
  5658. side: {
  5659. height: math.unit(6, "feet"),
  5660. weight: math.unit(200, "lbs"),
  5661. name: "Side",
  5662. image: {
  5663. source: "./media/characters/vulpes/side.svg",
  5664. extra: 577 / 549,
  5665. bottom: 11 / 588
  5666. }
  5667. },
  5668. back: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(200, "lbs"),
  5671. name: "Back",
  5672. image: {
  5673. source: "./media/characters/vulpes/back.svg",
  5674. extra: 573 / 549,
  5675. bottom: 20 / 593
  5676. }
  5677. },
  5678. feet: {
  5679. height: math.unit(1.276, "feet"),
  5680. name: "Feet",
  5681. image: {
  5682. source: "./media/characters/vulpes/feet.svg"
  5683. }
  5684. },
  5685. maw: {
  5686. height: math.unit(1.18, "feet"),
  5687. name: "Maw",
  5688. image: {
  5689. source: "./media/characters/vulpes/maw.svg"
  5690. }
  5691. },
  5692. },
  5693. [
  5694. {
  5695. name: "Micro",
  5696. height: math.unit(2, "inches")
  5697. },
  5698. {
  5699. name: "Normal",
  5700. height: math.unit(6.3, "feet")
  5701. },
  5702. {
  5703. name: "Macro",
  5704. height: math.unit(850, "feet")
  5705. },
  5706. {
  5707. name: "Megamacro",
  5708. height: math.unit(7500, "feet"),
  5709. default: true
  5710. },
  5711. {
  5712. name: "Gigamacro",
  5713. height: math.unit(570000, "miles")
  5714. }
  5715. ]
  5716. ))
  5717. characterMakers.push(() => makeCharacter(
  5718. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5719. {
  5720. front: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(210, "lbs"),
  5723. name: "Front",
  5724. image: {
  5725. source: "./media/characters/rain-fallen/front.svg"
  5726. }
  5727. },
  5728. side: {
  5729. height: math.unit(6, "feet"),
  5730. weight: math.unit(210, "lbs"),
  5731. name: "Side",
  5732. image: {
  5733. source: "./media/characters/rain-fallen/side.svg"
  5734. }
  5735. },
  5736. back: {
  5737. height: math.unit(6, "feet"),
  5738. weight: math.unit(210, "lbs"),
  5739. name: "Back",
  5740. image: {
  5741. source: "./media/characters/rain-fallen/back.svg"
  5742. }
  5743. },
  5744. feral: {
  5745. height: math.unit(9, "feet"),
  5746. weight: math.unit(700, "lbs"),
  5747. name: "Feral",
  5748. image: {
  5749. source: "./media/characters/rain-fallen/feral.svg"
  5750. }
  5751. },
  5752. },
  5753. [
  5754. {
  5755. name: "Meddling with Mortals",
  5756. height: math.unit(8 + 8/12, "feet")
  5757. },
  5758. {
  5759. name: "Normal",
  5760. height: math.unit(5, "meter")
  5761. },
  5762. {
  5763. name: "Macro",
  5764. height: math.unit(150, "meter"),
  5765. default: true
  5766. },
  5767. {
  5768. name: "Megamacro",
  5769. height: math.unit(278e6, "meter")
  5770. },
  5771. {
  5772. name: "Gigamacro",
  5773. height: math.unit(2e9, "meter")
  5774. },
  5775. {
  5776. name: "Teramacro",
  5777. height: math.unit(8e12, "meter")
  5778. },
  5779. {
  5780. name: "Devourer",
  5781. height: math.unit(14, "zettameters")
  5782. },
  5783. {
  5784. name: "Scarlet King",
  5785. height: math.unit(18, "yottameters")
  5786. },
  5787. {
  5788. name: "Void",
  5789. height: math.unit(1e88, "yottameters")
  5790. }
  5791. ]
  5792. ))
  5793. characterMakers.push(() => makeCharacter(
  5794. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5795. {
  5796. standing: {
  5797. height: math.unit(6, "feet"),
  5798. weight: math.unit(180, "lbs"),
  5799. name: "Standing",
  5800. image: {
  5801. source: "./media/characters/zaakira/standing.svg",
  5802. extra: 1599/1504,
  5803. bottom: 39/1638
  5804. }
  5805. },
  5806. laying: {
  5807. height: math.unit(3.3, "feet"),
  5808. weight: math.unit(180, "lbs"),
  5809. name: "Laying",
  5810. image: {
  5811. source: "./media/characters/zaakira/laying.svg"
  5812. }
  5813. },
  5814. },
  5815. [
  5816. {
  5817. name: "Normal",
  5818. height: math.unit(12, "feet")
  5819. },
  5820. {
  5821. name: "Macro",
  5822. height: math.unit(279, "feet"),
  5823. default: true
  5824. }
  5825. ]
  5826. ))
  5827. characterMakers.push(() => makeCharacter(
  5828. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5829. {
  5830. femSfw: {
  5831. height: math.unit(8, "feet"),
  5832. weight: math.unit(350, "lb"),
  5833. name: "Fem",
  5834. image: {
  5835. source: "./media/characters/sigvald/fem-sfw.svg",
  5836. extra: 182 / 164,
  5837. bottom: 8.7 / 190.5
  5838. }
  5839. },
  5840. femNsfw: {
  5841. height: math.unit(8, "feet"),
  5842. weight: math.unit(350, "lb"),
  5843. name: "Fem (NSFW)",
  5844. image: {
  5845. source: "./media/characters/sigvald/fem-nsfw.svg",
  5846. extra: 182 / 164,
  5847. bottom: 8.7 / 190.5
  5848. }
  5849. },
  5850. maleNsfw: {
  5851. height: math.unit(8, "feet"),
  5852. weight: math.unit(350, "lb"),
  5853. name: "Male (NSFW)",
  5854. image: {
  5855. source: "./media/characters/sigvald/male-nsfw.svg",
  5856. extra: 182 / 164,
  5857. bottom: 8.7 / 190.5
  5858. }
  5859. },
  5860. hermNsfw: {
  5861. height: math.unit(8, "feet"),
  5862. weight: math.unit(350, "lb"),
  5863. name: "Herm (NSFW)",
  5864. image: {
  5865. source: "./media/characters/sigvald/herm-nsfw.svg",
  5866. extra: 182 / 164,
  5867. bottom: 8.7 / 190.5
  5868. }
  5869. },
  5870. dick: {
  5871. height: math.unit(2.36, "feet"),
  5872. name: "Dick",
  5873. image: {
  5874. source: "./media/characters/sigvald/dick.svg"
  5875. }
  5876. },
  5877. eye: {
  5878. height: math.unit(0.31, "feet"),
  5879. name: "Eye",
  5880. image: {
  5881. source: "./media/characters/sigvald/eye.svg"
  5882. }
  5883. },
  5884. mouth: {
  5885. height: math.unit(0.92, "feet"),
  5886. name: "Mouth",
  5887. image: {
  5888. source: "./media/characters/sigvald/mouth.svg"
  5889. }
  5890. },
  5891. paws: {
  5892. height: math.unit(2.2, "feet"),
  5893. name: "Paws",
  5894. image: {
  5895. source: "./media/characters/sigvald/paws.svg"
  5896. }
  5897. }
  5898. },
  5899. [
  5900. {
  5901. name: "Normal",
  5902. height: math.unit(8, "feet")
  5903. },
  5904. {
  5905. name: "Large",
  5906. height: math.unit(12, "feet")
  5907. },
  5908. {
  5909. name: "Larger",
  5910. height: math.unit(20, "feet")
  5911. },
  5912. {
  5913. name: "Macro",
  5914. height: math.unit(150, "feet")
  5915. },
  5916. {
  5917. name: "Macro+",
  5918. height: math.unit(200, "feet"),
  5919. default: true
  5920. },
  5921. ]
  5922. ))
  5923. characterMakers.push(() => makeCharacter(
  5924. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5925. {
  5926. side: {
  5927. height: math.unit(12, "feet"),
  5928. weight: math.unit(2000, "kg"),
  5929. name: "Side",
  5930. image: {
  5931. source: "./media/characters/scott/side.svg",
  5932. extra: 754 / 724,
  5933. bottom: 0.069
  5934. }
  5935. },
  5936. upright: {
  5937. height: math.unit(12, "feet"),
  5938. weight: math.unit(2000, "kg"),
  5939. name: "Upright",
  5940. image: {
  5941. source: "./media/characters/scott/upright.svg",
  5942. extra: 3881 / 3722,
  5943. bottom: 0.05
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(12, "feet"),
  5951. default: true
  5952. },
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5957. {
  5958. side: {
  5959. height: math.unit(8, "meters"),
  5960. weight: math.unit(84755, "lbs"),
  5961. name: "Side",
  5962. image: {
  5963. source: "./media/characters/tobias/side.svg",
  5964. extra: 1474 / 1096,
  5965. bottom: 38.9 / 1513.1235
  5966. }
  5967. },
  5968. },
  5969. [
  5970. {
  5971. name: "Normal",
  5972. height: math.unit(8, "meters"),
  5973. default: true
  5974. },
  5975. ]
  5976. ))
  5977. characterMakers.push(() => makeCharacter(
  5978. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5979. {
  5980. front: {
  5981. height: math.unit(5.5, "feet"),
  5982. weight: math.unit(400, "lbs"),
  5983. name: "Front",
  5984. image: {
  5985. source: "./media/characters/kieran/front.svg",
  5986. extra: 2694 / 2364,
  5987. bottom: 217 / 2908
  5988. }
  5989. },
  5990. side: {
  5991. height: math.unit(5.5, "feet"),
  5992. weight: math.unit(400, "lbs"),
  5993. name: "Side",
  5994. image: {
  5995. source: "./media/characters/kieran/side.svg",
  5996. extra: 875 / 777,
  5997. bottom: 84.6 / 959
  5998. }
  5999. },
  6000. },
  6001. [
  6002. {
  6003. name: "Normal",
  6004. height: math.unit(5.5, "feet"),
  6005. default: true
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6011. {
  6012. side: {
  6013. height: math.unit(2, "meters"),
  6014. weight: math.unit(70, "kg"),
  6015. name: "Side",
  6016. image: {
  6017. source: "./media/characters/sanya/side.svg",
  6018. bottom: 0.02,
  6019. extra: 1.02
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Small",
  6026. height: math.unit(2, "meters")
  6027. },
  6028. {
  6029. name: "Normal",
  6030. height: math.unit(3, "meters")
  6031. },
  6032. {
  6033. name: "Macro",
  6034. height: math.unit(16, "meters"),
  6035. default: true
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(2, "meters"),
  6044. weight: math.unit(120, "kg"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/miranda/front.svg",
  6048. extra: 195 / 185,
  6049. bottom: 10.9 / 206.5
  6050. }
  6051. },
  6052. back: {
  6053. height: math.unit(2, "meters"),
  6054. weight: math.unit(120, "kg"),
  6055. name: "Back",
  6056. image: {
  6057. source: "./media/characters/miranda/back.svg",
  6058. extra: 201 / 193,
  6059. bottom: 2.3 / 203.7
  6060. }
  6061. },
  6062. },
  6063. [
  6064. {
  6065. name: "Normal",
  6066. height: math.unit(10, "feet"),
  6067. default: true
  6068. }
  6069. ]
  6070. ))
  6071. characterMakers.push(() => makeCharacter(
  6072. { name: "James", species: ["deer"], tags: ["anthro"] },
  6073. {
  6074. side: {
  6075. height: math.unit(2, "meters"),
  6076. weight: math.unit(100, "kg"),
  6077. name: "Front",
  6078. image: {
  6079. source: "./media/characters/james/front.svg",
  6080. extra: 10 / 8.5
  6081. }
  6082. },
  6083. },
  6084. [
  6085. {
  6086. name: "Normal",
  6087. height: math.unit(8.5, "feet"),
  6088. default: true
  6089. }
  6090. ]
  6091. ))
  6092. characterMakers.push(() => makeCharacter(
  6093. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6094. {
  6095. side: {
  6096. height: math.unit(9.5, "feet"),
  6097. weight: math.unit(2500, "lbs"),
  6098. name: "Side",
  6099. image: {
  6100. source: "./media/characters/heather/side.svg"
  6101. }
  6102. },
  6103. },
  6104. [
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(9.5, "feet"),
  6108. default: true
  6109. }
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6114. {
  6115. side: {
  6116. height: math.unit(6.5, "feet"),
  6117. weight: math.unit(400, "lbs"),
  6118. name: "Side",
  6119. image: {
  6120. source: "./media/characters/lukas/side.svg",
  6121. extra: 7.25 / 6.5
  6122. }
  6123. },
  6124. },
  6125. [
  6126. {
  6127. name: "Normal",
  6128. height: math.unit(6.5, "feet"),
  6129. default: true
  6130. }
  6131. ]
  6132. ))
  6133. characterMakers.push(() => makeCharacter(
  6134. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6135. {
  6136. side: {
  6137. height: math.unit(5, "feet"),
  6138. weight: math.unit(3000, "lbs"),
  6139. name: "Side",
  6140. image: {
  6141. source: "./media/characters/louise/side.svg"
  6142. }
  6143. },
  6144. },
  6145. [
  6146. {
  6147. name: "Normal",
  6148. height: math.unit(5, "feet"),
  6149. default: true
  6150. }
  6151. ]
  6152. ))
  6153. characterMakers.push(() => makeCharacter(
  6154. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6155. {
  6156. side: {
  6157. height: math.unit(6, "feet"),
  6158. weight: math.unit(150, "lbs"),
  6159. name: "Side",
  6160. image: {
  6161. source: "./media/characters/ramona/side.svg",
  6162. extra: 871/854,
  6163. bottom: 41/912
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(6 + 4/12, "feet")
  6171. },
  6172. {
  6173. name: "Minimacro",
  6174. height: math.unit(5.3, "meters"),
  6175. default: true
  6176. },
  6177. {
  6178. name: "Macro",
  6179. height: math.unit(20, "stories")
  6180. },
  6181. {
  6182. name: "Macro+",
  6183. height: math.unit(50, "stories")
  6184. },
  6185. ]
  6186. ))
  6187. characterMakers.push(() => makeCharacter(
  6188. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6189. {
  6190. standing: {
  6191. height: math.unit(5.75, "feet"),
  6192. weight: math.unit(160, "lbs"),
  6193. name: "Standing",
  6194. image: {
  6195. source: "./media/characters/deerpuff/standing.svg",
  6196. extra: 682 / 624
  6197. }
  6198. },
  6199. sitting: {
  6200. height: math.unit(5.75 / 1.79, "feet"),
  6201. weight: math.unit(160, "lbs"),
  6202. name: "Sitting",
  6203. image: {
  6204. source: "./media/characters/deerpuff/sitting.svg",
  6205. bottom: 44 / 400,
  6206. extra: 1
  6207. }
  6208. },
  6209. taurLaying: {
  6210. height: math.unit(6, "feet"),
  6211. weight: math.unit(400, "lbs"),
  6212. name: "Taur (Laying)",
  6213. image: {
  6214. source: "./media/characters/deerpuff/taur-laying.svg"
  6215. }
  6216. },
  6217. },
  6218. [
  6219. {
  6220. name: "Puffball",
  6221. height: math.unit(6, "inches")
  6222. },
  6223. {
  6224. name: "Normalpuff",
  6225. height: math.unit(5.75, "feet")
  6226. },
  6227. {
  6228. name: "Macropuff",
  6229. height: math.unit(1500, "feet"),
  6230. default: true
  6231. },
  6232. {
  6233. name: "Megapuff",
  6234. height: math.unit(500, "miles")
  6235. },
  6236. {
  6237. name: "Gigapuff",
  6238. height: math.unit(250000, "miles")
  6239. },
  6240. {
  6241. name: "Omegapuff",
  6242. height: math.unit(1000, "lightyears")
  6243. },
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6248. {
  6249. stomping: {
  6250. height: math.unit(6, "feet"),
  6251. weight: math.unit(170, "lbs"),
  6252. name: "Stomping",
  6253. image: {
  6254. source: "./media/characters/vivian/stomping.svg"
  6255. }
  6256. },
  6257. sitting: {
  6258. height: math.unit(6 / 1.75, "feet"),
  6259. weight: math.unit(170, "lbs"),
  6260. name: "Sitting",
  6261. image: {
  6262. source: "./media/characters/vivian/sitting.svg",
  6263. bottom: 1 / 6.4,
  6264. extra: 1,
  6265. }
  6266. },
  6267. },
  6268. [
  6269. {
  6270. name: "Normal",
  6271. height: math.unit(7, "feet"),
  6272. default: true
  6273. },
  6274. {
  6275. name: "Macro",
  6276. height: math.unit(10, "stories")
  6277. },
  6278. {
  6279. name: "Macro+",
  6280. height: math.unit(30, "stories")
  6281. },
  6282. {
  6283. name: "Megamacro",
  6284. height: math.unit(10, "miles")
  6285. },
  6286. {
  6287. name: "Megamacro+",
  6288. height: math.unit(2750000, "meters")
  6289. },
  6290. ]
  6291. ))
  6292. characterMakers.push(() => makeCharacter(
  6293. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6294. {
  6295. front: {
  6296. height: math.unit(6, "feet"),
  6297. weight: math.unit(160, "lbs"),
  6298. name: "Front",
  6299. image: {
  6300. source: "./media/characters/prince/front.svg",
  6301. extra: 1938/1682,
  6302. bottom: 45/1983
  6303. }
  6304. },
  6305. back: {
  6306. height: math.unit(6, "feet"),
  6307. weight: math.unit(160, "lbs"),
  6308. name: "Back",
  6309. image: {
  6310. source: "./media/characters/prince/back.svg",
  6311. extra: 1955/1726,
  6312. bottom: 6/1961
  6313. }
  6314. },
  6315. },
  6316. [
  6317. {
  6318. name: "Normal",
  6319. height: math.unit(7.75, "feet"),
  6320. default: true
  6321. },
  6322. {
  6323. name: "Not cute",
  6324. height: math.unit(17, "feet")
  6325. },
  6326. {
  6327. name: "I said NOT",
  6328. height: math.unit(91, "feet")
  6329. },
  6330. {
  6331. name: "Please stop",
  6332. height: math.unit(560, "feet")
  6333. },
  6334. {
  6335. name: "What have you done",
  6336. height: math.unit(2200, "feet")
  6337. },
  6338. {
  6339. name: "Deer God",
  6340. height: math.unit(3.6, "miles")
  6341. },
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6346. {
  6347. standing: {
  6348. height: math.unit(6, "feet"),
  6349. weight: math.unit(300, "lbs"),
  6350. name: "Standing",
  6351. image: {
  6352. source: "./media/characters/psymon/standing.svg",
  6353. extra: 1888 / 1810,
  6354. bottom: 0.05
  6355. }
  6356. },
  6357. slithering: {
  6358. height: math.unit(6, "feet"),
  6359. weight: math.unit(300, "lbs"),
  6360. name: "Slithering",
  6361. image: {
  6362. source: "./media/characters/psymon/slithering.svg",
  6363. extra: 1330 / 1224
  6364. }
  6365. },
  6366. slitheringAlt: {
  6367. height: math.unit(6, "feet"),
  6368. weight: math.unit(300, "lbs"),
  6369. name: "Slithering (Alt)",
  6370. image: {
  6371. source: "./media/characters/psymon/slithering-alt.svg",
  6372. extra: 1330 / 1224
  6373. }
  6374. },
  6375. },
  6376. [
  6377. {
  6378. name: "Normal",
  6379. height: math.unit(11.25, "feet"),
  6380. default: true
  6381. },
  6382. {
  6383. name: "Large",
  6384. height: math.unit(27, "feet")
  6385. },
  6386. {
  6387. name: "Giant",
  6388. height: math.unit(87, "feet")
  6389. },
  6390. {
  6391. name: "Macro",
  6392. height: math.unit(365, "feet")
  6393. },
  6394. {
  6395. name: "Megamacro",
  6396. height: math.unit(3, "miles")
  6397. },
  6398. {
  6399. name: "World Serpent",
  6400. height: math.unit(8000, "miles")
  6401. },
  6402. ]
  6403. ))
  6404. characterMakers.push(() => makeCharacter(
  6405. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6406. {
  6407. front: {
  6408. height: math.unit(6, "feet"),
  6409. weight: math.unit(180, "lbs"),
  6410. name: "Front",
  6411. image: {
  6412. source: "./media/characters/daimos/front.svg",
  6413. extra: 4160 / 3897,
  6414. bottom: 0.021
  6415. }
  6416. }
  6417. },
  6418. [
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(8, "feet"),
  6422. default: true
  6423. },
  6424. {
  6425. name: "Big Dog",
  6426. height: math.unit(22, "feet")
  6427. },
  6428. {
  6429. name: "Macro",
  6430. height: math.unit(127, "feet")
  6431. },
  6432. {
  6433. name: "Megamacro",
  6434. height: math.unit(3600, "feet")
  6435. },
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6440. {
  6441. side: {
  6442. height: math.unit(6, "feet"),
  6443. weight: math.unit(180, "lbs"),
  6444. name: "Side",
  6445. image: {
  6446. source: "./media/characters/blake/side.svg",
  6447. extra: 1212 / 1120,
  6448. bottom: 0.05
  6449. }
  6450. },
  6451. crouched: {
  6452. height: math.unit(6 * 0.57, "feet"),
  6453. weight: math.unit(180, "lbs"),
  6454. name: "Crouched",
  6455. image: {
  6456. source: "./media/characters/blake/crouched.svg",
  6457. extra: 840 / 587,
  6458. bottom: 0.04
  6459. }
  6460. },
  6461. bent: {
  6462. height: math.unit(6 * 0.75, "feet"),
  6463. weight: math.unit(180, "lbs"),
  6464. name: "Bent",
  6465. image: {
  6466. source: "./media/characters/blake/bent.svg",
  6467. extra: 592 / 544,
  6468. bottom: 0.035
  6469. }
  6470. },
  6471. },
  6472. [
  6473. {
  6474. name: "Normal",
  6475. height: math.unit(8 + 1 / 6, "feet"),
  6476. default: true
  6477. },
  6478. {
  6479. name: "Big Backside",
  6480. height: math.unit(37, "feet")
  6481. },
  6482. {
  6483. name: "Subway Shredder",
  6484. height: math.unit(72, "feet")
  6485. },
  6486. {
  6487. name: "City Carver",
  6488. height: math.unit(1675, "feet")
  6489. },
  6490. {
  6491. name: "Tectonic Tweaker",
  6492. height: math.unit(2300, "miles")
  6493. },
  6494. ]
  6495. ))
  6496. characterMakers.push(() => makeCharacter(
  6497. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6498. {
  6499. front: {
  6500. height: math.unit(6, "feet"),
  6501. weight: math.unit(180, "lbs"),
  6502. name: "Front",
  6503. image: {
  6504. source: "./media/characters/guisetto/front.svg",
  6505. extra: 856 / 817,
  6506. bottom: 0.06
  6507. }
  6508. },
  6509. airborne: {
  6510. height: math.unit(6, "feet"),
  6511. weight: math.unit(180, "lbs"),
  6512. name: "Airborne",
  6513. image: {
  6514. source: "./media/characters/guisetto/airborne.svg",
  6515. extra: 584 / 525
  6516. }
  6517. },
  6518. },
  6519. [
  6520. {
  6521. name: "Normal",
  6522. height: math.unit(10 + 11 / 12, "feet"),
  6523. default: true
  6524. },
  6525. {
  6526. name: "Large",
  6527. height: math.unit(35, "feet")
  6528. },
  6529. {
  6530. name: "Macro",
  6531. height: math.unit(475, "feet")
  6532. },
  6533. ]
  6534. ))
  6535. characterMakers.push(() => makeCharacter(
  6536. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6537. {
  6538. front: {
  6539. height: math.unit(6, "feet"),
  6540. weight: math.unit(180, "lbs"),
  6541. name: "Front",
  6542. image: {
  6543. source: "./media/characters/luxor/front.svg",
  6544. extra: 2940 / 2152
  6545. }
  6546. },
  6547. back: {
  6548. height: math.unit(6, "feet"),
  6549. weight: math.unit(180, "lbs"),
  6550. name: "Back",
  6551. image: {
  6552. source: "./media/characters/luxor/back.svg",
  6553. extra: 1083 / 960
  6554. }
  6555. },
  6556. },
  6557. [
  6558. {
  6559. name: "Normal",
  6560. height: math.unit(5 + 5 / 6, "feet"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Lamp",
  6565. height: math.unit(50, "feet")
  6566. },
  6567. {
  6568. name: "Lämp",
  6569. height: math.unit(300, "feet")
  6570. },
  6571. {
  6572. name: "The sun is a lamp",
  6573. height: math.unit(250000, "miles")
  6574. },
  6575. ]
  6576. ))
  6577. characterMakers.push(() => makeCharacter(
  6578. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6579. {
  6580. front: {
  6581. height: math.unit(6, "feet"),
  6582. weight: math.unit(50, "lbs"),
  6583. name: "Front",
  6584. image: {
  6585. source: "./media/characters/huoyan/front.svg"
  6586. }
  6587. },
  6588. side: {
  6589. height: math.unit(6, "feet"),
  6590. weight: math.unit(180, "lbs"),
  6591. name: "Side",
  6592. image: {
  6593. source: "./media/characters/huoyan/side.svg"
  6594. }
  6595. },
  6596. },
  6597. [
  6598. {
  6599. name: "Chef",
  6600. height: math.unit(9, "feet")
  6601. },
  6602. {
  6603. name: "Normal",
  6604. height: math.unit(65, "feet"),
  6605. default: true
  6606. },
  6607. {
  6608. name: "Macro",
  6609. height: math.unit(780, "feet")
  6610. },
  6611. {
  6612. name: "Flaming Mountain",
  6613. height: math.unit(4.8, "miles")
  6614. },
  6615. {
  6616. name: "Celestial",
  6617. height: math.unit(765000, "miles")
  6618. },
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6623. {
  6624. front: {
  6625. height: math.unit(5 + 3 / 4, "feet"),
  6626. weight: math.unit(120, "lbs"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/tails/front.svg"
  6630. }
  6631. }
  6632. },
  6633. [
  6634. {
  6635. name: "Normal",
  6636. height: math.unit(5 + 3 / 4, "feet"),
  6637. default: true
  6638. }
  6639. ]
  6640. ))
  6641. characterMakers.push(() => makeCharacter(
  6642. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6643. {
  6644. front: {
  6645. height: math.unit(4, "feet"),
  6646. weight: math.unit(50, "lbs"),
  6647. name: "Front",
  6648. image: {
  6649. source: "./media/characters/rainy/front.svg"
  6650. }
  6651. }
  6652. },
  6653. [
  6654. {
  6655. name: "Macro",
  6656. height: math.unit(800, "feet"),
  6657. default: true
  6658. }
  6659. ]
  6660. ))
  6661. characterMakers.push(() => makeCharacter(
  6662. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6663. {
  6664. front: {
  6665. height: math.unit(6, "feet"),
  6666. weight: math.unit(150, "lbs"),
  6667. name: "Front",
  6668. image: {
  6669. source: "./media/characters/rainier/front.svg"
  6670. }
  6671. }
  6672. },
  6673. [
  6674. {
  6675. name: "Micro",
  6676. height: math.unit(2, "mm"),
  6677. default: true
  6678. }
  6679. ]
  6680. ))
  6681. characterMakers.push(() => makeCharacter(
  6682. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6683. {
  6684. front: {
  6685. height: math.unit(8 + 4/12, "feet"),
  6686. weight: math.unit(450, "kilograms"),
  6687. volume: math.unit(5, "cups"),
  6688. name: "Front",
  6689. image: {
  6690. source: "./media/characters/andy-renard/front.svg",
  6691. extra: 1839/1726,
  6692. bottom: 134/1973
  6693. }
  6694. },
  6695. back: {
  6696. height: math.unit(8 + 4/12, "feet"),
  6697. weight: math.unit(450, "kilograms"),
  6698. volume: math.unit(5, "cups"),
  6699. name: "Back",
  6700. image: {
  6701. source: "./media/characters/andy-renard/back.svg",
  6702. extra: 1838/1710,
  6703. bottom: 105/1943
  6704. }
  6705. },
  6706. },
  6707. [
  6708. {
  6709. name: "Tall",
  6710. height: math.unit(8 + 4/12, "feet")
  6711. },
  6712. {
  6713. name: "Mini Macro",
  6714. height: math.unit(15, "feet"),
  6715. default: true
  6716. },
  6717. {
  6718. name: "Macro",
  6719. height: math.unit(100, "feet")
  6720. },
  6721. {
  6722. name: "Mega Macro",
  6723. height: math.unit(1000, "feet")
  6724. },
  6725. {
  6726. name: "Giga Macro",
  6727. height: math.unit(10, "miles")
  6728. },
  6729. {
  6730. name: "God Macro",
  6731. height: math.unit(1, "multiverse")
  6732. },
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6737. {
  6738. front: {
  6739. height: math.unit(6, "feet"),
  6740. weight: math.unit(210, "lbs"),
  6741. name: "Front",
  6742. image: {
  6743. source: "./media/characters/cimmaron/front-sfw.svg",
  6744. extra: 701 / 676,
  6745. bottom: 0.046
  6746. }
  6747. },
  6748. back: {
  6749. height: math.unit(6, "feet"),
  6750. weight: math.unit(210, "lbs"),
  6751. name: "Back",
  6752. image: {
  6753. source: "./media/characters/cimmaron/back-sfw.svg",
  6754. extra: 701 / 676,
  6755. bottom: 0.046
  6756. }
  6757. },
  6758. frontNsfw: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(210, "lbs"),
  6761. name: "Front (NSFW)",
  6762. image: {
  6763. source: "./media/characters/cimmaron/front-nsfw.svg",
  6764. extra: 701 / 676,
  6765. bottom: 0.046
  6766. }
  6767. },
  6768. backNsfw: {
  6769. height: math.unit(6, "feet"),
  6770. weight: math.unit(210, "lbs"),
  6771. name: "Back (NSFW)",
  6772. image: {
  6773. source: "./media/characters/cimmaron/back-nsfw.svg",
  6774. extra: 701 / 676,
  6775. bottom: 0.046
  6776. }
  6777. },
  6778. dick: {
  6779. height: math.unit(1.714, "feet"),
  6780. name: "Dick",
  6781. image: {
  6782. source: "./media/characters/cimmaron/dick.svg"
  6783. }
  6784. },
  6785. },
  6786. [
  6787. {
  6788. name: "Normal",
  6789. height: math.unit(6, "feet"),
  6790. default: true
  6791. },
  6792. {
  6793. name: "Macro Mayor",
  6794. height: math.unit(350, "meters")
  6795. },
  6796. ]
  6797. ))
  6798. characterMakers.push(() => makeCharacter(
  6799. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6800. {
  6801. front: {
  6802. height: math.unit(6, "feet"),
  6803. weight: math.unit(200, "lbs"),
  6804. name: "Front",
  6805. image: {
  6806. source: "./media/characters/akari/front.svg",
  6807. extra: 962 / 901,
  6808. bottom: 0.04
  6809. }
  6810. }
  6811. },
  6812. [
  6813. {
  6814. name: "Micro",
  6815. height: math.unit(5, "inches"),
  6816. default: true
  6817. },
  6818. {
  6819. name: "Normal",
  6820. height: math.unit(7, "feet")
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(6, "feet"),
  6829. weight: math.unit(140, "lbs"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/cynosura/front.svg",
  6833. extra: 437/410,
  6834. bottom: 9/446
  6835. }
  6836. },
  6837. back: {
  6838. height: math.unit(6, "feet"),
  6839. weight: math.unit(140, "lbs"),
  6840. name: "Back",
  6841. image: {
  6842. source: "./media/characters/cynosura/back.svg",
  6843. extra: 1304/1160,
  6844. bottom: 71/1375
  6845. }
  6846. },
  6847. },
  6848. [
  6849. {
  6850. name: "Micro",
  6851. height: math.unit(4, "inches")
  6852. },
  6853. {
  6854. name: "Normal",
  6855. height: math.unit(5.75, "feet"),
  6856. default: true
  6857. },
  6858. {
  6859. name: "Tall",
  6860. height: math.unit(10, "feet")
  6861. },
  6862. {
  6863. name: "Big",
  6864. height: math.unit(20, "feet")
  6865. },
  6866. {
  6867. name: "Macro",
  6868. height: math.unit(50, "feet")
  6869. },
  6870. ]
  6871. ))
  6872. characterMakers.push(() => makeCharacter(
  6873. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6874. {
  6875. front: {
  6876. height: math.unit(13 + 2/12, "feet"),
  6877. weight: math.unit(800, "kg"),
  6878. name: "Front",
  6879. image: {
  6880. source: "./media/characters/gin/front.svg",
  6881. extra: 1312/1191,
  6882. bottom: 45/1357
  6883. }
  6884. },
  6885. mouth: {
  6886. height: math.unit(2.39 * 1.8, "feet"),
  6887. name: "Mouth",
  6888. image: {
  6889. source: "./media/characters/gin/mouth.svg"
  6890. }
  6891. },
  6892. hand: {
  6893. height: math.unit(1.57 * 2.19, "feet"),
  6894. name: "Hand",
  6895. image: {
  6896. source: "./media/characters/gin/hand.svg"
  6897. }
  6898. },
  6899. foot: {
  6900. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6901. name: "Foot",
  6902. image: {
  6903. source: "./media/characters/gin/foot.svg"
  6904. }
  6905. },
  6906. sole: {
  6907. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6908. name: "Sole",
  6909. image: {
  6910. source: "./media/characters/gin/sole.svg"
  6911. }
  6912. },
  6913. },
  6914. [
  6915. {
  6916. name: "Very Small",
  6917. height: math.unit(13 + 2 / 12, "feet")
  6918. },
  6919. {
  6920. name: "Micro",
  6921. height: math.unit(600, "miles")
  6922. },
  6923. {
  6924. name: "Regular",
  6925. height: math.unit(20, "earths"),
  6926. default: true
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(2.2, "solarradii")
  6931. },
  6932. {
  6933. name: "Teramacro",
  6934. height: math.unit(1.2, "galaxies")
  6935. },
  6936. {
  6937. name: "Omegamacro",
  6938. height: math.unit(200, "universes")
  6939. },
  6940. ]
  6941. ))
  6942. characterMakers.push(() => makeCharacter(
  6943. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6944. {
  6945. front: {
  6946. height: math.unit(6 + 1 / 6, "feet"),
  6947. weight: math.unit(178, "lbs"),
  6948. name: "Front",
  6949. image: {
  6950. source: "./media/characters/guy/front.svg"
  6951. }
  6952. }
  6953. },
  6954. [
  6955. {
  6956. name: "Normal",
  6957. height: math.unit(6 + 1 / 6, "feet"),
  6958. default: true
  6959. },
  6960. {
  6961. name: "Large",
  6962. height: math.unit(25 + 7 / 12, "feet")
  6963. },
  6964. {
  6965. name: "Macro",
  6966. height: math.unit(60 + 9 / 12, "feet")
  6967. },
  6968. {
  6969. name: "Macro+",
  6970. height: math.unit(246, "feet")
  6971. },
  6972. {
  6973. name: "Macro++",
  6974. height: math.unit(878, "feet")
  6975. }
  6976. ]
  6977. ))
  6978. characterMakers.push(() => makeCharacter(
  6979. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6980. {
  6981. front: {
  6982. height: math.unit(9, "feet"),
  6983. weight: math.unit(800, "lbs"),
  6984. name: "Front",
  6985. image: {
  6986. source: "./media/characters/tiberius/front.svg",
  6987. extra: 2295 / 2071
  6988. }
  6989. },
  6990. back: {
  6991. height: math.unit(9, "feet"),
  6992. weight: math.unit(800, "lbs"),
  6993. name: "Back",
  6994. image: {
  6995. source: "./media/characters/tiberius/back.svg",
  6996. extra: 2373 / 2160
  6997. }
  6998. },
  6999. },
  7000. [
  7001. {
  7002. name: "Normal",
  7003. height: math.unit(9, "feet"),
  7004. default: true
  7005. }
  7006. ]
  7007. ))
  7008. characterMakers.push(() => makeCharacter(
  7009. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7010. {
  7011. front: {
  7012. height: math.unit(6, "feet"),
  7013. weight: math.unit(600, "lbs"),
  7014. name: "Front",
  7015. image: {
  7016. source: "./media/characters/surgo/front.svg",
  7017. extra: 3591 / 2227
  7018. }
  7019. },
  7020. back: {
  7021. height: math.unit(6, "feet"),
  7022. weight: math.unit(600, "lbs"),
  7023. name: "Back",
  7024. image: {
  7025. source: "./media/characters/surgo/back.svg",
  7026. extra: 3557 / 2228
  7027. }
  7028. },
  7029. laying: {
  7030. height: math.unit(6 * 0.85, "feet"),
  7031. weight: math.unit(600, "lbs"),
  7032. name: "Laying",
  7033. image: {
  7034. source: "./media/characters/surgo/laying.svg"
  7035. }
  7036. },
  7037. },
  7038. [
  7039. {
  7040. name: "Normal",
  7041. height: math.unit(6, "feet"),
  7042. default: true
  7043. }
  7044. ]
  7045. ))
  7046. characterMakers.push(() => makeCharacter(
  7047. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7048. {
  7049. side: {
  7050. height: math.unit(6, "feet"),
  7051. weight: math.unit(150, "lbs"),
  7052. name: "Side",
  7053. image: {
  7054. source: "./media/characters/cibus/side.svg",
  7055. extra: 800 / 400
  7056. }
  7057. },
  7058. },
  7059. [
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(6, "feet"),
  7063. default: true
  7064. }
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7069. {
  7070. front: {
  7071. height: math.unit(6, "feet"),
  7072. weight: math.unit(240, "lbs"),
  7073. name: "Front",
  7074. image: {
  7075. source: "./media/characters/nibbles/front.svg"
  7076. }
  7077. },
  7078. side: {
  7079. height: math.unit(6, "feet"),
  7080. weight: math.unit(240, "lbs"),
  7081. name: "Side",
  7082. image: {
  7083. source: "./media/characters/nibbles/side.svg"
  7084. }
  7085. },
  7086. },
  7087. [
  7088. {
  7089. name: "Normal",
  7090. height: math.unit(9, "feet"),
  7091. default: true
  7092. }
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7097. {
  7098. side: {
  7099. height: math.unit(5 + 1 / 6, "feet"),
  7100. weight: math.unit(130, "lbs"),
  7101. name: "Side",
  7102. image: {
  7103. source: "./media/characters/rikky/side.svg",
  7104. extra: 851 / 801
  7105. }
  7106. },
  7107. },
  7108. [
  7109. {
  7110. name: "Normal",
  7111. height: math.unit(5 + 1 / 6, "feet")
  7112. },
  7113. {
  7114. name: "Macro",
  7115. height: math.unit(152, "feet"),
  7116. default: true
  7117. },
  7118. {
  7119. name: "Megamacro",
  7120. height: math.unit(7, "miles")
  7121. }
  7122. ]
  7123. ))
  7124. characterMakers.push(() => makeCharacter(
  7125. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7126. {
  7127. side: {
  7128. height: math.unit(370, "cm"),
  7129. weight: math.unit(350, "lbs"),
  7130. name: "Side",
  7131. image: {
  7132. source: "./media/characters/malfressa/side.svg"
  7133. }
  7134. },
  7135. walking: {
  7136. height: math.unit(370, "cm"),
  7137. weight: math.unit(350, "lbs"),
  7138. name: "Walking",
  7139. image: {
  7140. source: "./media/characters/malfressa/walking.svg"
  7141. }
  7142. },
  7143. feral: {
  7144. height: math.unit(2500, "cm"),
  7145. weight: math.unit(100000, "lbs"),
  7146. name: "Feral",
  7147. image: {
  7148. source: "./media/characters/malfressa/feral.svg",
  7149. extra: 2108 / 837,
  7150. bottom: 0.02
  7151. }
  7152. },
  7153. },
  7154. [
  7155. {
  7156. name: "Normal",
  7157. height: math.unit(370, "cm")
  7158. },
  7159. {
  7160. name: "Macro",
  7161. height: math.unit(300, "meters"),
  7162. default: true
  7163. }
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7168. {
  7169. front: {
  7170. height: math.unit(6, "feet"),
  7171. weight: math.unit(60, "kg"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/jaro/front.svg",
  7175. extra: 845/817,
  7176. bottom: 45/890
  7177. }
  7178. },
  7179. back: {
  7180. height: math.unit(6, "feet"),
  7181. weight: math.unit(60, "kg"),
  7182. name: "Back",
  7183. image: {
  7184. source: "./media/characters/jaro/back.svg",
  7185. extra: 847/817,
  7186. bottom: 34/881
  7187. }
  7188. },
  7189. },
  7190. [
  7191. {
  7192. name: "Micro",
  7193. height: math.unit(7, "inches")
  7194. },
  7195. {
  7196. name: "Normal",
  7197. height: math.unit(5.5, "feet"),
  7198. default: true
  7199. },
  7200. {
  7201. name: "Minimacro",
  7202. height: math.unit(20, "feet")
  7203. },
  7204. {
  7205. name: "Macro",
  7206. height: math.unit(200, "meters")
  7207. }
  7208. ]
  7209. ))
  7210. characterMakers.push(() => makeCharacter(
  7211. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7212. {
  7213. front: {
  7214. height: math.unit(6, "feet"),
  7215. weight: math.unit(195, "lb"),
  7216. name: "Front",
  7217. image: {
  7218. source: "./media/characters/rogue/front.svg"
  7219. }
  7220. },
  7221. },
  7222. [
  7223. {
  7224. name: "Macro",
  7225. height: math.unit(90, "feet"),
  7226. default: true
  7227. },
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7232. {
  7233. standing: {
  7234. height: math.unit(5 + 8 / 12, "feet"),
  7235. weight: math.unit(140, "lb"),
  7236. name: "Standing",
  7237. image: {
  7238. source: "./media/characters/piper/standing.svg",
  7239. extra: 1440/1284,
  7240. bottom: 66/1506
  7241. }
  7242. },
  7243. running: {
  7244. height: math.unit(5 + 8 / 12, "feet"),
  7245. weight: math.unit(140, "lb"),
  7246. name: "Running",
  7247. image: {
  7248. source: "./media/characters/piper/running.svg",
  7249. extra: 3948/3655,
  7250. bottom: 0/3948
  7251. }
  7252. },
  7253. sole: {
  7254. height: math.unit(0.81, "feet"),
  7255. weight: math.unit(2, "kg"),
  7256. name: "Sole",
  7257. image: {
  7258. source: "./media/characters/piper/sole.svg"
  7259. }
  7260. },
  7261. nipple: {
  7262. height: math.unit(0.25, "feet"),
  7263. weight: math.unit(1.5, "lb"),
  7264. name: "Nipple",
  7265. image: {
  7266. source: "./media/characters/piper/nipple.svg"
  7267. }
  7268. },
  7269. head: {
  7270. height: math.unit(1.1, "feet"),
  7271. name: "Head",
  7272. image: {
  7273. source: "./media/characters/piper/head.svg"
  7274. }
  7275. },
  7276. },
  7277. [
  7278. {
  7279. name: "Micro",
  7280. height: math.unit(2, "inches")
  7281. },
  7282. {
  7283. name: "Normal",
  7284. height: math.unit(5 + 8 / 12, "feet")
  7285. },
  7286. {
  7287. name: "Macro",
  7288. height: math.unit(250, "feet"),
  7289. default: true
  7290. },
  7291. {
  7292. name: "Megamacro",
  7293. height: math.unit(7, "miles")
  7294. },
  7295. ]
  7296. ))
  7297. characterMakers.push(() => makeCharacter(
  7298. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7299. {
  7300. front: {
  7301. height: math.unit(6, "feet"),
  7302. weight: math.unit(220, "lb"),
  7303. name: "Front",
  7304. image: {
  7305. source: "./media/characters/gemini/front.svg"
  7306. }
  7307. },
  7308. back: {
  7309. height: math.unit(6, "feet"),
  7310. weight: math.unit(220, "lb"),
  7311. name: "Back",
  7312. image: {
  7313. source: "./media/characters/gemini/back.svg"
  7314. }
  7315. },
  7316. kneeling: {
  7317. height: math.unit(6 / 1.5, "feet"),
  7318. weight: math.unit(220, "lb"),
  7319. name: "Kneeling",
  7320. image: {
  7321. source: "./media/characters/gemini/kneeling.svg",
  7322. bottom: 0.02
  7323. }
  7324. },
  7325. },
  7326. [
  7327. {
  7328. name: "Macro",
  7329. height: math.unit(300, "meters"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Megamacro",
  7334. height: math.unit(6900, "meters")
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7340. {
  7341. anthro: {
  7342. height: math.unit(2.35, "meters"),
  7343. weight: math.unit(73, "kg"),
  7344. name: "Anthro",
  7345. image: {
  7346. source: "./media/characters/alicia/anthro.svg",
  7347. extra: 2571 / 2385,
  7348. bottom: 75 / 2648
  7349. }
  7350. },
  7351. paw: {
  7352. height: math.unit(1.32, "feet"),
  7353. name: "Paw",
  7354. image: {
  7355. source: "./media/characters/alicia/paw.svg"
  7356. }
  7357. },
  7358. feral: {
  7359. height: math.unit(1.69, "meters"),
  7360. weight: math.unit(73, "kg"),
  7361. name: "Feral",
  7362. image: {
  7363. source: "./media/characters/alicia/feral.svg",
  7364. extra: 2123 / 1715,
  7365. bottom: 222 / 2349
  7366. }
  7367. },
  7368. },
  7369. [
  7370. {
  7371. name: "Normal",
  7372. height: math.unit(2.35, "meters")
  7373. },
  7374. {
  7375. name: "Macro",
  7376. height: math.unit(60, "meters"),
  7377. default: true
  7378. },
  7379. {
  7380. name: "Megamacro",
  7381. height: math.unit(10000, "kilometers")
  7382. },
  7383. ]
  7384. ))
  7385. characterMakers.push(() => makeCharacter(
  7386. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7387. {
  7388. front: {
  7389. height: math.unit(7, "feet"),
  7390. weight: math.unit(250, "lbs"),
  7391. name: "Front",
  7392. image: {
  7393. source: "./media/characters/archy/front.svg"
  7394. }
  7395. }
  7396. },
  7397. [
  7398. {
  7399. name: "Micro",
  7400. height: math.unit(1, "inch")
  7401. },
  7402. {
  7403. name: "Shorty",
  7404. height: math.unit(5, "feet")
  7405. },
  7406. {
  7407. name: "Normal",
  7408. height: math.unit(7, "feet")
  7409. },
  7410. {
  7411. name: "Macro",
  7412. height: math.unit(600, "meters"),
  7413. default: true
  7414. },
  7415. {
  7416. name: "Megamacro",
  7417. height: math.unit(1, "mile")
  7418. },
  7419. ]
  7420. ))
  7421. characterMakers.push(() => makeCharacter(
  7422. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7423. {
  7424. front: {
  7425. height: math.unit(1.65, "meters"),
  7426. weight: math.unit(74, "kg"),
  7427. name: "Front",
  7428. image: {
  7429. source: "./media/characters/berri/front.svg",
  7430. extra: 857 / 837,
  7431. bottom: 18 / 877
  7432. }
  7433. },
  7434. bum: {
  7435. height: math.unit(1.46, "feet"),
  7436. name: "Bum",
  7437. image: {
  7438. source: "./media/characters/berri/bum.svg"
  7439. }
  7440. },
  7441. mouth: {
  7442. height: math.unit(0.44, "feet"),
  7443. name: "Mouth",
  7444. image: {
  7445. source: "./media/characters/berri/mouth.svg"
  7446. }
  7447. },
  7448. paw: {
  7449. height: math.unit(0.826, "feet"),
  7450. name: "Paw",
  7451. image: {
  7452. source: "./media/characters/berri/paw.svg"
  7453. }
  7454. },
  7455. },
  7456. [
  7457. {
  7458. name: "Normal",
  7459. height: math.unit(1.65, "meters")
  7460. },
  7461. {
  7462. name: "Macro",
  7463. height: math.unit(60, "m"),
  7464. default: true
  7465. },
  7466. {
  7467. name: "Megamacro",
  7468. height: math.unit(9.213, "km")
  7469. },
  7470. {
  7471. name: "Planet Eater",
  7472. height: math.unit(489, "megameters")
  7473. },
  7474. {
  7475. name: "Teramacro",
  7476. height: math.unit(2471635000000, "meters")
  7477. },
  7478. {
  7479. name: "Examacro",
  7480. height: math.unit(8.0624e+26, "meters")
  7481. }
  7482. ]
  7483. ))
  7484. characterMakers.push(() => makeCharacter(
  7485. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7486. {
  7487. front: {
  7488. height: math.unit(1.72, "meters"),
  7489. weight: math.unit(68, "kg"),
  7490. name: "Front",
  7491. image: {
  7492. source: "./media/characters/lexi/front.svg"
  7493. }
  7494. }
  7495. },
  7496. [
  7497. {
  7498. name: "Very Smol",
  7499. height: math.unit(10, "mm")
  7500. },
  7501. {
  7502. name: "Micro",
  7503. height: math.unit(6.8, "cm"),
  7504. default: true
  7505. },
  7506. {
  7507. name: "Normal",
  7508. height: math.unit(1.72, "m")
  7509. }
  7510. ]
  7511. ))
  7512. characterMakers.push(() => makeCharacter(
  7513. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7514. {
  7515. front: {
  7516. height: math.unit(1.69, "meters"),
  7517. weight: math.unit(68, "kg"),
  7518. name: "Front",
  7519. image: {
  7520. source: "./media/characters/martin/front.svg",
  7521. extra: 596 / 581
  7522. }
  7523. }
  7524. },
  7525. [
  7526. {
  7527. name: "Micro",
  7528. height: math.unit(6.85, "cm"),
  7529. default: true
  7530. },
  7531. {
  7532. name: "Normal",
  7533. height: math.unit(1.69, "m")
  7534. }
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7539. {
  7540. front: {
  7541. height: math.unit(1.69, "meters"),
  7542. weight: math.unit(68, "kg"),
  7543. name: "Front",
  7544. image: {
  7545. source: "./media/characters/juno/front.svg"
  7546. }
  7547. }
  7548. },
  7549. [
  7550. {
  7551. name: "Micro",
  7552. height: math.unit(7, "cm")
  7553. },
  7554. {
  7555. name: "Normal",
  7556. height: math.unit(1.89, "m")
  7557. },
  7558. {
  7559. name: "Macro",
  7560. height: math.unit(353, "meters"),
  7561. default: true
  7562. }
  7563. ]
  7564. ))
  7565. characterMakers.push(() => makeCharacter(
  7566. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7567. {
  7568. front: {
  7569. height: math.unit(1.93, "meters"),
  7570. weight: math.unit(83, "kg"),
  7571. name: "Front",
  7572. image: {
  7573. source: "./media/characters/samantha/front.svg"
  7574. }
  7575. },
  7576. frontClothed: {
  7577. height: math.unit(1.93, "meters"),
  7578. weight: math.unit(83, "kg"),
  7579. name: "Front (Clothed)",
  7580. image: {
  7581. source: "./media/characters/samantha/front-clothed.svg"
  7582. }
  7583. },
  7584. back: {
  7585. height: math.unit(1.93, "meters"),
  7586. weight: math.unit(83, "kg"),
  7587. name: "Back",
  7588. image: {
  7589. source: "./media/characters/samantha/back.svg"
  7590. }
  7591. },
  7592. },
  7593. [
  7594. {
  7595. name: "Normal",
  7596. height: math.unit(1.93, "m")
  7597. },
  7598. {
  7599. name: "Macro",
  7600. height: math.unit(74, "meters"),
  7601. default: true
  7602. },
  7603. {
  7604. name: "Macro+",
  7605. height: math.unit(223, "meters"),
  7606. },
  7607. {
  7608. name: "Megamacro",
  7609. height: math.unit(8381, "meters"),
  7610. },
  7611. {
  7612. name: "Megamacro+",
  7613. height: math.unit(12000, "kilometers")
  7614. },
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7619. {
  7620. front: {
  7621. height: math.unit(1.92, "meters"),
  7622. weight: math.unit(80, "kg"),
  7623. name: "Front",
  7624. image: {
  7625. source: "./media/characters/dr-clay/front.svg"
  7626. }
  7627. },
  7628. frontClothed: {
  7629. height: math.unit(1.92, "meters"),
  7630. weight: math.unit(80, "kg"),
  7631. name: "Front (Clothed)",
  7632. image: {
  7633. source: "./media/characters/dr-clay/front-clothed.svg"
  7634. }
  7635. }
  7636. },
  7637. [
  7638. {
  7639. name: "Normal",
  7640. height: math.unit(1.92, "m")
  7641. },
  7642. {
  7643. name: "Macro",
  7644. height: math.unit(214, "meters"),
  7645. default: true
  7646. },
  7647. {
  7648. name: "Macro+",
  7649. height: math.unit(12.237, "meters"),
  7650. },
  7651. {
  7652. name: "Megamacro",
  7653. height: math.unit(557, "megameters"),
  7654. },
  7655. {
  7656. name: "Unimaginable",
  7657. height: math.unit(120e9, "lightyears")
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7663. {
  7664. front: {
  7665. height: math.unit(2, "meters"),
  7666. weight: math.unit(80, "kg"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7670. }
  7671. }
  7672. },
  7673. [
  7674. {
  7675. name: "Teramacro",
  7676. height: math.unit(500000, "lightyears"),
  7677. default: true
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7683. {
  7684. crux: {
  7685. height: math.unit(2, "meters"),
  7686. weight: math.unit(150, "kg"),
  7687. name: "Crux",
  7688. image: {
  7689. source: "./media/characters/vemus/crux.svg",
  7690. extra: 1074/936,
  7691. bottom: 23/1097
  7692. }
  7693. },
  7694. skunkTanuki: {
  7695. height: math.unit(2, "meters"),
  7696. weight: math.unit(150, "kg"),
  7697. name: "Skunk-Tanuki",
  7698. image: {
  7699. source: "./media/characters/vemus/skunk-tanuki.svg",
  7700. extra: 926/893,
  7701. bottom: 20/946
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(4, "meters"),
  7709. default: true
  7710. },
  7711. {
  7712. name: "Big",
  7713. height: math.unit(8, "meters")
  7714. },
  7715. {
  7716. name: "Macro",
  7717. height: math.unit(100, "meters")
  7718. },
  7719. {
  7720. name: "Macro+",
  7721. height: math.unit(1500, "meters")
  7722. },
  7723. {
  7724. name: "Stellar",
  7725. height: math.unit(14e8, "meters")
  7726. },
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(2, "meters"),
  7734. weight: math.unit(70, "kg"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/beherit/front.svg",
  7738. extra: 1234/1109,
  7739. bottom: 55/1289
  7740. }
  7741. }
  7742. },
  7743. [
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(6, "feet")
  7747. },
  7748. {
  7749. name: "Lorg",
  7750. height: math.unit(25, "feet"),
  7751. default: true
  7752. },
  7753. {
  7754. name: "Lorger",
  7755. height: math.unit(75, "feet")
  7756. },
  7757. {
  7758. name: "Macro",
  7759. height: math.unit(200, "meters")
  7760. },
  7761. ]
  7762. ))
  7763. characterMakers.push(() => makeCharacter(
  7764. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7765. {
  7766. front: {
  7767. height: math.unit(2, "meters"),
  7768. weight: math.unit(150, "kg"),
  7769. name: "Front",
  7770. image: {
  7771. source: "./media/characters/everett/front.svg",
  7772. extra: 1017/866,
  7773. bottom: 86/1103
  7774. }
  7775. },
  7776. paw: {
  7777. height: math.unit(2 / 3.6, "meters"),
  7778. name: "Paw",
  7779. image: {
  7780. source: "./media/characters/everett/paw.svg"
  7781. }
  7782. },
  7783. },
  7784. [
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(15, "feet"),
  7788. default: true
  7789. },
  7790. {
  7791. name: "Lorg",
  7792. height: math.unit(70, "feet"),
  7793. default: true
  7794. },
  7795. {
  7796. name: "Lorger",
  7797. height: math.unit(250, "feet")
  7798. },
  7799. {
  7800. name: "Macro",
  7801. height: math.unit(500, "meters")
  7802. },
  7803. ]
  7804. ))
  7805. characterMakers.push(() => makeCharacter(
  7806. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7807. {
  7808. front: {
  7809. height: math.unit(2, "meters"),
  7810. weight: math.unit(86, "kg"),
  7811. name: "Front",
  7812. image: {
  7813. source: "./media/characters/rose/front.svg",
  7814. extra: 1785/1636,
  7815. bottom: 30/1815
  7816. },
  7817. form: "liom",
  7818. default: true
  7819. },
  7820. frontSporty: {
  7821. height: math.unit(2, "meters"),
  7822. weight: math.unit(86, "kg"),
  7823. name: "Front (Sporty)",
  7824. image: {
  7825. source: "./media/characters/rose/front-sporty.svg",
  7826. extra: 350/335,
  7827. bottom: 10/360
  7828. },
  7829. form: "liom"
  7830. },
  7831. frontAlt: {
  7832. height: math.unit(1.6, "meters"),
  7833. weight: math.unit(86, "kg"),
  7834. name: "Front (Alt)",
  7835. image: {
  7836. source: "./media/characters/rose/front-alt.svg",
  7837. extra: 299/283,
  7838. bottom: 3/302
  7839. },
  7840. form: "liom"
  7841. },
  7842. plush: {
  7843. height: math.unit(2, "meters"),
  7844. weight: math.unit(86/3, "kg"),
  7845. name: "Plush",
  7846. image: {
  7847. source: "./media/characters/rose/plush.svg",
  7848. extra: 361/337,
  7849. bottom: 11/372
  7850. },
  7851. form: "plush",
  7852. default: true
  7853. },
  7854. faeStanding: {
  7855. height: math.unit(10, "cm"),
  7856. weight: math.unit(10, "grams"),
  7857. name: "Standing",
  7858. image: {
  7859. source: "./media/characters/rose/fae-standing.svg",
  7860. extra: 1189/1060,
  7861. bottom: 27/1216
  7862. },
  7863. form: "fae",
  7864. default: true
  7865. },
  7866. faeSitting: {
  7867. height: math.unit(5, "cm"),
  7868. weight: math.unit(10, "grams"),
  7869. name: "Sitting",
  7870. image: {
  7871. source: "./media/characters/rose/fae-sitting.svg",
  7872. extra: 737/577,
  7873. bottom: 356/1093
  7874. },
  7875. form: "fae"
  7876. },
  7877. faePaw: {
  7878. height: math.unit(1.35, "cm"),
  7879. name: "Paw",
  7880. image: {
  7881. source: "./media/characters/rose/fae-paw.svg"
  7882. },
  7883. form: "fae"
  7884. },
  7885. },
  7886. [
  7887. {
  7888. name: "True Micro",
  7889. height: math.unit(9, "cm"),
  7890. form: "liom"
  7891. },
  7892. {
  7893. name: "Micro",
  7894. height: math.unit(16, "cm"),
  7895. form: "liom"
  7896. },
  7897. {
  7898. name: "Normal",
  7899. height: math.unit(1.85, "meters"),
  7900. default: true,
  7901. form: "liom"
  7902. },
  7903. {
  7904. name: "Mini-Macro",
  7905. height: math.unit(5, "meters"),
  7906. form: "liom"
  7907. },
  7908. {
  7909. name: "Macro",
  7910. height: math.unit(15, "meters"),
  7911. form: "liom"
  7912. },
  7913. {
  7914. name: "True Macro",
  7915. height: math.unit(40, "meters"),
  7916. form: "liom"
  7917. },
  7918. {
  7919. name: "City Scale",
  7920. height: math.unit(1, "km"),
  7921. form: "liom"
  7922. },
  7923. {
  7924. name: "Plushie",
  7925. height: math.unit(9, "cm"),
  7926. form: "plush",
  7927. default: true
  7928. },
  7929. {
  7930. name: "Fae",
  7931. height: math.unit(10, "cm"),
  7932. form: "fae",
  7933. default: true
  7934. },
  7935. ],
  7936. {
  7937. "liom": {
  7938. name: "Liom"
  7939. },
  7940. "plush": {
  7941. name: "Plush"
  7942. },
  7943. "fae": {
  7944. name: "Fae Fox",
  7945. default: true
  7946. }
  7947. }
  7948. ))
  7949. characterMakers.push(() => makeCharacter(
  7950. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7951. {
  7952. front: {
  7953. height: math.unit(2, "meters"),
  7954. weight: math.unit(350, "lbs"),
  7955. name: "Front",
  7956. image: {
  7957. source: "./media/characters/regal/front.svg"
  7958. }
  7959. },
  7960. back: {
  7961. height: math.unit(2, "meters"),
  7962. weight: math.unit(350, "lbs"),
  7963. name: "Back",
  7964. image: {
  7965. source: "./media/characters/regal/back.svg"
  7966. }
  7967. },
  7968. },
  7969. [
  7970. {
  7971. name: "Macro",
  7972. height: math.unit(350, "feet"),
  7973. default: true
  7974. }
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7979. {
  7980. front: {
  7981. height: math.unit(4 + 11 / 12, "feet"),
  7982. weight: math.unit(100, "lbs"),
  7983. name: "Front",
  7984. image: {
  7985. source: "./media/characters/opal/front.svg"
  7986. }
  7987. },
  7988. frontAlt: {
  7989. height: math.unit(4 + 11 / 12, "feet"),
  7990. weight: math.unit(100, "lbs"),
  7991. name: "Front (Alt)",
  7992. image: {
  7993. source: "./media/characters/opal/front-alt.svg"
  7994. }
  7995. },
  7996. },
  7997. [
  7998. {
  7999. name: "Small",
  8000. height: math.unit(4 + 11 / 12, "feet")
  8001. },
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(20, "feet"),
  8005. default: true
  8006. },
  8007. {
  8008. name: "Macro",
  8009. height: math.unit(120, "feet")
  8010. },
  8011. {
  8012. name: "Megamacro",
  8013. height: math.unit(80, "miles")
  8014. },
  8015. {
  8016. name: "True Size",
  8017. height: math.unit(100000, "lightyears")
  8018. },
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8023. {
  8024. front: {
  8025. height: math.unit(6, "feet"),
  8026. weight: math.unit(200, "lbs"),
  8027. name: "Front",
  8028. image: {
  8029. source: "./media/characters/vector-wuff/front.svg"
  8030. }
  8031. }
  8032. },
  8033. [
  8034. {
  8035. name: "Normal",
  8036. height: math.unit(2.8, "meters")
  8037. },
  8038. {
  8039. name: "Macro",
  8040. height: math.unit(450, "meters"),
  8041. default: true
  8042. },
  8043. {
  8044. name: "Megamacro",
  8045. height: math.unit(15, "kilometers")
  8046. }
  8047. ]
  8048. ))
  8049. characterMakers.push(() => makeCharacter(
  8050. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8051. {
  8052. front: {
  8053. height: math.unit(6, "feet"),
  8054. weight: math.unit(256, "lbs"),
  8055. name: "Front",
  8056. image: {
  8057. source: "./media/characters/dannik/front.svg"
  8058. }
  8059. }
  8060. },
  8061. [
  8062. {
  8063. name: "Macro",
  8064. height: math.unit(69.57, "meters"),
  8065. default: true
  8066. },
  8067. ]
  8068. ))
  8069. characterMakers.push(() => makeCharacter(
  8070. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8071. {
  8072. front: {
  8073. height: math.unit(6, "feet"),
  8074. weight: math.unit(120, "lbs"),
  8075. name: "Front",
  8076. image: {
  8077. source: "./media/characters/azura-saharah/front.svg"
  8078. }
  8079. },
  8080. back: {
  8081. height: math.unit(6, "feet"),
  8082. weight: math.unit(120, "lbs"),
  8083. name: "Back",
  8084. image: {
  8085. source: "./media/characters/azura-saharah/back.svg"
  8086. }
  8087. },
  8088. },
  8089. [
  8090. {
  8091. name: "Macro",
  8092. height: math.unit(100, "feet"),
  8093. default: true
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8099. {
  8100. side: {
  8101. height: math.unit(5 + 4 / 12, "feet"),
  8102. weight: math.unit(163, "lbs"),
  8103. name: "Side",
  8104. image: {
  8105. source: "./media/characters/kennedy/side.svg"
  8106. }
  8107. }
  8108. },
  8109. [
  8110. {
  8111. name: "Standard Doggo",
  8112. height: math.unit(5 + 4 / 12, "feet")
  8113. },
  8114. {
  8115. name: "Big Doggo",
  8116. height: math.unit(25 + 3 / 12, "feet"),
  8117. default: true
  8118. },
  8119. ]
  8120. ))
  8121. characterMakers.push(() => makeCharacter(
  8122. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8123. {
  8124. front: {
  8125. height: math.unit(5 + 5/12, "feet"),
  8126. weight: math.unit(100, "lbs"),
  8127. name: "Front",
  8128. image: {
  8129. source: "./media/characters/odios-de-lunar/front.svg",
  8130. extra: 1468/1323,
  8131. bottom: 22/1490
  8132. }
  8133. }
  8134. },
  8135. [
  8136. {
  8137. name: "Micro",
  8138. height: math.unit(3, "inches")
  8139. },
  8140. {
  8141. name: "Normal",
  8142. height: math.unit(5.5, "feet"),
  8143. default: true
  8144. },
  8145. {
  8146. name: "Macro",
  8147. height: math.unit(100, "feet")
  8148. },
  8149. ]
  8150. ))
  8151. characterMakers.push(() => makeCharacter(
  8152. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8153. {
  8154. back: {
  8155. height: math.unit(6, "feet"),
  8156. weight: math.unit(220, "lbs"),
  8157. name: "Back",
  8158. image: {
  8159. source: "./media/characters/mandake/back.svg"
  8160. }
  8161. }
  8162. },
  8163. [
  8164. {
  8165. name: "Normal",
  8166. height: math.unit(7, "feet"),
  8167. default: true
  8168. },
  8169. {
  8170. name: "Macro",
  8171. height: math.unit(78, "feet")
  8172. },
  8173. {
  8174. name: "Macro+",
  8175. height: math.unit(300, "meters")
  8176. },
  8177. {
  8178. name: "Macro++",
  8179. height: math.unit(2400, "feet")
  8180. },
  8181. {
  8182. name: "Megamacro",
  8183. height: math.unit(5167, "meters")
  8184. },
  8185. {
  8186. name: "Gigamacro",
  8187. height: math.unit(41769, "miles")
  8188. },
  8189. ]
  8190. ))
  8191. characterMakers.push(() => makeCharacter(
  8192. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8193. {
  8194. front: {
  8195. height: math.unit(6, "feet"),
  8196. weight: math.unit(120, "lbs"),
  8197. name: "Front",
  8198. image: {
  8199. source: "./media/characters/yozey/front.svg"
  8200. }
  8201. },
  8202. frontAlt: {
  8203. height: math.unit(6, "feet"),
  8204. weight: math.unit(120, "lbs"),
  8205. name: "Front (Alt)",
  8206. image: {
  8207. source: "./media/characters/yozey/front-alt.svg"
  8208. }
  8209. },
  8210. side: {
  8211. height: math.unit(6, "feet"),
  8212. weight: math.unit(120, "lbs"),
  8213. name: "Side",
  8214. image: {
  8215. source: "./media/characters/yozey/side.svg"
  8216. }
  8217. },
  8218. },
  8219. [
  8220. {
  8221. name: "Micro",
  8222. height: math.unit(3, "inches"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Normal",
  8227. height: math.unit(6, "feet")
  8228. }
  8229. ]
  8230. ))
  8231. characterMakers.push(() => makeCharacter(
  8232. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8233. {
  8234. front: {
  8235. height: math.unit(6, "feet"),
  8236. weight: math.unit(103, "lbs"),
  8237. name: "Front",
  8238. image: {
  8239. source: "./media/characters/valeska-voss/front.svg"
  8240. }
  8241. }
  8242. },
  8243. [
  8244. {
  8245. name: "Mini-Sized Sub",
  8246. height: math.unit(3.1, "inches")
  8247. },
  8248. {
  8249. name: "Mid-Sized Sub",
  8250. height: math.unit(6.2, "inches")
  8251. },
  8252. {
  8253. name: "Full-Sized Sub",
  8254. height: math.unit(9.3, "inches")
  8255. },
  8256. {
  8257. name: "Normal",
  8258. height: math.unit(5 + 2 / 12, "foot"),
  8259. default: true
  8260. },
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8265. {
  8266. front: {
  8267. height: math.unit(6, "feet"),
  8268. weight: math.unit(160, "lbs"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/gene-zeta/front.svg",
  8272. extra: 3006 / 2826,
  8273. bottom: 182 / 3188
  8274. }
  8275. }
  8276. },
  8277. [
  8278. {
  8279. name: "Micro",
  8280. height: math.unit(6, "inches")
  8281. },
  8282. {
  8283. name: "Normal",
  8284. height: math.unit(5 + 11 / 12, "foot"),
  8285. default: true
  8286. },
  8287. {
  8288. name: "Macro",
  8289. height: math.unit(140, "feet")
  8290. },
  8291. {
  8292. name: "Supercharged",
  8293. height: math.unit(2500, "feet")
  8294. },
  8295. ]
  8296. ))
  8297. characterMakers.push(() => makeCharacter(
  8298. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8299. {
  8300. front: {
  8301. height: math.unit(6, "feet"),
  8302. weight: math.unit(350, "lbs"),
  8303. name: "Front",
  8304. image: {
  8305. source: "./media/characters/razinox/front.svg",
  8306. extra: 1686 / 1548,
  8307. bottom: 28.2 / 1868
  8308. }
  8309. },
  8310. back: {
  8311. height: math.unit(6, "feet"),
  8312. weight: math.unit(350, "lbs"),
  8313. name: "Back",
  8314. image: {
  8315. source: "./media/characters/razinox/back.svg",
  8316. extra: 1660 / 1590,
  8317. bottom: 15 / 1665
  8318. }
  8319. },
  8320. },
  8321. [
  8322. {
  8323. name: "Normal",
  8324. height: math.unit(10 + 8 / 12, "foot")
  8325. },
  8326. {
  8327. name: "Minimacro",
  8328. height: math.unit(15, "foot")
  8329. },
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(60, "foot"),
  8333. default: true
  8334. },
  8335. {
  8336. name: "Megamacro",
  8337. height: math.unit(5, "miles")
  8338. },
  8339. {
  8340. name: "Gigamacro",
  8341. height: math.unit(6000, "miles")
  8342. },
  8343. ]
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8347. {
  8348. front: {
  8349. height: math.unit(6, "feet"),
  8350. weight: math.unit(150, "lbs"),
  8351. name: "Front",
  8352. image: {
  8353. source: "./media/characters/cobalt/front.svg"
  8354. }
  8355. }
  8356. },
  8357. [
  8358. {
  8359. name: "Normal",
  8360. height: math.unit(8 + 1 / 12, "foot")
  8361. },
  8362. {
  8363. name: "Macro",
  8364. height: math.unit(111, "foot"),
  8365. default: true
  8366. },
  8367. {
  8368. name: "Supracosmic",
  8369. height: math.unit(1e42, "feet")
  8370. },
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8375. {
  8376. front: {
  8377. height: math.unit(5, "inches"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/amanda/front.svg",
  8381. extra: 926/791,
  8382. bottom: 38/964
  8383. }
  8384. },
  8385. back: {
  8386. height: math.unit(5, "inches"),
  8387. name: "Back",
  8388. image: {
  8389. source: "./media/characters/amanda/back.svg",
  8390. extra: 909/805,
  8391. bottom: 43/952
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Micro",
  8398. height: math.unit(5, "inches"),
  8399. default: true
  8400. },
  8401. ]
  8402. ))
  8403. characterMakers.push(() => makeCharacter(
  8404. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8405. {
  8406. front: {
  8407. height: math.unit(2.75, "meters"),
  8408. weight: math.unit(1200, "lb"),
  8409. name: "Front",
  8410. image: {
  8411. source: "./media/characters/teal/front.svg",
  8412. extra: 2463 / 2320,
  8413. bottom: 166 / 2629
  8414. }
  8415. },
  8416. back: {
  8417. height: math.unit(2.75, "meters"),
  8418. weight: math.unit(1200, "lb"),
  8419. name: "Back",
  8420. image: {
  8421. source: "./media/characters/teal/back.svg",
  8422. extra: 2580 / 2489,
  8423. bottom: 151 / 2731
  8424. }
  8425. },
  8426. sitting: {
  8427. height: math.unit(1.9, "meters"),
  8428. weight: math.unit(1200, "lb"),
  8429. name: "Sitting",
  8430. image: {
  8431. source: "./media/characters/teal/sitting.svg",
  8432. extra: 623 / 590,
  8433. bottom: 121 / 744
  8434. }
  8435. },
  8436. standing: {
  8437. height: math.unit(2.75, "meters"),
  8438. weight: math.unit(1200, "lb"),
  8439. name: "Standing",
  8440. image: {
  8441. source: "./media/characters/teal/standing.svg",
  8442. extra: 923 / 893,
  8443. bottom: 60 / 983
  8444. }
  8445. },
  8446. stretching: {
  8447. height: math.unit(3.65, "meters"),
  8448. weight: math.unit(1200, "lb"),
  8449. name: "Stretching",
  8450. image: {
  8451. source: "./media/characters/teal/stretching.svg",
  8452. extra: 1276 / 1244,
  8453. bottom: 0 / 1276
  8454. }
  8455. },
  8456. legged: {
  8457. height: math.unit(1.3, "meters"),
  8458. weight: math.unit(100, "lb"),
  8459. name: "Legged",
  8460. image: {
  8461. source: "./media/characters/teal/legged.svg",
  8462. extra: 462 / 437,
  8463. bottom: 24 / 486
  8464. }
  8465. },
  8466. naga: {
  8467. height: math.unit(5.4, "meters"),
  8468. weight: math.unit(4000, "lb"),
  8469. name: "Naga",
  8470. image: {
  8471. source: "./media/characters/teal/naga.svg",
  8472. extra: 1902 / 1858,
  8473. bottom: 0 / 1902
  8474. }
  8475. },
  8476. hand: {
  8477. height: math.unit(0.52, "meters"),
  8478. name: "Hand",
  8479. image: {
  8480. source: "./media/characters/teal/hand.svg"
  8481. }
  8482. },
  8483. maw: {
  8484. height: math.unit(0.43, "meters"),
  8485. name: "Maw",
  8486. image: {
  8487. source: "./media/characters/teal/maw.svg"
  8488. }
  8489. },
  8490. slit: {
  8491. height: math.unit(0.25, "meters"),
  8492. name: "Slit",
  8493. image: {
  8494. source: "./media/characters/teal/slit.svg"
  8495. }
  8496. },
  8497. },
  8498. [
  8499. {
  8500. name: "Normal",
  8501. height: math.unit(2.75, "meters"),
  8502. default: true
  8503. },
  8504. {
  8505. name: "Macro",
  8506. height: math.unit(300, "feet")
  8507. },
  8508. {
  8509. name: "Macro+",
  8510. height: math.unit(2000, "feet")
  8511. },
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8516. {
  8517. frontCat: {
  8518. height: math.unit(6, "feet"),
  8519. weight: math.unit(180, "lbs"),
  8520. name: "Front (Cat)",
  8521. image: {
  8522. source: "./media/characters/ravin-amulet/front-cat.svg"
  8523. }
  8524. },
  8525. frontCatAlt: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(180, "lbs"),
  8528. name: "Front (Alt, Cat)",
  8529. image: {
  8530. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8531. }
  8532. },
  8533. frontWerewolf: {
  8534. height: math.unit(6 * 1.2, "feet"),
  8535. weight: math.unit(225, "lbs"),
  8536. name: "Front (Werewolf)",
  8537. image: {
  8538. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8539. }
  8540. },
  8541. backWerewolf: {
  8542. height: math.unit(6 * 1.2, "feet"),
  8543. weight: math.unit(225, "lbs"),
  8544. name: "Back (Werewolf)",
  8545. image: {
  8546. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8547. }
  8548. },
  8549. },
  8550. [
  8551. {
  8552. name: "Nano",
  8553. height: math.unit(1, "micrometer")
  8554. },
  8555. {
  8556. name: "Micro",
  8557. height: math.unit(1, "inch")
  8558. },
  8559. {
  8560. name: "Normal",
  8561. height: math.unit(6, "feet"),
  8562. default: true
  8563. },
  8564. {
  8565. name: "Macro",
  8566. height: math.unit(60, "feet")
  8567. }
  8568. ]
  8569. ))
  8570. characterMakers.push(() => makeCharacter(
  8571. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8572. {
  8573. front: {
  8574. height: math.unit(6, "feet"),
  8575. weight: math.unit(165, "lbs"),
  8576. name: "Front",
  8577. image: {
  8578. source: "./media/characters/fluoresce/front.svg"
  8579. }
  8580. }
  8581. },
  8582. [
  8583. {
  8584. name: "Micro",
  8585. height: math.unit(6, "cm")
  8586. },
  8587. {
  8588. name: "Normal",
  8589. height: math.unit(5 + 7 / 12, "feet"),
  8590. default: true
  8591. },
  8592. {
  8593. name: "Macro",
  8594. height: math.unit(56, "feet")
  8595. },
  8596. {
  8597. name: "Megamacro",
  8598. height: math.unit(1.9, "miles")
  8599. },
  8600. ]
  8601. ))
  8602. characterMakers.push(() => makeCharacter(
  8603. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8604. {
  8605. front: {
  8606. height: math.unit(9 + 6 / 12, "feet"),
  8607. weight: math.unit(523, "lbs"),
  8608. name: "Side",
  8609. image: {
  8610. source: "./media/characters/aurora/side.svg",
  8611. extra: 474/393,
  8612. bottom: 5/479
  8613. }
  8614. }
  8615. },
  8616. [
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(9 + 6 / 12, "feet")
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(96, "feet"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Macro+",
  8628. height: math.unit(243, "feet")
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8634. {
  8635. front: {
  8636. height: math.unit(194, "cm"),
  8637. weight: math.unit(90, "kg"),
  8638. name: "Front",
  8639. image: {
  8640. source: "./media/characters/ranek/front.svg",
  8641. extra: 1862/1791,
  8642. bottom: 80/1942
  8643. }
  8644. },
  8645. back: {
  8646. height: math.unit(194, "cm"),
  8647. weight: math.unit(90, "kg"),
  8648. name: "Back",
  8649. image: {
  8650. source: "./media/characters/ranek/back.svg",
  8651. extra: 1853/1787,
  8652. bottom: 74/1927
  8653. }
  8654. },
  8655. feral: {
  8656. height: math.unit(30, "cm"),
  8657. weight: math.unit(1.6, "lbs"),
  8658. name: "Feral",
  8659. image: {
  8660. source: "./media/characters/ranek/feral.svg",
  8661. extra: 990/631,
  8662. bottom: 29/1019
  8663. }
  8664. },
  8665. },
  8666. [
  8667. {
  8668. name: "Normal",
  8669. height: math.unit(194, "cm"),
  8670. default: true
  8671. },
  8672. {
  8673. name: "Macro",
  8674. height: math.unit(100, "meters")
  8675. },
  8676. ]
  8677. ))
  8678. characterMakers.push(() => makeCharacter(
  8679. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8680. {
  8681. front: {
  8682. height: math.unit(5 + 6 / 12, "feet"),
  8683. weight: math.unit(153, "lbs"),
  8684. name: "Front",
  8685. image: {
  8686. source: "./media/characters/andrew-cooper/front.svg"
  8687. }
  8688. },
  8689. },
  8690. [
  8691. {
  8692. name: "Nano",
  8693. height: math.unit(1, "mm")
  8694. },
  8695. {
  8696. name: "Micro",
  8697. height: math.unit(2, "inches")
  8698. },
  8699. {
  8700. name: "Normal",
  8701. height: math.unit(5 + 6 / 12, "feet"),
  8702. default: true
  8703. }
  8704. ]
  8705. ))
  8706. characterMakers.push(() => makeCharacter(
  8707. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8708. {
  8709. front: {
  8710. height: math.unit(6, "feet"),
  8711. weight: math.unit(180, "lbs"),
  8712. name: "Front",
  8713. image: {
  8714. source: "./media/characters/akane-sato/front.svg",
  8715. extra: 1219 / 1140
  8716. }
  8717. },
  8718. back: {
  8719. height: math.unit(6, "feet"),
  8720. weight: math.unit(180, "lbs"),
  8721. name: "Back",
  8722. image: {
  8723. source: "./media/characters/akane-sato/back.svg",
  8724. extra: 1219 / 1170
  8725. }
  8726. },
  8727. },
  8728. [
  8729. {
  8730. name: "Normal",
  8731. height: math.unit(2.5, "meters")
  8732. },
  8733. {
  8734. name: "Macro",
  8735. height: math.unit(250, "meters"),
  8736. default: true
  8737. },
  8738. {
  8739. name: "Megamacro",
  8740. height: math.unit(25, "km")
  8741. },
  8742. ]
  8743. ))
  8744. characterMakers.push(() => makeCharacter(
  8745. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8746. {
  8747. front: {
  8748. height: math.unit(6, "feet"),
  8749. weight: math.unit(65, "kg"),
  8750. name: "Front",
  8751. image: {
  8752. source: "./media/characters/rook/front.svg",
  8753. extra: 960 / 950
  8754. }
  8755. }
  8756. },
  8757. [
  8758. {
  8759. name: "Normal",
  8760. height: math.unit(8.8, "feet")
  8761. },
  8762. {
  8763. name: "Macro",
  8764. height: math.unit(88, "feet"),
  8765. default: true
  8766. },
  8767. {
  8768. name: "Megamacro",
  8769. height: math.unit(8, "miles")
  8770. },
  8771. ]
  8772. ))
  8773. characterMakers.push(() => makeCharacter(
  8774. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8775. {
  8776. front: {
  8777. height: math.unit(12 + 2 / 12, "feet"),
  8778. weight: math.unit(808, "lbs"),
  8779. name: "Front",
  8780. image: {
  8781. source: "./media/characters/prodigy/front.svg"
  8782. }
  8783. }
  8784. },
  8785. [
  8786. {
  8787. name: "Normal",
  8788. height: math.unit(12 + 2 / 12, "feet"),
  8789. default: true
  8790. },
  8791. {
  8792. name: "Macro",
  8793. height: math.unit(143, "feet")
  8794. },
  8795. {
  8796. name: "Macro+",
  8797. height: math.unit(400, "feet")
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(6, "feet"),
  8806. weight: math.unit(225, "lbs"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/daniel/front.svg"
  8810. }
  8811. },
  8812. leaning: {
  8813. height: math.unit(6, "feet"),
  8814. weight: math.unit(225, "lbs"),
  8815. name: "Leaning",
  8816. image: {
  8817. source: "./media/characters/daniel/leaning.svg"
  8818. }
  8819. },
  8820. },
  8821. [
  8822. {
  8823. name: "Macro",
  8824. height: math.unit(1000, "feet"),
  8825. default: true
  8826. },
  8827. ]
  8828. ))
  8829. characterMakers.push(() => makeCharacter(
  8830. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8831. {
  8832. front: {
  8833. height: math.unit(6, "feet"),
  8834. weight: math.unit(88, "lbs"),
  8835. name: "Front",
  8836. image: {
  8837. source: "./media/characters/chiros/front.svg",
  8838. extra: 306 / 226
  8839. }
  8840. },
  8841. side: {
  8842. height: math.unit(6, "feet"),
  8843. weight: math.unit(88, "lbs"),
  8844. name: "Side",
  8845. image: {
  8846. source: "./media/characters/chiros/side.svg",
  8847. extra: 306 / 226
  8848. }
  8849. },
  8850. },
  8851. [
  8852. {
  8853. name: "Normal",
  8854. height: math.unit(6, "cm"),
  8855. default: true
  8856. },
  8857. ]
  8858. ))
  8859. characterMakers.push(() => makeCharacter(
  8860. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8861. {
  8862. front: {
  8863. height: math.unit(6, "feet"),
  8864. weight: math.unit(100, "lbs"),
  8865. name: "Front",
  8866. image: {
  8867. source: "./media/characters/selka/front.svg",
  8868. extra: 947 / 887
  8869. }
  8870. }
  8871. },
  8872. [
  8873. {
  8874. name: "Normal",
  8875. height: math.unit(5, "cm"),
  8876. default: true
  8877. },
  8878. ]
  8879. ))
  8880. characterMakers.push(() => makeCharacter(
  8881. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8882. {
  8883. front: {
  8884. height: math.unit(8 + 3 / 12, "feet"),
  8885. weight: math.unit(424, "lbs"),
  8886. name: "Front",
  8887. image: {
  8888. source: "./media/characters/verin/front.svg",
  8889. extra: 1845 / 1550
  8890. }
  8891. },
  8892. frontArmored: {
  8893. height: math.unit(8 + 3 / 12, "feet"),
  8894. weight: math.unit(424, "lbs"),
  8895. name: "Front (Armored)",
  8896. image: {
  8897. source: "./media/characters/verin/front-armor.svg",
  8898. extra: 1845 / 1550,
  8899. bottom: 0.01
  8900. }
  8901. },
  8902. back: {
  8903. height: math.unit(8 + 3 / 12, "feet"),
  8904. weight: math.unit(424, "lbs"),
  8905. name: "Back",
  8906. image: {
  8907. source: "./media/characters/verin/back.svg",
  8908. bottom: 0.1,
  8909. extra: 1
  8910. }
  8911. },
  8912. foot: {
  8913. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8914. name: "Foot",
  8915. image: {
  8916. source: "./media/characters/verin/foot.svg"
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(8 + 3 / 12, "feet")
  8924. },
  8925. {
  8926. name: "Minimacro",
  8927. height: math.unit(21, "feet"),
  8928. default: true
  8929. },
  8930. {
  8931. name: "Macro",
  8932. height: math.unit(626, "feet")
  8933. },
  8934. ]
  8935. ))
  8936. characterMakers.push(() => makeCharacter(
  8937. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8938. {
  8939. front: {
  8940. height: math.unit(2.718, "meters"),
  8941. weight: math.unit(150, "lbs"),
  8942. name: "Front",
  8943. image: {
  8944. source: "./media/characters/sovrim-terraquian/front.svg",
  8945. extra: 1752/1689,
  8946. bottom: 36/1788
  8947. }
  8948. },
  8949. back: {
  8950. height: math.unit(2.718, "meters"),
  8951. weight: math.unit(150, "lbs"),
  8952. name: "Back",
  8953. image: {
  8954. source: "./media/characters/sovrim-terraquian/back.svg",
  8955. extra: 1698/1657,
  8956. bottom: 58/1756
  8957. }
  8958. },
  8959. tongue: {
  8960. height: math.unit(2.865, "feet"),
  8961. name: "Tongue",
  8962. image: {
  8963. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8964. }
  8965. },
  8966. hand: {
  8967. height: math.unit(1.61, "feet"),
  8968. name: "Hand",
  8969. image: {
  8970. source: "./media/characters/sovrim-terraquian/hand.svg"
  8971. }
  8972. },
  8973. foot: {
  8974. height: math.unit(1.05, "feet"),
  8975. name: "Foot",
  8976. image: {
  8977. source: "./media/characters/sovrim-terraquian/foot.svg"
  8978. }
  8979. },
  8980. footAlt: {
  8981. height: math.unit(0.88, "feet"),
  8982. name: "Foot (Alt)",
  8983. image: {
  8984. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Micro",
  8991. height: math.unit(2, "inches")
  8992. },
  8993. {
  8994. name: "Small",
  8995. height: math.unit(1, "meter")
  8996. },
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(Math.E, "meters"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Macro",
  9004. height: math.unit(20, "meters")
  9005. },
  9006. {
  9007. name: "Macro+",
  9008. height: math.unit(400, "meters")
  9009. },
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9014. {
  9015. front: {
  9016. height: math.unit(7, "feet"),
  9017. weight: math.unit(489, "lbs"),
  9018. name: "Front",
  9019. image: {
  9020. source: "./media/characters/reece-silvermane/front.svg",
  9021. bottom: 0.02,
  9022. extra: 1
  9023. }
  9024. },
  9025. },
  9026. [
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(1.5, "miles"),
  9030. default: true
  9031. },
  9032. ]
  9033. ))
  9034. characterMakers.push(() => makeCharacter(
  9035. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9036. {
  9037. front: {
  9038. height: math.unit(6, "feet"),
  9039. weight: math.unit(78, "kg"),
  9040. name: "Front",
  9041. image: {
  9042. source: "./media/characters/kane/front.svg",
  9043. extra: 978 / 899
  9044. }
  9045. },
  9046. },
  9047. [
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(2.1, "m"),
  9051. },
  9052. {
  9053. name: "Macro",
  9054. height: math.unit(1, "km"),
  9055. default: true
  9056. },
  9057. ]
  9058. ))
  9059. characterMakers.push(() => makeCharacter(
  9060. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9061. {
  9062. front: {
  9063. height: math.unit(6, "feet"),
  9064. weight: math.unit(200, "kg"),
  9065. name: "Front",
  9066. image: {
  9067. source: "./media/characters/tegon/front.svg",
  9068. bottom: 0.01,
  9069. extra: 1
  9070. }
  9071. },
  9072. },
  9073. [
  9074. {
  9075. name: "Micro",
  9076. height: math.unit(1, "inch")
  9077. },
  9078. {
  9079. name: "Normal",
  9080. height: math.unit(6 + 3 / 12, "feet"),
  9081. default: true
  9082. },
  9083. {
  9084. name: "Macro",
  9085. height: math.unit(300, "feet")
  9086. },
  9087. {
  9088. name: "Megamacro",
  9089. height: math.unit(69, "miles")
  9090. },
  9091. ]
  9092. ))
  9093. characterMakers.push(() => makeCharacter(
  9094. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9095. {
  9096. side: {
  9097. height: math.unit(6, "feet"),
  9098. weight: math.unit(2304, "lbs"),
  9099. name: "Side",
  9100. image: {
  9101. source: "./media/characters/arcturax/side.svg",
  9102. extra: 790 / 376,
  9103. bottom: 0.01
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Micro",
  9110. height: math.unit(2, "inch")
  9111. },
  9112. {
  9113. name: "Normal",
  9114. height: math.unit(6, "feet")
  9115. },
  9116. {
  9117. name: "Macro",
  9118. height: math.unit(39, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Megamacro",
  9123. height: math.unit(7, "miles")
  9124. },
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9129. {
  9130. front: {
  9131. height: math.unit(6, "feet"),
  9132. weight: math.unit(50, "lbs"),
  9133. name: "Front",
  9134. image: {
  9135. source: "./media/characters/sentri/front.svg",
  9136. extra: 1750 / 1570,
  9137. bottom: 0.025
  9138. }
  9139. },
  9140. frontAlt: {
  9141. height: math.unit(6, "feet"),
  9142. weight: math.unit(50, "lbs"),
  9143. name: "Front (Alt)",
  9144. image: {
  9145. source: "./media/characters/sentri/front-alt.svg",
  9146. extra: 1750 / 1570,
  9147. bottom: 0.025
  9148. }
  9149. },
  9150. },
  9151. [
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(15, "feet"),
  9155. default: true
  9156. },
  9157. {
  9158. name: "Macro",
  9159. height: math.unit(2500, "feet")
  9160. }
  9161. ]
  9162. ))
  9163. characterMakers.push(() => makeCharacter(
  9164. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9165. {
  9166. front: {
  9167. height: math.unit(5 + 8 / 12, "feet"),
  9168. weight: math.unit(130, "lbs"),
  9169. name: "Front",
  9170. image: {
  9171. source: "./media/characters/corvin/front.svg",
  9172. extra: 1803 / 1629
  9173. }
  9174. },
  9175. frontShirt: {
  9176. height: math.unit(5 + 8 / 12, "feet"),
  9177. weight: math.unit(130, "lbs"),
  9178. name: "Front (Shirt)",
  9179. image: {
  9180. source: "./media/characters/corvin/front-shirt.svg",
  9181. extra: 1803 / 1629
  9182. }
  9183. },
  9184. frontPoncho: {
  9185. height: math.unit(5 + 8 / 12, "feet"),
  9186. weight: math.unit(130, "lbs"),
  9187. name: "Front (Poncho)",
  9188. image: {
  9189. source: "./media/characters/corvin/front-poncho.svg",
  9190. extra: 1803 / 1629
  9191. }
  9192. },
  9193. side: {
  9194. height: math.unit(5 + 8 / 12, "feet"),
  9195. weight: math.unit(130, "lbs"),
  9196. name: "Side",
  9197. image: {
  9198. source: "./media/characters/corvin/side.svg",
  9199. extra: 1012 / 945
  9200. }
  9201. },
  9202. back: {
  9203. height: math.unit(5 + 8 / 12, "feet"),
  9204. weight: math.unit(130, "lbs"),
  9205. name: "Back",
  9206. image: {
  9207. source: "./media/characters/corvin/back.svg",
  9208. extra: 1803 / 1629
  9209. }
  9210. },
  9211. },
  9212. [
  9213. {
  9214. name: "Micro",
  9215. height: math.unit(3, "inches")
  9216. },
  9217. {
  9218. name: "Normal",
  9219. height: math.unit(5 + 8 / 12, "feet")
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(300, "feet"),
  9224. default: true
  9225. },
  9226. {
  9227. name: "Megamacro",
  9228. height: math.unit(500, "miles")
  9229. }
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9234. {
  9235. front: {
  9236. height: math.unit(6, "feet"),
  9237. weight: math.unit(135, "lbs"),
  9238. name: "Front",
  9239. image: {
  9240. source: "./media/characters/q/front.svg",
  9241. extra: 854 / 752,
  9242. bottom: 0.005
  9243. }
  9244. },
  9245. back: {
  9246. height: math.unit(6, "feet"),
  9247. weight: math.unit(130, "lbs"),
  9248. name: "Back",
  9249. image: {
  9250. source: "./media/characters/q/back.svg",
  9251. extra: 854 / 752
  9252. }
  9253. },
  9254. },
  9255. [
  9256. {
  9257. name: "Macro",
  9258. height: math.unit(90, "feet"),
  9259. default: true
  9260. },
  9261. {
  9262. name: "Extra Macro",
  9263. height: math.unit(300, "feet"),
  9264. },
  9265. {
  9266. name: "BIG WALF",
  9267. height: math.unit(750, "feet"),
  9268. },
  9269. ]
  9270. ))
  9271. characterMakers.push(() => makeCharacter(
  9272. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9273. {
  9274. front: {
  9275. height: math.unit(3, "feet"),
  9276. weight: math.unit(28, "lbs"),
  9277. name: "Front",
  9278. image: {
  9279. source: "./media/characters/citrine/front.svg"
  9280. }
  9281. }
  9282. },
  9283. [
  9284. {
  9285. name: "Normal",
  9286. height: math.unit(3, "feet"),
  9287. default: true
  9288. }
  9289. ]
  9290. ))
  9291. characterMakers.push(() => makeCharacter(
  9292. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9293. {
  9294. front: {
  9295. height: math.unit(14, "feet"),
  9296. weight: math.unit(1450, "kg"),
  9297. preyCapacity: math.unit(15, "people"),
  9298. name: "Front",
  9299. image: {
  9300. source: "./media/characters/aura-starwind/front.svg",
  9301. extra: 1440/1327,
  9302. bottom: 11/1451
  9303. }
  9304. },
  9305. side: {
  9306. height: math.unit(14, "feet"),
  9307. weight: math.unit(1450, "kg"),
  9308. preyCapacity: math.unit(15, "people"),
  9309. name: "Side",
  9310. image: {
  9311. source: "./media/characters/aura-starwind/side.svg",
  9312. extra: 1654 / 1497
  9313. }
  9314. },
  9315. taur: {
  9316. height: math.unit(18, "feet"),
  9317. weight: math.unit(5500, "kg"),
  9318. preyCapacity: math.unit(50, "people"),
  9319. name: "Taur",
  9320. image: {
  9321. source: "./media/characters/aura-starwind/taur.svg",
  9322. extra: 1760 / 1650
  9323. }
  9324. },
  9325. feral: {
  9326. height: math.unit(46, "feet"),
  9327. weight: math.unit(25000, "kg"),
  9328. preyCapacity: math.unit(120, "people"),
  9329. name: "Feral",
  9330. image: {
  9331. source: "./media/characters/aura-starwind/feral.svg"
  9332. }
  9333. },
  9334. },
  9335. [
  9336. {
  9337. name: "Normal",
  9338. height: math.unit(14, "feet"),
  9339. default: true
  9340. },
  9341. {
  9342. name: "Macro",
  9343. height: math.unit(50, "meters")
  9344. },
  9345. {
  9346. name: "Megamacro",
  9347. height: math.unit(5000, "meters")
  9348. },
  9349. {
  9350. name: "Gigamacro",
  9351. height: math.unit(100000, "kilometers")
  9352. },
  9353. ]
  9354. ))
  9355. characterMakers.push(() => makeCharacter(
  9356. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9357. {
  9358. front: {
  9359. height: math.unit(2 + 7 / 12, "feet"),
  9360. weight: math.unit(32, "lbs"),
  9361. name: "Front",
  9362. image: {
  9363. source: "./media/characters/rivet/front.svg",
  9364. extra: 1716 / 1658,
  9365. bottom: 0.03
  9366. }
  9367. },
  9368. foot: {
  9369. height: math.unit(0.551, "feet"),
  9370. name: "Rivet's Foot",
  9371. image: {
  9372. source: "./media/characters/rivet/foot.svg"
  9373. },
  9374. rename: true
  9375. }
  9376. },
  9377. [
  9378. {
  9379. name: "Micro",
  9380. height: math.unit(1.5, "inches"),
  9381. },
  9382. {
  9383. name: "Normal",
  9384. height: math.unit(2 + 7 / 12, "feet"),
  9385. default: true
  9386. },
  9387. {
  9388. name: "Macro",
  9389. height: math.unit(85, "feet")
  9390. },
  9391. {
  9392. name: "Megamacro",
  9393. height: math.unit(2.2, "km")
  9394. }
  9395. ]
  9396. ))
  9397. characterMakers.push(() => makeCharacter(
  9398. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9399. {
  9400. front: {
  9401. height: math.unit(5 + 9 / 12, "feet"),
  9402. weight: math.unit(150, "lbs"),
  9403. name: "Front",
  9404. image: {
  9405. source: "./media/characters/coffee/front.svg",
  9406. extra: 946/880,
  9407. bottom: 66/1012
  9408. }
  9409. },
  9410. foot: {
  9411. height: math.unit(1.29, "feet"),
  9412. name: "Foot",
  9413. image: {
  9414. source: "./media/characters/coffee/foot.svg"
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Micro",
  9421. height: math.unit(2, "inches"),
  9422. },
  9423. {
  9424. name: "Normal",
  9425. height: math.unit(5 + 9 / 12, "feet"),
  9426. default: true
  9427. },
  9428. {
  9429. name: "Macro",
  9430. height: math.unit(800, "feet")
  9431. },
  9432. {
  9433. name: "Megamacro",
  9434. height: math.unit(25, "miles")
  9435. }
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9440. {
  9441. front: {
  9442. height: math.unit(6, "feet"),
  9443. weight: math.unit(200, "lbs"),
  9444. name: "Front",
  9445. image: {
  9446. source: "./media/characters/chari-gal/front.svg",
  9447. extra: 735/649,
  9448. bottom: 55/790
  9449. },
  9450. form: "normal",
  9451. default: true
  9452. },
  9453. back: {
  9454. height: math.unit(6, "feet"),
  9455. weight: math.unit(200, "lb"),
  9456. name: "Back",
  9457. image: {
  9458. source: "./media/characters/chari-gal/back.svg",
  9459. extra: 762/666,
  9460. bottom: 31/793
  9461. },
  9462. form: "normal"
  9463. },
  9464. mouth: {
  9465. height: math.unit(1.35, "feet"),
  9466. name: "Mouth",
  9467. image: {
  9468. source: "./media/characters/chari-gal/mouth.svg"
  9469. },
  9470. form: "normal"
  9471. },
  9472. gigantamax: {
  9473. height: math.unit(6 * 16, "feet"),
  9474. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9475. name: "Gigantamax",
  9476. image: {
  9477. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9478. extra: 1507/1149,
  9479. bottom: 254/1761
  9480. },
  9481. form: "gigantamax",
  9482. default: true
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Normal",
  9488. height: math.unit(5 + 7 / 12, "feet"),
  9489. form: "normal",
  9490. },
  9491. {
  9492. name: "Macro",
  9493. height: math.unit(200, "feet"),
  9494. default: true,
  9495. form: "normal"
  9496. },
  9497. {
  9498. name: "Normal",
  9499. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9500. form: "gigantamax",
  9501. },
  9502. {
  9503. name: "Macro",
  9504. height: math.unit(16 * 200, "feet"),
  9505. default: true,
  9506. form: "gigantamax"
  9507. },
  9508. ],
  9509. {
  9510. "normal": {
  9511. name: "Normal",
  9512. default: true
  9513. },
  9514. "gigantamax": {
  9515. name: "Gigantamax",
  9516. },
  9517. }
  9518. ))
  9519. characterMakers.push(() => makeCharacter(
  9520. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9521. {
  9522. front: {
  9523. height: math.unit(6, "feet"),
  9524. weight: math.unit(150, "lbs"),
  9525. name: "Front",
  9526. image: {
  9527. source: "./media/characters/nova/front.svg",
  9528. extra: 5000 / 4722,
  9529. bottom: 0.02
  9530. }
  9531. }
  9532. },
  9533. [
  9534. {
  9535. name: "Micro-",
  9536. height: math.unit(0.8, "inches")
  9537. },
  9538. {
  9539. name: "Micro",
  9540. height: math.unit(2, "inches"),
  9541. default: true
  9542. },
  9543. ]
  9544. ))
  9545. characterMakers.push(() => makeCharacter(
  9546. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9547. {
  9548. koboldFront: {
  9549. height: math.unit(3 + 1 / 12, "feet"),
  9550. weight: math.unit(21.7, "lbs"),
  9551. name: "Front",
  9552. image: {
  9553. source: "./media/characters/argent/kobold-front.svg",
  9554. extra: 1471 / 1331,
  9555. bottom: 100.8 / 1575.5
  9556. },
  9557. form: "kobold",
  9558. default: true
  9559. },
  9560. dragonFront: {
  9561. height: math.unit(75, "inches"),
  9562. name: "Front",
  9563. image: {
  9564. source: "./media/characters/argent/dragon-front.svg",
  9565. extra: 1389/1248,
  9566. bottom: 54/1443
  9567. },
  9568. form: "dragon",
  9569. },
  9570. dragonBack: {
  9571. height: math.unit(75, "inches"),
  9572. name: "Back",
  9573. image: {
  9574. source: "./media/characters/argent/dragon-back.svg",
  9575. extra: 1399/1271,
  9576. bottom: 23/1422
  9577. },
  9578. form: "dragon",
  9579. },
  9580. dragonDressed: {
  9581. height: math.unit(75, "inches"),
  9582. name: "Dressed",
  9583. image: {
  9584. source: "./media/characters/argent/dragon-dressed.svg",
  9585. extra: 1350/1215,
  9586. bottom: 26/1376
  9587. },
  9588. form: "dragon"
  9589. },
  9590. dragonHead: {
  9591. height: math.unit(23.5, "inches"),
  9592. name: "Head",
  9593. image: {
  9594. source: "./media/characters/argent/dragon-head.svg"
  9595. },
  9596. form: "dragon",
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Micro",
  9602. height: math.unit(2, "inches"),
  9603. form: "kobold",
  9604. },
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(3 + 1 / 12, "feet"),
  9608. form: "kobold",
  9609. default: true
  9610. },
  9611. {
  9612. name: "Macro",
  9613. height: math.unit(120, "feet"),
  9614. form: "kobold",
  9615. },
  9616. {
  9617. name: "Speck",
  9618. height: math.unit(1, "mm"),
  9619. form: "dragon",
  9620. },
  9621. {
  9622. name: "Tiny",
  9623. height: math.unit(1, "cm"),
  9624. form: "dragon",
  9625. },
  9626. {
  9627. name: "Micro",
  9628. height: math.unit(5, "cm"),
  9629. form: "dragon",
  9630. },
  9631. {
  9632. name: "Normal",
  9633. height: math.unit(75, "inches"),
  9634. form: "dragon",
  9635. default: true
  9636. },
  9637. {
  9638. name: "Extra Tall",
  9639. height: math.unit(9, "feet"),
  9640. form: "dragon",
  9641. },
  9642. {
  9643. name: "Inconvenient",
  9644. height: math.unit(5, "meters"),
  9645. form: "dragon",
  9646. },
  9647. {
  9648. name: "Macro",
  9649. height: math.unit(70, "meters"),
  9650. form: "dragon",
  9651. },
  9652. {
  9653. name: "Macro+",
  9654. height: math.unit(250, "meters"),
  9655. form: "dragon",
  9656. },
  9657. {
  9658. name: "Megamacro",
  9659. height: math.unit(20, "km"),
  9660. form: "dragon",
  9661. },
  9662. {
  9663. name: "Mountainous",
  9664. height: math.unit(100, "km"),
  9665. form: "dragon",
  9666. },
  9667. {
  9668. name: "Continental",
  9669. height: math.unit(2, "megameters"),
  9670. form: "dragon",
  9671. },
  9672. {
  9673. name: "Too Big",
  9674. height: math.unit(900, "megameters"),
  9675. form: "dragon",
  9676. },
  9677. ],
  9678. {
  9679. "kobold": {
  9680. name: "Kobold",
  9681. default: true
  9682. },
  9683. "dragon": {
  9684. name: "Dragon",
  9685. },
  9686. }
  9687. ))
  9688. characterMakers.push(() => makeCharacter(
  9689. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9690. {
  9691. lamp: {
  9692. height: math.unit(7 * 1559 / 989, "feet"),
  9693. name: "Magic Lamp",
  9694. image: {
  9695. source: "./media/characters/mira-al-cul/lamp.svg",
  9696. extra: 1617 / 1559
  9697. }
  9698. },
  9699. front: {
  9700. height: math.unit(7, "feet"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/mira-al-cul/front.svg",
  9704. extra: 1044 / 990
  9705. }
  9706. },
  9707. },
  9708. [
  9709. {
  9710. name: "Heavily Restricted",
  9711. height: math.unit(7 * 1559 / 989, "feet")
  9712. },
  9713. {
  9714. name: "Freshly Freed",
  9715. height: math.unit(50 * 1559 / 989, "feet")
  9716. },
  9717. {
  9718. name: "World Encompassing",
  9719. height: math.unit(10000 * 1559 / 989, "miles")
  9720. },
  9721. {
  9722. name: "Galactic",
  9723. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9724. },
  9725. {
  9726. name: "Palmed Universe",
  9727. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9728. default: true
  9729. },
  9730. {
  9731. name: "Multiversal Matriarch",
  9732. height: math.unit(8.87e10, "yottameters")
  9733. },
  9734. {
  9735. name: "Void Mother",
  9736. height: math.unit(3.14e110, "yottaparsecs")
  9737. },
  9738. {
  9739. name: "Toying with Transcendence",
  9740. height: math.unit(1e307, "meters")
  9741. },
  9742. ]
  9743. ))
  9744. characterMakers.push(() => makeCharacter(
  9745. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9746. {
  9747. front: {
  9748. height: math.unit(17 + 1 / 12, "feet"),
  9749. weight: math.unit(476.2 * 5, "lbs"),
  9750. name: "Front",
  9751. image: {
  9752. source: "./media/characters/kuro-shi-uchū/front.svg",
  9753. extra: 2329 / 1835,
  9754. bottom: 0.02
  9755. }
  9756. },
  9757. },
  9758. [
  9759. {
  9760. name: "Micro",
  9761. height: math.unit(2, "inches")
  9762. },
  9763. {
  9764. name: "Normal",
  9765. height: math.unit(12, "meters")
  9766. },
  9767. {
  9768. name: "Planetary",
  9769. height: math.unit(0.00929, "AU"),
  9770. default: true
  9771. },
  9772. {
  9773. name: "Universal",
  9774. height: math.unit(20, "gigaparsecs")
  9775. },
  9776. ]
  9777. ))
  9778. characterMakers.push(() => makeCharacter(
  9779. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9780. {
  9781. front: {
  9782. height: math.unit(5 + 2 / 12, "feet"),
  9783. weight: math.unit(120, "lbs"),
  9784. name: "Front",
  9785. image: {
  9786. source: "./media/characters/katherine/front.svg",
  9787. extra: 2075 / 1969
  9788. }
  9789. },
  9790. dress: {
  9791. height: math.unit(5 + 2 / 12, "feet"),
  9792. weight: math.unit(120, "lbs"),
  9793. name: "Dress",
  9794. image: {
  9795. source: "./media/characters/katherine/dress.svg",
  9796. extra: 2258 / 2064
  9797. }
  9798. },
  9799. },
  9800. [
  9801. {
  9802. name: "Micro",
  9803. height: math.unit(1, "inches"),
  9804. default: true
  9805. },
  9806. {
  9807. name: "Normal",
  9808. height: math.unit(5 + 2 / 12, "feet")
  9809. },
  9810. {
  9811. name: "Macro",
  9812. height: math.unit(100, "meters")
  9813. },
  9814. {
  9815. name: "Megamacro",
  9816. height: math.unit(80, "miles")
  9817. },
  9818. ]
  9819. ))
  9820. characterMakers.push(() => makeCharacter(
  9821. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9822. {
  9823. front: {
  9824. height: math.unit(7 + 8 / 12, "feet"),
  9825. weight: math.unit(250, "lbs"),
  9826. name: "Front",
  9827. image: {
  9828. source: "./media/characters/yevis/front.svg",
  9829. extra: 1938 / 1755
  9830. }
  9831. }
  9832. },
  9833. [
  9834. {
  9835. name: "Mortal",
  9836. height: math.unit(7 + 8 / 12, "feet")
  9837. },
  9838. {
  9839. name: "Battle",
  9840. height: math.unit(25 + 11 / 12, "feet")
  9841. },
  9842. {
  9843. name: "Wrath",
  9844. height: math.unit(1654 + 11 / 12, "feet")
  9845. },
  9846. {
  9847. name: "Planet Destroyer",
  9848. height: math.unit(12000, "miles")
  9849. },
  9850. {
  9851. name: "Galaxy Conqueror",
  9852. height: math.unit(1.45, "zettameters"),
  9853. default: true
  9854. },
  9855. {
  9856. name: "Universal War",
  9857. height: math.unit(184, "gigaparsecs")
  9858. },
  9859. {
  9860. name: "Eternity War",
  9861. height: math.unit(1.98e55, "yottaparsecs")
  9862. },
  9863. ]
  9864. ))
  9865. characterMakers.push(() => makeCharacter(
  9866. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9867. {
  9868. front: {
  9869. height: math.unit(5 + 8 / 12, "feet"),
  9870. weight: math.unit(63, "kg"),
  9871. name: "Front",
  9872. image: {
  9873. source: "./media/characters/xavier/front.svg",
  9874. extra: 944 / 883
  9875. }
  9876. },
  9877. frontStretch: {
  9878. height: math.unit(5 + 8 / 12, "feet"),
  9879. weight: math.unit(63, "kg"),
  9880. name: "Stretching",
  9881. image: {
  9882. source: "./media/characters/xavier/front-stretch.svg",
  9883. extra: 962 / 820
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Normal",
  9890. height: math.unit(5 + 8 / 12, "feet")
  9891. },
  9892. {
  9893. name: "Macro",
  9894. height: math.unit(100, "meters"),
  9895. default: true
  9896. },
  9897. {
  9898. name: "McLargeHuge",
  9899. height: math.unit(10, "miles")
  9900. },
  9901. ]
  9902. ))
  9903. characterMakers.push(() => makeCharacter(
  9904. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9905. {
  9906. front: {
  9907. height: math.unit(5 + 5 / 12, "feet"),
  9908. weight: math.unit(150, "lb"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/joshii/front.svg",
  9912. extra: 765 / 653,
  9913. bottom: 51 / 816
  9914. }
  9915. },
  9916. foot: {
  9917. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9918. name: "Foot",
  9919. image: {
  9920. source: "./media/characters/joshii/foot.svg"
  9921. }
  9922. },
  9923. },
  9924. [
  9925. {
  9926. name: "Micro",
  9927. height: math.unit(2, "inches")
  9928. },
  9929. {
  9930. name: "Normal",
  9931. height: math.unit(5 + 5 / 12, "feet")
  9932. },
  9933. {
  9934. name: "Macro",
  9935. height: math.unit(785, "feet"),
  9936. default: true
  9937. },
  9938. {
  9939. name: "Megamacro",
  9940. height: math.unit(24.5, "miles")
  9941. },
  9942. ]
  9943. ))
  9944. characterMakers.push(() => makeCharacter(
  9945. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9946. {
  9947. front: {
  9948. height: math.unit(6, "feet"),
  9949. weight: math.unit(150, "lb"),
  9950. name: "Front",
  9951. image: {
  9952. source: "./media/characters/goddess-elizabeth/front.svg",
  9953. extra: 1800 / 1525,
  9954. bottom: 0.005
  9955. }
  9956. },
  9957. foot: {
  9958. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9959. name: "Foot",
  9960. image: {
  9961. source: "./media/characters/goddess-elizabeth/foot.svg"
  9962. }
  9963. },
  9964. mouth: {
  9965. height: math.unit(6, "feet"),
  9966. name: "Mouth",
  9967. image: {
  9968. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9969. }
  9970. },
  9971. },
  9972. [
  9973. {
  9974. name: "Micro",
  9975. height: math.unit(12, "feet")
  9976. },
  9977. {
  9978. name: "Normal",
  9979. height: math.unit(80, "miles"),
  9980. default: true
  9981. },
  9982. {
  9983. name: "Macro",
  9984. height: math.unit(15000, "parsecs")
  9985. },
  9986. ]
  9987. ))
  9988. characterMakers.push(() => makeCharacter(
  9989. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9990. {
  9991. front: {
  9992. height: math.unit(5 + 9 / 12, "feet"),
  9993. weight: math.unit(144, "lb"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/kara/front.svg"
  9997. }
  9998. },
  9999. feet: {
  10000. height: math.unit(6 / 6.765, "feet"),
  10001. name: "Kara's Feet",
  10002. rename: true,
  10003. image: {
  10004. source: "./media/characters/kara/feet.svg"
  10005. }
  10006. },
  10007. },
  10008. [
  10009. {
  10010. name: "Normal",
  10011. height: math.unit(5 + 9 / 12, "feet")
  10012. },
  10013. {
  10014. name: "Macro",
  10015. height: math.unit(174, "feet"),
  10016. default: true
  10017. },
  10018. ]
  10019. ))
  10020. characterMakers.push(() => makeCharacter(
  10021. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10022. {
  10023. front: {
  10024. height: math.unit(18, "feet"),
  10025. weight: math.unit(4050, "lb"),
  10026. name: "Front",
  10027. image: {
  10028. source: "./media/characters/tyrone/front.svg",
  10029. extra: 2405 / 2270,
  10030. bottom: 182 / 2587
  10031. }
  10032. },
  10033. },
  10034. [
  10035. {
  10036. name: "Normal",
  10037. height: math.unit(18, "feet"),
  10038. default: true
  10039. },
  10040. {
  10041. name: "Macro",
  10042. height: math.unit(300, "feet")
  10043. },
  10044. {
  10045. name: "Megamacro",
  10046. height: math.unit(15, "km")
  10047. },
  10048. {
  10049. name: "Gigamacro",
  10050. height: math.unit(500, "km")
  10051. },
  10052. {
  10053. name: "Teramacro",
  10054. height: math.unit(0.5, "gigameters")
  10055. },
  10056. {
  10057. name: "Omnimacro",
  10058. height: math.unit(1e252, "yottauniverse")
  10059. },
  10060. ]
  10061. ))
  10062. characterMakers.push(() => makeCharacter(
  10063. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10064. {
  10065. front: {
  10066. height: math.unit(7 + 8 / 12, "feet"),
  10067. weight: math.unit(120, "lb"),
  10068. name: "Front",
  10069. image: {
  10070. source: "./media/characters/danny/front.svg",
  10071. extra: 1490 / 1350
  10072. }
  10073. },
  10074. back: {
  10075. height: math.unit(7 + 8 / 12, "feet"),
  10076. weight: math.unit(120, "lb"),
  10077. name: "Back",
  10078. image: {
  10079. source: "./media/characters/danny/back.svg",
  10080. extra: 1490 / 1350
  10081. }
  10082. },
  10083. },
  10084. [
  10085. {
  10086. name: "Normal",
  10087. height: math.unit(7 + 8 / 12, "feet"),
  10088. default: true
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(3.5, "inches"),
  10097. weight: math.unit(19, "grams"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/mallow/front.svg",
  10101. extra: 471 / 431
  10102. }
  10103. },
  10104. back: {
  10105. height: math.unit(3.5, "inches"),
  10106. weight: math.unit(19, "grams"),
  10107. name: "Back",
  10108. image: {
  10109. source: "./media/characters/mallow/back.svg",
  10110. extra: 471 / 431
  10111. }
  10112. },
  10113. },
  10114. [
  10115. {
  10116. name: "Normal",
  10117. height: math.unit(3.5, "inches"),
  10118. default: true
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(9, "feet"),
  10127. weight: math.unit(230, "kg"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/starry-aqua/front.svg"
  10131. }
  10132. },
  10133. back: {
  10134. height: math.unit(9, "feet"),
  10135. weight: math.unit(230, "kg"),
  10136. name: "Back",
  10137. image: {
  10138. source: "./media/characters/starry-aqua/back.svg"
  10139. }
  10140. },
  10141. hand: {
  10142. height: math.unit(9 * 0.1168, "feet"),
  10143. name: "Hand",
  10144. image: {
  10145. source: "./media/characters/starry-aqua/hand.svg"
  10146. }
  10147. },
  10148. foot: {
  10149. height: math.unit(9 * 0.18, "feet"),
  10150. name: "Foot",
  10151. image: {
  10152. source: "./media/characters/starry-aqua/foot.svg"
  10153. }
  10154. }
  10155. },
  10156. [
  10157. {
  10158. name: "Micro",
  10159. height: math.unit(3, "inches")
  10160. },
  10161. {
  10162. name: "Normal",
  10163. height: math.unit(9, "feet")
  10164. },
  10165. {
  10166. name: "Macro",
  10167. height: math.unit(300, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Megamacro",
  10172. height: math.unit(3200, "feet")
  10173. }
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(15, "feet"),
  10181. weight: math.unit(5026, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/luka-towers/front.svg",
  10185. extra: 1269/1133,
  10186. bottom: 51/1320
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(15, "feet"),
  10194. default: true
  10195. },
  10196. {
  10197. name: "Minimacro",
  10198. height: math.unit(25, "feet")
  10199. },
  10200. {
  10201. name: "Macro",
  10202. height: math.unit(320, "feet")
  10203. },
  10204. {
  10205. name: "Megamacro",
  10206. height: math.unit(35000, "feet")
  10207. },
  10208. {
  10209. name: "Gigamacro",
  10210. height: math.unit(4000, "miles")
  10211. },
  10212. {
  10213. name: "Teramacro",
  10214. height: math.unit(15000, "miles")
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(6, "feet"),
  10223. weight: math.unit(150, "lb"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/natalie-nightring/front.svg",
  10227. extra: 1,
  10228. bottom: 0.06
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Uh Oh",
  10235. height: math.unit(0.1, "mm")
  10236. },
  10237. {
  10238. name: "Small",
  10239. height: math.unit(3, "inches")
  10240. },
  10241. {
  10242. name: "Human Scale",
  10243. height: math.unit(6, "feet")
  10244. },
  10245. {
  10246. name: "Librarian",
  10247. height: math.unit(50, "feet"),
  10248. default: true
  10249. },
  10250. {
  10251. name: "Immense",
  10252. height: math.unit(200, "miles")
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(6, "feet"),
  10261. weight: math.unit(180, "lbs"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/danni-rosie/front.svg",
  10265. extra: 1260 / 1128,
  10266. bottom: 0.022
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Micro",
  10273. height: math.unit(2, "inches"),
  10274. default: true
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10280. {
  10281. front: {
  10282. height: math.unit(5 + 9 / 12, "feet"),
  10283. weight: math.unit(220, "lb"),
  10284. name: "Front",
  10285. image: {
  10286. source: "./media/characters/samantha-kruse/front.svg",
  10287. extra: (985 / 935),
  10288. bottom: 0.03
  10289. }
  10290. },
  10291. frontUndressed: {
  10292. height: math.unit(5 + 9 / 12, "feet"),
  10293. weight: math.unit(220, "lb"),
  10294. name: "Front (Undressed)",
  10295. image: {
  10296. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10297. extra: (973 / 923),
  10298. bottom: 0.025
  10299. }
  10300. },
  10301. fat: {
  10302. height: math.unit(5 + 9 / 12, "feet"),
  10303. weight: math.unit(900, "lb"),
  10304. name: "Front (Fat)",
  10305. image: {
  10306. source: "./media/characters/samantha-kruse/fat.svg",
  10307. extra: 2688 / 2561
  10308. }
  10309. },
  10310. },
  10311. [
  10312. {
  10313. name: "Normal",
  10314. height: math.unit(5 + 9 / 12, "feet"),
  10315. default: true
  10316. }
  10317. ]
  10318. ))
  10319. characterMakers.push(() => makeCharacter(
  10320. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10321. {
  10322. back: {
  10323. height: math.unit(5 + 4 / 12, "feet"),
  10324. weight: math.unit(4963, "lb"),
  10325. name: "Back",
  10326. image: {
  10327. source: "./media/characters/amelia-rosie/back.svg",
  10328. extra: 1113 / 963,
  10329. bottom: 0.01
  10330. }
  10331. },
  10332. },
  10333. [
  10334. {
  10335. name: "Level 0",
  10336. height: math.unit(5 + 4 / 12, "feet")
  10337. },
  10338. {
  10339. name: "Level 1",
  10340. height: math.unit(164597, "feet"),
  10341. default: true
  10342. },
  10343. {
  10344. name: "Level 2",
  10345. height: math.unit(956243, "miles")
  10346. },
  10347. {
  10348. name: "Level 3",
  10349. height: math.unit(29421709423, "miles")
  10350. },
  10351. {
  10352. name: "Level 4",
  10353. height: math.unit(154, "lightyears")
  10354. },
  10355. {
  10356. name: "Level 5",
  10357. height: math.unit(4738272, "lightyears")
  10358. },
  10359. {
  10360. name: "Level 6",
  10361. height: math.unit(145787152896, "lightyears")
  10362. },
  10363. ]
  10364. ))
  10365. characterMakers.push(() => makeCharacter(
  10366. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10367. {
  10368. front: {
  10369. height: math.unit(5 + 11 / 12, "feet"),
  10370. weight: math.unit(65, "kg"),
  10371. name: "Front",
  10372. image: {
  10373. source: "./media/characters/rook-kitara/front.svg",
  10374. extra: 1347 / 1274,
  10375. bottom: 0.005
  10376. }
  10377. },
  10378. },
  10379. [
  10380. {
  10381. name: "Totally Unfair",
  10382. height: math.unit(1.8, "mm")
  10383. },
  10384. {
  10385. name: "Lap Rookie",
  10386. height: math.unit(1.4, "feet")
  10387. },
  10388. {
  10389. name: "Normal",
  10390. height: math.unit(5 + 11 / 12, "feet"),
  10391. default: true
  10392. },
  10393. {
  10394. name: "How Did This Happen",
  10395. height: math.unit(80, "miles")
  10396. }
  10397. ]
  10398. ))
  10399. characterMakers.push(() => makeCharacter(
  10400. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10401. {
  10402. front: {
  10403. height: math.unit(7, "feet"),
  10404. weight: math.unit(300, "lb"),
  10405. name: "Front",
  10406. image: {
  10407. source: "./media/characters/pisces/front.svg",
  10408. extra: 2255 / 2115,
  10409. bottom: 0.03
  10410. }
  10411. },
  10412. back: {
  10413. height: math.unit(7, "feet"),
  10414. weight: math.unit(300, "lb"),
  10415. name: "Back",
  10416. image: {
  10417. source: "./media/characters/pisces/back.svg",
  10418. extra: 2146 / 2055,
  10419. bottom: 0.04
  10420. }
  10421. },
  10422. },
  10423. [
  10424. {
  10425. name: "Normal",
  10426. height: math.unit(7, "feet"),
  10427. default: true
  10428. },
  10429. {
  10430. name: "Swimming Pool",
  10431. height: math.unit(12.2, "meters")
  10432. },
  10433. {
  10434. name: "Olympic Swimming Pool",
  10435. height: math.unit(56.3, "meters")
  10436. },
  10437. {
  10438. name: "Lake Superior",
  10439. height: math.unit(93900, "meters")
  10440. },
  10441. {
  10442. name: "Mediterranean Sea",
  10443. height: math.unit(644457, "meters")
  10444. },
  10445. {
  10446. name: "World's Oceans",
  10447. height: math.unit(4567491, "meters")
  10448. },
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10453. {
  10454. front: {
  10455. height: math.unit(2.3, "meters"),
  10456. weight: math.unit(120, "kg"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/zelas/front.svg"
  10460. }
  10461. },
  10462. side: {
  10463. height: math.unit(2.3, "meters"),
  10464. weight: math.unit(120, "kg"),
  10465. name: "Side",
  10466. image: {
  10467. source: "./media/characters/zelas/side.svg"
  10468. }
  10469. },
  10470. back: {
  10471. height: math.unit(2.3, "meters"),
  10472. weight: math.unit(120, "kg"),
  10473. name: "Back",
  10474. image: {
  10475. source: "./media/characters/zelas/back.svg"
  10476. }
  10477. },
  10478. foot: {
  10479. height: math.unit(1.116, "feet"),
  10480. name: "Foot",
  10481. image: {
  10482. source: "./media/characters/zelas/foot.svg"
  10483. }
  10484. },
  10485. },
  10486. [
  10487. {
  10488. name: "Normal",
  10489. height: math.unit(2.3, "meters")
  10490. },
  10491. {
  10492. name: "Macro",
  10493. height: math.unit(30, "meters"),
  10494. default: true
  10495. },
  10496. ]
  10497. ))
  10498. characterMakers.push(() => makeCharacter(
  10499. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10500. {
  10501. front: {
  10502. height: math.unit(1, "inch"),
  10503. weight: math.unit(0.21, "grams"),
  10504. name: "Front",
  10505. image: {
  10506. source: "./media/characters/talbot/front.svg",
  10507. extra: 594 / 544
  10508. }
  10509. },
  10510. },
  10511. [
  10512. {
  10513. name: "Micro",
  10514. height: math.unit(1, "inch"),
  10515. default: true
  10516. },
  10517. ]
  10518. ))
  10519. characterMakers.push(() => makeCharacter(
  10520. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10521. {
  10522. front: {
  10523. height: math.unit(3 + 3 / 12, "feet"),
  10524. weight: math.unit(51.8, "lb"),
  10525. name: "Front",
  10526. image: {
  10527. source: "./media/characters/fliss/front.svg",
  10528. extra: 840 / 640
  10529. }
  10530. },
  10531. },
  10532. [
  10533. {
  10534. name: "Teeny Tiny",
  10535. height: math.unit(1, "mm")
  10536. },
  10537. {
  10538. name: "Small",
  10539. height: math.unit(1, "inch"),
  10540. default: true
  10541. },
  10542. {
  10543. name: "Standard Sylveon",
  10544. height: math.unit(3 + 3 / 12, "feet")
  10545. },
  10546. {
  10547. name: "Large Nuisance",
  10548. height: math.unit(33, "feet")
  10549. },
  10550. {
  10551. name: "City Filler",
  10552. height: math.unit(3000, "feet")
  10553. },
  10554. {
  10555. name: "New Horizon",
  10556. height: math.unit(6000, "miles")
  10557. },
  10558. ]
  10559. ))
  10560. characterMakers.push(() => makeCharacter(
  10561. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10562. {
  10563. front: {
  10564. height: math.unit(5, "cm"),
  10565. weight: math.unit(1.94, "g"),
  10566. name: "Front",
  10567. image: {
  10568. source: "./media/characters/fleta/front.svg",
  10569. extra: 835 / 803
  10570. }
  10571. },
  10572. back: {
  10573. height: math.unit(5, "cm"),
  10574. weight: math.unit(1.94, "g"),
  10575. name: "Back",
  10576. image: {
  10577. source: "./media/characters/fleta/back.svg",
  10578. extra: 835 / 803
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Micro",
  10585. height: math.unit(5, "cm"),
  10586. default: true
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(6, "feet"),
  10595. weight: math.unit(225, "lb"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/dominic/front.svg",
  10599. extra: 1770 / 1620,
  10600. bottom: 0.025
  10601. }
  10602. },
  10603. back: {
  10604. height: math.unit(6, "feet"),
  10605. weight: math.unit(225, "lb"),
  10606. name: "Back",
  10607. image: {
  10608. source: "./media/characters/dominic/back.svg",
  10609. extra: 1745 / 1620,
  10610. bottom: 0.065
  10611. }
  10612. },
  10613. },
  10614. [
  10615. {
  10616. name: "Nano",
  10617. height: math.unit(0.1, "mm")
  10618. },
  10619. {
  10620. name: "Micro-",
  10621. height: math.unit(1, "mm")
  10622. },
  10623. {
  10624. name: "Micro",
  10625. height: math.unit(4, "inches")
  10626. },
  10627. {
  10628. name: "Normal",
  10629. height: math.unit(6 + 4 / 12, "feet"),
  10630. default: true
  10631. },
  10632. {
  10633. name: "Macro",
  10634. height: math.unit(115, "feet")
  10635. },
  10636. {
  10637. name: "Macro+",
  10638. height: math.unit(955, "feet")
  10639. },
  10640. {
  10641. name: "Megamacro",
  10642. height: math.unit(8990, "feet")
  10643. },
  10644. {
  10645. name: "Gigmacro",
  10646. height: math.unit(9310, "miles")
  10647. },
  10648. {
  10649. name: "Teramacro",
  10650. height: math.unit(1567005010, "miles")
  10651. },
  10652. {
  10653. name: "Examacro",
  10654. height: math.unit(1425, "parsecs")
  10655. },
  10656. ]
  10657. ))
  10658. characterMakers.push(() => makeCharacter(
  10659. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10660. {
  10661. front: {
  10662. height: math.unit(400, "feet"),
  10663. weight: math.unit(44444444, "lb"),
  10664. name: "Front",
  10665. image: {
  10666. source: "./media/characters/major-colonel/front.svg"
  10667. }
  10668. },
  10669. back: {
  10670. height: math.unit(400, "feet"),
  10671. weight: math.unit(44444444, "lb"),
  10672. name: "Back",
  10673. image: {
  10674. source: "./media/characters/major-colonel/back.svg"
  10675. }
  10676. },
  10677. },
  10678. [
  10679. {
  10680. name: "Macro",
  10681. height: math.unit(400, "feet"),
  10682. default: true
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10688. {
  10689. catFront: {
  10690. height: math.unit(6, "feet"),
  10691. weight: math.unit(120, "lb"),
  10692. name: "Front (Cat Side)",
  10693. image: {
  10694. source: "./media/characters/axel-lycan/cat-front.svg",
  10695. extra: 430 / 402,
  10696. bottom: 43 / 472.35
  10697. }
  10698. },
  10699. catBack: {
  10700. height: math.unit(6, "feet"),
  10701. weight: math.unit(120, "lb"),
  10702. name: "Back (Cat Side)",
  10703. image: {
  10704. source: "./media/characters/axel-lycan/cat-back.svg",
  10705. extra: 447 / 419,
  10706. bottom: 23.3 / 469
  10707. }
  10708. },
  10709. wolfFront: {
  10710. height: math.unit(6, "feet"),
  10711. weight: math.unit(120, "lb"),
  10712. name: "Front (Wolf Side)",
  10713. image: {
  10714. source: "./media/characters/axel-lycan/wolf-front.svg",
  10715. extra: 485 / 456,
  10716. bottom: 19 / 504
  10717. }
  10718. },
  10719. wolfBack: {
  10720. height: math.unit(6, "feet"),
  10721. weight: math.unit(120, "lb"),
  10722. name: "Back (Wolf Side)",
  10723. image: {
  10724. source: "./media/characters/axel-lycan/wolf-back.svg",
  10725. extra: 475 / 438,
  10726. bottom: 39.2 / 514
  10727. }
  10728. },
  10729. },
  10730. [
  10731. {
  10732. name: "Macro",
  10733. height: math.unit(1, "km"),
  10734. default: true
  10735. },
  10736. ]
  10737. ))
  10738. characterMakers.push(() => makeCharacter(
  10739. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10740. {
  10741. front: {
  10742. height: math.unit(5 + 9 / 12, "feet"),
  10743. weight: math.unit(175, "lb"),
  10744. name: "Front",
  10745. image: {
  10746. source: "./media/characters/vanrel-hyena/front.svg",
  10747. extra: 1086 / 1010,
  10748. bottom: 0.04
  10749. }
  10750. },
  10751. },
  10752. [
  10753. {
  10754. name: "Normal",
  10755. height: math.unit(5 + 9 / 12, "feet"),
  10756. default: true
  10757. },
  10758. ]
  10759. ))
  10760. characterMakers.push(() => makeCharacter(
  10761. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10762. {
  10763. front: {
  10764. height: math.unit(6, "feet"),
  10765. weight: math.unit(103, "lb"),
  10766. name: "Front",
  10767. image: {
  10768. source: "./media/characters/abbott-absol/front.svg",
  10769. extra: 2010 / 1842
  10770. }
  10771. },
  10772. },
  10773. [
  10774. {
  10775. name: "Megamicro",
  10776. height: math.unit(0.1, "mm")
  10777. },
  10778. {
  10779. name: "Micro",
  10780. height: math.unit(1, "inch")
  10781. },
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(6, "feet"),
  10785. default: true
  10786. },
  10787. ]
  10788. ))
  10789. characterMakers.push(() => makeCharacter(
  10790. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10791. {
  10792. front: {
  10793. height: math.unit(6, "feet"),
  10794. weight: math.unit(264, "lb"),
  10795. name: "Front",
  10796. image: {
  10797. source: "./media/characters/hector/front.svg",
  10798. extra: 2280 / 2130,
  10799. bottom: 0.07
  10800. }
  10801. },
  10802. },
  10803. [
  10804. {
  10805. name: "Normal",
  10806. height: math.unit(12.25, "foot"),
  10807. default: true
  10808. },
  10809. {
  10810. name: "Macro",
  10811. height: math.unit(160, "feet")
  10812. },
  10813. ]
  10814. ))
  10815. characterMakers.push(() => makeCharacter(
  10816. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10817. {
  10818. front: {
  10819. height: math.unit(6, "feet"),
  10820. weight: math.unit(150, "lb"),
  10821. name: "Front",
  10822. image: {
  10823. source: "./media/characters/sal/front.svg",
  10824. extra: 1846 / 1699,
  10825. bottom: 0.04
  10826. }
  10827. },
  10828. },
  10829. [
  10830. {
  10831. name: "Megamacro",
  10832. height: math.unit(10, "miles"),
  10833. default: true
  10834. },
  10835. ]
  10836. ))
  10837. characterMakers.push(() => makeCharacter(
  10838. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10839. {
  10840. front: {
  10841. height: math.unit(3, "meters"),
  10842. weight: math.unit(450, "kg"),
  10843. name: "front",
  10844. image: {
  10845. source: "./media/characters/ranger/front.svg",
  10846. extra: 2401 / 2243,
  10847. bottom: 0.05
  10848. }
  10849. },
  10850. },
  10851. [
  10852. {
  10853. name: "Normal",
  10854. height: math.unit(3, "meters"),
  10855. default: true
  10856. },
  10857. ]
  10858. ))
  10859. characterMakers.push(() => makeCharacter(
  10860. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10861. {
  10862. front: {
  10863. height: math.unit(14, "feet"),
  10864. weight: math.unit(800, "kg"),
  10865. name: "Front",
  10866. image: {
  10867. source: "./media/characters/theresa/front.svg",
  10868. extra: 3575 / 3346,
  10869. bottom: 0.03
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(14, "feet"),
  10877. default: true
  10878. },
  10879. ]
  10880. ))
  10881. characterMakers.push(() => makeCharacter(
  10882. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10883. {
  10884. front: {
  10885. height: math.unit(6, "feet"),
  10886. weight: math.unit(3, "kg"),
  10887. name: "Front",
  10888. image: {
  10889. source: "./media/characters/ine/front.svg",
  10890. extra: 678 / 539,
  10891. bottom: 0.023
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Normal",
  10898. height: math.unit(2.265, "feet"),
  10899. default: true
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(5, "feet"),
  10908. weight: math.unit(30, "kg"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/vial/front.svg",
  10912. extra: 1365 / 1277,
  10913. bottom: 0.04
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Normal",
  10920. height: math.unit(5, "feet"),
  10921. default: true
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10927. {
  10928. side: {
  10929. height: math.unit(3.4, "meters"),
  10930. weight: math.unit(1000, "lb"),
  10931. name: "Side",
  10932. image: {
  10933. source: "./media/characters/rovoska/side.svg",
  10934. extra: 4403 / 1515
  10935. }
  10936. },
  10937. },
  10938. [
  10939. {
  10940. name: "Normal",
  10941. height: math.unit(3.4, "meters"),
  10942. default: true
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10948. {
  10949. front: {
  10950. height: math.unit(8, "feet"),
  10951. weight: math.unit(315, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/gunner-rotthbauer/front.svg"
  10955. }
  10956. },
  10957. back: {
  10958. height: math.unit(8, "feet"),
  10959. weight: math.unit(315, "lb"),
  10960. name: "Back",
  10961. image: {
  10962. source: "./media/characters/gunner-rotthbauer/back.svg"
  10963. }
  10964. },
  10965. },
  10966. [
  10967. {
  10968. name: "Micro",
  10969. height: math.unit(3.5, "inches")
  10970. },
  10971. {
  10972. name: "Normal",
  10973. height: math.unit(8, "feet"),
  10974. default: true
  10975. },
  10976. {
  10977. name: "Macro",
  10978. height: math.unit(250, "feet")
  10979. },
  10980. {
  10981. name: "Megamacro",
  10982. height: math.unit(1, "AU")
  10983. },
  10984. ]
  10985. ))
  10986. characterMakers.push(() => makeCharacter(
  10987. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10988. {
  10989. front: {
  10990. height: math.unit(5 + 5 / 12, "feet"),
  10991. weight: math.unit(140, "lb"),
  10992. name: "Front",
  10993. image: {
  10994. source: "./media/characters/allatia/front.svg",
  10995. extra: 1227 / 1180,
  10996. bottom: 0.027
  10997. }
  10998. },
  10999. },
  11000. [
  11001. {
  11002. name: "Normal",
  11003. height: math.unit(5 + 5 / 12, "feet")
  11004. },
  11005. {
  11006. name: "Macro",
  11007. height: math.unit(250, "feet"),
  11008. default: true
  11009. },
  11010. {
  11011. name: "Megamacro",
  11012. height: math.unit(8, "miles")
  11013. }
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11018. {
  11019. front: {
  11020. height: math.unit(6, "feet"),
  11021. weight: math.unit(120, "lb"),
  11022. name: "Front",
  11023. image: {
  11024. source: "./media/characters/tene/front.svg",
  11025. extra: 814/750,
  11026. bottom: 36/850
  11027. }
  11028. },
  11029. stomping: {
  11030. height: math.unit(2.025, "meters"),
  11031. weight: math.unit(120, "lb"),
  11032. name: "Stomping",
  11033. image: {
  11034. source: "./media/characters/tene/stomping.svg",
  11035. extra: 885/821,
  11036. bottom: 15/900
  11037. }
  11038. },
  11039. sitting: {
  11040. height: math.unit(1, "meter"),
  11041. weight: math.unit(120, "lb"),
  11042. name: "Sitting",
  11043. image: {
  11044. source: "./media/characters/tene/sitting.svg",
  11045. extra: 396/366,
  11046. bottom: 79/475
  11047. }
  11048. },
  11049. smiling: {
  11050. height: math.unit(1.2, "feet"),
  11051. name: "Smiling",
  11052. image: {
  11053. source: "./media/characters/tene/smiling.svg",
  11054. extra: 1364/1071,
  11055. bottom: 0/1364
  11056. }
  11057. },
  11058. smug: {
  11059. height: math.unit(1.3, "feet"),
  11060. name: "Smug",
  11061. image: {
  11062. source: "./media/characters/tene/smug.svg",
  11063. extra: 1323/1082,
  11064. bottom: 0/1323
  11065. }
  11066. },
  11067. feral: {
  11068. height: math.unit(3.9, "feet"),
  11069. weight: math.unit(250, "lb"),
  11070. name: "Feral",
  11071. image: {
  11072. source: "./media/characters/tene/feral.svg",
  11073. extra: 717 / 458,
  11074. bottom: 0.179
  11075. }
  11076. },
  11077. },
  11078. [
  11079. {
  11080. name: "Normal",
  11081. height: math.unit(6, "feet")
  11082. },
  11083. {
  11084. name: "Macro",
  11085. height: math.unit(300, "feet"),
  11086. default: true
  11087. },
  11088. {
  11089. name: "Megamacro",
  11090. height: math.unit(5, "miles")
  11091. },
  11092. ]
  11093. ))
  11094. characterMakers.push(() => makeCharacter(
  11095. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11096. {
  11097. side: {
  11098. height: math.unit(6, "feet"),
  11099. name: "Side",
  11100. image: {
  11101. source: "./media/characters/evander/side.svg",
  11102. extra: 877 / 477
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Normal",
  11109. height: math.unit(0.83, "meters"),
  11110. default: true
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11116. {
  11117. front: {
  11118. height: math.unit(12, "feet"),
  11119. weight: math.unit(1000, "lb"),
  11120. name: "Front",
  11121. image: {
  11122. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11123. extra: 1762 / 1611
  11124. }
  11125. },
  11126. back: {
  11127. height: math.unit(12, "feet"),
  11128. weight: math.unit(1000, "lb"),
  11129. name: "Back",
  11130. image: {
  11131. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11132. extra: 1762 / 1611
  11133. }
  11134. },
  11135. },
  11136. [
  11137. {
  11138. name: "Normal",
  11139. height: math.unit(12, "feet"),
  11140. default: true
  11141. },
  11142. {
  11143. name: "Kaiju",
  11144. height: math.unit(150, "feet")
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11150. {
  11151. front: {
  11152. height: math.unit(6, "feet"),
  11153. weight: math.unit(150, "lb"),
  11154. name: "Front",
  11155. image: {
  11156. source: "./media/characters/zero-alurus/front.svg"
  11157. }
  11158. },
  11159. back: {
  11160. height: math.unit(6, "feet"),
  11161. weight: math.unit(150, "lb"),
  11162. name: "Back",
  11163. image: {
  11164. source: "./media/characters/zero-alurus/back.svg"
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Normal",
  11171. height: math.unit(5 + 10 / 12, "feet")
  11172. },
  11173. {
  11174. name: "Macro",
  11175. height: math.unit(60, "feet"),
  11176. default: true
  11177. },
  11178. {
  11179. name: "Macro+",
  11180. height: math.unit(450, "feet")
  11181. },
  11182. ]
  11183. ))
  11184. characterMakers.push(() => makeCharacter(
  11185. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11186. {
  11187. front: {
  11188. height: math.unit(6, "feet"),
  11189. weight: math.unit(200, "lb"),
  11190. name: "Front",
  11191. image: {
  11192. source: "./media/characters/mega-shi/front.svg",
  11193. extra: 1279 / 1250,
  11194. bottom: 0.02
  11195. }
  11196. },
  11197. back: {
  11198. height: math.unit(6, "feet"),
  11199. weight: math.unit(200, "lb"),
  11200. name: "Back",
  11201. image: {
  11202. source: "./media/characters/mega-shi/back.svg",
  11203. extra: 1279 / 1250,
  11204. bottom: 0.02
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Micro",
  11211. height: math.unit(16 + 6 / 12, "feet")
  11212. },
  11213. {
  11214. name: "Third Dimension",
  11215. height: math.unit(40, "meters")
  11216. },
  11217. {
  11218. name: "Normal",
  11219. height: math.unit(660, "feet"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Megamacro",
  11224. height: math.unit(10, "miles")
  11225. },
  11226. {
  11227. name: "Planetary Launch",
  11228. height: math.unit(500, "miles")
  11229. },
  11230. {
  11231. name: "Interstellar",
  11232. height: math.unit(1e9, "miles")
  11233. },
  11234. {
  11235. name: "Leaving the Universe",
  11236. height: math.unit(1, "gigaparsec")
  11237. },
  11238. {
  11239. name: "Travelling Universes",
  11240. height: math.unit(30e15, "parsecs")
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11246. {
  11247. front: {
  11248. height: math.unit(5 + 4/12, "feet"),
  11249. weight: math.unit(120, "lb"),
  11250. name: "Front",
  11251. image: {
  11252. source: "./media/characters/odyssey/front.svg",
  11253. extra: 1747/1571,
  11254. bottom: 47/1794
  11255. }
  11256. },
  11257. side: {
  11258. height: math.unit(5.1, "feet"),
  11259. weight: math.unit(120, "lb"),
  11260. name: "Side",
  11261. image: {
  11262. source: "./media/characters/odyssey/side.svg",
  11263. extra: 1847/1619,
  11264. bottom: 47/1894
  11265. }
  11266. },
  11267. lounging: {
  11268. height: math.unit(1.464, "feet"),
  11269. weight: math.unit(120, "lb"),
  11270. name: "Lounging",
  11271. image: {
  11272. source: "./media/characters/odyssey/lounging.svg",
  11273. extra: 1235/837,
  11274. bottom: 551/1786
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(5 + 4 / 12, "feet")
  11282. },
  11283. {
  11284. name: "Macro",
  11285. height: math.unit(1, "km")
  11286. },
  11287. {
  11288. name: "Megamacro",
  11289. height: math.unit(3000, "km")
  11290. },
  11291. {
  11292. name: "Gigamacro",
  11293. height: math.unit(1, "AU"),
  11294. default: true
  11295. },
  11296. {
  11297. name: "Omniversal",
  11298. height: math.unit(100e14, "lightyears")
  11299. },
  11300. ]
  11301. ))
  11302. characterMakers.push(() => makeCharacter(
  11303. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11304. {
  11305. front: {
  11306. height: math.unit(5 + 10/12, "feet"),
  11307. name: "Front",
  11308. image: {
  11309. source: "./media/characters/mekuto/front.svg",
  11310. extra: 875/835,
  11311. bottom: 46/921
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Minimicro",
  11318. height: math.unit(0.2, "inches")
  11319. },
  11320. {
  11321. name: "Micro",
  11322. height: math.unit(1.5, "inches")
  11323. },
  11324. {
  11325. name: "Normal",
  11326. height: math.unit(5 + 10 / 12, "feet"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Minimacro",
  11331. height: math.unit(17 + 9 / 12, "feet")
  11332. },
  11333. {
  11334. name: "Macro",
  11335. height: math.unit(177.5, "feet")
  11336. },
  11337. {
  11338. name: "Megamacro",
  11339. height: math.unit(152, "miles")
  11340. },
  11341. ]
  11342. ))
  11343. characterMakers.push(() => makeCharacter(
  11344. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11345. {
  11346. front: {
  11347. height: math.unit(6.5, "inches"),
  11348. weight: math.unit(13, "oz"),
  11349. name: "Front",
  11350. image: {
  11351. source: "./media/characters/dafydd-tomos/front.svg",
  11352. extra: 2990 / 2603,
  11353. bottom: 0.03
  11354. }
  11355. },
  11356. },
  11357. [
  11358. {
  11359. name: "Micro",
  11360. height: math.unit(6.5, "inches"),
  11361. default: true
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11367. {
  11368. front: {
  11369. height: math.unit(6, "feet"),
  11370. weight: math.unit(150, "lb"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/splinter/front.svg",
  11374. extra: 2990 / 2882,
  11375. bottom: 0.04
  11376. }
  11377. },
  11378. back: {
  11379. height: math.unit(6, "feet"),
  11380. weight: math.unit(150, "lb"),
  11381. name: "Back",
  11382. image: {
  11383. source: "./media/characters/splinter/back.svg",
  11384. extra: 2990 / 2882,
  11385. bottom: 0.04
  11386. }
  11387. },
  11388. },
  11389. [
  11390. {
  11391. name: "Normal",
  11392. height: math.unit(6, "feet")
  11393. },
  11394. {
  11395. name: "Macro",
  11396. height: math.unit(230, "meters"),
  11397. default: true
  11398. },
  11399. ]
  11400. ))
  11401. characterMakers.push(() => makeCharacter(
  11402. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11403. {
  11404. front: {
  11405. height: math.unit(4 + 10 / 12, "feet"),
  11406. weight: math.unit(480, "lb"),
  11407. name: "Front",
  11408. image: {
  11409. source: "./media/characters/snow-gabumon/front.svg",
  11410. extra: 1140 / 963,
  11411. bottom: 0.058
  11412. }
  11413. },
  11414. back: {
  11415. height: math.unit(4 + 10 / 12, "feet"),
  11416. weight: math.unit(480, "lb"),
  11417. name: "Back",
  11418. image: {
  11419. source: "./media/characters/snow-gabumon/back.svg",
  11420. extra: 1115 / 962,
  11421. bottom: 0.041
  11422. }
  11423. },
  11424. frontUndresed: {
  11425. height: math.unit(4 + 10 / 12, "feet"),
  11426. weight: math.unit(480, "lb"),
  11427. name: "Front (Undressed)",
  11428. image: {
  11429. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11430. extra: 1061 / 960,
  11431. bottom: 0.045
  11432. }
  11433. },
  11434. },
  11435. [
  11436. {
  11437. name: "Micro",
  11438. height: math.unit(1, "inch")
  11439. },
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(4 + 10 / 12, "feet"),
  11443. default: true
  11444. },
  11445. {
  11446. name: "Macro",
  11447. height: math.unit(200, "feet")
  11448. },
  11449. {
  11450. name: "Megamacro",
  11451. height: math.unit(120, "miles")
  11452. },
  11453. {
  11454. name: "Gigamacro",
  11455. height: math.unit(9800, "miles")
  11456. },
  11457. ]
  11458. ))
  11459. characterMakers.push(() => makeCharacter(
  11460. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11461. {
  11462. front: {
  11463. height: math.unit(1.7, "meters"),
  11464. weight: math.unit(140, "lb"),
  11465. name: "Front",
  11466. image: {
  11467. source: "./media/characters/moody/front.svg",
  11468. extra: 3226 / 3007,
  11469. bottom: 0.087
  11470. }
  11471. },
  11472. },
  11473. [
  11474. {
  11475. name: "Micro",
  11476. height: math.unit(1, "mm")
  11477. },
  11478. {
  11479. name: "Normal",
  11480. height: math.unit(1.7, "meters"),
  11481. default: true
  11482. },
  11483. {
  11484. name: "Macro",
  11485. height: math.unit(80, "meters")
  11486. },
  11487. {
  11488. name: "Macro+",
  11489. height: math.unit(500, "meters")
  11490. },
  11491. ]
  11492. ))
  11493. characterMakers.push(() => makeCharacter(
  11494. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11495. {
  11496. front: {
  11497. height: math.unit(6, "feet"),
  11498. weight: math.unit(150, "lb"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/zyas/front.svg",
  11502. extra: 1180 / 1120,
  11503. bottom: 0.045
  11504. }
  11505. },
  11506. },
  11507. [
  11508. {
  11509. name: "Normal",
  11510. height: math.unit(10, "feet"),
  11511. default: true
  11512. },
  11513. {
  11514. name: "Macro",
  11515. height: math.unit(500, "feet")
  11516. },
  11517. {
  11518. name: "Megamacro",
  11519. height: math.unit(5, "miles")
  11520. },
  11521. {
  11522. name: "Teramacro",
  11523. height: math.unit(150000, "miles")
  11524. },
  11525. ]
  11526. ))
  11527. characterMakers.push(() => makeCharacter(
  11528. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11529. {
  11530. front: {
  11531. height: math.unit(6, "feet"),
  11532. weight: math.unit(150, "lb"),
  11533. name: "Front",
  11534. image: {
  11535. source: "./media/characters/cuon/front.svg",
  11536. extra: 1390 / 1320,
  11537. bottom: 0.008
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Micro",
  11544. height: math.unit(3, "inches")
  11545. },
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(18 + 9 / 12, "feet"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Macro",
  11553. height: math.unit(360, "feet")
  11554. },
  11555. {
  11556. name: "Megamacro",
  11557. height: math.unit(360, "miles")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11563. {
  11564. front: {
  11565. height: math.unit(2.4, "meters"),
  11566. weight: math.unit(70, "kg"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/nyanuxk/front.svg",
  11570. extra: 1172 / 1084,
  11571. bottom: 0.065
  11572. }
  11573. },
  11574. side: {
  11575. height: math.unit(2.4, "meters"),
  11576. weight: math.unit(70, "kg"),
  11577. name: "Side",
  11578. image: {
  11579. source: "./media/characters/nyanuxk/side.svg",
  11580. extra: 1190 / 1132,
  11581. bottom: 0.007
  11582. }
  11583. },
  11584. back: {
  11585. height: math.unit(2.4, "meters"),
  11586. weight: math.unit(70, "kg"),
  11587. name: "Back",
  11588. image: {
  11589. source: "./media/characters/nyanuxk/back.svg",
  11590. extra: 1200 / 1141,
  11591. bottom: 0.015
  11592. }
  11593. },
  11594. foot: {
  11595. height: math.unit(0.52, "meters"),
  11596. name: "Foot",
  11597. image: {
  11598. source: "./media/characters/nyanuxk/foot.svg"
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Micro",
  11605. height: math.unit(2, "cm")
  11606. },
  11607. {
  11608. name: "Normal",
  11609. height: math.unit(2.4, "meters"),
  11610. default: true
  11611. },
  11612. {
  11613. name: "Smaller Macro",
  11614. height: math.unit(120, "meters")
  11615. },
  11616. {
  11617. name: "Bigger Macro",
  11618. height: math.unit(1.2, "km")
  11619. },
  11620. {
  11621. name: "Megamacro",
  11622. height: math.unit(15, "kilometers")
  11623. },
  11624. {
  11625. name: "Gigamacro",
  11626. height: math.unit(2000, "km")
  11627. },
  11628. {
  11629. name: "Teramacro",
  11630. height: math.unit(500000, "km")
  11631. },
  11632. ]
  11633. ))
  11634. characterMakers.push(() => makeCharacter(
  11635. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11636. {
  11637. side: {
  11638. height: math.unit(6, "feet"),
  11639. name: "Side",
  11640. image: {
  11641. source: "./media/characters/ailbhe/side.svg",
  11642. extra: 757 / 464,
  11643. bottom: 0.041
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Normal",
  11650. height: math.unit(1.07, "meters"),
  11651. default: true
  11652. },
  11653. ]
  11654. ))
  11655. characterMakers.push(() => makeCharacter(
  11656. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11657. {
  11658. front: {
  11659. height: math.unit(6, "feet"),
  11660. weight: math.unit(120, "kg"),
  11661. name: "Front",
  11662. image: {
  11663. source: "./media/characters/zevulfius/front.svg",
  11664. extra: 965 / 903
  11665. }
  11666. },
  11667. side: {
  11668. height: math.unit(6, "feet"),
  11669. weight: math.unit(120, "kg"),
  11670. name: "Side",
  11671. image: {
  11672. source: "./media/characters/zevulfius/side.svg",
  11673. extra: 939 / 900
  11674. }
  11675. },
  11676. back: {
  11677. height: math.unit(6, "feet"),
  11678. weight: math.unit(120, "kg"),
  11679. name: "Back",
  11680. image: {
  11681. source: "./media/characters/zevulfius/back.svg",
  11682. extra: 918 / 854,
  11683. bottom: 0.005
  11684. }
  11685. },
  11686. foot: {
  11687. height: math.unit(6 / 3.72, "feet"),
  11688. name: "Foot",
  11689. image: {
  11690. source: "./media/characters/zevulfius/foot.svg"
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Macro",
  11697. height: math.unit(750, "meters")
  11698. },
  11699. {
  11700. name: "Megamacro",
  11701. height: math.unit(20, "km"),
  11702. default: true
  11703. },
  11704. {
  11705. name: "Gigamacro",
  11706. height: math.unit(2000, "km")
  11707. },
  11708. {
  11709. name: "Teramacro",
  11710. height: math.unit(250000, "km")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(100, "feet"),
  11719. weight: math.unit(350, "kg"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/rikes/front.svg",
  11723. extra: 1565 / 1483,
  11724. bottom: 0.017
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Macro",
  11731. height: math.unit(100, "feet"),
  11732. default: true
  11733. },
  11734. ]
  11735. ))
  11736. characterMakers.push(() => makeCharacter(
  11737. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11738. {
  11739. front: {
  11740. height: math.unit(8, "feet"),
  11741. weight: math.unit(356, "lb"),
  11742. name: "Front",
  11743. image: {
  11744. source: "./media/characters/adam-silver-mane/front.svg",
  11745. extra: 1036/937,
  11746. bottom: 63/1099
  11747. }
  11748. },
  11749. side: {
  11750. height: math.unit(8, "feet"),
  11751. weight: math.unit(356, "lb"),
  11752. name: "Side",
  11753. image: {
  11754. source: "./media/characters/adam-silver-mane/side.svg",
  11755. extra: 997/901,
  11756. bottom: 59/1056
  11757. }
  11758. },
  11759. frontNsfw: {
  11760. height: math.unit(8, "feet"),
  11761. weight: math.unit(356, "lb"),
  11762. name: "Front (NSFW)",
  11763. image: {
  11764. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11765. extra: 1036/937,
  11766. bottom: 63/1099
  11767. }
  11768. },
  11769. sideNsfw: {
  11770. height: math.unit(8, "feet"),
  11771. weight: math.unit(356, "lb"),
  11772. name: "Side (NSFW)",
  11773. image: {
  11774. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11775. extra: 997/901,
  11776. bottom: 59/1056
  11777. }
  11778. },
  11779. dick: {
  11780. height: math.unit(2.1, "feet"),
  11781. name: "Dick",
  11782. image: {
  11783. source: "./media/characters/adam-silver-mane/dick.svg"
  11784. }
  11785. },
  11786. taur: {
  11787. height: math.unit(16, "feet"),
  11788. weight: math.unit(1500, "kg"),
  11789. name: "Taur",
  11790. image: {
  11791. source: "./media/characters/adam-silver-mane/taur.svg",
  11792. extra: 1713 / 1571,
  11793. bottom: 0.01
  11794. }
  11795. },
  11796. },
  11797. [
  11798. {
  11799. name: "Normal",
  11800. height: math.unit(8, "feet")
  11801. },
  11802. {
  11803. name: "Minimacro",
  11804. height: math.unit(80, "feet")
  11805. },
  11806. {
  11807. name: "MDA",
  11808. height: math.unit(80, "meters")
  11809. },
  11810. {
  11811. name: "Macro",
  11812. height: math.unit(800, "feet"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Megamacro",
  11817. height: math.unit(8000, "feet")
  11818. },
  11819. {
  11820. name: "Gigamacro",
  11821. height: math.unit(800, "miles")
  11822. },
  11823. {
  11824. name: "Teramacro",
  11825. height: math.unit(80000, "miles")
  11826. },
  11827. {
  11828. name: "Celestial",
  11829. height: math.unit(8e6, "miles")
  11830. },
  11831. {
  11832. name: "Star Dragon",
  11833. height: math.unit(800000, "parsecs")
  11834. },
  11835. {
  11836. name: "Godly",
  11837. height: math.unit(800, "teraparsecs")
  11838. },
  11839. ]
  11840. ))
  11841. characterMakers.push(() => makeCharacter(
  11842. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11843. {
  11844. front: {
  11845. height: math.unit(6, "feet"),
  11846. weight: math.unit(150, "lb"),
  11847. name: "Front",
  11848. image: {
  11849. source: "./media/characters/ky'owin/front.svg",
  11850. extra: 3862/3053,
  11851. bottom: 74/3936
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(6 + 8 / 12, "feet")
  11859. },
  11860. {
  11861. name: "Large",
  11862. height: math.unit(68, "feet")
  11863. },
  11864. {
  11865. name: "Macro",
  11866. height: math.unit(132, "feet")
  11867. },
  11868. {
  11869. name: "Macro+",
  11870. height: math.unit(340, "feet")
  11871. },
  11872. {
  11873. name: "Macro++",
  11874. height: math.unit(680, "feet"),
  11875. default: true
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(1, "mile")
  11880. },
  11881. {
  11882. name: "Megamacro+",
  11883. height: math.unit(10, "miles")
  11884. },
  11885. ]
  11886. ))
  11887. characterMakers.push(() => makeCharacter(
  11888. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11889. {
  11890. front: {
  11891. height: math.unit(4, "feet"),
  11892. weight: math.unit(50, "lb"),
  11893. name: "Front",
  11894. image: {
  11895. source: "./media/characters/mal/front.svg",
  11896. extra: 785 / 724,
  11897. bottom: 0.07
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Micro",
  11904. height: math.unit(4, "inches")
  11905. },
  11906. {
  11907. name: "Normal",
  11908. height: math.unit(4, "feet"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Macro",
  11913. height: math.unit(200, "feet")
  11914. },
  11915. ]
  11916. ))
  11917. characterMakers.push(() => makeCharacter(
  11918. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11919. {
  11920. front: {
  11921. height: math.unit(6, "feet"),
  11922. weight: math.unit(150, "lb"),
  11923. name: "Front",
  11924. image: {
  11925. source: "./media/characters/jordan-deware/front.svg",
  11926. extra: 1191 / 1012
  11927. }
  11928. },
  11929. },
  11930. [
  11931. {
  11932. name: "Nano",
  11933. height: math.unit(0.01, "mm")
  11934. },
  11935. {
  11936. name: "Minimicro",
  11937. height: math.unit(1, "mm")
  11938. },
  11939. {
  11940. name: "Micro",
  11941. height: math.unit(0.5, "inches")
  11942. },
  11943. {
  11944. name: "Normal",
  11945. height: math.unit(4, "feet"),
  11946. default: true
  11947. },
  11948. {
  11949. name: "Minimacro",
  11950. height: math.unit(40, "meters")
  11951. },
  11952. {
  11953. name: "Small Macro",
  11954. height: math.unit(400, "meters")
  11955. },
  11956. {
  11957. name: "Macro",
  11958. height: math.unit(4, "miles")
  11959. },
  11960. {
  11961. name: "Megamacro",
  11962. height: math.unit(40, "miles")
  11963. },
  11964. {
  11965. name: "Megamacro+",
  11966. height: math.unit(400, "miles")
  11967. },
  11968. {
  11969. name: "Gigamacro",
  11970. height: math.unit(400000, "miles")
  11971. },
  11972. ]
  11973. ))
  11974. characterMakers.push(() => makeCharacter(
  11975. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11976. {
  11977. side: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(150, "lb"),
  11980. name: "Side",
  11981. image: {
  11982. source: "./media/characters/kimiko/side.svg",
  11983. extra: 600 / 358
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Normal",
  11990. height: math.unit(15, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Macro",
  11995. height: math.unit(220, "feet")
  11996. },
  11997. {
  11998. name: "Macro+",
  11999. height: math.unit(1450, "feet")
  12000. },
  12001. {
  12002. name: "Megamacro",
  12003. height: math.unit(11500, "feet")
  12004. },
  12005. {
  12006. name: "Gigamacro",
  12007. height: math.unit(9500, "miles")
  12008. },
  12009. {
  12010. name: "Teramacro",
  12011. height: math.unit(2208005005, "miles")
  12012. },
  12013. {
  12014. name: "Examacro",
  12015. height: math.unit(2750, "parsecs")
  12016. },
  12017. {
  12018. name: "Zettamacro",
  12019. height: math.unit(101500, "parsecs")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(6, "feet"),
  12028. weight: math.unit(70, "kg"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/andrew-sleepy/front.svg"
  12032. }
  12033. },
  12034. side: {
  12035. height: math.unit(6, "feet"),
  12036. weight: math.unit(70, "kg"),
  12037. name: "Side",
  12038. image: {
  12039. source: "./media/characters/andrew-sleepy/side.svg"
  12040. }
  12041. },
  12042. },
  12043. [
  12044. {
  12045. name: "Micro",
  12046. height: math.unit(1, "mm"),
  12047. default: true
  12048. },
  12049. ]
  12050. ))
  12051. characterMakers.push(() => makeCharacter(
  12052. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12053. {
  12054. front: {
  12055. height: math.unit(6, "feet"),
  12056. weight: math.unit(150, "lb"),
  12057. name: "Front",
  12058. image: {
  12059. source: "./media/characters/judio/front.svg",
  12060. extra: 1258 / 1110
  12061. }
  12062. },
  12063. },
  12064. [
  12065. {
  12066. name: "Normal",
  12067. height: math.unit(5 + 6 / 12, "feet")
  12068. },
  12069. {
  12070. name: "Macro",
  12071. height: math.unit(1000, "feet"),
  12072. default: true
  12073. },
  12074. {
  12075. name: "Megamacro",
  12076. height: math.unit(10, "miles")
  12077. },
  12078. ]
  12079. ))
  12080. characterMakers.push(() => makeCharacter(
  12081. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12082. {
  12083. frontDressed: {
  12084. height: math.unit(6, "feet"),
  12085. weight: math.unit(68, "kg"),
  12086. name: "Front (Dressed)",
  12087. image: {
  12088. source: "./media/characters/nomaxice/front-dressed.svg",
  12089. extra: 1137/824,
  12090. bottom: 74/1211
  12091. }
  12092. },
  12093. frontShorts: {
  12094. height: math.unit(6, "feet"),
  12095. weight: math.unit(68, "kg"),
  12096. name: "Front (Shorts)",
  12097. image: {
  12098. source: "./media/characters/nomaxice/front-shorts.svg",
  12099. extra: 1137/824,
  12100. bottom: 74/1211
  12101. }
  12102. },
  12103. back: {
  12104. height: math.unit(6, "feet"),
  12105. weight: math.unit(68, "kg"),
  12106. name: "Back",
  12107. image: {
  12108. source: "./media/characters/nomaxice/back.svg",
  12109. extra: 822/786,
  12110. bottom: 39/861
  12111. }
  12112. },
  12113. hand: {
  12114. height: math.unit(0.565, "feet"),
  12115. name: "Hand",
  12116. image: {
  12117. source: "./media/characters/nomaxice/hand.svg"
  12118. }
  12119. },
  12120. foot: {
  12121. height: math.unit(1, "feet"),
  12122. name: "Foot",
  12123. image: {
  12124. source: "./media/characters/nomaxice/foot.svg"
  12125. }
  12126. },
  12127. },
  12128. [
  12129. {
  12130. name: "Micro",
  12131. height: math.unit(8, "cm")
  12132. },
  12133. {
  12134. name: "Norm",
  12135. height: math.unit(1.82, "m")
  12136. },
  12137. {
  12138. name: "Norm+",
  12139. height: math.unit(8.8, "feet"),
  12140. default: true
  12141. },
  12142. {
  12143. name: "Big",
  12144. height: math.unit(8, "meters")
  12145. },
  12146. {
  12147. name: "Macro",
  12148. height: math.unit(18, "meters")
  12149. },
  12150. {
  12151. name: "Macro+",
  12152. height: math.unit(88, "meters")
  12153. },
  12154. ]
  12155. ))
  12156. characterMakers.push(() => makeCharacter(
  12157. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12158. {
  12159. front: {
  12160. height: math.unit(12, "feet"),
  12161. weight: math.unit(1.5, "tons"),
  12162. name: "Front",
  12163. image: {
  12164. source: "./media/characters/dydros/front.svg",
  12165. extra: 863 / 800,
  12166. bottom: 0.015
  12167. }
  12168. },
  12169. back: {
  12170. height: math.unit(12, "feet"),
  12171. weight: math.unit(1.5, "tons"),
  12172. name: "Back",
  12173. image: {
  12174. source: "./media/characters/dydros/back.svg",
  12175. extra: 900 / 843,
  12176. bottom: 0.005
  12177. }
  12178. },
  12179. },
  12180. [
  12181. {
  12182. name: "Normal",
  12183. height: math.unit(12, "feet"),
  12184. default: true
  12185. },
  12186. ]
  12187. ))
  12188. characterMakers.push(() => makeCharacter(
  12189. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12190. {
  12191. front: {
  12192. height: math.unit(6, "feet"),
  12193. weight: math.unit(100, "kg"),
  12194. name: "Front",
  12195. image: {
  12196. source: "./media/characters/riggi/front.svg",
  12197. extra: 5787 / 5303
  12198. }
  12199. },
  12200. hyper: {
  12201. height: math.unit(6 * 5 / 3, "feet"),
  12202. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12203. name: "Hyper",
  12204. image: {
  12205. source: "./media/characters/riggi/hyper.svg",
  12206. extra: 3595 / 3485
  12207. }
  12208. },
  12209. },
  12210. [
  12211. {
  12212. name: "Small Macro",
  12213. height: math.unit(50, "feet")
  12214. },
  12215. {
  12216. name: "Default",
  12217. height: math.unit(200, "feet"),
  12218. default: true
  12219. },
  12220. {
  12221. name: "Loom",
  12222. height: math.unit(10000, "feet")
  12223. },
  12224. {
  12225. name: "Cruising Altitude",
  12226. height: math.unit(30000, "feet")
  12227. },
  12228. {
  12229. name: "Megamacro",
  12230. height: math.unit(100, "miles")
  12231. },
  12232. {
  12233. name: "Continent Sized",
  12234. height: math.unit(2800, "miles")
  12235. },
  12236. {
  12237. name: "Earth Sized",
  12238. height: math.unit(8000, "miles")
  12239. },
  12240. ]
  12241. ))
  12242. characterMakers.push(() => makeCharacter(
  12243. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12244. {
  12245. front: {
  12246. height: math.unit(6, "feet"),
  12247. weight: math.unit(250, "lb"),
  12248. name: "Front",
  12249. image: {
  12250. source: "./media/characters/alexi/front.svg",
  12251. extra: 3483 / 3291,
  12252. bottom: 0.04
  12253. }
  12254. },
  12255. back: {
  12256. height: math.unit(6, "feet"),
  12257. weight: math.unit(250, "lb"),
  12258. name: "Back",
  12259. image: {
  12260. source: "./media/characters/alexi/back.svg",
  12261. extra: 3533 / 3356,
  12262. bottom: 0.021
  12263. }
  12264. },
  12265. frontTransforming: {
  12266. height: math.unit(8.58, "feet"),
  12267. weight: math.unit(1300, "lb"),
  12268. name: "Transforming",
  12269. image: {
  12270. source: "./media/characters/alexi/front-transforming.svg",
  12271. extra: 437 / 409,
  12272. bottom: 19 / 458.66
  12273. }
  12274. },
  12275. frontTransformed: {
  12276. height: math.unit(12.5, "feet"),
  12277. weight: math.unit(4000, "lb"),
  12278. name: "Transformed",
  12279. image: {
  12280. source: "./media/characters/alexi/front-transformed.svg",
  12281. extra: 639 / 614,
  12282. bottom: 30.55 / 671
  12283. }
  12284. },
  12285. },
  12286. [
  12287. {
  12288. name: "Normal",
  12289. height: math.unit(14, "feet"),
  12290. default: true
  12291. },
  12292. {
  12293. name: "Minimacro",
  12294. height: math.unit(30, "meters")
  12295. },
  12296. {
  12297. name: "Macro",
  12298. height: math.unit(500, "meters")
  12299. },
  12300. {
  12301. name: "Megamacro",
  12302. height: math.unit(9000, "km")
  12303. },
  12304. {
  12305. name: "Teramacro",
  12306. height: math.unit(384000, "km")
  12307. },
  12308. ]
  12309. ))
  12310. characterMakers.push(() => makeCharacter(
  12311. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12312. {
  12313. front: {
  12314. height: math.unit(6, "feet"),
  12315. weight: math.unit(150, "lb"),
  12316. name: "Front",
  12317. image: {
  12318. source: "./media/characters/kayroo/front.svg",
  12319. extra: 1153 / 1038,
  12320. bottom: 0.06
  12321. }
  12322. },
  12323. foot: {
  12324. height: math.unit(6, "feet"),
  12325. weight: math.unit(150, "lb"),
  12326. name: "Foot",
  12327. image: {
  12328. source: "./media/characters/kayroo/foot.svg"
  12329. }
  12330. },
  12331. },
  12332. [
  12333. {
  12334. name: "Normal",
  12335. height: math.unit(8, "feet"),
  12336. default: true
  12337. },
  12338. {
  12339. name: "Minimacro",
  12340. height: math.unit(250, "feet")
  12341. },
  12342. {
  12343. name: "Macro",
  12344. height: math.unit(2800, "feet")
  12345. },
  12346. {
  12347. name: "Megamacro",
  12348. height: math.unit(5200, "feet")
  12349. },
  12350. {
  12351. name: "Gigamacro",
  12352. height: math.unit(27000, "feet")
  12353. },
  12354. {
  12355. name: "Omega",
  12356. height: math.unit(45000, "feet")
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12362. {
  12363. front: {
  12364. height: math.unit(18, "feet"),
  12365. weight: math.unit(5800, "lb"),
  12366. name: "Front",
  12367. image: {
  12368. source: "./media/characters/rhys/front.svg",
  12369. extra: 3386 / 3090,
  12370. bottom: 0.07
  12371. }
  12372. },
  12373. },
  12374. [
  12375. {
  12376. name: "Normal",
  12377. height: math.unit(18, "feet"),
  12378. default: true
  12379. },
  12380. {
  12381. name: "Working Size",
  12382. height: math.unit(200, "feet")
  12383. },
  12384. {
  12385. name: "Demolition Size",
  12386. height: math.unit(2000, "feet")
  12387. },
  12388. {
  12389. name: "Maximum Licensed Size",
  12390. height: math.unit(5, "miles")
  12391. },
  12392. {
  12393. name: "Maximum Observed Size",
  12394. height: math.unit(10, "yottameters")
  12395. },
  12396. ]
  12397. ))
  12398. characterMakers.push(() => makeCharacter(
  12399. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12400. {
  12401. front: {
  12402. height: math.unit(6, "feet"),
  12403. weight: math.unit(250, "lb"),
  12404. name: "Front",
  12405. image: {
  12406. source: "./media/characters/toto/front.svg",
  12407. extra: 527 / 479,
  12408. bottom: 0.05
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Micro",
  12415. height: math.unit(3, "feet")
  12416. },
  12417. {
  12418. name: "Normal",
  12419. height: math.unit(10, "feet")
  12420. },
  12421. {
  12422. name: "Macro",
  12423. height: math.unit(150, "feet"),
  12424. default: true
  12425. },
  12426. {
  12427. name: "Megamacro",
  12428. height: math.unit(1200, "feet")
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "King", species: ["lion"], tags: ["anthro"] },
  12434. {
  12435. back: {
  12436. height: math.unit(6, "feet"),
  12437. weight: math.unit(150, "lb"),
  12438. name: "Back",
  12439. image: {
  12440. source: "./media/characters/king/back.svg"
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Micro",
  12447. height: math.unit(2, "inches")
  12448. },
  12449. {
  12450. name: "Normal",
  12451. height: math.unit(8, "feet")
  12452. },
  12453. {
  12454. name: "Macro",
  12455. height: math.unit(200, "feet"),
  12456. default: true
  12457. },
  12458. {
  12459. name: "Megamacro",
  12460. height: math.unit(50, "miles")
  12461. },
  12462. ]
  12463. ))
  12464. characterMakers.push(() => makeCharacter(
  12465. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12466. {
  12467. front: {
  12468. height: math.unit(11, "feet"),
  12469. weight: math.unit(1400, "lb"),
  12470. name: "Front",
  12471. image: {
  12472. source: "./media/characters/cordite/front.svg",
  12473. extra: 1919/1827,
  12474. bottom: 40/1959
  12475. }
  12476. },
  12477. side: {
  12478. height: math.unit(11, "feet"),
  12479. weight: math.unit(1400, "lb"),
  12480. name: "Side",
  12481. image: {
  12482. source: "./media/characters/cordite/side.svg",
  12483. extra: 1908/1793,
  12484. bottom: 38/1946
  12485. }
  12486. },
  12487. back: {
  12488. height: math.unit(11, "feet"),
  12489. weight: math.unit(1400, "lb"),
  12490. name: "Back",
  12491. image: {
  12492. source: "./media/characters/cordite/back.svg",
  12493. extra: 1938/1837,
  12494. bottom: 10/1948
  12495. }
  12496. },
  12497. feral: {
  12498. height: math.unit(2, "feet"),
  12499. weight: math.unit(90, "lb"),
  12500. name: "Feral",
  12501. image: {
  12502. source: "./media/characters/cordite/feral.svg",
  12503. extra: 1260 / 755,
  12504. bottom: 0.05
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Normal",
  12511. height: math.unit(11, "feet"),
  12512. default: true
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12518. {
  12519. front: {
  12520. height: math.unit(6, "feet"),
  12521. weight: math.unit(150, "lb"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/pianostrong/front.svg",
  12525. extra: 6577 / 6254,
  12526. bottom: 0.02
  12527. }
  12528. },
  12529. side: {
  12530. height: math.unit(6, "feet"),
  12531. weight: math.unit(150, "lb"),
  12532. name: "Side",
  12533. image: {
  12534. source: "./media/characters/pianostrong/side.svg",
  12535. extra: 6106 / 5730
  12536. }
  12537. },
  12538. back: {
  12539. height: math.unit(6, "feet"),
  12540. weight: math.unit(150, "lb"),
  12541. name: "Back",
  12542. image: {
  12543. source: "./media/characters/pianostrong/back.svg",
  12544. extra: 6085 / 5733,
  12545. bottom: 0.01
  12546. }
  12547. },
  12548. },
  12549. [
  12550. {
  12551. name: "Macro",
  12552. height: math.unit(100, "feet")
  12553. },
  12554. {
  12555. name: "Macro+",
  12556. height: math.unit(300, "feet"),
  12557. default: true
  12558. },
  12559. {
  12560. name: "Macro++",
  12561. height: math.unit(1000, "feet")
  12562. },
  12563. ]
  12564. ))
  12565. characterMakers.push(() => makeCharacter(
  12566. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12567. {
  12568. front: {
  12569. height: math.unit(6, "feet"),
  12570. weight: math.unit(150, "lb"),
  12571. name: "Front",
  12572. image: {
  12573. source: "./media/characters/kona/front.svg",
  12574. extra: 2960 / 2629,
  12575. bottom: 0.005
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Normal",
  12582. height: math.unit(11 + 8 / 12, "feet")
  12583. },
  12584. {
  12585. name: "Macro",
  12586. height: math.unit(850, "feet"),
  12587. default: true
  12588. },
  12589. {
  12590. name: "Macro+",
  12591. height: math.unit(1.5, "km"),
  12592. default: true
  12593. },
  12594. {
  12595. name: "Megamacro",
  12596. height: math.unit(80, "miles")
  12597. },
  12598. {
  12599. name: "Gigamacro",
  12600. height: math.unit(3500, "miles")
  12601. },
  12602. ]
  12603. ))
  12604. characterMakers.push(() => makeCharacter(
  12605. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12606. {
  12607. side: {
  12608. height: math.unit(1.9, "meters"),
  12609. weight: math.unit(326, "kg"),
  12610. name: "Side",
  12611. image: {
  12612. source: "./media/characters/levi/side.svg",
  12613. extra: 1704 / 1334,
  12614. bottom: 0.02
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Normal",
  12621. height: math.unit(1.9, "meters"),
  12622. default: true
  12623. },
  12624. {
  12625. name: "Macro",
  12626. height: math.unit(20, "meters")
  12627. },
  12628. {
  12629. name: "Macro+",
  12630. height: math.unit(200, "meters")
  12631. },
  12632. {
  12633. name: "Megamacro",
  12634. height: math.unit(2, "km")
  12635. },
  12636. {
  12637. name: "Megamacro+",
  12638. height: math.unit(20, "km")
  12639. },
  12640. {
  12641. name: "Gigamacro",
  12642. height: math.unit(2500, "km")
  12643. },
  12644. {
  12645. name: "Gigamacro+",
  12646. height: math.unit(120000, "km")
  12647. },
  12648. {
  12649. name: "Teramacro",
  12650. height: math.unit(7.77e6, "km")
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12656. {
  12657. front: {
  12658. height: math.unit(6 + 4/12, "feet"),
  12659. weight: math.unit(190, "lb"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/bmc/front.svg",
  12663. extra: 1626/1472,
  12664. bottom: 79/1705
  12665. }
  12666. },
  12667. back: {
  12668. height: math.unit(6 + 4/12, "feet"),
  12669. weight: math.unit(190, "lb"),
  12670. name: "Back",
  12671. image: {
  12672. source: "./media/characters/bmc/back.svg",
  12673. extra: 1640/1479,
  12674. bottom: 45/1685
  12675. }
  12676. },
  12677. frontArmor: {
  12678. height: math.unit(6 + 4/12, "feet"),
  12679. weight: math.unit(190, "lb"),
  12680. name: "Front-armor",
  12681. image: {
  12682. source: "./media/characters/bmc/front-armor.svg",
  12683. extra: 1538/1468,
  12684. bottom: 79/1617
  12685. }
  12686. },
  12687. },
  12688. [
  12689. {
  12690. name: "Human-sized",
  12691. height: math.unit(6 + 4 / 12, "feet")
  12692. },
  12693. {
  12694. name: "Interactive Size",
  12695. height: math.unit(25, "feet")
  12696. },
  12697. {
  12698. name: "Small",
  12699. height: math.unit(250, "feet")
  12700. },
  12701. {
  12702. name: "Normal",
  12703. height: math.unit(1250, "feet"),
  12704. default: true
  12705. },
  12706. {
  12707. name: "Good Day",
  12708. height: math.unit(88, "miles")
  12709. },
  12710. {
  12711. name: "Largest Measured Size",
  12712. height: math.unit(105.960, "galaxies")
  12713. },
  12714. ]
  12715. ))
  12716. characterMakers.push(() => makeCharacter(
  12717. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12718. {
  12719. front: {
  12720. height: math.unit(20, "feet"),
  12721. weight: math.unit(2016, "kg"),
  12722. name: "Front",
  12723. image: {
  12724. source: "./media/characters/sven-the-kaiju/front.svg",
  12725. extra: 1277/1250,
  12726. bottom: 35/1312
  12727. }
  12728. },
  12729. mouth: {
  12730. height: math.unit(1.85, "feet"),
  12731. name: "Mouth",
  12732. image: {
  12733. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Fairy",
  12740. height: math.unit(6, "inches")
  12741. },
  12742. {
  12743. name: "Normal",
  12744. height: math.unit(20, "feet"),
  12745. default: true
  12746. },
  12747. {
  12748. name: "Rampage",
  12749. height: math.unit(200, "feet")
  12750. },
  12751. {
  12752. name: "Archfey Forest Guardian",
  12753. height: math.unit(1, "mile")
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12759. {
  12760. front: {
  12761. height: math.unit(4, "meters"),
  12762. weight: math.unit(2, "tons"),
  12763. name: "Front",
  12764. image: {
  12765. source: "./media/characters/marik/front.svg",
  12766. extra: 1057 / 1003,
  12767. bottom: 0.08
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Normal",
  12774. height: math.unit(4, "meters"),
  12775. default: true
  12776. },
  12777. {
  12778. name: "Macro",
  12779. height: math.unit(20, "meters")
  12780. },
  12781. {
  12782. name: "Megamacro",
  12783. height: math.unit(50, "km")
  12784. },
  12785. {
  12786. name: "Gigamacro",
  12787. height: math.unit(100, "km")
  12788. },
  12789. {
  12790. name: "Alpha Macro",
  12791. height: math.unit(7.88e7, "yottameters")
  12792. },
  12793. ]
  12794. ))
  12795. characterMakers.push(() => makeCharacter(
  12796. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12797. {
  12798. front: {
  12799. height: math.unit(6, "feet"),
  12800. weight: math.unit(110, "lb"),
  12801. name: "Front",
  12802. image: {
  12803. source: "./media/characters/mel/front.svg",
  12804. extra: 736 / 617,
  12805. bottom: 0.017
  12806. }
  12807. },
  12808. },
  12809. [
  12810. {
  12811. name: "Pico",
  12812. height: math.unit(3, "pm")
  12813. },
  12814. {
  12815. name: "Nano",
  12816. height: math.unit(3, "nm")
  12817. },
  12818. {
  12819. name: "Micro",
  12820. height: math.unit(0.3, "mm"),
  12821. default: true
  12822. },
  12823. {
  12824. name: "Micro+",
  12825. height: math.unit(3, "mm")
  12826. },
  12827. {
  12828. name: "Normal",
  12829. height: math.unit(5 + 10.5 / 12, "feet")
  12830. },
  12831. ]
  12832. ))
  12833. characterMakers.push(() => makeCharacter(
  12834. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12835. {
  12836. kaiju: {
  12837. height: math.unit(1.75, "meters"),
  12838. weight: math.unit(55, "kg"),
  12839. name: "Kaiju",
  12840. image: {
  12841. source: "./media/characters/lykonous/kaiju.svg",
  12842. extra: 1055 / 946,
  12843. bottom: 0.135
  12844. }
  12845. },
  12846. },
  12847. [
  12848. {
  12849. name: "Normal",
  12850. height: math.unit(2.5, "meters"),
  12851. default: true
  12852. },
  12853. {
  12854. name: "Kaiju Dragon",
  12855. height: math.unit(60, "meters")
  12856. },
  12857. {
  12858. name: "Mega Kaiju",
  12859. height: math.unit(120, "km")
  12860. },
  12861. {
  12862. name: "Giga Kaiju",
  12863. height: math.unit(200, "megameters")
  12864. },
  12865. {
  12866. name: "Terra Kaiju",
  12867. height: math.unit(400, "gigameters")
  12868. },
  12869. {
  12870. name: "Kaiju Dragon God",
  12871. height: math.unit(13000, "exaparsecs")
  12872. },
  12873. ]
  12874. ))
  12875. characterMakers.push(() => makeCharacter(
  12876. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12877. {
  12878. front: {
  12879. height: math.unit(6, "feet"),
  12880. weight: math.unit(150, "lb"),
  12881. name: "Front",
  12882. image: {
  12883. source: "./media/characters/blü/front.svg",
  12884. extra: 1883 / 1564,
  12885. bottom: 0.031
  12886. }
  12887. },
  12888. },
  12889. [
  12890. {
  12891. name: "Normal",
  12892. height: math.unit(13, "feet"),
  12893. default: true
  12894. },
  12895. {
  12896. name: "Big Boi",
  12897. height: math.unit(150, "meters")
  12898. },
  12899. {
  12900. name: "Mini Stomper",
  12901. height: math.unit(300, "meters")
  12902. },
  12903. {
  12904. name: "Macro",
  12905. height: math.unit(1000, "meters")
  12906. },
  12907. {
  12908. name: "Megamacro",
  12909. height: math.unit(11000, "meters")
  12910. },
  12911. {
  12912. name: "Gigamacro",
  12913. height: math.unit(11000, "km")
  12914. },
  12915. {
  12916. name: "Teramacro",
  12917. height: math.unit(420000, "km")
  12918. },
  12919. {
  12920. name: "Examacro",
  12921. height: math.unit(120, "parsecs")
  12922. },
  12923. {
  12924. name: "God Tho",
  12925. height: math.unit(98000000000, "parsecs")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12931. {
  12932. taurFront: {
  12933. height: math.unit(6, "feet"),
  12934. weight: math.unit(200, "lb"),
  12935. name: "Taur (Front)",
  12936. image: {
  12937. source: "./media/characters/scales/taur-front.svg",
  12938. extra: 1,
  12939. bottom: 0.05
  12940. }
  12941. },
  12942. taurBack: {
  12943. height: math.unit(6, "feet"),
  12944. weight: math.unit(200, "lb"),
  12945. name: "Taur (Back)",
  12946. image: {
  12947. source: "./media/characters/scales/taur-back.svg",
  12948. extra: 1,
  12949. bottom: 0.08
  12950. }
  12951. },
  12952. anthro: {
  12953. height: math.unit(6 * 7 / 12, "feet"),
  12954. weight: math.unit(100, "lb"),
  12955. name: "Anthro",
  12956. image: {
  12957. source: "./media/characters/scales/anthro.svg",
  12958. extra: 1,
  12959. bottom: 0.06
  12960. }
  12961. },
  12962. },
  12963. [
  12964. {
  12965. name: "Normal",
  12966. height: math.unit(12, "feet"),
  12967. default: true
  12968. },
  12969. ]
  12970. ))
  12971. characterMakers.push(() => makeCharacter(
  12972. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12973. {
  12974. front: {
  12975. height: math.unit(6, "feet"),
  12976. weight: math.unit(150, "lb"),
  12977. name: "Front",
  12978. image: {
  12979. source: "./media/characters/koragos/front.svg",
  12980. extra: 841 / 794,
  12981. bottom: 0.035
  12982. }
  12983. },
  12984. back: {
  12985. height: math.unit(6, "feet"),
  12986. weight: math.unit(150, "lb"),
  12987. name: "Back",
  12988. image: {
  12989. source: "./media/characters/koragos/back.svg",
  12990. extra: 841 / 810,
  12991. bottom: 0.022
  12992. }
  12993. },
  12994. },
  12995. [
  12996. {
  12997. name: "Normal",
  12998. height: math.unit(6 + 11 / 12, "feet"),
  12999. default: true
  13000. },
  13001. {
  13002. name: "Macro",
  13003. height: math.unit(490, "feet")
  13004. },
  13005. {
  13006. name: "Megamacro",
  13007. height: math.unit(10, "miles")
  13008. },
  13009. {
  13010. name: "Gigamacro",
  13011. height: math.unit(50, "miles")
  13012. },
  13013. ]
  13014. ))
  13015. characterMakers.push(() => makeCharacter(
  13016. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13017. {
  13018. front: {
  13019. height: math.unit(6, "feet"),
  13020. weight: math.unit(250, "lb"),
  13021. name: "Front",
  13022. image: {
  13023. source: "./media/characters/xylrem/front.svg",
  13024. extra: 3323 / 3050,
  13025. bottom: 0.065
  13026. }
  13027. },
  13028. },
  13029. [
  13030. {
  13031. name: "Micro",
  13032. height: math.unit(4, "feet")
  13033. },
  13034. {
  13035. name: "Normal",
  13036. height: math.unit(16, "feet"),
  13037. default: true
  13038. },
  13039. {
  13040. name: "Macro",
  13041. height: math.unit(2720, "feet")
  13042. },
  13043. {
  13044. name: "Megamacro",
  13045. height: math.unit(25000, "miles")
  13046. },
  13047. ]
  13048. ))
  13049. characterMakers.push(() => makeCharacter(
  13050. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13051. {
  13052. front: {
  13053. height: math.unit(8, "feet"),
  13054. weight: math.unit(250, "kg"),
  13055. name: "Front",
  13056. image: {
  13057. source: "./media/characters/ikideru/front.svg",
  13058. extra: 930 / 870,
  13059. bottom: 0.087
  13060. }
  13061. },
  13062. back: {
  13063. height: math.unit(8, "feet"),
  13064. weight: math.unit(250, "kg"),
  13065. name: "Back",
  13066. image: {
  13067. source: "./media/characters/ikideru/back.svg",
  13068. extra: 919 / 852,
  13069. bottom: 0.055
  13070. }
  13071. },
  13072. },
  13073. [
  13074. {
  13075. name: "Rare",
  13076. height: math.unit(8, "feet"),
  13077. default: true
  13078. },
  13079. {
  13080. name: "Playful Loom",
  13081. height: math.unit(80, "feet")
  13082. },
  13083. {
  13084. name: "City Leaner",
  13085. height: math.unit(230, "feet")
  13086. },
  13087. {
  13088. name: "Megamacro",
  13089. height: math.unit(2500, "feet")
  13090. },
  13091. {
  13092. name: "Gigamacro",
  13093. height: math.unit(26400, "feet")
  13094. },
  13095. {
  13096. name: "Tectonic Shifter",
  13097. height: math.unit(1.7, "megameters")
  13098. },
  13099. {
  13100. name: "Planet Carer",
  13101. height: math.unit(21, "megameters")
  13102. },
  13103. {
  13104. name: "God",
  13105. height: math.unit(11157.22, "parsecs")
  13106. },
  13107. ]
  13108. ))
  13109. characterMakers.push(() => makeCharacter(
  13110. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13111. {
  13112. front: {
  13113. height: math.unit(6, "feet"),
  13114. weight: math.unit(120, "lb"),
  13115. name: "Front",
  13116. image: {
  13117. source: "./media/characters/neo/front.svg"
  13118. }
  13119. },
  13120. },
  13121. [
  13122. {
  13123. name: "Micro",
  13124. height: math.unit(2, "inches"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Human Size",
  13129. height: math.unit(5 + 8 / 12, "feet")
  13130. },
  13131. ]
  13132. ))
  13133. characterMakers.push(() => makeCharacter(
  13134. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13135. {
  13136. front: {
  13137. height: math.unit(13 + 10 / 12, "feet"),
  13138. weight: math.unit(5320, "lb"),
  13139. name: "Front",
  13140. image: {
  13141. source: "./media/characters/chauncey-chantz/front.svg",
  13142. extra: 1587 / 1435,
  13143. bottom: 0.02
  13144. }
  13145. },
  13146. },
  13147. [
  13148. {
  13149. name: "Normal",
  13150. height: math.unit(13 + 10 / 12, "feet"),
  13151. default: true
  13152. },
  13153. {
  13154. name: "Macro",
  13155. height: math.unit(45, "feet")
  13156. },
  13157. {
  13158. name: "Megamacro",
  13159. height: math.unit(250, "miles")
  13160. },
  13161. {
  13162. name: "Planetary",
  13163. height: math.unit(10000, "miles")
  13164. },
  13165. {
  13166. name: "Galactic",
  13167. height: math.unit(40000, "parsecs")
  13168. },
  13169. {
  13170. name: "Universal",
  13171. height: math.unit(1, "yottameter")
  13172. },
  13173. ]
  13174. ))
  13175. characterMakers.push(() => makeCharacter(
  13176. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13177. {
  13178. front: {
  13179. height: math.unit(6, "feet"),
  13180. weight: math.unit(150, "lb"),
  13181. name: "Front",
  13182. image: {
  13183. source: "./media/characters/epifox/front.svg",
  13184. extra: 1,
  13185. bottom: 0.075
  13186. }
  13187. },
  13188. },
  13189. [
  13190. {
  13191. name: "Micro",
  13192. height: math.unit(6, "inches")
  13193. },
  13194. {
  13195. name: "Normal",
  13196. height: math.unit(12, "feet"),
  13197. default: true
  13198. },
  13199. {
  13200. name: "Macro",
  13201. height: math.unit(3810, "feet")
  13202. },
  13203. {
  13204. name: "Megamacro",
  13205. height: math.unit(500, "miles")
  13206. },
  13207. ]
  13208. ))
  13209. characterMakers.push(() => makeCharacter(
  13210. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13211. {
  13212. front: {
  13213. height: math.unit(1.8796, "m"),
  13214. weight: math.unit(230, "lb"),
  13215. name: "Front",
  13216. image: {
  13217. source: "./media/characters/colin-t/front.svg",
  13218. extra: 1272 / 1193,
  13219. bottom: 0.07
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Micro",
  13226. height: math.unit(0.571, "meters")
  13227. },
  13228. {
  13229. name: "Normal",
  13230. height: math.unit(1.8796, "meters"),
  13231. default: true
  13232. },
  13233. {
  13234. name: "Tall",
  13235. height: math.unit(4, "meters")
  13236. },
  13237. {
  13238. name: "Macro",
  13239. height: math.unit(67.241, "meters")
  13240. },
  13241. {
  13242. name: "Megamacro",
  13243. height: math.unit(371.856, "meters")
  13244. },
  13245. {
  13246. name: "Planetary",
  13247. height: math.unit(12631.5689, "km")
  13248. },
  13249. ]
  13250. ))
  13251. characterMakers.push(() => makeCharacter(
  13252. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13253. {
  13254. front: {
  13255. height: math.unit(1.85, "meters"),
  13256. weight: math.unit(80, "kg"),
  13257. name: "Front",
  13258. image: {
  13259. source: "./media/characters/matvei/front.svg",
  13260. extra: 456/447,
  13261. bottom: 8/464
  13262. }
  13263. },
  13264. back: {
  13265. height: math.unit(1.85, "meters"),
  13266. weight: math.unit(80, "kg"),
  13267. name: "Back",
  13268. image: {
  13269. source: "./media/characters/matvei/back.svg",
  13270. extra: 434/427,
  13271. bottom: 11/445
  13272. }
  13273. },
  13274. },
  13275. [
  13276. {
  13277. name: "Normal",
  13278. height: math.unit(1.85, "meters"),
  13279. default: true
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13285. {
  13286. front: {
  13287. height: math.unit(5 + 9 / 12, "feet"),
  13288. weight: math.unit(70, "lb"),
  13289. name: "Front",
  13290. image: {
  13291. source: "./media/characters/quincy/front.svg",
  13292. extra: 3041 / 2751
  13293. }
  13294. },
  13295. back: {
  13296. height: math.unit(5 + 9 / 12, "feet"),
  13297. weight: math.unit(70, "lb"),
  13298. name: "Back",
  13299. image: {
  13300. source: "./media/characters/quincy/back.svg",
  13301. extra: 3041 / 2751
  13302. }
  13303. },
  13304. flying: {
  13305. height: math.unit(5 + 4 / 12, "feet"),
  13306. weight: math.unit(70, "lb"),
  13307. name: "Flying",
  13308. image: {
  13309. source: "./media/characters/quincy/flying.svg",
  13310. extra: 1044 / 930
  13311. }
  13312. },
  13313. },
  13314. [
  13315. {
  13316. name: "Micro",
  13317. height: math.unit(3, "cm")
  13318. },
  13319. {
  13320. name: "Normal",
  13321. height: math.unit(5 + 9 / 12, "feet")
  13322. },
  13323. {
  13324. name: "Macro",
  13325. height: math.unit(200, "meters"),
  13326. default: true
  13327. },
  13328. {
  13329. name: "Megamacro",
  13330. height: math.unit(1000, "meters")
  13331. },
  13332. ]
  13333. ))
  13334. characterMakers.push(() => makeCharacter(
  13335. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13336. {
  13337. front: {
  13338. height: math.unit(3 + 11/12, "feet"),
  13339. weight: math.unit(50, "lb"),
  13340. name: "Front",
  13341. image: {
  13342. source: "./media/characters/vanrel/front.svg",
  13343. extra: 1104/949,
  13344. bottom: 52/1156
  13345. }
  13346. },
  13347. back: {
  13348. height: math.unit(3 + 11/12, "feet"),
  13349. weight: math.unit(50, "lb"),
  13350. name: "Back",
  13351. image: {
  13352. source: "./media/characters/vanrel/back.svg",
  13353. extra: 1119/976,
  13354. bottom: 37/1156
  13355. }
  13356. },
  13357. tome: {
  13358. height: math.unit(1.35, "feet"),
  13359. weight: math.unit(10, "lb"),
  13360. name: "Vanrel's Tome",
  13361. rename: true,
  13362. image: {
  13363. source: "./media/characters/vanrel/tome.svg"
  13364. }
  13365. },
  13366. beans: {
  13367. height: math.unit(0.89, "feet"),
  13368. name: "Beans",
  13369. image: {
  13370. source: "./media/characters/vanrel/beans.svg"
  13371. }
  13372. },
  13373. },
  13374. [
  13375. {
  13376. name: "Normal",
  13377. height: math.unit(3 + 11/12, "feet"),
  13378. default: true
  13379. },
  13380. ]
  13381. ))
  13382. characterMakers.push(() => makeCharacter(
  13383. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13384. {
  13385. front: {
  13386. height: math.unit(7 + 5 / 12, "feet"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/kuiper-vanrel/front.svg",
  13390. extra: 1219/1169,
  13391. bottom: 69/1288
  13392. }
  13393. },
  13394. back: {
  13395. height: math.unit(7 + 5 / 12, "feet"),
  13396. name: "Back",
  13397. image: {
  13398. source: "./media/characters/kuiper-vanrel/back.svg",
  13399. extra: 1236/1193,
  13400. bottom: 27/1263
  13401. }
  13402. },
  13403. foot: {
  13404. height: math.unit(0.55, "meters"),
  13405. name: "Foot",
  13406. image: {
  13407. source: "./media/characters/kuiper-vanrel/foot.svg",
  13408. }
  13409. },
  13410. battle: {
  13411. height: math.unit(6.824, "feet"),
  13412. name: "Battle",
  13413. image: {
  13414. source: "./media/characters/kuiper-vanrel/battle.svg",
  13415. extra: 1466 / 1327,
  13416. bottom: 29 / 1492.5
  13417. }
  13418. },
  13419. meerkui: {
  13420. height: math.unit(18, "inches"),
  13421. name: "Meerkui",
  13422. image: {
  13423. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13424. extra: 1354/1289,
  13425. bottom: 69/1423
  13426. }
  13427. },
  13428. },
  13429. [
  13430. {
  13431. name: "Normal",
  13432. height: math.unit(7 + 5 / 12, "feet"),
  13433. default: true
  13434. },
  13435. ]
  13436. ))
  13437. characterMakers.push(() => makeCharacter(
  13438. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13439. {
  13440. front: {
  13441. height: math.unit(8 + 5 / 12, "feet"),
  13442. name: "Front",
  13443. image: {
  13444. source: "./media/characters/keset-vanrel/front.svg",
  13445. extra: 1231/1148,
  13446. bottom: 82/1313
  13447. }
  13448. },
  13449. back: {
  13450. height: math.unit(8 + 5 / 12, "feet"),
  13451. name: "Back",
  13452. image: {
  13453. source: "./media/characters/keset-vanrel/back.svg",
  13454. extra: 1240/1174,
  13455. bottom: 33/1273
  13456. }
  13457. },
  13458. hand: {
  13459. height: math.unit(0.6, "meters"),
  13460. name: "Hand",
  13461. image: {
  13462. source: "./media/characters/keset-vanrel/hand.svg"
  13463. }
  13464. },
  13465. foot: {
  13466. height: math.unit(0.94978, "meters"),
  13467. name: "Foot",
  13468. image: {
  13469. source: "./media/characters/keset-vanrel/foot.svg"
  13470. }
  13471. },
  13472. battle: {
  13473. height: math.unit(7.408, "feet"),
  13474. name: "Battle",
  13475. image: {
  13476. source: "./media/characters/keset-vanrel/battle.svg",
  13477. extra: 1890 / 1386,
  13478. bottom: 73.28 / 1970
  13479. }
  13480. },
  13481. },
  13482. [
  13483. {
  13484. name: "Normal",
  13485. height: math.unit(8 + 5 / 12, "feet"),
  13486. default: true
  13487. },
  13488. ]
  13489. ))
  13490. characterMakers.push(() => makeCharacter(
  13491. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13492. {
  13493. front: {
  13494. height: math.unit(6, "feet"),
  13495. weight: math.unit(150, "lb"),
  13496. name: "Front",
  13497. image: {
  13498. source: "./media/characters/neos/front.svg",
  13499. extra: 1696 / 992,
  13500. bottom: 0.14
  13501. }
  13502. },
  13503. },
  13504. [
  13505. {
  13506. name: "Normal",
  13507. height: math.unit(54, "cm"),
  13508. default: true
  13509. },
  13510. {
  13511. name: "Macro",
  13512. height: math.unit(100, "m")
  13513. },
  13514. {
  13515. name: "Megamacro",
  13516. height: math.unit(10, "km")
  13517. },
  13518. {
  13519. name: "Megamacro+",
  13520. height: math.unit(100, "km")
  13521. },
  13522. {
  13523. name: "Gigamacro",
  13524. height: math.unit(100, "Mm")
  13525. },
  13526. {
  13527. name: "Teramacro",
  13528. height: math.unit(100, "Gm")
  13529. },
  13530. {
  13531. name: "Examacro",
  13532. height: math.unit(100, "Em")
  13533. },
  13534. {
  13535. name: "Godly",
  13536. height: math.unit(10000, "Ym")
  13537. },
  13538. {
  13539. name: "Beyond Godly",
  13540. height: math.unit(25, "multiverses")
  13541. },
  13542. ]
  13543. ))
  13544. characterMakers.push(() => makeCharacter(
  13545. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13546. {
  13547. feminine: {
  13548. height: math.unit(5, "feet"),
  13549. weight: math.unit(100, "lb"),
  13550. name: "Feminine",
  13551. image: {
  13552. source: "./media/characters/sammy-mouse/feminine.svg",
  13553. extra: 2526 / 2425,
  13554. bottom: 0.123
  13555. }
  13556. },
  13557. masculine: {
  13558. height: math.unit(5, "feet"),
  13559. weight: math.unit(100, "lb"),
  13560. name: "Masculine",
  13561. image: {
  13562. source: "./media/characters/sammy-mouse/masculine.svg",
  13563. extra: 2526 / 2425,
  13564. bottom: 0.123
  13565. }
  13566. },
  13567. },
  13568. [
  13569. {
  13570. name: "Micro",
  13571. height: math.unit(5, "inches")
  13572. },
  13573. {
  13574. name: "Normal",
  13575. height: math.unit(5, "feet"),
  13576. default: true
  13577. },
  13578. {
  13579. name: "Macro",
  13580. height: math.unit(60, "feet")
  13581. },
  13582. ]
  13583. ))
  13584. characterMakers.push(() => makeCharacter(
  13585. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13586. {
  13587. front: {
  13588. height: math.unit(4, "feet"),
  13589. weight: math.unit(50, "lb"),
  13590. name: "Front",
  13591. image: {
  13592. source: "./media/characters/kole/front.svg",
  13593. extra: 1423 / 1303,
  13594. bottom: 0.025
  13595. }
  13596. },
  13597. back: {
  13598. height: math.unit(4, "feet"),
  13599. weight: math.unit(50, "lb"),
  13600. name: "Back",
  13601. image: {
  13602. source: "./media/characters/kole/back.svg",
  13603. extra: 1426 / 1280,
  13604. bottom: 0.02
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Normal",
  13611. height: math.unit(4, "feet"),
  13612. default: true
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(2.5, "feet"),
  13621. weight: math.unit(32, "lb"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/rufran/front.svg",
  13625. extra: 1313/885,
  13626. bottom: 94/1407
  13627. }
  13628. },
  13629. side: {
  13630. height: math.unit(2.5, "feet"),
  13631. weight: math.unit(32, "lb"),
  13632. name: "Side",
  13633. image: {
  13634. source: "./media/characters/rufran/side.svg",
  13635. extra: 1109/852,
  13636. bottom: 118/1227
  13637. }
  13638. },
  13639. back: {
  13640. height: math.unit(2.5, "feet"),
  13641. weight: math.unit(32, "lb"),
  13642. name: "Back",
  13643. image: {
  13644. source: "./media/characters/rufran/back.svg",
  13645. extra: 1280/878,
  13646. bottom: 131/1411
  13647. }
  13648. },
  13649. mouth: {
  13650. height: math.unit(1.13, "feet"),
  13651. name: "Mouth",
  13652. image: {
  13653. source: "./media/characters/rufran/mouth.svg"
  13654. }
  13655. },
  13656. foot: {
  13657. height: math.unit(1.33, "feet"),
  13658. name: "Foot",
  13659. image: {
  13660. source: "./media/characters/rufran/foot.svg"
  13661. }
  13662. },
  13663. koboldFront: {
  13664. height: math.unit(2 + 6 / 12, "feet"),
  13665. weight: math.unit(20, "lb"),
  13666. name: "Front (Kobold)",
  13667. image: {
  13668. source: "./media/characters/rufran/kobold-front.svg",
  13669. extra: 2041 / 1839,
  13670. bottom: 0.055
  13671. }
  13672. },
  13673. koboldBack: {
  13674. height: math.unit(2 + 6 / 12, "feet"),
  13675. weight: math.unit(20, "lb"),
  13676. name: "Back (Kobold)",
  13677. image: {
  13678. source: "./media/characters/rufran/kobold-back.svg",
  13679. extra: 2054 / 1839,
  13680. bottom: 0.01
  13681. }
  13682. },
  13683. koboldHand: {
  13684. height: math.unit(0.2166, "meters"),
  13685. name: "Hand (Kobold)",
  13686. image: {
  13687. source: "./media/characters/rufran/kobold-hand.svg"
  13688. }
  13689. },
  13690. koboldFoot: {
  13691. height: math.unit(0.185, "meters"),
  13692. name: "Foot (Kobold)",
  13693. image: {
  13694. source: "./media/characters/rufran/kobold-foot.svg"
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Micro",
  13701. height: math.unit(1, "inch")
  13702. },
  13703. {
  13704. name: "Normal",
  13705. height: math.unit(2 + 6 / 12, "feet"),
  13706. default: true
  13707. },
  13708. {
  13709. name: "Big",
  13710. height: math.unit(60, "feet")
  13711. },
  13712. {
  13713. name: "Macro",
  13714. height: math.unit(325, "feet")
  13715. },
  13716. ]
  13717. ))
  13718. characterMakers.push(() => makeCharacter(
  13719. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13720. {
  13721. front: {
  13722. height: math.unit(0.3, "meters"),
  13723. weight: math.unit(3.5, "kg"),
  13724. name: "Front",
  13725. image: {
  13726. source: "./media/characters/chip/front.svg",
  13727. extra: 748 / 674
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Micro",
  13734. height: math.unit(1, "inch"),
  13735. default: true
  13736. },
  13737. ]
  13738. ))
  13739. characterMakers.push(() => makeCharacter(
  13740. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13741. {
  13742. side: {
  13743. height: math.unit(2.3, "meters"),
  13744. weight: math.unit(3500, "lb"),
  13745. name: "Side",
  13746. image: {
  13747. source: "./media/characters/torvid/side.svg",
  13748. extra: 1972 / 722,
  13749. bottom: 0.035
  13750. }
  13751. },
  13752. },
  13753. [
  13754. {
  13755. name: "Normal",
  13756. height: math.unit(2.3, "meters"),
  13757. default: true
  13758. },
  13759. ]
  13760. ))
  13761. characterMakers.push(() => makeCharacter(
  13762. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13763. {
  13764. front: {
  13765. height: math.unit(2, "meters"),
  13766. weight: math.unit(150.5, "kg"),
  13767. name: "Front",
  13768. image: {
  13769. source: "./media/characters/susan/front.svg",
  13770. extra: 693 / 635,
  13771. bottom: 0.05
  13772. }
  13773. },
  13774. },
  13775. [
  13776. {
  13777. name: "Megamacro",
  13778. height: math.unit(505, "miles"),
  13779. default: true
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(6, "feet"),
  13788. weight: math.unit(150, "lb"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/raindrops/front.svg",
  13792. extra: 2655 / 2461,
  13793. bottom: 49 / 2705
  13794. }
  13795. },
  13796. back: {
  13797. height: math.unit(6, "feet"),
  13798. weight: math.unit(150, "lb"),
  13799. name: "Back",
  13800. image: {
  13801. source: "./media/characters/raindrops/back.svg",
  13802. extra: 2574 / 2400,
  13803. bottom: 65 / 2634
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "Micro",
  13810. height: math.unit(6, "inches")
  13811. },
  13812. {
  13813. name: "Normal",
  13814. height: math.unit(6 + 2 / 12, "feet")
  13815. },
  13816. {
  13817. name: "Macro",
  13818. height: math.unit(131, "feet"),
  13819. default: true
  13820. },
  13821. {
  13822. name: "Megamacro",
  13823. height: math.unit(15, "miles")
  13824. },
  13825. {
  13826. name: "Gigamacro",
  13827. height: math.unit(4000, "miles")
  13828. },
  13829. {
  13830. name: "Teramacro",
  13831. height: math.unit(315000, "miles")
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13837. {
  13838. front: {
  13839. height: math.unit(2.794, "meters"),
  13840. weight: math.unit(325, "kg"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/tezwa/front.svg",
  13844. extra: 2083 / 1906,
  13845. bottom: 0.031
  13846. }
  13847. },
  13848. foot: {
  13849. height: math.unit(0.687, "meters"),
  13850. name: "Foot",
  13851. image: {
  13852. source: "./media/characters/tezwa/foot.svg"
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Normal",
  13859. height: math.unit(9 + 2 / 12, "feet"),
  13860. default: true
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13866. {
  13867. front: {
  13868. height: math.unit(58, "feet"),
  13869. weight: math.unit(89000, "lb"),
  13870. name: "Front",
  13871. image: {
  13872. source: "./media/characters/typhus/front.svg",
  13873. extra: 816 / 800,
  13874. bottom: 0.065
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Macro",
  13881. height: math.unit(58, "feet"),
  13882. default: true
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13888. {
  13889. front: {
  13890. height: math.unit(12, "feet"),
  13891. weight: math.unit(6, "tonnes"),
  13892. name: "Front",
  13893. image: {
  13894. source: "./media/characters/lyra-von-wulf/front.svg",
  13895. extra: 1,
  13896. bottom: 0.10
  13897. }
  13898. },
  13899. frontMecha: {
  13900. height: math.unit(12, "feet"),
  13901. weight: math.unit(12, "tonnes"),
  13902. name: "Front (Mecha)",
  13903. image: {
  13904. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13905. extra: 1,
  13906. bottom: 0.042
  13907. }
  13908. },
  13909. maw: {
  13910. height: math.unit(2.2, "feet"),
  13911. name: "Maw",
  13912. image: {
  13913. source: "./media/characters/lyra-von-wulf/maw.svg"
  13914. }
  13915. },
  13916. },
  13917. [
  13918. {
  13919. name: "Normal",
  13920. height: math.unit(12, "feet"),
  13921. default: true
  13922. },
  13923. {
  13924. name: "Classic",
  13925. height: math.unit(50, "feet")
  13926. },
  13927. {
  13928. name: "Macro",
  13929. height: math.unit(500, "feet")
  13930. },
  13931. {
  13932. name: "Megamacro",
  13933. height: math.unit(1, "mile")
  13934. },
  13935. {
  13936. name: "Gigamacro",
  13937. height: math.unit(400, "miles")
  13938. },
  13939. {
  13940. name: "Teramacro",
  13941. height: math.unit(22000, "miles")
  13942. },
  13943. {
  13944. name: "Solarmacro",
  13945. height: math.unit(8600000, "miles")
  13946. },
  13947. {
  13948. name: "Galactic",
  13949. height: math.unit(1057000, "lightyears")
  13950. },
  13951. ]
  13952. ))
  13953. characterMakers.push(() => makeCharacter(
  13954. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13955. {
  13956. front: {
  13957. height: math.unit(6 + 10 / 12, "feet"),
  13958. weight: math.unit(150, "lb"),
  13959. name: "Front",
  13960. image: {
  13961. source: "./media/characters/dixon/front.svg",
  13962. extra: 3361 / 3209,
  13963. bottom: 0.01
  13964. }
  13965. },
  13966. },
  13967. [
  13968. {
  13969. name: "Normal",
  13970. height: math.unit(6 + 10 / 12, "feet"),
  13971. default: true
  13972. },
  13973. {
  13974. name: "Big",
  13975. height: math.unit(12, "meters")
  13976. },
  13977. {
  13978. name: "Macro",
  13979. height: math.unit(500, "meters")
  13980. },
  13981. {
  13982. name: "Megamacro",
  13983. height: math.unit(2, "km")
  13984. },
  13985. ]
  13986. ))
  13987. characterMakers.push(() => makeCharacter(
  13988. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13989. {
  13990. front: {
  13991. height: math.unit(185, "cm"),
  13992. weight: math.unit(68, "kg"),
  13993. name: "Front",
  13994. image: {
  13995. source: "./media/characters/kauko/front.svg",
  13996. extra: 1455 / 1421,
  13997. bottom: 0.03
  13998. }
  13999. },
  14000. back: {
  14001. height: math.unit(185, "cm"),
  14002. weight: math.unit(68, "kg"),
  14003. name: "Back",
  14004. image: {
  14005. source: "./media/characters/kauko/back.svg",
  14006. extra: 1455 / 1421,
  14007. bottom: 0.004
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(185, "cm"),
  14015. default: true
  14016. },
  14017. ]
  14018. ))
  14019. characterMakers.push(() => makeCharacter(
  14020. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14021. {
  14022. frontSfw: {
  14023. height: math.unit(5, "meters"),
  14024. weight: math.unit(4250, "lb"),
  14025. name: "Front",
  14026. image: {
  14027. source: "./media/characters/varg/front-sfw.svg",
  14028. extra: 1103/1010,
  14029. bottom: 50/1153
  14030. },
  14031. form: "anthro",
  14032. default: true
  14033. },
  14034. backSfw: {
  14035. height: math.unit(5, "meters"),
  14036. weight: math.unit(4250, "lb"),
  14037. name: "Back",
  14038. image: {
  14039. source: "./media/characters/varg/back-sfw.svg",
  14040. extra: 1038/1022,
  14041. bottom: 36/1074
  14042. },
  14043. form: "anthro"
  14044. },
  14045. frontNsfw: {
  14046. height: math.unit(5, "meters"),
  14047. weight: math.unit(4250, "lb"),
  14048. name: "Front (NSFW)",
  14049. image: {
  14050. source: "./media/characters/varg/front-nsfw.svg",
  14051. extra: 1103/1010,
  14052. bottom: 50/1153
  14053. },
  14054. form: "anthro"
  14055. },
  14056. sheath: {
  14057. height: math.unit(3.8, "feet"),
  14058. weight: math.unit(90, "kilograms"),
  14059. name: "Sheath",
  14060. image: {
  14061. source: "./media/characters/varg/sheath.svg"
  14062. },
  14063. form: "anthro"
  14064. },
  14065. dick: {
  14066. height: math.unit(4.6, "feet"),
  14067. weight: math.unit(451, "kilograms"),
  14068. name: "Dick",
  14069. image: {
  14070. source: "./media/characters/varg/dick.svg"
  14071. },
  14072. form: "anthro"
  14073. },
  14074. feralSfw: {
  14075. height: math.unit(5, "meters"),
  14076. weight: math.unit(100000, "lb"),
  14077. name: "Side",
  14078. image: {
  14079. source: "./media/characters/varg/feral-sfw.svg",
  14080. extra: 1065/511,
  14081. bottom: 211/1276
  14082. },
  14083. form: "feral",
  14084. default: true
  14085. },
  14086. feralNsfw: {
  14087. height: math.unit(5, "meters"),
  14088. weight: math.unit(100000, "lb"),
  14089. name: "Side (NSFW)",
  14090. image: {
  14091. source: "./media/characters/varg/feral-nsfw.svg",
  14092. extra: 1065/511,
  14093. bottom: 211/1276
  14094. },
  14095. form: "feral",
  14096. },
  14097. feralSheath: {
  14098. height: math.unit(9.8, "feet"),
  14099. weight: math.unit(2000, "kilograms"),
  14100. name: "Sheath",
  14101. image: {
  14102. source: "./media/characters/varg/sheath.svg"
  14103. },
  14104. form: "feral"
  14105. },
  14106. feralDick: {
  14107. height: math.unit(13.11, "feet"),
  14108. weight: math.unit(10440, "kilograms"),
  14109. name: "Dick",
  14110. image: {
  14111. source: "./media/characters/varg/dick.svg"
  14112. },
  14113. form: "feral"
  14114. },
  14115. },
  14116. [
  14117. {
  14118. name: "Normal",
  14119. height: math.unit(5, "meters"),
  14120. form: "anthro"
  14121. },
  14122. {
  14123. name: "Macro",
  14124. height: math.unit(200, "meters"),
  14125. form: "anthro"
  14126. },
  14127. {
  14128. name: "Megamacro",
  14129. height: math.unit(20, "kilometers"),
  14130. form: "anthro"
  14131. },
  14132. {
  14133. name: "True Size",
  14134. height: math.unit(211, "km"),
  14135. form: "anthro",
  14136. default: true
  14137. },
  14138. {
  14139. name: "Gigamacro",
  14140. height: math.unit(1000, "km"),
  14141. form: "anthro"
  14142. },
  14143. {
  14144. name: "Gigamacro+",
  14145. height: math.unit(8000, "km"),
  14146. form: "anthro"
  14147. },
  14148. {
  14149. name: "Teramacro",
  14150. height: math.unit(1000000, "km"),
  14151. form: "anthro"
  14152. },
  14153. {
  14154. name: "Normal",
  14155. height: math.unit(5, "meters"),
  14156. form: "feral"
  14157. },
  14158. {
  14159. name: "Macro",
  14160. height: math.unit(200, "meters"),
  14161. form: "feral"
  14162. },
  14163. {
  14164. name: "Megamacro",
  14165. height: math.unit(20, "kilometers"),
  14166. form: "feral"
  14167. },
  14168. {
  14169. name: "True Size",
  14170. height: math.unit(211, "km"),
  14171. form: "feral",
  14172. default: true
  14173. },
  14174. {
  14175. name: "Gigamacro",
  14176. height: math.unit(1000, "km"),
  14177. form: "feral"
  14178. },
  14179. {
  14180. name: "Gigamacro+",
  14181. height: math.unit(8000, "km"),
  14182. form: "feral"
  14183. },
  14184. {
  14185. name: "Teramacro",
  14186. height: math.unit(1000000, "km"),
  14187. form: "feral"
  14188. },
  14189. ],
  14190. {
  14191. "anthro": {
  14192. name: "Anthro",
  14193. default: true
  14194. },
  14195. "feral": {
  14196. name: "Feral",
  14197. },
  14198. }
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14202. {
  14203. front: {
  14204. height: math.unit(7 + 7 / 12, "feet"),
  14205. weight: math.unit(267, "lb"),
  14206. name: "Front",
  14207. image: {
  14208. source: "./media/characters/dayza/front.svg",
  14209. extra: 1262 / 1200,
  14210. bottom: 0.035
  14211. }
  14212. },
  14213. side: {
  14214. height: math.unit(7 + 7 / 12, "feet"),
  14215. weight: math.unit(267, "lb"),
  14216. name: "Side",
  14217. image: {
  14218. source: "./media/characters/dayza/side.svg",
  14219. extra: 1295 / 1245,
  14220. bottom: 0.05
  14221. }
  14222. },
  14223. back: {
  14224. height: math.unit(7 + 7 / 12, "feet"),
  14225. weight: math.unit(267, "lb"),
  14226. name: "Back",
  14227. image: {
  14228. source: "./media/characters/dayza/back.svg",
  14229. extra: 1241 / 1170
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Normal",
  14236. height: math.unit(7 + 7 / 12, "feet"),
  14237. default: true
  14238. },
  14239. {
  14240. name: "Macro",
  14241. height: math.unit(155, "feet")
  14242. },
  14243. ]
  14244. ))
  14245. characterMakers.push(() => makeCharacter(
  14246. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14247. {
  14248. front: {
  14249. height: math.unit(6 + 5 / 12, "feet"),
  14250. weight: math.unit(160, "lb"),
  14251. name: "Front",
  14252. image: {
  14253. source: "./media/characters/xanthos/front.svg",
  14254. extra: 1,
  14255. bottom: 0.04
  14256. }
  14257. },
  14258. back: {
  14259. height: math.unit(6 + 5 / 12, "feet"),
  14260. weight: math.unit(160, "lb"),
  14261. name: "Back",
  14262. image: {
  14263. source: "./media/characters/xanthos/back.svg",
  14264. extra: 1,
  14265. bottom: 0.03
  14266. }
  14267. },
  14268. hand: {
  14269. height: math.unit(0.928, "feet"),
  14270. name: "Hand",
  14271. image: {
  14272. source: "./media/characters/xanthos/hand.svg"
  14273. }
  14274. },
  14275. foot: {
  14276. height: math.unit(1.286, "feet"),
  14277. name: "Foot",
  14278. image: {
  14279. source: "./media/characters/xanthos/foot.svg"
  14280. }
  14281. },
  14282. },
  14283. [
  14284. {
  14285. name: "Normal",
  14286. height: math.unit(6 + 5 / 12, "feet"),
  14287. default: true
  14288. },
  14289. {
  14290. name: "Normal+",
  14291. height: math.unit(6, "meters")
  14292. },
  14293. {
  14294. name: "Macro",
  14295. height: math.unit(40, "feet")
  14296. },
  14297. {
  14298. name: "Macro+",
  14299. height: math.unit(200, "meters")
  14300. },
  14301. {
  14302. name: "Megamacro",
  14303. height: math.unit(20, "km")
  14304. },
  14305. {
  14306. name: "Megamacro+",
  14307. height: math.unit(100, "km")
  14308. },
  14309. {
  14310. name: "Gigamacro",
  14311. height: math.unit(200, "megameters")
  14312. },
  14313. {
  14314. name: "Gigamacro+",
  14315. height: math.unit(1.5, "gigameters")
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14321. {
  14322. front: {
  14323. height: math.unit(6 + 3 / 12, "feet"),
  14324. weight: math.unit(215, "lb"),
  14325. name: "Front",
  14326. image: {
  14327. source: "./media/characters/grynn/front.svg",
  14328. extra: 4627 / 4209,
  14329. bottom: 0.047
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Micro",
  14336. height: math.unit(6, "inches")
  14337. },
  14338. {
  14339. name: "Normal",
  14340. height: math.unit(6 + 3 / 12, "feet"),
  14341. default: true
  14342. },
  14343. {
  14344. name: "Big",
  14345. height: math.unit(104, "feet")
  14346. },
  14347. {
  14348. name: "Macro",
  14349. height: math.unit(944, "feet")
  14350. },
  14351. {
  14352. name: "Macro+",
  14353. height: math.unit(9480, "feet")
  14354. },
  14355. {
  14356. name: "Megamacro",
  14357. height: math.unit(78752, "feet")
  14358. },
  14359. {
  14360. name: "Megamacro+",
  14361. height: math.unit(630128, "feet")
  14362. },
  14363. {
  14364. name: "Megamacro++",
  14365. height: math.unit(3150695, "feet")
  14366. },
  14367. ]
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14371. {
  14372. front: {
  14373. height: math.unit(7 + 5 / 12, "feet"),
  14374. weight: math.unit(450, "lb"),
  14375. name: "Front",
  14376. image: {
  14377. source: "./media/characters/mocha-aura/front.svg",
  14378. extra: 1907 / 1817,
  14379. bottom: 0.04
  14380. }
  14381. },
  14382. back: {
  14383. height: math.unit(7 + 5 / 12, "feet"),
  14384. weight: math.unit(450, "lb"),
  14385. name: "Back",
  14386. image: {
  14387. source: "./media/characters/mocha-aura/back.svg",
  14388. extra: 1900 / 1825,
  14389. bottom: 0.045
  14390. }
  14391. },
  14392. },
  14393. [
  14394. {
  14395. name: "Nano",
  14396. height: math.unit(1, "nm")
  14397. },
  14398. {
  14399. name: "Megamicro",
  14400. height: math.unit(1, "mm")
  14401. },
  14402. {
  14403. name: "Micro",
  14404. height: math.unit(3, "inches")
  14405. },
  14406. {
  14407. name: "Normal",
  14408. height: math.unit(7 + 5 / 12, "feet"),
  14409. default: true
  14410. },
  14411. {
  14412. name: "Macro",
  14413. height: math.unit(30, "feet")
  14414. },
  14415. {
  14416. name: "Megamacro",
  14417. height: math.unit(3500, "feet")
  14418. },
  14419. {
  14420. name: "Teramacro",
  14421. height: math.unit(500000, "miles")
  14422. },
  14423. {
  14424. name: "Petamacro",
  14425. height: math.unit(50000000000000000, "parsecs")
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14431. {
  14432. front: {
  14433. height: math.unit(6, "feet"),
  14434. weight: math.unit(150, "lb"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/ilisha-devya/front.svg",
  14438. extra: 1053/1049,
  14439. bottom: 270/1323
  14440. }
  14441. },
  14442. back: {
  14443. height: math.unit(6, "feet"),
  14444. weight: math.unit(150, "lb"),
  14445. name: "Back",
  14446. image: {
  14447. source: "./media/characters/ilisha-devya/back.svg",
  14448. extra: 1131/1128,
  14449. bottom: 39/1170
  14450. }
  14451. },
  14452. },
  14453. [
  14454. {
  14455. name: "Macro",
  14456. height: math.unit(500, "feet"),
  14457. default: true
  14458. },
  14459. {
  14460. name: "Megamacro",
  14461. height: math.unit(10, "miles")
  14462. },
  14463. {
  14464. name: "Gigamacro",
  14465. height: math.unit(100000, "miles")
  14466. },
  14467. {
  14468. name: "Examacro",
  14469. height: math.unit(1e9, "lightyears")
  14470. },
  14471. {
  14472. name: "Omniversal",
  14473. height: math.unit(1e33, "lightyears")
  14474. },
  14475. {
  14476. name: "Beyond Infinite",
  14477. height: math.unit(1e100, "lightyears")
  14478. },
  14479. ]
  14480. ))
  14481. characterMakers.push(() => makeCharacter(
  14482. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14483. {
  14484. Side: {
  14485. height: math.unit(6, "feet"),
  14486. weight: math.unit(150, "lb"),
  14487. name: "Side",
  14488. image: {
  14489. source: "./media/characters/mira/side.svg",
  14490. extra: 900 / 799,
  14491. bottom: 0.02
  14492. }
  14493. },
  14494. },
  14495. [
  14496. {
  14497. name: "Human Size",
  14498. height: math.unit(6, "feet")
  14499. },
  14500. {
  14501. name: "Macro",
  14502. height: math.unit(100, "feet"),
  14503. default: true
  14504. },
  14505. {
  14506. name: "Megamacro",
  14507. height: math.unit(10, "miles")
  14508. },
  14509. {
  14510. name: "Gigamacro",
  14511. height: math.unit(25000, "miles")
  14512. },
  14513. {
  14514. name: "Teramacro",
  14515. height: math.unit(300, "AU")
  14516. },
  14517. {
  14518. name: "Full Size",
  14519. height: math.unit(4.5e10, "lightyears")
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(6, "feet"),
  14528. weight: math.unit(150, "lb"),
  14529. name: "Front",
  14530. image: {
  14531. source: "./media/characters/holly/front.svg",
  14532. extra: 639 / 606
  14533. }
  14534. },
  14535. back: {
  14536. height: math.unit(6, "feet"),
  14537. weight: math.unit(150, "lb"),
  14538. name: "Back",
  14539. image: {
  14540. source: "./media/characters/holly/back.svg",
  14541. extra: 623 / 598
  14542. }
  14543. },
  14544. frontWorking: {
  14545. height: math.unit(6, "feet"),
  14546. weight: math.unit(150, "lb"),
  14547. name: "Front (Working)",
  14548. image: {
  14549. source: "./media/characters/holly/front-working.svg",
  14550. extra: 607 / 577,
  14551. bottom: 0.048
  14552. }
  14553. },
  14554. },
  14555. [
  14556. {
  14557. name: "Normal",
  14558. height: math.unit(12 + 3 / 12, "feet"),
  14559. default: true
  14560. },
  14561. ]
  14562. ))
  14563. characterMakers.push(() => makeCharacter(
  14564. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14565. {
  14566. front: {
  14567. height: math.unit(6, "feet"),
  14568. weight: math.unit(150, "lb"),
  14569. name: "Front",
  14570. image: {
  14571. source: "./media/characters/porter/front.svg",
  14572. extra: 1,
  14573. bottom: 0.01
  14574. }
  14575. },
  14576. frontRobes: {
  14577. height: math.unit(6, "feet"),
  14578. weight: math.unit(150, "lb"),
  14579. name: "Front (Robes)",
  14580. image: {
  14581. source: "./media/characters/porter/front-robes.svg",
  14582. extra: 1.01,
  14583. bottom: 0.01
  14584. }
  14585. },
  14586. },
  14587. [
  14588. {
  14589. name: "Normal",
  14590. height: math.unit(11 + 9 / 12, "feet"),
  14591. default: true
  14592. },
  14593. ]
  14594. ))
  14595. characterMakers.push(() => makeCharacter(
  14596. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14597. {
  14598. legendary: {
  14599. height: math.unit(6, "feet"),
  14600. weight: math.unit(150, "lb"),
  14601. name: "Legendary",
  14602. image: {
  14603. source: "./media/characters/lucy/legendary.svg",
  14604. extra: 1355 / 1100,
  14605. bottom: 0.045
  14606. }
  14607. },
  14608. },
  14609. [
  14610. {
  14611. name: "Legendary",
  14612. height: math.unit(86882 * 2, "miles"),
  14613. default: true
  14614. },
  14615. ]
  14616. ))
  14617. characterMakers.push(() => makeCharacter(
  14618. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14619. {
  14620. front: {
  14621. height: math.unit(6, "feet"),
  14622. weight: math.unit(150, "lb"),
  14623. name: "Front",
  14624. image: {
  14625. source: "./media/characters/drusilla/front.svg",
  14626. extra: 678 / 635,
  14627. bottom: 0.03
  14628. }
  14629. },
  14630. back: {
  14631. height: math.unit(6, "feet"),
  14632. weight: math.unit(150, "lb"),
  14633. name: "Back",
  14634. image: {
  14635. source: "./media/characters/drusilla/back.svg",
  14636. extra: 678 / 635,
  14637. bottom: 0.005
  14638. }
  14639. },
  14640. },
  14641. [
  14642. {
  14643. name: "Macro",
  14644. height: math.unit(100, "feet")
  14645. },
  14646. {
  14647. name: "Canon Height",
  14648. height: math.unit(2000, "feet"),
  14649. default: true
  14650. },
  14651. ]
  14652. ))
  14653. characterMakers.push(() => makeCharacter(
  14654. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14655. {
  14656. front: {
  14657. height: math.unit(6, "feet"),
  14658. weight: math.unit(180, "lb"),
  14659. name: "Front",
  14660. image: {
  14661. source: "./media/characters/renard-thatch/front.svg",
  14662. extra: 2411 / 2275,
  14663. bottom: 0.01
  14664. }
  14665. },
  14666. frontPosing: {
  14667. height: math.unit(6, "feet"),
  14668. weight: math.unit(180, "lb"),
  14669. name: "Front (Posing)",
  14670. image: {
  14671. source: "./media/characters/renard-thatch/front-posing.svg",
  14672. extra: 2381 / 2261,
  14673. bottom: 0.01
  14674. }
  14675. },
  14676. back: {
  14677. height: math.unit(6, "feet"),
  14678. weight: math.unit(180, "lb"),
  14679. name: "Back",
  14680. image: {
  14681. source: "./media/characters/renard-thatch/back.svg",
  14682. extra: 2428 / 2288
  14683. }
  14684. },
  14685. },
  14686. [
  14687. {
  14688. name: "Micro",
  14689. height: math.unit(3, "inches")
  14690. },
  14691. {
  14692. name: "Default",
  14693. height: math.unit(6, "feet"),
  14694. default: true
  14695. },
  14696. {
  14697. name: "Macro",
  14698. height: math.unit(75, "feet")
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(1450, "feet"),
  14707. weight: math.unit(1.21e6, "tons"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/sekvra/front.svg",
  14711. extra: 1193/1190,
  14712. bottom: 78/1271
  14713. }
  14714. },
  14715. side: {
  14716. height: math.unit(1450, "feet"),
  14717. weight: math.unit(1.21e6, "tons"),
  14718. name: "Side",
  14719. image: {
  14720. source: "./media/characters/sekvra/side.svg",
  14721. extra: 1193/1190,
  14722. bottom: 52/1245
  14723. }
  14724. },
  14725. back: {
  14726. height: math.unit(1450, "feet"),
  14727. weight: math.unit(1.21e6, "tons"),
  14728. name: "Back",
  14729. image: {
  14730. source: "./media/characters/sekvra/back.svg",
  14731. extra: 1219/1216,
  14732. bottom: 21/1240
  14733. }
  14734. },
  14735. frontClothed: {
  14736. height: math.unit(1450, "feet"),
  14737. weight: math.unit(1.21e6, "tons"),
  14738. name: "Front (Clothed)",
  14739. image: {
  14740. source: "./media/characters/sekvra/front-clothed.svg",
  14741. extra: 1192/1189,
  14742. bottom: 79/1271
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Macro",
  14749. height: math.unit(1450, "feet"),
  14750. default: true
  14751. },
  14752. {
  14753. name: "Megamacro",
  14754. height: math.unit(15000, "feet")
  14755. },
  14756. ]
  14757. ))
  14758. characterMakers.push(() => makeCharacter(
  14759. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14760. {
  14761. front: {
  14762. height: math.unit(6, "feet"),
  14763. weight: math.unit(150, "lb"),
  14764. name: "Front",
  14765. image: {
  14766. source: "./media/characters/carmine/front.svg",
  14767. extra: 1,
  14768. bottom: 0.035
  14769. }
  14770. },
  14771. frontArmor: {
  14772. height: math.unit(6, "feet"),
  14773. weight: math.unit(150, "lb"),
  14774. name: "Front (Armor)",
  14775. image: {
  14776. source: "./media/characters/carmine/front-armor.svg",
  14777. extra: 1,
  14778. bottom: 0.035
  14779. }
  14780. },
  14781. },
  14782. [
  14783. {
  14784. name: "Large",
  14785. height: math.unit(1, "mile")
  14786. },
  14787. {
  14788. name: "Huge",
  14789. height: math.unit(40, "miles"),
  14790. default: true
  14791. },
  14792. {
  14793. name: "Colossal",
  14794. height: math.unit(2500, "miles")
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(6, "feet"),
  14803. weight: math.unit(150, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/elyssia/front.svg",
  14807. extra: 2201 / 2035,
  14808. bottom: 0.05
  14809. }
  14810. },
  14811. frontClothed: {
  14812. height: math.unit(6, "feet"),
  14813. weight: math.unit(150, "lb"),
  14814. name: "Front (Clothed)",
  14815. image: {
  14816. source: "./media/characters/elyssia/front-clothed.svg",
  14817. extra: 2201 / 2035,
  14818. bottom: 0.05
  14819. }
  14820. },
  14821. back: {
  14822. height: math.unit(6, "feet"),
  14823. weight: math.unit(150, "lb"),
  14824. name: "Back",
  14825. image: {
  14826. source: "./media/characters/elyssia/back.svg",
  14827. extra: 2201 / 2035,
  14828. bottom: 0.013
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Smaller",
  14835. height: math.unit(150, "feet")
  14836. },
  14837. {
  14838. name: "Standard",
  14839. height: math.unit(1400, "feet"),
  14840. default: true
  14841. },
  14842. {
  14843. name: "Distracted",
  14844. height: math.unit(15000, "feet")
  14845. },
  14846. ]
  14847. ))
  14848. characterMakers.push(() => makeCharacter(
  14849. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14850. {
  14851. front: {
  14852. height: math.unit(7 + 4/12, "feet"),
  14853. weight: math.unit(690, "lb"),
  14854. name: "Front",
  14855. image: {
  14856. source: "./media/characters/geno-maxwell/front.svg",
  14857. extra: 984/856,
  14858. bottom: 87/1071
  14859. }
  14860. },
  14861. back: {
  14862. height: math.unit(7 + 4/12, "feet"),
  14863. weight: math.unit(690, "lb"),
  14864. name: "Back",
  14865. image: {
  14866. source: "./media/characters/geno-maxwell/back.svg",
  14867. extra: 981/854,
  14868. bottom: 57/1038
  14869. }
  14870. },
  14871. frontCostume: {
  14872. height: math.unit(7 + 4/12, "feet"),
  14873. weight: math.unit(690, "lb"),
  14874. name: "Front (Costume)",
  14875. image: {
  14876. source: "./media/characters/geno-maxwell/front-costume.svg",
  14877. extra: 984/856,
  14878. bottom: 87/1071
  14879. }
  14880. },
  14881. backcostume: {
  14882. height: math.unit(7 + 4/12, "feet"),
  14883. weight: math.unit(690, "lb"),
  14884. name: "Back (Costume)",
  14885. image: {
  14886. source: "./media/characters/geno-maxwell/back-costume.svg",
  14887. extra: 981/854,
  14888. bottom: 57/1038
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Micro",
  14895. height: math.unit(3, "inches")
  14896. },
  14897. {
  14898. name: "Normal",
  14899. height: math.unit(7 + 4 / 12, "feet"),
  14900. default: true
  14901. },
  14902. {
  14903. name: "Macro",
  14904. height: math.unit(220, "feet")
  14905. },
  14906. {
  14907. name: "Megamacro",
  14908. height: math.unit(11, "miles")
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(7 + 4/12, "feet"),
  14917. weight: math.unit(750, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/regena-maxwell/front.svg",
  14921. extra: 984/856,
  14922. bottom: 87/1071
  14923. }
  14924. },
  14925. back: {
  14926. height: math.unit(7 + 4/12, "feet"),
  14927. weight: math.unit(750, "lb"),
  14928. name: "Back",
  14929. image: {
  14930. source: "./media/characters/regena-maxwell/back.svg",
  14931. extra: 981/854,
  14932. bottom: 57/1038
  14933. }
  14934. },
  14935. frontCostume: {
  14936. height: math.unit(7 + 4/12, "feet"),
  14937. weight: math.unit(750, "lb"),
  14938. name: "Front (Costume)",
  14939. image: {
  14940. source: "./media/characters/regena-maxwell/front-costume.svg",
  14941. extra: 984/856,
  14942. bottom: 87/1071
  14943. }
  14944. },
  14945. backcostume: {
  14946. height: math.unit(7 + 4/12, "feet"),
  14947. weight: math.unit(750, "lb"),
  14948. name: "Back (Costume)",
  14949. image: {
  14950. source: "./media/characters/regena-maxwell/back-costume.svg",
  14951. extra: 981/854,
  14952. bottom: 57/1038
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Normal",
  14959. height: math.unit(7 + 4 / 12, "feet"),
  14960. default: true
  14961. },
  14962. {
  14963. name: "Macro",
  14964. height: math.unit(220, "feet")
  14965. },
  14966. {
  14967. name: "Megamacro",
  14968. height: math.unit(11, "miles")
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(6, "feet"),
  14977. weight: math.unit(150, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14981. extra: 860 / 690,
  14982. bottom: 0.03
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(1.7, "meters"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14996. {
  14997. front: {
  14998. height: math.unit(6, "feet"),
  14999. weight: math.unit(150, "lb"),
  15000. name: "Front",
  15001. image: {
  15002. source: "./media/characters/quilly/front.svg",
  15003. extra: 890 / 776
  15004. }
  15005. },
  15006. },
  15007. [
  15008. {
  15009. name: "Gigamacro",
  15010. height: math.unit(404090, "miles"),
  15011. default: true
  15012. },
  15013. ]
  15014. ))
  15015. characterMakers.push(() => makeCharacter(
  15016. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15017. {
  15018. front: {
  15019. height: math.unit(7 + 8 / 12, "feet"),
  15020. weight: math.unit(350, "lb"),
  15021. name: "Front",
  15022. image: {
  15023. source: "./media/characters/tempest/front.svg",
  15024. extra: 1175 / 1086,
  15025. bottom: 0.02
  15026. }
  15027. },
  15028. },
  15029. [
  15030. {
  15031. name: "Normal",
  15032. height: math.unit(7 + 8 / 12, "feet"),
  15033. default: true
  15034. },
  15035. ]
  15036. ))
  15037. characterMakers.push(() => makeCharacter(
  15038. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15039. {
  15040. side: {
  15041. height: math.unit(4 + 5 / 12, "feet"),
  15042. weight: math.unit(80, "lb"),
  15043. name: "Side",
  15044. image: {
  15045. source: "./media/characters/rodger/side.svg",
  15046. extra: 1235 / 1118
  15047. }
  15048. },
  15049. },
  15050. [
  15051. {
  15052. name: "Micro",
  15053. height: math.unit(1, "inch")
  15054. },
  15055. {
  15056. name: "Normal",
  15057. height: math.unit(4 + 5 / 12, "feet"),
  15058. default: true
  15059. },
  15060. {
  15061. name: "Macro",
  15062. height: math.unit(120, "feet")
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15068. {
  15069. front: {
  15070. height: math.unit(6, "feet"),
  15071. weight: math.unit(150, "lb"),
  15072. name: "Front",
  15073. image: {
  15074. source: "./media/characters/danyel/front.svg",
  15075. extra: 1185 / 1123,
  15076. bottom: 0.05
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Shrunken",
  15083. height: math.unit(0.5, "mm")
  15084. },
  15085. {
  15086. name: "Micro",
  15087. height: math.unit(1, "mm"),
  15088. default: true
  15089. },
  15090. {
  15091. name: "Upsized",
  15092. height: math.unit(5 + 5 / 12, "feet")
  15093. },
  15094. ]
  15095. ))
  15096. characterMakers.push(() => makeCharacter(
  15097. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15098. {
  15099. front: {
  15100. height: math.unit(5 + 6 / 12, "feet"),
  15101. weight: math.unit(200, "lb"),
  15102. name: "Front",
  15103. image: {
  15104. source: "./media/characters/vivian-bijoux/front.svg",
  15105. extra: 1217/1209,
  15106. bottom: 76/1293
  15107. }
  15108. },
  15109. back: {
  15110. height: math.unit(5 + 6 / 12, "feet"),
  15111. weight: math.unit(200, "lb"),
  15112. name: "Back",
  15113. image: {
  15114. source: "./media/characters/vivian-bijoux/back.svg",
  15115. extra: 1214/1208,
  15116. bottom: 51/1265
  15117. }
  15118. },
  15119. dressed: {
  15120. height: math.unit(5 + 6 / 12, "feet"),
  15121. weight: math.unit(200, "lb"),
  15122. name: "Dressed",
  15123. image: {
  15124. source: "./media/characters/vivian-bijoux/dressed.svg",
  15125. extra: 1217/1209,
  15126. bottom: 76/1293
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(5 + 6 / 12, "feet"),
  15134. default: true
  15135. },
  15136. {
  15137. name: "Bad Dream",
  15138. height: math.unit(500, "feet")
  15139. },
  15140. {
  15141. name: "Nightmare",
  15142. height: math.unit(500, "miles")
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15148. {
  15149. front: {
  15150. height: math.unit(6 + 1 / 12, "feet"),
  15151. weight: math.unit(260, "lb"),
  15152. name: "Front",
  15153. image: {
  15154. source: "./media/characters/zeta/front.svg",
  15155. extra: 1968 / 1889,
  15156. bottom: 0.06
  15157. }
  15158. },
  15159. back: {
  15160. height: math.unit(6 + 1 / 12, "feet"),
  15161. weight: math.unit(260, "lb"),
  15162. name: "Back",
  15163. image: {
  15164. source: "./media/characters/zeta/back.svg",
  15165. extra: 1944 / 1858,
  15166. bottom: 0.03
  15167. }
  15168. },
  15169. hand: {
  15170. height: math.unit(1.112, "feet"),
  15171. name: "Hand",
  15172. image: {
  15173. source: "./media/characters/zeta/hand.svg"
  15174. }
  15175. },
  15176. foot: {
  15177. height: math.unit(1.48, "feet"),
  15178. name: "Foot",
  15179. image: {
  15180. source: "./media/characters/zeta/foot.svg"
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Micro",
  15187. height: math.unit(6, "inches")
  15188. },
  15189. {
  15190. name: "Normal",
  15191. height: math.unit(6 + 1 / 12, "feet"),
  15192. default: true
  15193. },
  15194. {
  15195. name: "Macro",
  15196. height: math.unit(20, "feet")
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(6, "feet"),
  15205. weight: math.unit(150, "lb"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/jamie-larsen/front.svg",
  15209. extra: 962 / 933,
  15210. bottom: 0.02
  15211. }
  15212. },
  15213. back: {
  15214. height: math.unit(6, "feet"),
  15215. weight: math.unit(150, "lb"),
  15216. name: "Back",
  15217. image: {
  15218. source: "./media/characters/jamie-larsen/back.svg",
  15219. extra: 997 / 946
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Macro",
  15226. height: math.unit(28 + 7 / 12, "feet"),
  15227. default: true
  15228. },
  15229. {
  15230. name: "Macro+",
  15231. height: math.unit(180, "feet")
  15232. },
  15233. {
  15234. name: "Megamacro",
  15235. height: math.unit(10, "miles")
  15236. },
  15237. {
  15238. name: "Gigamacro",
  15239. height: math.unit(200000, "miles")
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15245. {
  15246. front: {
  15247. height: math.unit(6, "feet"),
  15248. weight: math.unit(120, "lb"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/vance/front.svg",
  15252. extra: 1980 / 1890,
  15253. bottom: 0.09
  15254. }
  15255. },
  15256. back: {
  15257. height: math.unit(6, "feet"),
  15258. weight: math.unit(120, "lb"),
  15259. name: "Back",
  15260. image: {
  15261. source: "./media/characters/vance/back.svg",
  15262. extra: 2081 / 1994,
  15263. bottom: 0.014
  15264. }
  15265. },
  15266. hand: {
  15267. height: math.unit(0.88, "feet"),
  15268. name: "Hand",
  15269. image: {
  15270. source: "./media/characters/vance/hand.svg"
  15271. }
  15272. },
  15273. foot: {
  15274. height: math.unit(0.64, "feet"),
  15275. name: "Foot",
  15276. image: {
  15277. source: "./media/characters/vance/foot.svg"
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Small",
  15284. height: math.unit(90, "feet"),
  15285. default: true
  15286. },
  15287. {
  15288. name: "Macro",
  15289. height: math.unit(100, "meters")
  15290. },
  15291. {
  15292. name: "Megamacro",
  15293. height: math.unit(15, "miles")
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15299. {
  15300. front: {
  15301. height: math.unit(6, "feet"),
  15302. weight: math.unit(180, "lb"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/xochitl/front.svg",
  15306. extra: 2297 / 2261,
  15307. bottom: 0.065
  15308. }
  15309. },
  15310. back: {
  15311. height: math.unit(6, "feet"),
  15312. weight: math.unit(180, "lb"),
  15313. name: "Back",
  15314. image: {
  15315. source: "./media/characters/xochitl/back.svg",
  15316. extra: 2386 / 2354,
  15317. bottom: 0.01
  15318. }
  15319. },
  15320. foot: {
  15321. height: math.unit(6 / 5 * 1.15, "feet"),
  15322. weight: math.unit(150, "lb"),
  15323. name: "Foot",
  15324. image: {
  15325. source: "./media/characters/xochitl/foot.svg"
  15326. }
  15327. },
  15328. },
  15329. [
  15330. {
  15331. name: "Macro",
  15332. height: math.unit(80, "feet")
  15333. },
  15334. {
  15335. name: "Macro+",
  15336. height: math.unit(400, "feet"),
  15337. default: true
  15338. },
  15339. {
  15340. name: "Gigamacro",
  15341. height: math.unit(80000, "miles")
  15342. },
  15343. {
  15344. name: "Gigamacro+",
  15345. height: math.unit(400000, "miles")
  15346. },
  15347. {
  15348. name: "Teramacro",
  15349. height: math.unit(300, "AU")
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(6, "feet"),
  15358. weight: math.unit(150, "lb"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/vincent/front.svg",
  15362. extra: 1130 / 1080,
  15363. bottom: 0.055
  15364. }
  15365. },
  15366. beak: {
  15367. height: math.unit(6 * 0.1, "feet"),
  15368. name: "Beak",
  15369. image: {
  15370. source: "./media/characters/vincent/beak.svg"
  15371. }
  15372. },
  15373. hand: {
  15374. height: math.unit(6 * 0.85, "feet"),
  15375. weight: math.unit(150, "lb"),
  15376. name: "Hand",
  15377. image: {
  15378. source: "./media/characters/vincent/hand.svg"
  15379. }
  15380. },
  15381. foot: {
  15382. height: math.unit(6 * 0.19, "feet"),
  15383. weight: math.unit(150, "lb"),
  15384. name: "Foot",
  15385. image: {
  15386. source: "./media/characters/vincent/foot.svg"
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Base",
  15393. height: math.unit(6 + 5 / 12, "feet"),
  15394. default: true
  15395. },
  15396. {
  15397. name: "Macro",
  15398. height: math.unit(300, "feet")
  15399. },
  15400. {
  15401. name: "Megamacro",
  15402. height: math.unit(2, "miles")
  15403. },
  15404. {
  15405. name: "Gigamacro",
  15406. height: math.unit(1000, "miles")
  15407. },
  15408. ]
  15409. ))
  15410. characterMakers.push(() => makeCharacter(
  15411. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15412. {
  15413. front: {
  15414. height: math.unit(2, "meters"),
  15415. weight: math.unit(500, "kg"),
  15416. name: "Front",
  15417. image: {
  15418. source: "./media/characters/coatl/front.svg",
  15419. extra: 3948 / 3500,
  15420. bottom: 0.082
  15421. }
  15422. },
  15423. },
  15424. [
  15425. {
  15426. name: "Normal",
  15427. height: math.unit(4, "meters")
  15428. },
  15429. {
  15430. name: "Macro",
  15431. height: math.unit(100, "meters"),
  15432. default: true
  15433. },
  15434. {
  15435. name: "Macro+",
  15436. height: math.unit(300, "meters")
  15437. },
  15438. {
  15439. name: "Megamacro",
  15440. height: math.unit(3, "gigameters")
  15441. },
  15442. {
  15443. name: "Megamacro+",
  15444. height: math.unit(300, "terameters")
  15445. },
  15446. {
  15447. name: "Megamacro++",
  15448. height: math.unit(3, "lightyears")
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(6, "feet"),
  15457. weight: math.unit(50, "kg"),
  15458. name: "front",
  15459. image: {
  15460. source: "./media/characters/shiroryu/front.svg",
  15461. extra: 1990 / 1935
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Mortal Mingling",
  15468. height: math.unit(3, "meters")
  15469. },
  15470. {
  15471. name: "Kaiju-ish",
  15472. height: math.unit(250, "meters")
  15473. },
  15474. {
  15475. name: "Somewhat Godly",
  15476. height: math.unit(400, "km"),
  15477. default: true
  15478. },
  15479. {
  15480. name: "Planetary",
  15481. height: math.unit(300, "megameters")
  15482. },
  15483. {
  15484. name: "Galaxy-dwarfing",
  15485. height: math.unit(450, "kiloparsecs")
  15486. },
  15487. {
  15488. name: "Universe Eater",
  15489. height: math.unit(150, "gigaparsecs")
  15490. },
  15491. {
  15492. name: "Almost Immeasurable",
  15493. height: math.unit(1.3e266, "yottaparsecs")
  15494. },
  15495. ]
  15496. ))
  15497. characterMakers.push(() => makeCharacter(
  15498. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15499. {
  15500. front: {
  15501. height: math.unit(6, "feet"),
  15502. weight: math.unit(150, "lb"),
  15503. name: "Front",
  15504. image: {
  15505. source: "./media/characters/umeko/front.svg",
  15506. extra: 1,
  15507. bottom: 0.019
  15508. }
  15509. },
  15510. frontArmored: {
  15511. height: math.unit(6, "feet"),
  15512. weight: math.unit(150, "lb"),
  15513. name: "Front (Armored)",
  15514. image: {
  15515. source: "./media/characters/umeko/front-armored.svg",
  15516. extra: 1,
  15517. bottom: 0.021
  15518. }
  15519. },
  15520. },
  15521. [
  15522. {
  15523. name: "Macro",
  15524. height: math.unit(220, "feet"),
  15525. default: true
  15526. },
  15527. {
  15528. name: "Guardian Dragon",
  15529. height: math.unit(50, "miles")
  15530. },
  15531. {
  15532. name: "Cosmic",
  15533. height: math.unit(800000, "miles")
  15534. },
  15535. ]
  15536. ))
  15537. characterMakers.push(() => makeCharacter(
  15538. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15539. {
  15540. front: {
  15541. height: math.unit(6, "feet"),
  15542. weight: math.unit(150, "lb"),
  15543. name: "Front",
  15544. image: {
  15545. source: "./media/characters/cassidy/front.svg",
  15546. extra: 810/808,
  15547. bottom: 41/851
  15548. }
  15549. },
  15550. },
  15551. [
  15552. {
  15553. name: "Canon Height",
  15554. height: math.unit(120, "feet"),
  15555. default: true
  15556. },
  15557. {
  15558. name: "Macro+",
  15559. height: math.unit(400, "feet")
  15560. },
  15561. {
  15562. name: "Macro++",
  15563. height: math.unit(4000, "feet")
  15564. },
  15565. {
  15566. name: "Megamacro",
  15567. height: math.unit(3, "miles")
  15568. },
  15569. ]
  15570. ))
  15571. characterMakers.push(() => makeCharacter(
  15572. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15573. {
  15574. front: {
  15575. height: math.unit(6, "feet"),
  15576. weight: math.unit(150, "lb"),
  15577. name: "Front",
  15578. image: {
  15579. source: "./media/characters/isaac/front.svg",
  15580. extra: 896 / 815,
  15581. bottom: 0.11
  15582. }
  15583. },
  15584. },
  15585. [
  15586. {
  15587. name: "Human Size",
  15588. height: math.unit(8, "feet"),
  15589. default: true
  15590. },
  15591. {
  15592. name: "Macro",
  15593. height: math.unit(400, "feet")
  15594. },
  15595. {
  15596. name: "Megamacro",
  15597. height: math.unit(50, "miles")
  15598. },
  15599. {
  15600. name: "Canon Height",
  15601. height: math.unit(200, "AU")
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15607. {
  15608. front: {
  15609. height: math.unit(6, "feet"),
  15610. weight: math.unit(72, "kg"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/sleekit/front.svg",
  15614. extra: 4693 / 4487,
  15615. bottom: 0.012
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Minimum Height",
  15622. height: math.unit(10, "meters")
  15623. },
  15624. {
  15625. name: "Smaller",
  15626. height: math.unit(25, "meters")
  15627. },
  15628. {
  15629. name: "Larger",
  15630. height: math.unit(38, "meters"),
  15631. default: true
  15632. },
  15633. {
  15634. name: "Maximum height",
  15635. height: math.unit(100, "meters")
  15636. },
  15637. ]
  15638. ))
  15639. characterMakers.push(() => makeCharacter(
  15640. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15641. {
  15642. front: {
  15643. height: math.unit(6, "feet"),
  15644. weight: math.unit(150, "lb"),
  15645. name: "Front",
  15646. image: {
  15647. source: "./media/characters/nillia/front.svg",
  15648. extra: 2195 / 2037,
  15649. bottom: 0.005
  15650. }
  15651. },
  15652. back: {
  15653. height: math.unit(6, "feet"),
  15654. weight: math.unit(150, "lb"),
  15655. name: "Back",
  15656. image: {
  15657. source: "./media/characters/nillia/back.svg",
  15658. extra: 2195 / 2037,
  15659. bottom: 0.005
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Canon Height",
  15666. height: math.unit(489, "feet"),
  15667. default: true
  15668. }
  15669. ]
  15670. ))
  15671. characterMakers.push(() => makeCharacter(
  15672. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15673. {
  15674. front: {
  15675. height: math.unit(6, "feet"),
  15676. weight: math.unit(150, "lb"),
  15677. name: "Front",
  15678. image: {
  15679. source: "./media/characters/mesmyriza/front.svg",
  15680. extra: 2067 / 1784,
  15681. bottom: 0.035
  15682. }
  15683. },
  15684. foot: {
  15685. height: math.unit(6 / (250 / 35), "feet"),
  15686. name: "Foot",
  15687. image: {
  15688. source: "./media/characters/mesmyriza/foot.svg"
  15689. }
  15690. },
  15691. },
  15692. [
  15693. {
  15694. name: "Macro",
  15695. height: math.unit(457, "meters"),
  15696. default: true
  15697. },
  15698. {
  15699. name: "Megamacro",
  15700. height: math.unit(8, "megameters")
  15701. },
  15702. ]
  15703. ))
  15704. characterMakers.push(() => makeCharacter(
  15705. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15706. {
  15707. front: {
  15708. height: math.unit(6, "feet"),
  15709. weight: math.unit(250, "lb"),
  15710. name: "Front",
  15711. image: {
  15712. source: "./media/characters/saudade/front.svg",
  15713. extra: 1172 / 1139,
  15714. bottom: 0.035
  15715. }
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Micro",
  15721. height: math.unit(3, "inches")
  15722. },
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(6, "feet"),
  15726. default: true
  15727. },
  15728. {
  15729. name: "Macro",
  15730. height: math.unit(50, "feet")
  15731. },
  15732. {
  15733. name: "Megamacro",
  15734. height: math.unit(2800, "feet")
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15740. {
  15741. front: {
  15742. height: math.unit(5 + 4 / 12, "feet"),
  15743. weight: math.unit(100, "lb"),
  15744. name: "Front",
  15745. image: {
  15746. source: "./media/characters/keireer/front.svg",
  15747. extra: 716 / 666,
  15748. bottom: 0.05
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Normal",
  15755. height: math.unit(5 + 4 / 12, "feet"),
  15756. default: true
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15762. {
  15763. front: {
  15764. height: math.unit(5.5, "feet"),
  15765. weight: math.unit(90, "kg"),
  15766. name: "Front",
  15767. image: {
  15768. source: "./media/characters/mirja/front.svg",
  15769. extra: 1452/1262,
  15770. bottom: 67/1519
  15771. }
  15772. },
  15773. frontDressed: {
  15774. height: math.unit(5.5, "feet"),
  15775. weight: math.unit(90, "lb"),
  15776. name: "Front (Dressed)",
  15777. image: {
  15778. source: "./media/characters/mirja/dressed.svg",
  15779. extra: 1452/1262,
  15780. bottom: 67/1519
  15781. }
  15782. },
  15783. back: {
  15784. height: math.unit(6, "feet"),
  15785. weight: math.unit(90, "lb"),
  15786. name: "Back",
  15787. image: {
  15788. source: "./media/characters/mirja/back.svg",
  15789. extra: 1892/1795,
  15790. bottom: 48/1940
  15791. }
  15792. },
  15793. maw: {
  15794. height: math.unit(1.312, "feet"),
  15795. name: "Maw",
  15796. image: {
  15797. source: "./media/characters/mirja/maw.svg"
  15798. }
  15799. },
  15800. paw: {
  15801. height: math.unit(1.15, "feet"),
  15802. name: "Paw",
  15803. image: {
  15804. source: "./media/characters/mirja/paw.svg"
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "\"Incognito\"",
  15811. height: math.unit(3, "meters")
  15812. },
  15813. {
  15814. name: "Strolling Size",
  15815. height: math.unit(15, "km")
  15816. },
  15817. {
  15818. name: "Larger Strolling Size",
  15819. height: math.unit(400, "km")
  15820. },
  15821. {
  15822. name: "Preferred Size",
  15823. height: math.unit(5000, "km"),
  15824. default: true
  15825. },
  15826. {
  15827. name: "True Size",
  15828. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15829. },
  15830. ]
  15831. ))
  15832. characterMakers.push(() => makeCharacter(
  15833. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15834. {
  15835. front: {
  15836. height: math.unit(15, "feet"),
  15837. weight: math.unit(880, "kg"),
  15838. name: "Front",
  15839. image: {
  15840. source: "./media/characters/nightraver/front.svg",
  15841. extra: 2444 / 2160,
  15842. bottom: 0.027
  15843. }
  15844. },
  15845. back: {
  15846. height: math.unit(15, "feet"),
  15847. weight: math.unit(880, "kg"),
  15848. name: "Back",
  15849. image: {
  15850. source: "./media/characters/nightraver/back.svg",
  15851. extra: 2309 / 2180,
  15852. bottom: 0.005
  15853. }
  15854. },
  15855. sole: {
  15856. height: math.unit(2.878, "feet"),
  15857. name: "Sole",
  15858. image: {
  15859. source: "./media/characters/nightraver/sole.svg"
  15860. }
  15861. },
  15862. foot: {
  15863. height: math.unit(2.285, "feet"),
  15864. name: "Foot",
  15865. image: {
  15866. source: "./media/characters/nightraver/foot.svg"
  15867. }
  15868. },
  15869. maw: {
  15870. height: math.unit(2.67, "feet"),
  15871. name: "Maw",
  15872. image: {
  15873. source: "./media/characters/nightraver/maw.svg"
  15874. }
  15875. },
  15876. },
  15877. [
  15878. {
  15879. name: "Micro",
  15880. height: math.unit(1, "cm")
  15881. },
  15882. {
  15883. name: "Normal",
  15884. height: math.unit(15, "feet"),
  15885. default: true
  15886. },
  15887. {
  15888. name: "Macro",
  15889. height: math.unit(300, "feet")
  15890. },
  15891. {
  15892. name: "Megamacro",
  15893. height: math.unit(300, "miles")
  15894. },
  15895. {
  15896. name: "Gigamacro",
  15897. height: math.unit(10000, "miles")
  15898. },
  15899. ]
  15900. ))
  15901. characterMakers.push(() => makeCharacter(
  15902. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15903. {
  15904. side: {
  15905. height: math.unit(2, "inches"),
  15906. weight: math.unit(5, "grams"),
  15907. name: "Side",
  15908. image: {
  15909. source: "./media/characters/arc/side.svg"
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Micro",
  15916. height: math.unit(2, "inches"),
  15917. default: true
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15923. {
  15924. front: {
  15925. height: math.unit(1.1938, "meters"),
  15926. weight: math.unit(54, "kg"),
  15927. name: "Front",
  15928. image: {
  15929. source: "./media/characters/nebula-shahar/front.svg",
  15930. extra: 1642 / 1436,
  15931. bottom: 0.06
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Megamicro",
  15938. height: math.unit(0.3, "mm")
  15939. },
  15940. {
  15941. name: "Micro",
  15942. height: math.unit(3, "cm")
  15943. },
  15944. {
  15945. name: "Normal",
  15946. height: math.unit(138, "cm"),
  15947. default: true
  15948. },
  15949. {
  15950. name: "Macro",
  15951. height: math.unit(30, "m")
  15952. },
  15953. ]
  15954. ))
  15955. characterMakers.push(() => makeCharacter(
  15956. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15957. {
  15958. front: {
  15959. height: math.unit(5.24, "feet"),
  15960. weight: math.unit(150, "lb"),
  15961. name: "Front",
  15962. image: {
  15963. source: "./media/characters/shayla/front.svg",
  15964. extra: 1512 / 1414,
  15965. bottom: 0.01
  15966. }
  15967. },
  15968. back: {
  15969. height: math.unit(5.24, "feet"),
  15970. weight: math.unit(150, "lb"),
  15971. name: "Back",
  15972. image: {
  15973. source: "./media/characters/shayla/back.svg",
  15974. extra: 1512 / 1414
  15975. }
  15976. },
  15977. hand: {
  15978. height: math.unit(0.7781496062992126, "feet"),
  15979. name: "Hand",
  15980. image: {
  15981. source: "./media/characters/shayla/hand.svg"
  15982. }
  15983. },
  15984. foot: {
  15985. height: math.unit(1.4206036745406823, "feet"),
  15986. name: "Foot",
  15987. image: {
  15988. source: "./media/characters/shayla/foot.svg"
  15989. }
  15990. },
  15991. },
  15992. [
  15993. {
  15994. name: "Micro",
  15995. height: math.unit(0.32, "feet")
  15996. },
  15997. {
  15998. name: "Normal",
  15999. height: math.unit(5.24, "feet"),
  16000. default: true
  16001. },
  16002. {
  16003. name: "Macro",
  16004. height: math.unit(492.12, "feet")
  16005. },
  16006. {
  16007. name: "Megamacro",
  16008. height: math.unit(186.41, "miles")
  16009. },
  16010. ]
  16011. ))
  16012. characterMakers.push(() => makeCharacter(
  16013. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16014. {
  16015. front: {
  16016. height: math.unit(2.2, "m"),
  16017. weight: math.unit(120, "kg"),
  16018. name: "Front",
  16019. image: {
  16020. source: "./media/characters/pia-jr/front.svg",
  16021. extra: 1000 / 970,
  16022. bottom: 0.035
  16023. }
  16024. },
  16025. hand: {
  16026. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16027. name: "Hand",
  16028. image: {
  16029. source: "./media/characters/pia-jr/hand.svg"
  16030. }
  16031. },
  16032. paw: {
  16033. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16034. name: "Paw",
  16035. image: {
  16036. source: "./media/characters/pia-jr/paw.svg"
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Micro",
  16043. height: math.unit(1.2, "cm")
  16044. },
  16045. {
  16046. name: "Normal",
  16047. height: math.unit(2.2, "m"),
  16048. default: true
  16049. },
  16050. {
  16051. name: "Macro",
  16052. height: math.unit(180, "m")
  16053. },
  16054. {
  16055. name: "Megamacro",
  16056. height: math.unit(420, "km")
  16057. },
  16058. ]
  16059. ))
  16060. characterMakers.push(() => makeCharacter(
  16061. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16062. {
  16063. front: {
  16064. height: math.unit(2, "m"),
  16065. weight: math.unit(115, "kg"),
  16066. name: "Front",
  16067. image: {
  16068. source: "./media/characters/pia-sr/front.svg",
  16069. extra: 760 / 730,
  16070. bottom: 0.015
  16071. }
  16072. },
  16073. back: {
  16074. height: math.unit(2, "m"),
  16075. weight: math.unit(115, "kg"),
  16076. name: "Back",
  16077. image: {
  16078. source: "./media/characters/pia-sr/back.svg",
  16079. extra: 760 / 730,
  16080. bottom: 0.01
  16081. }
  16082. },
  16083. hand: {
  16084. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16085. name: "Hand",
  16086. image: {
  16087. source: "./media/characters/pia-sr/hand.svg"
  16088. }
  16089. },
  16090. foot: {
  16091. height: math.unit(1.83, "feet"),
  16092. name: "Foot",
  16093. image: {
  16094. source: "./media/characters/pia-sr/foot.svg"
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Micro",
  16101. height: math.unit(88, "mm")
  16102. },
  16103. {
  16104. name: "Normal",
  16105. height: math.unit(2, "m"),
  16106. default: true
  16107. },
  16108. {
  16109. name: "Macro",
  16110. height: math.unit(200, "m")
  16111. },
  16112. {
  16113. name: "Megamacro",
  16114. height: math.unit(420, "km")
  16115. },
  16116. ]
  16117. ))
  16118. characterMakers.push(() => makeCharacter(
  16119. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16120. {
  16121. front: {
  16122. height: math.unit(8 + 2 / 12, "feet"),
  16123. weight: math.unit(300, "lb"),
  16124. name: "Front",
  16125. image: {
  16126. source: "./media/characters/kibibyte/front.svg",
  16127. extra: 2221 / 2098,
  16128. bottom: 0.04
  16129. }
  16130. },
  16131. },
  16132. [
  16133. {
  16134. name: "Normal",
  16135. height: math.unit(8 + 2 / 12, "feet"),
  16136. default: true
  16137. },
  16138. {
  16139. name: "Socialable Macro",
  16140. height: math.unit(50, "feet")
  16141. },
  16142. {
  16143. name: "Macro",
  16144. height: math.unit(300, "feet")
  16145. },
  16146. {
  16147. name: "Megamacro",
  16148. height: math.unit(500, "miles")
  16149. },
  16150. ]
  16151. ))
  16152. characterMakers.push(() => makeCharacter(
  16153. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16154. {
  16155. front: {
  16156. height: math.unit(6, "feet"),
  16157. weight: math.unit(150, "lb"),
  16158. name: "Front",
  16159. image: {
  16160. source: "./media/characters/felix/front.svg",
  16161. extra: 762 / 722,
  16162. bottom: 0.02
  16163. }
  16164. },
  16165. frontClothed: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(150, "lb"),
  16168. name: "Front (Clothed)",
  16169. image: {
  16170. source: "./media/characters/felix/front-clothed.svg",
  16171. extra: 762 / 722,
  16172. bottom: 0.02
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(6 + 8 / 12, "feet"),
  16180. default: true
  16181. },
  16182. {
  16183. name: "Macro",
  16184. height: math.unit(2600, "feet")
  16185. },
  16186. {
  16187. name: "Megamacro",
  16188. height: math.unit(450, "miles")
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(6 + 1 / 12, "feet"),
  16197. weight: math.unit(250, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/tobo/front.svg",
  16201. extra: 608 / 586,
  16202. bottom: 0.023
  16203. }
  16204. },
  16205. back: {
  16206. height: math.unit(6 + 1 / 12, "feet"),
  16207. weight: math.unit(250, "lb"),
  16208. name: "Back",
  16209. image: {
  16210. source: "./media/characters/tobo/back.svg",
  16211. extra: 608 / 586
  16212. }
  16213. },
  16214. },
  16215. [
  16216. {
  16217. name: "Nano",
  16218. height: math.unit(2, "nm")
  16219. },
  16220. {
  16221. name: "Megamicro",
  16222. height: math.unit(0.1, "mm")
  16223. },
  16224. {
  16225. name: "Micro",
  16226. height: math.unit(1, "inch"),
  16227. default: true
  16228. },
  16229. {
  16230. name: "Human-sized",
  16231. height: math.unit(6 + 1 / 12, "feet")
  16232. },
  16233. {
  16234. name: "Macro",
  16235. height: math.unit(250, "feet")
  16236. },
  16237. {
  16238. name: "Megamacro",
  16239. height: math.unit(75, "miles")
  16240. },
  16241. {
  16242. name: "Texas-sized",
  16243. height: math.unit(750, "miles")
  16244. },
  16245. {
  16246. name: "Teramacro",
  16247. height: math.unit(50000, "miles")
  16248. },
  16249. ]
  16250. ))
  16251. characterMakers.push(() => makeCharacter(
  16252. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16253. {
  16254. front: {
  16255. height: math.unit(6, "feet"),
  16256. weight: math.unit(269, "lb"),
  16257. name: "Front",
  16258. image: {
  16259. source: "./media/characters/danny-kapowsky/front.svg",
  16260. extra: 766 / 736,
  16261. bottom: 0.044
  16262. }
  16263. },
  16264. back: {
  16265. height: math.unit(6, "feet"),
  16266. weight: math.unit(269, "lb"),
  16267. name: "Back",
  16268. image: {
  16269. source: "./media/characters/danny-kapowsky/back.svg",
  16270. extra: 797 / 760,
  16271. bottom: 0.025
  16272. }
  16273. },
  16274. },
  16275. [
  16276. {
  16277. name: "Macro",
  16278. height: math.unit(150, "feet"),
  16279. default: true
  16280. },
  16281. {
  16282. name: "Macro+",
  16283. height: math.unit(200, "feet")
  16284. },
  16285. {
  16286. name: "Macro++",
  16287. height: math.unit(300, "feet")
  16288. },
  16289. {
  16290. name: "Macro+++",
  16291. height: math.unit(400, "feet")
  16292. },
  16293. ]
  16294. ))
  16295. characterMakers.push(() => makeCharacter(
  16296. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16297. {
  16298. side: {
  16299. height: math.unit(6, "feet"),
  16300. weight: math.unit(170, "lb"),
  16301. name: "Side",
  16302. image: {
  16303. source: "./media/characters/finn/side.svg",
  16304. extra: 1953 / 1807,
  16305. bottom: 0.057
  16306. }
  16307. },
  16308. },
  16309. [
  16310. {
  16311. name: "Megamacro",
  16312. height: math.unit(14445, "feet"),
  16313. default: true
  16314. },
  16315. ]
  16316. ))
  16317. characterMakers.push(() => makeCharacter(
  16318. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16319. {
  16320. front: {
  16321. height: math.unit(5 + 6 / 12, "feet"),
  16322. weight: math.unit(125, "lb"),
  16323. name: "Front",
  16324. image: {
  16325. source: "./media/characters/roy/front.svg",
  16326. extra: 1,
  16327. bottom: 0.11
  16328. }
  16329. },
  16330. },
  16331. [
  16332. {
  16333. name: "Micro",
  16334. height: math.unit(3, "inches"),
  16335. default: true
  16336. },
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(5 + 6 / 12, "feet")
  16340. },
  16341. {
  16342. name: "Lesser Macro",
  16343. height: math.unit(60, "feet")
  16344. },
  16345. {
  16346. name: "Greater Macro",
  16347. height: math.unit(120, "feet")
  16348. },
  16349. ]
  16350. ))
  16351. characterMakers.push(() => makeCharacter(
  16352. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16353. {
  16354. front: {
  16355. height: math.unit(6, "feet"),
  16356. weight: math.unit(100, "lb"),
  16357. name: "Front",
  16358. image: {
  16359. source: "./media/characters/aevsivs/front.svg",
  16360. extra: 1,
  16361. bottom: 0.03
  16362. }
  16363. },
  16364. back: {
  16365. height: math.unit(6, "feet"),
  16366. weight: math.unit(100, "lb"),
  16367. name: "Back",
  16368. image: {
  16369. source: "./media/characters/aevsivs/back.svg"
  16370. }
  16371. },
  16372. },
  16373. [
  16374. {
  16375. name: "Micro",
  16376. height: math.unit(2, "inches"),
  16377. default: true
  16378. },
  16379. {
  16380. name: "Normal",
  16381. height: math.unit(5, "feet")
  16382. },
  16383. ]
  16384. ))
  16385. characterMakers.push(() => makeCharacter(
  16386. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16387. {
  16388. front: {
  16389. height: math.unit(5 + 7 / 12, "feet"),
  16390. weight: math.unit(159, "lb"),
  16391. name: "Front",
  16392. image: {
  16393. source: "./media/characters/hildegard/front.svg",
  16394. extra: 289 / 269,
  16395. bottom: 7.63 / 297.8
  16396. }
  16397. },
  16398. back: {
  16399. height: math.unit(5 + 7 / 12, "feet"),
  16400. weight: math.unit(159, "lb"),
  16401. name: "Back",
  16402. image: {
  16403. source: "./media/characters/hildegard/back.svg",
  16404. extra: 280 / 260,
  16405. bottom: 2.3 / 282
  16406. }
  16407. },
  16408. },
  16409. [
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(5 + 7 / 12, "feet"),
  16413. default: true
  16414. },
  16415. ]
  16416. ))
  16417. characterMakers.push(() => makeCharacter(
  16418. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16419. {
  16420. bernard: {
  16421. height: math.unit(2 + 7 / 12, "feet"),
  16422. weight: math.unit(66, "lb"),
  16423. name: "Bernard",
  16424. rename: true,
  16425. image: {
  16426. source: "./media/characters/bernard-wilder/bernard.svg",
  16427. extra: 192 / 128,
  16428. bottom: 0.05
  16429. }
  16430. },
  16431. wilder: {
  16432. height: math.unit(5 + 8 / 12, "feet"),
  16433. weight: math.unit(143, "lb"),
  16434. name: "Wilder",
  16435. rename: true,
  16436. image: {
  16437. source: "./media/characters/bernard-wilder/wilder.svg",
  16438. extra: 361 / 312,
  16439. bottom: 0.02
  16440. }
  16441. },
  16442. },
  16443. [
  16444. {
  16445. name: "Normal",
  16446. height: math.unit(2 + 7 / 12, "feet"),
  16447. default: true
  16448. },
  16449. ]
  16450. ))
  16451. characterMakers.push(() => makeCharacter(
  16452. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16453. {
  16454. anthro: {
  16455. height: math.unit(6 + 1 / 12, "feet"),
  16456. weight: math.unit(155, "lb"),
  16457. name: "Anthro",
  16458. image: {
  16459. source: "./media/characters/hearth/anthro.svg",
  16460. extra: 1178/1136,
  16461. bottom: 28/1206
  16462. }
  16463. },
  16464. feral: {
  16465. height: math.unit(3.78, "feet"),
  16466. weight: math.unit(35, "kg"),
  16467. name: "Feral",
  16468. image: {
  16469. source: "./media/characters/hearth/feral.svg",
  16470. extra: 153 / 135,
  16471. bottom: 0.03
  16472. }
  16473. },
  16474. },
  16475. [
  16476. {
  16477. name: "Normal",
  16478. height: math.unit(6 + 1 / 12, "feet"),
  16479. default: true
  16480. },
  16481. ]
  16482. ))
  16483. characterMakers.push(() => makeCharacter(
  16484. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16485. {
  16486. front: {
  16487. height: math.unit(6, "feet"),
  16488. weight: math.unit(182, "lb"),
  16489. name: "Front",
  16490. image: {
  16491. source: "./media/characters/ingrid/front.svg",
  16492. extra: 294 / 268,
  16493. bottom: 0.027
  16494. }
  16495. },
  16496. },
  16497. [
  16498. {
  16499. name: "Normal",
  16500. height: math.unit(6, "feet"),
  16501. default: true
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16507. {
  16508. eevee: {
  16509. height: math.unit(2 + 10 / 12, "feet"),
  16510. weight: math.unit(86, "lb"),
  16511. name: "Malgam",
  16512. image: {
  16513. source: "./media/characters/malgam/eevee.svg",
  16514. extra: 952/784,
  16515. bottom: 38/990
  16516. }
  16517. },
  16518. sylveon: {
  16519. height: math.unit(4, "feet"),
  16520. weight: math.unit(101, "lb"),
  16521. name: "Future Malgam",
  16522. rename: true,
  16523. image: {
  16524. source: "./media/characters/malgam/sylveon.svg",
  16525. extra: 371 / 325,
  16526. bottom: 0.015
  16527. }
  16528. },
  16529. gigantamax: {
  16530. height: math.unit(50, "feet"),
  16531. name: "Gigantamax Malgam",
  16532. rename: true,
  16533. image: {
  16534. source: "./media/characters/malgam/gigantamax.svg"
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(2 + 10 / 12, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(5 + 11 / 12, "feet"),
  16551. weight: math.unit(188, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/fleur/front.svg",
  16555. extra: 309 / 283,
  16556. bottom: 0.007
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(5 + 11 / 12, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16570. {
  16571. front: {
  16572. height: math.unit(5 + 4 / 12, "feet"),
  16573. weight: math.unit(122, "lb"),
  16574. name: "Front",
  16575. image: {
  16576. source: "./media/characters/jude/front.svg",
  16577. extra: 288 / 273,
  16578. bottom: 0.03
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(5 + 4 / 12, "feet"),
  16586. default: true
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16592. {
  16593. front: {
  16594. height: math.unit(5 + 11 / 12, "feet"),
  16595. weight: math.unit(190, "lb"),
  16596. name: "Front",
  16597. image: {
  16598. source: "./media/characters/seara/front.svg",
  16599. extra: 1,
  16600. bottom: 0.05
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Normal",
  16607. height: math.unit(5 + 11 / 12, "feet"),
  16608. default: true
  16609. },
  16610. ]
  16611. ))
  16612. characterMakers.push(() => makeCharacter(
  16613. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16614. {
  16615. front: {
  16616. height: math.unit(16 + 5 / 12, "feet"),
  16617. weight: math.unit(524, "lb"),
  16618. name: "Front",
  16619. image: {
  16620. source: "./media/characters/caspian-lugia/front.svg",
  16621. extra: 1,
  16622. bottom: 0.04
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(16 + 5 / 12, "feet"),
  16630. default: true
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16636. {
  16637. front: {
  16638. height: math.unit(5 + 7 / 12, "feet"),
  16639. weight: math.unit(170, "lb"),
  16640. name: "Front",
  16641. image: {
  16642. source: "./media/characters/mika/front.svg",
  16643. extra: 1,
  16644. bottom: 0.016
  16645. }
  16646. },
  16647. },
  16648. [
  16649. {
  16650. name: "Normal",
  16651. height: math.unit(5 + 7 / 12, "feet"),
  16652. default: true
  16653. },
  16654. ]
  16655. ))
  16656. characterMakers.push(() => makeCharacter(
  16657. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16658. {
  16659. front: {
  16660. height: math.unit(6 + 2 / 12, "feet"),
  16661. weight: math.unit(268, "lb"),
  16662. name: "Front",
  16663. image: {
  16664. source: "./media/characters/sol/front.svg",
  16665. extra: 247 / 231,
  16666. bottom: 0.05
  16667. }
  16668. },
  16669. },
  16670. [
  16671. {
  16672. name: "Normal",
  16673. height: math.unit(6 + 2 / 12, "feet"),
  16674. default: true
  16675. },
  16676. ]
  16677. ))
  16678. characterMakers.push(() => makeCharacter(
  16679. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16680. {
  16681. buizel: {
  16682. height: math.unit(2 + 5 / 12, "feet"),
  16683. weight: math.unit(87, "lb"),
  16684. name: "Front",
  16685. image: {
  16686. source: "./media/characters/umiko/buizel.svg",
  16687. extra: 172 / 157,
  16688. bottom: 0.01
  16689. },
  16690. form: "buizel",
  16691. default: true
  16692. },
  16693. floatzel: {
  16694. height: math.unit(5 + 9 / 12, "feet"),
  16695. weight: math.unit(250, "lb"),
  16696. name: "Front",
  16697. image: {
  16698. source: "./media/characters/umiko/floatzel.svg",
  16699. extra: 1076/1006,
  16700. bottom: 15/1091
  16701. },
  16702. form: "floatzel",
  16703. default: true
  16704. },
  16705. },
  16706. [
  16707. {
  16708. name: "Normal",
  16709. height: math.unit(2 + 5 / 12, "feet"),
  16710. form: "buizel",
  16711. default: true
  16712. },
  16713. {
  16714. name: "Normal",
  16715. height: math.unit(5 + 9 / 12, "feet"),
  16716. form: "floatzel",
  16717. default: true
  16718. },
  16719. ],
  16720. {
  16721. "buizel": {
  16722. name: "Buizel"
  16723. },
  16724. "floatzel": {
  16725. name: "Floatzel",
  16726. default: true
  16727. }
  16728. }
  16729. ))
  16730. characterMakers.push(() => makeCharacter(
  16731. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16732. {
  16733. front: {
  16734. height: math.unit(6 + 2 / 12, "feet"),
  16735. weight: math.unit(146, "lb"),
  16736. name: "Front",
  16737. image: {
  16738. source: "./media/characters/iliac/front.svg",
  16739. extra: 389 / 365,
  16740. bottom: 0.035
  16741. }
  16742. },
  16743. },
  16744. [
  16745. {
  16746. name: "Normal",
  16747. height: math.unit(6 + 2 / 12, "feet"),
  16748. default: true
  16749. },
  16750. ]
  16751. ))
  16752. characterMakers.push(() => makeCharacter(
  16753. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16754. {
  16755. front: {
  16756. height: math.unit(6, "feet"),
  16757. weight: math.unit(170, "lb"),
  16758. name: "Front",
  16759. image: {
  16760. source: "./media/characters/topaz/front.svg",
  16761. extra: 317 / 303,
  16762. bottom: 0.055
  16763. }
  16764. },
  16765. },
  16766. [
  16767. {
  16768. name: "Normal",
  16769. height: math.unit(6, "feet"),
  16770. default: true
  16771. },
  16772. ]
  16773. ))
  16774. characterMakers.push(() => makeCharacter(
  16775. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16776. {
  16777. front: {
  16778. height: math.unit(5 + 11 / 12, "feet"),
  16779. weight: math.unit(144, "lb"),
  16780. name: "Front",
  16781. image: {
  16782. source: "./media/characters/gabriel/front.svg",
  16783. extra: 285 / 262,
  16784. bottom: 0.004
  16785. }
  16786. },
  16787. },
  16788. [
  16789. {
  16790. name: "Normal",
  16791. height: math.unit(5 + 11 / 12, "feet"),
  16792. default: true
  16793. },
  16794. ]
  16795. ))
  16796. characterMakers.push(() => makeCharacter(
  16797. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16798. {
  16799. side: {
  16800. height: math.unit(6 + 5 / 12, "feet"),
  16801. weight: math.unit(300, "lb"),
  16802. name: "Side",
  16803. image: {
  16804. source: "./media/characters/tempest-suicune/side.svg",
  16805. extra: 195 / 154,
  16806. bottom: 0.04
  16807. }
  16808. },
  16809. },
  16810. [
  16811. {
  16812. name: "Normal",
  16813. height: math.unit(6 + 5 / 12, "feet"),
  16814. default: true
  16815. },
  16816. ]
  16817. ))
  16818. characterMakers.push(() => makeCharacter(
  16819. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16820. {
  16821. front: {
  16822. height: math.unit(7 + 2 / 12, "feet"),
  16823. weight: math.unit(322, "lb"),
  16824. name: "Front",
  16825. image: {
  16826. source: "./media/characters/vulcan/front.svg",
  16827. extra: 154 / 147,
  16828. bottom: 0.04
  16829. }
  16830. },
  16831. },
  16832. [
  16833. {
  16834. name: "Normal",
  16835. height: math.unit(7 + 2 / 12, "feet"),
  16836. default: true
  16837. },
  16838. ]
  16839. ))
  16840. characterMakers.push(() => makeCharacter(
  16841. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16842. {
  16843. front: {
  16844. height: math.unit(5 + 10 / 12, "feet"),
  16845. weight: math.unit(264, "lb"),
  16846. name: "Front",
  16847. image: {
  16848. source: "./media/characters/gault/front.svg",
  16849. extra: 161 / 140,
  16850. bottom: 0.028
  16851. }
  16852. },
  16853. },
  16854. [
  16855. {
  16856. name: "Normal",
  16857. height: math.unit(5 + 10 / 12, "feet"),
  16858. default: true
  16859. },
  16860. ]
  16861. ))
  16862. characterMakers.push(() => makeCharacter(
  16863. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16864. {
  16865. front: {
  16866. height: math.unit(6, "feet"),
  16867. weight: math.unit(150, "lb"),
  16868. name: "Front",
  16869. image: {
  16870. source: "./media/characters/shard/front.svg",
  16871. extra: 273 / 238,
  16872. bottom: 0.02
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(3 + 6 / 12, "feet"),
  16880. default: true
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16886. {
  16887. front: {
  16888. height: math.unit(5 + 11 / 12, "feet"),
  16889. weight: math.unit(146, "lb"),
  16890. name: "Front",
  16891. image: {
  16892. source: "./media/characters/ashe/front.svg",
  16893. extra: 400 / 373,
  16894. bottom: 0.01
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Normal",
  16901. height: math.unit(5 + 11 / 12, "feet"),
  16902. default: true
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(5 + 5 / 12, "feet"),
  16911. weight: math.unit(135, "lb"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/beatrix/front.svg",
  16915. extra: 392 / 379,
  16916. bottom: 0.01
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Normal",
  16923. height: math.unit(6, "feet"),
  16924. default: true
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16930. {
  16931. front: {
  16932. height: math.unit(6 + 2/12, "feet"),
  16933. weight: math.unit(135, "lb"),
  16934. name: "Front",
  16935. image: {
  16936. source: "./media/characters/ignatius/front.svg",
  16937. extra: 1380/1259,
  16938. bottom: 27/1407
  16939. }
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Normal",
  16945. height: math.unit(6 + 2/12, "feet"),
  16946. default: true
  16947. },
  16948. ]
  16949. ))
  16950. characterMakers.push(() => makeCharacter(
  16951. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16952. {
  16953. front: {
  16954. height: math.unit(6 + 2 / 12, "feet"),
  16955. weight: math.unit(138, "lb"),
  16956. name: "Front",
  16957. image: {
  16958. source: "./media/characters/mei-li/front.svg",
  16959. extra: 237 / 229,
  16960. bottom: 0.03
  16961. }
  16962. },
  16963. },
  16964. [
  16965. {
  16966. name: "Normal",
  16967. height: math.unit(6 + 2 / 12, "feet"),
  16968. default: true
  16969. },
  16970. ]
  16971. ))
  16972. characterMakers.push(() => makeCharacter(
  16973. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16974. {
  16975. front: {
  16976. height: math.unit(2 + 4 / 12, "feet"),
  16977. weight: math.unit(62, "lb"),
  16978. name: "Front",
  16979. image: {
  16980. source: "./media/characters/puru/front.svg",
  16981. extra: 206 / 149,
  16982. bottom: 0.06
  16983. }
  16984. },
  16985. },
  16986. [
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(2 + 4 / 12, "feet"),
  16990. default: true
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16996. {
  16997. anthro: {
  16998. height: math.unit(5 + 8/12, "feet"),
  16999. weight: math.unit(200, "lb"),
  17000. energyNeed: math.unit(2000, "kcal"),
  17001. name: "Anthro",
  17002. image: {
  17003. source: "./media/characters/kee/anthro.svg",
  17004. extra: 3251/3184,
  17005. bottom: 250/3501
  17006. }
  17007. },
  17008. taur: {
  17009. height: math.unit(11, "feet"),
  17010. weight: math.unit(500, "lb"),
  17011. energyNeed: math.unit(5000, "kcal"),
  17012. name: "Taur",
  17013. image: {
  17014. source: "./media/characters/kee/taur.svg",
  17015. extra: 1362/1320,
  17016. bottom: 83/1445
  17017. }
  17018. },
  17019. },
  17020. [
  17021. {
  17022. name: "Normal",
  17023. height: math.unit(5 + 8/12, "feet"),
  17024. default: true
  17025. },
  17026. {
  17027. name: "Macro",
  17028. height: math.unit(35, "feet")
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17034. {
  17035. anthro: {
  17036. height: math.unit(7, "feet"),
  17037. weight: math.unit(190, "lb"),
  17038. name: "Anthro",
  17039. image: {
  17040. source: "./media/characters/cobalt-dracha/anthro.svg",
  17041. extra: 231 / 225,
  17042. bottom: 0.04
  17043. }
  17044. },
  17045. feral: {
  17046. height: math.unit(9 + 7 / 12, "feet"),
  17047. weight: math.unit(294, "lb"),
  17048. name: "Feral",
  17049. image: {
  17050. source: "./media/characters/cobalt-dracha/feral.svg",
  17051. extra: 692 / 633,
  17052. bottom: 0.05
  17053. }
  17054. },
  17055. },
  17056. [
  17057. {
  17058. name: "Normal",
  17059. height: math.unit(7, "feet"),
  17060. default: true
  17061. },
  17062. ]
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17066. {
  17067. fallen: {
  17068. height: math.unit(11 + 8 / 12, "feet"),
  17069. weight: math.unit(485, "lb"),
  17070. name: "Java (Fallen)",
  17071. rename: true,
  17072. image: {
  17073. source: "./media/characters/java/fallen.svg",
  17074. extra: 226 / 208,
  17075. bottom: 0.005
  17076. }
  17077. },
  17078. godkin: {
  17079. height: math.unit(10 + 6 / 12, "feet"),
  17080. weight: math.unit(328, "lb"),
  17081. name: "Java (Godkin)",
  17082. rename: true,
  17083. image: {
  17084. source: "./media/characters/java/godkin.svg",
  17085. extra: 1104/1068,
  17086. bottom: 36/1140
  17087. }
  17088. },
  17089. },
  17090. [
  17091. {
  17092. name: "Normal",
  17093. height: math.unit(11 + 8 / 12, "feet"),
  17094. default: true
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(5 + 9 / 12, "feet"),
  17103. weight: math.unit(170, "lb"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/purna/front.svg",
  17107. extra: 239 / 229,
  17108. bottom: 0.01
  17109. }
  17110. },
  17111. },
  17112. [
  17113. {
  17114. name: "Normal",
  17115. height: math.unit(5 + 9 / 12, "feet"),
  17116. default: true
  17117. },
  17118. ]
  17119. ))
  17120. characterMakers.push(() => makeCharacter(
  17121. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17122. {
  17123. front: {
  17124. height: math.unit(5 + 9 / 12, "feet"),
  17125. weight: math.unit(142, "lb"),
  17126. name: "Front",
  17127. image: {
  17128. source: "./media/characters/kuva/front.svg",
  17129. extra: 281 / 271,
  17130. bottom: 0.006
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Normal",
  17137. height: math.unit(5 + 9 / 12, "feet"),
  17138. default: true
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17144. {
  17145. anthro: {
  17146. height: math.unit(9 + 2 / 12, "feet"),
  17147. weight: math.unit(270, "lb"),
  17148. name: "Anthro",
  17149. image: {
  17150. source: "./media/characters/embra/anthro.svg",
  17151. extra: 200 / 187,
  17152. bottom: 0.02
  17153. }
  17154. },
  17155. feral: {
  17156. height: math.unit(18 + 8 / 12, "feet"),
  17157. weight: math.unit(576, "lb"),
  17158. name: "Feral",
  17159. image: {
  17160. source: "./media/characters/embra/feral.svg",
  17161. extra: 152 / 137,
  17162. bottom: 0.037
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(9 + 2 / 12, "feet"),
  17170. default: true
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17176. {
  17177. anthro: {
  17178. height: math.unit(10 + 9 / 12, "feet"),
  17179. weight: math.unit(224, "lb"),
  17180. name: "Anthro",
  17181. image: {
  17182. source: "./media/characters/grottos/anthro.svg",
  17183. extra: 350 / 332,
  17184. bottom: 0.045
  17185. }
  17186. },
  17187. feral: {
  17188. height: math.unit(20 + 7 / 12, "feet"),
  17189. weight: math.unit(629, "lb"),
  17190. name: "Feral",
  17191. image: {
  17192. source: "./media/characters/grottos/feral.svg",
  17193. extra: 207 / 190,
  17194. bottom: 0.05
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(10 + 9 / 12, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17208. {
  17209. anthro: {
  17210. height: math.unit(9 + 6 / 12, "feet"),
  17211. weight: math.unit(298, "lb"),
  17212. name: "Anthro",
  17213. image: {
  17214. source: "./media/characters/frifna/anthro.svg",
  17215. extra: 282 / 269,
  17216. bottom: 0.015
  17217. }
  17218. },
  17219. feral: {
  17220. height: math.unit(16 + 2 / 12, "feet"),
  17221. weight: math.unit(624, "lb"),
  17222. name: "Feral",
  17223. image: {
  17224. source: "./media/characters/frifna/feral.svg"
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(9 + 6 / 12, "feet"),
  17232. default: true
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17238. {
  17239. front: {
  17240. height: math.unit(6 + 2 / 12, "feet"),
  17241. weight: math.unit(168, "lb"),
  17242. name: "Front",
  17243. image: {
  17244. source: "./media/characters/elise/front.svg",
  17245. extra: 276 / 271
  17246. }
  17247. },
  17248. },
  17249. [
  17250. {
  17251. name: "Normal",
  17252. height: math.unit(6 + 2 / 12, "feet"),
  17253. default: true
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17259. {
  17260. front: {
  17261. height: math.unit(5 + 10 / 12, "feet"),
  17262. weight: math.unit(210, "lb"),
  17263. name: "Front",
  17264. image: {
  17265. source: "./media/characters/glade/front.svg",
  17266. extra: 258 / 247,
  17267. bottom: 0.008
  17268. }
  17269. },
  17270. },
  17271. [
  17272. {
  17273. name: "Normal",
  17274. height: math.unit(5 + 10 / 12, "feet"),
  17275. default: true
  17276. },
  17277. ]
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17281. {
  17282. front: {
  17283. height: math.unit(5 + 10 / 12, "feet"),
  17284. weight: math.unit(129, "lb"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/rina/front.svg",
  17288. extra: 266 / 255,
  17289. bottom: 0.005
  17290. }
  17291. },
  17292. },
  17293. [
  17294. {
  17295. name: "Normal",
  17296. height: math.unit(5 + 10 / 12, "feet"),
  17297. default: true
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17303. {
  17304. front: {
  17305. height: math.unit(6 + 1 / 12, "feet"),
  17306. weight: math.unit(192, "lb"),
  17307. name: "Front",
  17308. image: {
  17309. source: "./media/characters/veronica/front.svg",
  17310. extra: 319 / 309,
  17311. bottom: 0.005
  17312. }
  17313. },
  17314. },
  17315. [
  17316. {
  17317. name: "Normal",
  17318. height: math.unit(6 + 1 / 12, "feet"),
  17319. default: true
  17320. },
  17321. ]
  17322. ))
  17323. characterMakers.push(() => makeCharacter(
  17324. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17325. {
  17326. front: {
  17327. height: math.unit(9 + 3 / 12, "feet"),
  17328. weight: math.unit(1100, "lb"),
  17329. name: "Front",
  17330. image: {
  17331. source: "./media/characters/braxton/front.svg",
  17332. extra: 1057 / 984,
  17333. bottom: 0.05
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(9 + 3 / 12, "feet")
  17341. },
  17342. {
  17343. name: "Giant",
  17344. height: math.unit(300, "feet"),
  17345. default: true
  17346. },
  17347. {
  17348. name: "Macro",
  17349. height: math.unit(700, "feet")
  17350. },
  17351. {
  17352. name: "Megamacro",
  17353. height: math.unit(6000, "feet")
  17354. },
  17355. ]
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17359. {
  17360. front: {
  17361. height: math.unit(6 + 7 / 12, "feet"),
  17362. weight: math.unit(150, "lb"),
  17363. name: "Front",
  17364. image: {
  17365. source: "./media/characters/blue-feyonics/front.svg",
  17366. extra: 1403 / 1306,
  17367. bottom: 0.047
  17368. }
  17369. },
  17370. },
  17371. [
  17372. {
  17373. name: "Normal",
  17374. height: math.unit(6 + 7 / 12, "feet"),
  17375. default: true
  17376. },
  17377. ]
  17378. ))
  17379. characterMakers.push(() => makeCharacter(
  17380. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17381. {
  17382. front: {
  17383. height: math.unit(1.8, "meters"),
  17384. weight: math.unit(60, "kg"),
  17385. name: "Front",
  17386. image: {
  17387. source: "./media/characters/maxwell/front.svg",
  17388. extra: 2060 / 1873
  17389. }
  17390. },
  17391. },
  17392. [
  17393. {
  17394. name: "Micro",
  17395. height: math.unit(1, "mm")
  17396. },
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(1.8, "meter"),
  17400. default: true
  17401. },
  17402. {
  17403. name: "Macro",
  17404. height: math.unit(30, "meters")
  17405. },
  17406. {
  17407. name: "Megamacro",
  17408. height: math.unit(10, "km")
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17414. {
  17415. front: {
  17416. height: math.unit(6, "feet"),
  17417. weight: math.unit(150, "lb"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/jack/front.svg",
  17421. extra: 1754 / 1640,
  17422. bottom: 0.01
  17423. }
  17424. },
  17425. },
  17426. [
  17427. {
  17428. name: "Normal",
  17429. height: math.unit(80000, "feet"),
  17430. default: true
  17431. },
  17432. {
  17433. name: "Max size",
  17434. height: math.unit(10, "lightyears")
  17435. },
  17436. ]
  17437. ))
  17438. characterMakers.push(() => makeCharacter(
  17439. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17440. {
  17441. urban: {
  17442. height: math.unit(5, "feet"),
  17443. weight: math.unit(240, "lb"),
  17444. name: "Urban",
  17445. image: {
  17446. source: "./media/characters/cafat/urban.svg",
  17447. extra: 1223/1126,
  17448. bottom: 205/1428
  17449. }
  17450. },
  17451. summer: {
  17452. height: math.unit(5, "feet"),
  17453. weight: math.unit(240, "lb"),
  17454. name: "Summer",
  17455. image: {
  17456. source: "./media/characters/cafat/summer.svg",
  17457. extra: 1223/1126,
  17458. bottom: 205/1428
  17459. }
  17460. },
  17461. winter: {
  17462. height: math.unit(5, "feet"),
  17463. weight: math.unit(240, "lb"),
  17464. name: "Winter",
  17465. image: {
  17466. source: "./media/characters/cafat/winter.svg",
  17467. extra: 1223/1126,
  17468. bottom: 205/1428
  17469. }
  17470. },
  17471. lingerie: {
  17472. height: math.unit(5, "feet"),
  17473. weight: math.unit(240, "lb"),
  17474. name: "Lingerie",
  17475. image: {
  17476. source: "./media/characters/cafat/lingerie.svg",
  17477. extra: 1223/1126,
  17478. bottom: 205/1428
  17479. }
  17480. },
  17481. upright: {
  17482. height: math.unit(6.3, "feet"),
  17483. weight: math.unit(240, "lb"),
  17484. name: "Upright",
  17485. image: {
  17486. source: "./media/characters/cafat/upright.svg",
  17487. bottom: 0.01
  17488. }
  17489. },
  17490. uprightFull: {
  17491. height: math.unit(6.3, "feet"),
  17492. weight: math.unit(240, "lb"),
  17493. name: "Upright (Full)",
  17494. image: {
  17495. source: "./media/characters/cafat/upright-full.svg",
  17496. bottom: 0.01
  17497. }
  17498. },
  17499. },
  17500. [
  17501. {
  17502. name: "Small",
  17503. height: math.unit(5, "feet"),
  17504. default: true
  17505. },
  17506. {
  17507. name: "Large",
  17508. height: math.unit(13, "feet")
  17509. },
  17510. ]
  17511. ))
  17512. characterMakers.push(() => makeCharacter(
  17513. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17514. {
  17515. front: {
  17516. height: math.unit(6, "feet"),
  17517. weight: math.unit(150, "lb"),
  17518. name: "Front",
  17519. image: {
  17520. source: "./media/characters/verin-raharra/front.svg",
  17521. extra: 5019 / 4835,
  17522. bottom: 0.023
  17523. }
  17524. },
  17525. },
  17526. [
  17527. {
  17528. name: "Normal",
  17529. height: math.unit(7 + 5 / 12, "feet"),
  17530. default: true
  17531. },
  17532. {
  17533. name: "Upsized",
  17534. height: math.unit(20, "feet")
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17540. {
  17541. front: {
  17542. height: math.unit(7, "feet"),
  17543. weight: math.unit(230, "lb"),
  17544. name: "Front",
  17545. image: {
  17546. source: "./media/characters/nakata/front.svg",
  17547. extra: 1.005,
  17548. bottom: 0.01
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(7, "feet"),
  17556. default: true
  17557. },
  17558. {
  17559. name: "Big",
  17560. height: math.unit(14, "feet")
  17561. },
  17562. {
  17563. name: "Macro",
  17564. height: math.unit(400, "feet")
  17565. },
  17566. ]
  17567. ))
  17568. characterMakers.push(() => makeCharacter(
  17569. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17570. {
  17571. front: {
  17572. height: math.unit(4.91, "feet"),
  17573. weight: math.unit(100, "lb"),
  17574. name: "Front",
  17575. image: {
  17576. source: "./media/characters/lily/front.svg",
  17577. extra: 1585 / 1415,
  17578. bottom: 0.02
  17579. }
  17580. },
  17581. },
  17582. [
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(4.91, "feet"),
  17586. default: true
  17587. },
  17588. ]
  17589. ))
  17590. characterMakers.push(() => makeCharacter(
  17591. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17592. {
  17593. laying: {
  17594. height: math.unit(4 + 4 / 12, "feet"),
  17595. weight: math.unit(600, "lb"),
  17596. name: "Laying",
  17597. image: {
  17598. source: "./media/characters/sheila/laying.svg",
  17599. extra: 1333 / 1265,
  17600. bottom: 0.16
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(4 + 4 / 12, "feet"),
  17608. default: true
  17609. },
  17610. ]
  17611. ))
  17612. characterMakers.push(() => makeCharacter(
  17613. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17614. {
  17615. front: {
  17616. height: math.unit(6, "feet"),
  17617. weight: math.unit(190, "lb"),
  17618. name: "Front",
  17619. image: {
  17620. source: "./media/characters/sax/front.svg",
  17621. extra: 1187 / 973,
  17622. bottom: 0.042
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Micro",
  17629. height: math.unit(4, "inches"),
  17630. default: true
  17631. },
  17632. ]
  17633. ))
  17634. characterMakers.push(() => makeCharacter(
  17635. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17636. {
  17637. front: {
  17638. height: math.unit(6, "feet"),
  17639. weight: math.unit(150, "lb"),
  17640. name: "Front",
  17641. image: {
  17642. source: "./media/characters/pandora/front.svg",
  17643. extra: 2720 / 2556,
  17644. bottom: 0.015
  17645. }
  17646. },
  17647. back: {
  17648. height: math.unit(6, "feet"),
  17649. weight: math.unit(150, "lb"),
  17650. name: "Back",
  17651. image: {
  17652. source: "./media/characters/pandora/back.svg",
  17653. extra: 2720 / 2556,
  17654. bottom: 0.01
  17655. }
  17656. },
  17657. beans: {
  17658. height: math.unit(6 / 8, "feet"),
  17659. name: "Beans",
  17660. image: {
  17661. source: "./media/characters/pandora/beans.svg"
  17662. }
  17663. },
  17664. collar: {
  17665. height: math.unit(0.31, "feet"),
  17666. name: "Collar",
  17667. image: {
  17668. source: "./media/characters/pandora/collar.svg"
  17669. }
  17670. },
  17671. skirt: {
  17672. height: math.unit(6, "feet"),
  17673. weight: math.unit(150, "lb"),
  17674. name: "Skirt",
  17675. image: {
  17676. source: "./media/characters/pandora/skirt.svg",
  17677. extra: 1622 / 1525,
  17678. bottom: 0.015
  17679. }
  17680. },
  17681. hoodie: {
  17682. height: math.unit(6, "feet"),
  17683. weight: math.unit(150, "lb"),
  17684. name: "Hoodie",
  17685. image: {
  17686. source: "./media/characters/pandora/hoodie.svg",
  17687. extra: 1622 / 1525,
  17688. bottom: 0.015
  17689. }
  17690. },
  17691. casual: {
  17692. height: math.unit(6, "feet"),
  17693. weight: math.unit(150, "lb"),
  17694. name: "Casual",
  17695. image: {
  17696. source: "./media/characters/pandora/casual.svg",
  17697. extra: 1622 / 1525,
  17698. bottom: 0.015
  17699. }
  17700. },
  17701. },
  17702. [
  17703. {
  17704. name: "Normal",
  17705. height: math.unit(6, "feet")
  17706. },
  17707. {
  17708. name: "Big Steppy",
  17709. height: math.unit(1, "km"),
  17710. default: true
  17711. },
  17712. {
  17713. name: "Galactic Steppy",
  17714. height: math.unit(2, "gigameters")
  17715. },
  17716. ]
  17717. ))
  17718. characterMakers.push(() => makeCharacter(
  17719. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17720. {
  17721. side: {
  17722. height: math.unit(10, "feet"),
  17723. weight: math.unit(800, "kg"),
  17724. name: "Side",
  17725. image: {
  17726. source: "./media/characters/venio-darcony/side.svg",
  17727. extra: 1373 / 1003,
  17728. bottom: 0.037
  17729. }
  17730. },
  17731. front: {
  17732. height: math.unit(19, "feet"),
  17733. weight: math.unit(800, "kg"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/venio-darcony/front.svg"
  17737. }
  17738. },
  17739. back: {
  17740. height: math.unit(19, "feet"),
  17741. weight: math.unit(800, "kg"),
  17742. name: "Back",
  17743. image: {
  17744. source: "./media/characters/venio-darcony/back.svg"
  17745. }
  17746. },
  17747. sideNsfw: {
  17748. height: math.unit(10, "feet"),
  17749. weight: math.unit(800, "kg"),
  17750. name: "Side (NSFW)",
  17751. image: {
  17752. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17753. extra: 1373 / 1003,
  17754. bottom: 0.037
  17755. }
  17756. },
  17757. frontNsfw: {
  17758. height: math.unit(19, "feet"),
  17759. weight: math.unit(800, "kg"),
  17760. name: "Front (NSFW)",
  17761. image: {
  17762. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17763. }
  17764. },
  17765. backNsfw: {
  17766. height: math.unit(19, "feet"),
  17767. weight: math.unit(800, "kg"),
  17768. name: "Back (NSFW)",
  17769. image: {
  17770. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17771. }
  17772. },
  17773. sideArmored: {
  17774. height: math.unit(10, "feet"),
  17775. weight: math.unit(800, "kg"),
  17776. name: "Side (Armored)",
  17777. image: {
  17778. source: "./media/characters/venio-darcony/side-armored.svg",
  17779. extra: 1373 / 1003,
  17780. bottom: 0.037
  17781. }
  17782. },
  17783. frontArmored: {
  17784. height: math.unit(19, "feet"),
  17785. weight: math.unit(900, "kg"),
  17786. name: "Front (Armored)",
  17787. image: {
  17788. source: "./media/characters/venio-darcony/front-armored.svg"
  17789. }
  17790. },
  17791. backArmored: {
  17792. height: math.unit(19, "feet"),
  17793. weight: math.unit(900, "kg"),
  17794. name: "Back (Armored)",
  17795. image: {
  17796. source: "./media/characters/venio-darcony/back-armored.svg"
  17797. }
  17798. },
  17799. sword: {
  17800. height: math.unit(10, "feet"),
  17801. weight: math.unit(50, "lb"),
  17802. name: "Sword",
  17803. image: {
  17804. source: "./media/characters/venio-darcony/sword.svg"
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Normal",
  17811. height: math.unit(10, "feet")
  17812. },
  17813. {
  17814. name: "Macro",
  17815. height: math.unit(130, "feet"),
  17816. default: true
  17817. },
  17818. {
  17819. name: "Macro+",
  17820. height: math.unit(240, "feet")
  17821. },
  17822. ]
  17823. ))
  17824. characterMakers.push(() => makeCharacter(
  17825. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17826. {
  17827. front: {
  17828. height: math.unit(6, "feet"),
  17829. weight: math.unit(150, "lb"),
  17830. name: "Front",
  17831. image: {
  17832. source: "./media/characters/veski/front.svg",
  17833. extra: 1299 / 1225,
  17834. bottom: 0.04
  17835. }
  17836. },
  17837. back: {
  17838. height: math.unit(6, "feet"),
  17839. weight: math.unit(150, "lb"),
  17840. name: "Back",
  17841. image: {
  17842. source: "./media/characters/veski/back.svg",
  17843. extra: 1299 / 1225,
  17844. bottom: 0.008
  17845. }
  17846. },
  17847. maw: {
  17848. height: math.unit(1.5 * 1.21, "feet"),
  17849. name: "Maw",
  17850. image: {
  17851. source: "./media/characters/veski/maw.svg"
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Macro",
  17858. height: math.unit(2, "km"),
  17859. default: true
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(5 + 7 / 12, "feet"),
  17868. name: "Front",
  17869. image: {
  17870. source: "./media/characters/isabelle/front.svg",
  17871. extra: 2130 / 1976,
  17872. bottom: 0.05
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Supermicro",
  17879. height: math.unit(10, "micrometers")
  17880. },
  17881. {
  17882. name: "Micro",
  17883. height: math.unit(1, "inch")
  17884. },
  17885. {
  17886. name: "Tiny",
  17887. height: math.unit(5, "inches")
  17888. },
  17889. {
  17890. name: "Standard",
  17891. height: math.unit(5 + 7 / 12, "inches")
  17892. },
  17893. {
  17894. name: "Macro",
  17895. height: math.unit(80, "meters"),
  17896. default: true
  17897. },
  17898. {
  17899. name: "Megamacro",
  17900. height: math.unit(250, "meters")
  17901. },
  17902. {
  17903. name: "Gigamacro",
  17904. height: math.unit(5, "km")
  17905. },
  17906. {
  17907. name: "Cosmic",
  17908. height: math.unit(2.5e6, "miles")
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17914. {
  17915. front: {
  17916. height: math.unit(6, "feet"),
  17917. weight: math.unit(150, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/hanzo/front.svg",
  17921. extra: 374 / 344,
  17922. bottom: 0.02
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Normal",
  17929. height: math.unit(8, "feet"),
  17930. default: true
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17936. {
  17937. front: {
  17938. height: math.unit(7, "feet"),
  17939. weight: math.unit(130, "lb"),
  17940. name: "Front",
  17941. image: {
  17942. source: "./media/characters/anna/front.svg",
  17943. extra: 169 / 145,
  17944. bottom: 0.06
  17945. }
  17946. },
  17947. full: {
  17948. height: math.unit(4.96, "feet"),
  17949. weight: math.unit(220, "lb"),
  17950. name: "Full",
  17951. image: {
  17952. source: "./media/characters/anna/full.svg",
  17953. extra: 138 / 114,
  17954. bottom: 0.15
  17955. }
  17956. },
  17957. tongue: {
  17958. height: math.unit(2.53, "feet"),
  17959. name: "Tongue",
  17960. image: {
  17961. source: "./media/characters/anna/tongue.svg"
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(7, "feet"),
  17969. default: true
  17970. },
  17971. ]
  17972. ))
  17973. characterMakers.push(() => makeCharacter(
  17974. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17975. {
  17976. front: {
  17977. height: math.unit(7, "feet"),
  17978. weight: math.unit(150, "lb"),
  17979. name: "Front",
  17980. image: {
  17981. source: "./media/characters/ian-corvid/front.svg",
  17982. extra: 150 / 142,
  17983. bottom: 0.02
  17984. }
  17985. },
  17986. back: {
  17987. height: math.unit(7, "feet"),
  17988. weight: math.unit(150, "lb"),
  17989. name: "Back",
  17990. image: {
  17991. source: "./media/characters/ian-corvid/back.svg",
  17992. extra: 150 / 143,
  17993. bottom: 0.01
  17994. }
  17995. },
  17996. stomping: {
  17997. height: math.unit(7, "feet"),
  17998. weight: math.unit(150, "lb"),
  17999. name: "Stomping",
  18000. image: {
  18001. source: "./media/characters/ian-corvid/stomping.svg",
  18002. extra: 76 / 72
  18003. }
  18004. },
  18005. sitting: {
  18006. height: math.unit(7 / 1.8, "feet"),
  18007. weight: math.unit(150, "lb"),
  18008. name: "Sitting",
  18009. image: {
  18010. source: "./media/characters/ian-corvid/sitting.svg",
  18011. extra: 1400 / 1269,
  18012. bottom: 0.15
  18013. }
  18014. },
  18015. },
  18016. [
  18017. {
  18018. name: "Tiny Microw",
  18019. height: math.unit(1, "inch")
  18020. },
  18021. {
  18022. name: "Microw",
  18023. height: math.unit(6, "inches")
  18024. },
  18025. {
  18026. name: "Crow",
  18027. height: math.unit(7 + 1 / 12, "feet"),
  18028. default: true
  18029. },
  18030. {
  18031. name: "Macrow",
  18032. height: math.unit(176, "feet")
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18038. {
  18039. front: {
  18040. height: math.unit(5 + 7 / 12, "feet"),
  18041. weight: math.unit(147, "lb"),
  18042. name: "Front",
  18043. image: {
  18044. source: "./media/characters/natalie-kellon/front.svg",
  18045. extra: 1214 / 1141,
  18046. bottom: 0.02
  18047. }
  18048. },
  18049. },
  18050. [
  18051. {
  18052. name: "Micro",
  18053. height: math.unit(1 / 16, "inch")
  18054. },
  18055. {
  18056. name: "Tiny",
  18057. height: math.unit(4, "inches")
  18058. },
  18059. {
  18060. name: "Normal",
  18061. height: math.unit(5 + 7 / 12, "feet"),
  18062. default: true
  18063. },
  18064. {
  18065. name: "Amazon",
  18066. height: math.unit(12, "feet")
  18067. },
  18068. {
  18069. name: "Giantess",
  18070. height: math.unit(160, "meters")
  18071. },
  18072. {
  18073. name: "Titaness",
  18074. height: math.unit(800, "meters")
  18075. },
  18076. ]
  18077. ))
  18078. characterMakers.push(() => makeCharacter(
  18079. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18080. {
  18081. front: {
  18082. height: math.unit(6, "feet"),
  18083. weight: math.unit(150, "lb"),
  18084. name: "Front",
  18085. image: {
  18086. source: "./media/characters/alluria/front.svg",
  18087. extra: 806 / 738,
  18088. bottom: 0.01
  18089. }
  18090. },
  18091. side: {
  18092. height: math.unit(6, "feet"),
  18093. weight: math.unit(150, "lb"),
  18094. name: "Side",
  18095. image: {
  18096. source: "./media/characters/alluria/side.svg",
  18097. extra: 800 / 750,
  18098. }
  18099. },
  18100. back: {
  18101. height: math.unit(6, "feet"),
  18102. weight: math.unit(150, "lb"),
  18103. name: "Back",
  18104. image: {
  18105. source: "./media/characters/alluria/back.svg",
  18106. extra: 806 / 738,
  18107. }
  18108. },
  18109. frontMaid: {
  18110. height: math.unit(6, "feet"),
  18111. weight: math.unit(150, "lb"),
  18112. name: "Front (Maid)",
  18113. image: {
  18114. source: "./media/characters/alluria/front-maid.svg",
  18115. extra: 806 / 738,
  18116. bottom: 0.01
  18117. }
  18118. },
  18119. sideMaid: {
  18120. height: math.unit(6, "feet"),
  18121. weight: math.unit(150, "lb"),
  18122. name: "Side (Maid)",
  18123. image: {
  18124. source: "./media/characters/alluria/side-maid.svg",
  18125. extra: 800 / 750,
  18126. bottom: 0.005
  18127. }
  18128. },
  18129. backMaid: {
  18130. height: math.unit(6, "feet"),
  18131. weight: math.unit(150, "lb"),
  18132. name: "Back (Maid)",
  18133. image: {
  18134. source: "./media/characters/alluria/back-maid.svg",
  18135. extra: 806 / 738,
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Micro",
  18142. height: math.unit(6, "inches"),
  18143. default: true
  18144. },
  18145. ]
  18146. ))
  18147. characterMakers.push(() => makeCharacter(
  18148. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18149. {
  18150. front: {
  18151. height: math.unit(6, "feet"),
  18152. weight: math.unit(150, "lb"),
  18153. name: "Front",
  18154. image: {
  18155. source: "./media/characters/kyle/front.svg",
  18156. extra: 1069 / 962,
  18157. bottom: 77.228 / 1727.45
  18158. }
  18159. },
  18160. },
  18161. [
  18162. {
  18163. name: "Macro",
  18164. height: math.unit(150, "feet"),
  18165. default: true
  18166. },
  18167. ]
  18168. ))
  18169. characterMakers.push(() => makeCharacter(
  18170. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18171. {
  18172. front: {
  18173. height: math.unit(6, "feet"),
  18174. weight: math.unit(300, "lb"),
  18175. name: "Front",
  18176. image: {
  18177. source: "./media/characters/duncan/front.svg",
  18178. extra: 1650 / 1482,
  18179. bottom: 0.05
  18180. }
  18181. },
  18182. },
  18183. [
  18184. {
  18185. name: "Macro",
  18186. height: math.unit(100, "feet"),
  18187. default: true
  18188. },
  18189. ]
  18190. ))
  18191. characterMakers.push(() => makeCharacter(
  18192. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18193. {
  18194. front: {
  18195. height: math.unit(5 + 4 / 12, "feet"),
  18196. weight: math.unit(220, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/memory/front.svg",
  18200. extra: 3641 / 3545,
  18201. bottom: 0.03
  18202. }
  18203. },
  18204. back: {
  18205. height: math.unit(5 + 4 / 12, "feet"),
  18206. weight: math.unit(220, "lb"),
  18207. name: "Back",
  18208. image: {
  18209. source: "./media/characters/memory/back.svg",
  18210. extra: 3641 / 3545,
  18211. bottom: 0.025
  18212. }
  18213. },
  18214. frontSkirt: {
  18215. height: math.unit(5 + 4 / 12, "feet"),
  18216. weight: math.unit(220, "lb"),
  18217. name: "Front (Skirt)",
  18218. image: {
  18219. source: "./media/characters/memory/front-skirt.svg",
  18220. extra: 3641 / 3545,
  18221. bottom: 0.03
  18222. }
  18223. },
  18224. frontDress: {
  18225. height: math.unit(5 + 4 / 12, "feet"),
  18226. weight: math.unit(220, "lb"),
  18227. name: "Front (Dress)",
  18228. image: {
  18229. source: "./media/characters/memory/front-dress.svg",
  18230. extra: 3641 / 3545,
  18231. bottom: 0.03
  18232. }
  18233. },
  18234. },
  18235. [
  18236. {
  18237. name: "Micro",
  18238. height: math.unit(6, "inches"),
  18239. default: true
  18240. },
  18241. {
  18242. name: "Normal",
  18243. height: math.unit(5 + 4 / 12, "feet")
  18244. },
  18245. ]
  18246. ))
  18247. characterMakers.push(() => makeCharacter(
  18248. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18249. {
  18250. front: {
  18251. height: math.unit(4 + 11 / 12, "feet"),
  18252. weight: math.unit(100, "lb"),
  18253. name: "Front",
  18254. image: {
  18255. source: "./media/characters/luno/front.svg",
  18256. extra: 1535 / 1487,
  18257. bottom: 0.03
  18258. }
  18259. },
  18260. },
  18261. [
  18262. {
  18263. name: "Micro",
  18264. height: math.unit(3, "inches")
  18265. },
  18266. {
  18267. name: "Normal",
  18268. height: math.unit(4 + 11 / 12, "feet"),
  18269. default: true
  18270. },
  18271. {
  18272. name: "Macro",
  18273. height: math.unit(300, "feet")
  18274. },
  18275. {
  18276. name: "Megamacro",
  18277. height: math.unit(700, "miles")
  18278. },
  18279. ]
  18280. ))
  18281. characterMakers.push(() => makeCharacter(
  18282. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18283. {
  18284. front: {
  18285. height: math.unit(6 + 2 / 12, "feet"),
  18286. weight: math.unit(170, "lb"),
  18287. name: "Front",
  18288. image: {
  18289. source: "./media/characters/jamesy/front.svg",
  18290. extra: 440 / 382,
  18291. bottom: 0.005
  18292. }
  18293. },
  18294. },
  18295. [
  18296. {
  18297. name: "Micro",
  18298. height: math.unit(3, "inches")
  18299. },
  18300. {
  18301. name: "Normal",
  18302. height: math.unit(6 + 2 / 12, "feet"),
  18303. default: true
  18304. },
  18305. {
  18306. name: "Macro",
  18307. height: math.unit(300, "feet")
  18308. },
  18309. {
  18310. name: "Megamacro",
  18311. height: math.unit(700, "miles")
  18312. },
  18313. ]
  18314. ))
  18315. characterMakers.push(() => makeCharacter(
  18316. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18317. {
  18318. front: {
  18319. height: math.unit(6, "feet"),
  18320. weight: math.unit(160, "lb"),
  18321. name: "Front",
  18322. image: {
  18323. source: "./media/characters/mark/front.svg",
  18324. extra: 3300 / 3100,
  18325. bottom: 136.42 / 3440.47
  18326. }
  18327. },
  18328. },
  18329. [
  18330. {
  18331. name: "Macro",
  18332. height: math.unit(120, "meters")
  18333. },
  18334. {
  18335. name: "Bigger Macro",
  18336. height: math.unit(350, "meters")
  18337. },
  18338. {
  18339. name: "Megamacro",
  18340. height: math.unit(8, "km"),
  18341. default: true
  18342. },
  18343. {
  18344. name: "Continental",
  18345. height: math.unit(4550, "km")
  18346. },
  18347. {
  18348. name: "Planetary",
  18349. height: math.unit(65000, "km")
  18350. },
  18351. ]
  18352. ))
  18353. characterMakers.push(() => makeCharacter(
  18354. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18355. {
  18356. front: {
  18357. height: math.unit(6, "feet"),
  18358. weight: math.unit(400, "lb"),
  18359. name: "Front",
  18360. image: {
  18361. source: "./media/characters/mac/front.svg",
  18362. extra: 1048 / 987.7,
  18363. bottom: 60 / 1107.6,
  18364. }
  18365. },
  18366. },
  18367. [
  18368. {
  18369. name: "Macro",
  18370. height: math.unit(500, "feet"),
  18371. default: true
  18372. },
  18373. ]
  18374. ))
  18375. characterMakers.push(() => makeCharacter(
  18376. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18377. {
  18378. front: {
  18379. height: math.unit(5 + 2 / 12, "feet"),
  18380. weight: math.unit(190, "lb"),
  18381. name: "Front",
  18382. image: {
  18383. source: "./media/characters/bari/front.svg",
  18384. extra: 3156 / 2880,
  18385. bottom: 0.03
  18386. }
  18387. },
  18388. back: {
  18389. height: math.unit(5 + 2 / 12, "feet"),
  18390. weight: math.unit(190, "lb"),
  18391. name: "Back",
  18392. image: {
  18393. source: "./media/characters/bari/back.svg",
  18394. extra: 3260 / 2834,
  18395. bottom: 0.025
  18396. }
  18397. },
  18398. frontPlush: {
  18399. height: math.unit(5 + 2 / 12, "feet"),
  18400. weight: math.unit(190, "lb"),
  18401. name: "Front (Plush)",
  18402. image: {
  18403. source: "./media/characters/bari/front-plush.svg",
  18404. extra: 1112 / 1061,
  18405. bottom: 0.002
  18406. }
  18407. },
  18408. },
  18409. [
  18410. {
  18411. name: "Micro",
  18412. height: math.unit(3, "inches")
  18413. },
  18414. {
  18415. name: "Normal",
  18416. height: math.unit(5 + 2 / 12, "feet"),
  18417. default: true
  18418. },
  18419. {
  18420. name: "Macro",
  18421. height: math.unit(20, "feet")
  18422. },
  18423. ]
  18424. ))
  18425. characterMakers.push(() => makeCharacter(
  18426. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18427. {
  18428. front: {
  18429. height: math.unit(6 + 1 / 12, "feet"),
  18430. weight: math.unit(275, "lb"),
  18431. name: "Front",
  18432. image: {
  18433. source: "./media/characters/hunter-misha-raven/front.svg"
  18434. }
  18435. },
  18436. },
  18437. [
  18438. {
  18439. name: "Mortal",
  18440. height: math.unit(6 + 1 / 12, "feet")
  18441. },
  18442. {
  18443. name: "Divine",
  18444. height: math.unit(1.12134e34, "parsecs"),
  18445. default: true
  18446. },
  18447. ]
  18448. ))
  18449. characterMakers.push(() => makeCharacter(
  18450. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18451. {
  18452. front: {
  18453. height: math.unit(6 + 3 / 12, "feet"),
  18454. weight: math.unit(220, "lb"),
  18455. name: "Front",
  18456. image: {
  18457. source: "./media/characters/max-calore/front.svg",
  18458. extra: 1700 / 1648,
  18459. bottom: 0.01
  18460. }
  18461. },
  18462. back: {
  18463. height: math.unit(6 + 3 / 12, "feet"),
  18464. weight: math.unit(220, "lb"),
  18465. name: "Back",
  18466. image: {
  18467. source: "./media/characters/max-calore/back.svg",
  18468. extra: 1700 / 1648,
  18469. bottom: 0.01
  18470. }
  18471. },
  18472. },
  18473. [
  18474. {
  18475. name: "Normal",
  18476. height: math.unit(6 + 3 / 12, "feet"),
  18477. default: true
  18478. },
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18483. {
  18484. side: {
  18485. height: math.unit(2 + 8 / 12, "feet"),
  18486. weight: math.unit(99, "lb"),
  18487. name: "Side",
  18488. image: {
  18489. source: "./media/characters/aspen/side.svg",
  18490. extra: 152 / 138,
  18491. bottom: 0.032
  18492. }
  18493. },
  18494. },
  18495. [
  18496. {
  18497. name: "Normal",
  18498. height: math.unit(2 + 8 / 12, "feet"),
  18499. default: true
  18500. },
  18501. ]
  18502. ))
  18503. characterMakers.push(() => makeCharacter(
  18504. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18505. {
  18506. side: {
  18507. height: math.unit(3 + 2 / 12, "feet"),
  18508. weight: math.unit(224, "lb"),
  18509. name: "Side",
  18510. image: {
  18511. source: "./media/characters/sheila-feral-wolf/side.svg",
  18512. extra: 179 / 166,
  18513. bottom: 0.03
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Normal",
  18520. height: math.unit(3 + 2 / 12, "feet"),
  18521. default: true
  18522. },
  18523. ]
  18524. ))
  18525. characterMakers.push(() => makeCharacter(
  18526. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18527. {
  18528. side: {
  18529. height: math.unit(1 + 9 / 12, "feet"),
  18530. weight: math.unit(38, "lb"),
  18531. name: "Side",
  18532. image: {
  18533. source: "./media/characters/michelle/side.svg",
  18534. extra: 147 / 136.7,
  18535. bottom: 0.03
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Normal",
  18542. height: math.unit(1 + 9 / 12, "feet"),
  18543. default: true
  18544. },
  18545. ]
  18546. ))
  18547. characterMakers.push(() => makeCharacter(
  18548. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18549. {
  18550. front: {
  18551. height: math.unit(1.54, "feet"),
  18552. weight: math.unit(50, "lb"),
  18553. name: "Front",
  18554. image: {
  18555. source: "./media/characters/nino/front.svg"
  18556. }
  18557. },
  18558. },
  18559. [
  18560. {
  18561. name: "Normal",
  18562. height: math.unit(1.54, "feet"),
  18563. default: true
  18564. },
  18565. ]
  18566. ))
  18567. characterMakers.push(() => makeCharacter(
  18568. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18569. {
  18570. front: {
  18571. height: math.unit(1.49, "feet"),
  18572. weight: math.unit(45, "lb"),
  18573. name: "Front",
  18574. image: {
  18575. source: "./media/characters/viola/front.svg"
  18576. }
  18577. },
  18578. },
  18579. [
  18580. {
  18581. name: "Normal",
  18582. height: math.unit(1.49, "feet"),
  18583. default: true
  18584. },
  18585. ]
  18586. ))
  18587. characterMakers.push(() => makeCharacter(
  18588. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18589. {
  18590. front: {
  18591. height: math.unit(6 + 5 / 12, "feet"),
  18592. weight: math.unit(580, "lb"),
  18593. name: "Front",
  18594. image: {
  18595. source: "./media/characters/atlas/front.svg",
  18596. extra: 298.5 / 290,
  18597. bottom: 0.015
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(6 + 5 / 12, "feet"),
  18605. default: true
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18611. {
  18612. side: {
  18613. height: math.unit(15.6, "inches"),
  18614. weight: math.unit(10, "lb"),
  18615. name: "Side",
  18616. image: {
  18617. source: "./media/characters/davy/side.svg",
  18618. extra: 200 / 170,
  18619. bottom: 0.01
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Normal",
  18626. height: math.unit(15.6, "inches"),
  18627. default: true
  18628. },
  18629. ]
  18630. ))
  18631. characterMakers.push(() => makeCharacter(
  18632. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18633. {
  18634. side: {
  18635. height: math.unit(4 + 8 / 12, "feet"),
  18636. weight: math.unit(166, "lb"),
  18637. name: "Side",
  18638. image: {
  18639. source: "./media/characters/fiona/side.svg",
  18640. extra: 232 / 220,
  18641. bottom: 0.03
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Normal",
  18648. height: math.unit(4 + 8 / 12, "feet"),
  18649. default: true
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18655. {
  18656. front: {
  18657. height: math.unit(26, "inches"),
  18658. weight: math.unit(35, "lb"),
  18659. name: "Front",
  18660. image: {
  18661. source: "./media/characters/lyla/front.svg",
  18662. bottom: 0.1
  18663. }
  18664. },
  18665. },
  18666. [
  18667. {
  18668. name: "Normal",
  18669. height: math.unit(3, "feet"),
  18670. default: true
  18671. },
  18672. ]
  18673. ))
  18674. characterMakers.push(() => makeCharacter(
  18675. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18676. {
  18677. side: {
  18678. height: math.unit(1.8, "feet"),
  18679. weight: math.unit(44, "lb"),
  18680. name: "Side",
  18681. image: {
  18682. source: "./media/characters/perseus/side.svg",
  18683. bottom: 0.21
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Normal",
  18690. height: math.unit(1.8, "feet"),
  18691. default: true
  18692. },
  18693. ]
  18694. ))
  18695. characterMakers.push(() => makeCharacter(
  18696. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18697. {
  18698. side: {
  18699. height: math.unit(4 + 2 / 12, "feet"),
  18700. weight: math.unit(20, "lb"),
  18701. name: "Side",
  18702. image: {
  18703. source: "./media/characters/remus/side.svg"
  18704. }
  18705. },
  18706. },
  18707. [
  18708. {
  18709. name: "Normal",
  18710. height: math.unit(4 + 2 / 12, "feet"),
  18711. default: true
  18712. },
  18713. ]
  18714. ))
  18715. characterMakers.push(() => makeCharacter(
  18716. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18717. {
  18718. front: {
  18719. height: math.unit(4 + 11 / 12, "feet"),
  18720. weight: math.unit(114, "lb"),
  18721. name: "Front",
  18722. image: {
  18723. source: "./media/characters/raf/front.svg",
  18724. extra: 1504/1339,
  18725. bottom: 26/1530
  18726. }
  18727. },
  18728. side: {
  18729. height: math.unit(4 + 11 / 12, "feet"),
  18730. weight: math.unit(114, "lb"),
  18731. name: "Side",
  18732. image: {
  18733. source: "./media/characters/raf/side.svg",
  18734. extra: 1466/1316,
  18735. bottom: 29/1495
  18736. }
  18737. },
  18738. paw: {
  18739. height: math.unit(1.45, "feet"),
  18740. name: "Paw",
  18741. image: {
  18742. source: "./media/characters/raf/paw.svg"
  18743. },
  18744. extraAttributes: {
  18745. "toeSize": {
  18746. name: "Toe Size",
  18747. power: 2,
  18748. type: "area",
  18749. base: math.unit(0.004, "m^2")
  18750. },
  18751. "padSize": {
  18752. name: "Pad Size",
  18753. power: 2,
  18754. type: "area",
  18755. base: math.unit(0.04, "m^2")
  18756. },
  18757. "footSize": {
  18758. name: "Foot Size",
  18759. power: 2,
  18760. type: "area",
  18761. base: math.unit(0.08, "m^2")
  18762. },
  18763. }
  18764. },
  18765. },
  18766. [
  18767. {
  18768. name: "Micro",
  18769. height: math.unit(2, "inches")
  18770. },
  18771. {
  18772. name: "Normal",
  18773. height: math.unit(4 + 11 / 12, "feet"),
  18774. default: true
  18775. },
  18776. {
  18777. name: "Macro",
  18778. height: math.unit(70, "feet")
  18779. },
  18780. ]
  18781. ))
  18782. characterMakers.push(() => makeCharacter(
  18783. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18784. {
  18785. front: {
  18786. height: math.unit(1.5, "meters"),
  18787. weight: math.unit(68, "kg"),
  18788. name: "Front",
  18789. image: {
  18790. source: "./media/characters/liam-einarr/front.svg",
  18791. extra: 2822 / 2666
  18792. }
  18793. },
  18794. back: {
  18795. height: math.unit(1.5, "meters"),
  18796. weight: math.unit(68, "kg"),
  18797. name: "Back",
  18798. image: {
  18799. source: "./media/characters/liam-einarr/back.svg",
  18800. extra: 2822 / 2666,
  18801. bottom: 0.015
  18802. }
  18803. },
  18804. },
  18805. [
  18806. {
  18807. name: "Normal",
  18808. height: math.unit(1.5, "meters"),
  18809. default: true
  18810. },
  18811. {
  18812. name: "Macro",
  18813. height: math.unit(150, "meters")
  18814. },
  18815. {
  18816. name: "Megamacro",
  18817. height: math.unit(35, "km")
  18818. },
  18819. ]
  18820. ))
  18821. characterMakers.push(() => makeCharacter(
  18822. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18823. {
  18824. front: {
  18825. height: math.unit(6, "feet"),
  18826. weight: math.unit(75, "kg"),
  18827. name: "Front",
  18828. image: {
  18829. source: "./media/characters/linda/front.svg",
  18830. extra: 930 / 874,
  18831. bottom: 0.004
  18832. }
  18833. },
  18834. },
  18835. [
  18836. {
  18837. name: "Normal",
  18838. height: math.unit(6, "feet"),
  18839. default: true
  18840. },
  18841. ]
  18842. ))
  18843. characterMakers.push(() => makeCharacter(
  18844. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18845. {
  18846. front: {
  18847. height: math.unit(6 + 8 / 12, "feet"),
  18848. weight: math.unit(220, "lb"),
  18849. name: "Front",
  18850. image: {
  18851. source: "./media/characters/caylex/front.svg",
  18852. extra: 821 / 772,
  18853. bottom: 0.07
  18854. }
  18855. },
  18856. back: {
  18857. height: math.unit(6 + 8 / 12, "feet"),
  18858. weight: math.unit(220, "lb"),
  18859. name: "Back",
  18860. image: {
  18861. source: "./media/characters/caylex/back.svg",
  18862. extra: 821 / 772,
  18863. bottom: 0.022
  18864. }
  18865. },
  18866. hand: {
  18867. height: math.unit(1.25, "feet"),
  18868. name: "Hand",
  18869. image: {
  18870. source: "./media/characters/caylex/hand.svg"
  18871. }
  18872. },
  18873. foot: {
  18874. height: math.unit(1.6, "feet"),
  18875. name: "Foot",
  18876. image: {
  18877. source: "./media/characters/caylex/foot.svg"
  18878. }
  18879. },
  18880. armored: {
  18881. height: math.unit(6 + 8 / 12, "feet"),
  18882. weight: math.unit(250, "lb"),
  18883. name: "Armored",
  18884. image: {
  18885. source: "./media/characters/caylex/armored.svg",
  18886. extra: 1420 / 1310,
  18887. bottom: 0.045
  18888. }
  18889. },
  18890. },
  18891. [
  18892. {
  18893. name: "Normal",
  18894. height: math.unit(6 + 8 / 12, "feet"),
  18895. default: true
  18896. },
  18897. {
  18898. name: "Normal+",
  18899. height: math.unit(12, "feet")
  18900. },
  18901. ]
  18902. ))
  18903. characterMakers.push(() => makeCharacter(
  18904. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18905. {
  18906. front: {
  18907. height: math.unit(7 + 6 / 12, "feet"),
  18908. weight: math.unit(288, "lb"),
  18909. name: "Front",
  18910. image: {
  18911. source: "./media/characters/alana/front.svg",
  18912. extra: 679 / 653,
  18913. bottom: 22.5 / 701
  18914. }
  18915. },
  18916. },
  18917. [
  18918. {
  18919. name: "Normal",
  18920. height: math.unit(7 + 6 / 12, "feet")
  18921. },
  18922. {
  18923. name: "Large",
  18924. height: math.unit(50, "feet")
  18925. },
  18926. {
  18927. name: "Macro",
  18928. height: math.unit(100, "feet"),
  18929. default: true
  18930. },
  18931. {
  18932. name: "Macro+",
  18933. height: math.unit(200, "feet")
  18934. },
  18935. ]
  18936. ))
  18937. characterMakers.push(() => makeCharacter(
  18938. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18939. {
  18940. front: {
  18941. height: math.unit(6 + 1 / 12, "feet"),
  18942. weight: math.unit(210, "lb"),
  18943. name: "Front",
  18944. image: {
  18945. source: "./media/characters/hasani/front.svg",
  18946. extra: 244 / 232,
  18947. bottom: 0.01
  18948. }
  18949. },
  18950. back: {
  18951. height: math.unit(6 + 1 / 12, "feet"),
  18952. weight: math.unit(210, "lb"),
  18953. name: "Back",
  18954. image: {
  18955. source: "./media/characters/hasani/back.svg",
  18956. extra: 244 / 232,
  18957. bottom: 0.01
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Normal",
  18964. height: math.unit(6 + 1 / 12, "feet")
  18965. },
  18966. {
  18967. name: "Macro",
  18968. height: math.unit(175, "feet"),
  18969. default: true
  18970. },
  18971. ]
  18972. ))
  18973. characterMakers.push(() => makeCharacter(
  18974. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18975. {
  18976. front: {
  18977. height: math.unit(1.82, "meters"),
  18978. weight: math.unit(140, "lb"),
  18979. name: "Front",
  18980. image: {
  18981. source: "./media/characters/nita/front.svg",
  18982. extra: 2473 / 2363,
  18983. bottom: 0.01
  18984. }
  18985. },
  18986. },
  18987. [
  18988. {
  18989. name: "Normal",
  18990. height: math.unit(1.82, "m")
  18991. },
  18992. {
  18993. name: "Macro",
  18994. height: math.unit(300, "m")
  18995. },
  18996. {
  18997. name: "Mistake Canon",
  18998. height: math.unit(0.5, "miles"),
  18999. default: true
  19000. },
  19001. {
  19002. name: "Big Mistake",
  19003. height: math.unit(13, "miles")
  19004. },
  19005. {
  19006. name: "Playing God",
  19007. height: math.unit(2450, "miles")
  19008. },
  19009. ]
  19010. ))
  19011. characterMakers.push(() => makeCharacter(
  19012. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19013. {
  19014. front: {
  19015. height: math.unit(4, "feet"),
  19016. weight: math.unit(120, "lb"),
  19017. name: "Front",
  19018. image: {
  19019. source: "./media/characters/shiriko/front.svg",
  19020. extra: 970/934,
  19021. bottom: 5/975
  19022. }
  19023. },
  19024. },
  19025. [
  19026. {
  19027. name: "Normal",
  19028. height: math.unit(4, "feet"),
  19029. default: true
  19030. },
  19031. ]
  19032. ))
  19033. characterMakers.push(() => makeCharacter(
  19034. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19035. {
  19036. front: {
  19037. height: math.unit(6, "feet"),
  19038. name: "front",
  19039. image: {
  19040. source: "./media/characters/deja/front.svg",
  19041. extra: 926 / 840,
  19042. bottom: 0.07
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Planck Length",
  19049. height: math.unit(1.6e-35, "meters")
  19050. },
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(30.48, "meters"),
  19054. default: true
  19055. },
  19056. {
  19057. name: "Universal",
  19058. height: math.unit(8.8e26, "meters")
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19064. {
  19065. side: {
  19066. height: math.unit(8, "feet"),
  19067. weight: math.unit(6300, "lb"),
  19068. name: "Side",
  19069. image: {
  19070. source: "./media/characters/anima/side.svg",
  19071. bottom: 0.035
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Normal",
  19078. height: math.unit(8, "feet"),
  19079. default: true
  19080. },
  19081. ]
  19082. ))
  19083. characterMakers.push(() => makeCharacter(
  19084. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19085. {
  19086. front: {
  19087. height: math.unit(8, "feet"),
  19088. weight: math.unit(350, "lb"),
  19089. name: "Front",
  19090. image: {
  19091. source: "./media/characters/bianca/front.svg",
  19092. extra: 234 / 225,
  19093. bottom: 0.03
  19094. }
  19095. },
  19096. },
  19097. [
  19098. {
  19099. name: "Normal",
  19100. height: math.unit(8, "feet"),
  19101. default: true
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19107. {
  19108. front: {
  19109. height: math.unit(11 + 5/12, "feet"),
  19110. weight: math.unit(1200, "lb"),
  19111. name: "Front",
  19112. image: {
  19113. source: "./media/characters/adinia/front.svg",
  19114. extra: 1767/1641,
  19115. bottom: 44/1811
  19116. },
  19117. extraAttributes: {
  19118. "energyIntake": {
  19119. name: "Energy Intake",
  19120. power: 3,
  19121. type: "energy",
  19122. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19123. },
  19124. }
  19125. },
  19126. back: {
  19127. height: math.unit(11 + 5/12, "feet"),
  19128. weight: math.unit(1200, "lb"),
  19129. name: "Back",
  19130. image: {
  19131. source: "./media/characters/adinia/back.svg",
  19132. extra: 1834/1684,
  19133. bottom: 14/1848
  19134. },
  19135. extraAttributes: {
  19136. "energyIntake": {
  19137. name: "Energy Intake",
  19138. power: 3,
  19139. type: "energy",
  19140. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19141. },
  19142. }
  19143. },
  19144. maw: {
  19145. height: math.unit(3.79, "feet"),
  19146. name: "Maw",
  19147. image: {
  19148. source: "./media/characters/adinia/maw.svg"
  19149. }
  19150. },
  19151. rump: {
  19152. height: math.unit(4.6, "feet"),
  19153. name: "Rump",
  19154. image: {
  19155. source: "./media/characters/adinia/rump.svg"
  19156. }
  19157. },
  19158. },
  19159. [
  19160. {
  19161. name: "Normal",
  19162. height: math.unit(11 + 5 / 12, "feet"),
  19163. default: true
  19164. },
  19165. ]
  19166. ))
  19167. characterMakers.push(() => makeCharacter(
  19168. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19169. {
  19170. front: {
  19171. height: math.unit(3, "meters"),
  19172. weight: math.unit(200, "kg"),
  19173. name: "Front",
  19174. image: {
  19175. source: "./media/characters/lykasa/front.svg",
  19176. extra: 1076 / 976,
  19177. bottom: 0.06
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(3, "meters")
  19185. },
  19186. {
  19187. name: "Kaiju",
  19188. height: math.unit(120, "meters"),
  19189. default: true
  19190. },
  19191. {
  19192. name: "Mega Kaiju",
  19193. height: math.unit(240, "km")
  19194. },
  19195. {
  19196. name: "Giga Kaiju",
  19197. height: math.unit(400, "megameters")
  19198. },
  19199. {
  19200. name: "Tera Kaiju",
  19201. height: math.unit(800, "gigameters")
  19202. },
  19203. {
  19204. name: "Kaiju Dragon Goddess",
  19205. height: math.unit(26, "zettaparsecs")
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19211. {
  19212. side: {
  19213. height: math.unit(283 / 124 * 6, "feet"),
  19214. weight: math.unit(35000, "lb"),
  19215. name: "Side",
  19216. image: {
  19217. source: "./media/characters/malfaren/side.svg",
  19218. extra: 1310/529,
  19219. bottom: 24/1334
  19220. }
  19221. },
  19222. front: {
  19223. height: math.unit(22.36, "feet"),
  19224. weight: math.unit(35000, "lb"),
  19225. name: "Front",
  19226. image: {
  19227. source: "./media/characters/malfaren/front.svg",
  19228. extra: 1237/1115,
  19229. bottom: 32/1269
  19230. }
  19231. },
  19232. maw: {
  19233. height: math.unit(6.9, "feet"),
  19234. name: "Maw",
  19235. image: {
  19236. source: "./media/characters/malfaren/maw.svg"
  19237. }
  19238. },
  19239. dick: {
  19240. height: math.unit(6.19, "feet"),
  19241. name: "Dick",
  19242. image: {
  19243. source: "./media/characters/malfaren/dick.svg"
  19244. }
  19245. },
  19246. eye: {
  19247. height: math.unit(0.69, "feet"),
  19248. name: "Eye",
  19249. image: {
  19250. source: "./media/characters/malfaren/eye.svg"
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Big",
  19257. height: math.unit(283 / 162 * 6, "feet"),
  19258. },
  19259. {
  19260. name: "Bigger",
  19261. height: math.unit(283 / 124 * 6, "feet")
  19262. },
  19263. {
  19264. name: "Massive",
  19265. height: math.unit(283 / 92 * 6, "feet"),
  19266. default: true
  19267. },
  19268. {
  19269. name: "👀💦",
  19270. height: math.unit(283 / 73 * 6, "feet"),
  19271. },
  19272. ]
  19273. ))
  19274. characterMakers.push(() => makeCharacter(
  19275. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19276. {
  19277. front: {
  19278. height: math.unit(1.7, "m"),
  19279. weight: math.unit(70, "kg"),
  19280. name: "Front",
  19281. image: {
  19282. source: "./media/characters/kernel/front.svg",
  19283. extra: 222 / 210,
  19284. bottom: 0.007
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Nano",
  19291. height: math.unit(17, "micrometers")
  19292. },
  19293. {
  19294. name: "Micro",
  19295. height: math.unit(1.7, "mm")
  19296. },
  19297. {
  19298. name: "Small",
  19299. height: math.unit(1.7, "cm")
  19300. },
  19301. {
  19302. name: "Normal",
  19303. height: math.unit(1.7, "m"),
  19304. default: true
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19310. {
  19311. front: {
  19312. height: math.unit(1.75, "meters"),
  19313. weight: math.unit(65, "kg"),
  19314. name: "Front",
  19315. image: {
  19316. source: "./media/characters/jayne-folest/front.svg",
  19317. extra: 2115 / 2007,
  19318. bottom: 0.02
  19319. }
  19320. },
  19321. back: {
  19322. height: math.unit(1.75, "meters"),
  19323. weight: math.unit(65, "kg"),
  19324. name: "Back",
  19325. image: {
  19326. source: "./media/characters/jayne-folest/back.svg",
  19327. extra: 2115 / 2007,
  19328. bottom: 0.005
  19329. }
  19330. },
  19331. frontClothed: {
  19332. height: math.unit(1.75, "meters"),
  19333. weight: math.unit(65, "kg"),
  19334. name: "Front (Clothed)",
  19335. image: {
  19336. source: "./media/characters/jayne-folest/front-clothed.svg",
  19337. extra: 2115 / 2007,
  19338. bottom: 0.035
  19339. }
  19340. },
  19341. hand: {
  19342. height: math.unit(1 / 1.260, "feet"),
  19343. name: "Hand",
  19344. image: {
  19345. source: "./media/characters/jayne-folest/hand.svg"
  19346. }
  19347. },
  19348. foot: {
  19349. height: math.unit(1 / 0.918, "feet"),
  19350. name: "Foot",
  19351. image: {
  19352. source: "./media/characters/jayne-folest/foot.svg"
  19353. }
  19354. },
  19355. },
  19356. [
  19357. {
  19358. name: "Micro",
  19359. height: math.unit(4, "cm")
  19360. },
  19361. {
  19362. name: "Normal",
  19363. height: math.unit(1.75, "meters")
  19364. },
  19365. {
  19366. name: "Macro",
  19367. height: math.unit(47.5, "meters"),
  19368. default: true
  19369. },
  19370. ]
  19371. ))
  19372. characterMakers.push(() => makeCharacter(
  19373. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19374. {
  19375. front: {
  19376. height: math.unit(180, "cm"),
  19377. weight: math.unit(70, "kg"),
  19378. name: "Front",
  19379. image: {
  19380. source: "./media/characters/algier/front.svg",
  19381. extra: 596 / 572,
  19382. bottom: 0.04
  19383. }
  19384. },
  19385. back: {
  19386. height: math.unit(180, "cm"),
  19387. weight: math.unit(70, "kg"),
  19388. name: "Back",
  19389. image: {
  19390. source: "./media/characters/algier/back.svg",
  19391. extra: 596 / 572,
  19392. bottom: 0.025
  19393. }
  19394. },
  19395. frontdressed: {
  19396. height: math.unit(180, "cm"),
  19397. weight: math.unit(150, "kg"),
  19398. name: "Front-dressed",
  19399. image: {
  19400. source: "./media/characters/algier/front-dressed.svg",
  19401. extra: 596 / 572,
  19402. bottom: 0.038
  19403. }
  19404. },
  19405. },
  19406. [
  19407. {
  19408. name: "Micro",
  19409. height: math.unit(5, "cm")
  19410. },
  19411. {
  19412. name: "Normal",
  19413. height: math.unit(180, "cm"),
  19414. default: true
  19415. },
  19416. {
  19417. name: "Macro",
  19418. height: math.unit(64, "m")
  19419. },
  19420. ]
  19421. ))
  19422. characterMakers.push(() => makeCharacter(
  19423. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19424. {
  19425. upright: {
  19426. height: math.unit(7, "feet"),
  19427. weight: math.unit(300, "lb"),
  19428. name: "Upright",
  19429. image: {
  19430. source: "./media/characters/pretzel/upright.svg",
  19431. extra: 534 / 522,
  19432. bottom: 0.065
  19433. }
  19434. },
  19435. sprawling: {
  19436. height: math.unit(3.75, "feet"),
  19437. weight: math.unit(300, "lb"),
  19438. name: "Sprawling",
  19439. image: {
  19440. source: "./media/characters/pretzel/sprawling.svg",
  19441. extra: 314 / 281,
  19442. bottom: 0.1
  19443. }
  19444. },
  19445. tongue: {
  19446. height: math.unit(2, "feet"),
  19447. name: "Tongue",
  19448. image: {
  19449. source: "./media/characters/pretzel/tongue.svg"
  19450. }
  19451. },
  19452. },
  19453. [
  19454. {
  19455. name: "Normal",
  19456. height: math.unit(7, "feet"),
  19457. default: true
  19458. },
  19459. {
  19460. name: "Oversized",
  19461. height: math.unit(15, "feet")
  19462. },
  19463. {
  19464. name: "Huge",
  19465. height: math.unit(30, "feet")
  19466. },
  19467. {
  19468. name: "Macro",
  19469. height: math.unit(250, "feet")
  19470. },
  19471. ]
  19472. ))
  19473. characterMakers.push(() => makeCharacter(
  19474. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19475. {
  19476. sideFront: {
  19477. height: math.unit(5 + 2 / 12, "feet"),
  19478. weight: math.unit(120, "lb"),
  19479. name: "Front Side",
  19480. image: {
  19481. source: "./media/characters/roxi/side-front.svg",
  19482. extra: 2924 / 2717,
  19483. bottom: 0.08
  19484. }
  19485. },
  19486. sideBack: {
  19487. height: math.unit(5 + 2 / 12, "feet"),
  19488. weight: math.unit(120, "lb"),
  19489. name: "Back Side",
  19490. image: {
  19491. source: "./media/characters/roxi/side-back.svg",
  19492. extra: 2904 / 2693,
  19493. bottom: 0.06
  19494. }
  19495. },
  19496. front: {
  19497. height: math.unit(5 + 2 / 12, "feet"),
  19498. weight: math.unit(120, "lb"),
  19499. name: "Front",
  19500. image: {
  19501. source: "./media/characters/roxi/front.svg",
  19502. extra: 2028 / 1907,
  19503. bottom: 0.01
  19504. }
  19505. },
  19506. frontAlt: {
  19507. height: math.unit(5 + 2 / 12, "feet"),
  19508. weight: math.unit(120, "lb"),
  19509. name: "Front (Alt)",
  19510. image: {
  19511. source: "./media/characters/roxi/front-alt.svg",
  19512. extra: 1828 / 1798,
  19513. bottom: 0.01
  19514. }
  19515. },
  19516. sitting: {
  19517. height: math.unit(2.8, "feet"),
  19518. weight: math.unit(120, "lb"),
  19519. name: "Sitting",
  19520. image: {
  19521. source: "./media/characters/roxi/sitting.svg",
  19522. extra: 2660 / 2462,
  19523. bottom: 0.1
  19524. }
  19525. },
  19526. },
  19527. [
  19528. {
  19529. name: "Normal",
  19530. height: math.unit(5 + 2 / 12, "feet"),
  19531. default: true
  19532. },
  19533. ]
  19534. ))
  19535. characterMakers.push(() => makeCharacter(
  19536. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19537. {
  19538. side: {
  19539. height: math.unit(55, "feet"),
  19540. weight: math.unit(153, "tons"),
  19541. name: "Side",
  19542. image: {
  19543. source: "./media/characters/shadow/side.svg",
  19544. extra: 701 / 628,
  19545. bottom: 0.02
  19546. }
  19547. },
  19548. flying: {
  19549. height: math.unit(145, "feet"),
  19550. weight: math.unit(153, "tons"),
  19551. name: "Flying",
  19552. image: {
  19553. source: "./media/characters/shadow/flying.svg"
  19554. }
  19555. },
  19556. },
  19557. [
  19558. {
  19559. name: "Normal",
  19560. height: math.unit(55, "feet"),
  19561. default: true
  19562. },
  19563. ]
  19564. ))
  19565. characterMakers.push(() => makeCharacter(
  19566. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19567. {
  19568. front: {
  19569. height: math.unit(6, "feet"),
  19570. weight: math.unit(200, "lb"),
  19571. name: "Front",
  19572. image: {
  19573. source: "./media/characters/marcie/front.svg",
  19574. extra: 960 / 876,
  19575. bottom: 58 / 1017.87
  19576. }
  19577. },
  19578. },
  19579. [
  19580. {
  19581. name: "Macro",
  19582. height: math.unit(1, "mile"),
  19583. default: true
  19584. },
  19585. ]
  19586. ))
  19587. characterMakers.push(() => makeCharacter(
  19588. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19589. {
  19590. front: {
  19591. height: math.unit(7, "feet"),
  19592. weight: math.unit(200, "lb"),
  19593. name: "Front",
  19594. image: {
  19595. source: "./media/characters/kachina/front.svg",
  19596. extra: 1290.68 / 1119,
  19597. bottom: 36.5 / 1327.18
  19598. }
  19599. },
  19600. },
  19601. [
  19602. {
  19603. name: "Normal",
  19604. height: math.unit(7, "feet"),
  19605. default: true
  19606. },
  19607. ]
  19608. ))
  19609. characterMakers.push(() => makeCharacter(
  19610. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19611. {
  19612. looking: {
  19613. height: math.unit(2, "meters"),
  19614. weight: math.unit(300, "kg"),
  19615. name: "Looking",
  19616. image: {
  19617. source: "./media/characters/kash/looking.svg",
  19618. extra: 474 / 344,
  19619. bottom: 0.03
  19620. }
  19621. },
  19622. side: {
  19623. height: math.unit(2, "meters"),
  19624. weight: math.unit(300, "kg"),
  19625. name: "Side",
  19626. image: {
  19627. source: "./media/characters/kash/side.svg",
  19628. extra: 302 / 251,
  19629. bottom: 0.03
  19630. }
  19631. },
  19632. front: {
  19633. height: math.unit(2, "meters"),
  19634. weight: math.unit(300, "kg"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/kash/front.svg",
  19638. extra: 495 / 360,
  19639. bottom: 0.015
  19640. }
  19641. },
  19642. },
  19643. [
  19644. {
  19645. name: "Normal",
  19646. height: math.unit(2, "meters"),
  19647. default: true
  19648. },
  19649. {
  19650. name: "Big",
  19651. height: math.unit(3, "meters")
  19652. },
  19653. {
  19654. name: "Large",
  19655. height: math.unit(5, "meters")
  19656. },
  19657. ]
  19658. ))
  19659. characterMakers.push(() => makeCharacter(
  19660. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19661. {
  19662. feeding: {
  19663. height: math.unit(6.7, "feet"),
  19664. weight: math.unit(350, "lb"),
  19665. name: "Feeding",
  19666. image: {
  19667. source: "./media/characters/lalim/feeding.svg",
  19668. }
  19669. },
  19670. },
  19671. [
  19672. {
  19673. name: "Normal",
  19674. height: math.unit(6.7, "feet"),
  19675. default: true
  19676. },
  19677. ]
  19678. ))
  19679. characterMakers.push(() => makeCharacter(
  19680. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19681. {
  19682. front: {
  19683. height: math.unit(9.5, "feet"),
  19684. weight: math.unit(600, "lb"),
  19685. name: "Front",
  19686. image: {
  19687. source: "./media/characters/de'vout/front.svg",
  19688. extra: 1443 / 1328,
  19689. bottom: 0.025
  19690. }
  19691. },
  19692. back: {
  19693. height: math.unit(9.5, "feet"),
  19694. weight: math.unit(600, "lb"),
  19695. name: "Back",
  19696. image: {
  19697. source: "./media/characters/de'vout/back.svg",
  19698. extra: 1443 / 1328
  19699. }
  19700. },
  19701. frontDressed: {
  19702. height: math.unit(9.5, "feet"),
  19703. weight: math.unit(600, "lb"),
  19704. name: "Front (Dressed",
  19705. image: {
  19706. source: "./media/characters/de'vout/front-dressed.svg",
  19707. extra: 1443 / 1328,
  19708. bottom: 0.025
  19709. }
  19710. },
  19711. backDressed: {
  19712. height: math.unit(9.5, "feet"),
  19713. weight: math.unit(600, "lb"),
  19714. name: "Back (Dressed",
  19715. image: {
  19716. source: "./media/characters/de'vout/back-dressed.svg",
  19717. extra: 1443 / 1328
  19718. }
  19719. },
  19720. },
  19721. [
  19722. {
  19723. name: "Normal",
  19724. height: math.unit(9.5, "feet"),
  19725. default: true
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19731. {
  19732. front: {
  19733. height: math.unit(8, "feet"),
  19734. weight: math.unit(225, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/talana/front.svg",
  19738. extra: 1410 / 1300,
  19739. bottom: 0.015
  19740. }
  19741. },
  19742. frontDressed: {
  19743. height: math.unit(8, "feet"),
  19744. weight: math.unit(225, "lb"),
  19745. name: "Front (Dressed",
  19746. image: {
  19747. source: "./media/characters/talana/front-dressed.svg",
  19748. extra: 1410 / 1300,
  19749. bottom: 0.015
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(8, "feet"),
  19757. default: true
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19763. {
  19764. side: {
  19765. height: math.unit(7.2, "feet"),
  19766. weight: math.unit(150, "lb"),
  19767. name: "Side",
  19768. image: {
  19769. source: "./media/characters/xeauvok/side.svg",
  19770. extra: 1975 / 1523,
  19771. bottom: 0.07
  19772. }
  19773. },
  19774. },
  19775. [
  19776. {
  19777. name: "Normal",
  19778. height: math.unit(7.2, "feet"),
  19779. default: true
  19780. },
  19781. ]
  19782. ))
  19783. characterMakers.push(() => makeCharacter(
  19784. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19785. {
  19786. side: {
  19787. height: math.unit(4, "meters"),
  19788. weight: math.unit(2200, "kg"),
  19789. name: "Side",
  19790. image: {
  19791. source: "./media/characters/zara/side.svg",
  19792. extra: 765/744,
  19793. bottom: 156/921
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(4, "meters"),
  19801. default: true
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19807. {
  19808. side: {
  19809. height: math.unit(6, "feet"),
  19810. weight: math.unit(150, "lb"),
  19811. name: "Side",
  19812. image: {
  19813. source: "./media/characters/richard-dragon/side.svg",
  19814. extra: 845 / 340,
  19815. bottom: 0.017
  19816. }
  19817. },
  19818. maw: {
  19819. height: math.unit(2.97, "feet"),
  19820. name: "Maw",
  19821. image: {
  19822. source: "./media/characters/richard-dragon/maw.svg"
  19823. }
  19824. },
  19825. },
  19826. [
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19831. {
  19832. front: {
  19833. height: math.unit(4, "feet"),
  19834. weight: math.unit(100, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/richard-smeargle/front.svg",
  19838. extra: 2952 / 2820,
  19839. bottom: 0.028
  19840. }
  19841. },
  19842. },
  19843. [
  19844. {
  19845. name: "Normal",
  19846. height: math.unit(4, "feet"),
  19847. default: true
  19848. },
  19849. {
  19850. name: "Dynamax",
  19851. height: math.unit(20, "meters")
  19852. },
  19853. ]
  19854. ))
  19855. characterMakers.push(() => makeCharacter(
  19856. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19857. {
  19858. front: {
  19859. height: math.unit(6, "feet"),
  19860. weight: math.unit(110, "lb"),
  19861. name: "Front",
  19862. image: {
  19863. source: "./media/characters/klay/front.svg",
  19864. extra: 962 / 883,
  19865. bottom: 0.04
  19866. }
  19867. },
  19868. back: {
  19869. height: math.unit(6, "feet"),
  19870. weight: math.unit(110, "lb"),
  19871. name: "Back",
  19872. image: {
  19873. source: "./media/characters/klay/back.svg",
  19874. extra: 962 / 883
  19875. }
  19876. },
  19877. beans: {
  19878. height: math.unit(1.15, "feet"),
  19879. name: "Beans",
  19880. image: {
  19881. source: "./media/characters/klay/beans.svg"
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Micro",
  19888. height: math.unit(6, "inches")
  19889. },
  19890. {
  19891. name: "Mini",
  19892. height: math.unit(3, "feet")
  19893. },
  19894. {
  19895. name: "Normal",
  19896. height: math.unit(6, "feet"),
  19897. default: true
  19898. },
  19899. {
  19900. name: "Big",
  19901. height: math.unit(25, "feet")
  19902. },
  19903. {
  19904. name: "Macro",
  19905. height: math.unit(100, "feet")
  19906. },
  19907. {
  19908. name: "Megamacro",
  19909. height: math.unit(400, "feet")
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19915. {
  19916. front: {
  19917. height: math.unit(6, "feet"),
  19918. weight: math.unit(160, "lb"),
  19919. name: "Front",
  19920. image: {
  19921. source: "./media/characters/marcus/front.svg",
  19922. extra: 734 / 676,
  19923. bottom: 0.03
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Little",
  19930. height: math.unit(6, "feet")
  19931. },
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(110, "feet"),
  19935. default: true
  19936. },
  19937. {
  19938. name: "Macro",
  19939. height: math.unit(250, "feet")
  19940. },
  19941. {
  19942. name: "Megamacro",
  19943. height: math.unit(1000, "feet")
  19944. },
  19945. ]
  19946. ))
  19947. characterMakers.push(() => makeCharacter(
  19948. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19949. {
  19950. front: {
  19951. height: math.unit(7, "feet"),
  19952. weight: math.unit(275, "lb"),
  19953. name: "Front",
  19954. image: {
  19955. source: "./media/characters/claude-delroute/front.svg",
  19956. extra: 902/827,
  19957. bottom: 26/928
  19958. }
  19959. },
  19960. side: {
  19961. height: math.unit(7, "feet"),
  19962. weight: math.unit(275, "lb"),
  19963. name: "Side",
  19964. image: {
  19965. source: "./media/characters/claude-delroute/side.svg",
  19966. extra: 908/853,
  19967. bottom: 16/924
  19968. }
  19969. },
  19970. back: {
  19971. height: math.unit(7, "feet"),
  19972. weight: math.unit(275, "lb"),
  19973. name: "Back",
  19974. image: {
  19975. source: "./media/characters/claude-delroute/back.svg",
  19976. extra: 911/829,
  19977. bottom: 18/929
  19978. }
  19979. },
  19980. maw: {
  19981. height: math.unit(0.6407, "meters"),
  19982. name: "Maw",
  19983. image: {
  19984. source: "./media/characters/claude-delroute/maw.svg"
  19985. }
  19986. },
  19987. },
  19988. [
  19989. {
  19990. name: "Normal",
  19991. height: math.unit(7, "feet"),
  19992. default: true
  19993. },
  19994. {
  19995. name: "Lorge",
  19996. height: math.unit(20, "feet")
  19997. },
  19998. ]
  19999. ))
  20000. characterMakers.push(() => makeCharacter(
  20001. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20002. {
  20003. front: {
  20004. height: math.unit(8 + 4 / 12, "feet"),
  20005. weight: math.unit(600, "lb"),
  20006. name: "Front",
  20007. image: {
  20008. source: "./media/characters/dragonien/front.svg",
  20009. extra: 100 / 94,
  20010. bottom: 3.3 / 103.3445
  20011. }
  20012. },
  20013. back: {
  20014. height: math.unit(8 + 4 / 12, "feet"),
  20015. weight: math.unit(600, "lb"),
  20016. name: "Back",
  20017. image: {
  20018. source: "./media/characters/dragonien/back.svg",
  20019. extra: 776 / 746,
  20020. bottom: 6.4 / 782.0616
  20021. }
  20022. },
  20023. foot: {
  20024. height: math.unit(1.54, "feet"),
  20025. name: "Foot",
  20026. image: {
  20027. source: "./media/characters/dragonien/foot.svg",
  20028. }
  20029. },
  20030. },
  20031. [
  20032. {
  20033. name: "Normal",
  20034. height: math.unit(8 + 4 / 12, "feet"),
  20035. default: true
  20036. },
  20037. {
  20038. name: "Macro",
  20039. height: math.unit(200, "feet")
  20040. },
  20041. {
  20042. name: "Megamacro",
  20043. height: math.unit(1, "mile")
  20044. },
  20045. {
  20046. name: "Gigamacro",
  20047. height: math.unit(1000, "miles")
  20048. },
  20049. ]
  20050. ))
  20051. characterMakers.push(() => makeCharacter(
  20052. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20053. {
  20054. front: {
  20055. height: math.unit(5 + 2 / 12, "feet"),
  20056. weight: math.unit(110, "lb"),
  20057. name: "Front",
  20058. image: {
  20059. source: "./media/characters/desta/front.svg",
  20060. extra: 767 / 726,
  20061. bottom: 11.7 / 779
  20062. }
  20063. },
  20064. back: {
  20065. height: math.unit(5 + 2 / 12, "feet"),
  20066. weight: math.unit(110, "lb"),
  20067. name: "Back",
  20068. image: {
  20069. source: "./media/characters/desta/back.svg",
  20070. extra: 777 / 728,
  20071. bottom: 6 / 784
  20072. }
  20073. },
  20074. frontAlt: {
  20075. height: math.unit(5 + 2 / 12, "feet"),
  20076. weight: math.unit(110, "lb"),
  20077. name: "Front",
  20078. image: {
  20079. source: "./media/characters/desta/front-alt.svg",
  20080. extra: 1482 / 1417
  20081. }
  20082. },
  20083. side: {
  20084. height: math.unit(5 + 2 / 12, "feet"),
  20085. weight: math.unit(110, "lb"),
  20086. name: "Side",
  20087. image: {
  20088. source: "./media/characters/desta/side.svg",
  20089. extra: 2579 / 2491,
  20090. bottom: 0.053
  20091. }
  20092. },
  20093. },
  20094. [
  20095. {
  20096. name: "Micro",
  20097. height: math.unit(6, "inches")
  20098. },
  20099. {
  20100. name: "Normal",
  20101. height: math.unit(5 + 2 / 12, "feet"),
  20102. default: true
  20103. },
  20104. {
  20105. name: "Macro",
  20106. height: math.unit(62, "feet")
  20107. },
  20108. {
  20109. name: "Megamacro",
  20110. height: math.unit(1800, "feet")
  20111. },
  20112. ]
  20113. ))
  20114. characterMakers.push(() => makeCharacter(
  20115. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20116. {
  20117. front: {
  20118. height: math.unit(10, "feet"),
  20119. weight: math.unit(700, "lb"),
  20120. name: "Front",
  20121. image: {
  20122. source: "./media/characters/storm-alystar/front.svg",
  20123. extra: 2112 / 1898,
  20124. bottom: 0.034
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Micro",
  20131. height: math.unit(3.5, "inches")
  20132. },
  20133. {
  20134. name: "Normal",
  20135. height: math.unit(10, "feet"),
  20136. default: true
  20137. },
  20138. {
  20139. name: "Macro",
  20140. height: math.unit(400, "feet")
  20141. },
  20142. {
  20143. name: "Deific",
  20144. height: math.unit(60, "miles")
  20145. },
  20146. ]
  20147. ))
  20148. characterMakers.push(() => makeCharacter(
  20149. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20150. {
  20151. front: {
  20152. height: math.unit(2.35, "meters"),
  20153. weight: math.unit(119, "kg"),
  20154. name: "Front",
  20155. image: {
  20156. source: "./media/characters/ilia/front.svg",
  20157. extra: 1285 / 1255,
  20158. bottom: 0.06
  20159. }
  20160. },
  20161. },
  20162. [
  20163. {
  20164. name: "Normal",
  20165. height: math.unit(2.35, "meters")
  20166. },
  20167. {
  20168. name: "Macro",
  20169. height: math.unit(140, "meters"),
  20170. default: true
  20171. },
  20172. {
  20173. name: "Megamacro",
  20174. height: math.unit(100, "miles")
  20175. },
  20176. ]
  20177. ))
  20178. characterMakers.push(() => makeCharacter(
  20179. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20180. {
  20181. front: {
  20182. height: math.unit(6 + 5 / 12, "feet"),
  20183. weight: math.unit(190, "lb"),
  20184. name: "Front",
  20185. image: {
  20186. source: "./media/characters/kingdead/front.svg",
  20187. extra: 1228 / 1177
  20188. }
  20189. },
  20190. },
  20191. [
  20192. {
  20193. name: "Micro",
  20194. height: math.unit(7, "inches")
  20195. },
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(6 + 5 / 12, "feet")
  20199. },
  20200. {
  20201. name: "Macro",
  20202. height: math.unit(150, "feet"),
  20203. default: true
  20204. },
  20205. {
  20206. name: "Megamacro",
  20207. height: math.unit(200, "miles")
  20208. },
  20209. ]
  20210. ))
  20211. characterMakers.push(() => makeCharacter(
  20212. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20213. {
  20214. front: {
  20215. height: math.unit(8, "feet"),
  20216. weight: math.unit(600, "lb"),
  20217. name: "Front",
  20218. image: {
  20219. source: "./media/characters/kyrehx/front.svg",
  20220. extra: 1195 / 1095,
  20221. bottom: 0.034
  20222. }
  20223. },
  20224. },
  20225. [
  20226. {
  20227. name: "Micro",
  20228. height: math.unit(2, "inches")
  20229. },
  20230. {
  20231. name: "Normal",
  20232. height: math.unit(8, "feet"),
  20233. default: true
  20234. },
  20235. {
  20236. name: "Macro",
  20237. height: math.unit(255, "feet")
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20243. {
  20244. front: {
  20245. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20246. weight: math.unit(184, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/xang/front.svg",
  20250. extra: 845 / 755
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Normal",
  20257. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20258. default: true
  20259. },
  20260. {
  20261. name: "Macro",
  20262. height: math.unit(0.935 * 146, "feet")
  20263. },
  20264. {
  20265. name: "Megamacro",
  20266. height: math.unit(0.935 * 3, "miles")
  20267. },
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20272. {
  20273. frontDressed: {
  20274. height: math.unit(5 + 7 / 12, "feet"),
  20275. weight: math.unit(140, "lb"),
  20276. name: "Front (Dressed)",
  20277. image: {
  20278. source: "./media/characters/doc-weardno/front-dressed.svg",
  20279. extra: 263 / 234
  20280. }
  20281. },
  20282. backDressed: {
  20283. height: math.unit(5 + 7 / 12, "feet"),
  20284. weight: math.unit(140, "lb"),
  20285. name: "Back (Dressed)",
  20286. image: {
  20287. source: "./media/characters/doc-weardno/back-dressed.svg",
  20288. extra: 266 / 238
  20289. }
  20290. },
  20291. front: {
  20292. height: math.unit(5 + 7 / 12, "feet"),
  20293. weight: math.unit(140, "lb"),
  20294. name: "Front",
  20295. image: {
  20296. source: "./media/characters/doc-weardno/front.svg",
  20297. extra: 254 / 233
  20298. }
  20299. },
  20300. },
  20301. [
  20302. {
  20303. name: "Micro",
  20304. height: math.unit(3, "inches")
  20305. },
  20306. {
  20307. name: "Normal",
  20308. height: math.unit(5 + 7 / 12, "feet"),
  20309. default: true
  20310. },
  20311. {
  20312. name: "Macro",
  20313. height: math.unit(25, "feet")
  20314. },
  20315. {
  20316. name: "Megamacro",
  20317. height: math.unit(2, "miles")
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(6 + 2 / 12, "feet"),
  20326. weight: math.unit(153, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/seth-whilst/front.svg",
  20330. bottom: 0.07
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Micro",
  20337. height: math.unit(5, "inches")
  20338. },
  20339. {
  20340. name: "Normal",
  20341. height: math.unit(6 + 2 / 12, "feet"),
  20342. default: true
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20348. {
  20349. front: {
  20350. height: math.unit(3, "inches"),
  20351. weight: math.unit(8, "grams"),
  20352. name: "Front",
  20353. image: {
  20354. source: "./media/characters/pocket-jabari/front.svg",
  20355. extra: 1024 / 974,
  20356. bottom: 0.039
  20357. }
  20358. },
  20359. },
  20360. [
  20361. {
  20362. name: "Minimicro",
  20363. height: math.unit(8, "mm")
  20364. },
  20365. {
  20366. name: "Micro",
  20367. height: math.unit(3, "inches"),
  20368. default: true
  20369. },
  20370. {
  20371. name: "Normal",
  20372. height: math.unit(3, "feet")
  20373. },
  20374. ]
  20375. ))
  20376. characterMakers.push(() => makeCharacter(
  20377. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20378. {
  20379. frontDressed: {
  20380. height: math.unit(15, "feet"),
  20381. weight: math.unit(3280, "lb"),
  20382. name: "Front (Dressed)",
  20383. image: {
  20384. source: "./media/characters/sapphy/front-dressed.svg",
  20385. extra: 1951/1654,
  20386. bottom: 194/2145
  20387. },
  20388. form: "anthro",
  20389. default: true
  20390. },
  20391. backDressed: {
  20392. height: math.unit(15, "feet"),
  20393. weight: math.unit(3280, "lb"),
  20394. name: "Back (Dressed)",
  20395. image: {
  20396. source: "./media/characters/sapphy/back-dressed.svg",
  20397. extra: 2058/1918,
  20398. bottom: 125/2183
  20399. },
  20400. form: "anthro"
  20401. },
  20402. frontNude: {
  20403. height: math.unit(15, "feet"),
  20404. weight: math.unit(3280, "lb"),
  20405. name: "Front (Nude)",
  20406. image: {
  20407. source: "./media/characters/sapphy/front-nude.svg",
  20408. extra: 1951/1654,
  20409. bottom: 194/2145
  20410. },
  20411. form: "anthro"
  20412. },
  20413. backNude: {
  20414. height: math.unit(15, "feet"),
  20415. weight: math.unit(3280, "lb"),
  20416. name: "Back (Nude)",
  20417. image: {
  20418. source: "./media/characters/sapphy/back-nude.svg",
  20419. extra: 2058/1918,
  20420. bottom: 125/2183
  20421. },
  20422. form: "anthro"
  20423. },
  20424. full: {
  20425. height: math.unit(15, "feet"),
  20426. weight: math.unit(3280, "lb"),
  20427. name: "Full",
  20428. image: {
  20429. source: "./media/characters/sapphy/full.svg",
  20430. extra: 1396/1317,
  20431. bottom: 44/1440
  20432. },
  20433. form: "anthro"
  20434. },
  20435. dick: {
  20436. height: math.unit(3.8, "feet"),
  20437. name: "Dick",
  20438. image: {
  20439. source: "./media/characters/sapphy/dick.svg"
  20440. },
  20441. form: "anthro"
  20442. },
  20443. feral: {
  20444. height: math.unit(35, "feet"),
  20445. weight: math.unit(160, "tons"),
  20446. name: "Feral",
  20447. image: {
  20448. source: "./media/characters/sapphy/feral.svg",
  20449. extra: 1050/573,
  20450. bottom: 60/1110
  20451. },
  20452. form: "feral",
  20453. default: true
  20454. },
  20455. },
  20456. [
  20457. {
  20458. name: "Normal",
  20459. height: math.unit(15, "feet"),
  20460. form: "anthro"
  20461. },
  20462. {
  20463. name: "Casual Macro",
  20464. height: math.unit(120, "feet"),
  20465. form: "anthro"
  20466. },
  20467. {
  20468. name: "Macro",
  20469. height: math.unit(2150, "feet"),
  20470. default: true,
  20471. form: "anthro"
  20472. },
  20473. {
  20474. name: "Megamacro",
  20475. height: math.unit(8, "miles"),
  20476. form: "anthro"
  20477. },
  20478. {
  20479. name: "Galaxy Mom",
  20480. height: math.unit(6, "megalightyears"),
  20481. form: "anthro"
  20482. },
  20483. {
  20484. name: "Normal",
  20485. height: math.unit(35, "feet"),
  20486. form: "feral",
  20487. default: true
  20488. },
  20489. {
  20490. name: "Macro",
  20491. height: math.unit(300, "feet"),
  20492. form: "feral"
  20493. },
  20494. {
  20495. name: "Galaxy Mom",
  20496. height: math.unit(10, "megalightyears"),
  20497. form: "feral"
  20498. },
  20499. ],
  20500. {
  20501. "anthro": {
  20502. name: "Anthro",
  20503. default: true
  20504. },
  20505. "feral": {
  20506. name: "Feral"
  20507. }
  20508. }
  20509. ))
  20510. characterMakers.push(() => makeCharacter(
  20511. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20512. {
  20513. hyenaFront: {
  20514. height: math.unit(6, "feet"),
  20515. weight: math.unit(190, "lb"),
  20516. name: "Front",
  20517. image: {
  20518. source: "./media/characters/kiro/hyena-front.svg",
  20519. extra: 927/839,
  20520. bottom: 91/1018
  20521. },
  20522. form: "hyena",
  20523. default: true
  20524. },
  20525. front: {
  20526. height: math.unit(6, "feet"),
  20527. weight: math.unit(170, "lb"),
  20528. name: "Front",
  20529. image: {
  20530. source: "./media/characters/kiro/front.svg",
  20531. extra: 1064 / 1012,
  20532. bottom: 0.052
  20533. },
  20534. form: "folf",
  20535. default: true
  20536. },
  20537. },
  20538. [
  20539. {
  20540. name: "Micro",
  20541. height: math.unit(6, "inches"),
  20542. form: "folf"
  20543. },
  20544. {
  20545. name: "Normal",
  20546. height: math.unit(6, "feet"),
  20547. form: "folf",
  20548. default: true
  20549. },
  20550. {
  20551. name: "Macro",
  20552. height: math.unit(72, "feet"),
  20553. form: "folf"
  20554. },
  20555. {
  20556. name: "Micro",
  20557. height: math.unit(6, "inches"),
  20558. form: "hyena"
  20559. },
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(6, "feet"),
  20563. form: "hyena",
  20564. default: true
  20565. },
  20566. {
  20567. name: "Macro",
  20568. height: math.unit(72, "feet"),
  20569. form: "hyena"
  20570. },
  20571. ],
  20572. {
  20573. "hyena": {
  20574. name: "Hyena",
  20575. default: true
  20576. },
  20577. "folf": {
  20578. name: "Folf",
  20579. },
  20580. }
  20581. ))
  20582. characterMakers.push(() => makeCharacter(
  20583. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20584. {
  20585. front: {
  20586. height: math.unit(5 + 9 / 12, "feet"),
  20587. weight: math.unit(175, "lb"),
  20588. name: "Front",
  20589. image: {
  20590. source: "./media/characters/irishfox/front.svg",
  20591. extra: 1912 / 1680,
  20592. bottom: 0.02
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "Nano",
  20599. height: math.unit(1, "mm")
  20600. },
  20601. {
  20602. name: "Micro",
  20603. height: math.unit(2, "inches")
  20604. },
  20605. {
  20606. name: "Normal",
  20607. height: math.unit(5 + 9 / 12, "feet"),
  20608. default: true
  20609. },
  20610. {
  20611. name: "Macro",
  20612. height: math.unit(45, "feet")
  20613. },
  20614. ]
  20615. ))
  20616. characterMakers.push(() => makeCharacter(
  20617. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20618. {
  20619. front: {
  20620. height: math.unit(6 + 1 / 12, "feet"),
  20621. weight: math.unit(75, "lb"),
  20622. name: "Front",
  20623. image: {
  20624. source: "./media/characters/aronai-sieyes/front.svg",
  20625. extra: 1532/1450,
  20626. bottom: 42/1574
  20627. }
  20628. },
  20629. side: {
  20630. height: math.unit(6 + 1 / 12, "feet"),
  20631. weight: math.unit(75, "lb"),
  20632. name: "Side",
  20633. image: {
  20634. source: "./media/characters/aronai-sieyes/side.svg",
  20635. extra: 1422/1365,
  20636. bottom: 148/1570
  20637. }
  20638. },
  20639. back: {
  20640. height: math.unit(6 + 1 / 12, "feet"),
  20641. weight: math.unit(75, "lb"),
  20642. name: "Back",
  20643. image: {
  20644. source: "./media/characters/aronai-sieyes/back.svg",
  20645. extra: 1526/1464,
  20646. bottom: 51/1577
  20647. }
  20648. },
  20649. dressed: {
  20650. height: math.unit(6 + 1 / 12, "feet"),
  20651. weight: math.unit(75, "lb"),
  20652. name: "Dressed",
  20653. image: {
  20654. source: "./media/characters/aronai-sieyes/dressed.svg",
  20655. extra: 1559/1483,
  20656. bottom: 39/1598
  20657. }
  20658. },
  20659. slit: {
  20660. height: math.unit(1.3, "feet"),
  20661. name: "Slit",
  20662. image: {
  20663. source: "./media/characters/aronai-sieyes/slit.svg"
  20664. }
  20665. },
  20666. slitSpread: {
  20667. height: math.unit(0.9, "feet"),
  20668. name: "Slit (Spread)",
  20669. image: {
  20670. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20671. }
  20672. },
  20673. rump: {
  20674. height: math.unit(1.3, "feet"),
  20675. name: "Rump",
  20676. image: {
  20677. source: "./media/characters/aronai-sieyes/rump.svg"
  20678. }
  20679. },
  20680. maw: {
  20681. height: math.unit(1.25, "feet"),
  20682. name: "Maw",
  20683. image: {
  20684. source: "./media/characters/aronai-sieyes/maw.svg"
  20685. }
  20686. },
  20687. feral: {
  20688. height: math.unit(18, "feet"),
  20689. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20690. name: "Feral",
  20691. image: {
  20692. source: "./media/characters/aronai-sieyes/feral.svg",
  20693. extra: 1530 / 1240,
  20694. bottom: 0.035
  20695. }
  20696. },
  20697. },
  20698. [
  20699. {
  20700. name: "Micro",
  20701. height: math.unit(2, "inches")
  20702. },
  20703. {
  20704. name: "Normal",
  20705. height: math.unit(6 + 1 / 12, "feet"),
  20706. default: true
  20707. }
  20708. ]
  20709. ))
  20710. characterMakers.push(() => makeCharacter(
  20711. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20712. {
  20713. front: {
  20714. height: math.unit(12, "feet"),
  20715. weight: math.unit(410, "kg"),
  20716. name: "Front",
  20717. image: {
  20718. source: "./media/characters/xuna/front.svg",
  20719. extra: 2184 / 1980
  20720. }
  20721. },
  20722. side: {
  20723. height: math.unit(12, "feet"),
  20724. weight: math.unit(410, "kg"),
  20725. name: "Side",
  20726. image: {
  20727. source: "./media/characters/xuna/side.svg",
  20728. extra: 2184 / 1980
  20729. }
  20730. },
  20731. back: {
  20732. height: math.unit(12, "feet"),
  20733. weight: math.unit(410, "kg"),
  20734. name: "Back",
  20735. image: {
  20736. source: "./media/characters/xuna/back.svg",
  20737. extra: 2184 / 1980
  20738. }
  20739. },
  20740. },
  20741. [
  20742. {
  20743. name: "Nano glow",
  20744. height: math.unit(10, "nm")
  20745. },
  20746. {
  20747. name: "Micro floof",
  20748. height: math.unit(0.3, "m")
  20749. },
  20750. {
  20751. name: "Huggable softy boi",
  20752. height: math.unit(3.6576, "m"),
  20753. default: true
  20754. },
  20755. {
  20756. name: "Admirable floof",
  20757. height: math.unit(80, "meters")
  20758. },
  20759. {
  20760. name: "Gentle macro",
  20761. height: math.unit(300, "meters")
  20762. },
  20763. {
  20764. name: "Very careful floof",
  20765. height: math.unit(3200, "meters")
  20766. },
  20767. {
  20768. name: "The mega floof",
  20769. height: math.unit(36000, "meters")
  20770. },
  20771. {
  20772. name: "Giga-fur-Wicker",
  20773. height: math.unit(4800000, "meters")
  20774. },
  20775. {
  20776. name: "Licky world",
  20777. height: math.unit(20000000, "meters")
  20778. },
  20779. {
  20780. name: "Floofy cyan sun",
  20781. height: math.unit(1500000000, "meters")
  20782. },
  20783. {
  20784. name: "Milky Wicker",
  20785. height: math.unit(1000000000000000000000, "meters")
  20786. },
  20787. {
  20788. name: "The observing Wicker",
  20789. height: math.unit(999999999999999999999999999, "meters")
  20790. },
  20791. ]
  20792. ))
  20793. characterMakers.push(() => makeCharacter(
  20794. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20795. {
  20796. front: {
  20797. height: math.unit(5 + 9 / 12, "feet"),
  20798. weight: math.unit(150, "lb"),
  20799. name: "Front",
  20800. image: {
  20801. source: "./media/characters/arokha-sieyes/front.svg",
  20802. extra: 1425 / 1284,
  20803. bottom: 0.05
  20804. }
  20805. },
  20806. },
  20807. [
  20808. {
  20809. name: "Normal",
  20810. height: math.unit(5 + 9 / 12, "feet")
  20811. },
  20812. {
  20813. name: "Macro",
  20814. height: math.unit(30, "meters"),
  20815. default: true
  20816. },
  20817. ]
  20818. ))
  20819. characterMakers.push(() => makeCharacter(
  20820. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20821. {
  20822. front: {
  20823. height: math.unit(6, "feet"),
  20824. weight: math.unit(180, "lb"),
  20825. name: "Front",
  20826. image: {
  20827. source: "./media/characters/arokh-sieyes/front.svg",
  20828. extra: 1830 / 1769,
  20829. bottom: 0.01
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Normal",
  20836. height: math.unit(6, "feet")
  20837. },
  20838. {
  20839. name: "Macro",
  20840. height: math.unit(30, "meters"),
  20841. default: true
  20842. },
  20843. ]
  20844. ))
  20845. characterMakers.push(() => makeCharacter(
  20846. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20847. {
  20848. side: {
  20849. height: math.unit(13 + 1 / 12, "feet"),
  20850. weight: math.unit(8.5, "tonnes"),
  20851. preyCapacity: math.unit(36, "people"),
  20852. name: "Side",
  20853. image: {
  20854. source: "./media/characters/goldeneye/side.svg",
  20855. extra: 1139/741,
  20856. bottom: 98/1237
  20857. }
  20858. },
  20859. front: {
  20860. height: math.unit(5.1, "feet"),
  20861. weight: math.unit(8.5, "tonnes"),
  20862. preyCapacity: math.unit(36, "people"),
  20863. name: "Front",
  20864. image: {
  20865. source: "./media/characters/goldeneye/front.svg",
  20866. extra: 635/365,
  20867. bottom: 598/1233
  20868. }
  20869. },
  20870. maw: {
  20871. height: math.unit(6.6, "feet"),
  20872. name: "Maw",
  20873. image: {
  20874. source: "./media/characters/goldeneye/maw.svg"
  20875. }
  20876. },
  20877. headFront: {
  20878. height: math.unit(8, "feet"),
  20879. name: "Head (Front)",
  20880. image: {
  20881. source: "./media/characters/goldeneye/head-front.svg"
  20882. }
  20883. },
  20884. headSide: {
  20885. height: math.unit(6, "feet"),
  20886. name: "Head (Side)",
  20887. image: {
  20888. source: "./media/characters/goldeneye/head-side.svg"
  20889. }
  20890. },
  20891. headBack: {
  20892. height: math.unit(8, "feet"),
  20893. name: "Head (Back)",
  20894. image: {
  20895. source: "./media/characters/goldeneye/head-back.svg"
  20896. }
  20897. },
  20898. paw: {
  20899. height: math.unit(3.4, "feet"),
  20900. name: "Paw",
  20901. image: {
  20902. source: "./media/characters/goldeneye/paw.svg"
  20903. }
  20904. },
  20905. toering: {
  20906. height: math.unit(0.45, "feet"),
  20907. name: "Toering",
  20908. image: {
  20909. source: "./media/characters/goldeneye/toering.svg"
  20910. }
  20911. },
  20912. eyes: {
  20913. height: math.unit(0.5, "feet"),
  20914. name: "Eyes",
  20915. image: {
  20916. source: "./media/characters/goldeneye/eyes.svg"
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Normal",
  20923. height: math.unit(13 + 1 / 12, "feet"),
  20924. default: true
  20925. },
  20926. ]
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20930. {
  20931. front: {
  20932. height: math.unit(6 + 1 / 12, "feet"),
  20933. weight: math.unit(210, "lb"),
  20934. name: "Front",
  20935. image: {
  20936. source: "./media/characters/leonardo-lycheborne/front.svg",
  20937. extra: 776/723,
  20938. bottom: 34/810
  20939. }
  20940. },
  20941. side: {
  20942. height: math.unit(6 + 1 / 12, "feet"),
  20943. weight: math.unit(210, "lb"),
  20944. name: "Side",
  20945. image: {
  20946. source: "./media/characters/leonardo-lycheborne/side.svg",
  20947. extra: 780/728,
  20948. bottom: 12/792
  20949. }
  20950. },
  20951. back: {
  20952. height: math.unit(6 + 1 / 12, "feet"),
  20953. weight: math.unit(210, "lb"),
  20954. name: "Back",
  20955. image: {
  20956. source: "./media/characters/leonardo-lycheborne/back.svg",
  20957. extra: 775/721,
  20958. bottom: 17/792
  20959. }
  20960. },
  20961. hand: {
  20962. height: math.unit(1.08, "feet"),
  20963. name: "Hand",
  20964. image: {
  20965. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20966. }
  20967. },
  20968. foot: {
  20969. height: math.unit(1.32, "feet"),
  20970. name: "Foot",
  20971. image: {
  20972. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20973. }
  20974. },
  20975. maw: {
  20976. height: math.unit(1, "feet"),
  20977. name: "Maw",
  20978. image: {
  20979. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20980. }
  20981. },
  20982. were: {
  20983. height: math.unit(20, "feet"),
  20984. weight: math.unit(7800, "lb"),
  20985. name: "Were",
  20986. image: {
  20987. source: "./media/characters/leonardo-lycheborne/were.svg",
  20988. extra: 1224/1165,
  20989. bottom: 72/1296
  20990. }
  20991. },
  20992. feral: {
  20993. height: math.unit(7.5, "feet"),
  20994. weight: math.unit(600, "lb"),
  20995. name: "Feral",
  20996. image: {
  20997. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20998. extra: 797/702,
  20999. bottom: 139/936
  21000. }
  21001. },
  21002. taur: {
  21003. height: math.unit(11, "feet"),
  21004. weight: math.unit(3300, "lb"),
  21005. name: "Taur",
  21006. image: {
  21007. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21008. extra: 1271/1197,
  21009. bottom: 47/1318
  21010. }
  21011. },
  21012. barghest: {
  21013. height: math.unit(11, "feet"),
  21014. weight: math.unit(1300, "lb"),
  21015. name: "Barghest",
  21016. image: {
  21017. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21018. extra: 1291/1204,
  21019. bottom: 37/1328
  21020. }
  21021. },
  21022. dick: {
  21023. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21024. name: "Dick",
  21025. image: {
  21026. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21027. }
  21028. },
  21029. dickWere: {
  21030. height: math.unit((20) / 3.8, "feet"),
  21031. name: "Dick (Were)",
  21032. image: {
  21033. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21034. }
  21035. },
  21036. },
  21037. [
  21038. {
  21039. name: "Normal",
  21040. height: math.unit(6 + 1 / 12, "feet"),
  21041. default: true
  21042. },
  21043. ]
  21044. ))
  21045. characterMakers.push(() => makeCharacter(
  21046. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21047. {
  21048. front: {
  21049. height: math.unit(10, "feet"),
  21050. weight: math.unit(350, "lb"),
  21051. name: "Front",
  21052. image: {
  21053. source: "./media/characters/jet/front.svg",
  21054. extra: 2050 / 1980,
  21055. bottom: 0.013
  21056. }
  21057. },
  21058. back: {
  21059. height: math.unit(10, "feet"),
  21060. weight: math.unit(350, "lb"),
  21061. name: "Back",
  21062. image: {
  21063. source: "./media/characters/jet/back.svg",
  21064. extra: 2050 / 1980,
  21065. bottom: 0.013
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Micro",
  21072. height: math.unit(6, "inches")
  21073. },
  21074. {
  21075. name: "Normal",
  21076. height: math.unit(10, "feet"),
  21077. default: true
  21078. },
  21079. {
  21080. name: "Macro",
  21081. height: math.unit(100, "feet")
  21082. },
  21083. ]
  21084. ))
  21085. characterMakers.push(() => makeCharacter(
  21086. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21087. {
  21088. front: {
  21089. height: math.unit(15, "feet"),
  21090. weight: math.unit(2800, "lb"),
  21091. name: "Front",
  21092. image: {
  21093. source: "./media/characters/tanarath/front.svg",
  21094. extra: 2392 / 2220,
  21095. bottom: 0.03
  21096. }
  21097. },
  21098. back: {
  21099. height: math.unit(15, "feet"),
  21100. weight: math.unit(2800, "lb"),
  21101. name: "Back",
  21102. image: {
  21103. source: "./media/characters/tanarath/back.svg",
  21104. extra: 2392 / 2220,
  21105. bottom: 0.03
  21106. }
  21107. },
  21108. },
  21109. [
  21110. {
  21111. name: "Normal",
  21112. height: math.unit(15, "feet"),
  21113. default: true
  21114. },
  21115. ]
  21116. ))
  21117. characterMakers.push(() => makeCharacter(
  21118. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21119. {
  21120. front: {
  21121. height: math.unit(7 + 1 / 12, "feet"),
  21122. weight: math.unit(175, "lb"),
  21123. name: "Front",
  21124. image: {
  21125. source: "./media/characters/patty-cattybatty/front.svg",
  21126. extra: 908 / 874,
  21127. bottom: 0.025
  21128. }
  21129. },
  21130. },
  21131. [
  21132. {
  21133. name: "Micro",
  21134. height: math.unit(1, "inch")
  21135. },
  21136. {
  21137. name: "Normal",
  21138. height: math.unit(7 + 1 / 12, "feet")
  21139. },
  21140. {
  21141. name: "Mini Macro",
  21142. height: math.unit(155, "feet")
  21143. },
  21144. {
  21145. name: "Macro",
  21146. height: math.unit(1077, "feet")
  21147. },
  21148. {
  21149. name: "Mega Macro",
  21150. height: math.unit(47650, "feet"),
  21151. default: true
  21152. },
  21153. {
  21154. name: "Giga Macro",
  21155. height: math.unit(440, "miles")
  21156. },
  21157. {
  21158. name: "Tera Macro",
  21159. height: math.unit(8700, "miles")
  21160. },
  21161. {
  21162. name: "Planetary Macro",
  21163. height: math.unit(32700, "miles")
  21164. },
  21165. {
  21166. name: "Solar Macro",
  21167. height: math.unit(550000, "miles")
  21168. },
  21169. {
  21170. name: "Celestial Macro",
  21171. height: math.unit(2.5, "AU")
  21172. },
  21173. ]
  21174. ))
  21175. characterMakers.push(() => makeCharacter(
  21176. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21177. {
  21178. front: {
  21179. height: math.unit(4 + 5 / 12, "feet"),
  21180. weight: math.unit(90, "lb"),
  21181. name: "Front",
  21182. image: {
  21183. source: "./media/characters/cappu/front.svg",
  21184. extra: 1247 / 1152,
  21185. bottom: 0.012
  21186. }
  21187. },
  21188. },
  21189. [
  21190. {
  21191. name: "Normal",
  21192. height: math.unit(4 + 5 / 12, "feet"),
  21193. default: true
  21194. },
  21195. ]
  21196. ))
  21197. characterMakers.push(() => makeCharacter(
  21198. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21199. {
  21200. frontDressed: {
  21201. height: math.unit(70, "cm"),
  21202. weight: math.unit(6, "kg"),
  21203. name: "Front (Dressed)",
  21204. image: {
  21205. source: "./media/characters/sebi/front-dressed.svg",
  21206. extra: 713.5 / 686.5,
  21207. bottom: 0.003
  21208. }
  21209. },
  21210. front: {
  21211. height: math.unit(70, "cm"),
  21212. weight: math.unit(5, "kg"),
  21213. name: "Front",
  21214. image: {
  21215. source: "./media/characters/sebi/front.svg",
  21216. extra: 713.5 / 686.5,
  21217. bottom: 0.003
  21218. }
  21219. }
  21220. },
  21221. [
  21222. {
  21223. name: "Normal",
  21224. height: math.unit(70, "cm"),
  21225. default: true
  21226. },
  21227. {
  21228. name: "Macro",
  21229. height: math.unit(8, "meters")
  21230. },
  21231. ]
  21232. ))
  21233. characterMakers.push(() => makeCharacter(
  21234. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21235. {
  21236. front: {
  21237. height: math.unit(6, "feet"),
  21238. weight: math.unit(150, "lb"),
  21239. name: "Front",
  21240. image: {
  21241. source: "./media/characters/typhek/front.svg",
  21242. extra: 1948 / 1929,
  21243. bottom: 0.025
  21244. }
  21245. },
  21246. side: {
  21247. height: math.unit(6, "feet"),
  21248. weight: math.unit(150, "lb"),
  21249. name: "Side",
  21250. image: {
  21251. source: "./media/characters/typhek/side.svg",
  21252. extra: 2034 / 2010,
  21253. bottom: 0.003
  21254. }
  21255. },
  21256. back: {
  21257. height: math.unit(6, "feet"),
  21258. weight: math.unit(150, "lb"),
  21259. name: "Back",
  21260. image: {
  21261. source: "./media/characters/typhek/back.svg",
  21262. extra: 2005 / 1978,
  21263. bottom: 0.004
  21264. }
  21265. },
  21266. palm: {
  21267. height: math.unit(1.2, "feet"),
  21268. name: "Palm",
  21269. image: {
  21270. source: "./media/characters/typhek/palm.svg"
  21271. }
  21272. },
  21273. fist: {
  21274. height: math.unit(1.1, "feet"),
  21275. name: "Fist",
  21276. image: {
  21277. source: "./media/characters/typhek/fist.svg"
  21278. }
  21279. },
  21280. foot: {
  21281. height: math.unit(1.57, "feet"),
  21282. name: "Foot",
  21283. image: {
  21284. source: "./media/characters/typhek/foot.svg"
  21285. }
  21286. },
  21287. sole: {
  21288. height: math.unit(2.05, "feet"),
  21289. name: "Sole",
  21290. image: {
  21291. source: "./media/characters/typhek/sole.svg"
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Macro",
  21298. height: math.unit(40, "stories"),
  21299. default: true
  21300. },
  21301. {
  21302. name: "Megamacro",
  21303. height: math.unit(1, "mile")
  21304. },
  21305. {
  21306. name: "Gigamacro",
  21307. height: math.unit(4000, "solarradii")
  21308. },
  21309. {
  21310. name: "Universal",
  21311. height: math.unit(1.1, "universes")
  21312. }
  21313. ]
  21314. ))
  21315. characterMakers.push(() => makeCharacter(
  21316. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21317. {
  21318. side: {
  21319. height: math.unit(5 + 7 / 12, "feet"),
  21320. weight: math.unit(150, "lb"),
  21321. name: "Side",
  21322. image: {
  21323. source: "./media/characters/kassy/side.svg",
  21324. extra: 1280 / 1225,
  21325. bottom: 0.002
  21326. }
  21327. },
  21328. front: {
  21329. height: math.unit(5 + 7 / 12, "feet"),
  21330. weight: math.unit(150, "lb"),
  21331. name: "Front",
  21332. image: {
  21333. source: "./media/characters/kassy/front.svg",
  21334. extra: 1280 / 1225,
  21335. bottom: 0.025
  21336. }
  21337. },
  21338. back: {
  21339. height: math.unit(5 + 7 / 12, "feet"),
  21340. weight: math.unit(150, "lb"),
  21341. name: "Back",
  21342. image: {
  21343. source: "./media/characters/kassy/back.svg",
  21344. extra: 1280 / 1225,
  21345. bottom: 0.002
  21346. }
  21347. },
  21348. foot: {
  21349. height: math.unit(1.266, "feet"),
  21350. name: "Foot",
  21351. image: {
  21352. source: "./media/characters/kassy/foot.svg"
  21353. }
  21354. },
  21355. },
  21356. [
  21357. {
  21358. name: "Normal",
  21359. height: math.unit(5 + 7 / 12, "feet")
  21360. },
  21361. {
  21362. name: "Macro",
  21363. height: math.unit(137, "feet"),
  21364. default: true
  21365. },
  21366. {
  21367. name: "Megamacro",
  21368. height: math.unit(1, "mile")
  21369. },
  21370. ]
  21371. ))
  21372. characterMakers.push(() => makeCharacter(
  21373. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21374. {
  21375. front: {
  21376. height: math.unit(6 + 1 / 12, "feet"),
  21377. weight: math.unit(200, "lb"),
  21378. name: "Front",
  21379. image: {
  21380. source: "./media/characters/neil/front.svg",
  21381. extra: 1326 / 1250,
  21382. bottom: 0.023
  21383. }
  21384. },
  21385. },
  21386. [
  21387. {
  21388. name: "Normal",
  21389. height: math.unit(6 + 1 / 12, "feet"),
  21390. default: true
  21391. },
  21392. {
  21393. name: "Macro",
  21394. height: math.unit(200, "feet")
  21395. },
  21396. ]
  21397. ))
  21398. characterMakers.push(() => makeCharacter(
  21399. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21400. {
  21401. front: {
  21402. height: math.unit(5 + 9 / 12, "feet"),
  21403. weight: math.unit(190, "lb"),
  21404. name: "Front",
  21405. image: {
  21406. source: "./media/characters/atticus/front.svg",
  21407. extra: 2934 / 2785,
  21408. bottom: 0.025
  21409. }
  21410. },
  21411. },
  21412. [
  21413. {
  21414. name: "Normal",
  21415. height: math.unit(5 + 9 / 12, "feet"),
  21416. default: true
  21417. },
  21418. {
  21419. name: "Macro",
  21420. height: math.unit(180, "feet")
  21421. },
  21422. ]
  21423. ))
  21424. characterMakers.push(() => makeCharacter(
  21425. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21426. {
  21427. side: {
  21428. height: math.unit(9, "feet"),
  21429. weight: math.unit(650, "lb"),
  21430. name: "Side",
  21431. image: {
  21432. source: "./media/characters/milo/side.svg",
  21433. extra: 2644 / 2310,
  21434. bottom: 0.032
  21435. }
  21436. },
  21437. },
  21438. [
  21439. {
  21440. name: "Normal",
  21441. height: math.unit(9, "feet"),
  21442. default: true
  21443. },
  21444. {
  21445. name: "Macro",
  21446. height: math.unit(300, "feet")
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21452. {
  21453. side: {
  21454. height: math.unit(8, "meters"),
  21455. weight: math.unit(90000, "kg"),
  21456. name: "Side",
  21457. image: {
  21458. source: "./media/characters/ijzer/side.svg",
  21459. extra: 2756 / 1600,
  21460. bottom: 0.01
  21461. }
  21462. },
  21463. },
  21464. [
  21465. {
  21466. name: "Small",
  21467. height: math.unit(3, "meters")
  21468. },
  21469. {
  21470. name: "Normal",
  21471. height: math.unit(8, "meters"),
  21472. default: true
  21473. },
  21474. {
  21475. name: "Normal+",
  21476. height: math.unit(10, "meters")
  21477. },
  21478. {
  21479. name: "Bigger",
  21480. height: math.unit(24, "meters")
  21481. },
  21482. {
  21483. name: "Huge",
  21484. height: math.unit(80, "meters")
  21485. },
  21486. ]
  21487. ))
  21488. characterMakers.push(() => makeCharacter(
  21489. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21490. {
  21491. front: {
  21492. height: math.unit(6 + 2 / 12, "feet"),
  21493. weight: math.unit(153, "lb"),
  21494. name: "Front",
  21495. image: {
  21496. source: "./media/characters/luca-cervicum/front.svg",
  21497. extra: 370 / 327,
  21498. bottom: 0.015
  21499. }
  21500. },
  21501. back: {
  21502. height: math.unit(6 + 2 / 12, "feet"),
  21503. weight: math.unit(153, "lb"),
  21504. name: "Back",
  21505. image: {
  21506. source: "./media/characters/luca-cervicum/back.svg",
  21507. extra: 367 / 333,
  21508. bottom: 0.005
  21509. }
  21510. },
  21511. frontGear: {
  21512. height: math.unit(6 + 2 / 12, "feet"),
  21513. weight: math.unit(173, "lb"),
  21514. name: "Front (Gear)",
  21515. image: {
  21516. source: "./media/characters/luca-cervicum/front-gear.svg",
  21517. extra: 377 / 333,
  21518. bottom: 0.006
  21519. }
  21520. },
  21521. },
  21522. [
  21523. {
  21524. name: "Normal",
  21525. height: math.unit(6 + 2 / 12, "feet"),
  21526. default: true
  21527. },
  21528. ]
  21529. ))
  21530. characterMakers.push(() => makeCharacter(
  21531. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21532. {
  21533. front: {
  21534. height: math.unit(6 + 1 / 12, "feet"),
  21535. weight: math.unit(304, "lb"),
  21536. name: "Front",
  21537. image: {
  21538. source: "./media/characters/oliver/front.svg",
  21539. extra: 157 / 143,
  21540. bottom: 0.08
  21541. }
  21542. },
  21543. },
  21544. [
  21545. {
  21546. name: "Normal",
  21547. height: math.unit(6 + 1 / 12, "feet"),
  21548. default: true
  21549. },
  21550. ]
  21551. ))
  21552. characterMakers.push(() => makeCharacter(
  21553. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21554. {
  21555. front: {
  21556. height: math.unit(5 + 7 / 12, "feet"),
  21557. weight: math.unit(140, "lb"),
  21558. name: "Front",
  21559. image: {
  21560. source: "./media/characters/shane/front.svg",
  21561. extra: 304 / 289,
  21562. bottom: 0.005
  21563. }
  21564. },
  21565. },
  21566. [
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(5 + 7 / 12, "feet"),
  21570. default: true
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21576. {
  21577. front: {
  21578. height: math.unit(5 + 9 / 12, "feet"),
  21579. weight: math.unit(178, "lb"),
  21580. name: "Front",
  21581. image: {
  21582. source: "./media/characters/shin/front.svg",
  21583. extra: 159 / 151,
  21584. bottom: 0.015
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(5 + 9 / 12, "feet"),
  21592. default: true
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21598. {
  21599. front: {
  21600. height: math.unit(5 + 10 / 12, "feet"),
  21601. weight: math.unit(168, "lb"),
  21602. name: "Front",
  21603. image: {
  21604. source: "./media/characters/xerxes/front.svg",
  21605. extra: 282 / 260,
  21606. bottom: 0.045
  21607. }
  21608. },
  21609. },
  21610. [
  21611. {
  21612. name: "Normal",
  21613. height: math.unit(5 + 10 / 12, "feet"),
  21614. default: true
  21615. },
  21616. ]
  21617. ))
  21618. characterMakers.push(() => makeCharacter(
  21619. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21620. {
  21621. front: {
  21622. height: math.unit(6 + 7 / 12, "feet"),
  21623. weight: math.unit(208, "lb"),
  21624. name: "Front",
  21625. image: {
  21626. source: "./media/characters/chaska/front.svg",
  21627. extra: 332 / 319,
  21628. bottom: 0.015
  21629. }
  21630. },
  21631. },
  21632. [
  21633. {
  21634. name: "Normal",
  21635. height: math.unit(6 + 7 / 12, "feet"),
  21636. default: true
  21637. },
  21638. ]
  21639. ))
  21640. characterMakers.push(() => makeCharacter(
  21641. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21642. {
  21643. front: {
  21644. height: math.unit(5 + 8 / 12, "feet"),
  21645. weight: math.unit(208, "lb"),
  21646. name: "Front",
  21647. image: {
  21648. source: "./media/characters/enuk/front.svg",
  21649. extra: 437 / 406,
  21650. bottom: 0.02
  21651. }
  21652. },
  21653. },
  21654. [
  21655. {
  21656. name: "Normal",
  21657. height: math.unit(5 + 8 / 12, "feet"),
  21658. default: true
  21659. },
  21660. ]
  21661. ))
  21662. characterMakers.push(() => makeCharacter(
  21663. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21664. {
  21665. front: {
  21666. height: math.unit(5 + 10 / 12, "feet"),
  21667. weight: math.unit(252, "lb"),
  21668. name: "Front",
  21669. image: {
  21670. source: "./media/characters/bruun/front.svg",
  21671. extra: 197 / 187,
  21672. bottom: 0.012
  21673. }
  21674. },
  21675. },
  21676. [
  21677. {
  21678. name: "Normal",
  21679. height: math.unit(5 + 10 / 12, "feet"),
  21680. default: true
  21681. },
  21682. ]
  21683. ))
  21684. characterMakers.push(() => makeCharacter(
  21685. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21686. {
  21687. front: {
  21688. height: math.unit(6 + 10 / 12, "feet"),
  21689. weight: math.unit(255, "lb"),
  21690. name: "Front",
  21691. image: {
  21692. source: "./media/characters/alexeev/front.svg",
  21693. extra: 213 / 200,
  21694. bottom: 0.05
  21695. }
  21696. },
  21697. },
  21698. [
  21699. {
  21700. name: "Normal",
  21701. height: math.unit(6 + 10 / 12, "feet"),
  21702. default: true
  21703. },
  21704. ]
  21705. ))
  21706. characterMakers.push(() => makeCharacter(
  21707. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21708. {
  21709. front: {
  21710. height: math.unit(2 + 8 / 12, "feet"),
  21711. weight: math.unit(22, "lb"),
  21712. name: "Front",
  21713. image: {
  21714. source: "./media/characters/evelyn/front.svg",
  21715. extra: 208 / 180
  21716. }
  21717. },
  21718. },
  21719. [
  21720. {
  21721. name: "Normal",
  21722. height: math.unit(2 + 8 / 12, "feet"),
  21723. default: true
  21724. },
  21725. ]
  21726. ))
  21727. characterMakers.push(() => makeCharacter(
  21728. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21729. {
  21730. front: {
  21731. height: math.unit(5 + 9 / 12, "feet"),
  21732. weight: math.unit(139, "lb"),
  21733. name: "Front",
  21734. image: {
  21735. source: "./media/characters/inca/front.svg",
  21736. extra: 294 / 291,
  21737. bottom: 0.03
  21738. }
  21739. },
  21740. },
  21741. [
  21742. {
  21743. name: "Normal",
  21744. height: math.unit(5 + 9 / 12, "feet"),
  21745. default: true
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21751. {
  21752. front: {
  21753. height: math.unit(6 + 3 / 12, "feet"),
  21754. weight: math.unit(185, "lb"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/mera/front.svg",
  21758. extra: 291 / 277,
  21759. bottom: 0.03
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Normal",
  21766. height: math.unit(6 + 3 / 12, "feet"),
  21767. default: true
  21768. },
  21769. ]
  21770. ))
  21771. characterMakers.push(() => makeCharacter(
  21772. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21773. {
  21774. front: {
  21775. height: math.unit(6 + 7 / 12, "feet"),
  21776. weight: math.unit(160, "lb"),
  21777. name: "Front",
  21778. image: {
  21779. source: "./media/characters/ceres/front.svg",
  21780. extra: 1023 / 950,
  21781. bottom: 0.027
  21782. }
  21783. },
  21784. back: {
  21785. height: math.unit(6 + 7 / 12, "feet"),
  21786. weight: math.unit(160, "lb"),
  21787. name: "Back",
  21788. image: {
  21789. source: "./media/characters/ceres/back.svg",
  21790. extra: 1023 / 950
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Normal",
  21797. height: math.unit(6 + 7 / 12, "feet"),
  21798. default: true
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21804. {
  21805. front: {
  21806. height: math.unit(5 + 10 / 12, "feet"),
  21807. weight: math.unit(150, "lb"),
  21808. name: "Front",
  21809. image: {
  21810. source: "./media/characters/kris/front.svg",
  21811. extra: 885 / 803,
  21812. bottom: 0.03
  21813. }
  21814. },
  21815. },
  21816. [
  21817. {
  21818. name: "Normal",
  21819. height: math.unit(5 + 10 / 12, "feet"),
  21820. default: true
  21821. },
  21822. ]
  21823. ))
  21824. characterMakers.push(() => makeCharacter(
  21825. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21826. {
  21827. front: {
  21828. height: math.unit(7, "feet"),
  21829. weight: math.unit(120, "kg"),
  21830. name: "Front",
  21831. image: {
  21832. source: "./media/characters/taluthus/front.svg",
  21833. extra: 903 / 833,
  21834. bottom: 0.015
  21835. }
  21836. },
  21837. },
  21838. [
  21839. {
  21840. name: "Normal",
  21841. height: math.unit(7, "feet"),
  21842. default: true
  21843. },
  21844. {
  21845. name: "Macro",
  21846. height: math.unit(300, "feet")
  21847. },
  21848. ]
  21849. ))
  21850. characterMakers.push(() => makeCharacter(
  21851. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21852. {
  21853. front: {
  21854. height: math.unit(5 + 9 / 12, "feet"),
  21855. weight: math.unit(145, "lb"),
  21856. name: "Front",
  21857. image: {
  21858. source: "./media/characters/dawn/front.svg",
  21859. extra: 2094 / 2016,
  21860. bottom: 0.025
  21861. }
  21862. },
  21863. back: {
  21864. height: math.unit(5 + 9 / 12, "feet"),
  21865. weight: math.unit(160, "lb"),
  21866. name: "Back",
  21867. image: {
  21868. source: "./media/characters/dawn/back.svg",
  21869. extra: 2112 / 2080,
  21870. bottom: 0.005
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Normal",
  21877. height: math.unit(6 + 7 / 12, "feet"),
  21878. default: true
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21884. {
  21885. anthro: {
  21886. height: math.unit(8 + 3 / 12, "feet"),
  21887. weight: math.unit(450, "lb"),
  21888. name: "Anthro",
  21889. image: {
  21890. source: "./media/characters/arador/anthro.svg",
  21891. extra: 1835 / 1718,
  21892. bottom: 0.025
  21893. }
  21894. },
  21895. feral: {
  21896. height: math.unit(4, "feet"),
  21897. weight: math.unit(200, "lb"),
  21898. name: "Feral",
  21899. image: {
  21900. source: "./media/characters/arador/feral.svg",
  21901. extra: 1683 / 1514,
  21902. bottom: 0.07
  21903. }
  21904. },
  21905. },
  21906. [
  21907. {
  21908. name: "Normal",
  21909. height: math.unit(8 + 3 / 12, "feet")
  21910. },
  21911. {
  21912. name: "Macro",
  21913. height: math.unit(82.5, "feet"),
  21914. default: true
  21915. },
  21916. ]
  21917. ))
  21918. characterMakers.push(() => makeCharacter(
  21919. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21920. {
  21921. front: {
  21922. height: math.unit(5 + 10 / 12, "feet"),
  21923. weight: math.unit(125, "lb"),
  21924. name: "Front",
  21925. image: {
  21926. source: "./media/characters/dharsi/front.svg",
  21927. extra: 716 / 630,
  21928. bottom: 0.035
  21929. }
  21930. },
  21931. },
  21932. [
  21933. {
  21934. name: "Nano",
  21935. height: math.unit(100, "nm")
  21936. },
  21937. {
  21938. name: "Micro",
  21939. height: math.unit(2, "inches")
  21940. },
  21941. {
  21942. name: "Normal",
  21943. height: math.unit(5 + 10 / 12, "feet"),
  21944. default: true
  21945. },
  21946. {
  21947. name: "Macro",
  21948. height: math.unit(1000, "feet")
  21949. },
  21950. {
  21951. name: "Megamacro",
  21952. height: math.unit(10, "miles")
  21953. },
  21954. {
  21955. name: "Gigamacro",
  21956. height: math.unit(3000, "miles")
  21957. },
  21958. {
  21959. name: "Teramacro",
  21960. height: math.unit(500000, "miles")
  21961. },
  21962. {
  21963. name: "Teramacro+",
  21964. height: math.unit(30, "galaxies")
  21965. },
  21966. ]
  21967. ))
  21968. characterMakers.push(() => makeCharacter(
  21969. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21970. {
  21971. front: {
  21972. height: math.unit(6, "feet"),
  21973. weight: math.unit(150, "lb"),
  21974. name: "Front",
  21975. image: {
  21976. source: "./media/characters/deathy/front.svg",
  21977. extra: 1552 / 1463,
  21978. bottom: 0.025
  21979. }
  21980. },
  21981. side: {
  21982. height: math.unit(6, "feet"),
  21983. weight: math.unit(150, "lb"),
  21984. name: "Side",
  21985. image: {
  21986. source: "./media/characters/deathy/side.svg",
  21987. extra: 1604 / 1455,
  21988. bottom: 0.025
  21989. }
  21990. },
  21991. back: {
  21992. height: math.unit(6, "feet"),
  21993. weight: math.unit(150, "lb"),
  21994. name: "Back",
  21995. image: {
  21996. source: "./media/characters/deathy/back.svg",
  21997. extra: 1580 / 1463,
  21998. bottom: 0.005
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Micro",
  22005. height: math.unit(5, "millimeters")
  22006. },
  22007. {
  22008. name: "Normal",
  22009. height: math.unit(6 + 5 / 12, "feet"),
  22010. default: true
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22016. {
  22017. front: {
  22018. height: math.unit(16, "feet"),
  22019. weight: math.unit(4000, "lb"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/juniper/front.svg",
  22023. bottom: 0.04
  22024. }
  22025. },
  22026. },
  22027. [
  22028. {
  22029. name: "Normal",
  22030. height: math.unit(16, "feet"),
  22031. default: true
  22032. },
  22033. ]
  22034. ))
  22035. characterMakers.push(() => makeCharacter(
  22036. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22037. {
  22038. front: {
  22039. height: math.unit(6, "feet"),
  22040. weight: math.unit(150, "lb"),
  22041. name: "Front",
  22042. image: {
  22043. source: "./media/characters/hipster/front.svg",
  22044. extra: 1312 / 1209,
  22045. bottom: 0.025
  22046. }
  22047. },
  22048. back: {
  22049. height: math.unit(6, "feet"),
  22050. weight: math.unit(150, "lb"),
  22051. name: "Back",
  22052. image: {
  22053. source: "./media/characters/hipster/back.svg",
  22054. extra: 1281 / 1196,
  22055. bottom: 0.01
  22056. }
  22057. },
  22058. },
  22059. [
  22060. {
  22061. name: "Micro",
  22062. height: math.unit(1, "mm")
  22063. },
  22064. {
  22065. name: "Normal",
  22066. height: math.unit(4, "inches"),
  22067. default: true
  22068. },
  22069. {
  22070. name: "Macro",
  22071. height: math.unit(500, "feet")
  22072. },
  22073. {
  22074. name: "Megamacro",
  22075. height: math.unit(1000, "miles")
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22081. {
  22082. front: {
  22083. height: math.unit(6, "feet"),
  22084. weight: math.unit(150, "lb"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/tendirmuldr/front.svg",
  22088. extra: 1878 / 1772,
  22089. bottom: 0.015
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Megamacro",
  22096. height: math.unit(1500, "miles"),
  22097. default: true
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22103. {
  22104. front: {
  22105. height: math.unit(14, "feet"),
  22106. weight: math.unit(12000, "lb"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/mort/front.svg",
  22110. extra: 365 / 318,
  22111. bottom: 0.01
  22112. }
  22113. },
  22114. side: {
  22115. height: math.unit(14, "feet"),
  22116. weight: math.unit(12000, "lb"),
  22117. name: "Side",
  22118. image: {
  22119. source: "./media/characters/mort/side.svg",
  22120. extra: 365 / 318,
  22121. bottom: 0.052
  22122. },
  22123. default: true
  22124. },
  22125. back: {
  22126. height: math.unit(14, "feet"),
  22127. weight: math.unit(12000, "lb"),
  22128. name: "Back",
  22129. image: {
  22130. source: "./media/characters/mort/back.svg",
  22131. extra: 371 / 332,
  22132. bottom: 0.18
  22133. }
  22134. },
  22135. },
  22136. [
  22137. {
  22138. name: "Normal",
  22139. height: math.unit(14, "feet"),
  22140. default: true
  22141. },
  22142. ]
  22143. ))
  22144. characterMakers.push(() => makeCharacter(
  22145. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22146. {
  22147. front: {
  22148. height: math.unit(8, "feet"),
  22149. weight: math.unit(1, "ton"),
  22150. name: "Front",
  22151. image: {
  22152. source: "./media/characters/lycoa/front.svg",
  22153. extra: 1836/1728,
  22154. bottom: 81/1917
  22155. }
  22156. },
  22157. back: {
  22158. height: math.unit(8, "feet"),
  22159. weight: math.unit(1, "ton"),
  22160. name: "Back",
  22161. image: {
  22162. source: "./media/characters/lycoa/back.svg",
  22163. extra: 1785/1720,
  22164. bottom: 91/1876
  22165. }
  22166. },
  22167. head: {
  22168. height: math.unit(1.6243, "feet"),
  22169. name: "Head",
  22170. image: {
  22171. source: "./media/characters/lycoa/head.svg",
  22172. extra: 1011/782,
  22173. bottom: 0/1011
  22174. }
  22175. },
  22176. tailmaw: {
  22177. height: math.unit(1.9, "feet"),
  22178. name: "Tailmaw",
  22179. image: {
  22180. source: "./media/characters/lycoa/tailmaw.svg"
  22181. }
  22182. },
  22183. tentacles: {
  22184. height: math.unit(2.1, "feet"),
  22185. name: "Tentacles",
  22186. image: {
  22187. source: "./media/characters/lycoa/tentacles.svg"
  22188. }
  22189. },
  22190. dick: {
  22191. height: math.unit(1.73, "feet"),
  22192. name: "Dick",
  22193. image: {
  22194. source: "./media/characters/lycoa/dick.svg"
  22195. }
  22196. },
  22197. },
  22198. [
  22199. {
  22200. name: "Normal",
  22201. height: math.unit(8, "feet"),
  22202. default: true
  22203. },
  22204. {
  22205. name: "Macro",
  22206. height: math.unit(30, "feet")
  22207. },
  22208. ]
  22209. ))
  22210. characterMakers.push(() => makeCharacter(
  22211. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22212. {
  22213. front: {
  22214. height: math.unit(4 + 2 / 12, "feet"),
  22215. weight: math.unit(70, "lb"),
  22216. name: "Front",
  22217. image: {
  22218. source: "./media/characters/naldara/front.svg",
  22219. extra: 1664/1387,
  22220. bottom: 81/1745
  22221. },
  22222. form: "anthro",
  22223. default: true
  22224. },
  22225. naga: {
  22226. height: math.unit(20, "feet"),
  22227. weight: math.unit(15000, "kg"),
  22228. name: "Front",
  22229. image: {
  22230. source: "./media/characters/naldara/naga.svg",
  22231. extra: 1590/1396,
  22232. bottom: 285/1875
  22233. },
  22234. form: "naga",
  22235. default: true
  22236. },
  22237. },
  22238. [
  22239. {
  22240. name: "Normal",
  22241. height: math.unit(4 + 2 / 12, "feet"),
  22242. form: "anthro",
  22243. default: true
  22244. },
  22245. {
  22246. name: "Normal",
  22247. height: math.unit(20, "feet"),
  22248. form: "naga",
  22249. default: true
  22250. },
  22251. ],
  22252. {
  22253. "anthro": {
  22254. name: "Anthro",
  22255. default: true
  22256. },
  22257. "naga": {
  22258. name: "Naga"
  22259. }
  22260. }
  22261. ))
  22262. characterMakers.push(() => makeCharacter(
  22263. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22264. {
  22265. front: {
  22266. height: math.unit(13 + 7 / 12, "feet"),
  22267. weight: math.unit(1500, "lb"),
  22268. name: "Front",
  22269. image: {
  22270. source: "./media/characters/briar/front.svg",
  22271. extra: 1223/1157,
  22272. bottom: 123/1346
  22273. }
  22274. },
  22275. },
  22276. [
  22277. {
  22278. name: "Normal",
  22279. height: math.unit(13 + 7 / 12, "feet"),
  22280. default: true
  22281. },
  22282. ]
  22283. ))
  22284. characterMakers.push(() => makeCharacter(
  22285. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22286. {
  22287. side: {
  22288. height: math.unit(16, "feet"),
  22289. weight: math.unit(500, "lb"),
  22290. name: "Side",
  22291. image: {
  22292. source: "./media/characters/vanguard/side.svg",
  22293. extra: 1022/914,
  22294. bottom: 30/1052
  22295. }
  22296. },
  22297. sideAlt: {
  22298. height: math.unit(10, "feet"),
  22299. weight: math.unit(500, "lb"),
  22300. name: "Side (Alt)",
  22301. image: {
  22302. source: "./media/characters/vanguard/side-alt.svg",
  22303. extra: 502 / 425,
  22304. bottom: 0.087
  22305. }
  22306. },
  22307. },
  22308. [
  22309. {
  22310. name: "Normal",
  22311. height: math.unit(17.71, "feet"),
  22312. default: true
  22313. },
  22314. ]
  22315. ))
  22316. characterMakers.push(() => makeCharacter(
  22317. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22318. {
  22319. front: {
  22320. height: math.unit(7.5, "feet"),
  22321. weight: math.unit(2, "lb"),
  22322. name: "Front",
  22323. image: {
  22324. source: "./media/characters/artemis/work-safe-front.svg",
  22325. extra: 1192 / 1075,
  22326. bottom: 0.07
  22327. },
  22328. form: "work-safe",
  22329. default: true
  22330. },
  22331. frontNsfw: {
  22332. height: math.unit(7.5, "feet"),
  22333. weight: math.unit(2, "lb"),
  22334. name: "Front",
  22335. image: {
  22336. source: "./media/characters/artemis/calibrating-front.svg",
  22337. extra: 1192 / 1075,
  22338. bottom: 0.07
  22339. },
  22340. form: "calibrating",
  22341. default: true
  22342. },
  22343. frontNsfwer: {
  22344. height: math.unit(7.5, "feet"),
  22345. weight: math.unit(2, "lb"),
  22346. name: "Front",
  22347. image: {
  22348. source: "./media/characters/artemis/oversize-load-front.svg",
  22349. extra: 1192 / 1075,
  22350. bottom: 0.07
  22351. },
  22352. form: "oversize-load",
  22353. default: true
  22354. },
  22355. side: {
  22356. height: math.unit(7.5, "feet"),
  22357. weight: math.unit(2, "lb"),
  22358. name: "Side",
  22359. image: {
  22360. source: "./media/characters/artemis/work-safe-side.svg",
  22361. extra: 1192 / 1075,
  22362. bottom: 0.07
  22363. },
  22364. form: "work-safe"
  22365. },
  22366. sideNsfw: {
  22367. height: math.unit(7.5, "feet"),
  22368. weight: math.unit(2, "lb"),
  22369. name: "Side",
  22370. image: {
  22371. source: "./media/characters/artemis/calibrating-side.svg",
  22372. extra: 1192 / 1075,
  22373. bottom: 0.07
  22374. },
  22375. form: "calibrating"
  22376. },
  22377. sideNsfwer: {
  22378. height: math.unit(7.5, "feet"),
  22379. weight: math.unit(2, "lb"),
  22380. name: "Side",
  22381. image: {
  22382. source: "./media/characters/artemis/oversize-load-side.svg",
  22383. extra: 1192 / 1075,
  22384. bottom: 0.07
  22385. },
  22386. form: "oversize-load"
  22387. },
  22388. maw: {
  22389. height: math.unit(1.1, "feet"),
  22390. name: "Maw",
  22391. image: {
  22392. source: "./media/characters/artemis/maw.svg"
  22393. },
  22394. form: "work-safe"
  22395. },
  22396. stomach: {
  22397. height: math.unit(0.95, "feet"),
  22398. name: "Stomach",
  22399. image: {
  22400. source: "./media/characters/artemis/stomach.svg"
  22401. },
  22402. form: "work-safe"
  22403. },
  22404. dickCanine: {
  22405. height: math.unit(1, "feet"),
  22406. name: "Dick (Canine)",
  22407. image: {
  22408. source: "./media/characters/artemis/dick-canine.svg"
  22409. },
  22410. form: "calibrating"
  22411. },
  22412. dickEquine: {
  22413. height: math.unit(0.85, "feet"),
  22414. name: "Dick (Equine)",
  22415. image: {
  22416. source: "./media/characters/artemis/dick-equine.svg"
  22417. },
  22418. form: "calibrating"
  22419. },
  22420. dickExotic: {
  22421. height: math.unit(0.85, "feet"),
  22422. name: "Dick (Exotic)",
  22423. image: {
  22424. source: "./media/characters/artemis/dick-exotic.svg"
  22425. },
  22426. form: "calibrating"
  22427. },
  22428. dickCanineBigger: {
  22429. height: math.unit(1 * 1.33, "feet"),
  22430. name: "Dick (Canine)",
  22431. image: {
  22432. source: "./media/characters/artemis/dick-canine.svg"
  22433. },
  22434. form: "oversize-load"
  22435. },
  22436. dickEquineBigger: {
  22437. height: math.unit(0.85 * 1.33, "feet"),
  22438. name: "Dick (Equine)",
  22439. image: {
  22440. source: "./media/characters/artemis/dick-equine.svg"
  22441. },
  22442. form: "oversize-load"
  22443. },
  22444. dickExoticBigger: {
  22445. height: math.unit(0.85 * 1.33, "feet"),
  22446. name: "Dick (Exotic)",
  22447. image: {
  22448. source: "./media/characters/artemis/dick-exotic.svg"
  22449. },
  22450. form: "oversize-load"
  22451. },
  22452. },
  22453. [
  22454. {
  22455. name: "Normal",
  22456. height: math.unit(7.5, "feet"),
  22457. form: "work-safe",
  22458. default: true
  22459. },
  22460. {
  22461. name: "Normal",
  22462. height: math.unit(7.5, "feet"),
  22463. form: "calibrating",
  22464. default: true
  22465. },
  22466. {
  22467. name: "Normal",
  22468. height: math.unit(7.5, "feet"),
  22469. form: "oversize-load",
  22470. default: true
  22471. },
  22472. {
  22473. name: "Enlarged",
  22474. height: math.unit(12, "feet"),
  22475. form: "work-safe",
  22476. },
  22477. {
  22478. name: "Enlarged",
  22479. height: math.unit(12, "feet"),
  22480. form: "calibrating",
  22481. },
  22482. {
  22483. name: "Enlarged",
  22484. height: math.unit(12, "feet"),
  22485. form: "oversize-load",
  22486. },
  22487. ],
  22488. {
  22489. "work-safe": {
  22490. name: "Work-Safe",
  22491. default: true
  22492. },
  22493. "calibrating": {
  22494. name: "Calibrating"
  22495. },
  22496. "oversize-load": {
  22497. name: "Oversize Load"
  22498. }
  22499. }
  22500. ))
  22501. characterMakers.push(() => makeCharacter(
  22502. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22503. {
  22504. front: {
  22505. height: math.unit(5 + 3 / 12, "feet"),
  22506. weight: math.unit(160, "lb"),
  22507. name: "Front",
  22508. image: {
  22509. source: "./media/characters/kira/front.svg",
  22510. extra: 906 / 786,
  22511. bottom: 0.01
  22512. }
  22513. },
  22514. back: {
  22515. height: math.unit(5 + 3 / 12, "feet"),
  22516. weight: math.unit(160, "lb"),
  22517. name: "Back",
  22518. image: {
  22519. source: "./media/characters/kira/back.svg",
  22520. extra: 882 / 757,
  22521. bottom: 0.005
  22522. }
  22523. },
  22524. frontDressed: {
  22525. height: math.unit(5 + 3 / 12, "feet"),
  22526. weight: math.unit(160, "lb"),
  22527. name: "Front (Dressed)",
  22528. image: {
  22529. source: "./media/characters/kira/front-dressed.svg",
  22530. extra: 906 / 786,
  22531. bottom: 0.01
  22532. }
  22533. },
  22534. beans: {
  22535. height: math.unit(0.92, "feet"),
  22536. name: "Beans",
  22537. image: {
  22538. source: "./media/characters/kira/beans.svg"
  22539. }
  22540. },
  22541. },
  22542. [
  22543. {
  22544. name: "Normal",
  22545. height: math.unit(5 + 3 / 12, "feet"),
  22546. default: true
  22547. },
  22548. ]
  22549. ))
  22550. characterMakers.push(() => makeCharacter(
  22551. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22552. {
  22553. front: {
  22554. height: math.unit(5 + 4 / 12, "feet"),
  22555. weight: math.unit(145, "lb"),
  22556. name: "Front",
  22557. image: {
  22558. source: "./media/characters/scramble/front.svg",
  22559. extra: 763 / 727,
  22560. bottom: 0.05
  22561. }
  22562. },
  22563. back: {
  22564. height: math.unit(5 + 4 / 12, "feet"),
  22565. weight: math.unit(145, "lb"),
  22566. name: "Back",
  22567. image: {
  22568. source: "./media/characters/scramble/back.svg",
  22569. extra: 826 / 737,
  22570. bottom: 0.002
  22571. }
  22572. },
  22573. },
  22574. [
  22575. {
  22576. name: "Normal",
  22577. height: math.unit(5 + 4 / 12, "feet"),
  22578. default: true
  22579. },
  22580. ]
  22581. ))
  22582. characterMakers.push(() => makeCharacter(
  22583. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22584. {
  22585. side: {
  22586. height: math.unit(6 + 2 / 12, "feet"),
  22587. weight: math.unit(190, "lb"),
  22588. name: "Side",
  22589. image: {
  22590. source: "./media/characters/biscuit/side.svg",
  22591. extra: 858 / 791,
  22592. bottom: 0.044
  22593. }
  22594. },
  22595. },
  22596. [
  22597. {
  22598. name: "Normal",
  22599. height: math.unit(6 + 2 / 12, "feet"),
  22600. default: true
  22601. },
  22602. ]
  22603. ))
  22604. characterMakers.push(() => makeCharacter(
  22605. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22606. {
  22607. front: {
  22608. height: math.unit(5 + 2 / 12, "feet"),
  22609. weight: math.unit(120, "lb"),
  22610. name: "Front",
  22611. image: {
  22612. source: "./media/characters/poffin/front.svg",
  22613. extra: 786 / 680,
  22614. bottom: 0.005
  22615. }
  22616. },
  22617. },
  22618. [
  22619. {
  22620. name: "Normal",
  22621. height: math.unit(5 + 2 / 12, "feet"),
  22622. default: true
  22623. },
  22624. ]
  22625. ))
  22626. characterMakers.push(() => makeCharacter(
  22627. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22628. {
  22629. front: {
  22630. height: math.unit(6 + 3 / 12, "feet"),
  22631. weight: math.unit(519, "lb"),
  22632. name: "Front",
  22633. image: {
  22634. source: "./media/characters/dhari/front.svg",
  22635. extra: 1048 / 946,
  22636. bottom: 0.015
  22637. }
  22638. },
  22639. back: {
  22640. height: math.unit(6 + 3 / 12, "feet"),
  22641. weight: math.unit(519, "lb"),
  22642. name: "Back",
  22643. image: {
  22644. source: "./media/characters/dhari/back.svg",
  22645. extra: 1048 / 931,
  22646. bottom: 0.005
  22647. }
  22648. },
  22649. frontDressed: {
  22650. height: math.unit(6 + 3 / 12, "feet"),
  22651. weight: math.unit(519, "lb"),
  22652. name: "Front (Dressed)",
  22653. image: {
  22654. source: "./media/characters/dhari/front-dressed.svg",
  22655. extra: 1713 / 1546,
  22656. bottom: 0.02
  22657. }
  22658. },
  22659. backDressed: {
  22660. height: math.unit(6 + 3 / 12, "feet"),
  22661. weight: math.unit(519, "lb"),
  22662. name: "Back (Dressed)",
  22663. image: {
  22664. source: "./media/characters/dhari/back-dressed.svg",
  22665. extra: 1699 / 1537,
  22666. bottom: 0.01
  22667. }
  22668. },
  22669. maw: {
  22670. height: math.unit(0.95, "feet"),
  22671. name: "Maw",
  22672. image: {
  22673. source: "./media/characters/dhari/maw.svg"
  22674. }
  22675. },
  22676. wereFront: {
  22677. height: math.unit(12 + 8 / 12, "feet"),
  22678. weight: math.unit(4000, "lb"),
  22679. name: "Front (Were)",
  22680. image: {
  22681. source: "./media/characters/dhari/were-front.svg",
  22682. extra: 1065 / 969,
  22683. bottom: 0.015
  22684. }
  22685. },
  22686. wereBack: {
  22687. height: math.unit(12 + 8 / 12, "feet"),
  22688. weight: math.unit(4000, "lb"),
  22689. name: "Back (Were)",
  22690. image: {
  22691. source: "./media/characters/dhari/were-back.svg",
  22692. extra: 1065 / 969,
  22693. bottom: 0.012
  22694. }
  22695. },
  22696. wereMaw: {
  22697. height: math.unit(0.625, "meters"),
  22698. name: "Maw (Were)",
  22699. image: {
  22700. source: "./media/characters/dhari/were-maw.svg"
  22701. }
  22702. },
  22703. },
  22704. [
  22705. {
  22706. name: "Normal",
  22707. height: math.unit(6 + 3 / 12, "feet"),
  22708. default: true
  22709. },
  22710. ]
  22711. ))
  22712. characterMakers.push(() => makeCharacter(
  22713. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22714. {
  22715. anthro: {
  22716. height: math.unit(5 + 7 / 12, "feet"),
  22717. weight: math.unit(175, "lb"),
  22718. name: "Anthro",
  22719. image: {
  22720. source: "./media/characters/rena-dyne/anthro.svg",
  22721. extra: 1849 / 1785,
  22722. bottom: 0.005
  22723. }
  22724. },
  22725. taur: {
  22726. height: math.unit(15 + 6 / 12, "feet"),
  22727. weight: math.unit(8000, "lb"),
  22728. name: "Taur",
  22729. image: {
  22730. source: "./media/characters/rena-dyne/taur.svg",
  22731. extra: 2315 / 2234,
  22732. bottom: 0.033
  22733. }
  22734. },
  22735. },
  22736. [
  22737. {
  22738. name: "Normal",
  22739. height: math.unit(5 + 7 / 12, "feet"),
  22740. default: true
  22741. },
  22742. ]
  22743. ))
  22744. characterMakers.push(() => makeCharacter(
  22745. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22746. {
  22747. front: {
  22748. height: math.unit(8, "feet"),
  22749. weight: math.unit(600, "lb"),
  22750. name: "Front",
  22751. image: {
  22752. source: "./media/characters/weremeep/front.svg",
  22753. extra: 970/849,
  22754. bottom: 7/977
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(8, "feet"),
  22762. default: true
  22763. },
  22764. {
  22765. name: "Lorg",
  22766. height: math.unit(12, "feet")
  22767. },
  22768. {
  22769. name: "Oh Lawd She Comin'",
  22770. height: math.unit(20, "feet")
  22771. },
  22772. ]
  22773. ))
  22774. characterMakers.push(() => makeCharacter(
  22775. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22776. {
  22777. front: {
  22778. height: math.unit(4, "feet"),
  22779. weight: math.unit(90, "lb"),
  22780. name: "Front",
  22781. image: {
  22782. source: "./media/characters/reza/front.svg",
  22783. extra: 1183 / 1111,
  22784. bottom: 0.017
  22785. }
  22786. },
  22787. back: {
  22788. height: math.unit(4, "feet"),
  22789. weight: math.unit(90, "lb"),
  22790. name: "Back",
  22791. image: {
  22792. source: "./media/characters/reza/back.svg",
  22793. extra: 1183 / 1111,
  22794. bottom: 0.01
  22795. }
  22796. },
  22797. drake: {
  22798. height: math.unit(30, "feet"),
  22799. weight: math.unit(246960, "lb"),
  22800. name: "Drake",
  22801. image: {
  22802. source: "./media/characters/reza/drake.svg",
  22803. extra: 2350 / 2024,
  22804. bottom: 60.7 / 2403
  22805. }
  22806. },
  22807. },
  22808. [
  22809. {
  22810. name: "Normal",
  22811. height: math.unit(4, "feet"),
  22812. default: true
  22813. },
  22814. ]
  22815. ))
  22816. characterMakers.push(() => makeCharacter(
  22817. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22818. {
  22819. side: {
  22820. height: math.unit(15, "feet"),
  22821. weight: math.unit(14, "tons"),
  22822. name: "Side",
  22823. image: {
  22824. source: "./media/characters/athea/side.svg",
  22825. extra: 960 / 540,
  22826. bottom: 0.003
  22827. }
  22828. },
  22829. sitting: {
  22830. height: math.unit(6 * 2.85, "feet"),
  22831. weight: math.unit(14, "tons"),
  22832. name: "Sitting",
  22833. image: {
  22834. source: "./media/characters/athea/sitting.svg",
  22835. extra: 621 / 581,
  22836. bottom: 0.075
  22837. }
  22838. },
  22839. maw: {
  22840. height: math.unit(7.59498031496063, "feet"),
  22841. name: "Maw",
  22842. image: {
  22843. source: "./media/characters/athea/maw.svg"
  22844. }
  22845. },
  22846. },
  22847. [
  22848. {
  22849. name: "Lap Cat",
  22850. height: math.unit(2.5, "feet")
  22851. },
  22852. {
  22853. name: "Minimacro",
  22854. height: math.unit(15, "feet"),
  22855. default: true
  22856. },
  22857. {
  22858. name: "Macro",
  22859. height: math.unit(120, "feet")
  22860. },
  22861. {
  22862. name: "Macro+",
  22863. height: math.unit(640, "feet")
  22864. },
  22865. {
  22866. name: "Colossus",
  22867. height: math.unit(2.2, "miles")
  22868. },
  22869. ]
  22870. ))
  22871. characterMakers.push(() => makeCharacter(
  22872. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22873. {
  22874. front: {
  22875. height: math.unit(8 + 8 / 12, "feet"),
  22876. weight: math.unit(130, "kg"),
  22877. name: "Front",
  22878. image: {
  22879. source: "./media/characters/seroko/front.svg",
  22880. extra: 1385 / 1280,
  22881. bottom: 0.025
  22882. }
  22883. },
  22884. back: {
  22885. height: math.unit(8 + 8 / 12, "feet"),
  22886. weight: math.unit(130, "kg"),
  22887. name: "Back",
  22888. image: {
  22889. source: "./media/characters/seroko/back.svg",
  22890. extra: 1369 / 1238,
  22891. bottom: 0.018
  22892. }
  22893. },
  22894. frontDressed: {
  22895. height: math.unit(8 + 8 / 12, "feet"),
  22896. weight: math.unit(130, "kg"),
  22897. name: "Front (Dressed)",
  22898. image: {
  22899. source: "./media/characters/seroko/front-dressed.svg",
  22900. extra: 1366 / 1275,
  22901. bottom: 0.03
  22902. }
  22903. },
  22904. },
  22905. [
  22906. {
  22907. name: "Normal",
  22908. height: math.unit(8 + 8 / 12, "feet"),
  22909. default: true
  22910. },
  22911. ]
  22912. ))
  22913. characterMakers.push(() => makeCharacter(
  22914. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22915. {
  22916. front: {
  22917. height: math.unit(5.5, "feet"),
  22918. weight: math.unit(160, "lb"),
  22919. name: "Front",
  22920. image: {
  22921. source: "./media/characters/quatzi/front.svg",
  22922. extra: 2346 / 2242,
  22923. bottom: 0.015
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Normal",
  22930. height: math.unit(5.5, "feet"),
  22931. default: true
  22932. },
  22933. {
  22934. name: "Big",
  22935. height: math.unit(7.7, "feet")
  22936. },
  22937. ]
  22938. ))
  22939. characterMakers.push(() => makeCharacter(
  22940. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22941. {
  22942. front: {
  22943. height: math.unit(5 + 11 / 12, "feet"),
  22944. weight: math.unit(180, "lb"),
  22945. name: "Front",
  22946. image: {
  22947. source: "./media/characters/sen/front.svg",
  22948. extra: 1321 / 1254,
  22949. bottom: 0.015
  22950. }
  22951. },
  22952. side: {
  22953. height: math.unit(5 + 11 / 12, "feet"),
  22954. weight: math.unit(180, "lb"),
  22955. name: "Side",
  22956. image: {
  22957. source: "./media/characters/sen/side.svg",
  22958. extra: 1321 / 1254,
  22959. bottom: 0.007
  22960. }
  22961. },
  22962. back: {
  22963. height: math.unit(5 + 11 / 12, "feet"),
  22964. weight: math.unit(180, "lb"),
  22965. name: "Back",
  22966. image: {
  22967. source: "./media/characters/sen/back.svg",
  22968. extra: 1321 / 1254
  22969. }
  22970. },
  22971. },
  22972. [
  22973. {
  22974. name: "Normal",
  22975. height: math.unit(5 + 11 / 12, "feet"),
  22976. default: true
  22977. },
  22978. ]
  22979. ))
  22980. characterMakers.push(() => makeCharacter(
  22981. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22982. {
  22983. front: {
  22984. height: math.unit(166.6, "cm"),
  22985. weight: math.unit(66.6, "kg"),
  22986. name: "Front",
  22987. image: {
  22988. source: "./media/characters/fruity/front.svg",
  22989. extra: 1510 / 1386,
  22990. bottom: 0.04
  22991. }
  22992. },
  22993. back: {
  22994. height: math.unit(166.6, "cm"),
  22995. weight: math.unit(66.6, "lb"),
  22996. name: "Back",
  22997. image: {
  22998. source: "./media/characters/fruity/back.svg",
  22999. extra: 1563 / 1435,
  23000. bottom: 0.005
  23001. }
  23002. },
  23003. },
  23004. [
  23005. {
  23006. name: "Normal",
  23007. height: math.unit(166.6, "cm"),
  23008. default: true
  23009. },
  23010. {
  23011. name: "Demonic",
  23012. height: math.unit(166.6, "feet")
  23013. },
  23014. ]
  23015. ))
  23016. characterMakers.push(() => makeCharacter(
  23017. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23018. {
  23019. side: {
  23020. height: math.unit(10, "feet"),
  23021. weight: math.unit(500, "lb"),
  23022. name: "Side",
  23023. image: {
  23024. source: "./media/characters/zost/side.svg",
  23025. extra: 2870/2533,
  23026. bottom: 252/3122
  23027. }
  23028. },
  23029. mawFront: {
  23030. height: math.unit(1.08, "meters"),
  23031. name: "Maw (Front)",
  23032. image: {
  23033. source: "./media/characters/zost/maw-front.svg"
  23034. }
  23035. },
  23036. mawSide: {
  23037. height: math.unit(2.66, "feet"),
  23038. name: "Maw (Side)",
  23039. image: {
  23040. source: "./media/characters/zost/maw-side.svg"
  23041. }
  23042. },
  23043. wingspan: {
  23044. height: math.unit(7.4, "feet"),
  23045. name: "Wingspan",
  23046. image: {
  23047. source: "./media/characters/zost/wingspan.svg"
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Normal",
  23054. height: math.unit(10, "feet"),
  23055. default: true
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(5 + 4 / 12, "feet"),
  23064. weight: math.unit(120, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/luci/front.svg",
  23068. extra: 1985 / 1884,
  23069. bottom: 0.04
  23070. }
  23071. },
  23072. back: {
  23073. height: math.unit(5 + 4 / 12, "feet"),
  23074. weight: math.unit(120, "lb"),
  23075. name: "Back",
  23076. image: {
  23077. source: "./media/characters/luci/back.svg",
  23078. extra: 1892 / 1791,
  23079. bottom: 0.002
  23080. }
  23081. },
  23082. },
  23083. [
  23084. {
  23085. name: "Normal",
  23086. height: math.unit(5 + 4 / 12, "feet"),
  23087. default: true
  23088. },
  23089. ]
  23090. ))
  23091. characterMakers.push(() => makeCharacter(
  23092. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23093. {
  23094. front: {
  23095. height: math.unit(1500, "feet"),
  23096. weight: math.unit(3.8e6, "tons"),
  23097. name: "Front",
  23098. image: {
  23099. source: "./media/characters/2th/front.svg",
  23100. extra: 3489 / 3350,
  23101. bottom: 0.1
  23102. }
  23103. },
  23104. foot: {
  23105. height: math.unit(461, "feet"),
  23106. name: "Foot",
  23107. image: {
  23108. source: "./media/characters/2th/foot.svg"
  23109. }
  23110. },
  23111. },
  23112. [
  23113. {
  23114. name: "\"Micro\"",
  23115. height: math.unit(15 + 7 / 12, "feet")
  23116. },
  23117. {
  23118. name: "Normal",
  23119. height: math.unit(1500, "feet"),
  23120. default: true
  23121. },
  23122. {
  23123. name: "Macro",
  23124. height: math.unit(5000, "feet")
  23125. },
  23126. {
  23127. name: "Megamacro",
  23128. height: math.unit(15, "miles")
  23129. },
  23130. {
  23131. name: "Gigamacro",
  23132. height: math.unit(4000, "miles")
  23133. },
  23134. {
  23135. name: "Galactic",
  23136. height: math.unit(50, "AU")
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(5 + 6 / 12, "feet"),
  23145. weight: math.unit(220, "lb"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/amethyst/front.svg",
  23149. extra: 2078 / 2040,
  23150. bottom: 0.045
  23151. }
  23152. },
  23153. back: {
  23154. height: math.unit(5 + 6 / 12, "feet"),
  23155. weight: math.unit(220, "lb"),
  23156. name: "Back",
  23157. image: {
  23158. source: "./media/characters/amethyst/back.svg",
  23159. extra: 2021 / 1989,
  23160. bottom: 0.02
  23161. }
  23162. },
  23163. },
  23164. [
  23165. {
  23166. name: "Normal",
  23167. height: math.unit(5 + 6 / 12, "feet"),
  23168. default: true
  23169. },
  23170. ]
  23171. ))
  23172. characterMakers.push(() => makeCharacter(
  23173. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23174. {
  23175. front: {
  23176. height: math.unit(4 + 11 / 12, "feet"),
  23177. weight: math.unit(120, "lb"),
  23178. name: "Front",
  23179. image: {
  23180. source: "./media/characters/yumi-akiyama/front.svg",
  23181. extra: 1327 / 1235,
  23182. bottom: 0.02
  23183. }
  23184. },
  23185. back: {
  23186. height: math.unit(4 + 11 / 12, "feet"),
  23187. weight: math.unit(120, "lb"),
  23188. name: "Back",
  23189. image: {
  23190. source: "./media/characters/yumi-akiyama/back.svg",
  23191. extra: 1287 / 1245,
  23192. bottom: 0.002
  23193. }
  23194. },
  23195. },
  23196. [
  23197. {
  23198. name: "Galactic",
  23199. height: math.unit(50, "galaxies"),
  23200. default: true
  23201. },
  23202. {
  23203. name: "Universal",
  23204. height: math.unit(100, "universes")
  23205. },
  23206. ]
  23207. ))
  23208. characterMakers.push(() => makeCharacter(
  23209. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23210. {
  23211. front: {
  23212. height: math.unit(8, "feet"),
  23213. weight: math.unit(500, "lb"),
  23214. name: "Front",
  23215. image: {
  23216. source: "./media/characters/rifter-yrmori/front.svg",
  23217. extra: 1180 / 1125,
  23218. bottom: 0.02
  23219. }
  23220. },
  23221. back: {
  23222. height: math.unit(8, "feet"),
  23223. weight: math.unit(500, "lb"),
  23224. name: "Back",
  23225. image: {
  23226. source: "./media/characters/rifter-yrmori/back.svg",
  23227. extra: 1190 / 1145,
  23228. bottom: 0.001
  23229. }
  23230. },
  23231. wings: {
  23232. height: math.unit(7.75, "feet"),
  23233. weight: math.unit(500, "lb"),
  23234. name: "Wings",
  23235. image: {
  23236. source: "./media/characters/rifter-yrmori/wings.svg",
  23237. extra: 1357 / 1285
  23238. }
  23239. },
  23240. maw: {
  23241. height: math.unit(0.8, "feet"),
  23242. name: "Maw",
  23243. image: {
  23244. source: "./media/characters/rifter-yrmori/maw.svg"
  23245. }
  23246. },
  23247. mawfront: {
  23248. height: math.unit(1.45, "feet"),
  23249. name: "Maw (Front)",
  23250. image: {
  23251. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23252. }
  23253. },
  23254. },
  23255. [
  23256. {
  23257. name: "Normal",
  23258. height: math.unit(8, "feet"),
  23259. default: true
  23260. },
  23261. {
  23262. name: "Macro",
  23263. height: math.unit(42, "meters")
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23269. {
  23270. were: {
  23271. height: math.unit(25 + 6 / 12, "feet"),
  23272. weight: math.unit(10000, "lb"),
  23273. name: "Were",
  23274. image: {
  23275. source: "./media/characters/tahajin/were.svg",
  23276. extra: 801 / 770,
  23277. bottom: 0.042
  23278. }
  23279. },
  23280. aquatic: {
  23281. height: math.unit(6 + 4 / 12, "feet"),
  23282. weight: math.unit(160, "lb"),
  23283. name: "Aquatic",
  23284. image: {
  23285. source: "./media/characters/tahajin/aquatic.svg",
  23286. extra: 572 / 542,
  23287. bottom: 0.04
  23288. }
  23289. },
  23290. chow: {
  23291. height: math.unit(8 + 11 / 12, "feet"),
  23292. weight: math.unit(450, "lb"),
  23293. name: "Chow",
  23294. image: {
  23295. source: "./media/characters/tahajin/chow.svg",
  23296. extra: 660 / 640,
  23297. bottom: 0.015
  23298. }
  23299. },
  23300. demiNaga: {
  23301. height: math.unit(6 + 8 / 12, "feet"),
  23302. weight: math.unit(300, "lb"),
  23303. name: "Demi Naga",
  23304. image: {
  23305. source: "./media/characters/tahajin/demi-naga.svg",
  23306. extra: 643 / 615,
  23307. bottom: 0.1
  23308. }
  23309. },
  23310. data: {
  23311. height: math.unit(5, "inches"),
  23312. weight: math.unit(0.1, "lb"),
  23313. name: "Data",
  23314. image: {
  23315. source: "./media/characters/tahajin/data.svg"
  23316. }
  23317. },
  23318. fluu: {
  23319. height: math.unit(5 + 7 / 12, "feet"),
  23320. weight: math.unit(140, "lb"),
  23321. name: "Fluu",
  23322. image: {
  23323. source: "./media/characters/tahajin/fluu.svg",
  23324. extra: 628 / 592,
  23325. bottom: 0.02
  23326. }
  23327. },
  23328. starWarrior: {
  23329. height: math.unit(4 + 5 / 12, "feet"),
  23330. weight: math.unit(50, "lb"),
  23331. name: "Star Warrior",
  23332. image: {
  23333. source: "./media/characters/tahajin/star-warrior.svg"
  23334. }
  23335. },
  23336. },
  23337. [
  23338. {
  23339. name: "Normal",
  23340. height: math.unit(25 + 6 / 12, "feet"),
  23341. default: true
  23342. },
  23343. ]
  23344. ))
  23345. characterMakers.push(() => makeCharacter(
  23346. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23347. {
  23348. front: {
  23349. height: math.unit(8, "feet"),
  23350. weight: math.unit(350, "lb"),
  23351. name: "Front",
  23352. image: {
  23353. source: "./media/characters/gabira/front.svg",
  23354. extra: 1261/1154,
  23355. bottom: 51/1312
  23356. }
  23357. },
  23358. back: {
  23359. height: math.unit(8, "feet"),
  23360. weight: math.unit(350, "lb"),
  23361. name: "Back",
  23362. image: {
  23363. source: "./media/characters/gabira/back.svg",
  23364. extra: 1265/1163,
  23365. bottom: 46/1311
  23366. }
  23367. },
  23368. head: {
  23369. height: math.unit(2.85, "feet"),
  23370. name: "Head",
  23371. image: {
  23372. source: "./media/characters/gabira/head.svg"
  23373. }
  23374. },
  23375. },
  23376. [
  23377. {
  23378. name: "Normal",
  23379. height: math.unit(8, "feet"),
  23380. default: true
  23381. },
  23382. ]
  23383. ))
  23384. characterMakers.push(() => makeCharacter(
  23385. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23386. {
  23387. front: {
  23388. height: math.unit(5 + 3 / 12, "feet"),
  23389. weight: math.unit(137, "lb"),
  23390. name: "Front",
  23391. image: {
  23392. source: "./media/characters/sasha-katraine/front.svg",
  23393. extra: 1745/1694,
  23394. bottom: 37/1782
  23395. }
  23396. },
  23397. back: {
  23398. height: math.unit(5 + 3 / 12, "feet"),
  23399. weight: math.unit(137, "lb"),
  23400. name: "Back",
  23401. image: {
  23402. source: "./media/characters/sasha-katraine/back.svg",
  23403. extra: 1776/1699,
  23404. bottom: 26/1802
  23405. }
  23406. },
  23407. },
  23408. [
  23409. {
  23410. name: "Micro",
  23411. height: math.unit(5, "inches")
  23412. },
  23413. {
  23414. name: "Normal",
  23415. height: math.unit(5 + 3 / 12, "feet"),
  23416. default: true
  23417. },
  23418. ]
  23419. ))
  23420. characterMakers.push(() => makeCharacter(
  23421. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23422. {
  23423. side: {
  23424. height: math.unit(4, "inches"),
  23425. weight: math.unit(200, "grams"),
  23426. name: "Side",
  23427. image: {
  23428. source: "./media/characters/der/side.svg",
  23429. extra: 719 / 400,
  23430. bottom: 30.6 / 749.9187
  23431. }
  23432. },
  23433. },
  23434. [
  23435. {
  23436. name: "Micro",
  23437. height: math.unit(4, "inches"),
  23438. default: true
  23439. },
  23440. ]
  23441. ))
  23442. characterMakers.push(() => makeCharacter(
  23443. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23444. {
  23445. side: {
  23446. height: math.unit(30, "meters"),
  23447. weight: math.unit(700, "tonnes"),
  23448. name: "Side",
  23449. image: {
  23450. source: "./media/characters/fixerdragon/side.svg",
  23451. extra: (1293.0514 - 116.03) / 1106.86,
  23452. bottom: 116.03 / 1293.0514
  23453. }
  23454. },
  23455. },
  23456. [
  23457. {
  23458. name: "Planck",
  23459. height: math.unit(1.6e-35, "meters")
  23460. },
  23461. {
  23462. name: "Micro",
  23463. height: math.unit(0.4, "meters")
  23464. },
  23465. {
  23466. name: "Normal",
  23467. height: math.unit(30, "meters"),
  23468. default: true
  23469. },
  23470. {
  23471. name: "Megamacro",
  23472. height: math.unit(1.2, "megameters")
  23473. },
  23474. {
  23475. name: "Teramacro",
  23476. height: math.unit(130, "terameters")
  23477. },
  23478. {
  23479. name: "Yottamacro",
  23480. height: math.unit(6200, "yottameters")
  23481. },
  23482. ]
  23483. ));
  23484. characterMakers.push(() => makeCharacter(
  23485. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23486. {
  23487. front: {
  23488. height: math.unit(8, "feet"),
  23489. weight: math.unit(250, "lb"),
  23490. name: "Front",
  23491. image: {
  23492. source: "./media/characters/kite/front.svg",
  23493. extra: 2796 / 2659,
  23494. bottom: 0.002
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Normal",
  23501. height: math.unit(8, "feet"),
  23502. default: true
  23503. },
  23504. {
  23505. name: "Macro",
  23506. height: math.unit(360, "feet")
  23507. },
  23508. {
  23509. name: "Megamacro",
  23510. height: math.unit(1500, "feet")
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23516. {
  23517. front: {
  23518. height: math.unit(5 + 11/12, "feet"),
  23519. weight: math.unit(170, "lb"),
  23520. name: "Front",
  23521. image: {
  23522. source: "./media/characters/poojawa-vynar/front.svg",
  23523. extra: 1735/1585,
  23524. bottom: 96/1831
  23525. }
  23526. },
  23527. back: {
  23528. height: math.unit(5 + 11/12, "feet"),
  23529. weight: math.unit(170, "lb"),
  23530. name: "Back",
  23531. image: {
  23532. source: "./media/characters/poojawa-vynar/back.svg",
  23533. extra: 1749/1607,
  23534. bottom: 28/1777
  23535. }
  23536. },
  23537. male: {
  23538. height: math.unit(5 + 11/12, "feet"),
  23539. weight: math.unit(170, "lb"),
  23540. name: "Male",
  23541. image: {
  23542. source: "./media/characters/poojawa-vynar/male.svg",
  23543. extra: 1855/1713,
  23544. bottom: 63/1918
  23545. }
  23546. },
  23547. taur: {
  23548. height: math.unit(5 + 11/12, "feet"),
  23549. weight: math.unit(170, "lb"),
  23550. name: "Taur",
  23551. image: {
  23552. source: "./media/characters/poojawa-vynar/taur.svg",
  23553. extra: 1151/1059,
  23554. bottom: 356/1507
  23555. }
  23556. },
  23557. frontDressed: {
  23558. height: math.unit(5 + 11/12, "feet"),
  23559. weight: math.unit(170, "lb"),
  23560. name: "Front (Dressed)",
  23561. image: {
  23562. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23563. extra: 1735/1585,
  23564. bottom: 96/1831
  23565. }
  23566. },
  23567. backDressed: {
  23568. height: math.unit(5 + 11/12, "feet"),
  23569. weight: math.unit(170, "lb"),
  23570. name: "Back (Dressed)",
  23571. image: {
  23572. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23573. extra: 1749/1607,
  23574. bottom: 28/1777
  23575. }
  23576. },
  23577. maleDressed: {
  23578. height: math.unit(5 + 11/12, "feet"),
  23579. weight: math.unit(170, "lb"),
  23580. name: "Male (Dressed)",
  23581. image: {
  23582. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23583. extra: 1855/1713,
  23584. bottom: 63/1918
  23585. }
  23586. },
  23587. taurDressed: {
  23588. height: math.unit(5 + 11/12, "feet"),
  23589. weight: math.unit(170, "lb"),
  23590. name: "Taur (Dressed)",
  23591. image: {
  23592. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23593. extra: 1151/1059,
  23594. bottom: 356/1507
  23595. }
  23596. },
  23597. maw: {
  23598. height: math.unit(1.46, "feet"),
  23599. name: "Maw",
  23600. image: {
  23601. source: "./media/characters/poojawa-vynar/maw.svg"
  23602. }
  23603. },
  23604. head: {
  23605. height: math.unit(2.34, "feet"),
  23606. name: "Head",
  23607. image: {
  23608. source: "./media/characters/poojawa-vynar/head.svg"
  23609. }
  23610. },
  23611. paw: {
  23612. height: math.unit(1.61, "feet"),
  23613. name: "Paw",
  23614. image: {
  23615. source: "./media/characters/poojawa-vynar/paw.svg"
  23616. }
  23617. },
  23618. pawToering: {
  23619. height: math.unit(1.72, "feet"),
  23620. name: "Paw (Toering)",
  23621. image: {
  23622. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23623. }
  23624. },
  23625. toering: {
  23626. height: math.unit(2.9, "inches"),
  23627. name: "Toering",
  23628. image: {
  23629. source: "./media/characters/poojawa-vynar/toering.svg"
  23630. }
  23631. },
  23632. shaft: {
  23633. height: math.unit(0.625, "feet"),
  23634. name: "Shaft",
  23635. image: {
  23636. source: "./media/characters/poojawa-vynar/shaft.svg"
  23637. }
  23638. },
  23639. spade: {
  23640. height: math.unit(0.42, "feet"),
  23641. name: "Spade",
  23642. image: {
  23643. source: "./media/characters/poojawa-vynar/spade.svg"
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Shortstack",
  23650. height: math.unit(4, "feet")
  23651. },
  23652. {
  23653. name: "Normal",
  23654. height: math.unit(5 + 11 / 12, "feet"),
  23655. default: true
  23656. },
  23657. {
  23658. name: "Tauric",
  23659. height: math.unit(4, "meters")
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(293, "meters"),
  23668. weight: math.unit(70400, "tons"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/violette/front.svg",
  23672. extra: 1227 / 1180,
  23673. bottom: 0.005
  23674. }
  23675. },
  23676. back: {
  23677. height: math.unit(293, "meters"),
  23678. weight: math.unit(70400, "tons"),
  23679. name: "Back",
  23680. image: {
  23681. source: "./media/characters/violette/back.svg",
  23682. extra: 1227 / 1180,
  23683. bottom: 0.005
  23684. }
  23685. },
  23686. },
  23687. [
  23688. {
  23689. name: "Macro",
  23690. height: math.unit(293, "meters"),
  23691. default: true
  23692. },
  23693. ]
  23694. ))
  23695. characterMakers.push(() => makeCharacter(
  23696. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23697. {
  23698. front: {
  23699. height: math.unit(1050, "feet"),
  23700. weight: math.unit(200000, "tons"),
  23701. name: "Front",
  23702. image: {
  23703. source: "./media/characters/alessandra/front.svg",
  23704. extra: 960 / 912,
  23705. bottom: 0.06
  23706. }
  23707. },
  23708. },
  23709. [
  23710. {
  23711. name: "Macro",
  23712. height: math.unit(1050, "feet")
  23713. },
  23714. {
  23715. name: "Macro+",
  23716. height: math.unit(900, "meters"),
  23717. default: true
  23718. },
  23719. ]
  23720. ))
  23721. characterMakers.push(() => makeCharacter(
  23722. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23723. {
  23724. front: {
  23725. height: math.unit(5, "feet"),
  23726. weight: math.unit(187, "lb"),
  23727. name: "Front",
  23728. image: {
  23729. source: "./media/characters/person/front.svg",
  23730. extra: 3087 / 2945,
  23731. bottom: 91 / 3181
  23732. }
  23733. },
  23734. },
  23735. [
  23736. {
  23737. name: "Micro",
  23738. height: math.unit(3, "inches")
  23739. },
  23740. {
  23741. name: "Normal",
  23742. height: math.unit(5, "feet"),
  23743. default: true
  23744. },
  23745. {
  23746. name: "Macro",
  23747. height: math.unit(90, "feet")
  23748. },
  23749. {
  23750. name: "Max Size",
  23751. height: math.unit(280, "feet")
  23752. },
  23753. ]
  23754. ))
  23755. characterMakers.push(() => makeCharacter(
  23756. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23757. {
  23758. front: {
  23759. height: math.unit(4.5, "meters"),
  23760. weight: math.unit(3200, "lb"),
  23761. name: "Front",
  23762. image: {
  23763. source: "./media/characters/ty/front.svg",
  23764. extra: 1038 / 960,
  23765. bottom: 31.156 / 1068
  23766. }
  23767. },
  23768. back: {
  23769. height: math.unit(4.5, "meters"),
  23770. weight: math.unit(3200, "lb"),
  23771. name: "Back",
  23772. image: {
  23773. source: "./media/characters/ty/back.svg",
  23774. extra: 1044 / 966,
  23775. bottom: 7.48 / 1049
  23776. }
  23777. },
  23778. },
  23779. [
  23780. {
  23781. name: "Normal",
  23782. height: math.unit(4.5, "meters"),
  23783. default: true
  23784. },
  23785. ]
  23786. ))
  23787. characterMakers.push(() => makeCharacter(
  23788. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23789. {
  23790. front: {
  23791. height: math.unit(5 + 4 / 12, "feet"),
  23792. weight: math.unit(115, "lb"),
  23793. name: "Front",
  23794. image: {
  23795. source: "./media/characters/rocky/front.svg",
  23796. extra: 1012 / 975,
  23797. bottom: 54 / 1066
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Normal",
  23804. height: math.unit(5 + 4 / 12, "feet"),
  23805. default: true
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23811. {
  23812. upright: {
  23813. height: math.unit(6, "meters"),
  23814. weight: math.unit(4000, "kg"),
  23815. name: "Upright",
  23816. image: {
  23817. source: "./media/characters/ruin/upright.svg",
  23818. extra: 668 / 661,
  23819. bottom: 42 / 799.8396
  23820. }
  23821. },
  23822. },
  23823. [
  23824. {
  23825. name: "Normal",
  23826. height: math.unit(6, "meters"),
  23827. default: true
  23828. },
  23829. ]
  23830. ))
  23831. characterMakers.push(() => makeCharacter(
  23832. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23833. {
  23834. front: {
  23835. height: math.unit(5, "feet"),
  23836. weight: math.unit(106, "lb"),
  23837. name: "Front",
  23838. image: {
  23839. source: "./media/characters/robin/front.svg",
  23840. extra: 862 / 799,
  23841. bottom: 42.4 / 914.8856
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(5, "feet"),
  23849. default: true
  23850. },
  23851. ]
  23852. ))
  23853. characterMakers.push(() => makeCharacter(
  23854. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23855. {
  23856. side: {
  23857. height: math.unit(3, "feet"),
  23858. weight: math.unit(225, "lb"),
  23859. name: "Side",
  23860. image: {
  23861. source: "./media/characters/saian/side.svg",
  23862. extra: 566 / 356,
  23863. bottom: 79.7 / 643
  23864. }
  23865. },
  23866. maw: {
  23867. height: math.unit(2.85, "feet"),
  23868. name: "Maw",
  23869. image: {
  23870. source: "./media/characters/saian/maw.svg"
  23871. }
  23872. },
  23873. },
  23874. [
  23875. {
  23876. name: "Normal",
  23877. height: math.unit(3, "feet"),
  23878. default: true
  23879. },
  23880. ]
  23881. ))
  23882. characterMakers.push(() => makeCharacter(
  23883. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23884. {
  23885. side: {
  23886. height: math.unit(8, "feet"),
  23887. weight: math.unit(300, "lb"),
  23888. name: "Side",
  23889. image: {
  23890. source: "./media/characters/equus-silvermane/side.svg",
  23891. extra: 2176 / 2050,
  23892. bottom: 65.7 / 2245
  23893. }
  23894. },
  23895. front: {
  23896. height: math.unit(8, "feet"),
  23897. weight: math.unit(300, "lb"),
  23898. name: "Front",
  23899. image: {
  23900. source: "./media/characters/equus-silvermane/front.svg",
  23901. extra: 4633 / 4400,
  23902. bottom: 71.3 / 4706.915
  23903. }
  23904. },
  23905. sideStepping: {
  23906. height: math.unit(8, "feet"),
  23907. weight: math.unit(300, "lb"),
  23908. name: "Side (Stepping)",
  23909. image: {
  23910. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23911. extra: 1968 / 1860,
  23912. bottom: 16.4 / 1989
  23913. }
  23914. },
  23915. },
  23916. [
  23917. {
  23918. name: "Normal",
  23919. height: math.unit(8, "feet")
  23920. },
  23921. {
  23922. name: "Minimacro",
  23923. height: math.unit(75, "feet"),
  23924. default: true
  23925. },
  23926. {
  23927. name: "Macro",
  23928. height: math.unit(150, "feet")
  23929. },
  23930. {
  23931. name: "Macro+",
  23932. height: math.unit(1000, "feet")
  23933. },
  23934. {
  23935. name: "Megamacro",
  23936. height: math.unit(1, "mile")
  23937. },
  23938. ]
  23939. ))
  23940. characterMakers.push(() => makeCharacter(
  23941. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23942. {
  23943. side: {
  23944. height: math.unit(20, "feet"),
  23945. weight: math.unit(30000, "kg"),
  23946. name: "Side",
  23947. image: {
  23948. source: "./media/characters/windar/side.svg",
  23949. extra: 1491 / 1248,
  23950. bottom: 82.56 / 1568
  23951. }
  23952. },
  23953. },
  23954. [
  23955. {
  23956. name: "Normal",
  23957. height: math.unit(20, "feet"),
  23958. default: true
  23959. },
  23960. ]
  23961. ))
  23962. characterMakers.push(() => makeCharacter(
  23963. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23964. {
  23965. side: {
  23966. height: math.unit(15.66, "feet"),
  23967. weight: math.unit(150, "lb"),
  23968. name: "Side",
  23969. image: {
  23970. source: "./media/characters/melody/side.svg",
  23971. extra: 1097 / 944,
  23972. bottom: 11.8 / 1109
  23973. }
  23974. },
  23975. sideOutfit: {
  23976. height: math.unit(15.66, "feet"),
  23977. weight: math.unit(150, "lb"),
  23978. name: "Side (Outfit)",
  23979. image: {
  23980. source: "./media/characters/melody/side-outfit.svg",
  23981. extra: 1097 / 944,
  23982. bottom: 11.8 / 1109
  23983. }
  23984. },
  23985. },
  23986. [
  23987. {
  23988. name: "Normal",
  23989. height: math.unit(15.66, "feet"),
  23990. default: true
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23996. {
  23997. armoredFront: {
  23998. height: math.unit(8, "feet"),
  23999. weight: math.unit(325, "lb"),
  24000. name: "Front",
  24001. image: {
  24002. source: "./media/characters/windera/armored-front.svg",
  24003. extra: 1830/1598,
  24004. bottom: 151/1981
  24005. },
  24006. form: "armored",
  24007. default: true
  24008. },
  24009. macroFront: {
  24010. height: math.unit(70, "feet"),
  24011. weight: math.unit(315453, "lb"),
  24012. name: "Front",
  24013. image: {
  24014. source: "./media/characters/windera/macro-front.svg",
  24015. extra: 963/883,
  24016. bottom: 23/986
  24017. },
  24018. form: "macro",
  24019. default: true
  24020. },
  24021. },
  24022. [
  24023. {
  24024. name: "Normal",
  24025. height: math.unit(8, "feet"),
  24026. default: true,
  24027. form: "armored"
  24028. },
  24029. {
  24030. name: "Normal",
  24031. height: math.unit(70, "feet"),
  24032. default: true,
  24033. form: "macro"
  24034. },
  24035. ],
  24036. {
  24037. "armored": {
  24038. name: "Armored",
  24039. default: true
  24040. },
  24041. "macro": {
  24042. name: "Macro",
  24043. },
  24044. }
  24045. ))
  24046. characterMakers.push(() => makeCharacter(
  24047. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24048. {
  24049. front: {
  24050. height: math.unit(28.75, "feet"),
  24051. weight: math.unit(2000, "kg"),
  24052. name: "Front",
  24053. image: {
  24054. source: "./media/characters/sonear/front.svg",
  24055. extra: 1041.1 / 964.9,
  24056. bottom: 53.7 / 1096.6
  24057. }
  24058. },
  24059. },
  24060. [
  24061. {
  24062. name: "Normal",
  24063. height: math.unit(28.75, "feet"),
  24064. default: true
  24065. },
  24066. ]
  24067. ))
  24068. characterMakers.push(() => makeCharacter(
  24069. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24070. {
  24071. side: {
  24072. height: math.unit(25.5, "feet"),
  24073. weight: math.unit(23000, "kg"),
  24074. name: "Side",
  24075. image: {
  24076. source: "./media/characters/kanara/side.svg"
  24077. }
  24078. },
  24079. },
  24080. [
  24081. {
  24082. name: "Normal",
  24083. height: math.unit(25.5, "feet"),
  24084. default: true
  24085. },
  24086. ]
  24087. ))
  24088. characterMakers.push(() => makeCharacter(
  24089. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24090. {
  24091. side: {
  24092. height: math.unit(10, "feet"),
  24093. weight: math.unit(1000, "kg"),
  24094. name: "Side",
  24095. image: {
  24096. source: "./media/characters/ereus/side.svg",
  24097. extra: 1157 / 959,
  24098. bottom: 153 / 1312.5
  24099. }
  24100. },
  24101. },
  24102. [
  24103. {
  24104. name: "Normal",
  24105. height: math.unit(10, "feet"),
  24106. default: true
  24107. },
  24108. ]
  24109. ))
  24110. characterMakers.push(() => makeCharacter(
  24111. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24112. {
  24113. side: {
  24114. height: math.unit(4.5, "feet"),
  24115. weight: math.unit(500, "lb"),
  24116. name: "Side",
  24117. image: {
  24118. source: "./media/characters/e-ter/side.svg",
  24119. extra: 1550 / 1248,
  24120. bottom: 146 / 1694
  24121. }
  24122. },
  24123. },
  24124. [
  24125. {
  24126. name: "Normal",
  24127. height: math.unit(4.5, "feet"),
  24128. default: true
  24129. },
  24130. ]
  24131. ))
  24132. characterMakers.push(() => makeCharacter(
  24133. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24134. {
  24135. side: {
  24136. height: math.unit(9.7, "feet"),
  24137. weight: math.unit(4000, "kg"),
  24138. name: "Side",
  24139. image: {
  24140. source: "./media/characters/yamie/side.svg"
  24141. }
  24142. },
  24143. },
  24144. [
  24145. {
  24146. name: "Normal",
  24147. height: math.unit(9.7, "feet"),
  24148. default: true
  24149. },
  24150. ]
  24151. ))
  24152. characterMakers.push(() => makeCharacter(
  24153. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24154. {
  24155. front: {
  24156. height: math.unit(50, "feet"),
  24157. weight: math.unit(50000, "kg"),
  24158. name: "Front",
  24159. image: {
  24160. source: "./media/characters/anders/front.svg",
  24161. extra: 570 / 539,
  24162. bottom: 14.7 / 586.7
  24163. }
  24164. },
  24165. },
  24166. [
  24167. {
  24168. name: "Large",
  24169. height: math.unit(50, "feet")
  24170. },
  24171. {
  24172. name: "Macro",
  24173. height: math.unit(2000, "feet"),
  24174. default: true
  24175. },
  24176. {
  24177. name: "Megamacro",
  24178. height: math.unit(12, "miles")
  24179. },
  24180. ]
  24181. ))
  24182. characterMakers.push(() => makeCharacter(
  24183. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24184. {
  24185. front: {
  24186. height: math.unit(7 + 2 / 12, "feet"),
  24187. weight: math.unit(300, "lb"),
  24188. name: "Front",
  24189. image: {
  24190. source: "./media/characters/reban/front.svg",
  24191. extra: 1287/1212,
  24192. bottom: 148/1435
  24193. }
  24194. },
  24195. head: {
  24196. height: math.unit(1.95, "feet"),
  24197. name: "Head",
  24198. image: {
  24199. source: "./media/characters/reban/head.svg"
  24200. }
  24201. },
  24202. maw: {
  24203. height: math.unit(0.95, "feet"),
  24204. name: "Maw",
  24205. image: {
  24206. source: "./media/characters/reban/maw.svg"
  24207. }
  24208. },
  24209. foot: {
  24210. height: math.unit(1.65, "feet"),
  24211. name: "Foot",
  24212. image: {
  24213. source: "./media/characters/reban/foot.svg"
  24214. }
  24215. },
  24216. dick: {
  24217. height: math.unit(7 / 5, "feet"),
  24218. name: "Dick",
  24219. image: {
  24220. source: "./media/characters/reban/dick.svg"
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Natural Height",
  24227. height: math.unit(7 + 2 / 12, "feet")
  24228. },
  24229. {
  24230. name: "Macro",
  24231. height: math.unit(500, "feet"),
  24232. default: true
  24233. },
  24234. {
  24235. name: "Canon Height",
  24236. height: math.unit(50, "AU")
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24242. {
  24243. front: {
  24244. height: math.unit(6, "feet"),
  24245. weight: math.unit(150, "lb"),
  24246. name: "Front",
  24247. image: {
  24248. source: "./media/characters/terrance-keayes/front.svg",
  24249. extra: 1.005,
  24250. bottom: 151 / 1615
  24251. }
  24252. },
  24253. side: {
  24254. height: math.unit(6, "feet"),
  24255. weight: math.unit(150, "lb"),
  24256. name: "Side",
  24257. image: {
  24258. source: "./media/characters/terrance-keayes/side.svg",
  24259. extra: 1.005,
  24260. bottom: 129.4 / 1544
  24261. }
  24262. },
  24263. back: {
  24264. height: math.unit(6, "feet"),
  24265. weight: math.unit(150, "lb"),
  24266. name: "Back",
  24267. image: {
  24268. source: "./media/characters/terrance-keayes/back.svg",
  24269. extra: 1.005,
  24270. bottom: 58.4 / 1557.3
  24271. }
  24272. },
  24273. dick: {
  24274. height: math.unit(6 * 0.208, "feet"),
  24275. name: "Dick",
  24276. image: {
  24277. source: "./media/characters/terrance-keayes/dick.svg"
  24278. }
  24279. },
  24280. },
  24281. [
  24282. {
  24283. name: "Canon Height",
  24284. height: math.unit(35, "miles"),
  24285. default: true
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24291. {
  24292. front: {
  24293. height: math.unit(6, "feet"),
  24294. weight: math.unit(150, "lb"),
  24295. name: "Front",
  24296. image: {
  24297. source: "./media/characters/ofelia/front.svg",
  24298. extra: 1130/1117,
  24299. bottom: 91/1221
  24300. }
  24301. },
  24302. back: {
  24303. height: math.unit(6, "feet"),
  24304. weight: math.unit(150, "lb"),
  24305. name: "Back",
  24306. image: {
  24307. source: "./media/characters/ofelia/back.svg",
  24308. extra: 1172/1159,
  24309. bottom: 28/1200
  24310. }
  24311. },
  24312. maw: {
  24313. height: math.unit(1, "feet"),
  24314. name: "Maw",
  24315. image: {
  24316. source: "./media/characters/ofelia/maw.svg"
  24317. }
  24318. },
  24319. foot: {
  24320. height: math.unit(1.949, "feet"),
  24321. name: "Foot",
  24322. image: {
  24323. source: "./media/characters/ofelia/foot.svg"
  24324. }
  24325. },
  24326. },
  24327. [
  24328. {
  24329. name: "Canon Height",
  24330. height: math.unit(2000, "miles"),
  24331. default: true
  24332. },
  24333. ]
  24334. ))
  24335. characterMakers.push(() => makeCharacter(
  24336. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24337. {
  24338. front: {
  24339. height: math.unit(6, "feet"),
  24340. weight: math.unit(150, "lb"),
  24341. name: "Front",
  24342. image: {
  24343. source: "./media/characters/samuel/front.svg",
  24344. extra: 265 / 258,
  24345. bottom: 2 / 266.1566
  24346. }
  24347. },
  24348. },
  24349. [
  24350. {
  24351. name: "Macro",
  24352. height: math.unit(100, "feet"),
  24353. default: true
  24354. },
  24355. {
  24356. name: "Full Size",
  24357. height: math.unit(1000, "miles")
  24358. },
  24359. ]
  24360. ))
  24361. characterMakers.push(() => makeCharacter(
  24362. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24363. {
  24364. front: {
  24365. height: math.unit(6, "feet"),
  24366. weight: math.unit(300, "lb"),
  24367. name: "Front",
  24368. image: {
  24369. source: "./media/characters/beishir-kiel/front.svg",
  24370. extra: 569 / 547,
  24371. bottom: 41.9 / 609
  24372. }
  24373. },
  24374. maw: {
  24375. height: math.unit(6 * 0.202, "feet"),
  24376. name: "Maw",
  24377. image: {
  24378. source: "./media/characters/beishir-kiel/maw.svg"
  24379. }
  24380. },
  24381. },
  24382. [
  24383. {
  24384. name: "Macro",
  24385. height: math.unit(300, "feet"),
  24386. default: true
  24387. },
  24388. ]
  24389. ))
  24390. characterMakers.push(() => makeCharacter(
  24391. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24392. {
  24393. front: {
  24394. height: math.unit(5 + 7/12, "feet"),
  24395. weight: math.unit(120, "lb"),
  24396. name: "Front",
  24397. image: {
  24398. source: "./media/characters/logan-grey/front.svg",
  24399. extra: 1836/1738,
  24400. bottom: 108/1944
  24401. }
  24402. },
  24403. back: {
  24404. height: math.unit(5 + 7/12, "feet"),
  24405. weight: math.unit(120, "lb"),
  24406. name: "Back",
  24407. image: {
  24408. source: "./media/characters/logan-grey/back.svg",
  24409. extra: 1880/1794,
  24410. bottom: 24/1904
  24411. }
  24412. },
  24413. frontSfw: {
  24414. height: math.unit(5 + 7/12, "feet"),
  24415. weight: math.unit(120, "lb"),
  24416. name: "Front (SFW)",
  24417. image: {
  24418. source: "./media/characters/logan-grey/front-sfw.svg",
  24419. extra: 1836/1738,
  24420. bottom: 108/1944
  24421. }
  24422. },
  24423. backSfw: {
  24424. height: math.unit(5 + 7/12, "feet"),
  24425. weight: math.unit(120, "lb"),
  24426. name: "Back (SFW)",
  24427. image: {
  24428. source: "./media/characters/logan-grey/back-sfw.svg",
  24429. extra: 1880/1794,
  24430. bottom: 24/1904
  24431. }
  24432. },
  24433. hands: {
  24434. height: math.unit(0.84, "feet"),
  24435. name: "Hands",
  24436. image: {
  24437. source: "./media/characters/logan-grey/hands.svg"
  24438. }
  24439. },
  24440. paws: {
  24441. height: math.unit(0.72, "feet"),
  24442. name: "Paws",
  24443. image: {
  24444. source: "./media/characters/logan-grey/paws.svg"
  24445. }
  24446. },
  24447. cock: {
  24448. height: math.unit(1.45, "feet"),
  24449. name: "Cock",
  24450. image: {
  24451. source: "./media/characters/logan-grey/cock.svg"
  24452. }
  24453. },
  24454. cockAlt: {
  24455. height: math.unit(1.437, "feet"),
  24456. name: "Cock (alt)",
  24457. image: {
  24458. source: "./media/characters/logan-grey/cock-alt.svg"
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Normal",
  24465. height: math.unit(5 + 8 / 12, "feet")
  24466. },
  24467. {
  24468. name: "The 500 Foot Femboy",
  24469. height: math.unit(500, "feet"),
  24470. default: true
  24471. },
  24472. {
  24473. name: "Megmacro",
  24474. height: math.unit(20, "miles")
  24475. },
  24476. ]
  24477. ))
  24478. characterMakers.push(() => makeCharacter(
  24479. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24480. {
  24481. front: {
  24482. height: math.unit(8 + 2 / 12, "feet"),
  24483. weight: math.unit(275, "lb"),
  24484. name: "Front",
  24485. image: {
  24486. source: "./media/characters/draganta/front.svg",
  24487. extra: 1177 / 1135,
  24488. bottom: 33.46 / 1212.1
  24489. }
  24490. },
  24491. },
  24492. [
  24493. {
  24494. name: "Normal",
  24495. height: math.unit(8 + 6 / 12, "feet"),
  24496. default: true
  24497. },
  24498. {
  24499. name: "Macro",
  24500. height: math.unit(150, "feet")
  24501. },
  24502. {
  24503. name: "Megamacro",
  24504. height: math.unit(1000, "miles")
  24505. },
  24506. ]
  24507. ))
  24508. characterMakers.push(() => makeCharacter(
  24509. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24510. {
  24511. front: {
  24512. height: math.unit(1.72, "m"),
  24513. weight: math.unit(80, "lb"),
  24514. name: "Front",
  24515. image: {
  24516. source: "./media/characters/voski/front.svg",
  24517. extra: 2076.22 / 2022.4,
  24518. bottom: 102.7 / 2177.3866
  24519. }
  24520. },
  24521. frontFlaccid: {
  24522. height: math.unit(1.72, "m"),
  24523. weight: math.unit(80, "lb"),
  24524. name: "Front (Flaccid)",
  24525. image: {
  24526. source: "./media/characters/voski/front-flaccid.svg",
  24527. extra: 2076.22 / 2022.4,
  24528. bottom: 102.7 / 2177.3866
  24529. }
  24530. },
  24531. frontErect: {
  24532. height: math.unit(1.72, "m"),
  24533. weight: math.unit(80, "lb"),
  24534. name: "Front (Erect)",
  24535. image: {
  24536. source: "./media/characters/voski/front-erect.svg",
  24537. extra: 2076.22 / 2022.4,
  24538. bottom: 102.7 / 2177.3866
  24539. }
  24540. },
  24541. back: {
  24542. height: math.unit(1.72, "m"),
  24543. weight: math.unit(80, "lb"),
  24544. name: "Back",
  24545. image: {
  24546. source: "./media/characters/voski/back.svg",
  24547. extra: 2104 / 2051,
  24548. bottom: 10.45 / 2113.63
  24549. }
  24550. },
  24551. },
  24552. [
  24553. {
  24554. name: "Normal",
  24555. height: math.unit(1.72, "m")
  24556. },
  24557. {
  24558. name: "Macro",
  24559. height: math.unit(55, "m"),
  24560. default: true
  24561. },
  24562. {
  24563. name: "Macro+",
  24564. height: math.unit(300, "m")
  24565. },
  24566. {
  24567. name: "Macro++",
  24568. height: math.unit(700, "m")
  24569. },
  24570. {
  24571. name: "Macro+++",
  24572. height: math.unit(4500, "m")
  24573. },
  24574. {
  24575. name: "Macro++++",
  24576. height: math.unit(45, "km")
  24577. },
  24578. {
  24579. name: "Macro+++++",
  24580. height: math.unit(1220, "km")
  24581. },
  24582. ]
  24583. ))
  24584. characterMakers.push(() => makeCharacter(
  24585. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24586. {
  24587. front: {
  24588. height: math.unit(2.3, "m"),
  24589. weight: math.unit(304, "kg"),
  24590. name: "Front",
  24591. image: {
  24592. source: "./media/characters/icowom-lee/front.svg",
  24593. extra: 985 / 955,
  24594. bottom: 25.4 / 1012
  24595. }
  24596. },
  24597. fronttentacles: {
  24598. height: math.unit(2.3, "m"),
  24599. weight: math.unit(304, "kg"),
  24600. name: "Front-tentacles",
  24601. image: {
  24602. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24603. extra: 985 / 955,
  24604. bottom: 25.4 / 1012
  24605. }
  24606. },
  24607. back: {
  24608. height: math.unit(2.3, "m"),
  24609. weight: math.unit(304, "kg"),
  24610. name: "Back",
  24611. image: {
  24612. source: "./media/characters/icowom-lee/back.svg",
  24613. extra: 975 / 954,
  24614. bottom: 9.5 / 985
  24615. }
  24616. },
  24617. backtentacles: {
  24618. height: math.unit(2.3, "m"),
  24619. weight: math.unit(304, "kg"),
  24620. name: "Back-tentacles",
  24621. image: {
  24622. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24623. extra: 975 / 954,
  24624. bottom: 9.5 / 985
  24625. }
  24626. },
  24627. frontDressed: {
  24628. height: math.unit(2.3, "m"),
  24629. weight: math.unit(304, "kg"),
  24630. name: "Front (Dressed)",
  24631. image: {
  24632. source: "./media/characters/icowom-lee/front-dressed.svg",
  24633. extra: 3076 / 2933,
  24634. bottom: 51.4 / 3125.1889
  24635. }
  24636. },
  24637. rump: {
  24638. height: math.unit(0.776, "meters"),
  24639. name: "Rump",
  24640. image: {
  24641. source: "./media/characters/icowom-lee/rump.svg"
  24642. }
  24643. },
  24644. genitals: {
  24645. height: math.unit(0.78, "meters"),
  24646. name: "Genitals",
  24647. image: {
  24648. source: "./media/characters/icowom-lee/genitals.svg"
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "Normal",
  24655. height: math.unit(2.3, "meters"),
  24656. default: true
  24657. },
  24658. {
  24659. name: "Macro",
  24660. height: math.unit(94, "meters"),
  24661. default: true
  24662. },
  24663. ]
  24664. ))
  24665. characterMakers.push(() => makeCharacter(
  24666. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24667. {
  24668. front: {
  24669. height: math.unit(22, "meters"),
  24670. weight: math.unit(21000, "kg"),
  24671. name: "Front",
  24672. image: {
  24673. source: "./media/characters/shock-diamond/front.svg",
  24674. extra: 2204 / 2053,
  24675. bottom: 65 / 2239.47
  24676. }
  24677. },
  24678. frontNude: {
  24679. height: math.unit(22, "meters"),
  24680. weight: math.unit(21000, "kg"),
  24681. name: "Front (Nude)",
  24682. image: {
  24683. source: "./media/characters/shock-diamond/front-nude.svg",
  24684. extra: 2514 / 2285,
  24685. bottom: 13 / 2527.56
  24686. }
  24687. },
  24688. },
  24689. [
  24690. {
  24691. name: "Normal",
  24692. height: math.unit(3, "meters")
  24693. },
  24694. {
  24695. name: "Macro",
  24696. height: math.unit(22, "meters"),
  24697. default: true
  24698. },
  24699. ]
  24700. ))
  24701. characterMakers.push(() => makeCharacter(
  24702. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24703. {
  24704. front: {
  24705. height: math.unit(5 + 4/12, "feet"),
  24706. weight: math.unit(125, "lb"),
  24707. name: "Front",
  24708. image: {
  24709. source: "./media/characters/rory/front.svg",
  24710. extra: 1790/1681,
  24711. bottom: 66/1856
  24712. },
  24713. form: "normal",
  24714. default: true
  24715. },
  24716. back: {
  24717. height: math.unit(5 + 4/12, "feet"),
  24718. weight: math.unit(125, "lb"),
  24719. name: "Back",
  24720. image: {
  24721. source: "./media/characters/rory/back.svg",
  24722. extra: 1805/1690,
  24723. bottom: 56/1861
  24724. },
  24725. form: "normal"
  24726. },
  24727. frontDressed: {
  24728. height: math.unit(5 + 4/12, "feet"),
  24729. weight: math.unit(125, "lb"),
  24730. name: "Front (Dressed)",
  24731. image: {
  24732. source: "./media/characters/rory/front-dressed.svg",
  24733. extra: 1790/1681,
  24734. bottom: 66/1856
  24735. },
  24736. form: "normal"
  24737. },
  24738. backDressed: {
  24739. height: math.unit(5 + 4/12, "feet"),
  24740. weight: math.unit(125, "lb"),
  24741. name: "Back (Dressed)",
  24742. image: {
  24743. source: "./media/characters/rory/back-dressed.svg",
  24744. extra: 1805/1690,
  24745. bottom: 56/1861
  24746. },
  24747. form: "normal"
  24748. },
  24749. frontNsfw: {
  24750. height: math.unit(5 + 4/12, "feet"),
  24751. weight: math.unit(125, "lb"),
  24752. name: "Front (NSFW)",
  24753. image: {
  24754. source: "./media/characters/rory/front-nsfw.svg",
  24755. extra: 1790/1681,
  24756. bottom: 66/1856
  24757. },
  24758. form: "normal"
  24759. },
  24760. backNsfw: {
  24761. height: math.unit(5 + 4/12, "feet"),
  24762. weight: math.unit(125, "lb"),
  24763. name: "Back (NSFW)",
  24764. image: {
  24765. source: "./media/characters/rory/back-nsfw.svg",
  24766. extra: 1805/1690,
  24767. bottom: 56/1861
  24768. },
  24769. form: "normal"
  24770. },
  24771. dick: {
  24772. height: math.unit(0.8, "feet"),
  24773. name: "Dick",
  24774. image: {
  24775. source: "./media/characters/rory/dick.svg"
  24776. },
  24777. form: "normal"
  24778. },
  24779. thicc_front: {
  24780. height: math.unit(5 + 4/12, "feet"),
  24781. weight: math.unit(195, "lb"),
  24782. name: "Front",
  24783. image: {
  24784. source: "./media/characters/rory/thicc-front.svg",
  24785. extra: 1220/1100,
  24786. bottom: 103/1323
  24787. },
  24788. form: "thicc",
  24789. default: true
  24790. },
  24791. thicc_back: {
  24792. height: math.unit(5 + 4/12, "feet"),
  24793. weight: math.unit(195, "lb"),
  24794. name: "Back",
  24795. image: {
  24796. source: "./media/characters/rory/thicc-back.svg",
  24797. extra: 1166/1086,
  24798. bottom: 35/1201
  24799. },
  24800. form: "thicc"
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Micro",
  24806. height: math.unit(3, "inches"),
  24807. allForms: true
  24808. },
  24809. {
  24810. name: "Normal",
  24811. height: math.unit(5 + 4/12, "feet"),
  24812. allForms: true,
  24813. default: true
  24814. },
  24815. {
  24816. name: "Macro",
  24817. height: math.unit(90, "feet"),
  24818. allForms: true
  24819. },
  24820. {
  24821. name: "Supercharged",
  24822. height: math.unit(270, "feet"),
  24823. allForms: true
  24824. },
  24825. ],
  24826. {
  24827. "normal": {
  24828. name: "Normal",
  24829. default: true
  24830. },
  24831. "thicc": {
  24832. name: "Thicc",
  24833. },
  24834. }
  24835. ))
  24836. characterMakers.push(() => makeCharacter(
  24837. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24838. {
  24839. front: {
  24840. height: math.unit(5 + 9 / 12, "feet"),
  24841. weight: math.unit(190, "lb"),
  24842. name: "Front",
  24843. image: {
  24844. source: "./media/characters/sprisk/front.svg",
  24845. extra: 1225 / 1180,
  24846. bottom: 42.7 / 1266.4
  24847. }
  24848. },
  24849. frontNsfw: {
  24850. height: math.unit(5 + 9 / 12, "feet"),
  24851. weight: math.unit(190, "lb"),
  24852. name: "Front (NSFW)",
  24853. image: {
  24854. source: "./media/characters/sprisk/front-nsfw.svg",
  24855. extra: 1225 / 1180,
  24856. bottom: 42.7 / 1266.4
  24857. }
  24858. },
  24859. back: {
  24860. height: math.unit(5 + 9 / 12, "feet"),
  24861. weight: math.unit(190, "lb"),
  24862. name: "Back",
  24863. image: {
  24864. source: "./media/characters/sprisk/back.svg",
  24865. extra: 1247 / 1200,
  24866. bottom: 5.6 / 1253.04
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Tiny",
  24873. height: math.unit(2, "inches")
  24874. },
  24875. {
  24876. name: "Normal",
  24877. height: math.unit(5 + 9 / 12, "feet"),
  24878. default: true
  24879. },
  24880. {
  24881. name: "Mini Macro",
  24882. height: math.unit(18, "feet")
  24883. },
  24884. {
  24885. name: "Macro",
  24886. height: math.unit(100, "feet")
  24887. },
  24888. {
  24889. name: "MACRO",
  24890. height: math.unit(50, "miles")
  24891. },
  24892. {
  24893. name: "M A C R O",
  24894. height: math.unit(300, "miles")
  24895. },
  24896. ]
  24897. ))
  24898. characterMakers.push(() => makeCharacter(
  24899. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24900. {
  24901. side: {
  24902. height: math.unit(15.6, "meters"),
  24903. weight: math.unit(700000, "kg"),
  24904. name: "Side",
  24905. image: {
  24906. source: "./media/characters/bunsen/side.svg",
  24907. extra: 1644 / 358
  24908. }
  24909. },
  24910. foot: {
  24911. height: math.unit(1.611 * 1644 / 358, "meter"),
  24912. name: "Foot",
  24913. image: {
  24914. source: "./media/characters/bunsen/foot.svg"
  24915. }
  24916. },
  24917. },
  24918. [
  24919. {
  24920. name: "Small",
  24921. height: math.unit(10, "feet")
  24922. },
  24923. {
  24924. name: "Normal",
  24925. height: math.unit(15.6, "meters"),
  24926. default: true
  24927. },
  24928. ]
  24929. ))
  24930. characterMakers.push(() => makeCharacter(
  24931. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24932. {
  24933. front: {
  24934. height: math.unit(4 + 11 / 12, "feet"),
  24935. weight: math.unit(140, "lb"),
  24936. name: "Front",
  24937. image: {
  24938. source: "./media/characters/sesh/front.svg",
  24939. extra: 3420 / 3231,
  24940. bottom: 72 / 3949.5
  24941. }
  24942. },
  24943. },
  24944. [
  24945. {
  24946. name: "Normal",
  24947. height: math.unit(4 + 11 / 12, "feet")
  24948. },
  24949. {
  24950. name: "Grown",
  24951. height: math.unit(15, "feet"),
  24952. default: true
  24953. },
  24954. {
  24955. name: "Macro",
  24956. height: math.unit(1500, "feet")
  24957. },
  24958. {
  24959. name: "Megamacro",
  24960. height: math.unit(30, "miles")
  24961. },
  24962. {
  24963. name: "Continental",
  24964. height: math.unit(3000, "miles")
  24965. },
  24966. {
  24967. name: "Gravity Mass",
  24968. height: math.unit(300000, "miles")
  24969. },
  24970. {
  24971. name: "Planet Buster",
  24972. height: math.unit(30000000, "miles")
  24973. },
  24974. {
  24975. name: "Big",
  24976. height: math.unit(3000000000, "miles")
  24977. },
  24978. ]
  24979. ))
  24980. characterMakers.push(() => makeCharacter(
  24981. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24982. {
  24983. front: {
  24984. height: math.unit(9, "feet"),
  24985. weight: math.unit(350, "lb"),
  24986. name: "Front",
  24987. image: {
  24988. source: "./media/characters/pepper/front.svg",
  24989. extra: 1448 / 1312,
  24990. bottom: 9.4 / 1457.88
  24991. }
  24992. },
  24993. back: {
  24994. height: math.unit(9, "feet"),
  24995. weight: math.unit(350, "lb"),
  24996. name: "Back",
  24997. image: {
  24998. source: "./media/characters/pepper/back.svg",
  24999. extra: 1423 / 1300,
  25000. bottom: 4.6 / 1429
  25001. }
  25002. },
  25003. maw: {
  25004. height: math.unit(0.932, "feet"),
  25005. name: "Maw",
  25006. image: {
  25007. source: "./media/characters/pepper/maw.svg"
  25008. }
  25009. },
  25010. },
  25011. [
  25012. {
  25013. name: "Normal",
  25014. height: math.unit(9, "feet"),
  25015. default: true
  25016. },
  25017. ]
  25018. ))
  25019. characterMakers.push(() => makeCharacter(
  25020. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25021. {
  25022. front: {
  25023. height: math.unit(6, "feet"),
  25024. weight: math.unit(150, "lb"),
  25025. name: "Front",
  25026. image: {
  25027. source: "./media/characters/maelstrom/front.svg",
  25028. extra: 2100 / 1883,
  25029. bottom: 94 / 2196.7
  25030. }
  25031. },
  25032. },
  25033. [
  25034. {
  25035. name: "Less Kaiju",
  25036. height: math.unit(200, "feet")
  25037. },
  25038. {
  25039. name: "Kaiju",
  25040. height: math.unit(400, "feet"),
  25041. default: true
  25042. },
  25043. {
  25044. name: "Kaiju-er",
  25045. height: math.unit(600, "feet")
  25046. },
  25047. ]
  25048. ))
  25049. characterMakers.push(() => makeCharacter(
  25050. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25051. {
  25052. front: {
  25053. height: math.unit(6 + 5 / 12, "feet"),
  25054. weight: math.unit(180, "lb"),
  25055. name: "Front",
  25056. image: {
  25057. source: "./media/characters/lexir/front.svg",
  25058. extra: 180 / 172,
  25059. bottom: 12 / 192
  25060. }
  25061. },
  25062. back: {
  25063. height: math.unit(6 + 5 / 12, "feet"),
  25064. weight: math.unit(180, "lb"),
  25065. name: "Back",
  25066. image: {
  25067. source: "./media/characters/lexir/back.svg",
  25068. extra: 1273/1201,
  25069. bottom: 39/1312
  25070. }
  25071. },
  25072. },
  25073. [
  25074. {
  25075. name: "Very Smal",
  25076. height: math.unit(1, "nm")
  25077. },
  25078. {
  25079. name: "Normal",
  25080. height: math.unit(6 + 5 / 12, "feet"),
  25081. default: true
  25082. },
  25083. {
  25084. name: "Macro",
  25085. height: math.unit(1, "mile")
  25086. },
  25087. {
  25088. name: "Megamacro",
  25089. height: math.unit(50, "miles")
  25090. },
  25091. ]
  25092. ))
  25093. characterMakers.push(() => makeCharacter(
  25094. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25095. {
  25096. front: {
  25097. height: math.unit(1.5, "meters"),
  25098. weight: math.unit(100, "lb"),
  25099. name: "Front",
  25100. image: {
  25101. source: "./media/characters/maksio/front.svg",
  25102. extra: 1549 / 1531,
  25103. bottom: 123.7 / 1674.5429
  25104. }
  25105. },
  25106. back: {
  25107. height: math.unit(1.5, "meters"),
  25108. weight: math.unit(100, "lb"),
  25109. name: "Back",
  25110. image: {
  25111. source: "./media/characters/maksio/back.svg",
  25112. extra: 1541 / 1509,
  25113. bottom: 97 / 1639
  25114. }
  25115. },
  25116. hand: {
  25117. height: math.unit(0.621, "feet"),
  25118. name: "Hand",
  25119. image: {
  25120. source: "./media/characters/maksio/hand.svg"
  25121. }
  25122. },
  25123. foot: {
  25124. height: math.unit(1.611, "feet"),
  25125. name: "Foot",
  25126. image: {
  25127. source: "./media/characters/maksio/foot.svg"
  25128. }
  25129. },
  25130. },
  25131. [
  25132. {
  25133. name: "Shrunken",
  25134. height: math.unit(10, "cm")
  25135. },
  25136. {
  25137. name: "Normal",
  25138. height: math.unit(150, "cm"),
  25139. default: true
  25140. },
  25141. ]
  25142. ))
  25143. characterMakers.push(() => makeCharacter(
  25144. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25145. {
  25146. front: {
  25147. height: math.unit(100, "feet"),
  25148. name: "Front",
  25149. image: {
  25150. source: "./media/characters/erza-bear/front.svg",
  25151. extra: 2449 / 2390,
  25152. bottom: 46 / 2494
  25153. }
  25154. },
  25155. back: {
  25156. height: math.unit(100, "feet"),
  25157. name: "Back",
  25158. image: {
  25159. source: "./media/characters/erza-bear/back.svg",
  25160. extra: 2489 / 2430,
  25161. bottom: 85.4 / 2480
  25162. }
  25163. },
  25164. tail: {
  25165. height: math.unit(42, "feet"),
  25166. name: "Tail",
  25167. image: {
  25168. source: "./media/characters/erza-bear/tail.svg"
  25169. }
  25170. },
  25171. tongue: {
  25172. height: math.unit(8, "feet"),
  25173. name: "Tongue",
  25174. image: {
  25175. source: "./media/characters/erza-bear/tongue.svg"
  25176. }
  25177. },
  25178. dick: {
  25179. height: math.unit(10.5, "feet"),
  25180. name: "Dick",
  25181. image: {
  25182. source: "./media/characters/erza-bear/dick.svg"
  25183. }
  25184. },
  25185. dickVertical: {
  25186. height: math.unit(16.9, "feet"),
  25187. name: "Dick (Vertical)",
  25188. image: {
  25189. source: "./media/characters/erza-bear/dick-vertical.svg"
  25190. }
  25191. },
  25192. },
  25193. [
  25194. {
  25195. name: "Macro",
  25196. height: math.unit(100, "feet"),
  25197. default: true
  25198. },
  25199. ]
  25200. ))
  25201. characterMakers.push(() => makeCharacter(
  25202. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25203. {
  25204. front: {
  25205. height: math.unit(172, "cm"),
  25206. weight: math.unit(73, "kg"),
  25207. name: "Front",
  25208. image: {
  25209. source: "./media/characters/violet-flor/front.svg",
  25210. extra: 1530 / 1442,
  25211. bottom: 61.9 / 1588.8
  25212. }
  25213. },
  25214. back: {
  25215. height: math.unit(180, "cm"),
  25216. weight: math.unit(73, "kg"),
  25217. name: "Back",
  25218. image: {
  25219. source: "./media/characters/violet-flor/back.svg",
  25220. extra: 1692 / 1630,
  25221. bottom: 20 / 1712
  25222. }
  25223. },
  25224. },
  25225. [
  25226. {
  25227. name: "Normal",
  25228. height: math.unit(172, "cm"),
  25229. default: true
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(6, "feet"),
  25238. weight: math.unit(220, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/lynn-rhea/front.svg",
  25242. extra: 310 / 273
  25243. }
  25244. },
  25245. back: {
  25246. height: math.unit(6, "feet"),
  25247. weight: math.unit(220, "lb"),
  25248. name: "Back",
  25249. image: {
  25250. source: "./media/characters/lynn-rhea/back.svg",
  25251. extra: 310 / 273
  25252. }
  25253. },
  25254. dicks: {
  25255. height: math.unit(0.9, "feet"),
  25256. name: "Dicks",
  25257. image: {
  25258. source: "./media/characters/lynn-rhea/dicks.svg"
  25259. }
  25260. },
  25261. slit: {
  25262. height: math.unit(0.4, "feet"),
  25263. name: "Slit",
  25264. image: {
  25265. source: "./media/characters/lynn-rhea/slit.svg"
  25266. }
  25267. },
  25268. },
  25269. [
  25270. {
  25271. name: "Micro",
  25272. height: math.unit(1, "inch")
  25273. },
  25274. {
  25275. name: "Macro",
  25276. height: math.unit(60, "feet"),
  25277. default: true
  25278. },
  25279. {
  25280. name: "Megamacro",
  25281. height: math.unit(2, "miles")
  25282. },
  25283. {
  25284. name: "Gigamacro",
  25285. height: math.unit(3, "earths")
  25286. },
  25287. {
  25288. name: "Galactic",
  25289. height: math.unit(0.8, "galaxies")
  25290. },
  25291. ]
  25292. ))
  25293. characterMakers.push(() => makeCharacter(
  25294. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25295. {
  25296. front: {
  25297. height: math.unit(1600, "feet"),
  25298. weight: math.unit(85758785169, "kg"),
  25299. name: "Front",
  25300. image: {
  25301. source: "./media/characters/valathos/front.svg",
  25302. extra: 1451 / 1339
  25303. }
  25304. },
  25305. },
  25306. [
  25307. {
  25308. name: "Macro",
  25309. height: math.unit(1600, "feet"),
  25310. default: true
  25311. },
  25312. ]
  25313. ))
  25314. characterMakers.push(() => makeCharacter(
  25315. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25316. {
  25317. front: {
  25318. height: math.unit(7 + 5 / 12, "feet"),
  25319. weight: math.unit(300, "lb"),
  25320. name: "Front",
  25321. image: {
  25322. source: "./media/characters/azula/front.svg",
  25323. extra: 3208 / 2880,
  25324. bottom: 80.2 / 3277
  25325. }
  25326. },
  25327. back: {
  25328. height: math.unit(7 + 5 / 12, "feet"),
  25329. weight: math.unit(300, "lb"),
  25330. name: "Back",
  25331. image: {
  25332. source: "./media/characters/azula/back.svg",
  25333. extra: 3169 / 2822,
  25334. bottom: 150.6 / 3321
  25335. }
  25336. },
  25337. },
  25338. [
  25339. {
  25340. name: "Normal",
  25341. height: math.unit(7 + 5 / 12, "feet"),
  25342. default: true
  25343. },
  25344. {
  25345. name: "Big",
  25346. height: math.unit(20, "feet")
  25347. },
  25348. ]
  25349. ))
  25350. characterMakers.push(() => makeCharacter(
  25351. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25352. {
  25353. front: {
  25354. height: math.unit(5 + 1 / 12, "feet"),
  25355. weight: math.unit(110, "lb"),
  25356. name: "Front",
  25357. image: {
  25358. source: "./media/characters/rupert/front.svg",
  25359. extra: 1549 / 1495,
  25360. bottom: 54.2 / 1604.4
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "Normal",
  25367. height: math.unit(5 + 1 / 12, "feet"),
  25368. default: true
  25369. },
  25370. ]
  25371. ))
  25372. characterMakers.push(() => makeCharacter(
  25373. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25374. {
  25375. front: {
  25376. height: math.unit(8 + 4 / 12, "feet"),
  25377. weight: math.unit(350, "lb"),
  25378. name: "Front",
  25379. image: {
  25380. source: "./media/characters/sheera-castellar/front.svg",
  25381. extra: 1957 / 1894,
  25382. bottom: 26.97 / 1975.017
  25383. }
  25384. },
  25385. side: {
  25386. height: math.unit(8 + 4 / 12, "feet"),
  25387. weight: math.unit(350, "lb"),
  25388. name: "Side",
  25389. image: {
  25390. source: "./media/characters/sheera-castellar/side.svg",
  25391. extra: 1957 / 1894
  25392. }
  25393. },
  25394. back: {
  25395. height: math.unit(8 + 4 / 12, "feet"),
  25396. weight: math.unit(350, "lb"),
  25397. name: "Back",
  25398. image: {
  25399. source: "./media/characters/sheera-castellar/back.svg",
  25400. extra: 1957 / 1894
  25401. }
  25402. },
  25403. angled: {
  25404. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25405. weight: math.unit(350, "lb"),
  25406. name: "Angled",
  25407. image: {
  25408. source: "./media/characters/sheera-castellar/angled.svg",
  25409. extra: 1807 / 1707,
  25410. bottom: 68 / 1875
  25411. }
  25412. },
  25413. genitals: {
  25414. height: math.unit(2.2, "feet"),
  25415. name: "Genitals",
  25416. image: {
  25417. source: "./media/characters/sheera-castellar/genitals.svg"
  25418. }
  25419. },
  25420. taur: {
  25421. height: math.unit(10 + 6/12, "feet"),
  25422. name: "Taur",
  25423. image: {
  25424. source: "./media/characters/sheera-castellar/taur.svg",
  25425. extra: 2017/1909,
  25426. bottom: 185/2202
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Normal",
  25433. height: math.unit(8 + 4 / 12, "feet")
  25434. },
  25435. {
  25436. name: "Macro",
  25437. height: math.unit(150, "feet"),
  25438. default: true
  25439. },
  25440. {
  25441. name: "Macro+",
  25442. height: math.unit(800, "feet")
  25443. },
  25444. ]
  25445. ))
  25446. characterMakers.push(() => makeCharacter(
  25447. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25448. {
  25449. front: {
  25450. height: math.unit(6, "feet"),
  25451. weight: math.unit(150, "lb"),
  25452. name: "Front",
  25453. image: {
  25454. source: "./media/characters/jaipur/front.svg",
  25455. extra: 3860 / 3731,
  25456. bottom: 287 / 4140
  25457. }
  25458. },
  25459. back: {
  25460. height: math.unit(6, "feet"),
  25461. weight: math.unit(150, "lb"),
  25462. name: "Back",
  25463. image: {
  25464. source: "./media/characters/jaipur/back.svg",
  25465. extra: 1637/1561,
  25466. bottom: 154/1791
  25467. }
  25468. },
  25469. },
  25470. [
  25471. {
  25472. name: "Normal",
  25473. height: math.unit(1.85, "meters"),
  25474. default: true
  25475. },
  25476. {
  25477. name: "Macro",
  25478. height: math.unit(150, "meters")
  25479. },
  25480. {
  25481. name: "Macro+",
  25482. height: math.unit(0.5, "miles")
  25483. },
  25484. {
  25485. name: "Macro++",
  25486. height: math.unit(2.5, "miles")
  25487. },
  25488. {
  25489. name: "Macro+++",
  25490. height: math.unit(12, "miles")
  25491. },
  25492. {
  25493. name: "Macro++++",
  25494. height: math.unit(120, "miles")
  25495. },
  25496. {
  25497. name: "Macro+++++",
  25498. height: math.unit(1200, "miles")
  25499. },
  25500. ]
  25501. ))
  25502. characterMakers.push(() => makeCharacter(
  25503. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25504. {
  25505. front: {
  25506. height: math.unit(6, "feet"),
  25507. weight: math.unit(150, "lb"),
  25508. name: "Front",
  25509. image: {
  25510. source: "./media/characters/sheila-wolf/front.svg",
  25511. extra: 1931 / 1808,
  25512. bottom: 29.5 / 1960
  25513. }
  25514. },
  25515. dick: {
  25516. height: math.unit(1.464, "feet"),
  25517. name: "Dick",
  25518. image: {
  25519. source: "./media/characters/sheila-wolf/dick.svg"
  25520. }
  25521. },
  25522. muzzle: {
  25523. height: math.unit(0.513, "feet"),
  25524. name: "Muzzle",
  25525. image: {
  25526. source: "./media/characters/sheila-wolf/muzzle.svg"
  25527. }
  25528. },
  25529. },
  25530. [
  25531. {
  25532. name: "Macro",
  25533. height: math.unit(70, "feet"),
  25534. default: true
  25535. },
  25536. ]
  25537. ))
  25538. characterMakers.push(() => makeCharacter(
  25539. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25540. {
  25541. front: {
  25542. height: math.unit(32, "meters"),
  25543. weight: math.unit(300000, "kg"),
  25544. name: "Front",
  25545. image: {
  25546. source: "./media/characters/almor/front.svg",
  25547. extra: 1408 / 1322,
  25548. bottom: 94.6 / 1506.5
  25549. }
  25550. },
  25551. },
  25552. [
  25553. {
  25554. name: "Macro",
  25555. height: math.unit(32, "meters"),
  25556. default: true
  25557. },
  25558. ]
  25559. ))
  25560. characterMakers.push(() => makeCharacter(
  25561. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25562. {
  25563. front: {
  25564. height: math.unit(7, "feet"),
  25565. weight: math.unit(200, "lb"),
  25566. name: "Front",
  25567. image: {
  25568. source: "./media/characters/silver/front.svg",
  25569. extra: 472.1 / 450.5,
  25570. bottom: 26.5 / 499.424
  25571. }
  25572. },
  25573. },
  25574. [
  25575. {
  25576. name: "Normal",
  25577. height: math.unit(7, "feet"),
  25578. default: true
  25579. },
  25580. {
  25581. name: "Macro",
  25582. height: math.unit(800, "feet")
  25583. },
  25584. {
  25585. name: "Megamacro",
  25586. height: math.unit(250, "miles")
  25587. },
  25588. ]
  25589. ))
  25590. characterMakers.push(() => makeCharacter(
  25591. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25592. {
  25593. front: {
  25594. height: math.unit(6, "feet"),
  25595. weight: math.unit(150, "lb"),
  25596. name: "Front",
  25597. image: {
  25598. source: "./media/characters/pliskin/front.svg",
  25599. extra: 1469 / 1359,
  25600. bottom: 70 / 1540
  25601. }
  25602. },
  25603. },
  25604. [
  25605. {
  25606. name: "Micro",
  25607. height: math.unit(3, "inches")
  25608. },
  25609. {
  25610. name: "Normal",
  25611. height: math.unit(5 + 11 / 12, "feet"),
  25612. default: true
  25613. },
  25614. {
  25615. name: "Macro",
  25616. height: math.unit(120, "feet")
  25617. },
  25618. ]
  25619. ))
  25620. characterMakers.push(() => makeCharacter(
  25621. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25622. {
  25623. front: {
  25624. height: math.unit(6, "feet"),
  25625. weight: math.unit(150, "lb"),
  25626. name: "Front",
  25627. image: {
  25628. source: "./media/characters/sammy/front.svg",
  25629. extra: 1193 / 1089,
  25630. bottom: 30.5 / 1226
  25631. }
  25632. },
  25633. },
  25634. [
  25635. {
  25636. name: "Macro",
  25637. height: math.unit(1700, "feet"),
  25638. default: true
  25639. },
  25640. {
  25641. name: "Examacro",
  25642. height: math.unit(2.5e9, "lightyears")
  25643. },
  25644. ]
  25645. ))
  25646. characterMakers.push(() => makeCharacter(
  25647. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25648. {
  25649. front: {
  25650. height: math.unit(21, "meters"),
  25651. weight: math.unit(12, "tonnes"),
  25652. name: "Front",
  25653. image: {
  25654. source: "./media/characters/kuru/front.svg",
  25655. extra: 4301 / 3785,
  25656. bottom: 371.3 / 4691
  25657. }
  25658. },
  25659. },
  25660. [
  25661. {
  25662. name: "Macro",
  25663. height: math.unit(21, "meters"),
  25664. default: true
  25665. },
  25666. ]
  25667. ))
  25668. characterMakers.push(() => makeCharacter(
  25669. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25670. {
  25671. front: {
  25672. height: math.unit(23, "meters"),
  25673. weight: math.unit(12.2, "tonnes"),
  25674. name: "Front",
  25675. image: {
  25676. source: "./media/characters/rakka/front.svg",
  25677. extra: 4670 / 4169,
  25678. bottom: 301 / 4968.7
  25679. }
  25680. },
  25681. },
  25682. [
  25683. {
  25684. name: "Macro",
  25685. height: math.unit(23, "meters"),
  25686. default: true
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25692. {
  25693. front: {
  25694. height: math.unit(6, "feet"),
  25695. weight: math.unit(150, "lb"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/rhys-feline/front.svg",
  25699. extra: 2488 / 2308,
  25700. bottom: 35.67 / 2519.19
  25701. }
  25702. },
  25703. },
  25704. [
  25705. {
  25706. name: "Really Small",
  25707. height: math.unit(1, "nm")
  25708. },
  25709. {
  25710. name: "Micro",
  25711. height: math.unit(4, "inches")
  25712. },
  25713. {
  25714. name: "Normal",
  25715. height: math.unit(4 + 10 / 12, "feet"),
  25716. default: true
  25717. },
  25718. {
  25719. name: "Macro",
  25720. height: math.unit(100, "feet")
  25721. },
  25722. {
  25723. name: "Megamacto",
  25724. height: math.unit(50, "miles")
  25725. },
  25726. ]
  25727. ))
  25728. characterMakers.push(() => makeCharacter(
  25729. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25730. {
  25731. side: {
  25732. height: math.unit(30, "feet"),
  25733. weight: math.unit(35000, "kg"),
  25734. name: "Side",
  25735. image: {
  25736. source: "./media/characters/alydar/side.svg",
  25737. extra: 234 / 222,
  25738. bottom: 6.5 / 241
  25739. }
  25740. },
  25741. front: {
  25742. height: math.unit(30, "feet"),
  25743. weight: math.unit(35000, "kg"),
  25744. name: "Front",
  25745. image: {
  25746. source: "./media/characters/alydar/front.svg",
  25747. extra: 223.37 / 210.2,
  25748. bottom: 22.3 / 246.76
  25749. }
  25750. },
  25751. top: {
  25752. height: math.unit(64.54, "feet"),
  25753. weight: math.unit(35000, "kg"),
  25754. name: "Top",
  25755. image: {
  25756. source: "./media/characters/alydar/top.svg"
  25757. }
  25758. },
  25759. anthro: {
  25760. height: math.unit(30, "feet"),
  25761. weight: math.unit(9000, "kg"),
  25762. name: "Anthro",
  25763. image: {
  25764. source: "./media/characters/alydar/anthro.svg",
  25765. extra: 432 / 421,
  25766. bottom: 7.18 / 440
  25767. }
  25768. },
  25769. maw: {
  25770. height: math.unit(11.693, "feet"),
  25771. name: "Maw",
  25772. image: {
  25773. source: "./media/characters/alydar/maw.svg"
  25774. }
  25775. },
  25776. head: {
  25777. height: math.unit(11.693, "feet"),
  25778. name: "Head",
  25779. image: {
  25780. source: "./media/characters/alydar/head.svg"
  25781. }
  25782. },
  25783. headAlt: {
  25784. height: math.unit(12.861, "feet"),
  25785. name: "Head (Alt)",
  25786. image: {
  25787. source: "./media/characters/alydar/head-alt.svg"
  25788. }
  25789. },
  25790. wing: {
  25791. height: math.unit(20.712, "feet"),
  25792. name: "Wing",
  25793. image: {
  25794. source: "./media/characters/alydar/wing.svg"
  25795. }
  25796. },
  25797. wingFeather: {
  25798. height: math.unit(9.662, "feet"),
  25799. name: "Wing Feather",
  25800. image: {
  25801. source: "./media/characters/alydar/wing-feather.svg"
  25802. }
  25803. },
  25804. countourFeather: {
  25805. height: math.unit(4.154, "feet"),
  25806. name: "Contour Feather",
  25807. image: {
  25808. source: "./media/characters/alydar/contour-feather.svg"
  25809. }
  25810. },
  25811. },
  25812. [
  25813. {
  25814. name: "Diplomatic",
  25815. height: math.unit(13, "feet"),
  25816. default: true
  25817. },
  25818. {
  25819. name: "Small",
  25820. height: math.unit(30, "feet")
  25821. },
  25822. {
  25823. name: "Normal",
  25824. height: math.unit(95, "feet"),
  25825. default: true
  25826. },
  25827. {
  25828. name: "Large",
  25829. height: math.unit(285, "feet")
  25830. },
  25831. {
  25832. name: "Incomprehensible",
  25833. height: math.unit(450, "megameters")
  25834. },
  25835. ]
  25836. ))
  25837. characterMakers.push(() => makeCharacter(
  25838. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25839. {
  25840. side: {
  25841. height: math.unit(11, "feet"),
  25842. weight: math.unit(1750, "kg"),
  25843. name: "Side",
  25844. image: {
  25845. source: "./media/characters/selicia/side.svg",
  25846. extra: 440 / 396,
  25847. bottom: 24.8 / 465.979
  25848. }
  25849. },
  25850. maw: {
  25851. height: math.unit(4.665, "feet"),
  25852. name: "Maw",
  25853. image: {
  25854. source: "./media/characters/selicia/maw.svg"
  25855. }
  25856. },
  25857. },
  25858. [
  25859. {
  25860. name: "Normal",
  25861. height: math.unit(11, "feet"),
  25862. default: true
  25863. },
  25864. ]
  25865. ))
  25866. characterMakers.push(() => makeCharacter(
  25867. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25868. {
  25869. side: {
  25870. height: math.unit(2 + 6 / 12, "feet"),
  25871. weight: math.unit(30, "lb"),
  25872. name: "Side",
  25873. image: {
  25874. source: "./media/characters/layla/side.svg",
  25875. extra: 244 / 188,
  25876. bottom: 18.2 / 262.1
  25877. }
  25878. },
  25879. back: {
  25880. height: math.unit(2 + 6 / 12, "feet"),
  25881. weight: math.unit(30, "lb"),
  25882. name: "Back",
  25883. image: {
  25884. source: "./media/characters/layla/back.svg",
  25885. extra: 308 / 241.5,
  25886. bottom: 8.9 / 316.8
  25887. }
  25888. },
  25889. cumming: {
  25890. height: math.unit(2 + 6 / 12, "feet"),
  25891. weight: math.unit(30, "lb"),
  25892. name: "Cumming",
  25893. image: {
  25894. source: "./media/characters/layla/cumming.svg",
  25895. extra: 342 / 279,
  25896. bottom: 595 / 938
  25897. }
  25898. },
  25899. dickFlaccid: {
  25900. height: math.unit(2.595, "feet"),
  25901. name: "Flaccid Genitals",
  25902. image: {
  25903. source: "./media/characters/layla/dick-flaccid.svg"
  25904. }
  25905. },
  25906. dickErect: {
  25907. height: math.unit(2.359, "feet"),
  25908. name: "Erect Genitals",
  25909. image: {
  25910. source: "./media/characters/layla/dick-erect.svg"
  25911. }
  25912. },
  25913. dragon: {
  25914. height: math.unit(40, "feet"),
  25915. name: "Dragon",
  25916. image: {
  25917. source: "./media/characters/layla/dragon.svg",
  25918. extra: 610/535,
  25919. bottom: 367/977
  25920. }
  25921. },
  25922. taur: {
  25923. height: math.unit(30, "feet"),
  25924. name: "Taur",
  25925. image: {
  25926. source: "./media/characters/layla/taur.svg",
  25927. extra: 1268/1199,
  25928. bottom: 112/1380
  25929. }
  25930. },
  25931. },
  25932. [
  25933. {
  25934. name: "Micro",
  25935. height: math.unit(1, "inch")
  25936. },
  25937. {
  25938. name: "Small",
  25939. height: math.unit(1, "foot")
  25940. },
  25941. {
  25942. name: "Normal",
  25943. height: math.unit(2 + 6 / 12, "feet"),
  25944. default: true
  25945. },
  25946. {
  25947. name: "Macro",
  25948. height: math.unit(200, "feet")
  25949. },
  25950. {
  25951. name: "Megamacro",
  25952. height: math.unit(1000, "miles")
  25953. },
  25954. {
  25955. name: "Planetary",
  25956. height: math.unit(8000, "miles")
  25957. },
  25958. {
  25959. name: "True Layla",
  25960. height: math.unit(200000 * 7, "multiverses")
  25961. },
  25962. ]
  25963. ))
  25964. characterMakers.push(() => makeCharacter(
  25965. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25966. {
  25967. back: {
  25968. height: math.unit(10.5, "feet"),
  25969. weight: math.unit(800, "lb"),
  25970. name: "Back",
  25971. image: {
  25972. source: "./media/characters/knox/back.svg",
  25973. extra: 1486 / 1089,
  25974. bottom: 107 / 1601.4
  25975. }
  25976. },
  25977. side: {
  25978. height: math.unit(10.5, "feet"),
  25979. weight: math.unit(800, "lb"),
  25980. name: "Side",
  25981. image: {
  25982. source: "./media/characters/knox/side.svg",
  25983. extra: 244 / 218,
  25984. bottom: 14 / 260
  25985. }
  25986. },
  25987. },
  25988. [
  25989. {
  25990. name: "Compact",
  25991. height: math.unit(10.5, "feet"),
  25992. default: true
  25993. },
  25994. {
  25995. name: "Dynamax",
  25996. height: math.unit(210, "feet")
  25997. },
  25998. {
  25999. name: "Full Macro",
  26000. height: math.unit(850, "feet")
  26001. },
  26002. ]
  26003. ))
  26004. characterMakers.push(() => makeCharacter(
  26005. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26006. {
  26007. front: {
  26008. height: math.unit(28, "feet"),
  26009. weight: math.unit(10500, "lb"),
  26010. name: "Front",
  26011. image: {
  26012. source: "./media/characters/kayda/front.svg",
  26013. extra: 1536 / 1428,
  26014. bottom: 68.7 / 1603
  26015. }
  26016. },
  26017. back: {
  26018. height: math.unit(28, "feet"),
  26019. weight: math.unit(10500, "lb"),
  26020. name: "Back",
  26021. image: {
  26022. source: "./media/characters/kayda/back.svg",
  26023. extra: 1557 / 1464,
  26024. bottom: 39.5 / 1597.49
  26025. }
  26026. },
  26027. dick: {
  26028. height: math.unit(3.858, "feet"),
  26029. name: "Dick",
  26030. image: {
  26031. source: "./media/characters/kayda/dick.svg"
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Macro",
  26038. height: math.unit(28, "feet"),
  26039. default: true
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26045. {
  26046. front: {
  26047. height: math.unit(10 + 11 / 12, "feet"),
  26048. weight: math.unit(1400, "lb"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/brian/front.svg",
  26052. extra: 737 / 692,
  26053. bottom: 55.4 / 785
  26054. }
  26055. },
  26056. },
  26057. [
  26058. {
  26059. name: "Normal",
  26060. height: math.unit(10 + 11 / 12, "feet"),
  26061. default: true
  26062. },
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26067. {
  26068. front: {
  26069. height: math.unit(5 + 8 / 12, "feet"),
  26070. weight: math.unit(140, "lb"),
  26071. name: "Front",
  26072. image: {
  26073. source: "./media/characters/khemri/front.svg",
  26074. extra: 4780 / 4059,
  26075. bottom: 80.1 / 4859.25
  26076. }
  26077. },
  26078. },
  26079. [
  26080. {
  26081. name: "Micro",
  26082. height: math.unit(6, "inches")
  26083. },
  26084. {
  26085. name: "Normal",
  26086. height: math.unit(5 + 8 / 12, "feet"),
  26087. default: true
  26088. },
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26093. {
  26094. front: {
  26095. height: math.unit(13, "feet"),
  26096. weight: math.unit(1700, "lb"),
  26097. name: "Front",
  26098. image: {
  26099. source: "./media/characters/felix-braveheart/front.svg",
  26100. extra: 1222 / 1157,
  26101. bottom: 53.2 / 1280
  26102. }
  26103. },
  26104. back: {
  26105. height: math.unit(13, "feet"),
  26106. weight: math.unit(1700, "lb"),
  26107. name: "Back",
  26108. image: {
  26109. source: "./media/characters/felix-braveheart/back.svg",
  26110. extra: 1277 / 1203,
  26111. bottom: 50.2 / 1327
  26112. }
  26113. },
  26114. feral: {
  26115. height: math.unit(6, "feet"),
  26116. weight: math.unit(400, "lb"),
  26117. name: "Feral",
  26118. image: {
  26119. source: "./media/characters/felix-braveheart/feral.svg",
  26120. extra: 682 / 625,
  26121. bottom: 6.9 / 688
  26122. }
  26123. },
  26124. },
  26125. [
  26126. {
  26127. name: "Normal",
  26128. height: math.unit(13, "feet"),
  26129. default: true
  26130. },
  26131. ]
  26132. ))
  26133. characterMakers.push(() => makeCharacter(
  26134. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26135. {
  26136. side: {
  26137. height: math.unit(5 + 11 / 12, "feet"),
  26138. weight: math.unit(1400, "lb"),
  26139. name: "Side",
  26140. image: {
  26141. source: "./media/characters/shadow-blade/side.svg",
  26142. extra: 1726 / 1267,
  26143. bottom: 58.4 / 1785
  26144. }
  26145. },
  26146. },
  26147. [
  26148. {
  26149. name: "Normal",
  26150. height: math.unit(5 + 11 / 12, "feet"),
  26151. default: true
  26152. },
  26153. ]
  26154. ))
  26155. characterMakers.push(() => makeCharacter(
  26156. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26157. {
  26158. front: {
  26159. height: math.unit(1 + 6 / 12, "feet"),
  26160. weight: math.unit(25, "lb"),
  26161. name: "Front",
  26162. image: {
  26163. source: "./media/characters/karla-halldor/front.svg",
  26164. extra: 1459 / 1383,
  26165. bottom: 12 / 1472
  26166. }
  26167. },
  26168. },
  26169. [
  26170. {
  26171. name: "Normal",
  26172. height: math.unit(1 + 6 / 12, "feet"),
  26173. default: true
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(6 + 2 / 12, "feet"),
  26182. weight: math.unit(160, "lb"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/ariam/front.svg",
  26186. extra: 1073/976,
  26187. bottom: 52/1125
  26188. }
  26189. },
  26190. back: {
  26191. height: math.unit(6 + 2/12, "feet"),
  26192. weight: math.unit(160, "lb"),
  26193. name: "Back",
  26194. image: {
  26195. source: "./media/characters/ariam/back.svg",
  26196. extra: 1103/1023,
  26197. bottom: 9/1112
  26198. }
  26199. },
  26200. dressed: {
  26201. height: math.unit(6 + 2/12, "feet"),
  26202. weight: math.unit(160, "lb"),
  26203. name: "Dressed",
  26204. image: {
  26205. source: "./media/characters/ariam/dressed.svg",
  26206. extra: 1099/1009,
  26207. bottom: 25/1124
  26208. }
  26209. },
  26210. squatting: {
  26211. height: math.unit(4.1, "feet"),
  26212. weight: math.unit(160, "lb"),
  26213. name: "Squatting",
  26214. image: {
  26215. source: "./media/characters/ariam/squatting.svg",
  26216. extra: 2617 / 2112,
  26217. bottom: 61.2 / 2681,
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Normal",
  26224. height: math.unit(6 + 2 / 12, "feet"),
  26225. default: true
  26226. },
  26227. {
  26228. name: "Normal+",
  26229. height: math.unit(4, "meters")
  26230. },
  26231. {
  26232. name: "Macro",
  26233. height: math.unit(50, "meters")
  26234. },
  26235. {
  26236. name: "Macro+",
  26237. height: math.unit(100, "meters")
  26238. },
  26239. {
  26240. name: "Megamacro",
  26241. height: math.unit(20, "km")
  26242. },
  26243. {
  26244. name: "Caretaker",
  26245. height: math.unit(444, "megameters")
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26251. {
  26252. front: {
  26253. height: math.unit(1.67, "meters"),
  26254. weight: math.unit(140, "lb"),
  26255. name: "Front",
  26256. image: {
  26257. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26258. extra: 438 / 410,
  26259. bottom: 0.75 / 439
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Shrunken",
  26266. height: math.unit(7.6, "cm")
  26267. },
  26268. {
  26269. name: "Human Scale",
  26270. height: math.unit(1.67, "meters")
  26271. },
  26272. {
  26273. name: "Wolxi Scale",
  26274. height: math.unit(36.7, "meters"),
  26275. default: true
  26276. },
  26277. ]
  26278. ))
  26279. characterMakers.push(() => makeCharacter(
  26280. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26281. {
  26282. front: {
  26283. height: math.unit(1.73, "meters"),
  26284. weight: math.unit(240, "lb"),
  26285. name: "Front",
  26286. image: {
  26287. source: "./media/characters/izue-two-mothers/front.svg",
  26288. extra: 469 / 437,
  26289. bottom: 1.24 / 470.6
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Shrunken",
  26296. height: math.unit(7.86, "cm")
  26297. },
  26298. {
  26299. name: "Human Scale",
  26300. height: math.unit(1.73, "meters")
  26301. },
  26302. {
  26303. name: "Wolxi Scale",
  26304. height: math.unit(38, "meters"),
  26305. default: true
  26306. },
  26307. ]
  26308. ))
  26309. characterMakers.push(() => makeCharacter(
  26310. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26311. {
  26312. front: {
  26313. height: math.unit(1.55, "meters"),
  26314. weight: math.unit(120, "lb"),
  26315. name: "Front",
  26316. image: {
  26317. source: "./media/characters/teeku-love-shack/front.svg",
  26318. extra: 387 / 362,
  26319. bottom: 1.51 / 388
  26320. }
  26321. },
  26322. },
  26323. [
  26324. {
  26325. name: "Shrunken",
  26326. height: math.unit(7, "cm")
  26327. },
  26328. {
  26329. name: "Human Scale",
  26330. height: math.unit(1.55, "meters")
  26331. },
  26332. {
  26333. name: "Wolxi Scale",
  26334. height: math.unit(34.1, "meters"),
  26335. default: true
  26336. },
  26337. ]
  26338. ))
  26339. characterMakers.push(() => makeCharacter(
  26340. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26341. {
  26342. front: {
  26343. height: math.unit(1.83, "meters"),
  26344. weight: math.unit(135, "lb"),
  26345. name: "Front",
  26346. image: {
  26347. source: "./media/characters/dejma-the-red/front.svg",
  26348. extra: 480 / 458,
  26349. bottom: 1.8 / 482
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Shrunken",
  26356. height: math.unit(8.3, "cm")
  26357. },
  26358. {
  26359. name: "Human Scale",
  26360. height: math.unit(1.83, "meters")
  26361. },
  26362. {
  26363. name: "Wolxi Scale",
  26364. height: math.unit(40, "meters"),
  26365. default: true
  26366. },
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26371. {
  26372. front: {
  26373. height: math.unit(1.78, "meters"),
  26374. weight: math.unit(65, "kg"),
  26375. name: "Front",
  26376. image: {
  26377. source: "./media/characters/aki/front.svg",
  26378. extra: 452 / 415
  26379. }
  26380. },
  26381. frontNsfw: {
  26382. height: math.unit(1.78, "meters"),
  26383. weight: math.unit(65, "kg"),
  26384. name: "Front (NSFW)",
  26385. image: {
  26386. source: "./media/characters/aki/front-nsfw.svg",
  26387. extra: 452 / 415
  26388. }
  26389. },
  26390. back: {
  26391. height: math.unit(1.78, "meters"),
  26392. weight: math.unit(65, "kg"),
  26393. name: "Back",
  26394. image: {
  26395. source: "./media/characters/aki/back.svg",
  26396. extra: 452 / 415
  26397. }
  26398. },
  26399. rump: {
  26400. height: math.unit(2.05, "feet"),
  26401. name: "Rump",
  26402. image: {
  26403. source: "./media/characters/aki/rump.svg"
  26404. }
  26405. },
  26406. dick: {
  26407. height: math.unit(0.95, "feet"),
  26408. name: "Dick",
  26409. image: {
  26410. source: "./media/characters/aki/dick.svg"
  26411. }
  26412. },
  26413. },
  26414. [
  26415. {
  26416. name: "Micro",
  26417. height: math.unit(15, "cm")
  26418. },
  26419. {
  26420. name: "Normal",
  26421. height: math.unit(178, "cm"),
  26422. default: true
  26423. },
  26424. {
  26425. name: "Macro",
  26426. height: math.unit(214, "m")
  26427. },
  26428. {
  26429. name: "Macro+",
  26430. height: math.unit(534, "m")
  26431. },
  26432. ]
  26433. ))
  26434. characterMakers.push(() => makeCharacter(
  26435. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26436. {
  26437. front: {
  26438. height: math.unit(5 + 5 / 12, "feet"),
  26439. weight: math.unit(120, "lb"),
  26440. name: "Front",
  26441. image: {
  26442. source: "./media/characters/ari/front.svg",
  26443. extra: 1550/1471,
  26444. bottom: 39/1589
  26445. }
  26446. },
  26447. },
  26448. [
  26449. {
  26450. name: "Normal",
  26451. height: math.unit(5 + 5 / 12, "feet")
  26452. },
  26453. {
  26454. name: "Macro",
  26455. height: math.unit(100, "feet"),
  26456. default: true
  26457. },
  26458. {
  26459. name: "Megamacro",
  26460. height: math.unit(100, "miles")
  26461. },
  26462. {
  26463. name: "Gigamacro",
  26464. height: math.unit(80000, "miles")
  26465. },
  26466. ]
  26467. ))
  26468. characterMakers.push(() => makeCharacter(
  26469. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26470. {
  26471. side: {
  26472. height: math.unit(9, "feet"),
  26473. weight: math.unit(400, "kg"),
  26474. name: "Side",
  26475. image: {
  26476. source: "./media/characters/bolt/side.svg",
  26477. extra: 1126 / 896,
  26478. bottom: 60 / 1187.3,
  26479. }
  26480. },
  26481. },
  26482. [
  26483. {
  26484. name: "Micro",
  26485. height: math.unit(5, "inches")
  26486. },
  26487. {
  26488. name: "Normal",
  26489. height: math.unit(9, "feet"),
  26490. default: true
  26491. },
  26492. {
  26493. name: "Macro",
  26494. height: math.unit(700, "feet")
  26495. },
  26496. {
  26497. name: "Max Size",
  26498. height: math.unit(1.52e22, "yottameters")
  26499. },
  26500. ]
  26501. ))
  26502. characterMakers.push(() => makeCharacter(
  26503. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26504. {
  26505. front: {
  26506. height: math.unit(4.3, "meters"),
  26507. weight: math.unit(3, "tons"),
  26508. name: "Front",
  26509. image: {
  26510. source: "./media/characters/draekon-sylviar/front.svg",
  26511. extra: 2072/1512,
  26512. bottom: 74/2146
  26513. }
  26514. },
  26515. back: {
  26516. height: math.unit(4.3, "meters"),
  26517. weight: math.unit(3, "tons"),
  26518. name: "Back",
  26519. image: {
  26520. source: "./media/characters/draekon-sylviar/back.svg",
  26521. extra: 1639/1483,
  26522. bottom: 41/1680
  26523. }
  26524. },
  26525. feral: {
  26526. height: math.unit(1.15, "meters"),
  26527. weight: math.unit(3, "tons"),
  26528. name: "Feral",
  26529. image: {
  26530. source: "./media/characters/draekon-sylviar/feral.svg",
  26531. extra: 1033/395,
  26532. bottom: 130/1163
  26533. }
  26534. },
  26535. maw: {
  26536. height: math.unit(1.3, "meters"),
  26537. name: "Maw",
  26538. image: {
  26539. source: "./media/characters/draekon-sylviar/maw.svg"
  26540. }
  26541. },
  26542. mawSeparated: {
  26543. height: math.unit(1.53, "meters"),
  26544. name: "Separated Maw",
  26545. image: {
  26546. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26547. }
  26548. },
  26549. tail: {
  26550. height: math.unit(1.15, "meters"),
  26551. name: "Tail",
  26552. image: {
  26553. source: "./media/characters/draekon-sylviar/tail.svg"
  26554. }
  26555. },
  26556. tailDick: {
  26557. height: math.unit(1.15, "meters"),
  26558. name: "Tail (Dick)",
  26559. image: {
  26560. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26561. }
  26562. },
  26563. tailDickSeparated: {
  26564. height: math.unit(1.19, "meters"),
  26565. name: "Tail (Separated Dick)",
  26566. image: {
  26567. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26568. }
  26569. },
  26570. slit: {
  26571. height: math.unit(1, "meters"),
  26572. name: "Slit",
  26573. image: {
  26574. source: "./media/characters/draekon-sylviar/slit.svg"
  26575. }
  26576. },
  26577. dick: {
  26578. height: math.unit(1.15, "meters"),
  26579. name: "Dick",
  26580. image: {
  26581. source: "./media/characters/draekon-sylviar/dick.svg"
  26582. }
  26583. },
  26584. dickSeparated: {
  26585. height: math.unit(1.1, "meters"),
  26586. name: "Separated Dick",
  26587. image: {
  26588. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26589. }
  26590. },
  26591. sheath: {
  26592. height: math.unit(1.15, "meters"),
  26593. name: "Sheath",
  26594. image: {
  26595. source: "./media/characters/draekon-sylviar/sheath.svg"
  26596. }
  26597. },
  26598. },
  26599. [
  26600. {
  26601. name: "Small",
  26602. height: math.unit(4.53 / 2, "meters"),
  26603. default: true
  26604. },
  26605. {
  26606. name: "Normal",
  26607. height: math.unit(4.53, "meters"),
  26608. default: true
  26609. },
  26610. {
  26611. name: "Large",
  26612. height: math.unit(4.53 * 2, "meters"),
  26613. },
  26614. ]
  26615. ))
  26616. characterMakers.push(() => makeCharacter(
  26617. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26618. {
  26619. front: {
  26620. height: math.unit(6 + 2 / 12, "feet"),
  26621. weight: math.unit(180, "lb"),
  26622. name: "Front",
  26623. image: {
  26624. source: "./media/characters/brawler/front.svg",
  26625. extra: 3301 / 3027,
  26626. bottom: 138 / 3439
  26627. }
  26628. },
  26629. },
  26630. [
  26631. {
  26632. name: "Normal",
  26633. height: math.unit(6 + 2 / 12, "feet"),
  26634. default: true
  26635. },
  26636. ]
  26637. ))
  26638. characterMakers.push(() => makeCharacter(
  26639. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26640. {
  26641. front: {
  26642. height: math.unit(11, "feet"),
  26643. weight: math.unit(1000, "lb"),
  26644. name: "Front",
  26645. image: {
  26646. source: "./media/characters/alex/front.svg",
  26647. bottom: 44.5 / 620
  26648. }
  26649. },
  26650. },
  26651. [
  26652. {
  26653. name: "Micro",
  26654. height: math.unit(5, "inches")
  26655. },
  26656. {
  26657. name: "Normal",
  26658. height: math.unit(11, "feet"),
  26659. default: true
  26660. },
  26661. {
  26662. name: "Macro",
  26663. height: math.unit(9.5e9, "feet")
  26664. },
  26665. {
  26666. name: "Max Size",
  26667. height: math.unit(1.4e283, "yottameters")
  26668. },
  26669. ]
  26670. ))
  26671. characterMakers.push(() => makeCharacter(
  26672. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26673. {
  26674. female: {
  26675. height: math.unit(29.9, "m"),
  26676. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26677. name: "Female",
  26678. image: {
  26679. source: "./media/characters/zenari/female.svg",
  26680. extra: 3281.6 / 3217,
  26681. bottom: 72.2 / 3353
  26682. }
  26683. },
  26684. male: {
  26685. height: math.unit(27.7, "m"),
  26686. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26687. name: "Male",
  26688. image: {
  26689. source: "./media/characters/zenari/male.svg",
  26690. extra: 3008 / 2991,
  26691. bottom: 54.6 / 3069
  26692. }
  26693. },
  26694. },
  26695. [
  26696. {
  26697. name: "Macro",
  26698. height: math.unit(29.7, "meters"),
  26699. default: true
  26700. },
  26701. ]
  26702. ))
  26703. characterMakers.push(() => makeCharacter(
  26704. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26705. {
  26706. female: {
  26707. height: math.unit(23.8, "m"),
  26708. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26709. name: "Female",
  26710. image: {
  26711. source: "./media/characters/mactarian/female.svg",
  26712. extra: 2662 / 2569,
  26713. bottom: 73 / 2736
  26714. }
  26715. },
  26716. male: {
  26717. height: math.unit(23.8, "m"),
  26718. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26719. name: "Male",
  26720. image: {
  26721. source: "./media/characters/mactarian/male.svg",
  26722. extra: 2673 / 2600,
  26723. bottom: 76 / 2750
  26724. }
  26725. },
  26726. },
  26727. [
  26728. {
  26729. name: "Macro",
  26730. height: math.unit(23.8, "meters"),
  26731. default: true
  26732. },
  26733. ]
  26734. ))
  26735. characterMakers.push(() => makeCharacter(
  26736. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26737. {
  26738. female: {
  26739. height: math.unit(19.3, "m"),
  26740. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26741. name: "Female",
  26742. image: {
  26743. source: "./media/characters/umok/female.svg",
  26744. extra: 2186 / 2078,
  26745. bottom: 87 / 2277
  26746. }
  26747. },
  26748. male: {
  26749. height: math.unit(19.5, "m"),
  26750. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26751. name: "Male",
  26752. image: {
  26753. source: "./media/characters/umok/male.svg",
  26754. extra: 2233 / 2140,
  26755. bottom: 24.4 / 2258
  26756. }
  26757. },
  26758. },
  26759. [
  26760. {
  26761. name: "Macro",
  26762. height: math.unit(19.3, "meters"),
  26763. default: true
  26764. },
  26765. ]
  26766. ))
  26767. characterMakers.push(() => makeCharacter(
  26768. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26769. {
  26770. female: {
  26771. height: math.unit(26.15, "m"),
  26772. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26773. name: "Female",
  26774. image: {
  26775. source: "./media/characters/joraxian/female.svg",
  26776. extra: 2912 / 2824,
  26777. bottom: 36 / 2956
  26778. }
  26779. },
  26780. male: {
  26781. height: math.unit(25.4, "m"),
  26782. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26783. name: "Male",
  26784. image: {
  26785. source: "./media/characters/joraxian/male.svg",
  26786. extra: 2877 / 2721,
  26787. bottom: 82 / 2967
  26788. }
  26789. },
  26790. },
  26791. [
  26792. {
  26793. name: "Macro",
  26794. height: math.unit(26.15, "meters"),
  26795. default: true
  26796. },
  26797. ]
  26798. ))
  26799. characterMakers.push(() => makeCharacter(
  26800. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26801. {
  26802. female: {
  26803. height: math.unit(21.6, "m"),
  26804. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26805. name: "Female",
  26806. image: {
  26807. source: "./media/characters/sthara/female.svg",
  26808. extra: 2516 / 2347,
  26809. bottom: 21.5 / 2537
  26810. }
  26811. },
  26812. male: {
  26813. height: math.unit(24, "m"),
  26814. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26815. name: "Male",
  26816. image: {
  26817. source: "./media/characters/sthara/male.svg",
  26818. extra: 2732 / 2607,
  26819. bottom: 23 / 2732
  26820. }
  26821. },
  26822. },
  26823. [
  26824. {
  26825. name: "Macro",
  26826. height: math.unit(21.6, "meters"),
  26827. default: true
  26828. },
  26829. ]
  26830. ))
  26831. characterMakers.push(() => makeCharacter(
  26832. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26833. {
  26834. front: {
  26835. height: math.unit(6 + 4 / 12, "feet"),
  26836. weight: math.unit(175, "lb"),
  26837. name: "Front",
  26838. image: {
  26839. source: "./media/characters/luka-bryzant/front.svg",
  26840. extra: 311 / 289,
  26841. bottom: 4 / 315
  26842. }
  26843. },
  26844. back: {
  26845. height: math.unit(6 + 4 / 12, "feet"),
  26846. weight: math.unit(175, "lb"),
  26847. name: "Back",
  26848. image: {
  26849. source: "./media/characters/luka-bryzant/back.svg",
  26850. extra: 311 / 289,
  26851. bottom: 3.8 / 313.7
  26852. }
  26853. },
  26854. },
  26855. [
  26856. {
  26857. name: "Micro",
  26858. height: math.unit(10, "inches")
  26859. },
  26860. {
  26861. name: "Normal",
  26862. height: math.unit(6 + 4 / 12, "feet"),
  26863. default: true
  26864. },
  26865. {
  26866. name: "Large",
  26867. height: math.unit(12, "feet")
  26868. },
  26869. ]
  26870. ))
  26871. characterMakers.push(() => makeCharacter(
  26872. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26873. {
  26874. front: {
  26875. height: math.unit(5 + 7 / 12, "feet"),
  26876. weight: math.unit(185, "lb"),
  26877. name: "Front",
  26878. image: {
  26879. source: "./media/characters/aman-aquila/front.svg",
  26880. extra: 1013 / 976,
  26881. bottom: 45.6 / 1057
  26882. }
  26883. },
  26884. side: {
  26885. height: math.unit(5 + 7 / 12, "feet"),
  26886. weight: math.unit(185, "lb"),
  26887. name: "Side",
  26888. image: {
  26889. source: "./media/characters/aman-aquila/side.svg",
  26890. extra: 1054 / 1011,
  26891. bottom: 15 / 1070
  26892. }
  26893. },
  26894. back: {
  26895. height: math.unit(5 + 7 / 12, "feet"),
  26896. weight: math.unit(185, "lb"),
  26897. name: "Back",
  26898. image: {
  26899. source: "./media/characters/aman-aquila/back.svg",
  26900. extra: 1026 / 970,
  26901. bottom: 12 / 1039
  26902. }
  26903. },
  26904. head: {
  26905. height: math.unit(1.211, "feet"),
  26906. name: "Head",
  26907. image: {
  26908. source: "./media/characters/aman-aquila/head.svg",
  26909. }
  26910. },
  26911. },
  26912. [
  26913. {
  26914. name: "Minimicro",
  26915. height: math.unit(0.057, "inches")
  26916. },
  26917. {
  26918. name: "Micro",
  26919. height: math.unit(7, "inches")
  26920. },
  26921. {
  26922. name: "Mini",
  26923. height: math.unit(3 + 7 / 12, "feet")
  26924. },
  26925. {
  26926. name: "Normal",
  26927. height: math.unit(5 + 7 / 12, "feet"),
  26928. default: true
  26929. },
  26930. {
  26931. name: "Macro",
  26932. height: math.unit(157 + 7 / 12, "feet")
  26933. },
  26934. {
  26935. name: "Megamacro",
  26936. height: math.unit(1557 + 7 / 12, "feet")
  26937. },
  26938. {
  26939. name: "Gigamacro",
  26940. height: math.unit(15557 + 7 / 12, "feet")
  26941. },
  26942. ]
  26943. ))
  26944. characterMakers.push(() => makeCharacter(
  26945. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26946. {
  26947. front: {
  26948. height: math.unit(3 + 2 / 12, "inches"),
  26949. weight: math.unit(0.3, "ounces"),
  26950. name: "Front",
  26951. image: {
  26952. source: "./media/characters/hiphae/front.svg",
  26953. extra: 1931 / 1683,
  26954. bottom: 24 / 1955
  26955. }
  26956. },
  26957. },
  26958. [
  26959. {
  26960. name: "Normal",
  26961. height: math.unit(3 + 1 / 2, "inches"),
  26962. default: true
  26963. },
  26964. ]
  26965. ))
  26966. characterMakers.push(() => makeCharacter(
  26967. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26968. {
  26969. front: {
  26970. height: math.unit(5 + 10 / 12, "feet"),
  26971. weight: math.unit(165, "lb"),
  26972. name: "Front",
  26973. image: {
  26974. source: "./media/characters/nicky/front.svg",
  26975. extra: 3144 / 2886,
  26976. bottom: 45.6 / 3192
  26977. }
  26978. },
  26979. back: {
  26980. height: math.unit(5 + 10 / 12, "feet"),
  26981. weight: math.unit(165, "lb"),
  26982. name: "Back",
  26983. image: {
  26984. source: "./media/characters/nicky/back.svg",
  26985. extra: 3055 / 2804,
  26986. bottom: 28.4 / 3087
  26987. }
  26988. },
  26989. frontclothed: {
  26990. height: math.unit(5 + 10 / 12, "feet"),
  26991. weight: math.unit(165, "lb"),
  26992. name: "Front-clothed",
  26993. image: {
  26994. source: "./media/characters/nicky/front-clothed.svg",
  26995. extra: 3184.9 / 2926.9,
  26996. bottom: 86.5 / 3239.9
  26997. }
  26998. },
  26999. foot: {
  27000. height: math.unit(1.16, "feet"),
  27001. name: "Foot",
  27002. image: {
  27003. source: "./media/characters/nicky/foot.svg"
  27004. }
  27005. },
  27006. feet: {
  27007. height: math.unit(1.34, "feet"),
  27008. name: "Feet",
  27009. image: {
  27010. source: "./media/characters/nicky/feet.svg"
  27011. }
  27012. },
  27013. maw: {
  27014. height: math.unit(0.9, "feet"),
  27015. name: "Maw",
  27016. image: {
  27017. source: "./media/characters/nicky/maw.svg"
  27018. }
  27019. },
  27020. },
  27021. [
  27022. {
  27023. name: "Normal",
  27024. height: math.unit(5 + 10 / 12, "feet"),
  27025. default: true
  27026. },
  27027. {
  27028. name: "Macro",
  27029. height: math.unit(60, "feet")
  27030. },
  27031. {
  27032. name: "Megamacro",
  27033. height: math.unit(1, "mile")
  27034. },
  27035. ]
  27036. ))
  27037. characterMakers.push(() => makeCharacter(
  27038. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27039. {
  27040. side: {
  27041. height: math.unit(10, "feet"),
  27042. weight: math.unit(600, "lb"),
  27043. name: "Side",
  27044. image: {
  27045. source: "./media/characters/blair/side.svg",
  27046. bottom: 16.6 / 475,
  27047. extra: 458 / 431
  27048. }
  27049. },
  27050. },
  27051. [
  27052. {
  27053. name: "Micro",
  27054. height: math.unit(8, "inches")
  27055. },
  27056. {
  27057. name: "Normal",
  27058. height: math.unit(10, "feet"),
  27059. default: true
  27060. },
  27061. {
  27062. name: "Macro",
  27063. height: math.unit(180, "feet")
  27064. },
  27065. ]
  27066. ))
  27067. characterMakers.push(() => makeCharacter(
  27068. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27069. {
  27070. front: {
  27071. height: math.unit(5 + 4 / 12, "feet"),
  27072. weight: math.unit(125, "lb"),
  27073. name: "Front",
  27074. image: {
  27075. source: "./media/characters/fisher/front.svg",
  27076. extra: 444 / 390,
  27077. bottom: 2 / 444.8
  27078. }
  27079. },
  27080. },
  27081. [
  27082. {
  27083. name: "Micro",
  27084. height: math.unit(4, "inches")
  27085. },
  27086. {
  27087. name: "Normal",
  27088. height: math.unit(5 + 4 / 12, "feet"),
  27089. default: true
  27090. },
  27091. {
  27092. name: "Macro",
  27093. height: math.unit(100, "feet")
  27094. },
  27095. ]
  27096. ))
  27097. characterMakers.push(() => makeCharacter(
  27098. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27099. {
  27100. front: {
  27101. height: math.unit(6.71, "feet"),
  27102. weight: math.unit(200, "lb"),
  27103. preyCapacity: math.unit(1000000, "people"),
  27104. name: "Front",
  27105. image: {
  27106. source: "./media/characters/gliss/front.svg",
  27107. extra: 2347 / 2231,
  27108. bottom: 113 / 2462
  27109. }
  27110. },
  27111. hammerspaceSize: {
  27112. height: math.unit(6.71 * 717, "feet"),
  27113. weight: math.unit(200, "lb"),
  27114. preyCapacity: math.unit(1000000, "people"),
  27115. name: "Hammerspace Size",
  27116. image: {
  27117. source: "./media/characters/gliss/front.svg",
  27118. extra: 2347 / 2231,
  27119. bottom: 113 / 2462
  27120. }
  27121. },
  27122. },
  27123. [
  27124. {
  27125. name: "Normal",
  27126. height: math.unit(6.71, "feet"),
  27127. default: true
  27128. },
  27129. ]
  27130. ))
  27131. characterMakers.push(() => makeCharacter(
  27132. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27133. {
  27134. side: {
  27135. height: math.unit(1.44, "m"),
  27136. weight: math.unit(80, "kg"),
  27137. name: "Side",
  27138. image: {
  27139. source: "./media/characters/dune-anderson/side.svg",
  27140. bottom: 49 / 1426
  27141. }
  27142. },
  27143. },
  27144. [
  27145. {
  27146. name: "Wolf-sized",
  27147. height: math.unit(1.44, "meters")
  27148. },
  27149. {
  27150. name: "Normal",
  27151. height: math.unit(5.05, "meters"),
  27152. default: true
  27153. },
  27154. {
  27155. name: "Big",
  27156. height: math.unit(14.4, "meters")
  27157. },
  27158. {
  27159. name: "Huge",
  27160. height: math.unit(144, "meters")
  27161. },
  27162. ]
  27163. ))
  27164. characterMakers.push(() => makeCharacter(
  27165. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27166. {
  27167. front: {
  27168. height: math.unit(7, "feet"),
  27169. weight: math.unit(425, "lb"),
  27170. name: "Front",
  27171. image: {
  27172. source: "./media/characters/hind/front.svg",
  27173. extra: 2091 / 1860,
  27174. bottom: 129 / 2220
  27175. }
  27176. },
  27177. back: {
  27178. height: math.unit(7, "feet"),
  27179. weight: math.unit(425, "lb"),
  27180. name: "Back",
  27181. image: {
  27182. source: "./media/characters/hind/back.svg",
  27183. extra: 2091 / 1860,
  27184. bottom: 24.6 / 2309
  27185. }
  27186. },
  27187. tail: {
  27188. height: math.unit(2.8, "feet"),
  27189. name: "Tail",
  27190. image: {
  27191. source: "./media/characters/hind/tail.svg"
  27192. }
  27193. },
  27194. head: {
  27195. height: math.unit(2.55, "feet"),
  27196. name: "Head",
  27197. image: {
  27198. source: "./media/characters/hind/head.svg"
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "XS",
  27205. height: math.unit(0.7, "feet")
  27206. },
  27207. {
  27208. name: "Normal",
  27209. height: math.unit(7, "feet"),
  27210. default: true
  27211. },
  27212. {
  27213. name: "XL",
  27214. height: math.unit(70, "feet")
  27215. },
  27216. ]
  27217. ))
  27218. characterMakers.push(() => makeCharacter(
  27219. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27220. {
  27221. front: {
  27222. height: math.unit(2.1, "meters"),
  27223. weight: math.unit(150, "lb"),
  27224. name: "Front",
  27225. image: {
  27226. source: "./media/characters/tharquench-sizestealer/front.svg",
  27227. extra: 1605/1470,
  27228. bottom: 36/1641
  27229. }
  27230. },
  27231. frontAlt: {
  27232. height: math.unit(2.1, "meters"),
  27233. weight: math.unit(150, "lb"),
  27234. name: "Front (Alt)",
  27235. image: {
  27236. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27237. extra: 2318 / 2063,
  27238. bottom: 93.4 / 2410
  27239. }
  27240. },
  27241. },
  27242. [
  27243. {
  27244. name: "Nano",
  27245. height: math.unit(1, "mm")
  27246. },
  27247. {
  27248. name: "Micro",
  27249. height: math.unit(1, "cm")
  27250. },
  27251. {
  27252. name: "Normal",
  27253. height: math.unit(2.1, "meters"),
  27254. default: true
  27255. },
  27256. ]
  27257. ))
  27258. characterMakers.push(() => makeCharacter(
  27259. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27260. {
  27261. front: {
  27262. height: math.unit(7 + 5 / 12, "feet"),
  27263. weight: math.unit(357, "lb"),
  27264. name: "Front",
  27265. image: {
  27266. source: "./media/characters/solex-draconov/front.svg",
  27267. extra: 1993 / 1865,
  27268. bottom: 117 / 2111
  27269. }
  27270. },
  27271. },
  27272. [
  27273. {
  27274. name: "Natural Height",
  27275. height: math.unit(7 + 5 / 12, "feet"),
  27276. default: true
  27277. },
  27278. {
  27279. name: "Macro",
  27280. height: math.unit(350, "feet")
  27281. },
  27282. {
  27283. name: "Macro+",
  27284. height: math.unit(1000, "feet")
  27285. },
  27286. {
  27287. name: "Megamacro",
  27288. height: math.unit(20, "km")
  27289. },
  27290. {
  27291. name: "Megamacro+",
  27292. height: math.unit(1000, "km")
  27293. },
  27294. {
  27295. name: "Gigamacro",
  27296. height: math.unit(2.5, "Gm")
  27297. },
  27298. {
  27299. name: "Teramacro",
  27300. height: math.unit(15, "Tm")
  27301. },
  27302. {
  27303. name: "Galactic",
  27304. height: math.unit(30, "Zm")
  27305. },
  27306. {
  27307. name: "Universal",
  27308. height: math.unit(21000, "Ym")
  27309. },
  27310. {
  27311. name: "Omniversal",
  27312. height: math.unit(9.861e50, "Ym")
  27313. },
  27314. {
  27315. name: "Existential",
  27316. height: math.unit(1e300, "meters")
  27317. },
  27318. ]
  27319. ))
  27320. characterMakers.push(() => makeCharacter(
  27321. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27322. {
  27323. side: {
  27324. height: math.unit(25, "feet"),
  27325. weight: math.unit(90000, "lb"),
  27326. name: "Side",
  27327. image: {
  27328. source: "./media/characters/mandarax/side.svg",
  27329. extra: 614 / 332,
  27330. bottom: 55 / 630
  27331. }
  27332. },
  27333. lounging: {
  27334. height: math.unit(15.4, "feet"),
  27335. weight: math.unit(90000, "lb"),
  27336. name: "Lounging",
  27337. image: {
  27338. source: "./media/characters/mandarax/lounging.svg",
  27339. extra: 817/609,
  27340. bottom: 685/1502
  27341. }
  27342. },
  27343. head: {
  27344. height: math.unit(11.4, "feet"),
  27345. name: "Head",
  27346. image: {
  27347. source: "./media/characters/mandarax/head.svg"
  27348. }
  27349. },
  27350. belly: {
  27351. height: math.unit(33, "feet"),
  27352. name: "Belly",
  27353. preyCapacity: math.unit(500, "people"),
  27354. image: {
  27355. source: "./media/characters/mandarax/belly.svg"
  27356. }
  27357. },
  27358. dick: {
  27359. height: math.unit(8.46, "feet"),
  27360. name: "Dick",
  27361. image: {
  27362. source: "./media/characters/mandarax/dick.svg"
  27363. }
  27364. },
  27365. top: {
  27366. height: math.unit(28, "meters"),
  27367. name: "Top",
  27368. image: {
  27369. source: "./media/characters/mandarax/top.svg"
  27370. }
  27371. },
  27372. },
  27373. [
  27374. {
  27375. name: "Normal",
  27376. height: math.unit(25, "feet"),
  27377. default: true
  27378. },
  27379. ]
  27380. ))
  27381. characterMakers.push(() => makeCharacter(
  27382. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27383. {
  27384. front: {
  27385. height: math.unit(5, "feet"),
  27386. weight: math.unit(90, "lb"),
  27387. name: "Front",
  27388. image: {
  27389. source: "./media/characters/pixil/front.svg",
  27390. extra: 2000 / 1618,
  27391. bottom: 12.3 / 2011
  27392. }
  27393. },
  27394. },
  27395. [
  27396. {
  27397. name: "Normal",
  27398. height: math.unit(5, "feet"),
  27399. default: true
  27400. },
  27401. {
  27402. name: "Megamacro",
  27403. height: math.unit(10, "miles"),
  27404. },
  27405. ]
  27406. ))
  27407. characterMakers.push(() => makeCharacter(
  27408. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27409. {
  27410. front: {
  27411. height: math.unit(7 + 2 / 12, "feet"),
  27412. weight: math.unit(200, "lb"),
  27413. name: "Front",
  27414. image: {
  27415. source: "./media/characters/angel/front.svg",
  27416. extra: 1830 / 1737,
  27417. bottom: 22.6 / 1854,
  27418. }
  27419. },
  27420. },
  27421. [
  27422. {
  27423. name: "Normal",
  27424. height: math.unit(7 + 2 / 12, "feet"),
  27425. default: true
  27426. },
  27427. {
  27428. name: "Macro",
  27429. height: math.unit(1000, "feet")
  27430. },
  27431. {
  27432. name: "Megamacro",
  27433. height: math.unit(2, "miles")
  27434. },
  27435. {
  27436. name: "Gigamacro",
  27437. height: math.unit(20, "earths")
  27438. },
  27439. ]
  27440. ))
  27441. characterMakers.push(() => makeCharacter(
  27442. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27443. {
  27444. front: {
  27445. height: math.unit(5, "feet"),
  27446. weight: math.unit(180, "lb"),
  27447. name: "Front",
  27448. image: {
  27449. source: "./media/characters/mekana/front.svg",
  27450. extra: 1671 / 1605,
  27451. bottom: 3.5 / 1691
  27452. }
  27453. },
  27454. side: {
  27455. height: math.unit(5, "feet"),
  27456. weight: math.unit(180, "lb"),
  27457. name: "Side",
  27458. image: {
  27459. source: "./media/characters/mekana/side.svg",
  27460. extra: 1671 / 1605,
  27461. bottom: 3.5 / 1691
  27462. }
  27463. },
  27464. back: {
  27465. height: math.unit(5, "feet"),
  27466. weight: math.unit(180, "lb"),
  27467. name: "Back",
  27468. image: {
  27469. source: "./media/characters/mekana/back.svg",
  27470. extra: 1671 / 1605,
  27471. bottom: 3.5 / 1691
  27472. }
  27473. },
  27474. },
  27475. [
  27476. {
  27477. name: "Normal",
  27478. height: math.unit(5, "feet"),
  27479. default: true
  27480. },
  27481. ]
  27482. ))
  27483. characterMakers.push(() => makeCharacter(
  27484. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27485. {
  27486. front: {
  27487. height: math.unit(4 + 6 / 12, "feet"),
  27488. weight: math.unit(80, "lb"),
  27489. name: "Front",
  27490. image: {
  27491. source: "./media/characters/pixie/front.svg",
  27492. extra: 1924 / 1825,
  27493. bottom: 22.4 / 1946
  27494. }
  27495. },
  27496. },
  27497. [
  27498. {
  27499. name: "Normal",
  27500. height: math.unit(4 + 6 / 12, "feet"),
  27501. default: true
  27502. },
  27503. {
  27504. name: "Macro",
  27505. height: math.unit(40, "feet")
  27506. },
  27507. ]
  27508. ))
  27509. characterMakers.push(() => makeCharacter(
  27510. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27511. {
  27512. front: {
  27513. height: math.unit(2.1, "meters"),
  27514. weight: math.unit(200, "lb"),
  27515. name: "Front",
  27516. image: {
  27517. source: "./media/characters/the-lascivious/front.svg",
  27518. extra: 1 / 0.893,
  27519. bottom: 3.5 / 573.7
  27520. }
  27521. },
  27522. },
  27523. [
  27524. {
  27525. name: "Human Scale",
  27526. height: math.unit(2.1, "meters")
  27527. },
  27528. {
  27529. name: "Wolxi Scale",
  27530. height: math.unit(46.2, "m"),
  27531. default: true
  27532. },
  27533. {
  27534. name: "Boinker of Buildings",
  27535. height: math.unit(10, "km")
  27536. },
  27537. {
  27538. name: "Shagger of Skyscrapers",
  27539. height: math.unit(40, "km")
  27540. },
  27541. {
  27542. name: "Banger of Boroughs",
  27543. height: math.unit(4000, "km")
  27544. },
  27545. {
  27546. name: "Screwer of States",
  27547. height: math.unit(100000, "km")
  27548. },
  27549. {
  27550. name: "Pounder of Planets",
  27551. height: math.unit(2000000, "km")
  27552. },
  27553. ]
  27554. ))
  27555. characterMakers.push(() => makeCharacter(
  27556. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27557. {
  27558. front: {
  27559. height: math.unit(6, "feet"),
  27560. weight: math.unit(150, "lb"),
  27561. name: "Front",
  27562. image: {
  27563. source: "./media/characters/aj/front.svg",
  27564. extra: 2039 / 1562,
  27565. bottom: 40 / 2079
  27566. }
  27567. },
  27568. },
  27569. [
  27570. {
  27571. name: "Normal",
  27572. height: math.unit(11 + 6 / 12, "feet"),
  27573. default: true
  27574. },
  27575. {
  27576. name: "Megamacro",
  27577. height: math.unit(60, "megameters")
  27578. },
  27579. ]
  27580. ))
  27581. characterMakers.push(() => makeCharacter(
  27582. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27583. {
  27584. side: {
  27585. height: math.unit(31 + 8 / 12, "feet"),
  27586. weight: math.unit(75000, "kg"),
  27587. name: "Side",
  27588. image: {
  27589. source: "./media/characters/koros/side.svg",
  27590. extra: 1442 / 1297,
  27591. bottom: 122.7 / 1562
  27592. }
  27593. },
  27594. dicksKingsCrown: {
  27595. height: math.unit(6, "feet"),
  27596. name: "Dicks (King's Crown)",
  27597. image: {
  27598. source: "./media/characters/koros/dicks-kings-crown.svg"
  27599. }
  27600. },
  27601. dicksTailSet: {
  27602. height: math.unit(3, "feet"),
  27603. name: "Dicks (Tail Set)",
  27604. image: {
  27605. source: "./media/characters/koros/dicks-tail-set.svg"
  27606. }
  27607. },
  27608. dickCumming: {
  27609. height: math.unit(7.98, "feet"),
  27610. name: "Dick (Cumming)",
  27611. image: {
  27612. source: "./media/characters/koros/dick-cumming.svg"
  27613. }
  27614. },
  27615. dicksBack: {
  27616. height: math.unit(5.9, "feet"),
  27617. name: "Dicks (Back)",
  27618. image: {
  27619. source: "./media/characters/koros/dicks-back.svg"
  27620. }
  27621. },
  27622. dicksFront: {
  27623. height: math.unit(3.72, "feet"),
  27624. name: "Dicks (Front)",
  27625. image: {
  27626. source: "./media/characters/koros/dicks-front.svg"
  27627. }
  27628. },
  27629. dicksPeeking: {
  27630. height: math.unit(3.0, "feet"),
  27631. name: "Dicks (Peeking)",
  27632. image: {
  27633. source: "./media/characters/koros/dicks-peeking.svg"
  27634. }
  27635. },
  27636. eye: {
  27637. height: math.unit(1.7, "feet"),
  27638. name: "Eye",
  27639. image: {
  27640. source: "./media/characters/koros/eye.svg"
  27641. }
  27642. },
  27643. headFront: {
  27644. height: math.unit(11.69, "feet"),
  27645. name: "Head (Front)",
  27646. image: {
  27647. source: "./media/characters/koros/head-front.svg"
  27648. }
  27649. },
  27650. headSide: {
  27651. height: math.unit(14, "feet"),
  27652. name: "Head (Side)",
  27653. image: {
  27654. source: "./media/characters/koros/head-side.svg"
  27655. }
  27656. },
  27657. leg: {
  27658. height: math.unit(17, "feet"),
  27659. name: "Leg",
  27660. image: {
  27661. source: "./media/characters/koros/leg.svg"
  27662. }
  27663. },
  27664. mawSide: {
  27665. height: math.unit(12.8, "feet"),
  27666. name: "Maw (Side)",
  27667. image: {
  27668. source: "./media/characters/koros/maw-side.svg"
  27669. }
  27670. },
  27671. mawSpitting: {
  27672. height: math.unit(17, "feet"),
  27673. name: "Maw (Spitting)",
  27674. image: {
  27675. source: "./media/characters/koros/maw-spitting.svg"
  27676. }
  27677. },
  27678. slit: {
  27679. height: math.unit(2.8, "feet"),
  27680. name: "Slit",
  27681. image: {
  27682. source: "./media/characters/koros/slit.svg"
  27683. }
  27684. },
  27685. stomach: {
  27686. height: math.unit(6.8, "feet"),
  27687. preyCapacity: math.unit(20, "people"),
  27688. name: "Stomach",
  27689. image: {
  27690. source: "./media/characters/koros/stomach.svg"
  27691. }
  27692. },
  27693. wingspanBottom: {
  27694. height: math.unit(114, "feet"),
  27695. name: "Wingspan (Bottom)",
  27696. image: {
  27697. source: "./media/characters/koros/wingspan-bottom.svg"
  27698. }
  27699. },
  27700. wingspanTop: {
  27701. height: math.unit(104, "feet"),
  27702. name: "Wingspan (Top)",
  27703. image: {
  27704. source: "./media/characters/koros/wingspan-top.svg"
  27705. }
  27706. },
  27707. },
  27708. [
  27709. {
  27710. name: "Normal",
  27711. height: math.unit(31 + 8 / 12, "feet"),
  27712. default: true
  27713. },
  27714. ]
  27715. ))
  27716. characterMakers.push(() => makeCharacter(
  27717. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27718. {
  27719. front: {
  27720. height: math.unit(18 + 5 / 12, "feet"),
  27721. weight: math.unit(3750, "kg"),
  27722. name: "Front",
  27723. image: {
  27724. source: "./media/characters/vexx/front.svg",
  27725. extra: 426 / 396,
  27726. bottom: 31.5 / 458
  27727. }
  27728. },
  27729. maw: {
  27730. height: math.unit(6, "feet"),
  27731. name: "Maw",
  27732. image: {
  27733. source: "./media/characters/vexx/maw.svg"
  27734. }
  27735. },
  27736. },
  27737. [
  27738. {
  27739. name: "Normal",
  27740. height: math.unit(18 + 5 / 12, "feet"),
  27741. default: true
  27742. },
  27743. ]
  27744. ))
  27745. characterMakers.push(() => makeCharacter(
  27746. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27747. {
  27748. front: {
  27749. height: math.unit(17 + 6 / 12, "feet"),
  27750. weight: math.unit(150, "lb"),
  27751. name: "Front",
  27752. image: {
  27753. source: "./media/characters/baadra/front.svg",
  27754. extra: 1694/1553,
  27755. bottom: 179/1873
  27756. }
  27757. },
  27758. frontAlt: {
  27759. height: math.unit(17 + 6 / 12, "feet"),
  27760. weight: math.unit(150, "lb"),
  27761. name: "Front (Alt)",
  27762. image: {
  27763. source: "./media/characters/baadra/front-alt.svg",
  27764. extra: 3137 / 2890,
  27765. bottom: 168.4 / 3305
  27766. }
  27767. },
  27768. back: {
  27769. height: math.unit(17 + 6 / 12, "feet"),
  27770. weight: math.unit(150, "lb"),
  27771. name: "Back",
  27772. image: {
  27773. source: "./media/characters/baadra/back.svg",
  27774. extra: 3142 / 2890,
  27775. bottom: 220 / 3371
  27776. }
  27777. },
  27778. head: {
  27779. height: math.unit(5.45, "feet"),
  27780. name: "Head",
  27781. image: {
  27782. source: "./media/characters/baadra/head.svg"
  27783. }
  27784. },
  27785. headAngry: {
  27786. height: math.unit(4.95, "feet"),
  27787. name: "Head (Angry)",
  27788. image: {
  27789. source: "./media/characters/baadra/head-angry.svg"
  27790. }
  27791. },
  27792. headOpen: {
  27793. height: math.unit(6, "feet"),
  27794. name: "Head (Open)",
  27795. image: {
  27796. source: "./media/characters/baadra/head-open.svg"
  27797. }
  27798. },
  27799. },
  27800. [
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(17 + 6 / 12, "feet"),
  27804. default: true
  27805. },
  27806. ]
  27807. ))
  27808. characterMakers.push(() => makeCharacter(
  27809. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27810. {
  27811. front: {
  27812. height: math.unit(7 + 3 / 12, "feet"),
  27813. weight: math.unit(180, "lb"),
  27814. name: "Front",
  27815. image: {
  27816. source: "./media/characters/juri/front.svg",
  27817. extra: 1401 / 1237,
  27818. bottom: 18.5 / 1418
  27819. }
  27820. },
  27821. side: {
  27822. height: math.unit(7 + 3 / 12, "feet"),
  27823. weight: math.unit(180, "lb"),
  27824. name: "Side",
  27825. image: {
  27826. source: "./media/characters/juri/side.svg",
  27827. extra: 1424 / 1242,
  27828. bottom: 18.5 / 1447
  27829. }
  27830. },
  27831. sitting: {
  27832. height: math.unit(6, "feet"),
  27833. weight: math.unit(180, "lb"),
  27834. name: "Sitting",
  27835. image: {
  27836. source: "./media/characters/juri/sitting.svg",
  27837. extra: 1270 / 1143,
  27838. bottom: 100 / 1343
  27839. }
  27840. },
  27841. back: {
  27842. height: math.unit(7 + 3 / 12, "feet"),
  27843. weight: math.unit(180, "lb"),
  27844. name: "Back",
  27845. image: {
  27846. source: "./media/characters/juri/back.svg",
  27847. extra: 1377 / 1240,
  27848. bottom: 23.7 / 1405
  27849. }
  27850. },
  27851. maw: {
  27852. height: math.unit(2.8, "feet"),
  27853. name: "Maw",
  27854. image: {
  27855. source: "./media/characters/juri/maw.svg"
  27856. }
  27857. },
  27858. stomach: {
  27859. height: math.unit(0.89, "feet"),
  27860. preyCapacity: math.unit(4, "liters"),
  27861. name: "Stomach",
  27862. image: {
  27863. source: "./media/characters/juri/stomach.svg"
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Normal",
  27870. height: math.unit(7 + 3 / 12, "feet"),
  27871. default: true
  27872. },
  27873. ]
  27874. ))
  27875. characterMakers.push(() => makeCharacter(
  27876. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27877. {
  27878. fox: {
  27879. height: math.unit(5 + 6 / 12, "feet"),
  27880. weight: math.unit(140, "lb"),
  27881. name: "Fox",
  27882. image: {
  27883. source: "./media/characters/maxene-sita/fox.svg",
  27884. extra: 146 / 138,
  27885. bottom: 2.1 / 148.19
  27886. }
  27887. },
  27888. foxLaying: {
  27889. height: math.unit(1.70, "feet"),
  27890. weight: math.unit(140, "lb"),
  27891. name: "Fox (Laying)",
  27892. image: {
  27893. source: "./media/characters/maxene-sita/fox-laying.svg",
  27894. extra: 910 / 572,
  27895. bottom: 71 / 981
  27896. }
  27897. },
  27898. kitsune: {
  27899. height: math.unit(10, "feet"),
  27900. weight: math.unit(800, "lb"),
  27901. name: "Kitsune",
  27902. image: {
  27903. source: "./media/characters/maxene-sita/kitsune.svg",
  27904. extra: 185 / 176,
  27905. bottom: 4.7 / 189.9
  27906. }
  27907. },
  27908. hellhound: {
  27909. height: math.unit(10, "feet"),
  27910. weight: math.unit(700, "lb"),
  27911. name: "Hellhound",
  27912. image: {
  27913. source: "./media/characters/maxene-sita/hellhound.svg",
  27914. extra: 1600 / 1545,
  27915. bottom: 81 / 1681
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Normal",
  27922. height: math.unit(5 + 6 / 12, "feet"),
  27923. default: true
  27924. },
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27929. {
  27930. front: {
  27931. height: math.unit(3 + 4 / 12, "feet"),
  27932. weight: math.unit(70, "lb"),
  27933. name: "Front",
  27934. image: {
  27935. source: "./media/characters/maia/front.svg",
  27936. extra: 227 / 219.5,
  27937. bottom: 40 / 267
  27938. }
  27939. },
  27940. back: {
  27941. height: math.unit(3 + 4 / 12, "feet"),
  27942. weight: math.unit(70, "lb"),
  27943. name: "Back",
  27944. image: {
  27945. source: "./media/characters/maia/back.svg",
  27946. extra: 237 / 225
  27947. }
  27948. },
  27949. },
  27950. [
  27951. {
  27952. name: "Normal",
  27953. height: math.unit(3 + 4 / 12, "feet"),
  27954. default: true
  27955. },
  27956. ]
  27957. ))
  27958. characterMakers.push(() => makeCharacter(
  27959. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27960. {
  27961. front: {
  27962. height: math.unit(5 + 10 / 12, "feet"),
  27963. weight: math.unit(197, "lb"),
  27964. name: "Front",
  27965. image: {
  27966. source: "./media/characters/jabaro/front.svg",
  27967. extra: 225 / 216,
  27968. bottom: 5.06 / 230
  27969. }
  27970. },
  27971. back: {
  27972. height: math.unit(5 + 10 / 12, "feet"),
  27973. weight: math.unit(197, "lb"),
  27974. name: "Back",
  27975. image: {
  27976. source: "./media/characters/jabaro/back.svg",
  27977. extra: 225 / 219,
  27978. bottom: 1.9 / 227
  27979. }
  27980. },
  27981. },
  27982. [
  27983. {
  27984. name: "Normal",
  27985. height: math.unit(5 + 10 / 12, "feet"),
  27986. default: true
  27987. },
  27988. ]
  27989. ))
  27990. characterMakers.push(() => makeCharacter(
  27991. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27992. {
  27993. front: {
  27994. height: math.unit(5 + 8 / 12, "feet"),
  27995. weight: math.unit(139, "lb"),
  27996. name: "Front",
  27997. image: {
  27998. source: "./media/characters/risa/front.svg",
  27999. extra: 270 / 260,
  28000. bottom: 11.2 / 282
  28001. }
  28002. },
  28003. back: {
  28004. height: math.unit(5 + 8 / 12, "feet"),
  28005. weight: math.unit(139, "lb"),
  28006. name: "Back",
  28007. image: {
  28008. source: "./media/characters/risa/back.svg",
  28009. extra: 264 / 255,
  28010. bottom: 4 / 268
  28011. }
  28012. },
  28013. },
  28014. [
  28015. {
  28016. name: "Normal",
  28017. height: math.unit(5 + 8 / 12, "feet"),
  28018. default: true
  28019. },
  28020. ]
  28021. ))
  28022. characterMakers.push(() => makeCharacter(
  28023. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28024. {
  28025. front: {
  28026. height: math.unit(2 + 11 / 12, "feet"),
  28027. weight: math.unit(30, "lb"),
  28028. name: "Front",
  28029. image: {
  28030. source: "./media/characters/weatley/front.svg",
  28031. bottom: 10.7 / 414,
  28032. extra: 403.5 / 362
  28033. }
  28034. },
  28035. back: {
  28036. height: math.unit(2 + 11 / 12, "feet"),
  28037. weight: math.unit(30, "lb"),
  28038. name: "Back",
  28039. image: {
  28040. source: "./media/characters/weatley/back.svg",
  28041. bottom: 10.7 / 414,
  28042. extra: 403.5 / 362
  28043. }
  28044. },
  28045. },
  28046. [
  28047. {
  28048. name: "Normal",
  28049. height: math.unit(2 + 11 / 12, "feet"),
  28050. default: true
  28051. },
  28052. ]
  28053. ))
  28054. characterMakers.push(() => makeCharacter(
  28055. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28056. {
  28057. front: {
  28058. height: math.unit(5 + 2 / 12, "feet"),
  28059. weight: math.unit(50, "kg"),
  28060. name: "Front",
  28061. image: {
  28062. source: "./media/characters/mercury-crescent/front.svg",
  28063. extra: 1088 / 1033,
  28064. bottom: 18.9 / 1109
  28065. }
  28066. },
  28067. },
  28068. [
  28069. {
  28070. name: "Normal",
  28071. height: math.unit(5 + 2 / 12, "feet"),
  28072. default: true
  28073. },
  28074. ]
  28075. ))
  28076. characterMakers.push(() => makeCharacter(
  28077. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28078. {
  28079. front: {
  28080. height: math.unit(2, "feet"),
  28081. weight: math.unit(15, "kg"),
  28082. name: "Front",
  28083. image: {
  28084. source: "./media/characters/diamond-jones/front.svg",
  28085. extra: 727/723,
  28086. bottom: 46/773
  28087. }
  28088. },
  28089. },
  28090. [
  28091. {
  28092. name: "Normal",
  28093. height: math.unit(2, "feet"),
  28094. default: true
  28095. },
  28096. ]
  28097. ))
  28098. characterMakers.push(() => makeCharacter(
  28099. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28100. {
  28101. front: {
  28102. height: math.unit(3, "feet"),
  28103. weight: math.unit(30, "kg"),
  28104. name: "Front",
  28105. image: {
  28106. source: "./media/characters/sweet-bit/front.svg",
  28107. extra: 675 / 567,
  28108. bottom: 27.7 / 703
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(3, "feet"),
  28116. default: true
  28117. },
  28118. ]
  28119. ))
  28120. characterMakers.push(() => makeCharacter(
  28121. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28122. {
  28123. side: {
  28124. height: math.unit(9.178, "feet"),
  28125. weight: math.unit(500, "lb"),
  28126. name: "Side",
  28127. image: {
  28128. source: "./media/characters/umbrazen/side.svg",
  28129. extra: 1730 / 1473,
  28130. bottom: 34.6 / 1765
  28131. }
  28132. },
  28133. },
  28134. [
  28135. {
  28136. name: "Normal",
  28137. height: math.unit(9.178, "feet"),
  28138. default: true
  28139. },
  28140. ]
  28141. ))
  28142. characterMakers.push(() => makeCharacter(
  28143. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28144. {
  28145. front: {
  28146. height: math.unit(10, "feet"),
  28147. weight: math.unit(750, "lb"),
  28148. name: "Front",
  28149. image: {
  28150. source: "./media/characters/arlist/front.svg",
  28151. extra: 961 / 778,
  28152. bottom: 6.2 / 986
  28153. }
  28154. },
  28155. },
  28156. [
  28157. {
  28158. name: "Normal",
  28159. height: math.unit(10, "feet"),
  28160. default: true
  28161. },
  28162. ]
  28163. ))
  28164. characterMakers.push(() => makeCharacter(
  28165. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28166. {
  28167. front: {
  28168. height: math.unit(5 + 1 / 12, "feet"),
  28169. weight: math.unit(110, "lb"),
  28170. name: "Front",
  28171. image: {
  28172. source: "./media/characters/aradel/front.svg",
  28173. extra: 324 / 303,
  28174. bottom: 3.6 / 329.4
  28175. }
  28176. },
  28177. },
  28178. [
  28179. {
  28180. name: "Normal",
  28181. height: math.unit(5 + 1 / 12, "feet"),
  28182. default: true
  28183. },
  28184. ]
  28185. ))
  28186. characterMakers.push(() => makeCharacter(
  28187. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28188. {
  28189. dressed: {
  28190. height: math.unit(3 + 8 / 12, "feet"),
  28191. weight: math.unit(50, "lb"),
  28192. name: "Dressed",
  28193. image: {
  28194. source: "./media/characters/serryn/dressed.svg",
  28195. extra: 1792 / 1656,
  28196. bottom: 43.5 / 1840
  28197. }
  28198. },
  28199. nude: {
  28200. height: math.unit(3 + 8 / 12, "feet"),
  28201. weight: math.unit(50, "lb"),
  28202. name: "Nude",
  28203. image: {
  28204. source: "./media/characters/serryn/nude.svg",
  28205. extra: 1792 / 1656,
  28206. bottom: 43.5 / 1840
  28207. }
  28208. },
  28209. },
  28210. [
  28211. {
  28212. name: "Normal",
  28213. height: math.unit(3 + 8 / 12, "feet"),
  28214. default: true
  28215. },
  28216. ]
  28217. ))
  28218. characterMakers.push(() => makeCharacter(
  28219. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28220. {
  28221. front: {
  28222. height: math.unit(7 + 10 / 12, "feet"),
  28223. weight: math.unit(255, "lb"),
  28224. name: "Front",
  28225. image: {
  28226. source: "./media/characters/xavier-thyme/front.svg",
  28227. extra: 3733 / 3642,
  28228. bottom: 131 / 3869
  28229. }
  28230. },
  28231. frontRaven: {
  28232. height: math.unit(7 + 10 / 12, "feet"),
  28233. weight: math.unit(255, "lb"),
  28234. name: "Front (Raven)",
  28235. image: {
  28236. source: "./media/characters/xavier-thyme/front-raven.svg",
  28237. extra: 4385 / 3642,
  28238. bottom: 131 / 4517
  28239. }
  28240. },
  28241. },
  28242. [
  28243. {
  28244. name: "Normal",
  28245. height: math.unit(7 + 10 / 12, "feet"),
  28246. default: true
  28247. },
  28248. ]
  28249. ))
  28250. characterMakers.push(() => makeCharacter(
  28251. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28252. {
  28253. front: {
  28254. height: math.unit(1.6, "m"),
  28255. weight: math.unit(50, "kg"),
  28256. name: "Front",
  28257. image: {
  28258. source: "./media/characters/kiki/front.svg",
  28259. extra: 4682 / 3610,
  28260. bottom: 115 / 4777
  28261. }
  28262. },
  28263. },
  28264. [
  28265. {
  28266. name: "Normal",
  28267. height: math.unit(1.6, "meters"),
  28268. default: true
  28269. },
  28270. ]
  28271. ))
  28272. characterMakers.push(() => makeCharacter(
  28273. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28274. {
  28275. front: {
  28276. height: math.unit(50, "m"),
  28277. weight: math.unit(500, "tonnes"),
  28278. name: "Front",
  28279. image: {
  28280. source: "./media/characters/ryoko/front.svg",
  28281. extra: 4632 / 3926,
  28282. bottom: 193 / 4823
  28283. }
  28284. },
  28285. },
  28286. [
  28287. {
  28288. name: "Normal",
  28289. height: math.unit(50, "meters"),
  28290. default: true
  28291. },
  28292. ]
  28293. ))
  28294. characterMakers.push(() => makeCharacter(
  28295. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28296. {
  28297. front: {
  28298. height: math.unit(30, "m"),
  28299. weight: math.unit(22, "tonnes"),
  28300. name: "Front",
  28301. image: {
  28302. source: "./media/characters/elio/front.svg",
  28303. extra: 4582 / 3720,
  28304. bottom: 236 / 4828
  28305. }
  28306. },
  28307. },
  28308. [
  28309. {
  28310. name: "Normal",
  28311. height: math.unit(30, "meters"),
  28312. default: true
  28313. },
  28314. ]
  28315. ))
  28316. characterMakers.push(() => makeCharacter(
  28317. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28318. {
  28319. front: {
  28320. height: math.unit(6 + 3 / 12, "feet"),
  28321. weight: math.unit(120, "lb"),
  28322. name: "Front",
  28323. image: {
  28324. source: "./media/characters/azura/front.svg",
  28325. extra: 1149 / 1135,
  28326. bottom: 45 / 1194
  28327. }
  28328. },
  28329. frontClothed: {
  28330. height: math.unit(6 + 3 / 12, "feet"),
  28331. weight: math.unit(120, "lb"),
  28332. name: "Front (Clothed)",
  28333. image: {
  28334. source: "./media/characters/azura/front-clothed.svg",
  28335. extra: 1149 / 1135,
  28336. bottom: 45 / 1194
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Normal",
  28343. height: math.unit(6 + 3 / 12, "feet"),
  28344. default: true
  28345. },
  28346. {
  28347. name: "Macro",
  28348. height: math.unit(20 + 6 / 12, "feet")
  28349. },
  28350. {
  28351. name: "Megamacro",
  28352. height: math.unit(12, "miles")
  28353. },
  28354. {
  28355. name: "Gigamacro",
  28356. height: math.unit(10000, "miles")
  28357. },
  28358. {
  28359. name: "Teramacro",
  28360. height: math.unit(900000, "miles")
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28366. {
  28367. front: {
  28368. height: math.unit(12, "feet"),
  28369. weight: math.unit(1, "ton"),
  28370. capacity: math.unit(660000, "gallons"),
  28371. name: "Front",
  28372. image: {
  28373. source: "./media/characters/zeus/front.svg",
  28374. extra: 5005 / 4717,
  28375. bottom: 363 / 5388
  28376. }
  28377. },
  28378. },
  28379. [
  28380. {
  28381. name: "Normal",
  28382. height: math.unit(12, "feet")
  28383. },
  28384. {
  28385. name: "Preferred Size",
  28386. height: math.unit(0.5, "miles"),
  28387. default: true
  28388. },
  28389. {
  28390. name: "Giga Horse",
  28391. height: math.unit(300, "miles")
  28392. },
  28393. {
  28394. name: "Riding Planets",
  28395. height: math.unit(30, "megameters")
  28396. },
  28397. {
  28398. name: "Cosmic Giant",
  28399. height: math.unit(3, "zettameters")
  28400. },
  28401. {
  28402. name: "Breeding God",
  28403. height: math.unit(9.92e22, "yottameters")
  28404. },
  28405. ]
  28406. ))
  28407. characterMakers.push(() => makeCharacter(
  28408. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28409. {
  28410. side: {
  28411. height: math.unit(9, "feet"),
  28412. weight: math.unit(1500, "kg"),
  28413. name: "Side",
  28414. image: {
  28415. source: "./media/characters/fang/side.svg",
  28416. extra: 924 / 866,
  28417. bottom: 47.5 / 972.3
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Normal",
  28424. height: math.unit(9, "feet"),
  28425. default: true
  28426. },
  28427. {
  28428. name: "Macro",
  28429. height: math.unit(75 + 6 / 12, "feet")
  28430. },
  28431. {
  28432. name: "Teramacro",
  28433. height: math.unit(50000, "miles")
  28434. },
  28435. ]
  28436. ))
  28437. characterMakers.push(() => makeCharacter(
  28438. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28439. {
  28440. front: {
  28441. height: math.unit(10, "feet"),
  28442. weight: math.unit(2, "tons"),
  28443. name: "Front",
  28444. image: {
  28445. source: "./media/characters/rekhit/front.svg",
  28446. extra: 2796 / 2590,
  28447. bottom: 225 / 3022
  28448. }
  28449. },
  28450. },
  28451. [
  28452. {
  28453. name: "Normal",
  28454. height: math.unit(10, "feet"),
  28455. default: true
  28456. },
  28457. {
  28458. name: "Macro",
  28459. height: math.unit(500, "feet")
  28460. },
  28461. ]
  28462. ))
  28463. characterMakers.push(() => makeCharacter(
  28464. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28465. {
  28466. front: {
  28467. height: math.unit(7 + 6.451 / 12, "feet"),
  28468. weight: math.unit(310, "lb"),
  28469. name: "Front",
  28470. image: {
  28471. source: "./media/characters/dahlia-verrick/front.svg",
  28472. extra: 1488 / 1365,
  28473. bottom: 6.2 / 1495
  28474. }
  28475. },
  28476. back: {
  28477. height: math.unit(7 + 6.451 / 12, "feet"),
  28478. weight: math.unit(310, "lb"),
  28479. name: "Back",
  28480. image: {
  28481. source: "./media/characters/dahlia-verrick/back.svg",
  28482. extra: 1472 / 1351,
  28483. bottom: 5.28 / 1477
  28484. }
  28485. },
  28486. frontBusiness: {
  28487. height: math.unit(7 + 6.451 / 12, "feet"),
  28488. weight: math.unit(200, "lb"),
  28489. name: "Front (Business)",
  28490. image: {
  28491. source: "./media/characters/dahlia-verrick/front-business.svg",
  28492. extra: 1478 / 1381,
  28493. bottom: 5.5 / 1484
  28494. }
  28495. },
  28496. frontCasual: {
  28497. height: math.unit(7 + 6.451 / 12, "feet"),
  28498. weight: math.unit(200, "lb"),
  28499. name: "Front (Casual)",
  28500. image: {
  28501. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28502. extra: 1478 / 1381,
  28503. bottom: 5.5 / 1484
  28504. }
  28505. },
  28506. },
  28507. [
  28508. {
  28509. name: "Travel-Sized",
  28510. height: math.unit(7.45, "inches")
  28511. },
  28512. {
  28513. name: "Normal",
  28514. height: math.unit(7 + 6.451 / 12, "feet"),
  28515. default: true
  28516. },
  28517. {
  28518. name: "Hitting the Town",
  28519. height: math.unit(37 + 8 / 12, "feet")
  28520. },
  28521. {
  28522. name: "Stomp in the Suburbs",
  28523. height: math.unit(964 + 9.728 / 12, "feet")
  28524. },
  28525. {
  28526. name: "Sit on the City",
  28527. height: math.unit(61747 + 10.592 / 12, "feet")
  28528. },
  28529. {
  28530. name: "Glomp the Globe",
  28531. height: math.unit(252919327 + 4.832 / 12, "feet")
  28532. },
  28533. ]
  28534. ))
  28535. characterMakers.push(() => makeCharacter(
  28536. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28537. {
  28538. front: {
  28539. height: math.unit(6 + 4 / 12, "feet"),
  28540. weight: math.unit(320, "lb"),
  28541. name: "Front",
  28542. image: {
  28543. source: "./media/characters/balina-mahigan/front.svg",
  28544. extra: 447 / 428,
  28545. bottom: 18 / 466
  28546. }
  28547. },
  28548. back: {
  28549. height: math.unit(6 + 4 / 12, "feet"),
  28550. weight: math.unit(320, "lb"),
  28551. name: "Back",
  28552. image: {
  28553. source: "./media/characters/balina-mahigan/back.svg",
  28554. extra: 445 / 428,
  28555. bottom: 4.07 / 448
  28556. }
  28557. },
  28558. arm: {
  28559. height: math.unit(1.88, "feet"),
  28560. name: "Arm",
  28561. image: {
  28562. source: "./media/characters/balina-mahigan/arm.svg"
  28563. }
  28564. },
  28565. backPort: {
  28566. height: math.unit(0.685, "feet"),
  28567. name: "Back Port",
  28568. image: {
  28569. source: "./media/characters/balina-mahigan/back-port.svg"
  28570. }
  28571. },
  28572. hoofpaw: {
  28573. height: math.unit(1.41, "feet"),
  28574. name: "Hoofpaw",
  28575. image: {
  28576. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28577. }
  28578. },
  28579. leftHandBack: {
  28580. height: math.unit(0.938, "feet"),
  28581. name: "Left Hand (Back)",
  28582. image: {
  28583. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28584. }
  28585. },
  28586. leftHandFront: {
  28587. height: math.unit(0.938, "feet"),
  28588. name: "Left Hand (Front)",
  28589. image: {
  28590. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28591. }
  28592. },
  28593. rightHandBack: {
  28594. height: math.unit(0.95, "feet"),
  28595. name: "Right Hand (Back)",
  28596. image: {
  28597. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28598. }
  28599. },
  28600. rightHandFront: {
  28601. height: math.unit(0.95, "feet"),
  28602. name: "Right Hand (Front)",
  28603. image: {
  28604. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28605. }
  28606. },
  28607. },
  28608. [
  28609. {
  28610. name: "Normal",
  28611. height: math.unit(6 + 4 / 12, "feet"),
  28612. default: true
  28613. },
  28614. ]
  28615. ))
  28616. characterMakers.push(() => makeCharacter(
  28617. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28618. {
  28619. front: {
  28620. height: math.unit(6, "feet"),
  28621. weight: math.unit(320, "lb"),
  28622. name: "Front",
  28623. image: {
  28624. source: "./media/characters/balina-mejeri/front.svg",
  28625. extra: 517 / 488,
  28626. bottom: 44.2 / 561
  28627. }
  28628. },
  28629. },
  28630. [
  28631. {
  28632. name: "Normal",
  28633. height: math.unit(6 + 4 / 12, "feet")
  28634. },
  28635. {
  28636. name: "Business",
  28637. height: math.unit(155, "feet"),
  28638. default: true
  28639. },
  28640. ]
  28641. ))
  28642. characterMakers.push(() => makeCharacter(
  28643. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28644. {
  28645. kneeling: {
  28646. height: math.unit(6 + 4 / 12, "feet"),
  28647. weight: math.unit(300 * 20, "lb"),
  28648. name: "Kneeling",
  28649. image: {
  28650. source: "./media/characters/balbarian/kneeling.svg",
  28651. extra: 922 / 862,
  28652. bottom: 42.4 / 965
  28653. }
  28654. },
  28655. },
  28656. [
  28657. {
  28658. name: "Normal",
  28659. height: math.unit(6 + 4 / 12, "feet")
  28660. },
  28661. {
  28662. name: "Treasured",
  28663. height: math.unit(18 + 9 / 12, "feet"),
  28664. default: true
  28665. },
  28666. {
  28667. name: "Macro",
  28668. height: math.unit(900, "feet")
  28669. },
  28670. ]
  28671. ))
  28672. characterMakers.push(() => makeCharacter(
  28673. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28674. {
  28675. front: {
  28676. height: math.unit(6 + 4 / 12, "feet"),
  28677. weight: math.unit(325, "lb"),
  28678. name: "Front",
  28679. image: {
  28680. source: "./media/characters/balina-amarini/front.svg",
  28681. extra: 415 / 403,
  28682. bottom: 19 / 433.4
  28683. }
  28684. },
  28685. back: {
  28686. height: math.unit(6 + 4 / 12, "feet"),
  28687. weight: math.unit(325, "lb"),
  28688. name: "Back",
  28689. image: {
  28690. source: "./media/characters/balina-amarini/back.svg",
  28691. extra: 415 / 403,
  28692. bottom: 13.5 / 432
  28693. }
  28694. },
  28695. overdrive: {
  28696. height: math.unit(6 + 4 / 12, "feet"),
  28697. weight: math.unit(400, "lb"),
  28698. name: "Overdrive",
  28699. image: {
  28700. source: "./media/characters/balina-amarini/overdrive.svg",
  28701. extra: 269 / 259,
  28702. bottom: 12 / 282
  28703. }
  28704. },
  28705. },
  28706. [
  28707. {
  28708. name: "Boom",
  28709. height: math.unit(9 + 10 / 12, "feet"),
  28710. default: true
  28711. },
  28712. {
  28713. name: "Macro",
  28714. height: math.unit(280, "feet")
  28715. },
  28716. ]
  28717. ))
  28718. characterMakers.push(() => makeCharacter(
  28719. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28720. {
  28721. goddess: {
  28722. height: math.unit(600, "feet"),
  28723. weight: math.unit(2000000, "tons"),
  28724. name: "Goddess",
  28725. image: {
  28726. source: "./media/characters/lady-kubwa/goddess.svg",
  28727. extra: 1240.5 / 1223,
  28728. bottom: 22 / 1263
  28729. }
  28730. },
  28731. goddesser: {
  28732. height: math.unit(900, "feet"),
  28733. weight: math.unit(20000000, "lb"),
  28734. name: "Goddess-er",
  28735. image: {
  28736. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28737. extra: 899 / 888,
  28738. bottom: 12.6 / 912
  28739. }
  28740. },
  28741. },
  28742. [
  28743. {
  28744. name: "Macro",
  28745. height: math.unit(600, "feet"),
  28746. default: true
  28747. },
  28748. {
  28749. name: "Megamacro",
  28750. height: math.unit(250, "miles")
  28751. },
  28752. ]
  28753. ))
  28754. characterMakers.push(() => makeCharacter(
  28755. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28756. {
  28757. front: {
  28758. height: math.unit(7 + 7 / 12, "feet"),
  28759. weight: math.unit(250, "lb"),
  28760. name: "Front",
  28761. image: {
  28762. source: "./media/characters/tala-grovehorn/front.svg",
  28763. extra: 2636 / 2525,
  28764. bottom: 147 / 2781
  28765. }
  28766. },
  28767. back: {
  28768. height: math.unit(7 + 7 / 12, "feet"),
  28769. weight: math.unit(250, "lb"),
  28770. name: "Back",
  28771. image: {
  28772. source: "./media/characters/tala-grovehorn/back.svg",
  28773. extra: 2635 / 2539,
  28774. bottom: 100 / 2732.8
  28775. }
  28776. },
  28777. mouth: {
  28778. height: math.unit(1.15, "feet"),
  28779. name: "Mouth",
  28780. image: {
  28781. source: "./media/characters/tala-grovehorn/mouth.svg"
  28782. }
  28783. },
  28784. dick: {
  28785. height: math.unit(2.36, "feet"),
  28786. name: "Dick",
  28787. image: {
  28788. source: "./media/characters/tala-grovehorn/dick.svg"
  28789. }
  28790. },
  28791. slit: {
  28792. height: math.unit(0.61, "feet"),
  28793. name: "Slit",
  28794. image: {
  28795. source: "./media/characters/tala-grovehorn/slit.svg"
  28796. }
  28797. },
  28798. },
  28799. [
  28800. ]
  28801. ))
  28802. characterMakers.push(() => makeCharacter(
  28803. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28804. {
  28805. front: {
  28806. height: math.unit(7 + 7 / 12, "feet"),
  28807. weight: math.unit(225, "lb"),
  28808. name: "Front",
  28809. image: {
  28810. source: "./media/characters/epona/front.svg",
  28811. extra: 2445 / 2290,
  28812. bottom: 251 / 2696
  28813. }
  28814. },
  28815. back: {
  28816. height: math.unit(7 + 7 / 12, "feet"),
  28817. weight: math.unit(225, "lb"),
  28818. name: "Back",
  28819. image: {
  28820. source: "./media/characters/epona/back.svg",
  28821. extra: 2546 / 2408,
  28822. bottom: 44 / 2589
  28823. }
  28824. },
  28825. genitals: {
  28826. height: math.unit(1.5, "feet"),
  28827. name: "Genitals",
  28828. image: {
  28829. source: "./media/characters/epona/genitals.svg"
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Normal",
  28836. height: math.unit(7 + 7 / 12, "feet"),
  28837. default: true
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(7, "feet"),
  28846. weight: math.unit(518, "lb"),
  28847. name: "Front",
  28848. image: {
  28849. source: "./media/characters/avia-bloodbourn/front.svg",
  28850. extra: 1466 / 1350,
  28851. bottom: 65 / 1527
  28852. }
  28853. },
  28854. },
  28855. [
  28856. ]
  28857. ))
  28858. characterMakers.push(() => makeCharacter(
  28859. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28860. {
  28861. front: {
  28862. height: math.unit(9.35, "feet"),
  28863. weight: math.unit(600, "lb"),
  28864. name: "Front",
  28865. image: {
  28866. source: "./media/characters/amera/front.svg",
  28867. extra: 891 / 818,
  28868. bottom: 30 / 922.7
  28869. }
  28870. },
  28871. back: {
  28872. height: math.unit(9.35, "feet"),
  28873. weight: math.unit(600, "lb"),
  28874. name: "Back",
  28875. image: {
  28876. source: "./media/characters/amera/back.svg",
  28877. extra: 876 / 824,
  28878. bottom: 6.8 / 884
  28879. }
  28880. },
  28881. dick: {
  28882. height: math.unit(2.14, "feet"),
  28883. name: "Dick",
  28884. image: {
  28885. source: "./media/characters/amera/dick.svg"
  28886. }
  28887. },
  28888. },
  28889. [
  28890. {
  28891. name: "Normal",
  28892. height: math.unit(9.35, "feet"),
  28893. default: true
  28894. },
  28895. ]
  28896. ))
  28897. characterMakers.push(() => makeCharacter(
  28898. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28899. {
  28900. kneeling: {
  28901. height: math.unit(3 + 4 / 12, "feet"),
  28902. weight: math.unit(90, "lb"),
  28903. name: "Kneeling",
  28904. image: {
  28905. source: "./media/characters/rosewen/kneeling.svg",
  28906. extra: 1835 / 1571,
  28907. bottom: 27.7 / 1862
  28908. }
  28909. },
  28910. },
  28911. [
  28912. {
  28913. name: "Normal",
  28914. height: math.unit(3 + 4 / 12, "feet"),
  28915. default: true
  28916. },
  28917. ]
  28918. ))
  28919. characterMakers.push(() => makeCharacter(
  28920. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28921. {
  28922. front: {
  28923. height: math.unit(5 + 10 / 12, "feet"),
  28924. weight: math.unit(200, "lb"),
  28925. name: "Front",
  28926. image: {
  28927. source: "./media/characters/sabah/front.svg",
  28928. extra: 849 / 763,
  28929. bottom: 33.9 / 881
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(5 + 10 / 12, "feet"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28943. {
  28944. front: {
  28945. height: math.unit(3 + 5 / 12, "feet"),
  28946. weight: math.unit(40, "kg"),
  28947. name: "Front",
  28948. image: {
  28949. source: "./media/characters/purple-flame/front.svg",
  28950. extra: 1577 / 1412,
  28951. bottom: 97 / 1694
  28952. }
  28953. },
  28954. frontDressed: {
  28955. height: math.unit(3 + 5 / 12, "feet"),
  28956. weight: math.unit(40, "kg"),
  28957. name: "Front (Dressed)",
  28958. image: {
  28959. source: "./media/characters/purple-flame/front-dressed.svg",
  28960. extra: 1577 / 1412,
  28961. bottom: 97 / 1694
  28962. }
  28963. },
  28964. headphones: {
  28965. height: math.unit(0.85, "feet"),
  28966. name: "Headphones",
  28967. image: {
  28968. source: "./media/characters/purple-flame/headphones.svg"
  28969. }
  28970. },
  28971. },
  28972. [
  28973. {
  28974. name: "Really Small",
  28975. height: math.unit(5, "cm")
  28976. },
  28977. {
  28978. name: "Micro",
  28979. height: math.unit(1 + 5 / 12, "feet")
  28980. },
  28981. {
  28982. name: "Normal",
  28983. height: math.unit(3 + 5 / 12, "feet"),
  28984. default: true
  28985. },
  28986. {
  28987. name: "Minimacro",
  28988. height: math.unit(125, "feet")
  28989. },
  28990. {
  28991. name: "Macro",
  28992. height: math.unit(0.5, "miles")
  28993. },
  28994. {
  28995. name: "Megamacro",
  28996. height: math.unit(50, "miles")
  28997. },
  28998. {
  28999. name: "Gigantic",
  29000. height: math.unit(750, "miles")
  29001. },
  29002. {
  29003. name: "Planetary",
  29004. height: math.unit(15000, "miles")
  29005. },
  29006. ]
  29007. ))
  29008. characterMakers.push(() => makeCharacter(
  29009. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29010. {
  29011. front: {
  29012. height: math.unit(14, "feet"),
  29013. weight: math.unit(959, "lb"),
  29014. name: "Front",
  29015. image: {
  29016. source: "./media/characters/arsenal/front.svg",
  29017. extra: 2357 / 2157,
  29018. bottom: 93 / 2458
  29019. }
  29020. },
  29021. },
  29022. [
  29023. {
  29024. name: "Normal",
  29025. height: math.unit(14, "feet"),
  29026. default: true
  29027. },
  29028. ]
  29029. ))
  29030. characterMakers.push(() => makeCharacter(
  29031. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29032. {
  29033. front: {
  29034. height: math.unit(6, "feet"),
  29035. weight: math.unit(150, "lb"),
  29036. name: "Front",
  29037. image: {
  29038. source: "./media/characters/adira/front.svg",
  29039. extra: 1078 / 1029,
  29040. bottom: 87 / 1166
  29041. }
  29042. },
  29043. },
  29044. [
  29045. {
  29046. name: "Micro",
  29047. height: math.unit(4, "inches"),
  29048. default: true
  29049. },
  29050. {
  29051. name: "Macro",
  29052. height: math.unit(50, "feet")
  29053. },
  29054. ]
  29055. ))
  29056. characterMakers.push(() => makeCharacter(
  29057. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29058. {
  29059. front: {
  29060. height: math.unit(16, "feet"),
  29061. weight: math.unit(1000, "lb"),
  29062. name: "Front",
  29063. image: {
  29064. source: "./media/characters/grim/front.svg",
  29065. extra: 622 / 614,
  29066. bottom: 18.1 / 642
  29067. }
  29068. },
  29069. back: {
  29070. height: math.unit(16, "feet"),
  29071. weight: math.unit(1000, "lb"),
  29072. name: "Back",
  29073. image: {
  29074. source: "./media/characters/grim/back.svg",
  29075. extra: 610.6 / 602,
  29076. bottom: 40.8 / 652
  29077. }
  29078. },
  29079. hunched: {
  29080. height: math.unit(9.75, "feet"),
  29081. weight: math.unit(1000, "lb"),
  29082. name: "Hunched",
  29083. image: {
  29084. source: "./media/characters/grim/hunched.svg",
  29085. extra: 304 / 297,
  29086. bottom: 35.4 / 394
  29087. }
  29088. },
  29089. },
  29090. [
  29091. {
  29092. name: "Normal",
  29093. height: math.unit(16, "feet"),
  29094. default: true
  29095. },
  29096. ]
  29097. ))
  29098. characterMakers.push(() => makeCharacter(
  29099. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29100. {
  29101. front: {
  29102. height: math.unit(2.3, "meters"),
  29103. weight: math.unit(300, "lb"),
  29104. name: "Front",
  29105. image: {
  29106. source: "./media/characters/sinja/front-sfw.svg",
  29107. extra: 1393 / 1294,
  29108. bottom: 70 / 1463
  29109. }
  29110. },
  29111. frontNsfw: {
  29112. height: math.unit(2.3, "meters"),
  29113. weight: math.unit(300, "lb"),
  29114. name: "Front (NSFW)",
  29115. image: {
  29116. source: "./media/characters/sinja/front-nsfw.svg",
  29117. extra: 1393 / 1294,
  29118. bottom: 70 / 1463
  29119. }
  29120. },
  29121. back: {
  29122. height: math.unit(2.3, "meters"),
  29123. weight: math.unit(300, "lb"),
  29124. name: "Back",
  29125. image: {
  29126. source: "./media/characters/sinja/back.svg",
  29127. extra: 1393 / 1294,
  29128. bottom: 70 / 1463
  29129. }
  29130. },
  29131. head: {
  29132. height: math.unit(1.771, "feet"),
  29133. name: "Head",
  29134. image: {
  29135. source: "./media/characters/sinja/head.svg"
  29136. }
  29137. },
  29138. slit: {
  29139. height: math.unit(0.8, "feet"),
  29140. name: "Slit",
  29141. image: {
  29142. source: "./media/characters/sinja/slit.svg"
  29143. }
  29144. },
  29145. },
  29146. [
  29147. {
  29148. name: "Normal",
  29149. height: math.unit(2.3, "meters")
  29150. },
  29151. {
  29152. name: "Macro",
  29153. height: math.unit(91, "meters"),
  29154. default: true
  29155. },
  29156. {
  29157. name: "Megamacro",
  29158. height: math.unit(91440, "meters")
  29159. },
  29160. {
  29161. name: "Gigamacro",
  29162. height: math.unit(60960000, "meters")
  29163. },
  29164. {
  29165. name: "Teramacro",
  29166. height: math.unit(9144000000, "meters")
  29167. },
  29168. ]
  29169. ))
  29170. characterMakers.push(() => makeCharacter(
  29171. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29172. {
  29173. front: {
  29174. height: math.unit(1.7, "meters"),
  29175. weight: math.unit(130, "lb"),
  29176. name: "Front",
  29177. image: {
  29178. source: "./media/characters/kyu/front.svg",
  29179. extra: 415 / 395,
  29180. bottom: 5 / 420
  29181. }
  29182. },
  29183. head: {
  29184. height: math.unit(1.75, "feet"),
  29185. name: "Head",
  29186. image: {
  29187. source: "./media/characters/kyu/head.svg"
  29188. }
  29189. },
  29190. foot: {
  29191. height: math.unit(0.81, "feet"),
  29192. name: "Foot",
  29193. image: {
  29194. source: "./media/characters/kyu/foot.svg"
  29195. }
  29196. },
  29197. },
  29198. [
  29199. {
  29200. name: "Normal",
  29201. height: math.unit(1.7, "meters")
  29202. },
  29203. {
  29204. name: "Macro",
  29205. height: math.unit(131, "feet"),
  29206. default: true
  29207. },
  29208. {
  29209. name: "Megamacro",
  29210. height: math.unit(91440, "meters")
  29211. },
  29212. {
  29213. name: "Gigamacro",
  29214. height: math.unit(60960000, "meters")
  29215. },
  29216. {
  29217. name: "Teramacro",
  29218. height: math.unit(9144000000, "meters")
  29219. },
  29220. ]
  29221. ))
  29222. characterMakers.push(() => makeCharacter(
  29223. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29224. {
  29225. front: {
  29226. height: math.unit(7 + 1 / 12, "feet"),
  29227. weight: math.unit(250, "lb"),
  29228. name: "Front",
  29229. image: {
  29230. source: "./media/characters/joey/front.svg",
  29231. extra: 1791 / 1537,
  29232. bottom: 28 / 1816
  29233. }
  29234. },
  29235. },
  29236. [
  29237. {
  29238. name: "Micro",
  29239. height: math.unit(3, "inches")
  29240. },
  29241. {
  29242. name: "Normal",
  29243. height: math.unit(7 + 1 / 12, "feet"),
  29244. default: true
  29245. },
  29246. ]
  29247. ))
  29248. characterMakers.push(() => makeCharacter(
  29249. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29250. {
  29251. front: {
  29252. height: math.unit(165, "cm"),
  29253. weight: math.unit(140, "lb"),
  29254. name: "Front",
  29255. image: {
  29256. source: "./media/characters/sam-evans/front.svg",
  29257. extra: 3417 / 3230,
  29258. bottom: 41.3 / 3417
  29259. }
  29260. },
  29261. frontSixTails: {
  29262. height: math.unit(165, "cm"),
  29263. weight: math.unit(140, "lb"),
  29264. name: "Front-six-tails",
  29265. image: {
  29266. source: "./media/characters/sam-evans/front-six-tails.svg",
  29267. extra: 3417 / 3230,
  29268. bottom: 41.3 / 3417
  29269. }
  29270. },
  29271. back: {
  29272. height: math.unit(165, "cm"),
  29273. weight: math.unit(140, "lb"),
  29274. name: "Back",
  29275. image: {
  29276. source: "./media/characters/sam-evans/back.svg",
  29277. extra: 3227 / 3032,
  29278. bottom: 6.8 / 3234
  29279. }
  29280. },
  29281. face: {
  29282. height: math.unit(0.68, "feet"),
  29283. name: "Face",
  29284. image: {
  29285. source: "./media/characters/sam-evans/face.svg"
  29286. }
  29287. },
  29288. },
  29289. [
  29290. {
  29291. name: "Normal",
  29292. height: math.unit(165, "cm"),
  29293. default: true
  29294. },
  29295. {
  29296. name: "Macro",
  29297. height: math.unit(100, "meters")
  29298. },
  29299. {
  29300. name: "Macro+",
  29301. height: math.unit(800, "meters")
  29302. },
  29303. {
  29304. name: "Macro++",
  29305. height: math.unit(3, "km")
  29306. },
  29307. {
  29308. name: "Macro+++",
  29309. height: math.unit(30, "km")
  29310. },
  29311. ]
  29312. ))
  29313. characterMakers.push(() => makeCharacter(
  29314. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29315. {
  29316. front: {
  29317. height: math.unit(10, "feet"),
  29318. weight: math.unit(750, "lb"),
  29319. name: "Front",
  29320. image: {
  29321. source: "./media/characters/juliet-a/front.svg",
  29322. extra: 1766 / 1720,
  29323. bottom: 43 / 1809
  29324. }
  29325. },
  29326. back: {
  29327. height: math.unit(10, "feet"),
  29328. weight: math.unit(750, "lb"),
  29329. name: "Back",
  29330. image: {
  29331. source: "./media/characters/juliet-a/back.svg",
  29332. extra: 1781 / 1734,
  29333. bottom: 35 / 1810,
  29334. }
  29335. },
  29336. },
  29337. [
  29338. {
  29339. name: "Normal",
  29340. height: math.unit(10, "feet"),
  29341. default: true
  29342. },
  29343. {
  29344. name: "Dragon Form",
  29345. height: math.unit(250, "feet")
  29346. },
  29347. {
  29348. name: "Macro",
  29349. height: math.unit(1000, "feet")
  29350. },
  29351. {
  29352. name: "Megamacro",
  29353. height: math.unit(10000, "feet")
  29354. }
  29355. ]
  29356. ))
  29357. characterMakers.push(() => makeCharacter(
  29358. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29359. {
  29360. regular: {
  29361. height: math.unit(7 + 3 / 12, "feet"),
  29362. weight: math.unit(260, "lb"),
  29363. name: "Regular",
  29364. image: {
  29365. source: "./media/characters/wild/regular.svg",
  29366. extra: 97.45 / 92,
  29367. bottom: 6.8 / 104.3
  29368. }
  29369. },
  29370. biggums: {
  29371. height: math.unit(8 + 6 / 12, "feet"),
  29372. weight: math.unit(425, "lb"),
  29373. name: "Biggums",
  29374. image: {
  29375. source: "./media/characters/wild/biggums.svg",
  29376. extra: 97.45 / 92,
  29377. bottom: 7.5 / 132.34
  29378. }
  29379. },
  29380. mawRegular: {
  29381. height: math.unit(1.24, "feet"),
  29382. name: "Maw (Regular)",
  29383. image: {
  29384. source: "./media/characters/wild/maw.svg"
  29385. }
  29386. },
  29387. mawBiggums: {
  29388. height: math.unit(1.47, "feet"),
  29389. name: "Maw (Biggums)",
  29390. image: {
  29391. source: "./media/characters/wild/maw.svg"
  29392. }
  29393. },
  29394. },
  29395. [
  29396. {
  29397. name: "Normal",
  29398. height: math.unit(7 + 3 / 12, "feet"),
  29399. default: true
  29400. },
  29401. ]
  29402. ))
  29403. characterMakers.push(() => makeCharacter(
  29404. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29405. {
  29406. front: {
  29407. height: math.unit(2.5, "meters"),
  29408. weight: math.unit(200, "kg"),
  29409. name: "Front",
  29410. image: {
  29411. source: "./media/characters/vidar/front.svg",
  29412. extra: 2994 / 2795,
  29413. bottom: 56 / 3061
  29414. }
  29415. },
  29416. back: {
  29417. height: math.unit(2.5, "meters"),
  29418. weight: math.unit(200, "kg"),
  29419. name: "Back",
  29420. image: {
  29421. source: "./media/characters/vidar/back.svg",
  29422. extra: 3131 / 2928,
  29423. bottom: 13.5 / 3141.5
  29424. }
  29425. },
  29426. feral: {
  29427. height: math.unit(2.5, "meters"),
  29428. weight: math.unit(2000, "kg"),
  29429. name: "Feral",
  29430. image: {
  29431. source: "./media/characters/vidar/feral.svg",
  29432. extra: 2790 / 1765,
  29433. bottom: 6 / 2796
  29434. }
  29435. },
  29436. },
  29437. [
  29438. {
  29439. name: "Normal",
  29440. height: math.unit(2.5, "meters"),
  29441. default: true
  29442. },
  29443. {
  29444. name: "Macro",
  29445. height: math.unit(100, "meters")
  29446. },
  29447. ]
  29448. ))
  29449. characterMakers.push(() => makeCharacter(
  29450. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29451. {
  29452. front: {
  29453. height: math.unit(5 + 9 / 12, "feet"),
  29454. weight: math.unit(120, "lb"),
  29455. name: "Front",
  29456. image: {
  29457. source: "./media/characters/ash/front.svg",
  29458. extra: 2189 / 1961,
  29459. bottom: 5.2 / 2194
  29460. }
  29461. },
  29462. },
  29463. [
  29464. {
  29465. name: "Normal",
  29466. height: math.unit(5 + 9 / 12, "feet"),
  29467. default: true
  29468. },
  29469. ]
  29470. ))
  29471. characterMakers.push(() => makeCharacter(
  29472. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29473. {
  29474. front: {
  29475. height: math.unit(9, "feet"),
  29476. weight: math.unit(10000, "lb"),
  29477. name: "Front",
  29478. image: {
  29479. source: "./media/characters/gygabite/front.svg",
  29480. bottom: 31.7 / 537.8,
  29481. extra: 505 / 370
  29482. }
  29483. },
  29484. },
  29485. [
  29486. {
  29487. name: "Normal",
  29488. height: math.unit(9, "feet"),
  29489. default: true
  29490. },
  29491. ]
  29492. ))
  29493. characterMakers.push(() => makeCharacter(
  29494. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29495. {
  29496. front: {
  29497. height: math.unit(12, "feet"),
  29498. weight: math.unit(4000, "lb"),
  29499. name: "Front",
  29500. image: {
  29501. source: "./media/characters/p0tat0/front.svg",
  29502. extra: 1065 / 921,
  29503. bottom: 55.7 / 1121.25
  29504. }
  29505. },
  29506. },
  29507. [
  29508. {
  29509. name: "Normal",
  29510. height: math.unit(12, "feet"),
  29511. default: true
  29512. },
  29513. ]
  29514. ))
  29515. characterMakers.push(() => makeCharacter(
  29516. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29517. {
  29518. side: {
  29519. height: math.unit(6.5, "feet"),
  29520. weight: math.unit(800, "lb"),
  29521. name: "Side",
  29522. image: {
  29523. source: "./media/characters/dusk/side.svg",
  29524. extra: 615 / 373,
  29525. bottom: 53 / 664
  29526. }
  29527. },
  29528. sitting: {
  29529. height: math.unit(7, "feet"),
  29530. weight: math.unit(800, "lb"),
  29531. name: "Sitting",
  29532. image: {
  29533. source: "./media/characters/dusk/sitting.svg",
  29534. extra: 753 / 425,
  29535. bottom: 33 / 774
  29536. }
  29537. },
  29538. head: {
  29539. height: math.unit(6.1, "feet"),
  29540. name: "Head",
  29541. image: {
  29542. source: "./media/characters/dusk/head.svg"
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Normal",
  29549. height: math.unit(7, "feet"),
  29550. default: true
  29551. },
  29552. ]
  29553. ))
  29554. characterMakers.push(() => makeCharacter(
  29555. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29556. {
  29557. front: {
  29558. height: math.unit(15, "feet"),
  29559. weight: math.unit(7000, "lb"),
  29560. name: "Front",
  29561. image: {
  29562. source: "./media/characters/jay-direwolf/front.svg",
  29563. extra: 1810 / 1732,
  29564. bottom: 66 / 1892
  29565. }
  29566. },
  29567. },
  29568. [
  29569. {
  29570. name: "Normal",
  29571. height: math.unit(15, "feet"),
  29572. default: true
  29573. },
  29574. ]
  29575. ))
  29576. characterMakers.push(() => makeCharacter(
  29577. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29578. {
  29579. front: {
  29580. height: math.unit(4 + 9 / 12, "feet"),
  29581. weight: math.unit(130, "lb"),
  29582. name: "Front",
  29583. image: {
  29584. source: "./media/characters/anchovie/front.svg",
  29585. extra: 382 / 350,
  29586. bottom: 25 / 409
  29587. }
  29588. },
  29589. back: {
  29590. height: math.unit(4 + 9 / 12, "feet"),
  29591. weight: math.unit(130, "lb"),
  29592. name: "Back",
  29593. image: {
  29594. source: "./media/characters/anchovie/back.svg",
  29595. extra: 385 / 352,
  29596. bottom: 16.6 / 402
  29597. }
  29598. },
  29599. frontDressed: {
  29600. height: math.unit(4 + 9 / 12, "feet"),
  29601. weight: math.unit(130, "lb"),
  29602. name: "Front (Dressed)",
  29603. image: {
  29604. source: "./media/characters/anchovie/front-dressed.svg",
  29605. extra: 382 / 350,
  29606. bottom: 25 / 409
  29607. }
  29608. },
  29609. backDressed: {
  29610. height: math.unit(4 + 9 / 12, "feet"),
  29611. weight: math.unit(130, "lb"),
  29612. name: "Back (Dressed)",
  29613. image: {
  29614. source: "./media/characters/anchovie/back-dressed.svg",
  29615. extra: 385 / 352,
  29616. bottom: 16.6 / 402
  29617. }
  29618. },
  29619. },
  29620. [
  29621. {
  29622. name: "Micro",
  29623. height: math.unit(6.4, "inches")
  29624. },
  29625. {
  29626. name: "Normal",
  29627. height: math.unit(4 + 9 / 12, "feet"),
  29628. default: true
  29629. },
  29630. ]
  29631. ))
  29632. characterMakers.push(() => makeCharacter(
  29633. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29634. {
  29635. front: {
  29636. height: math.unit(2, "meters"),
  29637. weight: math.unit(180, "lb"),
  29638. name: "Front",
  29639. image: {
  29640. source: "./media/characters/acidrenamon/front.svg",
  29641. extra: 987 / 890,
  29642. bottom: 22.8 / 1009
  29643. }
  29644. },
  29645. back: {
  29646. height: math.unit(2, "meters"),
  29647. weight: math.unit(180, "lb"),
  29648. name: "Back",
  29649. image: {
  29650. source: "./media/characters/acidrenamon/back.svg",
  29651. extra: 983 / 891,
  29652. bottom: 8.4 / 992
  29653. }
  29654. },
  29655. head: {
  29656. height: math.unit(1.92, "feet"),
  29657. name: "Head",
  29658. image: {
  29659. source: "./media/characters/acidrenamon/head.svg"
  29660. }
  29661. },
  29662. rump: {
  29663. height: math.unit(1.72, "feet"),
  29664. name: "Rump",
  29665. image: {
  29666. source: "./media/characters/acidrenamon/rump.svg"
  29667. }
  29668. },
  29669. tail: {
  29670. height: math.unit(4.2, "feet"),
  29671. name: "Tail",
  29672. image: {
  29673. source: "./media/characters/acidrenamon/tail.svg"
  29674. }
  29675. },
  29676. },
  29677. [
  29678. {
  29679. name: "Normal",
  29680. height: math.unit(2, "meters"),
  29681. default: true
  29682. },
  29683. {
  29684. name: "Minimacro",
  29685. height: math.unit(7, "meters")
  29686. },
  29687. {
  29688. name: "Macro",
  29689. height: math.unit(200, "meters")
  29690. },
  29691. {
  29692. name: "Gigamacro",
  29693. height: math.unit(0.2, "earths")
  29694. },
  29695. ]
  29696. ))
  29697. characterMakers.push(() => makeCharacter(
  29698. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29699. {
  29700. front: {
  29701. height: math.unit(152, "feet"),
  29702. name: "Front",
  29703. image: {
  29704. source: "./media/characters/kenzie-lee/front.svg",
  29705. extra: 1869/1774,
  29706. bottom: 128/1997
  29707. }
  29708. },
  29709. side: {
  29710. height: math.unit(86, "feet"),
  29711. name: "Side",
  29712. image: {
  29713. source: "./media/characters/kenzie-lee/side.svg",
  29714. extra: 930/815,
  29715. bottom: 177/1107
  29716. }
  29717. },
  29718. paw: {
  29719. height: math.unit(15, "feet"),
  29720. name: "Paw",
  29721. image: {
  29722. source: "./media/characters/kenzie-lee/paw.svg"
  29723. }
  29724. },
  29725. },
  29726. [
  29727. {
  29728. name: "Kenzie Flea",
  29729. height: math.unit(2, "mm"),
  29730. default: true
  29731. },
  29732. {
  29733. name: "Micro",
  29734. height: math.unit(2, "inches")
  29735. },
  29736. {
  29737. name: "Normal",
  29738. height: math.unit(152, "feet")
  29739. },
  29740. {
  29741. name: "Megamacro",
  29742. height: math.unit(7, "miles")
  29743. },
  29744. {
  29745. name: "Gigamacro",
  29746. height: math.unit(8000, "miles")
  29747. },
  29748. ]
  29749. ))
  29750. characterMakers.push(() => makeCharacter(
  29751. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29752. {
  29753. front: {
  29754. height: math.unit(6, "feet"),
  29755. name: "Front",
  29756. image: {
  29757. source: "./media/characters/withers/front.svg",
  29758. extra: 1935/1760,
  29759. bottom: 72/2007
  29760. }
  29761. },
  29762. back: {
  29763. height: math.unit(6, "feet"),
  29764. name: "Back",
  29765. image: {
  29766. source: "./media/characters/withers/back.svg",
  29767. extra: 1944/1792,
  29768. bottom: 12/1956
  29769. }
  29770. },
  29771. dressed: {
  29772. height: math.unit(6, "feet"),
  29773. name: "Dressed",
  29774. image: {
  29775. source: "./media/characters/withers/dressed.svg",
  29776. extra: 1937/1765,
  29777. bottom: 73/2010
  29778. }
  29779. },
  29780. phase1: {
  29781. height: math.unit(1.1, "feet"),
  29782. name: "Phase 1",
  29783. image: {
  29784. source: "./media/characters/withers/phase-1.svg",
  29785. extra: 1885/1232,
  29786. bottom: 0/1885
  29787. }
  29788. },
  29789. phase2: {
  29790. height: math.unit(1.05, "feet"),
  29791. name: "Phase 2",
  29792. image: {
  29793. source: "./media/characters/withers/phase-2.svg",
  29794. extra: 1792/1090,
  29795. bottom: 0/1792
  29796. }
  29797. },
  29798. partyWipe: {
  29799. height: math.unit(1.1, "feet"),
  29800. name: "Party Wipe",
  29801. image: {
  29802. source: "./media/characters/withers/party-wipe.svg",
  29803. extra: 1864/1207,
  29804. bottom: 0/1864
  29805. }
  29806. },
  29807. },
  29808. [
  29809. {
  29810. name: "Macro",
  29811. height: math.unit(167, "feet"),
  29812. default: true
  29813. },
  29814. {
  29815. name: "Megamacro",
  29816. height: math.unit(15, "miles")
  29817. }
  29818. ]
  29819. ))
  29820. characterMakers.push(() => makeCharacter(
  29821. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29822. {
  29823. front: {
  29824. height: math.unit(6 + 7 / 12, "feet"),
  29825. weight: math.unit(250, "lb"),
  29826. name: "Front",
  29827. image: {
  29828. source: "./media/characters/nemoskii/front.svg",
  29829. extra: 2270 / 1734,
  29830. bottom: 86 / 2354
  29831. }
  29832. },
  29833. back: {
  29834. height: math.unit(6 + 7 / 12, "feet"),
  29835. weight: math.unit(250, "lb"),
  29836. name: "Back",
  29837. image: {
  29838. source: "./media/characters/nemoskii/back.svg",
  29839. extra: 1845 / 1788,
  29840. bottom: 10.5 / 1852
  29841. }
  29842. },
  29843. head: {
  29844. height: math.unit(1.31, "feet"),
  29845. name: "Head",
  29846. image: {
  29847. source: "./media/characters/nemoskii/head.svg"
  29848. }
  29849. },
  29850. },
  29851. [
  29852. {
  29853. name: "Micro",
  29854. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29855. },
  29856. {
  29857. name: "Normal",
  29858. height: math.unit(6 + 7 / 12, "feet"),
  29859. default: true
  29860. },
  29861. {
  29862. name: "Macro",
  29863. height: math.unit((6 + 7 / 12) * 150, "feet")
  29864. },
  29865. {
  29866. name: "Macro+",
  29867. height: math.unit((6 + 7 / 12) * 500, "feet")
  29868. },
  29869. {
  29870. name: "Megamacro",
  29871. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29872. },
  29873. ]
  29874. ))
  29875. characterMakers.push(() => makeCharacter(
  29876. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29877. {
  29878. front: {
  29879. height: math.unit(1, "mile"),
  29880. weight: math.unit(265261.9, "lb"),
  29881. name: "Front",
  29882. image: {
  29883. source: "./media/characters/shui/front.svg",
  29884. extra: 1633 / 1564,
  29885. bottom: 91.5 / 1726
  29886. }
  29887. },
  29888. },
  29889. [
  29890. {
  29891. name: "Macro",
  29892. height: math.unit(1, "mile"),
  29893. default: true
  29894. },
  29895. ]
  29896. ))
  29897. characterMakers.push(() => makeCharacter(
  29898. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29899. {
  29900. front: {
  29901. height: math.unit(12 + 6 / 12, "feet"),
  29902. weight: math.unit(1342, "lb"),
  29903. name: "Front",
  29904. image: {
  29905. source: "./media/characters/arokh-takakura/front.svg",
  29906. extra: 1089 / 1043,
  29907. bottom: 77.4 / 1176.7
  29908. }
  29909. },
  29910. back: {
  29911. height: math.unit(12 + 6 / 12, "feet"),
  29912. weight: math.unit(1342, "lb"),
  29913. name: "Back",
  29914. image: {
  29915. source: "./media/characters/arokh-takakura/back.svg",
  29916. extra: 1046 / 1019,
  29917. bottom: 102 / 1150
  29918. }
  29919. },
  29920. },
  29921. [
  29922. {
  29923. name: "Big",
  29924. height: math.unit(12 + 6 / 12, "feet"),
  29925. default: true
  29926. },
  29927. ]
  29928. ))
  29929. characterMakers.push(() => makeCharacter(
  29930. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29931. {
  29932. front: {
  29933. height: math.unit(5 + 6 / 12, "feet"),
  29934. weight: math.unit(150, "lb"),
  29935. name: "Front",
  29936. image: {
  29937. source: "./media/characters/theo/front.svg",
  29938. extra: 1184 / 1131,
  29939. bottom: 7.4 / 1191
  29940. }
  29941. },
  29942. },
  29943. [
  29944. {
  29945. name: "Micro",
  29946. height: math.unit(5, "inches")
  29947. },
  29948. {
  29949. name: "Normal",
  29950. height: math.unit(5 + 6 / 12, "feet"),
  29951. default: true
  29952. },
  29953. ]
  29954. ))
  29955. characterMakers.push(() => makeCharacter(
  29956. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29957. {
  29958. front: {
  29959. height: math.unit(5 + 9 / 12, "feet"),
  29960. weight: math.unit(130, "lb"),
  29961. name: "Front",
  29962. image: {
  29963. source: "./media/characters/cecelia-swift/front.svg",
  29964. extra: 502 / 484,
  29965. bottom: 23 / 523
  29966. }
  29967. },
  29968. back: {
  29969. height: math.unit(5 + 9 / 12, "feet"),
  29970. weight: math.unit(130, "lb"),
  29971. name: "Back",
  29972. image: {
  29973. source: "./media/characters/cecelia-swift/back.svg",
  29974. extra: 499 / 485,
  29975. bottom: 12 / 511
  29976. }
  29977. },
  29978. head: {
  29979. height: math.unit(0.90, "feet"),
  29980. name: "Head",
  29981. image: {
  29982. source: "./media/characters/cecelia-swift/head.svg"
  29983. }
  29984. },
  29985. rump: {
  29986. height: math.unit(1.75, "feet"),
  29987. name: "Rump",
  29988. image: {
  29989. source: "./media/characters/cecelia-swift/rump.svg"
  29990. }
  29991. },
  29992. },
  29993. [
  29994. {
  29995. name: "Normal",
  29996. height: math.unit(5 + 9 / 12, "feet"),
  29997. default: true
  29998. },
  29999. {
  30000. name: "Big",
  30001. height: math.unit(50, "feet")
  30002. },
  30003. {
  30004. name: "Macro",
  30005. height: math.unit(100, "feet")
  30006. },
  30007. {
  30008. name: "Macro+",
  30009. height: math.unit(500, "feet")
  30010. },
  30011. {
  30012. name: "Macro++",
  30013. height: math.unit(1000, "feet")
  30014. },
  30015. ]
  30016. ))
  30017. characterMakers.push(() => makeCharacter(
  30018. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30019. {
  30020. front: {
  30021. height: math.unit(6, "feet"),
  30022. weight: math.unit(150, "lb"),
  30023. name: "Front",
  30024. image: {
  30025. source: "./media/characters/kaunan/front.svg",
  30026. extra: 2890 / 2523,
  30027. bottom: 49 / 2939
  30028. }
  30029. },
  30030. },
  30031. [
  30032. {
  30033. name: "Macro",
  30034. height: math.unit(150, "feet"),
  30035. default: true
  30036. },
  30037. ]
  30038. ))
  30039. characterMakers.push(() => makeCharacter(
  30040. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30041. {
  30042. dressed: {
  30043. height: math.unit(175, "cm"),
  30044. weight: math.unit(60, "kg"),
  30045. name: "Dressed",
  30046. image: {
  30047. source: "./media/characters/fei/dressed.svg",
  30048. extra: 1402/1278,
  30049. bottom: 27/1429
  30050. }
  30051. },
  30052. nude: {
  30053. height: math.unit(175, "cm"),
  30054. weight: math.unit(60, "kg"),
  30055. name: "Nude",
  30056. image: {
  30057. source: "./media/characters/fei/nude.svg",
  30058. extra: 1402/1278,
  30059. bottom: 27/1429
  30060. }
  30061. },
  30062. heels: {
  30063. height: math.unit(0.466, "feet"),
  30064. name: "Heels",
  30065. image: {
  30066. source: "./media/characters/fei/heels.svg",
  30067. extra: 156/152,
  30068. bottom: 28/184
  30069. }
  30070. },
  30071. },
  30072. [
  30073. {
  30074. name: "Mortal",
  30075. height: math.unit(175, "cm")
  30076. },
  30077. {
  30078. name: "Normal",
  30079. height: math.unit(3500, "m")
  30080. },
  30081. {
  30082. name: "Stroll",
  30083. height: math.unit(18.4, "km"),
  30084. default: true
  30085. },
  30086. {
  30087. name: "Showoff",
  30088. height: math.unit(175, "km")
  30089. },
  30090. ]
  30091. ))
  30092. characterMakers.push(() => makeCharacter(
  30093. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30094. {
  30095. front: {
  30096. height: math.unit(7, "feet"),
  30097. weight: math.unit(1000, "kg"),
  30098. name: "Front",
  30099. image: {
  30100. source: "./media/characters/edrax/front.svg",
  30101. extra: 2838 / 2550,
  30102. bottom: 130 / 2968
  30103. }
  30104. },
  30105. },
  30106. [
  30107. {
  30108. name: "Small",
  30109. height: math.unit(7, "feet")
  30110. },
  30111. {
  30112. name: "Normal",
  30113. height: math.unit(1500, "meters")
  30114. },
  30115. {
  30116. name: "Mega",
  30117. height: math.unit(12000000, "km"),
  30118. default: true
  30119. },
  30120. {
  30121. name: "Megamacro",
  30122. height: math.unit(10600000, "lightyears")
  30123. },
  30124. {
  30125. name: "Hypermacro",
  30126. height: math.unit(256, "yottameters")
  30127. },
  30128. ]
  30129. ))
  30130. characterMakers.push(() => makeCharacter(
  30131. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30132. {
  30133. front: {
  30134. height: math.unit(10, "feet"),
  30135. weight: math.unit(750, "lb"),
  30136. name: "Front",
  30137. image: {
  30138. source: "./media/characters/clove/front.svg",
  30139. extra: 1918/1751,
  30140. bottom: 52/1970
  30141. }
  30142. },
  30143. back: {
  30144. height: math.unit(10, "feet"),
  30145. weight: math.unit(750, "lb"),
  30146. name: "Back",
  30147. image: {
  30148. source: "./media/characters/clove/back.svg",
  30149. extra: 1912/1747,
  30150. bottom: 50/1962
  30151. }
  30152. },
  30153. },
  30154. [
  30155. {
  30156. name: "Normal",
  30157. height: math.unit(10, "feet"),
  30158. default: true
  30159. },
  30160. ]
  30161. ))
  30162. characterMakers.push(() => makeCharacter(
  30163. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30164. {
  30165. front: {
  30166. height: math.unit(4, "feet"),
  30167. weight: math.unit(50, "lb"),
  30168. name: "Front",
  30169. image: {
  30170. source: "./media/characters/alex-rabbit/front.svg",
  30171. extra: 507 / 458,
  30172. bottom: 18.5 / 527
  30173. }
  30174. },
  30175. back: {
  30176. height: math.unit(4, "feet"),
  30177. weight: math.unit(50, "lb"),
  30178. name: "Back",
  30179. image: {
  30180. source: "./media/characters/alex-rabbit/back.svg",
  30181. extra: 502 / 460,
  30182. bottom: 18.9 / 521
  30183. }
  30184. },
  30185. },
  30186. [
  30187. {
  30188. name: "Normal",
  30189. height: math.unit(4, "feet"),
  30190. default: true
  30191. },
  30192. ]
  30193. ))
  30194. characterMakers.push(() => makeCharacter(
  30195. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30196. {
  30197. front: {
  30198. height: math.unit(1 + 3 / 12, "feet"),
  30199. weight: math.unit(80, "lb"),
  30200. name: "Front",
  30201. image: {
  30202. source: "./media/characters/zander-rose/front.svg",
  30203. extra: 916 / 797,
  30204. bottom: 17 / 933
  30205. }
  30206. },
  30207. back: {
  30208. height: math.unit(1 + 3 / 12, "feet"),
  30209. weight: math.unit(80, "lb"),
  30210. name: "Back",
  30211. image: {
  30212. source: "./media/characters/zander-rose/back.svg",
  30213. extra: 903 / 779,
  30214. bottom: 31 / 934
  30215. }
  30216. },
  30217. },
  30218. [
  30219. {
  30220. name: "Normal",
  30221. height: math.unit(1 + 3 / 12, "feet"),
  30222. default: true
  30223. },
  30224. ]
  30225. ))
  30226. characterMakers.push(() => makeCharacter(
  30227. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30228. {
  30229. anthro: {
  30230. height: math.unit(6, "feet"),
  30231. weight: math.unit(150, "lb"),
  30232. name: "Anthro",
  30233. image: {
  30234. source: "./media/characters/razz/anthro.svg",
  30235. extra: 1437 / 1343,
  30236. bottom: 48 / 1485
  30237. }
  30238. },
  30239. feral: {
  30240. height: math.unit(6, "feet"),
  30241. weight: math.unit(150, "lb"),
  30242. name: "Feral",
  30243. image: {
  30244. source: "./media/characters/razz/feral.svg",
  30245. extra: 2569 / 1385,
  30246. bottom: 95 / 2664
  30247. }
  30248. },
  30249. },
  30250. [
  30251. {
  30252. name: "Normal",
  30253. height: math.unit(6, "feet"),
  30254. default: true
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(9 + 4 / 12, "feet"),
  30263. weight: math.unit(500, "lb"),
  30264. name: "Front",
  30265. image: {
  30266. source: "./media/characters/morrigan/front.svg",
  30267. extra: 2707 / 2579,
  30268. bottom: 156 / 2863
  30269. }
  30270. },
  30271. },
  30272. [
  30273. {
  30274. name: "Normal",
  30275. height: math.unit(9 + 4 / 12, "feet"),
  30276. default: true
  30277. },
  30278. ]
  30279. ))
  30280. characterMakers.push(() => makeCharacter(
  30281. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30282. {
  30283. front: {
  30284. height: math.unit(5, "stories"),
  30285. weight: math.unit(4000, "lb"),
  30286. name: "Front",
  30287. image: {
  30288. source: "./media/characters/jenene/front.svg",
  30289. extra: 1780 / 1710,
  30290. bottom: 57 / 1837
  30291. }
  30292. },
  30293. },
  30294. [
  30295. {
  30296. name: "Normal",
  30297. height: math.unit(5, "stories"),
  30298. default: true
  30299. },
  30300. ]
  30301. ))
  30302. characterMakers.push(() => makeCharacter(
  30303. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30304. {
  30305. taurSfw: {
  30306. height: math.unit(10, "meters"),
  30307. weight: math.unit(17500, "kg"),
  30308. name: "Taur",
  30309. image: {
  30310. source: "./media/characters/faey/taur-sfw.svg",
  30311. extra: 1200 / 968,
  30312. bottom: 41 / 1241
  30313. }
  30314. },
  30315. chestmaw: {
  30316. height: math.unit(2.01, "meters"),
  30317. name: "Chestmaw",
  30318. image: {
  30319. source: "./media/characters/faey/chestmaw.svg"
  30320. }
  30321. },
  30322. foot: {
  30323. height: math.unit(2.43, "meters"),
  30324. name: "Foot",
  30325. image: {
  30326. source: "./media/characters/faey/foot.svg"
  30327. }
  30328. },
  30329. jaws: {
  30330. height: math.unit(1.66, "meters"),
  30331. name: "Jaws",
  30332. image: {
  30333. source: "./media/characters/faey/jaws.svg"
  30334. }
  30335. },
  30336. tongues: {
  30337. height: math.unit(2.01, "meters"),
  30338. name: "Tongues",
  30339. image: {
  30340. source: "./media/characters/faey/tongues.svg"
  30341. }
  30342. },
  30343. },
  30344. [
  30345. {
  30346. name: "Small",
  30347. height: math.unit(10, "meters"),
  30348. default: true
  30349. },
  30350. {
  30351. name: "Big",
  30352. height: math.unit(500000, "km")
  30353. },
  30354. ]
  30355. ))
  30356. characterMakers.push(() => makeCharacter(
  30357. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30358. {
  30359. front: {
  30360. height: math.unit(7, "feet"),
  30361. weight: math.unit(275, "lb"),
  30362. name: "Front",
  30363. image: {
  30364. source: "./media/characters/roku/front.svg",
  30365. extra: 903 / 878,
  30366. bottom: 37 / 940
  30367. }
  30368. },
  30369. },
  30370. [
  30371. {
  30372. name: "Normal",
  30373. height: math.unit(7, "feet"),
  30374. default: true
  30375. },
  30376. {
  30377. name: "Macro",
  30378. height: math.unit(500, "feet")
  30379. },
  30380. {
  30381. name: "Megamacro",
  30382. height: math.unit(200, "miles")
  30383. },
  30384. ]
  30385. ))
  30386. characterMakers.push(() => makeCharacter(
  30387. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30388. {
  30389. front: {
  30390. height: math.unit(6 + 2 / 12, "feet"),
  30391. weight: math.unit(150, "lb"),
  30392. name: "Front",
  30393. image: {
  30394. source: "./media/characters/lira/front.svg",
  30395. extra: 1727 / 1605,
  30396. bottom: 26 / 1753
  30397. }
  30398. },
  30399. back: {
  30400. height: math.unit(6 + 2 / 12, "feet"),
  30401. weight: math.unit(150, "lb"),
  30402. name: "Back",
  30403. image: {
  30404. source: "./media/characters/lira/back.svg",
  30405. extra: 1713/1621,
  30406. bottom: 20/1733
  30407. }
  30408. },
  30409. hand: {
  30410. height: math.unit(0.75, "feet"),
  30411. name: "Hand",
  30412. image: {
  30413. source: "./media/characters/lira/hand.svg"
  30414. }
  30415. },
  30416. maw: {
  30417. height: math.unit(0.65, "feet"),
  30418. name: "Maw",
  30419. image: {
  30420. source: "./media/characters/lira/maw.svg"
  30421. }
  30422. },
  30423. pawDigi: {
  30424. height: math.unit(1.6, "feet"),
  30425. name: "Paw Digi",
  30426. image: {
  30427. source: "./media/characters/lira/paw-digi.svg"
  30428. }
  30429. },
  30430. pawPlanti: {
  30431. height: math.unit(1.4, "feet"),
  30432. name: "Paw Planti",
  30433. image: {
  30434. source: "./media/characters/lira/paw-planti.svg"
  30435. }
  30436. },
  30437. },
  30438. [
  30439. {
  30440. name: "Normal",
  30441. height: math.unit(6 + 2 / 12, "feet"),
  30442. default: true
  30443. },
  30444. {
  30445. name: "Macro",
  30446. height: math.unit(100, "feet")
  30447. },
  30448. {
  30449. name: "Macro²",
  30450. height: math.unit(1600, "feet")
  30451. },
  30452. {
  30453. name: "Planetary",
  30454. height: math.unit(20, "earths")
  30455. },
  30456. ]
  30457. ))
  30458. characterMakers.push(() => makeCharacter(
  30459. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30460. {
  30461. front: {
  30462. height: math.unit(6, "feet"),
  30463. weight: math.unit(150, "lb"),
  30464. name: "Front",
  30465. image: {
  30466. source: "./media/characters/hadjet/front.svg",
  30467. extra: 1480 / 1346,
  30468. bottom: 26 / 1506
  30469. }
  30470. },
  30471. frontNsfw: {
  30472. height: math.unit(6, "feet"),
  30473. weight: math.unit(150, "lb"),
  30474. name: "Front (NSFW)",
  30475. image: {
  30476. source: "./media/characters/hadjet/front-nsfw.svg",
  30477. extra: 1440 / 1358,
  30478. bottom: 52 / 1492
  30479. }
  30480. },
  30481. },
  30482. [
  30483. {
  30484. name: "Macro",
  30485. height: math.unit(10, "stories"),
  30486. default: true
  30487. },
  30488. {
  30489. name: "Megamacro",
  30490. height: math.unit(1.5, "miles")
  30491. },
  30492. {
  30493. name: "Megamacro+",
  30494. height: math.unit(5, "miles")
  30495. },
  30496. ]
  30497. ))
  30498. characterMakers.push(() => makeCharacter(
  30499. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30500. {
  30501. side: {
  30502. height: math.unit(106, "feet"),
  30503. weight: math.unit(500, "tonnes"),
  30504. name: "Side",
  30505. image: {
  30506. source: "./media/characters/kodran/side.svg",
  30507. extra: 553 / 480,
  30508. bottom: 33 / 586
  30509. }
  30510. },
  30511. front: {
  30512. height: math.unit(132, "feet"),
  30513. weight: math.unit(500, "tonnes"),
  30514. name: "Front",
  30515. image: {
  30516. source: "./media/characters/kodran/front.svg",
  30517. extra: 667 / 643,
  30518. bottom: 42 / 709
  30519. }
  30520. },
  30521. flying: {
  30522. height: math.unit(350, "feet"),
  30523. weight: math.unit(500, "tonnes"),
  30524. name: "Flying",
  30525. image: {
  30526. source: "./media/characters/kodran/flying.svg"
  30527. }
  30528. },
  30529. foot: {
  30530. height: math.unit(33, "feet"),
  30531. name: "Foot",
  30532. image: {
  30533. source: "./media/characters/kodran/foot.svg"
  30534. }
  30535. },
  30536. footFront: {
  30537. height: math.unit(19, "feet"),
  30538. name: "Foot (Front)",
  30539. image: {
  30540. source: "./media/characters/kodran/foot-front.svg",
  30541. extra: 261 / 261,
  30542. bottom: 91 / 352
  30543. }
  30544. },
  30545. headFront: {
  30546. height: math.unit(53, "feet"),
  30547. name: "Head (Front)",
  30548. image: {
  30549. source: "./media/characters/kodran/head-front.svg"
  30550. }
  30551. },
  30552. headSide: {
  30553. height: math.unit(65, "feet"),
  30554. name: "Head (Side)",
  30555. image: {
  30556. source: "./media/characters/kodran/head-side.svg"
  30557. }
  30558. },
  30559. throat: {
  30560. height: math.unit(79, "feet"),
  30561. name: "Throat",
  30562. image: {
  30563. source: "./media/characters/kodran/throat.svg"
  30564. }
  30565. },
  30566. },
  30567. [
  30568. {
  30569. name: "Large",
  30570. height: math.unit(106, "feet"),
  30571. default: true
  30572. },
  30573. ]
  30574. ))
  30575. characterMakers.push(() => makeCharacter(
  30576. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30577. {
  30578. side: {
  30579. height: math.unit(11, "feet"),
  30580. weight: math.unit(150, "lb"),
  30581. name: "Side",
  30582. image: {
  30583. source: "./media/characters/pyxaron/side.svg",
  30584. extra: 305 / 195,
  30585. bottom: 17 / 322
  30586. }
  30587. },
  30588. },
  30589. [
  30590. {
  30591. name: "Normal",
  30592. height: math.unit(11, "feet"),
  30593. default: true
  30594. },
  30595. ]
  30596. ))
  30597. characterMakers.push(() => makeCharacter(
  30598. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30599. {
  30600. front: {
  30601. height: math.unit(6, "feet"),
  30602. weight: math.unit(150, "lb"),
  30603. name: "Front",
  30604. image: {
  30605. source: "./media/characters/meep/front.svg",
  30606. extra: 88 / 80,
  30607. bottom: 6 / 94
  30608. }
  30609. },
  30610. },
  30611. [
  30612. {
  30613. name: "Fun Sized",
  30614. height: math.unit(2, "inches"),
  30615. default: true
  30616. },
  30617. {
  30618. name: "Friend Sized",
  30619. height: math.unit(8, "inches")
  30620. },
  30621. ]
  30622. ))
  30623. characterMakers.push(() => makeCharacter(
  30624. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30625. {
  30626. front: {
  30627. height: math.unit(15, "feet"),
  30628. weight: math.unit(2500, "lb"),
  30629. name: "Front",
  30630. image: {
  30631. source: "./media/characters/holly-rabbit/front.svg",
  30632. extra: 1433 / 1233,
  30633. bottom: 125 / 1558
  30634. }
  30635. },
  30636. dick: {
  30637. height: math.unit(4.6, "feet"),
  30638. name: "Dick",
  30639. image: {
  30640. source: "./media/characters/holly-rabbit/dick.svg"
  30641. }
  30642. },
  30643. },
  30644. [
  30645. {
  30646. name: "Normal",
  30647. height: math.unit(15, "feet"),
  30648. default: true
  30649. },
  30650. {
  30651. name: "Macro",
  30652. height: math.unit(250, "feet")
  30653. },
  30654. {
  30655. name: "Macro+",
  30656. height: math.unit(2500, "feet")
  30657. },
  30658. ]
  30659. ))
  30660. characterMakers.push(() => makeCharacter(
  30661. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30662. {
  30663. front: {
  30664. height: math.unit(3.02, "meters"),
  30665. weight: math.unit(500, "kg"),
  30666. name: "Front",
  30667. image: {
  30668. source: "./media/characters/drena/front.svg",
  30669. extra: 282 / 243,
  30670. bottom: 8 / 290
  30671. }
  30672. },
  30673. side: {
  30674. height: math.unit(3.02, "meters"),
  30675. weight: math.unit(500, "kg"),
  30676. name: "Side",
  30677. image: {
  30678. source: "./media/characters/drena/side.svg",
  30679. extra: 280 / 245,
  30680. bottom: 10 / 290
  30681. }
  30682. },
  30683. back: {
  30684. height: math.unit(3.02, "meters"),
  30685. weight: math.unit(500, "kg"),
  30686. name: "Back",
  30687. image: {
  30688. source: "./media/characters/drena/back.svg",
  30689. extra: 278 / 243,
  30690. bottom: 2 / 280
  30691. }
  30692. },
  30693. foot: {
  30694. height: math.unit(0.75, "meters"),
  30695. name: "Foot",
  30696. image: {
  30697. source: "./media/characters/drena/foot.svg"
  30698. }
  30699. },
  30700. maw: {
  30701. height: math.unit(0.82, "meters"),
  30702. name: "Maw",
  30703. image: {
  30704. source: "./media/characters/drena/maw.svg"
  30705. }
  30706. },
  30707. eating: {
  30708. height: math.unit(0.75, "meters"),
  30709. name: "Eating",
  30710. image: {
  30711. source: "./media/characters/drena/eating.svg"
  30712. }
  30713. },
  30714. rump: {
  30715. height: math.unit(0.93, "meters"),
  30716. name: "Rump",
  30717. image: {
  30718. source: "./media/characters/drena/rump.svg"
  30719. }
  30720. },
  30721. },
  30722. [
  30723. {
  30724. name: "Normal",
  30725. height: math.unit(3.02, "meters"),
  30726. default: true
  30727. },
  30728. ]
  30729. ))
  30730. characterMakers.push(() => makeCharacter(
  30731. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30732. {
  30733. front: {
  30734. height: math.unit(6 + 4 / 12, "feet"),
  30735. weight: math.unit(250, "lb"),
  30736. name: "Front",
  30737. image: {
  30738. source: "./media/characters/remmyzilla/front.svg",
  30739. extra: 4033 / 3588,
  30740. bottom: 123 / 4156
  30741. }
  30742. },
  30743. back: {
  30744. height: math.unit(6 + 4 / 12, "feet"),
  30745. weight: math.unit(250, "lb"),
  30746. name: "Back",
  30747. image: {
  30748. source: "./media/characters/remmyzilla/back.svg",
  30749. extra: 2687 / 2555,
  30750. bottom: 48 / 2735
  30751. }
  30752. },
  30753. paw: {
  30754. height: math.unit(1.73, "feet"),
  30755. name: "Paw",
  30756. image: {
  30757. source: "./media/characters/remmyzilla/paw.svg"
  30758. },
  30759. extraAttributes: {
  30760. "toeSize": {
  30761. name: "Toe Size",
  30762. power: 2,
  30763. type: "area",
  30764. base: math.unit(0.0035, "m^2")
  30765. },
  30766. "padSize": {
  30767. name: "Pad Size",
  30768. power: 2,
  30769. type: "area",
  30770. base: math.unit(0.015, "m^2")
  30771. },
  30772. "pawsize": {
  30773. name: "Paw Size",
  30774. power: 2,
  30775. type: "area",
  30776. base: math.unit(0.072, "m^2")
  30777. },
  30778. }
  30779. },
  30780. maw: {
  30781. height: math.unit(1.73, "feet"),
  30782. name: "Maw",
  30783. image: {
  30784. source: "./media/characters/remmyzilla/maw.svg"
  30785. }
  30786. },
  30787. },
  30788. [
  30789. {
  30790. name: "Normal",
  30791. height: math.unit(6 + 4 / 12, "feet")
  30792. },
  30793. {
  30794. name: "Minimacro",
  30795. height: math.unit(12 + 8 / 12, "feet")
  30796. },
  30797. {
  30798. name: "Normal",
  30799. height: math.unit(640, "feet"),
  30800. default: true
  30801. },
  30802. {
  30803. name: "Megamacro",
  30804. height: math.unit(6400, "feet")
  30805. },
  30806. {
  30807. name: "Gigamacro",
  30808. height: math.unit(64000, "miles")
  30809. },
  30810. ]
  30811. ))
  30812. characterMakers.push(() => makeCharacter(
  30813. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30814. {
  30815. front: {
  30816. height: math.unit(2.5, "meters"),
  30817. weight: math.unit(300, "lb"),
  30818. name: "Front",
  30819. image: {
  30820. source: "./media/characters/lawrence/front.svg",
  30821. extra: 357 / 335,
  30822. bottom: 30 / 387
  30823. }
  30824. },
  30825. back: {
  30826. height: math.unit(2.5, "meters"),
  30827. weight: math.unit(300, "lb"),
  30828. name: "Back",
  30829. image: {
  30830. source: "./media/characters/lawrence/back.svg",
  30831. extra: 357 / 338,
  30832. bottom: 16 / 373
  30833. }
  30834. },
  30835. head: {
  30836. height: math.unit(0.9, "meter"),
  30837. name: "Head",
  30838. image: {
  30839. source: "./media/characters/lawrence/head.svg"
  30840. }
  30841. },
  30842. maw: {
  30843. height: math.unit(0.7, "meter"),
  30844. name: "Maw",
  30845. image: {
  30846. source: "./media/characters/lawrence/maw.svg"
  30847. }
  30848. },
  30849. footBottom: {
  30850. height: math.unit(0.5, "meter"),
  30851. name: "Foot (Bottom)",
  30852. image: {
  30853. source: "./media/characters/lawrence/foot-bottom.svg"
  30854. }
  30855. },
  30856. footTop: {
  30857. height: math.unit(0.5, "meter"),
  30858. name: "Foot (Top)",
  30859. image: {
  30860. source: "./media/characters/lawrence/foot-top.svg"
  30861. }
  30862. },
  30863. },
  30864. [
  30865. {
  30866. name: "Normal",
  30867. height: math.unit(2.5, "meters"),
  30868. default: true
  30869. },
  30870. {
  30871. name: "Macro",
  30872. height: math.unit(95, "meters")
  30873. },
  30874. {
  30875. name: "Megamacro",
  30876. height: math.unit(150, "km")
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30882. {
  30883. front: {
  30884. height: math.unit(4.2, "meters"),
  30885. preyCapacity: math.unit(50, "m^3"),
  30886. weight: math.unit(30, "tonnes"),
  30887. name: "Front",
  30888. image: {
  30889. source: "./media/characters/sydney/front.svg",
  30890. extra: 1177/1129,
  30891. bottom: 197/1374
  30892. },
  30893. extraAttributes: {
  30894. "length": {
  30895. name: "Length",
  30896. power: 1,
  30897. type: "length",
  30898. base: math.unit(21, "meters")
  30899. },
  30900. }
  30901. },
  30902. },
  30903. [
  30904. {
  30905. name: "Normal",
  30906. height: math.unit(4.2, "meters"),
  30907. default: true
  30908. },
  30909. ]
  30910. ))
  30911. characterMakers.push(() => makeCharacter(
  30912. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30913. {
  30914. back: {
  30915. height: math.unit(201, "feet"),
  30916. name: "Back",
  30917. image: {
  30918. source: "./media/characters/jessica/back.svg",
  30919. extra: 273 / 259,
  30920. bottom: 7 / 280
  30921. }
  30922. },
  30923. },
  30924. [
  30925. {
  30926. name: "Normal",
  30927. height: math.unit(201, "feet"),
  30928. default: true
  30929. },
  30930. {
  30931. name: "Megamacro",
  30932. height: math.unit(8, "miles")
  30933. },
  30934. ]
  30935. ))
  30936. characterMakers.push(() => makeCharacter(
  30937. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30938. {
  30939. side: {
  30940. height: math.unit(5.6, "m"),
  30941. weight: math.unit(8000, "kg"),
  30942. name: "Side",
  30943. image: {
  30944. source: "./media/characters/victoria/side.svg",
  30945. extra: 1542/1229,
  30946. bottom: 124/1666
  30947. }
  30948. },
  30949. maw: {
  30950. height: math.unit(7.14, "feet"),
  30951. name: "Maw",
  30952. image: {
  30953. source: "./media/characters/victoria/maw.svg"
  30954. }
  30955. },
  30956. },
  30957. [
  30958. {
  30959. name: "Normal",
  30960. height: math.unit(5.6, "m"),
  30961. default: true
  30962. },
  30963. ]
  30964. ))
  30965. characterMakers.push(() => makeCharacter(
  30966. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30967. {
  30968. front: {
  30969. height: math.unit(5 + 6 / 12, "feet"),
  30970. name: "Front",
  30971. image: {
  30972. source: "./media/characters/cat/front.svg",
  30973. extra: 1449/1295,
  30974. bottom: 34/1483
  30975. },
  30976. form: "cat",
  30977. default: true
  30978. },
  30979. back: {
  30980. height: math.unit(5 + 6 / 12, "feet"),
  30981. name: "Back",
  30982. image: {
  30983. source: "./media/characters/cat/back.svg",
  30984. extra: 1466/1301,
  30985. bottom: 19/1485
  30986. },
  30987. form: "cat"
  30988. },
  30989. taur: {
  30990. height: math.unit(7, "feet"),
  30991. name: "Taur",
  30992. image: {
  30993. source: "./media/characters/cat/taur.svg",
  30994. extra: 1389/1233,
  30995. bottom: 83/1472
  30996. },
  30997. form: "taur",
  30998. default: true
  30999. },
  31000. lucarioFront: {
  31001. height: math.unit(4, "feet"),
  31002. name: "Lucario (Front)",
  31003. image: {
  31004. source: "./media/characters/cat/lucario-front.svg",
  31005. extra: 1149/1019,
  31006. bottom: 84/1233
  31007. },
  31008. form: "lucario",
  31009. default: true
  31010. },
  31011. lucarioBack: {
  31012. height: math.unit(4, "feet"),
  31013. name: "Lucario (Back)",
  31014. image: {
  31015. source: "./media/characters/cat/lucario-back.svg",
  31016. extra: 1190/1059,
  31017. bottom: 33/1223
  31018. },
  31019. form: "lucario"
  31020. },
  31021. megaLucario: {
  31022. height: math.unit(4, "feet"),
  31023. name: "Mega Lucario",
  31024. image: {
  31025. source: "./media/characters/cat/mega-lucario.svg",
  31026. extra: 1515 / 1319,
  31027. bottom: 63 / 1578
  31028. },
  31029. form: "lucario"
  31030. },
  31031. nickit: {
  31032. height: math.unit(2, "feet"),
  31033. name: "Nickit",
  31034. image: {
  31035. source: "./media/characters/cat/nickit.svg",
  31036. extra: 1980 / 1585,
  31037. bottom: 102 / 2082
  31038. },
  31039. form: "nickit",
  31040. default: true
  31041. },
  31042. lopunnyFront: {
  31043. height: math.unit(5, "feet"),
  31044. name: "Lopunny (Front)",
  31045. image: {
  31046. source: "./media/characters/cat/lopunny-front.svg",
  31047. extra: 1782 / 1469,
  31048. bottom: 38 / 1820
  31049. },
  31050. form: "lopunny",
  31051. default: true
  31052. },
  31053. lopunnyBack: {
  31054. height: math.unit(5, "feet"),
  31055. name: "Lopunny (Back)",
  31056. image: {
  31057. source: "./media/characters/cat/lopunny-back.svg",
  31058. extra: 1660 / 1490,
  31059. bottom: 25 / 1685
  31060. },
  31061. form: "lopunny"
  31062. },
  31063. },
  31064. [
  31065. {
  31066. name: "Really small",
  31067. height: math.unit(1, "nm")
  31068. },
  31069. {
  31070. name: "Micro",
  31071. height: math.unit(5, "inches")
  31072. },
  31073. {
  31074. name: "Normal",
  31075. height: math.unit(5 + 6 / 12, "feet"),
  31076. default: true
  31077. },
  31078. {
  31079. name: "Macro",
  31080. height: math.unit(50, "feet")
  31081. },
  31082. {
  31083. name: "Macro+",
  31084. height: math.unit(150, "feet")
  31085. },
  31086. {
  31087. name: "Megamacro",
  31088. height: math.unit(100, "miles")
  31089. },
  31090. ]
  31091. ))
  31092. characterMakers.push(() => makeCharacter(
  31093. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31094. {
  31095. front: {
  31096. height: math.unit(63.4, "meters"),
  31097. weight: math.unit(3.28349e+6, "kilograms"),
  31098. name: "Front",
  31099. image: {
  31100. source: "./media/characters/kirina-violet/front.svg",
  31101. extra: 2812 / 2725,
  31102. bottom: 0 / 2812
  31103. }
  31104. },
  31105. back: {
  31106. height: math.unit(63.4, "meters"),
  31107. weight: math.unit(3.28349e+6, "kilograms"),
  31108. name: "Back",
  31109. image: {
  31110. source: "./media/characters/kirina-violet/back.svg",
  31111. extra: 2812 / 2725,
  31112. bottom: 0 / 2812
  31113. }
  31114. },
  31115. mouth: {
  31116. height: math.unit(4.35, "meters"),
  31117. name: "Mouth",
  31118. image: {
  31119. source: "./media/characters/kirina-violet/mouth.svg"
  31120. }
  31121. },
  31122. paw: {
  31123. height: math.unit(5.6, "meters"),
  31124. name: "Paw",
  31125. image: {
  31126. source: "./media/characters/kirina-violet/paw.svg"
  31127. }
  31128. },
  31129. tail: {
  31130. height: math.unit(18, "meters"),
  31131. name: "Tail",
  31132. image: {
  31133. source: "./media/characters/kirina-violet/tail.svg"
  31134. }
  31135. },
  31136. },
  31137. [
  31138. {
  31139. name: "Macro",
  31140. height: math.unit(63.4, "meters"),
  31141. default: true
  31142. },
  31143. ]
  31144. ))
  31145. characterMakers.push(() => makeCharacter(
  31146. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31147. {
  31148. front: {
  31149. height: math.unit(75, "feet"),
  31150. name: "Front",
  31151. image: {
  31152. source: "./media/characters/cat-gigachu/front.svg",
  31153. extra: 1239/1027,
  31154. bottom: 32/1271
  31155. }
  31156. },
  31157. back: {
  31158. height: math.unit(75, "feet"),
  31159. name: "Back",
  31160. image: {
  31161. source: "./media/characters/cat-gigachu/back.svg",
  31162. extra: 1229/1030,
  31163. bottom: 9/1238
  31164. }
  31165. },
  31166. },
  31167. [
  31168. {
  31169. name: "Dynamax",
  31170. height: math.unit(75, "feet"),
  31171. default: true
  31172. },
  31173. ]
  31174. ))
  31175. characterMakers.push(() => makeCharacter(
  31176. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31177. {
  31178. front: {
  31179. height: math.unit(6, "feet"),
  31180. weight: math.unit(150, "lb"),
  31181. name: "Front",
  31182. image: {
  31183. source: "./media/characters/sfaiyan/front.svg",
  31184. extra: 999 / 978,
  31185. bottom: 5 / 1004
  31186. }
  31187. },
  31188. },
  31189. [
  31190. {
  31191. name: "Normal",
  31192. height: math.unit(1.82, "meters")
  31193. },
  31194. {
  31195. name: "Giant",
  31196. height: math.unit(2.27, "km"),
  31197. default: true
  31198. },
  31199. ]
  31200. ))
  31201. characterMakers.push(() => makeCharacter(
  31202. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31203. {
  31204. front: {
  31205. height: math.unit(179, "cm"),
  31206. weight: math.unit(100, "kg"),
  31207. name: "Front",
  31208. image: {
  31209. source: "./media/characters/raunehkeli/front.svg",
  31210. extra: 1934 / 1926,
  31211. bottom: 0 / 1934
  31212. }
  31213. },
  31214. },
  31215. [
  31216. {
  31217. name: "Normal",
  31218. height: math.unit(179, "cm")
  31219. },
  31220. {
  31221. name: "Maximum",
  31222. height: math.unit(575, "meters"),
  31223. default: true
  31224. },
  31225. ]
  31226. ))
  31227. characterMakers.push(() => makeCharacter(
  31228. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31229. {
  31230. front: {
  31231. height: math.unit(6, "feet"),
  31232. weight: math.unit(150, "lb"),
  31233. name: "Front",
  31234. image: {
  31235. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31236. extra: 2625 / 2518,
  31237. bottom: 60 / 2685
  31238. }
  31239. },
  31240. },
  31241. [
  31242. {
  31243. name: "Normal",
  31244. height: math.unit(6 + 2 / 12, "feet")
  31245. },
  31246. {
  31247. name: "Macro",
  31248. height: math.unit(1180, "feet"),
  31249. default: true
  31250. },
  31251. ]
  31252. ))
  31253. characterMakers.push(() => makeCharacter(
  31254. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31255. {
  31256. front: {
  31257. height: math.unit(5 + 6 / 12, "feet"),
  31258. weight: math.unit(108, "lb"),
  31259. name: "Front",
  31260. image: {
  31261. source: "./media/characters/lilith-zott/front.svg",
  31262. extra: 2510 / 2238,
  31263. bottom: 100 / 2610
  31264. }
  31265. },
  31266. frontDressed: {
  31267. height: math.unit(5 + 6 / 12, "feet"),
  31268. weight: math.unit(108, "lb"),
  31269. name: "Front (Dressed)",
  31270. image: {
  31271. source: "./media/characters/lilith-zott/front-dressed.svg",
  31272. extra: 2510 / 2238,
  31273. bottom: 100 / 2610
  31274. }
  31275. },
  31276. },
  31277. [
  31278. {
  31279. name: "Normal",
  31280. height: math.unit(5 + 6 / 12, "feet")
  31281. },
  31282. {
  31283. name: "Macro",
  31284. height: math.unit(1030, "feet"),
  31285. default: true
  31286. },
  31287. ]
  31288. ))
  31289. characterMakers.push(() => makeCharacter(
  31290. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31291. {
  31292. front: {
  31293. height: math.unit(6, "feet"),
  31294. weight: math.unit(150, "lb"),
  31295. name: "Front",
  31296. image: {
  31297. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31298. extra: 2567 / 2435,
  31299. bottom: 39 / 2606
  31300. }
  31301. },
  31302. frontSuper: {
  31303. height: math.unit(6, "feet"),
  31304. name: "Front (Super)",
  31305. image: {
  31306. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31307. extra: 2567 / 2435,
  31308. bottom: 39 / 2606
  31309. }
  31310. },
  31311. },
  31312. [
  31313. {
  31314. name: "Normal",
  31315. height: math.unit(5 + 10 / 12, "feet")
  31316. },
  31317. {
  31318. name: "Macro",
  31319. height: math.unit(1100, "feet"),
  31320. default: true
  31321. },
  31322. ]
  31323. ))
  31324. characterMakers.push(() => makeCharacter(
  31325. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31326. {
  31327. front: {
  31328. height: math.unit(100, "miles"),
  31329. name: "Front",
  31330. image: {
  31331. source: "./media/characters/sona/front.svg",
  31332. extra: 2433 / 2201,
  31333. bottom: 53 / 2486
  31334. }
  31335. },
  31336. foot: {
  31337. height: math.unit(16.1, "miles"),
  31338. name: "Foot",
  31339. image: {
  31340. source: "./media/characters/sona/foot.svg"
  31341. }
  31342. },
  31343. },
  31344. [
  31345. {
  31346. name: "Macro",
  31347. height: math.unit(100, "miles"),
  31348. default: true
  31349. },
  31350. ]
  31351. ))
  31352. characterMakers.push(() => makeCharacter(
  31353. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31354. {
  31355. front: {
  31356. height: math.unit(6, "feet"),
  31357. weight: math.unit(150, "lb"),
  31358. name: "Front",
  31359. image: {
  31360. source: "./media/characters/bailey/front.svg",
  31361. extra: 1778 / 1724,
  31362. bottom: 30 / 1808
  31363. }
  31364. },
  31365. },
  31366. [
  31367. {
  31368. name: "Micro",
  31369. height: math.unit(4, "inches")
  31370. },
  31371. {
  31372. name: "Normal",
  31373. height: math.unit(5 + 5 / 12, "feet"),
  31374. default: true
  31375. },
  31376. {
  31377. name: "Macro",
  31378. height: math.unit(250, "feet")
  31379. },
  31380. {
  31381. name: "Megamacro",
  31382. height: math.unit(100, "miles")
  31383. },
  31384. ]
  31385. ))
  31386. characterMakers.push(() => makeCharacter(
  31387. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31388. {
  31389. front: {
  31390. height: math.unit(5 + 2 / 12, "feet"),
  31391. weight: math.unit(120, "lb"),
  31392. name: "Front",
  31393. image: {
  31394. source: "./media/characters/snaps/front.svg",
  31395. extra: 2370 / 2177,
  31396. bottom: 48 / 2418
  31397. }
  31398. },
  31399. back: {
  31400. height: math.unit(5 + 2 / 12, "feet"),
  31401. weight: math.unit(120, "lb"),
  31402. name: "Back",
  31403. image: {
  31404. source: "./media/characters/snaps/back.svg",
  31405. extra: 2408 / 2258,
  31406. bottom: 15 / 2423
  31407. }
  31408. },
  31409. },
  31410. [
  31411. {
  31412. name: "Micro",
  31413. height: math.unit(9, "inches")
  31414. },
  31415. {
  31416. name: "Normal",
  31417. height: math.unit(5 + 2 / 12, "feet"),
  31418. default: true
  31419. },
  31420. {
  31421. name: "Mini Macro",
  31422. height: math.unit(10, "feet")
  31423. },
  31424. ]
  31425. ))
  31426. characterMakers.push(() => makeCharacter(
  31427. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31428. {
  31429. front: {
  31430. height: math.unit(1.8, "meters"),
  31431. weight: math.unit(85, "kg"),
  31432. name: "Front",
  31433. image: {
  31434. source: "./media/characters/azteck/front.svg",
  31435. extra: 2815 / 2625,
  31436. bottom: 89 / 2904
  31437. }
  31438. },
  31439. back: {
  31440. height: math.unit(1.8, "meters"),
  31441. weight: math.unit(85, "kg"),
  31442. name: "Back",
  31443. image: {
  31444. source: "./media/characters/azteck/back.svg",
  31445. extra: 2856 / 2648,
  31446. bottom: 85 / 2941
  31447. }
  31448. },
  31449. frontDressed: {
  31450. height: math.unit(1.8, "meters"),
  31451. weight: math.unit(85, "kg"),
  31452. name: "Front (Dressed)",
  31453. image: {
  31454. source: "./media/characters/azteck/front-dressed.svg",
  31455. extra: 2147 / 2003,
  31456. bottom: 68 / 2215
  31457. }
  31458. },
  31459. head: {
  31460. height: math.unit(0.47, "meters"),
  31461. weight: math.unit(85, "kg"),
  31462. name: "Head",
  31463. image: {
  31464. source: "./media/characters/azteck/head.svg"
  31465. }
  31466. },
  31467. },
  31468. [
  31469. {
  31470. name: "Bite sized",
  31471. height: math.unit(16, "cm")
  31472. },
  31473. {
  31474. name: "Normal",
  31475. height: math.unit(1.8, "meters"),
  31476. default: true
  31477. },
  31478. ]
  31479. ))
  31480. characterMakers.push(() => makeCharacter(
  31481. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31482. {
  31483. front: {
  31484. height: math.unit(6, "feet"),
  31485. weight: math.unit(150, "lb"),
  31486. name: "Front",
  31487. image: {
  31488. source: "./media/characters/pidge/front.svg",
  31489. extra: 1936/1820,
  31490. bottom: 0/1936
  31491. }
  31492. },
  31493. back: {
  31494. height: math.unit(6, "feet"),
  31495. weight: math.unit(150, "lb"),
  31496. name: "Back",
  31497. image: {
  31498. source: "./media/characters/pidge/back.svg",
  31499. extra: 1938/1843,
  31500. bottom: 0/1938
  31501. }
  31502. },
  31503. casual: {
  31504. height: math.unit(6, "feet"),
  31505. weight: math.unit(150, "lb"),
  31506. name: "Casual",
  31507. image: {
  31508. source: "./media/characters/pidge/casual.svg",
  31509. extra: 1936/1820,
  31510. bottom: 0/1936
  31511. }
  31512. },
  31513. tech: {
  31514. height: math.unit(6, "feet"),
  31515. weight: math.unit(150, "lb"),
  31516. name: "Tech",
  31517. image: {
  31518. source: "./media/characters/pidge/tech.svg",
  31519. extra: 1802/1682,
  31520. bottom: 0/1802
  31521. }
  31522. },
  31523. head: {
  31524. height: math.unit(1.61, "feet"),
  31525. name: "Head",
  31526. image: {
  31527. source: "./media/characters/pidge/head.svg"
  31528. }
  31529. },
  31530. collar: {
  31531. height: math.unit(0.82, "feet"),
  31532. name: "Collar",
  31533. image: {
  31534. source: "./media/characters/pidge/collar.svg"
  31535. }
  31536. },
  31537. },
  31538. [
  31539. {
  31540. name: "Macro",
  31541. height: math.unit(2, "mile"),
  31542. default: true
  31543. },
  31544. {
  31545. name: "PUPPY",
  31546. height: math.unit(20, "miles")
  31547. },
  31548. ]
  31549. ))
  31550. characterMakers.push(() => makeCharacter(
  31551. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31552. {
  31553. front: {
  31554. height: math.unit(6, "feet"),
  31555. weight: math.unit(150, "lb"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/en/front.svg",
  31559. extra: 1697 / 1563,
  31560. bottom: 103 / 1800
  31561. }
  31562. },
  31563. back: {
  31564. height: math.unit(6, "feet"),
  31565. weight: math.unit(150, "lb"),
  31566. name: "Back",
  31567. image: {
  31568. source: "./media/characters/en/back.svg",
  31569. extra: 1700 / 1570,
  31570. bottom: 51 / 1751
  31571. }
  31572. },
  31573. frontDressed: {
  31574. height: math.unit(6, "feet"),
  31575. weight: math.unit(150, "lb"),
  31576. name: "Front (Dressed)",
  31577. image: {
  31578. source: "./media/characters/en/front-dressed.svg",
  31579. extra: 1697 / 1563,
  31580. bottom: 103 / 1800
  31581. }
  31582. },
  31583. backDressed: {
  31584. height: math.unit(6, "feet"),
  31585. weight: math.unit(150, "lb"),
  31586. name: "Back (Dressed)",
  31587. image: {
  31588. source: "./media/characters/en/back-dressed.svg",
  31589. extra: 1700 / 1570,
  31590. bottom: 51 / 1751
  31591. }
  31592. },
  31593. },
  31594. [
  31595. {
  31596. name: "Macro",
  31597. height: math.unit(210, "feet"),
  31598. default: true
  31599. },
  31600. ]
  31601. ))
  31602. characterMakers.push(() => makeCharacter(
  31603. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31604. {
  31605. front: {
  31606. height: math.unit(6, "feet"),
  31607. weight: math.unit(150, "lb"),
  31608. name: "Front",
  31609. image: {
  31610. source: "./media/characters/haze-orris/front.svg",
  31611. extra: 3975 / 3525,
  31612. bottom: 137 / 4112
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Micro",
  31619. height: math.unit(150, "mm"),
  31620. default: true
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31626. {
  31627. front: {
  31628. height: math.unit(6, "feet"),
  31629. weight: math.unit(150, "lb"),
  31630. name: "Front",
  31631. image: {
  31632. source: "./media/characters/casselene-yaro/front.svg",
  31633. extra: 4721 / 4541,
  31634. bottom: 82 / 4803
  31635. }
  31636. },
  31637. back: {
  31638. height: math.unit(6, "feet"),
  31639. weight: math.unit(150, "lb"),
  31640. name: "Back",
  31641. image: {
  31642. source: "./media/characters/casselene-yaro/back.svg",
  31643. extra: 4569 / 4377,
  31644. bottom: 69 / 4638
  31645. }
  31646. },
  31647. dressed: {
  31648. height: math.unit(6, "feet"),
  31649. weight: math.unit(150, "lb"),
  31650. name: "Dressed",
  31651. image: {
  31652. source: "./media/characters/casselene-yaro/dressed.svg",
  31653. extra: 4721 / 4541,
  31654. bottom: 82 / 4803
  31655. }
  31656. },
  31657. maw: {
  31658. height: math.unit(1, "feet"),
  31659. name: "Maw",
  31660. image: {
  31661. source: "./media/characters/casselene-yaro/maw.svg"
  31662. }
  31663. },
  31664. },
  31665. [
  31666. {
  31667. name: "Macro",
  31668. height: math.unit(190, "feet"),
  31669. default: true
  31670. },
  31671. ]
  31672. ))
  31673. characterMakers.push(() => makeCharacter(
  31674. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31675. {
  31676. front: {
  31677. height: math.unit(10, "feet"),
  31678. weight: math.unit(15015, "lb"),
  31679. name: "Front",
  31680. image: {
  31681. source: "./media/characters/platine/front.svg",
  31682. extra: 1741/1650,
  31683. bottom: 84/1825
  31684. }
  31685. },
  31686. side: {
  31687. height: math.unit(10, "feet"),
  31688. weight: math.unit(15015, "lb"),
  31689. name: "Side",
  31690. image: {
  31691. source: "./media/characters/platine/side.svg",
  31692. extra: 1790/1705,
  31693. bottom: 29/1819
  31694. }
  31695. },
  31696. },
  31697. [
  31698. {
  31699. name: "Normal",
  31700. height: math.unit(10, "feet"),
  31701. default: true
  31702. },
  31703. {
  31704. name: "Macro",
  31705. height: math.unit(100, "feet")
  31706. },
  31707. {
  31708. name: "Megamacro",
  31709. height: math.unit(1000, "feet")
  31710. },
  31711. ]
  31712. ))
  31713. characterMakers.push(() => makeCharacter(
  31714. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31715. {
  31716. front: {
  31717. height: math.unit(15 + 5 / 12, "feet"),
  31718. weight: math.unit(4600, "lb"),
  31719. name: "Front",
  31720. image: {
  31721. source: "./media/characters/neapolitan-ananassa/front.svg",
  31722. extra: 2903 / 2736,
  31723. bottom: 0 / 2903
  31724. }
  31725. },
  31726. side: {
  31727. height: math.unit(15 + 5 / 12, "feet"),
  31728. weight: math.unit(4600, "lb"),
  31729. name: "Side",
  31730. image: {
  31731. source: "./media/characters/neapolitan-ananassa/side.svg",
  31732. extra: 2925 / 2719,
  31733. bottom: 0 / 2925
  31734. }
  31735. },
  31736. back: {
  31737. height: math.unit(15 + 5 / 12, "feet"),
  31738. weight: math.unit(4600, "lb"),
  31739. name: "Back",
  31740. image: {
  31741. source: "./media/characters/neapolitan-ananassa/back.svg",
  31742. extra: 2903 / 2736,
  31743. bottom: 0 / 2903
  31744. }
  31745. },
  31746. },
  31747. [
  31748. {
  31749. name: "Normal",
  31750. height: math.unit(15 + 5 / 12, "feet"),
  31751. default: true
  31752. },
  31753. {
  31754. name: "Post-Millenium",
  31755. height: math.unit(35 + 5 / 12, "feet")
  31756. },
  31757. {
  31758. name: "Post-Era",
  31759. height: math.unit(450 + 5 / 12, "feet")
  31760. },
  31761. ]
  31762. ))
  31763. characterMakers.push(() => makeCharacter(
  31764. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31765. {
  31766. front: {
  31767. height: math.unit(300, "meters"),
  31768. weight: math.unit(125000, "tonnes"),
  31769. name: "Front",
  31770. image: {
  31771. source: "./media/characters/pazuzu/front.svg",
  31772. extra: 877 / 794,
  31773. bottom: 47 / 924
  31774. }
  31775. },
  31776. },
  31777. [
  31778. {
  31779. name: "Macro",
  31780. height: math.unit(300, "meters"),
  31781. default: true
  31782. },
  31783. ]
  31784. ))
  31785. characterMakers.push(() => makeCharacter(
  31786. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31787. {
  31788. side: {
  31789. height: math.unit(10 + 7 / 12, "feet"),
  31790. weight: math.unit(2.5, "tons"),
  31791. name: "Side",
  31792. image: {
  31793. source: "./media/characters/aasha/side.svg",
  31794. extra: 1345 / 1245,
  31795. bottom: 111 / 1456
  31796. }
  31797. },
  31798. back: {
  31799. height: math.unit(10 + 7 / 12, "feet"),
  31800. weight: math.unit(2.5, "tons"),
  31801. name: "Back",
  31802. image: {
  31803. source: "./media/characters/aasha/back.svg",
  31804. extra: 1133 / 1057,
  31805. bottom: 257 / 1390
  31806. }
  31807. },
  31808. },
  31809. [
  31810. {
  31811. name: "Normal",
  31812. height: math.unit(10 + 7 / 12, "feet"),
  31813. default: true
  31814. },
  31815. ]
  31816. ))
  31817. characterMakers.push(() => makeCharacter(
  31818. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31819. {
  31820. front: {
  31821. height: math.unit(6 + 3 / 12, "feet"),
  31822. name: "Front",
  31823. image: {
  31824. source: "./media/characters/nevan/front.svg",
  31825. extra: 704 / 704,
  31826. bottom: 28 / 732
  31827. }
  31828. },
  31829. back: {
  31830. height: math.unit(6 + 3 / 12, "feet"),
  31831. name: "Back",
  31832. image: {
  31833. source: "./media/characters/nevan/back.svg",
  31834. extra: 714 / 714,
  31835. bottom: 21 / 735
  31836. }
  31837. },
  31838. frontFlaccid: {
  31839. height: math.unit(6 + 3 / 12, "feet"),
  31840. name: "Front (Flaccid)",
  31841. image: {
  31842. source: "./media/characters/nevan/front-flaccid.svg",
  31843. extra: 704 / 704,
  31844. bottom: 28 / 732
  31845. }
  31846. },
  31847. frontErect: {
  31848. height: math.unit(6 + 3 / 12, "feet"),
  31849. name: "Front (Erect)",
  31850. image: {
  31851. source: "./media/characters/nevan/front-erect.svg",
  31852. extra: 704 / 704,
  31853. bottom: 28 / 732
  31854. }
  31855. },
  31856. backFlaccid: {
  31857. height: math.unit(6 + 3 / 12, "feet"),
  31858. name: "Back (Flaccid)",
  31859. image: {
  31860. source: "./media/characters/nevan/back-flaccid.svg",
  31861. extra: 714 / 714,
  31862. bottom: 21 / 735
  31863. }
  31864. },
  31865. },
  31866. [
  31867. {
  31868. name: "Normal",
  31869. height: math.unit(6 + 3 / 12, "feet"),
  31870. default: true
  31871. },
  31872. ]
  31873. ))
  31874. characterMakers.push(() => makeCharacter(
  31875. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31876. {
  31877. front: {
  31878. height: math.unit(4, "feet"),
  31879. name: "Front",
  31880. image: {
  31881. source: "./media/characters/arhan/front.svg",
  31882. extra: 3368 / 3133,
  31883. bottom: 0 / 3368
  31884. }
  31885. },
  31886. side: {
  31887. height: math.unit(4, "feet"),
  31888. name: "Side",
  31889. image: {
  31890. source: "./media/characters/arhan/side.svg",
  31891. extra: 3347 / 3105,
  31892. bottom: 0 / 3347
  31893. }
  31894. },
  31895. tongue: {
  31896. height: math.unit(1.42, "feet"),
  31897. name: "Tongue",
  31898. image: {
  31899. source: "./media/characters/arhan/tongue.svg"
  31900. }
  31901. },
  31902. head: {
  31903. height: math.unit(0.85, "feet"),
  31904. name: "Head",
  31905. image: {
  31906. source: "./media/characters/arhan/head.svg"
  31907. }
  31908. },
  31909. },
  31910. [
  31911. {
  31912. name: "Normal",
  31913. height: math.unit(4, "feet"),
  31914. default: true
  31915. },
  31916. ]
  31917. ))
  31918. characterMakers.push(() => makeCharacter(
  31919. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31920. {
  31921. front: {
  31922. height: math.unit(5 + 7.5 / 12, "feet"),
  31923. weight: math.unit(120, "lb"),
  31924. name: "Front",
  31925. image: {
  31926. source: "./media/characters/digi-duncan/front.svg",
  31927. extra: 330 / 326,
  31928. bottom: 16 / 346
  31929. }
  31930. },
  31931. side: {
  31932. height: math.unit(5 + 7.5 / 12, "feet"),
  31933. weight: math.unit(120, "lb"),
  31934. name: "Side",
  31935. image: {
  31936. source: "./media/characters/digi-duncan/side.svg",
  31937. extra: 341 / 337,
  31938. bottom: 1 / 342
  31939. }
  31940. },
  31941. back: {
  31942. height: math.unit(5 + 7.5 / 12, "feet"),
  31943. weight: math.unit(120, "lb"),
  31944. name: "Back",
  31945. image: {
  31946. source: "./media/characters/digi-duncan/back.svg",
  31947. extra: 330 / 326,
  31948. bottom: 12 / 342
  31949. }
  31950. },
  31951. },
  31952. [
  31953. {
  31954. name: "Speck",
  31955. height: math.unit(0.25, "mm")
  31956. },
  31957. {
  31958. name: "Micro",
  31959. height: math.unit(5, "mm")
  31960. },
  31961. {
  31962. name: "Tiny",
  31963. height: math.unit(0.5, "inches"),
  31964. default: true
  31965. },
  31966. {
  31967. name: "Human",
  31968. height: math.unit(5 + 7.5 / 12, "feet")
  31969. },
  31970. {
  31971. name: "Minigiant",
  31972. height: math.unit(8 + 5.25, "feet")
  31973. },
  31974. {
  31975. name: "Giant",
  31976. height: math.unit(2000, "feet")
  31977. },
  31978. {
  31979. name: "Mega",
  31980. height: math.unit(371.1, "miles")
  31981. },
  31982. ]
  31983. ))
  31984. characterMakers.push(() => makeCharacter(
  31985. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31986. {
  31987. front: {
  31988. height: math.unit(2, "meters"),
  31989. weight: math.unit(350, "kg"),
  31990. name: "Front",
  31991. image: {
  31992. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31993. extra: 898 / 838,
  31994. bottom: 9 / 907
  31995. }
  31996. },
  31997. },
  31998. [
  31999. {
  32000. name: "Micro",
  32001. height: math.unit(8, "meters")
  32002. },
  32003. {
  32004. name: "Normal",
  32005. height: math.unit(50, "meters"),
  32006. default: true
  32007. },
  32008. {
  32009. name: "Macro",
  32010. height: math.unit(500, "meters")
  32011. },
  32012. ]
  32013. ))
  32014. characterMakers.push(() => makeCharacter(
  32015. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32016. {
  32017. front: {
  32018. height: math.unit(6 + 6 / 12, "feet"),
  32019. name: "Front",
  32020. image: {
  32021. source: "./media/characters/khardesh/front.svg",
  32022. extra: 1788/1596,
  32023. bottom: 66/1854
  32024. }
  32025. },
  32026. back: {
  32027. height: math.unit(6 + 6 / 12, "feet"),
  32028. name: "Back",
  32029. image: {
  32030. source: "./media/characters/khardesh/back.svg",
  32031. extra: 1781/1584,
  32032. bottom: 68/1849
  32033. }
  32034. },
  32035. },
  32036. [
  32037. {
  32038. name: "Normal",
  32039. height: math.unit(6 + 6 / 12, "feet"),
  32040. default: true
  32041. },
  32042. {
  32043. name: "Normal+",
  32044. height: math.unit(4, "meters")
  32045. },
  32046. {
  32047. name: "Macro",
  32048. height: math.unit(50, "meters")
  32049. },
  32050. {
  32051. name: "Macro+",
  32052. height: math.unit(100, "meters")
  32053. },
  32054. {
  32055. name: "Megamacro",
  32056. height: math.unit(20, "km")
  32057. },
  32058. ]
  32059. ))
  32060. characterMakers.push(() => makeCharacter(
  32061. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32062. {
  32063. front: {
  32064. height: math.unit(6, "feet"),
  32065. weight: math.unit(150, "lb"),
  32066. name: "Front",
  32067. image: {
  32068. source: "./media/characters/kosho/front.svg",
  32069. extra: 1847 / 1847,
  32070. bottom: 86 / 1933
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "Second-stage micro",
  32077. height: math.unit(0.5, "inches")
  32078. },
  32079. {
  32080. name: "First-stage micro",
  32081. height: math.unit(6, "inches")
  32082. },
  32083. {
  32084. name: "Normal",
  32085. height: math.unit(6, "feet"),
  32086. default: true
  32087. },
  32088. {
  32089. name: "First-stage macro",
  32090. height: math.unit(72, "feet")
  32091. },
  32092. {
  32093. name: "Second-stage macro",
  32094. height: math.unit(864, "feet")
  32095. },
  32096. ]
  32097. ))
  32098. characterMakers.push(() => makeCharacter(
  32099. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32100. {
  32101. normal: {
  32102. height: math.unit(4 + 6 / 12, "feet"),
  32103. name: "Normal",
  32104. image: {
  32105. source: "./media/characters/hydra/normal.svg",
  32106. extra: 2833 / 2634,
  32107. bottom: 68 / 2901
  32108. }
  32109. },
  32110. smol: {
  32111. height: math.unit(0.705, "inches"),
  32112. name: "Smol",
  32113. image: {
  32114. source: "./media/characters/hydra/smol.svg",
  32115. extra: 2715 / 2540,
  32116. bottom: 0 / 2715
  32117. }
  32118. },
  32119. },
  32120. [
  32121. {
  32122. name: "Normal",
  32123. height: math.unit(4 + 6 / 12, "feet"),
  32124. default: true
  32125. }
  32126. ]
  32127. ))
  32128. characterMakers.push(() => makeCharacter(
  32129. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32130. {
  32131. front: {
  32132. height: math.unit(0.6, "cm"),
  32133. name: "Front",
  32134. image: {
  32135. source: "./media/characters/daz/front.svg",
  32136. extra: 1682 / 1164,
  32137. bottom: 42 / 1724
  32138. }
  32139. },
  32140. },
  32141. [
  32142. {
  32143. name: "Normal",
  32144. height: math.unit(0.6, "cm"),
  32145. default: true
  32146. },
  32147. ]
  32148. ))
  32149. characterMakers.push(() => makeCharacter(
  32150. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32151. {
  32152. front: {
  32153. height: math.unit(6, "feet"),
  32154. weight: math.unit(235, "lb"),
  32155. name: "Front",
  32156. image: {
  32157. source: "./media/characters/theo-pangolin/front.svg",
  32158. extra: 1996 / 1969,
  32159. bottom: 115 / 2111
  32160. }
  32161. },
  32162. back: {
  32163. height: math.unit(6, "feet"),
  32164. weight: math.unit(235, "lb"),
  32165. name: "Back",
  32166. image: {
  32167. source: "./media/characters/theo-pangolin/back.svg",
  32168. extra: 1979 / 1979,
  32169. bottom: 40 / 2019
  32170. }
  32171. },
  32172. feral: {
  32173. height: math.unit(2, "feet"),
  32174. weight: math.unit(30, "lb"),
  32175. name: "Feral",
  32176. image: {
  32177. source: "./media/characters/theo-pangolin/feral.svg",
  32178. extra: 803 / 791,
  32179. bottom: 181 / 984
  32180. }
  32181. },
  32182. footFive: {
  32183. height: math.unit(1.43, "feet"),
  32184. name: "Foot (Five Toes)",
  32185. image: {
  32186. source: "./media/characters/theo-pangolin/foot-five.svg"
  32187. }
  32188. },
  32189. footFour: {
  32190. height: math.unit(1.43, "feet"),
  32191. name: "Foot (Four Toes)",
  32192. image: {
  32193. source: "./media/characters/theo-pangolin/foot-four.svg"
  32194. }
  32195. },
  32196. handFour: {
  32197. height: math.unit(0.81, "feet"),
  32198. name: "Hand (Four Fingers)",
  32199. image: {
  32200. source: "./media/characters/theo-pangolin/hand-four.svg"
  32201. }
  32202. },
  32203. handThree: {
  32204. height: math.unit(0.81, "feet"),
  32205. name: "Hand (Three Fingers)",
  32206. image: {
  32207. source: "./media/characters/theo-pangolin/hand-three.svg"
  32208. }
  32209. },
  32210. headFront: {
  32211. height: math.unit(1.37, "feet"),
  32212. name: "Head (Front)",
  32213. image: {
  32214. source: "./media/characters/theo-pangolin/head-front.svg"
  32215. }
  32216. },
  32217. headSide: {
  32218. height: math.unit(1.43, "feet"),
  32219. name: "Head (Side)",
  32220. image: {
  32221. source: "./media/characters/theo-pangolin/head-side.svg"
  32222. }
  32223. },
  32224. tongue: {
  32225. height: math.unit(2.29, "feet"),
  32226. name: "Tongue",
  32227. image: {
  32228. source: "./media/characters/theo-pangolin/tongue.svg"
  32229. }
  32230. },
  32231. },
  32232. [
  32233. {
  32234. name: "Normal",
  32235. height: math.unit(6, "feet")
  32236. },
  32237. {
  32238. name: "Macro",
  32239. height: math.unit(400, "feet"),
  32240. default: true
  32241. },
  32242. ]
  32243. ))
  32244. characterMakers.push(() => makeCharacter(
  32245. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32246. {
  32247. front: {
  32248. height: math.unit(6, "inches"),
  32249. weight: math.unit(0.036, "kg"),
  32250. name: "Front",
  32251. image: {
  32252. source: "./media/characters/renée/front.svg",
  32253. extra: 900 / 886,
  32254. bottom: 8 / 908
  32255. }
  32256. },
  32257. },
  32258. [
  32259. {
  32260. name: "Nano",
  32261. height: math.unit(1, "nm")
  32262. },
  32263. {
  32264. name: "Micro",
  32265. height: math.unit(1, "mm")
  32266. },
  32267. {
  32268. name: "Normal",
  32269. height: math.unit(6, "inches")
  32270. },
  32271. {
  32272. name: "Macro",
  32273. height: math.unit(2000, "feet"),
  32274. default: true
  32275. },
  32276. {
  32277. name: "Megamacro",
  32278. height: math.unit(2, "km")
  32279. },
  32280. {
  32281. name: "Gigamacro",
  32282. height: math.unit(2000, "km")
  32283. },
  32284. {
  32285. name: "Teramacro",
  32286. height: math.unit(250000, "km")
  32287. },
  32288. ]
  32289. ))
  32290. characterMakers.push(() => makeCharacter(
  32291. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32292. {
  32293. front: {
  32294. height: math.unit(4, "meters"),
  32295. weight: math.unit(150, "kg"),
  32296. name: "Front",
  32297. image: {
  32298. source: "./media/characters/caledvwlch/front.svg",
  32299. extra: 1757/1537,
  32300. bottom: 31/1788
  32301. }
  32302. },
  32303. side: {
  32304. height: math.unit(4, "meters"),
  32305. weight: math.unit(150, "kg"),
  32306. name: "Side",
  32307. image: {
  32308. source: "./media/characters/caledvwlch/side.svg",
  32309. extra: 1605 / 1536,
  32310. bottom: 31 / 1636
  32311. }
  32312. },
  32313. back: {
  32314. height: math.unit(4, "meters"),
  32315. weight: math.unit(150, "kg"),
  32316. name: "Back",
  32317. image: {
  32318. source: "./media/characters/caledvwlch/back.svg",
  32319. extra: 1635 / 1565,
  32320. bottom: 27 / 1662
  32321. }
  32322. },
  32323. },
  32324. [
  32325. {
  32326. name: "\"Incognito\"",
  32327. height: math.unit(4, "meters")
  32328. },
  32329. {
  32330. name: "Small rampage",
  32331. height: math.unit(600, "meters")
  32332. },
  32333. {
  32334. name: "Mega",
  32335. height: math.unit(30, "km")
  32336. },
  32337. {
  32338. name: "Home-size",
  32339. height: math.unit(50, "km"),
  32340. default: true
  32341. },
  32342. {
  32343. name: "Giga",
  32344. height: math.unit(300, "km")
  32345. },
  32346. {
  32347. name: "Lounging",
  32348. height: math.unit(11000, "km")
  32349. },
  32350. {
  32351. name: "Planet snacking",
  32352. height: math.unit(2000000, "km")
  32353. },
  32354. ]
  32355. ))
  32356. characterMakers.push(() => makeCharacter(
  32357. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32358. {
  32359. front: {
  32360. height: math.unit(6, "feet"),
  32361. weight: math.unit(215, "lb"),
  32362. name: "Front",
  32363. image: {
  32364. source: "./media/characters/sapphire-svell/front.svg",
  32365. extra: 495 / 455,
  32366. bottom: 20 / 515
  32367. }
  32368. },
  32369. back: {
  32370. height: math.unit(6, "feet"),
  32371. weight: math.unit(216, "lb"),
  32372. name: "Back",
  32373. image: {
  32374. source: "./media/characters/sapphire-svell/back.svg",
  32375. extra: 497 / 477,
  32376. bottom: 7 / 504
  32377. }
  32378. },
  32379. maw: {
  32380. height: math.unit(1.57, "feet"),
  32381. name: "Maw",
  32382. image: {
  32383. source: "./media/characters/sapphire-svell/maw.svg"
  32384. }
  32385. },
  32386. foot: {
  32387. height: math.unit(1.07, "feet"),
  32388. name: "Foot",
  32389. image: {
  32390. source: "./media/characters/sapphire-svell/foot.svg"
  32391. }
  32392. },
  32393. toering: {
  32394. height: math.unit(1.7, "inch"),
  32395. name: "Toering",
  32396. image: {
  32397. source: "./media/characters/sapphire-svell/toering.svg"
  32398. }
  32399. },
  32400. },
  32401. [
  32402. {
  32403. name: "Normal",
  32404. height: math.unit(300, "feet"),
  32405. default: true
  32406. },
  32407. {
  32408. name: "Augmented",
  32409. height: math.unit(1250, "feet")
  32410. },
  32411. {
  32412. name: "Unleashed",
  32413. height: math.unit(3000, "feet")
  32414. },
  32415. ]
  32416. ))
  32417. characterMakers.push(() => makeCharacter(
  32418. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32419. {
  32420. side: {
  32421. height: math.unit(2 + 3 / 12, "feet"),
  32422. weight: math.unit(110, "lb"),
  32423. name: "Side",
  32424. image: {
  32425. source: "./media/characters/glitch-flux/side.svg",
  32426. extra: 997 / 805,
  32427. bottom: 20 / 1017
  32428. }
  32429. },
  32430. },
  32431. [
  32432. {
  32433. name: "Normal",
  32434. height: math.unit(2 + 3 / 12, "feet"),
  32435. default: true
  32436. },
  32437. ]
  32438. ))
  32439. characterMakers.push(() => makeCharacter(
  32440. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32441. {
  32442. front: {
  32443. height: math.unit(4, "meters"),
  32444. name: "Front",
  32445. image: {
  32446. source: "./media/characters/mid/front.svg",
  32447. extra: 507 / 476,
  32448. bottom: 17 / 524
  32449. }
  32450. },
  32451. back: {
  32452. height: math.unit(4, "meters"),
  32453. name: "Back",
  32454. image: {
  32455. source: "./media/characters/mid/back.svg",
  32456. extra: 519 / 487,
  32457. bottom: 7 / 526
  32458. }
  32459. },
  32460. stuck: {
  32461. height: math.unit(2.2, "meters"),
  32462. name: "Stuck",
  32463. image: {
  32464. source: "./media/characters/mid/stuck.svg",
  32465. extra: 1951 / 1869,
  32466. bottom: 88 / 2039
  32467. }
  32468. }
  32469. },
  32470. [
  32471. {
  32472. name: "Normal",
  32473. height: math.unit(4, "meters"),
  32474. default: true
  32475. },
  32476. {
  32477. name: "Big",
  32478. height: math.unit(10, "meters")
  32479. },
  32480. {
  32481. name: "Macro",
  32482. height: math.unit(800, "meters")
  32483. },
  32484. {
  32485. name: "Megamacro",
  32486. height: math.unit(100, "km")
  32487. },
  32488. {
  32489. name: "Overgrown",
  32490. height: math.unit(1, "parsec")
  32491. },
  32492. ]
  32493. ))
  32494. characterMakers.push(() => makeCharacter(
  32495. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32496. {
  32497. front: {
  32498. height: math.unit(2.5, "meters"),
  32499. weight: math.unit(225, "kg"),
  32500. name: "Front",
  32501. image: {
  32502. source: "./media/characters/iris/front.svg",
  32503. extra: 3348 / 3251,
  32504. bottom: 205 / 3553
  32505. }
  32506. },
  32507. maw: {
  32508. height: math.unit(0.56, "meter"),
  32509. name: "Maw",
  32510. image: {
  32511. source: "./media/characters/iris/maw.svg"
  32512. }
  32513. },
  32514. },
  32515. [
  32516. {
  32517. name: "Mewter cat",
  32518. height: math.unit(1.2, "meters")
  32519. },
  32520. {
  32521. name: "Normal",
  32522. height: math.unit(2.5, "meters"),
  32523. default: true
  32524. },
  32525. {
  32526. name: "Minimacro",
  32527. height: math.unit(18, "feet")
  32528. },
  32529. {
  32530. name: "Macro",
  32531. height: math.unit(140, "feet")
  32532. },
  32533. {
  32534. name: "Macro+",
  32535. height: math.unit(180, "meters")
  32536. },
  32537. {
  32538. name: "Megamacro",
  32539. height: math.unit(2746, "meters")
  32540. },
  32541. ]
  32542. ))
  32543. characterMakers.push(() => makeCharacter(
  32544. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32545. {
  32546. front: {
  32547. height: math.unit(6, "feet"),
  32548. weight: math.unit(135, "lb"),
  32549. name: "Front",
  32550. image: {
  32551. source: "./media/characters/axel/front.svg",
  32552. extra: 908 / 908,
  32553. bottom: 58 / 966
  32554. }
  32555. },
  32556. side: {
  32557. height: math.unit(6, "feet"),
  32558. weight: math.unit(135, "lb"),
  32559. name: "Side",
  32560. image: {
  32561. source: "./media/characters/axel/side.svg",
  32562. extra: 958 / 958,
  32563. bottom: 11 / 969
  32564. }
  32565. },
  32566. back: {
  32567. height: math.unit(6, "feet"),
  32568. weight: math.unit(135, "lb"),
  32569. name: "Back",
  32570. image: {
  32571. source: "./media/characters/axel/back.svg",
  32572. extra: 887 / 887,
  32573. bottom: 34 / 921
  32574. }
  32575. },
  32576. head: {
  32577. height: math.unit(1.07, "feet"),
  32578. name: "Head",
  32579. image: {
  32580. source: "./media/characters/axel/head.svg"
  32581. }
  32582. },
  32583. beak: {
  32584. height: math.unit(1.4, "feet"),
  32585. name: "Beak",
  32586. image: {
  32587. source: "./media/characters/axel/beak.svg"
  32588. }
  32589. },
  32590. beakSide: {
  32591. height: math.unit(1.4, "feet"),
  32592. name: "Beak Side",
  32593. image: {
  32594. source: "./media/characters/axel/beak-side.svg"
  32595. }
  32596. },
  32597. sheath: {
  32598. height: math.unit(0.5, "feet"),
  32599. name: "Sheath",
  32600. image: {
  32601. source: "./media/characters/axel/sheath.svg"
  32602. }
  32603. },
  32604. dick: {
  32605. height: math.unit(0.98, "feet"),
  32606. name: "Dick",
  32607. image: {
  32608. source: "./media/characters/axel/dick.svg"
  32609. }
  32610. },
  32611. },
  32612. [
  32613. {
  32614. name: "Macro",
  32615. height: math.unit(68, "meters"),
  32616. default: true
  32617. },
  32618. ]
  32619. ))
  32620. characterMakers.push(() => makeCharacter(
  32621. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32622. {
  32623. front: {
  32624. height: math.unit(3.5, "meters"),
  32625. weight: math.unit(1200, "kg"),
  32626. name: "Front",
  32627. image: {
  32628. source: "./media/characters/joanna/front.svg",
  32629. extra: 1596 / 1488,
  32630. bottom: 29 / 1625
  32631. }
  32632. },
  32633. back: {
  32634. height: math.unit(3.5, "meters"),
  32635. weight: math.unit(1200, "kg"),
  32636. name: "Back",
  32637. image: {
  32638. source: "./media/characters/joanna/back.svg",
  32639. extra: 1594 / 1495,
  32640. bottom: 26 / 1620
  32641. }
  32642. },
  32643. frontShorts: {
  32644. height: math.unit(3.5, "meters"),
  32645. weight: math.unit(1200, "kg"),
  32646. name: "Front (Shorts)",
  32647. image: {
  32648. source: "./media/characters/joanna/front-shorts.svg",
  32649. extra: 1596 / 1488,
  32650. bottom: 29 / 1625
  32651. }
  32652. },
  32653. frontBiker: {
  32654. height: math.unit(3.5, "meters"),
  32655. weight: math.unit(1200, "kg"),
  32656. name: "Front (Biker)",
  32657. image: {
  32658. source: "./media/characters/joanna/front-biker.svg",
  32659. extra: 1596 / 1488,
  32660. bottom: 29 / 1625
  32661. }
  32662. },
  32663. backBiker: {
  32664. height: math.unit(3.5, "meters"),
  32665. weight: math.unit(1200, "kg"),
  32666. name: "Back (Biker)",
  32667. image: {
  32668. source: "./media/characters/joanna/back-biker.svg",
  32669. extra: 1594 / 1495,
  32670. bottom: 88 / 1682
  32671. }
  32672. },
  32673. bikeLeft: {
  32674. height: math.unit(2.4, "meters"),
  32675. weight: math.unit(1600, "kg"),
  32676. name: "Bike (Left)",
  32677. image: {
  32678. source: "./media/characters/joanna/bike-left.svg",
  32679. extra: 720 / 720,
  32680. bottom: 8 / 728
  32681. }
  32682. },
  32683. bikeRight: {
  32684. height: math.unit(2.4, "meters"),
  32685. weight: math.unit(1600, "kg"),
  32686. name: "Bike (Right)",
  32687. image: {
  32688. source: "./media/characters/joanna/bike-right.svg",
  32689. extra: 720 / 720,
  32690. bottom: 8 / 728
  32691. }
  32692. },
  32693. },
  32694. [
  32695. {
  32696. name: "Incognito",
  32697. height: math.unit(3.5, "meters")
  32698. },
  32699. {
  32700. name: "Casual Big",
  32701. height: math.unit(200, "meters")
  32702. },
  32703. {
  32704. name: "Macro",
  32705. height: math.unit(600, "meters")
  32706. },
  32707. {
  32708. name: "Original",
  32709. height: math.unit(20, "km"),
  32710. default: true
  32711. },
  32712. {
  32713. name: "Giga",
  32714. height: math.unit(400, "km")
  32715. },
  32716. {
  32717. name: "Lounging",
  32718. height: math.unit(1500, "km")
  32719. },
  32720. {
  32721. name: "Planetary",
  32722. height: math.unit(200000, "km")
  32723. },
  32724. ]
  32725. ))
  32726. characterMakers.push(() => makeCharacter(
  32727. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32728. {
  32729. front: {
  32730. height: math.unit(6, "feet"),
  32731. weight: math.unit(150, "lb"),
  32732. name: "Front",
  32733. image: {
  32734. source: "./media/characters/hugo-sigil/front.svg",
  32735. extra: 522 / 500,
  32736. bottom: 2 / 524
  32737. }
  32738. },
  32739. back: {
  32740. height: math.unit(6, "feet"),
  32741. weight: math.unit(150, "lb"),
  32742. name: "Back",
  32743. image: {
  32744. source: "./media/characters/hugo-sigil/back.svg",
  32745. extra: 519 / 495,
  32746. bottom: 5 / 524
  32747. }
  32748. },
  32749. maw: {
  32750. height: math.unit(1.4, "feet"),
  32751. weight: math.unit(150, "lb"),
  32752. name: "Maw",
  32753. image: {
  32754. source: "./media/characters/hugo-sigil/maw.svg"
  32755. }
  32756. },
  32757. feet: {
  32758. height: math.unit(1.56, "feet"),
  32759. weight: math.unit(150, "lb"),
  32760. name: "Feet",
  32761. image: {
  32762. source: "./media/characters/hugo-sigil/feet.svg",
  32763. extra: 177 / 177,
  32764. bottom: 12 / 189
  32765. }
  32766. },
  32767. },
  32768. [
  32769. {
  32770. name: "Normal",
  32771. height: math.unit(6, "feet")
  32772. },
  32773. {
  32774. name: "Macro",
  32775. height: math.unit(200, "feet"),
  32776. default: true
  32777. },
  32778. ]
  32779. ))
  32780. characterMakers.push(() => makeCharacter(
  32781. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32782. {
  32783. front: {
  32784. height: math.unit(6, "feet"),
  32785. weight: math.unit(150, "lb"),
  32786. name: "Front",
  32787. image: {
  32788. source: "./media/characters/peri/front.svg",
  32789. extra: 2354 / 2233,
  32790. bottom: 49 / 2403
  32791. }
  32792. },
  32793. },
  32794. [
  32795. {
  32796. name: "Really Small",
  32797. height: math.unit(1, "nm")
  32798. },
  32799. {
  32800. name: "Micro",
  32801. height: math.unit(4, "inches")
  32802. },
  32803. {
  32804. name: "Normal",
  32805. height: math.unit(7, "inches"),
  32806. default: true
  32807. },
  32808. {
  32809. name: "Macro",
  32810. height: math.unit(400, "feet")
  32811. },
  32812. {
  32813. name: "Megamacro",
  32814. height: math.unit(100, "miles")
  32815. },
  32816. ]
  32817. ))
  32818. characterMakers.push(() => makeCharacter(
  32819. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32820. {
  32821. frontSlim: {
  32822. height: math.unit(7, "feet"),
  32823. name: "Front (Slim)",
  32824. image: {
  32825. source: "./media/characters/issilora/front-slim.svg",
  32826. extra: 529 / 449,
  32827. bottom: 53 / 582
  32828. }
  32829. },
  32830. sideSlim: {
  32831. height: math.unit(7, "feet"),
  32832. name: "Side (Slim)",
  32833. image: {
  32834. source: "./media/characters/issilora/side-slim.svg",
  32835. extra: 570 / 480,
  32836. bottom: 30 / 600
  32837. }
  32838. },
  32839. backSlim: {
  32840. height: math.unit(7, "feet"),
  32841. name: "Back (Slim)",
  32842. image: {
  32843. source: "./media/characters/issilora/back-slim.svg",
  32844. extra: 537 / 455,
  32845. bottom: 46 / 583
  32846. }
  32847. },
  32848. frontBuff: {
  32849. height: math.unit(7, "feet"),
  32850. name: "Front (Buff)",
  32851. image: {
  32852. source: "./media/characters/issilora/front-buff.svg",
  32853. extra: 2310 / 2035,
  32854. bottom: 335 / 2645
  32855. }
  32856. },
  32857. head: {
  32858. height: math.unit(1.94, "feet"),
  32859. name: "Head",
  32860. image: {
  32861. source: "./media/characters/issilora/head.svg"
  32862. }
  32863. },
  32864. },
  32865. [
  32866. {
  32867. name: "Minimum",
  32868. height: math.unit(7, "feet")
  32869. },
  32870. {
  32871. name: "Comfortable",
  32872. height: math.unit(17, "feet")
  32873. },
  32874. {
  32875. name: "Fun Size",
  32876. height: math.unit(47, "feet")
  32877. },
  32878. {
  32879. name: "Natural Macro",
  32880. height: math.unit(137, "feet"),
  32881. default: true
  32882. },
  32883. {
  32884. name: "Maximum Kaiju",
  32885. height: math.unit(397, "feet")
  32886. },
  32887. ]
  32888. ))
  32889. characterMakers.push(() => makeCharacter(
  32890. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32891. {
  32892. front: {
  32893. height: math.unit(50 + 9/12, "feet"),
  32894. weight: math.unit(32.8, "tons"),
  32895. name: "Front",
  32896. image: {
  32897. source: "./media/characters/irb'iiritaahn/front.svg",
  32898. extra: 1878/1826,
  32899. bottom: 326/2204
  32900. }
  32901. },
  32902. back: {
  32903. height: math.unit(50 + 9/12, "feet"),
  32904. weight: math.unit(32.8, "tons"),
  32905. name: "Back",
  32906. image: {
  32907. source: "./media/characters/irb'iiritaahn/back.svg",
  32908. extra: 2052/2018,
  32909. bottom: 152/2204
  32910. }
  32911. },
  32912. head: {
  32913. height: math.unit(12.86, "feet"),
  32914. name: "Head",
  32915. image: {
  32916. source: "./media/characters/irb'iiritaahn/head.svg"
  32917. }
  32918. },
  32919. maw: {
  32920. height: math.unit(9.66, "feet"),
  32921. name: "Maw",
  32922. image: {
  32923. source: "./media/characters/irb'iiritaahn/maw.svg"
  32924. }
  32925. },
  32926. frontDick: {
  32927. height: math.unit(8.78461, "feet"),
  32928. name: "Front Dick",
  32929. image: {
  32930. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32931. }
  32932. },
  32933. rearDick: {
  32934. height: math.unit(8.78461, "feet"),
  32935. name: "Rear Dick",
  32936. image: {
  32937. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32938. }
  32939. },
  32940. rearDickUnfolded: {
  32941. height: math.unit(8.78, "feet"),
  32942. name: "Rear Dick (Unfolded)",
  32943. image: {
  32944. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32945. }
  32946. },
  32947. wings: {
  32948. height: math.unit(43, "feet"),
  32949. name: "Wings",
  32950. image: {
  32951. source: "./media/characters/irb'iiritaahn/wings.svg"
  32952. }
  32953. },
  32954. },
  32955. [
  32956. {
  32957. name: "Macro",
  32958. height: math.unit(50 + 9/12, "feet"),
  32959. default: true
  32960. },
  32961. ]
  32962. ))
  32963. characterMakers.push(() => makeCharacter(
  32964. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32965. {
  32966. front: {
  32967. height: math.unit(205, "cm"),
  32968. weight: math.unit(102, "kg"),
  32969. name: "Front",
  32970. image: {
  32971. source: "./media/characters/irbisgreif/front.svg",
  32972. extra: 785/706,
  32973. bottom: 13/798
  32974. }
  32975. },
  32976. back: {
  32977. height: math.unit(205, "cm"),
  32978. weight: math.unit(102, "kg"),
  32979. name: "Back",
  32980. image: {
  32981. source: "./media/characters/irbisgreif/back.svg",
  32982. extra: 713/701,
  32983. bottom: 26/739
  32984. }
  32985. },
  32986. frontDressed: {
  32987. height: math.unit(216, "cm"),
  32988. weight: math.unit(102, "kg"),
  32989. name: "Front-dressed",
  32990. image: {
  32991. source: "./media/characters/irbisgreif/front-dressed.svg",
  32992. extra: 902/776,
  32993. bottom: 14/916
  32994. }
  32995. },
  32996. sideDressed: {
  32997. height: math.unit(195, "cm"),
  32998. weight: math.unit(102, "kg"),
  32999. name: "Side-dressed",
  33000. image: {
  33001. source: "./media/characters/irbisgreif/side-dressed.svg",
  33002. extra: 788/688,
  33003. bottom: 21/809
  33004. }
  33005. },
  33006. backDressed: {
  33007. height: math.unit(216, "cm"),
  33008. weight: math.unit(102, "kg"),
  33009. name: "Back-dressed",
  33010. image: {
  33011. source: "./media/characters/irbisgreif/back-dressed.svg",
  33012. extra: 901/783,
  33013. bottom: 10/911
  33014. }
  33015. },
  33016. dick: {
  33017. height: math.unit(0.49, "feet"),
  33018. name: "Dick",
  33019. image: {
  33020. source: "./media/characters/irbisgreif/dick.svg"
  33021. }
  33022. },
  33023. wingTop: {
  33024. height: math.unit(1.93 , "feet"),
  33025. name: "Wing-top",
  33026. image: {
  33027. source: "./media/characters/irbisgreif/wing-top.svg"
  33028. }
  33029. },
  33030. wingBottom: {
  33031. height: math.unit(1.93 , "feet"),
  33032. name: "Wing-bottom",
  33033. image: {
  33034. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33035. }
  33036. },
  33037. },
  33038. [
  33039. {
  33040. name: "Normal",
  33041. height: math.unit(216, "cm"),
  33042. default: true
  33043. },
  33044. ]
  33045. ))
  33046. characterMakers.push(() => makeCharacter(
  33047. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33048. {
  33049. front: {
  33050. height: math.unit(6, "feet"),
  33051. weight: math.unit(150, "lb"),
  33052. name: "Front",
  33053. image: {
  33054. source: "./media/characters/pride/front.svg",
  33055. extra: 1299/1230,
  33056. bottom: 18/1317
  33057. }
  33058. },
  33059. },
  33060. [
  33061. {
  33062. name: "Normal",
  33063. height: math.unit(7, "feet")
  33064. },
  33065. {
  33066. name: "Mini-macro",
  33067. height: math.unit(11, "feet")
  33068. },
  33069. {
  33070. name: "Macro",
  33071. height: math.unit(15, "meters"),
  33072. default: true
  33073. },
  33074. {
  33075. name: "Macro+",
  33076. height: math.unit(40, "meters")
  33077. },
  33078. ]
  33079. ))
  33080. characterMakers.push(() => makeCharacter(
  33081. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33082. {
  33083. front: {
  33084. height: math.unit(4 + 2 / 12, "feet"),
  33085. weight: math.unit(95, "lb"),
  33086. name: "Front",
  33087. image: {
  33088. source: "./media/characters/vaelophis-nyx/front.svg",
  33089. extra: 2532/2330,
  33090. bottom: 0/2532
  33091. }
  33092. },
  33093. back: {
  33094. height: math.unit(4 + 2 / 12, "feet"),
  33095. weight: math.unit(95, "lb"),
  33096. name: "Back",
  33097. image: {
  33098. source: "./media/characters/vaelophis-nyx/back.svg",
  33099. extra: 2484/2361,
  33100. bottom: 0/2484
  33101. }
  33102. },
  33103. feralSide: {
  33104. height: math.unit(2 + 1/12, "feet"),
  33105. weight: math.unit(20, "lb"),
  33106. name: "Feral (Side)",
  33107. image: {
  33108. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33109. extra: 1721/1581,
  33110. bottom: 70/1791
  33111. }
  33112. },
  33113. feralLazing: {
  33114. height: math.unit(1.08, "feet"),
  33115. weight: math.unit(20, "lb"),
  33116. name: "Feral (Lazing)",
  33117. image: {
  33118. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33119. extra: 822/822,
  33120. bottom: 248/1070
  33121. }
  33122. },
  33123. ear: {
  33124. height: math.unit(0.416, "feet"),
  33125. name: "Ear",
  33126. image: {
  33127. source: "./media/characters/vaelophis-nyx/ear.svg"
  33128. }
  33129. },
  33130. eye: {
  33131. height: math.unit(0.0748, "feet"),
  33132. name: "Eye",
  33133. image: {
  33134. source: "./media/characters/vaelophis-nyx/eye.svg"
  33135. }
  33136. },
  33137. mouth: {
  33138. height: math.unit(0.378, "feet"),
  33139. name: "Mouth",
  33140. image: {
  33141. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33142. }
  33143. },
  33144. spade: {
  33145. height: math.unit(0.55, "feet"),
  33146. name: "Spade",
  33147. image: {
  33148. source: "./media/characters/vaelophis-nyx/spade.svg"
  33149. }
  33150. },
  33151. },
  33152. [
  33153. {
  33154. name: "Normal",
  33155. height: math.unit(4 + 2/12, "feet"),
  33156. default: true
  33157. },
  33158. ]
  33159. ))
  33160. characterMakers.push(() => makeCharacter(
  33161. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33162. {
  33163. front: {
  33164. height: math.unit(7, "feet"),
  33165. weight: math.unit(231, "lb"),
  33166. name: "Front",
  33167. image: {
  33168. source: "./media/characters/flux/front.svg",
  33169. extra: 919/871,
  33170. bottom: 0/919
  33171. }
  33172. },
  33173. back: {
  33174. height: math.unit(7, "feet"),
  33175. weight: math.unit(231, "lb"),
  33176. name: "Back",
  33177. image: {
  33178. source: "./media/characters/flux/back.svg",
  33179. extra: 1040/992,
  33180. bottom: 0/1040
  33181. }
  33182. },
  33183. frontDressed: {
  33184. height: math.unit(7, "feet"),
  33185. weight: math.unit(231, "lb"),
  33186. name: "Front (Dressed)",
  33187. image: {
  33188. source: "./media/characters/flux/front-dressed.svg",
  33189. extra: 919/871,
  33190. bottom: 0/919
  33191. }
  33192. },
  33193. feralSide: {
  33194. height: math.unit(5, "feet"),
  33195. weight: math.unit(150, "lb"),
  33196. name: "Feral (Side)",
  33197. image: {
  33198. source: "./media/characters/flux/feral-side.svg",
  33199. extra: 598/528,
  33200. bottom: 28/626
  33201. }
  33202. },
  33203. head: {
  33204. height: math.unit(1.585, "feet"),
  33205. name: "Head",
  33206. image: {
  33207. source: "./media/characters/flux/head.svg"
  33208. }
  33209. },
  33210. headSide: {
  33211. height: math.unit(1.74, "feet"),
  33212. name: "Head (Side)",
  33213. image: {
  33214. source: "./media/characters/flux/head-side.svg"
  33215. }
  33216. },
  33217. headSideFire: {
  33218. height: math.unit(1.76, "feet"),
  33219. name: "Head (Side, Fire)",
  33220. image: {
  33221. source: "./media/characters/flux/head-side-fire.svg"
  33222. }
  33223. },
  33224. },
  33225. [
  33226. {
  33227. name: "Normal",
  33228. height: math.unit(7, "feet"),
  33229. default: true
  33230. },
  33231. ]
  33232. ))
  33233. characterMakers.push(() => makeCharacter(
  33234. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33235. {
  33236. front: {
  33237. height: math.unit(9, "feet"),
  33238. weight: math.unit(1012, "lb"),
  33239. name: "Front",
  33240. image: {
  33241. source: "./media/characters/ulfra-lupae/front.svg",
  33242. extra: 1083/1011,
  33243. bottom: 67/1150
  33244. }
  33245. },
  33246. },
  33247. [
  33248. {
  33249. name: "Micro",
  33250. height: math.unit(6, "inches")
  33251. },
  33252. {
  33253. name: "Socializing",
  33254. height: math.unit(6 + 5/12, "feet")
  33255. },
  33256. {
  33257. name: "Normal",
  33258. height: math.unit(9, "feet"),
  33259. default: true
  33260. },
  33261. {
  33262. name: "Macro",
  33263. height: math.unit(150, "feet")
  33264. },
  33265. ]
  33266. ))
  33267. characterMakers.push(() => makeCharacter(
  33268. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33269. {
  33270. front: {
  33271. height: math.unit(5 + 2/12, "feet"),
  33272. weight: math.unit(120, "lb"),
  33273. name: "Front",
  33274. image: {
  33275. source: "./media/characters/timber/front.svg",
  33276. extra: 2814/2705,
  33277. bottom: 181/2995
  33278. }
  33279. },
  33280. },
  33281. [
  33282. {
  33283. name: "Normal",
  33284. height: math.unit(5 + 2/12, "feet"),
  33285. default: true
  33286. },
  33287. ]
  33288. ))
  33289. characterMakers.push(() => makeCharacter(
  33290. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33291. {
  33292. front: {
  33293. height: math.unit(9, "feet"),
  33294. name: "Front",
  33295. image: {
  33296. source: "./media/characters/nicki/front.svg",
  33297. extra: 1240/990,
  33298. bottom: 45/1285
  33299. },
  33300. form: "anthro",
  33301. default: true
  33302. },
  33303. side: {
  33304. height: math.unit(9, "feet"),
  33305. name: "Side",
  33306. image: {
  33307. source: "./media/characters/nicki/side.svg",
  33308. extra: 1047/973,
  33309. bottom: 61/1108
  33310. },
  33311. form: "anthro"
  33312. },
  33313. back: {
  33314. height: math.unit(9, "feet"),
  33315. name: "Back",
  33316. image: {
  33317. source: "./media/characters/nicki/back.svg",
  33318. extra: 1006/965,
  33319. bottom: 39/1045
  33320. },
  33321. form: "anthro"
  33322. },
  33323. taur: {
  33324. height: math.unit(15, "feet"),
  33325. name: "Taur",
  33326. image: {
  33327. source: "./media/characters/nicki/taur.svg",
  33328. extra: 1592/1347,
  33329. bottom: 0/1592
  33330. },
  33331. form: "taur",
  33332. default: true
  33333. },
  33334. },
  33335. [
  33336. {
  33337. name: "Normal",
  33338. height: math.unit(9, "feet"),
  33339. form: "anthro",
  33340. default: true
  33341. },
  33342. {
  33343. name: "Normal",
  33344. height: math.unit(15, "feet"),
  33345. form: "taur",
  33346. default: true
  33347. }
  33348. ],
  33349. {
  33350. "anthro": {
  33351. name: "Anthro",
  33352. default: true
  33353. },
  33354. "taur": {
  33355. name: "Taur"
  33356. }
  33357. }
  33358. ))
  33359. characterMakers.push(() => makeCharacter(
  33360. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33361. {
  33362. front: {
  33363. height: math.unit(7 + 10/12, "feet"),
  33364. weight: math.unit(3.5, "tons"),
  33365. name: "Front",
  33366. image: {
  33367. source: "./media/characters/lee/front.svg",
  33368. extra: 1773/1615,
  33369. bottom: 86/1859
  33370. }
  33371. },
  33372. hand: {
  33373. height: math.unit(1.78, "feet"),
  33374. name: "Hand",
  33375. image: {
  33376. source: "./media/characters/lee/hand.svg"
  33377. }
  33378. },
  33379. maw: {
  33380. height: math.unit(1.18, "feet"),
  33381. name: "Maw",
  33382. image: {
  33383. source: "./media/characters/lee/maw.svg"
  33384. }
  33385. },
  33386. },
  33387. [
  33388. {
  33389. name: "Normal",
  33390. height: math.unit(7 + 10/12, "feet"),
  33391. default: true
  33392. },
  33393. ]
  33394. ))
  33395. characterMakers.push(() => makeCharacter(
  33396. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33397. {
  33398. front: {
  33399. height: math.unit(9, "feet"),
  33400. name: "Front",
  33401. image: {
  33402. source: "./media/characters/guti/front.svg",
  33403. extra: 4551/4355,
  33404. bottom: 123/4674
  33405. }
  33406. },
  33407. tongue: {
  33408. height: math.unit(1, "feet"),
  33409. name: "Tongue",
  33410. image: {
  33411. source: "./media/characters/guti/tongue.svg"
  33412. }
  33413. },
  33414. paw: {
  33415. height: math.unit(1.18, "feet"),
  33416. name: "Paw",
  33417. image: {
  33418. source: "./media/characters/guti/paw.svg"
  33419. }
  33420. },
  33421. },
  33422. [
  33423. {
  33424. name: "Normal",
  33425. height: math.unit(9, "feet"),
  33426. default: true
  33427. },
  33428. ]
  33429. ))
  33430. characterMakers.push(() => makeCharacter(
  33431. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33432. {
  33433. side: {
  33434. height: math.unit(5, "meters"),
  33435. name: "Side",
  33436. image: {
  33437. source: "./media/characters/vesper/side.svg",
  33438. extra: 1605/1518,
  33439. bottom: 0/1605
  33440. }
  33441. },
  33442. },
  33443. [
  33444. {
  33445. name: "Small",
  33446. height: math.unit(5, "meters")
  33447. },
  33448. {
  33449. name: "Sage",
  33450. height: math.unit(100, "meters"),
  33451. default: true
  33452. },
  33453. {
  33454. name: "Fun Size",
  33455. height: math.unit(600, "meters")
  33456. },
  33457. {
  33458. name: "Goddess",
  33459. height: math.unit(20000, "km")
  33460. },
  33461. {
  33462. name: "Maximum",
  33463. height: math.unit(5, "galaxies")
  33464. },
  33465. ]
  33466. ))
  33467. characterMakers.push(() => makeCharacter(
  33468. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33469. {
  33470. front: {
  33471. height: math.unit(6 + 3/12, "feet"),
  33472. weight: math.unit(190, "lb"),
  33473. name: "Front",
  33474. image: {
  33475. source: "./media/characters/gawain/front.svg",
  33476. extra: 2222/2139,
  33477. bottom: 90/2312
  33478. }
  33479. },
  33480. back: {
  33481. height: math.unit(6 + 3/12, "feet"),
  33482. weight: math.unit(190, "lb"),
  33483. name: "Back",
  33484. image: {
  33485. source: "./media/characters/gawain/back.svg",
  33486. extra: 2199/2111,
  33487. bottom: 73/2272
  33488. }
  33489. },
  33490. },
  33491. [
  33492. {
  33493. name: "Normal",
  33494. height: math.unit(6 + 3/12, "feet"),
  33495. default: true
  33496. },
  33497. ]
  33498. ))
  33499. characterMakers.push(() => makeCharacter(
  33500. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33501. {
  33502. side: {
  33503. height: math.unit(3.5, "meters"),
  33504. weight: math.unit(16000, "lb"),
  33505. name: "Side",
  33506. image: {
  33507. source: "./media/characters/dascalti/side.svg",
  33508. extra: 392/273,
  33509. bottom: 47/439
  33510. }
  33511. },
  33512. breath: {
  33513. height: math.unit(7.4, "feet"),
  33514. name: "Breath",
  33515. image: {
  33516. source: "./media/characters/dascalti/breath.svg"
  33517. }
  33518. },
  33519. fed: {
  33520. height: math.unit(3.6, "meters"),
  33521. weight: math.unit(16000, "lb"),
  33522. name: "Fed",
  33523. image: {
  33524. source: "./media/characters/dascalti/fed.svg",
  33525. extra: 1419/820,
  33526. bottom: 95/1514
  33527. }
  33528. },
  33529. },
  33530. [
  33531. {
  33532. name: "Normal",
  33533. height: math.unit(3.5, "meters"),
  33534. default: true
  33535. },
  33536. ]
  33537. ))
  33538. characterMakers.push(() => makeCharacter(
  33539. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33540. {
  33541. front: {
  33542. height: math.unit(3 + 5/12, "feet"),
  33543. name: "Front",
  33544. image: {
  33545. source: "./media/characters/mauve/front.svg",
  33546. extra: 1126/1033,
  33547. bottom: 65/1191
  33548. }
  33549. },
  33550. side: {
  33551. height: math.unit(3 + 5/12, "feet"),
  33552. name: "Side",
  33553. image: {
  33554. source: "./media/characters/mauve/side.svg",
  33555. extra: 1089/1001,
  33556. bottom: 29/1118
  33557. }
  33558. },
  33559. back: {
  33560. height: math.unit(3 + 5/12, "feet"),
  33561. name: "Back",
  33562. image: {
  33563. source: "./media/characters/mauve/back.svg",
  33564. extra: 1173/1053,
  33565. bottom: 109/1282
  33566. }
  33567. },
  33568. },
  33569. [
  33570. {
  33571. name: "Normal",
  33572. height: math.unit(3 + 5/12, "feet"),
  33573. default: true
  33574. },
  33575. ]
  33576. ))
  33577. characterMakers.push(() => makeCharacter(
  33578. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33579. {
  33580. front: {
  33581. height: math.unit(6 + 3/12, "feet"),
  33582. weight: math.unit(430, "lb"),
  33583. name: "Front",
  33584. image: {
  33585. source: "./media/characters/carlos/front.svg",
  33586. extra: 1964/1913,
  33587. bottom: 70/2034
  33588. }
  33589. },
  33590. },
  33591. [
  33592. {
  33593. name: "Normal",
  33594. height: math.unit(6 + 3/12, "feet"),
  33595. default: true
  33596. },
  33597. ]
  33598. ))
  33599. characterMakers.push(() => makeCharacter(
  33600. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33601. {
  33602. back: {
  33603. height: math.unit(5 + 10/12, "feet"),
  33604. weight: math.unit(200, "lb"),
  33605. name: "Back",
  33606. image: {
  33607. source: "./media/characters/jax/back.svg",
  33608. extra: 764/739,
  33609. bottom: 25/789
  33610. }
  33611. },
  33612. },
  33613. [
  33614. {
  33615. name: "Normal",
  33616. height: math.unit(5 + 10/12, "feet"),
  33617. default: true
  33618. },
  33619. ]
  33620. ))
  33621. characterMakers.push(() => makeCharacter(
  33622. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33623. {
  33624. front: {
  33625. height: math.unit(8, "feet"),
  33626. weight: math.unit(250, "lb"),
  33627. name: "Front",
  33628. image: {
  33629. source: "./media/characters/eikthynir/front.svg",
  33630. extra: 1332/1166,
  33631. bottom: 82/1414
  33632. }
  33633. },
  33634. back: {
  33635. height: math.unit(8, "feet"),
  33636. weight: math.unit(250, "lb"),
  33637. name: "Back",
  33638. image: {
  33639. source: "./media/characters/eikthynir/back.svg",
  33640. extra: 1342/1190,
  33641. bottom: 19/1361
  33642. }
  33643. },
  33644. dick: {
  33645. height: math.unit(2.35, "feet"),
  33646. name: "Dick",
  33647. image: {
  33648. source: "./media/characters/eikthynir/dick.svg"
  33649. }
  33650. },
  33651. },
  33652. [
  33653. {
  33654. name: "Normal",
  33655. height: math.unit(8, "feet"),
  33656. default: true
  33657. },
  33658. ]
  33659. ))
  33660. characterMakers.push(() => makeCharacter(
  33661. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33662. {
  33663. front: {
  33664. height: math.unit(99, "meters"),
  33665. weight: math.unit(13000, "tons"),
  33666. name: "Front",
  33667. image: {
  33668. source: "./media/characters/zlmos/front.svg",
  33669. extra: 2202/1992,
  33670. bottom: 315/2517
  33671. }
  33672. },
  33673. },
  33674. [
  33675. {
  33676. name: "Macro",
  33677. height: math.unit(99, "meters"),
  33678. default: true
  33679. },
  33680. ]
  33681. ))
  33682. characterMakers.push(() => makeCharacter(
  33683. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33684. {
  33685. front: {
  33686. height: math.unit(6 + 5/12, "feet"),
  33687. name: "Front",
  33688. image: {
  33689. source: "./media/characters/purri/front.svg",
  33690. extra: 1698/1610,
  33691. bottom: 32/1730
  33692. }
  33693. },
  33694. frontAlt: {
  33695. height: math.unit(6 + 5/12, "feet"),
  33696. name: "Front (Alt)",
  33697. image: {
  33698. source: "./media/characters/purri/front-alt.svg",
  33699. extra: 450/420,
  33700. bottom: 26/476
  33701. }
  33702. },
  33703. boots: {
  33704. height: math.unit(5.5, "feet"),
  33705. name: "Boots",
  33706. image: {
  33707. source: "./media/characters/purri/boots.svg",
  33708. extra: 905/853,
  33709. bottom: 18/923
  33710. }
  33711. },
  33712. lying: {
  33713. height: math.unit(2, "feet"),
  33714. name: "Lying",
  33715. image: {
  33716. source: "./media/characters/purri/lying.svg",
  33717. extra: 940/843,
  33718. bottom: 146/1086
  33719. }
  33720. },
  33721. devious: {
  33722. height: math.unit(1.77, "feet"),
  33723. name: "Devious",
  33724. image: {
  33725. source: "./media/characters/purri/devious.svg",
  33726. extra: 1440/1155,
  33727. bottom: 147/1587
  33728. }
  33729. },
  33730. bean: {
  33731. height: math.unit(1.94, "feet"),
  33732. name: "Bean",
  33733. image: {
  33734. source: "./media/characters/purri/bean.svg"
  33735. }
  33736. },
  33737. },
  33738. [
  33739. {
  33740. name: "Micro",
  33741. height: math.unit(1, "mm")
  33742. },
  33743. {
  33744. name: "Normal",
  33745. height: math.unit(6 + 5/12, "feet"),
  33746. default: true
  33747. },
  33748. {
  33749. name: "Macro :3c",
  33750. height: math.unit(2, "miles")
  33751. },
  33752. ]
  33753. ))
  33754. characterMakers.push(() => makeCharacter(
  33755. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33756. {
  33757. front: {
  33758. height: math.unit(6 + 2/12, "feet"),
  33759. weight: math.unit(250, "lb"),
  33760. name: "Front",
  33761. image: {
  33762. source: "./media/characters/moonlight/front.svg",
  33763. extra: 1044/908,
  33764. bottom: 56/1100
  33765. }
  33766. },
  33767. feral: {
  33768. height: math.unit(3 + 1/12, "feet"),
  33769. weight: math.unit(50, "kg"),
  33770. name: "Feral",
  33771. image: {
  33772. source: "./media/characters/moonlight/feral.svg",
  33773. extra: 3705/2791,
  33774. bottom: 145/3850
  33775. }
  33776. },
  33777. paw: {
  33778. height: math.unit(1, "feet"),
  33779. name: "Paw",
  33780. image: {
  33781. source: "./media/characters/moonlight/paw.svg"
  33782. }
  33783. },
  33784. paws: {
  33785. height: math.unit(0.98, "feet"),
  33786. name: "Paws",
  33787. image: {
  33788. source: "./media/characters/moonlight/paws.svg",
  33789. extra: 939/939,
  33790. bottom: 50/989
  33791. }
  33792. },
  33793. mouth: {
  33794. height: math.unit(0.48, "feet"),
  33795. name: "Mouth",
  33796. image: {
  33797. source: "./media/characters/moonlight/mouth.svg"
  33798. }
  33799. },
  33800. dick: {
  33801. height: math.unit(1.46, "feet"),
  33802. name: "Dick",
  33803. image: {
  33804. source: "./media/characters/moonlight/dick.svg"
  33805. }
  33806. },
  33807. },
  33808. [
  33809. {
  33810. name: "Normal",
  33811. height: math.unit(6 + 2/12, "feet"),
  33812. default: true
  33813. },
  33814. {
  33815. name: "Macro",
  33816. height: math.unit(300, "feet")
  33817. },
  33818. {
  33819. name: "Macro+",
  33820. height: math.unit(1, "mile")
  33821. },
  33822. {
  33823. name: "Mt. Moon",
  33824. height: math.unit(5, "miles")
  33825. },
  33826. {
  33827. name: "Megamacro",
  33828. height: math.unit(15, "miles")
  33829. },
  33830. ]
  33831. ))
  33832. characterMakers.push(() => makeCharacter(
  33833. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33834. {
  33835. back: {
  33836. height: math.unit(6, "feet"),
  33837. weight: math.unit(150, "lb"),
  33838. name: "Back",
  33839. image: {
  33840. source: "./media/characters/sylen/back.svg",
  33841. extra: 1335/1273,
  33842. bottom: 107/1442
  33843. }
  33844. },
  33845. },
  33846. [
  33847. {
  33848. name: "Normal",
  33849. height: math.unit(5 + 5/12, "feet")
  33850. },
  33851. {
  33852. name: "Megamacro",
  33853. height: math.unit(3, "miles"),
  33854. default: true
  33855. },
  33856. ]
  33857. ))
  33858. characterMakers.push(() => makeCharacter(
  33859. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33860. {
  33861. front: {
  33862. height: math.unit(6, "feet"),
  33863. weight: math.unit(190, "lb"),
  33864. name: "Front",
  33865. image: {
  33866. source: "./media/characters/huttser/front.svg",
  33867. extra: 1152/1058,
  33868. bottom: 23/1175
  33869. }
  33870. },
  33871. side: {
  33872. height: math.unit(6, "feet"),
  33873. weight: math.unit(190, "lb"),
  33874. name: "Side",
  33875. image: {
  33876. source: "./media/characters/huttser/side.svg",
  33877. extra: 1174/1065,
  33878. bottom: 18/1192
  33879. }
  33880. },
  33881. back: {
  33882. height: math.unit(6, "feet"),
  33883. weight: math.unit(190, "lb"),
  33884. name: "Back",
  33885. image: {
  33886. source: "./media/characters/huttser/back.svg",
  33887. extra: 1158/1056,
  33888. bottom: 12/1170
  33889. }
  33890. },
  33891. },
  33892. [
  33893. ]
  33894. ))
  33895. characterMakers.push(() => makeCharacter(
  33896. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33897. {
  33898. side: {
  33899. height: math.unit(12 + 9/12, "feet"),
  33900. weight: math.unit(15000, "lb"),
  33901. name: "Side",
  33902. image: {
  33903. source: "./media/characters/faan/side.svg",
  33904. extra: 2747/2697,
  33905. bottom: 0/2747
  33906. }
  33907. },
  33908. front: {
  33909. height: math.unit(12 + 9/12, "feet"),
  33910. weight: math.unit(15000, "lb"),
  33911. name: "Front",
  33912. image: {
  33913. source: "./media/characters/faan/front.svg",
  33914. extra: 607/571,
  33915. bottom: 24/631
  33916. }
  33917. },
  33918. head: {
  33919. height: math.unit(2.85, "feet"),
  33920. name: "Head",
  33921. image: {
  33922. source: "./media/characters/faan/head.svg"
  33923. }
  33924. },
  33925. headAlt: {
  33926. height: math.unit(3.13, "feet"),
  33927. name: "Head-alt",
  33928. image: {
  33929. source: "./media/characters/faan/head-alt.svg"
  33930. }
  33931. },
  33932. },
  33933. [
  33934. {
  33935. name: "Normal",
  33936. height: math.unit(12 + 9/12, "feet"),
  33937. default: true
  33938. },
  33939. ]
  33940. ))
  33941. characterMakers.push(() => makeCharacter(
  33942. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33943. {
  33944. front: {
  33945. height: math.unit(6, "feet"),
  33946. weight: math.unit(300, "lb"),
  33947. name: "Front",
  33948. image: {
  33949. source: "./media/characters/tanio/front.svg",
  33950. extra: 711/673,
  33951. bottom: 25/736
  33952. }
  33953. },
  33954. },
  33955. [
  33956. {
  33957. name: "Normal",
  33958. height: math.unit(6, "feet"),
  33959. default: true
  33960. },
  33961. ]
  33962. ))
  33963. characterMakers.push(() => makeCharacter(
  33964. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33965. {
  33966. front: {
  33967. height: math.unit(3, "inches"),
  33968. name: "Front",
  33969. image: {
  33970. source: "./media/characters/noboru/front.svg",
  33971. extra: 1039/932,
  33972. bottom: 18/1057
  33973. }
  33974. },
  33975. },
  33976. [
  33977. {
  33978. name: "Micro",
  33979. height: math.unit(3, "inches"),
  33980. default: true
  33981. },
  33982. ]
  33983. ))
  33984. characterMakers.push(() => makeCharacter(
  33985. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33986. {
  33987. front: {
  33988. height: math.unit(1.85, "meters"),
  33989. weight: math.unit(80, "kg"),
  33990. name: "Front",
  33991. image: {
  33992. source: "./media/characters/daniel-barrett/front.svg",
  33993. extra: 355/337,
  33994. bottom: 9/364
  33995. }
  33996. },
  33997. },
  33998. [
  33999. {
  34000. name: "Pico",
  34001. height: math.unit(0.0433, "mm")
  34002. },
  34003. {
  34004. name: "Nano",
  34005. height: math.unit(1.5, "mm")
  34006. },
  34007. {
  34008. name: "Micro",
  34009. height: math.unit(5.3, "cm"),
  34010. default: true
  34011. },
  34012. {
  34013. name: "Normal",
  34014. height: math.unit(1.85, "meters")
  34015. },
  34016. {
  34017. name: "Macro",
  34018. height: math.unit(64.7, "meters")
  34019. },
  34020. {
  34021. name: "Megamacro",
  34022. height: math.unit(2.26, "km")
  34023. },
  34024. {
  34025. name: "Gigamacro",
  34026. height: math.unit(79, "km")
  34027. },
  34028. {
  34029. name: "Teramacro",
  34030. height: math.unit(2765, "km")
  34031. },
  34032. {
  34033. name: "Petamacro",
  34034. height: math.unit(96678, "km")
  34035. },
  34036. ]
  34037. ))
  34038. characterMakers.push(() => makeCharacter(
  34039. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34040. {
  34041. front: {
  34042. height: math.unit(30, "meters"),
  34043. weight: math.unit(400, "tons"),
  34044. name: "Front",
  34045. image: {
  34046. source: "./media/characters/zeel/front.svg",
  34047. extra: 2599/2599,
  34048. bottom: 226/2825
  34049. }
  34050. },
  34051. },
  34052. [
  34053. {
  34054. name: "Macro",
  34055. height: math.unit(30, "meters"),
  34056. default: true
  34057. },
  34058. ]
  34059. ))
  34060. characterMakers.push(() => makeCharacter(
  34061. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34062. {
  34063. front: {
  34064. height: math.unit(6 + 7/12, "feet"),
  34065. weight: math.unit(210, "lb"),
  34066. name: "Front",
  34067. image: {
  34068. source: "./media/characters/tarn/front.svg",
  34069. extra: 3517/3220,
  34070. bottom: 91/3608
  34071. }
  34072. },
  34073. back: {
  34074. height: math.unit(6 + 7/12, "feet"),
  34075. weight: math.unit(210, "lb"),
  34076. name: "Back",
  34077. image: {
  34078. source: "./media/characters/tarn/back.svg",
  34079. extra: 3566/3241,
  34080. bottom: 34/3600
  34081. }
  34082. },
  34083. dick: {
  34084. height: math.unit(1.65, "feet"),
  34085. name: "Dick",
  34086. image: {
  34087. source: "./media/characters/tarn/dick.svg"
  34088. }
  34089. },
  34090. paw: {
  34091. height: math.unit(1.80, "feet"),
  34092. name: "Paw",
  34093. image: {
  34094. source: "./media/characters/tarn/paw.svg"
  34095. }
  34096. },
  34097. tongue: {
  34098. height: math.unit(0.97, "feet"),
  34099. name: "Tongue",
  34100. image: {
  34101. source: "./media/characters/tarn/tongue.svg"
  34102. }
  34103. },
  34104. },
  34105. [
  34106. {
  34107. name: "Micro",
  34108. height: math.unit(4, "inches")
  34109. },
  34110. {
  34111. name: "Normal",
  34112. height: math.unit(6 + 7/12, "feet"),
  34113. default: true
  34114. },
  34115. {
  34116. name: "Macro",
  34117. height: math.unit(300, "feet")
  34118. },
  34119. ]
  34120. ))
  34121. characterMakers.push(() => makeCharacter(
  34122. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34123. {
  34124. front: {
  34125. height: math.unit(5 + 7/12, "feet"),
  34126. weight: math.unit(80, "kg"),
  34127. name: "Front",
  34128. image: {
  34129. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34130. extra: 3023/2865,
  34131. bottom: 33/3056
  34132. }
  34133. },
  34134. back: {
  34135. height: math.unit(5 + 7/12, "feet"),
  34136. weight: math.unit(80, "kg"),
  34137. name: "Back",
  34138. image: {
  34139. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34140. extra: 3020/2886,
  34141. bottom: 30/3050
  34142. }
  34143. },
  34144. dick: {
  34145. height: math.unit(0.98, "feet"),
  34146. name: "Dick",
  34147. image: {
  34148. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34149. }
  34150. },
  34151. anatomy: {
  34152. height: math.unit(2.86, "feet"),
  34153. name: "Anatomy",
  34154. image: {
  34155. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34156. }
  34157. },
  34158. },
  34159. [
  34160. {
  34161. name: "Really Small",
  34162. height: math.unit(2, "inches")
  34163. },
  34164. {
  34165. name: "Micro",
  34166. height: math.unit(5.583, "inches")
  34167. },
  34168. {
  34169. name: "Normal",
  34170. height: math.unit(5 + 7/12, "feet"),
  34171. default: true
  34172. },
  34173. {
  34174. name: "Macro",
  34175. height: math.unit(67, "feet")
  34176. },
  34177. {
  34178. name: "Megamacro",
  34179. height: math.unit(134, "feet")
  34180. },
  34181. ]
  34182. ))
  34183. characterMakers.push(() => makeCharacter(
  34184. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34185. {
  34186. front: {
  34187. height: math.unit(9, "feet"),
  34188. weight: math.unit(120, "lb"),
  34189. name: "Front",
  34190. image: {
  34191. source: "./media/characters/sally/front.svg",
  34192. extra: 1506/1349,
  34193. bottom: 66/1572
  34194. }
  34195. },
  34196. },
  34197. [
  34198. {
  34199. name: "Normal",
  34200. height: math.unit(9, "feet"),
  34201. default: true
  34202. },
  34203. ]
  34204. ))
  34205. characterMakers.push(() => makeCharacter(
  34206. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34207. {
  34208. front: {
  34209. height: math.unit(8, "feet"),
  34210. weight: math.unit(900, "lb"),
  34211. name: "Front",
  34212. image: {
  34213. source: "./media/characters/owen/front.svg",
  34214. extra: 1761/1657,
  34215. bottom: 74/1835
  34216. }
  34217. },
  34218. side: {
  34219. height: math.unit(8, "feet"),
  34220. weight: math.unit(900, "lb"),
  34221. name: "Side",
  34222. image: {
  34223. source: "./media/characters/owen/side.svg",
  34224. extra: 1797/1734,
  34225. bottom: 30/1827
  34226. }
  34227. },
  34228. back: {
  34229. height: math.unit(8, "feet"),
  34230. weight: math.unit(900, "lb"),
  34231. name: "Back",
  34232. image: {
  34233. source: "./media/characters/owen/back.svg",
  34234. extra: 1796/1706,
  34235. bottom: 59/1855
  34236. }
  34237. },
  34238. maw: {
  34239. height: math.unit(1.76, "feet"),
  34240. name: "Maw",
  34241. image: {
  34242. source: "./media/characters/owen/maw.svg"
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Normal",
  34249. height: math.unit(8, "feet"),
  34250. default: true
  34251. },
  34252. ]
  34253. ))
  34254. characterMakers.push(() => makeCharacter(
  34255. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34256. {
  34257. front: {
  34258. height: math.unit(4, "feet"),
  34259. weight: math.unit(400, "lb"),
  34260. name: "Front",
  34261. image: {
  34262. source: "./media/characters/ryth/front.svg",
  34263. extra: 1920/1748,
  34264. bottom: 42/1962
  34265. }
  34266. },
  34267. back: {
  34268. height: math.unit(4, "feet"),
  34269. weight: math.unit(400, "lb"),
  34270. name: "Back",
  34271. image: {
  34272. source: "./media/characters/ryth/back.svg",
  34273. extra: 1897/1690,
  34274. bottom: 89/1986
  34275. }
  34276. },
  34277. mouth: {
  34278. height: math.unit(1.39, "feet"),
  34279. name: "Mouth",
  34280. image: {
  34281. source: "./media/characters/ryth/mouth.svg"
  34282. }
  34283. },
  34284. tailmaw: {
  34285. height: math.unit(1.23, "feet"),
  34286. name: "Tailmaw",
  34287. image: {
  34288. source: "./media/characters/ryth/tailmaw.svg"
  34289. }
  34290. },
  34291. goia: {
  34292. height: math.unit(4, "meters"),
  34293. weight: math.unit(10800, "lb"),
  34294. name: "Goia",
  34295. image: {
  34296. source: "./media/characters/ryth/goia.svg",
  34297. extra: 745/640,
  34298. bottom: 107/852
  34299. }
  34300. },
  34301. goiaFront: {
  34302. height: math.unit(4, "meters"),
  34303. weight: math.unit(10800, "lb"),
  34304. name: "Goia (Front)",
  34305. image: {
  34306. source: "./media/characters/ryth/goia-front.svg",
  34307. extra: 750/586,
  34308. bottom: 114/864
  34309. }
  34310. },
  34311. goiaMaw: {
  34312. height: math.unit(5.55, "feet"),
  34313. name: "Goia Maw",
  34314. image: {
  34315. source: "./media/characters/ryth/goia-maw.svg"
  34316. }
  34317. },
  34318. goiaForepaw: {
  34319. height: math.unit(3.5, "feet"),
  34320. name: "Goia Forepaw",
  34321. image: {
  34322. source: "./media/characters/ryth/goia-forepaw.svg"
  34323. }
  34324. },
  34325. goiaHindpaw: {
  34326. height: math.unit(5.55, "feet"),
  34327. name: "Goia Hindpaw",
  34328. image: {
  34329. source: "./media/characters/ryth/goia-hindpaw.svg"
  34330. }
  34331. },
  34332. },
  34333. [
  34334. {
  34335. name: "Normal",
  34336. height: math.unit(4, "feet"),
  34337. default: true
  34338. },
  34339. ]
  34340. ))
  34341. characterMakers.push(() => makeCharacter(
  34342. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34343. {
  34344. front: {
  34345. height: math.unit(7, "feet"),
  34346. weight: math.unit(180, "lb"),
  34347. name: "Front",
  34348. image: {
  34349. source: "./media/characters/necrolance/front.svg",
  34350. extra: 1062/947,
  34351. bottom: 41/1103
  34352. }
  34353. },
  34354. back: {
  34355. height: math.unit(7, "feet"),
  34356. weight: math.unit(180, "lb"),
  34357. name: "Back",
  34358. image: {
  34359. source: "./media/characters/necrolance/back.svg",
  34360. extra: 1045/984,
  34361. bottom: 14/1059
  34362. }
  34363. },
  34364. wing: {
  34365. height: math.unit(2.67, "feet"),
  34366. name: "Wing",
  34367. image: {
  34368. source: "./media/characters/necrolance/wing.svg"
  34369. }
  34370. },
  34371. },
  34372. [
  34373. {
  34374. name: "Normal",
  34375. height: math.unit(7, "feet"),
  34376. default: true
  34377. },
  34378. ]
  34379. ))
  34380. characterMakers.push(() => makeCharacter(
  34381. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34382. {
  34383. front: {
  34384. height: math.unit(76, "meters"),
  34385. weight: math.unit(30000, "tons"),
  34386. name: "Front",
  34387. image: {
  34388. source: "./media/characters/tyler/front.svg",
  34389. extra: 1640/1640,
  34390. bottom: 114/1754
  34391. }
  34392. },
  34393. },
  34394. [
  34395. {
  34396. name: "Macro",
  34397. height: math.unit(76, "meters"),
  34398. default: true
  34399. },
  34400. ]
  34401. ))
  34402. characterMakers.push(() => makeCharacter(
  34403. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34404. {
  34405. front: {
  34406. height: math.unit(4 + 11/12, "feet"),
  34407. weight: math.unit(132, "lb"),
  34408. name: "Front",
  34409. image: {
  34410. source: "./media/characters/icey/front.svg",
  34411. extra: 2750/2550,
  34412. bottom: 33/2783
  34413. }
  34414. },
  34415. back: {
  34416. height: math.unit(4 + 11/12, "feet"),
  34417. weight: math.unit(132, "lb"),
  34418. name: "Back",
  34419. image: {
  34420. source: "./media/characters/icey/back.svg",
  34421. extra: 2624/2481,
  34422. bottom: 35/2659
  34423. }
  34424. },
  34425. },
  34426. [
  34427. {
  34428. name: "Normal",
  34429. height: math.unit(4 + 11/12, "feet"),
  34430. default: true
  34431. },
  34432. ]
  34433. ))
  34434. characterMakers.push(() => makeCharacter(
  34435. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34436. {
  34437. front: {
  34438. height: math.unit(100, "feet"),
  34439. weight: math.unit(0, "lb"),
  34440. name: "Front",
  34441. image: {
  34442. source: "./media/characters/smile/front.svg",
  34443. extra: 2983/2912,
  34444. bottom: 162/3145
  34445. }
  34446. },
  34447. back: {
  34448. height: math.unit(100, "feet"),
  34449. weight: math.unit(0, "lb"),
  34450. name: "Back",
  34451. image: {
  34452. source: "./media/characters/smile/back.svg",
  34453. extra: 3143/3031,
  34454. bottom: 91/3234
  34455. }
  34456. },
  34457. head: {
  34458. height: math.unit(26.3, "feet"),
  34459. weight: math.unit(0, "lb"),
  34460. name: "Head",
  34461. image: {
  34462. source: "./media/characters/smile/head.svg"
  34463. }
  34464. },
  34465. collar: {
  34466. height: math.unit(5.3, "feet"),
  34467. weight: math.unit(0, "lb"),
  34468. name: "Collar",
  34469. image: {
  34470. source: "./media/characters/smile/collar.svg"
  34471. }
  34472. },
  34473. },
  34474. [
  34475. {
  34476. name: "Macro",
  34477. height: math.unit(100, "feet"),
  34478. default: true
  34479. },
  34480. ]
  34481. ))
  34482. characterMakers.push(() => makeCharacter(
  34483. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34484. {
  34485. dragon: {
  34486. height: math.unit(26, "feet"),
  34487. weight: math.unit(36, "tons"),
  34488. name: "Dragon",
  34489. image: {
  34490. source: "./media/characters/arimphae/dragon.svg",
  34491. extra: 1574/983,
  34492. bottom: 357/1931
  34493. }
  34494. },
  34495. drake: {
  34496. height: math.unit(9, "feet"),
  34497. weight: math.unit(1.5, "tons"),
  34498. name: "Drake",
  34499. image: {
  34500. source: "./media/characters/arimphae/drake.svg",
  34501. extra: 1120/925,
  34502. bottom: 435/1555
  34503. }
  34504. },
  34505. },
  34506. [
  34507. {
  34508. name: "Small",
  34509. height: math.unit(26*5/9, "feet")
  34510. },
  34511. {
  34512. name: "Normal",
  34513. height: math.unit(26, "feet"),
  34514. default: true
  34515. },
  34516. ]
  34517. ))
  34518. characterMakers.push(() => makeCharacter(
  34519. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34520. {
  34521. front: {
  34522. height: math.unit(8 + 9/12, "feet"),
  34523. name: "Front",
  34524. image: {
  34525. source: "./media/characters/xander/front.svg",
  34526. extra: 1237/974,
  34527. bottom: 94/1331
  34528. }
  34529. },
  34530. },
  34531. [
  34532. {
  34533. name: "Normal",
  34534. height: math.unit(8 + 9/12, "feet"),
  34535. default: true
  34536. },
  34537. {
  34538. name: "Gaze Grabber",
  34539. height: math.unit(13 + 8/12, "feet")
  34540. },
  34541. {
  34542. name: "Jaw Dropper",
  34543. height: math.unit(27, "feet")
  34544. },
  34545. {
  34546. name: "Show Stopper",
  34547. height: math.unit(136, "feet")
  34548. },
  34549. {
  34550. name: "Superstar",
  34551. height: math.unit(1.9e6, "miles")
  34552. },
  34553. ]
  34554. ))
  34555. characterMakers.push(() => makeCharacter(
  34556. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34557. {
  34558. side: {
  34559. height: math.unit(2100, "feet"),
  34560. name: "Side",
  34561. image: {
  34562. source: "./media/characters/osiris/side.svg",
  34563. extra: 1105/939,
  34564. bottom: 167/1272
  34565. }
  34566. },
  34567. },
  34568. [
  34569. {
  34570. name: "Macro",
  34571. height: math.unit(2100, "feet"),
  34572. default: true
  34573. },
  34574. ]
  34575. ))
  34576. characterMakers.push(() => makeCharacter(
  34577. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34578. {
  34579. front: {
  34580. height: math.unit(6 + 8/12, "feet"),
  34581. weight: math.unit(225, "lb"),
  34582. name: "Front",
  34583. image: {
  34584. source: "./media/characters/rhys-londe/front.svg",
  34585. extra: 2258/2141,
  34586. bottom: 188/2446
  34587. }
  34588. },
  34589. back: {
  34590. height: math.unit(6 + 8/12, "feet"),
  34591. weight: math.unit(225, "lb"),
  34592. name: "Back",
  34593. image: {
  34594. source: "./media/characters/rhys-londe/back.svg",
  34595. extra: 2237/2137,
  34596. bottom: 63/2300
  34597. }
  34598. },
  34599. frontNsfw: {
  34600. height: math.unit(6 + 8/12, "feet"),
  34601. weight: math.unit(225, "lb"),
  34602. name: "Front (NSFW)",
  34603. image: {
  34604. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34605. extra: 2258/2141,
  34606. bottom: 188/2446
  34607. }
  34608. },
  34609. backNsfw: {
  34610. height: math.unit(6 + 8/12, "feet"),
  34611. weight: math.unit(225, "lb"),
  34612. name: "Back (NSFW)",
  34613. image: {
  34614. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34615. extra: 2237/2137,
  34616. bottom: 63/2300
  34617. }
  34618. },
  34619. dick: {
  34620. height: math.unit(30, "inches"),
  34621. name: "Dick",
  34622. image: {
  34623. source: "./media/characters/rhys-londe/dick.svg"
  34624. }
  34625. },
  34626. maw: {
  34627. height: math.unit(1.6, "feet"),
  34628. name: "Maw",
  34629. image: {
  34630. source: "./media/characters/rhys-londe/maw.svg"
  34631. }
  34632. },
  34633. },
  34634. [
  34635. {
  34636. name: "Normal",
  34637. height: math.unit(6 + 8/12, "feet"),
  34638. default: true
  34639. },
  34640. ]
  34641. ))
  34642. characterMakers.push(() => makeCharacter(
  34643. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34644. {
  34645. front: {
  34646. height: math.unit(3 + 10/12, "feet"),
  34647. weight: math.unit(90, "lb"),
  34648. name: "Front",
  34649. image: {
  34650. source: "./media/characters/taivas-ensim/front.svg",
  34651. extra: 1327/1216,
  34652. bottom: 96/1423
  34653. }
  34654. },
  34655. back: {
  34656. height: math.unit(3 + 10/12, "feet"),
  34657. weight: math.unit(90, "lb"),
  34658. name: "Back",
  34659. image: {
  34660. source: "./media/characters/taivas-ensim/back.svg",
  34661. extra: 1355/1247,
  34662. bottom: 11/1366
  34663. }
  34664. },
  34665. frontNsfw: {
  34666. height: math.unit(3 + 10/12, "feet"),
  34667. weight: math.unit(90, "lb"),
  34668. name: "Front (NSFW)",
  34669. image: {
  34670. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34671. extra: 1327/1216,
  34672. bottom: 96/1423
  34673. }
  34674. },
  34675. backNsfw: {
  34676. height: math.unit(3 + 10/12, "feet"),
  34677. weight: math.unit(90, "lb"),
  34678. name: "Back (NSFW)",
  34679. image: {
  34680. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34681. extra: 1355/1247,
  34682. bottom: 11/1366
  34683. }
  34684. },
  34685. },
  34686. [
  34687. {
  34688. name: "Normal",
  34689. height: math.unit(3 + 10/12, "feet"),
  34690. default: true
  34691. },
  34692. ]
  34693. ))
  34694. characterMakers.push(() => makeCharacter(
  34695. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34696. {
  34697. front: {
  34698. height: math.unit(9 + 6/12, "feet"),
  34699. weight: math.unit(940, "lb"),
  34700. name: "Front",
  34701. image: {
  34702. source: "./media/characters/byliss/front.svg",
  34703. extra: 1327/1290,
  34704. bottom: 82/1409
  34705. }
  34706. },
  34707. back: {
  34708. height: math.unit(9 + 6/12, "feet"),
  34709. weight: math.unit(940, "lb"),
  34710. name: "Back",
  34711. image: {
  34712. source: "./media/characters/byliss/back.svg",
  34713. extra: 1376/1349,
  34714. bottom: 9/1385
  34715. }
  34716. },
  34717. frontNsfw: {
  34718. height: math.unit(9 + 6/12, "feet"),
  34719. weight: math.unit(940, "lb"),
  34720. name: "Front (NSFW)",
  34721. image: {
  34722. source: "./media/characters/byliss/front-nsfw.svg",
  34723. extra: 1327/1290,
  34724. bottom: 82/1409
  34725. }
  34726. },
  34727. backNsfw: {
  34728. height: math.unit(9 + 6/12, "feet"),
  34729. weight: math.unit(940, "lb"),
  34730. name: "Back (NSFW)",
  34731. image: {
  34732. source: "./media/characters/byliss/back-nsfw.svg",
  34733. extra: 1376/1349,
  34734. bottom: 9/1385
  34735. }
  34736. },
  34737. },
  34738. [
  34739. {
  34740. name: "Normal",
  34741. height: math.unit(9 + 6/12, "feet"),
  34742. default: true
  34743. },
  34744. ]
  34745. ))
  34746. characterMakers.push(() => makeCharacter(
  34747. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34748. {
  34749. front: {
  34750. height: math.unit(5 + 2/12, "feet"),
  34751. weight: math.unit(200, "lb"),
  34752. name: "Front",
  34753. image: {
  34754. source: "./media/characters/noraly/front.svg",
  34755. extra: 4985/4773,
  34756. bottom: 150/5135
  34757. }
  34758. },
  34759. full: {
  34760. height: math.unit(5 + 2/12, "feet"),
  34761. weight: math.unit(164, "lb"),
  34762. name: "Full",
  34763. image: {
  34764. source: "./media/characters/noraly/full.svg",
  34765. extra: 1114/1059,
  34766. bottom: 35/1149
  34767. }
  34768. },
  34769. fuller: {
  34770. height: math.unit(5 + 2/12, "feet"),
  34771. weight: math.unit(230, "lb"),
  34772. name: "Fuller",
  34773. image: {
  34774. source: "./media/characters/noraly/fuller.svg",
  34775. extra: 1114/1059,
  34776. bottom: 35/1149
  34777. }
  34778. },
  34779. fullest: {
  34780. height: math.unit(5 + 2/12, "feet"),
  34781. weight: math.unit(300, "lb"),
  34782. name: "Fullest",
  34783. image: {
  34784. source: "./media/characters/noraly/fullest.svg",
  34785. extra: 1114/1059,
  34786. bottom: 35/1149
  34787. }
  34788. },
  34789. },
  34790. [
  34791. {
  34792. name: "Normal",
  34793. height: math.unit(5 + 2/12, "feet"),
  34794. default: true
  34795. },
  34796. ]
  34797. ))
  34798. characterMakers.push(() => makeCharacter(
  34799. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34800. {
  34801. front: {
  34802. height: math.unit(5 + 2/12, "feet"),
  34803. weight: math.unit(210, "lb"),
  34804. name: "Front",
  34805. image: {
  34806. source: "./media/characters/pera/front.svg",
  34807. extra: 1560/1531,
  34808. bottom: 165/1725
  34809. }
  34810. },
  34811. back: {
  34812. height: math.unit(5 + 2/12, "feet"),
  34813. weight: math.unit(210, "lb"),
  34814. name: "Back",
  34815. image: {
  34816. source: "./media/characters/pera/back.svg",
  34817. extra: 1523/1493,
  34818. bottom: 152/1675
  34819. }
  34820. },
  34821. dick: {
  34822. height: math.unit(2.4, "feet"),
  34823. name: "Dick",
  34824. image: {
  34825. source: "./media/characters/pera/dick.svg"
  34826. }
  34827. },
  34828. },
  34829. [
  34830. {
  34831. name: "Normal",
  34832. height: math.unit(5 + 2/12, "feet"),
  34833. default: true
  34834. },
  34835. ]
  34836. ))
  34837. characterMakers.push(() => makeCharacter(
  34838. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34839. {
  34840. front: {
  34841. height: math.unit(12, "feet"),
  34842. weight: math.unit(3200, "lb"),
  34843. name: "Front",
  34844. image: {
  34845. source: "./media/characters/julian/front.svg",
  34846. extra: 2962/2701,
  34847. bottom: 184/3146
  34848. }
  34849. },
  34850. maw: {
  34851. height: math.unit(5.35, "feet"),
  34852. name: "Maw",
  34853. image: {
  34854. source: "./media/characters/julian/maw.svg"
  34855. }
  34856. },
  34857. paw: {
  34858. height: math.unit(3.07, "feet"),
  34859. name: "Paw",
  34860. image: {
  34861. source: "./media/characters/julian/paw.svg"
  34862. }
  34863. },
  34864. },
  34865. [
  34866. {
  34867. name: "Default",
  34868. height: math.unit(12, "feet"),
  34869. default: true
  34870. },
  34871. {
  34872. name: "Big",
  34873. height: math.unit(50, "feet")
  34874. },
  34875. {
  34876. name: "Really Big",
  34877. height: math.unit(1, "mile")
  34878. },
  34879. {
  34880. name: "Extremely Big",
  34881. height: math.unit(100, "miles")
  34882. },
  34883. {
  34884. name: "Planet Hugger",
  34885. height: math.unit(200, "megameters")
  34886. },
  34887. {
  34888. name: "Unreasonably Big",
  34889. height: math.unit(1e300, "meters")
  34890. },
  34891. ]
  34892. ))
  34893. characterMakers.push(() => makeCharacter(
  34894. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34895. {
  34896. solgooleo: {
  34897. height: math.unit(4, "meters"),
  34898. weight: math.unit(6000*1.5, "kg"),
  34899. volume: math.unit(6000, "liters"),
  34900. name: "Solgooleo",
  34901. image: {
  34902. source: "./media/characters/pi/solgooleo.svg",
  34903. extra: 388/331,
  34904. bottom: 29/417
  34905. }
  34906. },
  34907. },
  34908. [
  34909. {
  34910. name: "Normal",
  34911. height: math.unit(4, "meters"),
  34912. default: true
  34913. },
  34914. ]
  34915. ))
  34916. characterMakers.push(() => makeCharacter(
  34917. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34918. {
  34919. front: {
  34920. height: math.unit(8, "feet"),
  34921. weight: math.unit(4, "tons"),
  34922. name: "Front",
  34923. image: {
  34924. source: "./media/characters/shaun/front.svg",
  34925. extra: 503/495,
  34926. bottom: 20/523
  34927. }
  34928. },
  34929. back: {
  34930. height: math.unit(8, "feet"),
  34931. weight: math.unit(4, "tons"),
  34932. name: "Back",
  34933. image: {
  34934. source: "./media/characters/shaun/back.svg",
  34935. extra: 487/480,
  34936. bottom: 20/507
  34937. }
  34938. },
  34939. },
  34940. [
  34941. {
  34942. name: "Lorg",
  34943. height: math.unit(8, "feet"),
  34944. default: true
  34945. },
  34946. ]
  34947. ))
  34948. characterMakers.push(() => makeCharacter(
  34949. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34950. {
  34951. frontAnthro: {
  34952. height: math.unit(7, "feet"),
  34953. name: "Front",
  34954. image: {
  34955. source: "./media/characters/sini/front-anthro.svg",
  34956. extra: 726/678,
  34957. bottom: 35/761
  34958. },
  34959. form: "anthro",
  34960. default: true
  34961. },
  34962. backAnthro: {
  34963. height: math.unit(7, "feet"),
  34964. name: "Back",
  34965. image: {
  34966. source: "./media/characters/sini/back-anthro.svg",
  34967. extra: 743/701,
  34968. bottom: 12/755
  34969. },
  34970. form: "anthro",
  34971. },
  34972. frontAnthroNsfw: {
  34973. height: math.unit(7, "feet"),
  34974. name: "Front (NSFW)",
  34975. image: {
  34976. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34977. extra: 726/678,
  34978. bottom: 35/761
  34979. },
  34980. form: "anthro"
  34981. },
  34982. backAnthroNsfw: {
  34983. height: math.unit(7, "feet"),
  34984. name: "Back (NSFW)",
  34985. image: {
  34986. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34987. extra: 743/701,
  34988. bottom: 12/755
  34989. },
  34990. form: "anthro",
  34991. },
  34992. mawAnthro: {
  34993. height: math.unit(2.14, "feet"),
  34994. name: "Maw",
  34995. image: {
  34996. source: "./media/characters/sini/maw-anthro.svg"
  34997. },
  34998. form: "anthro"
  34999. },
  35000. dick: {
  35001. height: math.unit(1.45, "feet"),
  35002. name: "Dick",
  35003. image: {
  35004. source: "./media/characters/sini/dick-anthro.svg"
  35005. },
  35006. form: "anthro"
  35007. },
  35008. feral: {
  35009. height: math.unit(16, "feet"),
  35010. name: "Feral",
  35011. image: {
  35012. source: "./media/characters/sini/feral.svg",
  35013. extra: 814/605,
  35014. bottom: 11/825
  35015. },
  35016. form: "feral",
  35017. default: true
  35018. },
  35019. feralNsfw: {
  35020. height: math.unit(16, "feet"),
  35021. name: "Feral (NSFW)",
  35022. image: {
  35023. source: "./media/characters/sini/feral-nsfw.svg",
  35024. extra: 814/605,
  35025. bottom: 11/825
  35026. },
  35027. form: "feral"
  35028. },
  35029. mawFeral: {
  35030. height: math.unit(5.66, "feet"),
  35031. name: "Maw",
  35032. image: {
  35033. source: "./media/characters/sini/maw-feral.svg"
  35034. },
  35035. form: "feral",
  35036. },
  35037. pawFeral: {
  35038. height: math.unit(5.17, "feet"),
  35039. name: "Paw",
  35040. image: {
  35041. source: "./media/characters/sini/paw-feral.svg"
  35042. },
  35043. form: "feral",
  35044. },
  35045. rumpFeral: {
  35046. height: math.unit(13.11, "feet"),
  35047. name: "Rump",
  35048. image: {
  35049. source: "./media/characters/sini/rump-feral.svg"
  35050. },
  35051. form: "feral",
  35052. },
  35053. dickFeral: {
  35054. height: math.unit(1, "feet"),
  35055. name: "Dick",
  35056. image: {
  35057. source: "./media/characters/sini/dick-feral.svg"
  35058. },
  35059. form: "feral",
  35060. },
  35061. eyeFeral: {
  35062. height: math.unit(1.23, "feet"),
  35063. name: "Eye",
  35064. image: {
  35065. source: "./media/characters/sini/eye-feral.svg"
  35066. },
  35067. form: "feral",
  35068. },
  35069. },
  35070. [
  35071. {
  35072. name: "Normal",
  35073. height: math.unit(7, "feet"),
  35074. default: true,
  35075. form: "anthro"
  35076. },
  35077. {
  35078. name: "Normal",
  35079. height: math.unit(16, "feet"),
  35080. default: true,
  35081. form: "feral"
  35082. },
  35083. ],
  35084. {
  35085. "anthro": {
  35086. name: "Anthro",
  35087. default: true
  35088. },
  35089. "feral": {
  35090. name: "Feral",
  35091. }
  35092. }
  35093. ))
  35094. characterMakers.push(() => makeCharacter(
  35095. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35096. {
  35097. side: {
  35098. height: math.unit(47.2, "meters"),
  35099. weight: math.unit(10000, "tons"),
  35100. name: "Side",
  35101. image: {
  35102. source: "./media/characters/raylldo/side.svg",
  35103. extra: 2363/642,
  35104. bottom: 221/2584
  35105. }
  35106. },
  35107. top: {
  35108. height: math.unit(240, "meters"),
  35109. weight: math.unit(10000, "tons"),
  35110. name: "Top",
  35111. image: {
  35112. source: "./media/characters/raylldo/top.svg"
  35113. }
  35114. },
  35115. bottom: {
  35116. height: math.unit(240, "meters"),
  35117. weight: math.unit(10000, "tons"),
  35118. name: "Bottom",
  35119. image: {
  35120. source: "./media/characters/raylldo/bottom.svg"
  35121. }
  35122. },
  35123. head: {
  35124. height: math.unit(38.6, "meters"),
  35125. name: "Head",
  35126. image: {
  35127. source: "./media/characters/raylldo/head.svg",
  35128. extra: 1335/1112,
  35129. bottom: 0/1335
  35130. }
  35131. },
  35132. maw: {
  35133. height: math.unit(16.37, "meters"),
  35134. name: "Maw",
  35135. image: {
  35136. source: "./media/characters/raylldo/maw.svg",
  35137. extra: 883/660,
  35138. bottom: 0/883
  35139. },
  35140. extraAttributes: {
  35141. preyCapacity: {
  35142. name: "Capacity",
  35143. power: 3,
  35144. type: "volume",
  35145. base: math.unit(1000, "people")
  35146. },
  35147. tongueSize: {
  35148. name: "Tongue Size",
  35149. power: 2,
  35150. type: "area",
  35151. base: math.unit(21, "m^2")
  35152. }
  35153. }
  35154. },
  35155. forepaw: {
  35156. height: math.unit(18, "meters"),
  35157. name: "Forepaw",
  35158. image: {
  35159. source: "./media/characters/raylldo/forepaw.svg"
  35160. }
  35161. },
  35162. hindpaw: {
  35163. height: math.unit(23, "meters"),
  35164. name: "Hindpaw",
  35165. image: {
  35166. source: "./media/characters/raylldo/hindpaw.svg"
  35167. }
  35168. },
  35169. genitals: {
  35170. height: math.unit(42, "meters"),
  35171. name: "Genitals",
  35172. image: {
  35173. source: "./media/characters/raylldo/genitals.svg"
  35174. }
  35175. },
  35176. },
  35177. [
  35178. {
  35179. name: "Normal",
  35180. height: math.unit(47.2, "meters"),
  35181. default: true
  35182. },
  35183. ]
  35184. ))
  35185. characterMakers.push(() => makeCharacter(
  35186. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35187. {
  35188. anthroFront: {
  35189. height: math.unit(9, "feet"),
  35190. weight: math.unit(600, "lb"),
  35191. name: "Anthro (Front)",
  35192. image: {
  35193. source: "./media/characters/glint/anthro-front.svg",
  35194. extra: 1097/1018,
  35195. bottom: 28/1125
  35196. }
  35197. },
  35198. anthroBack: {
  35199. height: math.unit(9, "feet"),
  35200. weight: math.unit(600, "lb"),
  35201. name: "Anthro (Back)",
  35202. image: {
  35203. source: "./media/characters/glint/anthro-back.svg",
  35204. extra: 1154/997,
  35205. bottom: 36/1190
  35206. }
  35207. },
  35208. feral: {
  35209. height: math.unit(11, "feet"),
  35210. weight: math.unit(50000, "lb"),
  35211. name: "Feral",
  35212. image: {
  35213. source: "./media/characters/glint/feral.svg",
  35214. extra: 3035/1585,
  35215. bottom: 1169/4204
  35216. }
  35217. },
  35218. dickAnthro: {
  35219. height: math.unit(0.7, "meters"),
  35220. name: "Dick (Anthro)",
  35221. image: {
  35222. source: "./media/characters/glint/dick-anthro.svg"
  35223. }
  35224. },
  35225. dickFeral: {
  35226. height: math.unit(2.65, "meters"),
  35227. name: "Dick (Feral)",
  35228. image: {
  35229. source: "./media/characters/glint/dick-feral.svg"
  35230. }
  35231. },
  35232. slitHidden: {
  35233. height: math.unit(5.85, "meters"),
  35234. name: "Slit (Hidden)",
  35235. image: {
  35236. source: "./media/characters/glint/slit-hidden.svg"
  35237. }
  35238. },
  35239. slitErect: {
  35240. height: math.unit(5.85, "meters"),
  35241. name: "Slit (Erect)",
  35242. image: {
  35243. source: "./media/characters/glint/slit-erect.svg"
  35244. }
  35245. },
  35246. mawAnthro: {
  35247. height: math.unit(0.63, "meters"),
  35248. name: "Maw (Anthro)",
  35249. image: {
  35250. source: "./media/characters/glint/maw.svg"
  35251. }
  35252. },
  35253. mawFeral: {
  35254. height: math.unit(2.89, "meters"),
  35255. name: "Maw (Feral)",
  35256. image: {
  35257. source: "./media/characters/glint/maw.svg"
  35258. }
  35259. },
  35260. },
  35261. [
  35262. {
  35263. name: "Normal",
  35264. height: math.unit(9, "feet"),
  35265. default: true
  35266. },
  35267. ]
  35268. ))
  35269. characterMakers.push(() => makeCharacter(
  35270. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35271. {
  35272. side: {
  35273. height: math.unit(15, "feet"),
  35274. weight: math.unit(5000, "kg"),
  35275. name: "Side",
  35276. image: {
  35277. source: "./media/characters/kairne/side.svg",
  35278. extra: 979/811,
  35279. bottom: 13/992
  35280. }
  35281. },
  35282. front: {
  35283. height: math.unit(15, "feet"),
  35284. weight: math.unit(5000, "kg"),
  35285. name: "Front",
  35286. image: {
  35287. source: "./media/characters/kairne/front.svg",
  35288. extra: 908/814,
  35289. bottom: 26/934
  35290. }
  35291. },
  35292. sideNsfw: {
  35293. height: math.unit(15, "feet"),
  35294. weight: math.unit(5000, "kg"),
  35295. name: "Side (NSFW)",
  35296. image: {
  35297. source: "./media/characters/kairne/side-nsfw.svg",
  35298. extra: 979/811,
  35299. bottom: 13/992
  35300. }
  35301. },
  35302. frontNsfw: {
  35303. height: math.unit(15, "feet"),
  35304. weight: math.unit(5000, "kg"),
  35305. name: "Front (NSFW)",
  35306. image: {
  35307. source: "./media/characters/kairne/front-nsfw.svg",
  35308. extra: 908/814,
  35309. bottom: 26/934
  35310. }
  35311. },
  35312. dickCaged: {
  35313. height: math.unit(0.65, "meters"),
  35314. name: "Dick-caged",
  35315. image: {
  35316. source: "./media/characters/kairne/dick-caged.svg"
  35317. }
  35318. },
  35319. dick: {
  35320. height: math.unit(0.79, "meters"),
  35321. name: "Dick",
  35322. image: {
  35323. source: "./media/characters/kairne/dick.svg"
  35324. }
  35325. },
  35326. genitals: {
  35327. height: math.unit(1.29, "meters"),
  35328. name: "Genitals",
  35329. image: {
  35330. source: "./media/characters/kairne/genitals.svg"
  35331. }
  35332. },
  35333. maw: {
  35334. height: math.unit(1.73, "meters"),
  35335. name: "Maw",
  35336. image: {
  35337. source: "./media/characters/kairne/maw.svg"
  35338. }
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Normal",
  35344. height: math.unit(15, "feet"),
  35345. default: true
  35346. },
  35347. ]
  35348. ))
  35349. characterMakers.push(() => makeCharacter(
  35350. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35351. {
  35352. front: {
  35353. height: math.unit(5 + 8/12, "feet"),
  35354. weight: math.unit(139, "lb"),
  35355. name: "Front",
  35356. image: {
  35357. source: "./media/characters/biscuit-jackal/front.svg",
  35358. extra: 2106/1961,
  35359. bottom: 58/2164
  35360. }
  35361. },
  35362. back: {
  35363. height: math.unit(5 + 8/12, "feet"),
  35364. weight: math.unit(139, "lb"),
  35365. name: "Back",
  35366. image: {
  35367. source: "./media/characters/biscuit-jackal/back.svg",
  35368. extra: 2132/1976,
  35369. bottom: 57/2189
  35370. }
  35371. },
  35372. werejackal: {
  35373. height: math.unit(6 + 3/12, "feet"),
  35374. weight: math.unit(188, "lb"),
  35375. name: "Werejackal",
  35376. image: {
  35377. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35378. extra: 2373/2178,
  35379. bottom: 53/2426
  35380. }
  35381. },
  35382. },
  35383. [
  35384. {
  35385. name: "Normal",
  35386. height: math.unit(5 + 8/12, "feet"),
  35387. default: true
  35388. },
  35389. ]
  35390. ))
  35391. characterMakers.push(() => makeCharacter(
  35392. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35393. {
  35394. front: {
  35395. height: math.unit(140, "cm"),
  35396. weight: math.unit(45, "kg"),
  35397. name: "Front",
  35398. image: {
  35399. source: "./media/characters/tayra-white/front.svg",
  35400. extra: 2229/2192,
  35401. bottom: 75/2304
  35402. }
  35403. },
  35404. },
  35405. [
  35406. {
  35407. name: "Normal",
  35408. height: math.unit(140, "cm"),
  35409. default: true
  35410. },
  35411. ]
  35412. ))
  35413. characterMakers.push(() => makeCharacter(
  35414. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35415. {
  35416. front: {
  35417. height: math.unit(4 + 5/12, "feet"),
  35418. name: "Front",
  35419. image: {
  35420. source: "./media/characters/scoop/front.svg",
  35421. extra: 1257/1136,
  35422. bottom: 69/1326
  35423. }
  35424. },
  35425. back: {
  35426. height: math.unit(4 + 5/12, "feet"),
  35427. name: "Back",
  35428. image: {
  35429. source: "./media/characters/scoop/back.svg",
  35430. extra: 1321/1152,
  35431. bottom: 32/1353
  35432. }
  35433. },
  35434. maw: {
  35435. height: math.unit(0.68, "feet"),
  35436. name: "Maw",
  35437. image: {
  35438. source: "./media/characters/scoop/maw.svg"
  35439. }
  35440. },
  35441. },
  35442. [
  35443. {
  35444. name: "Really Small",
  35445. height: math.unit(1, "mm")
  35446. },
  35447. {
  35448. name: "Micro",
  35449. height: math.unit(1, "inch")
  35450. },
  35451. {
  35452. name: "Normal",
  35453. height: math.unit(4 + 5/12, "feet"),
  35454. default: true
  35455. },
  35456. {
  35457. name: "Macro",
  35458. height: math.unit(200, "feet")
  35459. },
  35460. {
  35461. name: "Megamacro",
  35462. height: math.unit(3240, "feet")
  35463. },
  35464. {
  35465. name: "Teramacro",
  35466. height: math.unit(2500, "miles")
  35467. },
  35468. ]
  35469. ))
  35470. characterMakers.push(() => makeCharacter(
  35471. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35472. {
  35473. front: {
  35474. height: math.unit(15 + 7/12, "feet"),
  35475. weight: math.unit(1150, "tons"),
  35476. name: "Front",
  35477. image: {
  35478. source: "./media/characters/saphinara/front.svg",
  35479. extra: 1837/1643,
  35480. bottom: 84/1921
  35481. },
  35482. form: "normal",
  35483. default: true
  35484. },
  35485. side: {
  35486. height: math.unit(15 + 7/12, "feet"),
  35487. weight: math.unit(1150, "tons"),
  35488. name: "Side",
  35489. image: {
  35490. source: "./media/characters/saphinara/side.svg",
  35491. extra: 605/547,
  35492. bottom: 6/611
  35493. },
  35494. form: "normal"
  35495. },
  35496. back: {
  35497. height: math.unit(15 + 7/12, "feet"),
  35498. weight: math.unit(1150, "tons"),
  35499. name: "Back",
  35500. image: {
  35501. source: "./media/characters/saphinara/back.svg",
  35502. extra: 591/531,
  35503. bottom: 13/604
  35504. },
  35505. form: "normal"
  35506. },
  35507. frontTail: {
  35508. height: math.unit(15 + 7/12, "feet"),
  35509. weight: math.unit(1150, "tons"),
  35510. name: "Front (Full Tail)",
  35511. image: {
  35512. source: "./media/characters/saphinara/front-tail.svg",
  35513. extra: 2256/1630,
  35514. bottom: 261/2517
  35515. },
  35516. form: "normal"
  35517. },
  35518. insides: {
  35519. height: math.unit(11.92, "feet"),
  35520. name: "Insides",
  35521. image: {
  35522. source: "./media/characters/saphinara/insides.svg"
  35523. },
  35524. form: "normal"
  35525. },
  35526. head: {
  35527. height: math.unit(4.17, "feet"),
  35528. name: "Head",
  35529. image: {
  35530. source: "./media/characters/saphinara/head.svg"
  35531. },
  35532. form: "normal"
  35533. },
  35534. tongue: {
  35535. height: math.unit(4.60, "feet"),
  35536. name: "Tongue",
  35537. image: {
  35538. source: "./media/characters/saphinara/tongue.svg"
  35539. },
  35540. form: "normal"
  35541. },
  35542. headEnraged: {
  35543. height: math.unit(5.55, "feet"),
  35544. name: "Head (Enraged)",
  35545. image: {
  35546. source: "./media/characters/saphinara/head-enraged.svg"
  35547. },
  35548. form: "normal"
  35549. },
  35550. wings: {
  35551. height: math.unit(11.95, "feet"),
  35552. name: "Wings",
  35553. image: {
  35554. source: "./media/characters/saphinara/wings.svg"
  35555. },
  35556. form: "normal"
  35557. },
  35558. feathers: {
  35559. height: math.unit(8.92, "feet"),
  35560. name: "Feathers",
  35561. image: {
  35562. source: "./media/characters/saphinara/feathers.svg"
  35563. },
  35564. form: "normal"
  35565. },
  35566. shackles: {
  35567. height: math.unit(2, "feet"),
  35568. name: "Shackles",
  35569. image: {
  35570. source: "./media/characters/saphinara/shackles.svg"
  35571. },
  35572. form: "normal"
  35573. },
  35574. eyes: {
  35575. height: math.unit(1.331, "feet"),
  35576. name: "Eyes",
  35577. image: {
  35578. source: "./media/characters/saphinara/eyes.svg"
  35579. },
  35580. form: "normal"
  35581. },
  35582. eyesEnraged: {
  35583. height: math.unit(1.331, "feet"),
  35584. name: "Eyes (Enraged)",
  35585. image: {
  35586. source: "./media/characters/saphinara/eyes-enraged.svg"
  35587. },
  35588. form: "normal"
  35589. },
  35590. trueFormSide: {
  35591. height: math.unit(200, "feet"),
  35592. weight: math.unit(1e7, "tons"),
  35593. name: "Side",
  35594. image: {
  35595. source: "./media/characters/saphinara/true-form-side.svg",
  35596. extra: 1399/770,
  35597. bottom: 97/1496
  35598. },
  35599. form: "true-form",
  35600. default: true
  35601. },
  35602. trueFormMaw: {
  35603. height: math.unit(71.5, "feet"),
  35604. name: "Maw",
  35605. image: {
  35606. source: "./media/characters/saphinara/true-form-maw.svg",
  35607. extra: 2302/1453,
  35608. bottom: 0/2302
  35609. },
  35610. form: "true-form"
  35611. },
  35612. meowberusSide: {
  35613. height: math.unit(75, "feet"),
  35614. weight: math.unit(180000, "kg"),
  35615. preyCapacity: math.unit(50000, "people"),
  35616. name: "Side",
  35617. image: {
  35618. source: "./media/characters/saphinara/meowberus-side.svg",
  35619. extra: 1400/711,
  35620. bottom: 126/1526
  35621. },
  35622. form: "meowberus",
  35623. extraAttributes: {
  35624. "pawArea": {
  35625. name: "Paw Size",
  35626. power: 2,
  35627. type: "area",
  35628. base: math.unit(35, "m^2")
  35629. }
  35630. }
  35631. },
  35632. },
  35633. [
  35634. {
  35635. name: "Normal",
  35636. height: math.unit(15 + 7/12, "feet"),
  35637. default: true,
  35638. form: "normal"
  35639. },
  35640. {
  35641. name: "Angry",
  35642. height: math.unit(30 + 6/12, "feet"),
  35643. form: "normal"
  35644. },
  35645. {
  35646. name: "Enraged",
  35647. height: math.unit(102 + 1/12, "feet"),
  35648. form: "normal"
  35649. },
  35650. {
  35651. name: "True",
  35652. height: math.unit(200, "feet"),
  35653. default: true,
  35654. form: "true-form"
  35655. },
  35656. {
  35657. name: "Normal",
  35658. height: math.unit(75, "feet"),
  35659. default: true,
  35660. form: "meowberus"
  35661. },
  35662. ],
  35663. {
  35664. "normal": {
  35665. name: "Normal",
  35666. default: true
  35667. },
  35668. "true-form": {
  35669. name: "True Form"
  35670. },
  35671. "meowberus": {
  35672. name: "Meowberus",
  35673. },
  35674. }
  35675. ))
  35676. characterMakers.push(() => makeCharacter(
  35677. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35678. {
  35679. front: {
  35680. height: math.unit(6 + 8/12, "feet"),
  35681. weight: math.unit(300, "lb"),
  35682. name: "Front",
  35683. image: {
  35684. source: "./media/characters/jrain/front.svg",
  35685. extra: 3039/2865,
  35686. bottom: 399/3438
  35687. }
  35688. },
  35689. back: {
  35690. height: math.unit(6 + 8/12, "feet"),
  35691. weight: math.unit(300, "lb"),
  35692. name: "Back",
  35693. image: {
  35694. source: "./media/characters/jrain/back.svg",
  35695. extra: 3089/2938,
  35696. bottom: 172/3261
  35697. }
  35698. },
  35699. head: {
  35700. height: math.unit(2.14, "feet"),
  35701. name: "Head",
  35702. image: {
  35703. source: "./media/characters/jrain/head.svg"
  35704. }
  35705. },
  35706. maw: {
  35707. height: math.unit(1.77, "feet"),
  35708. name: "Maw",
  35709. image: {
  35710. source: "./media/characters/jrain/maw.svg"
  35711. }
  35712. },
  35713. leftHand: {
  35714. height: math.unit(1.1, "feet"),
  35715. name: "Left Hand",
  35716. image: {
  35717. source: "./media/characters/jrain/left-hand.svg"
  35718. }
  35719. },
  35720. rightHand: {
  35721. height: math.unit(1.1, "feet"),
  35722. name: "Right Hand",
  35723. image: {
  35724. source: "./media/characters/jrain/right-hand.svg"
  35725. }
  35726. },
  35727. eye: {
  35728. height: math.unit(0.35, "feet"),
  35729. name: "Eye",
  35730. image: {
  35731. source: "./media/characters/jrain/eye.svg"
  35732. }
  35733. },
  35734. },
  35735. [
  35736. {
  35737. name: "Normal",
  35738. height: math.unit(6 + 8/12, "feet"),
  35739. default: true
  35740. },
  35741. {
  35742. name: "Casually Large",
  35743. height: math.unit(25, "feet")
  35744. },
  35745. {
  35746. name: "Giant",
  35747. height: math.unit(100, "feet")
  35748. },
  35749. {
  35750. name: "Kaiju",
  35751. height: math.unit(300, "feet")
  35752. },
  35753. ]
  35754. ))
  35755. characterMakers.push(() => makeCharacter(
  35756. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35757. {
  35758. dragon: {
  35759. height: math.unit(5, "meters"),
  35760. name: "Dragon",
  35761. image: {
  35762. source: "./media/characters/sabrina/dragon.svg",
  35763. extra: 3670 / 2365,
  35764. bottom: 333 / 4003
  35765. }
  35766. },
  35767. gryphon: {
  35768. height: math.unit(3, "meters"),
  35769. name: "Gryphon",
  35770. image: {
  35771. source: "./media/characters/sabrina/gryphon.svg",
  35772. extra: 1576 / 945,
  35773. bottom: 71 / 1647
  35774. }
  35775. },
  35776. snake: {
  35777. height: math.unit(12, "meters"),
  35778. name: "Snake",
  35779. image: {
  35780. source: "./media/characters/sabrina/snake.svg",
  35781. extra: 1758 / 1320,
  35782. bottom: 186 / 1944
  35783. }
  35784. },
  35785. collar: {
  35786. height: math.unit(1.86, "meters"),
  35787. name: "Collar",
  35788. image: {
  35789. source: "./media/characters/sabrina/collar.svg"
  35790. }
  35791. },
  35792. eye: {
  35793. height: math.unit(0.53, "meters"),
  35794. name: "Eye",
  35795. image: {
  35796. source: "./media/characters/sabrina/eye.svg"
  35797. }
  35798. },
  35799. foot: {
  35800. height: math.unit(1.86, "meters"),
  35801. name: "Foot",
  35802. image: {
  35803. source: "./media/characters/sabrina/foot.svg"
  35804. }
  35805. },
  35806. hand: {
  35807. height: math.unit(1.32, "meters"),
  35808. name: "Hand",
  35809. image: {
  35810. source: "./media/characters/sabrina/hand.svg"
  35811. }
  35812. },
  35813. head: {
  35814. height: math.unit(2.44, "meters"),
  35815. name: "Head",
  35816. image: {
  35817. source: "./media/characters/sabrina/head.svg"
  35818. }
  35819. },
  35820. headAngry: {
  35821. height: math.unit(2.44, "meters"),
  35822. name: "Head (Angry))",
  35823. image: {
  35824. source: "./media/characters/sabrina/head-angry.svg"
  35825. }
  35826. },
  35827. maw: {
  35828. height: math.unit(1.65, "meters"),
  35829. name: "Maw",
  35830. image: {
  35831. source: "./media/characters/sabrina/maw.svg"
  35832. }
  35833. },
  35834. spikes: {
  35835. height: math.unit(1.69, "meters"),
  35836. name: "Spikes",
  35837. image: {
  35838. source: "./media/characters/sabrina/spikes.svg"
  35839. }
  35840. },
  35841. stomach: {
  35842. height: math.unit(1.15, "meters"),
  35843. name: "Stomach",
  35844. image: {
  35845. source: "./media/characters/sabrina/stomach.svg"
  35846. }
  35847. },
  35848. tongue: {
  35849. height: math.unit(1.27, "meters"),
  35850. name: "Tongue",
  35851. image: {
  35852. source: "./media/characters/sabrina/tongue.svg"
  35853. }
  35854. },
  35855. wingDorsal: {
  35856. height: math.unit(4.85, "meters"),
  35857. name: "Wing (Dorsal)",
  35858. image: {
  35859. source: "./media/characters/sabrina/wing-dorsal.svg"
  35860. }
  35861. },
  35862. wingVentral: {
  35863. height: math.unit(4.85, "meters"),
  35864. name: "Wing (Ventral)",
  35865. image: {
  35866. source: "./media/characters/sabrina/wing-ventral.svg"
  35867. }
  35868. },
  35869. },
  35870. [
  35871. {
  35872. name: "Normal",
  35873. height: math.unit(5, "meters"),
  35874. default: true
  35875. },
  35876. ]
  35877. ))
  35878. characterMakers.push(() => makeCharacter(
  35879. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35880. {
  35881. frontMaid: {
  35882. height: math.unit(5 + 5/12, "feet"),
  35883. weight: math.unit(130, "lb"),
  35884. name: "Front (Maid)",
  35885. image: {
  35886. source: "./media/characters/midnight-tales/front-maid.svg",
  35887. extra: 489/454,
  35888. bottom: 61/550
  35889. }
  35890. },
  35891. frontFormal: {
  35892. height: math.unit(5 + 5/12, "feet"),
  35893. weight: math.unit(130, "lb"),
  35894. name: "Front (Formal)",
  35895. image: {
  35896. source: "./media/characters/midnight-tales/front-formal.svg",
  35897. extra: 489/454,
  35898. bottom: 61/550
  35899. }
  35900. },
  35901. back: {
  35902. height: math.unit(5 + 5/12, "feet"),
  35903. weight: math.unit(130, "lb"),
  35904. name: "Back",
  35905. image: {
  35906. source: "./media/characters/midnight-tales/back.svg",
  35907. extra: 498/456,
  35908. bottom: 33/531
  35909. }
  35910. },
  35911. frontBeast: {
  35912. height: math.unit(40, "feet"),
  35913. weight: math.unit(64000, "lb"),
  35914. name: "Front (Beast)",
  35915. image: {
  35916. source: "./media/characters/midnight-tales/front-beast.svg",
  35917. extra: 927/860,
  35918. bottom: 53/980
  35919. }
  35920. },
  35921. backBeast: {
  35922. height: math.unit(40, "feet"),
  35923. weight: math.unit(64000, "lb"),
  35924. name: "Back (Beast)",
  35925. image: {
  35926. source: "./media/characters/midnight-tales/back-beast.svg",
  35927. extra: 929/855,
  35928. bottom: 16/945
  35929. }
  35930. },
  35931. footBeast: {
  35932. height: math.unit(6.7, "feet"),
  35933. name: "Foot (Beast)",
  35934. image: {
  35935. source: "./media/characters/midnight-tales/foot-beast.svg"
  35936. }
  35937. },
  35938. headBeast: {
  35939. height: math.unit(8, "feet"),
  35940. name: "Head (Beast)",
  35941. image: {
  35942. source: "./media/characters/midnight-tales/head-beast.svg"
  35943. }
  35944. },
  35945. },
  35946. [
  35947. {
  35948. name: "Normal",
  35949. height: math.unit(5 + 5 / 12, "feet"),
  35950. default: true
  35951. },
  35952. {
  35953. name: "Macro",
  35954. height: math.unit(25, "feet")
  35955. },
  35956. ]
  35957. ))
  35958. characterMakers.push(() => makeCharacter(
  35959. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35960. {
  35961. front: {
  35962. height: math.unit(5 + 10/12, "feet"),
  35963. name: "Front",
  35964. image: {
  35965. source: "./media/characters/argon/front.svg",
  35966. extra: 2009/1935,
  35967. bottom: 118/2127
  35968. }
  35969. },
  35970. back: {
  35971. height: math.unit(5 + 10/12, "feet"),
  35972. name: "Back",
  35973. image: {
  35974. source: "./media/characters/argon/back.svg",
  35975. extra: 2047/1992,
  35976. bottom: 20/2067
  35977. }
  35978. },
  35979. frontDressed: {
  35980. height: math.unit(5 + 10/12, "feet"),
  35981. name: "Front (Dressed)",
  35982. image: {
  35983. source: "./media/characters/argon/front-dressed.svg",
  35984. extra: 2009/1935,
  35985. bottom: 118/2127
  35986. }
  35987. },
  35988. },
  35989. [
  35990. {
  35991. name: "Normal",
  35992. height: math.unit(5 + 10/12, "feet"),
  35993. default: true
  35994. },
  35995. ]
  35996. ))
  35997. characterMakers.push(() => makeCharacter(
  35998. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35999. {
  36000. front: {
  36001. height: math.unit(8 + 6/12, "feet"),
  36002. weight: math.unit(1150, "lb"),
  36003. name: "Front",
  36004. image: {
  36005. source: "./media/characters/kichi/front.svg",
  36006. extra: 1267/1164,
  36007. bottom: 61/1328
  36008. }
  36009. },
  36010. back: {
  36011. height: math.unit(8 + 6/12, "feet"),
  36012. weight: math.unit(1150, "lb"),
  36013. name: "Back",
  36014. image: {
  36015. source: "./media/characters/kichi/back.svg",
  36016. extra: 1273/1166,
  36017. bottom: 33/1306
  36018. }
  36019. },
  36020. },
  36021. [
  36022. {
  36023. name: "Normal",
  36024. height: math.unit(8 + 6/12, "feet"),
  36025. default: true
  36026. },
  36027. ]
  36028. ))
  36029. characterMakers.push(() => makeCharacter(
  36030. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36031. {
  36032. front: {
  36033. height: math.unit(6, "feet"),
  36034. weight: math.unit(210, "lb"),
  36035. name: "Front",
  36036. image: {
  36037. source: "./media/characters/manetel-greyscale/front.svg",
  36038. extra: 350/312,
  36039. bottom: 8/358
  36040. }
  36041. },
  36042. },
  36043. [
  36044. {
  36045. name: "Micro",
  36046. height: math.unit(2, "inches")
  36047. },
  36048. {
  36049. name: "Normal",
  36050. height: math.unit(6, "feet"),
  36051. default: true
  36052. },
  36053. {
  36054. name: "Minimacro",
  36055. height: math.unit(17, "feet")
  36056. },
  36057. {
  36058. name: "Macro",
  36059. height: math.unit(117, "feet")
  36060. },
  36061. ]
  36062. ))
  36063. characterMakers.push(() => makeCharacter(
  36064. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36065. {
  36066. side: {
  36067. height: math.unit(5 + 1/12, "feet"),
  36068. weight: math.unit(418, "lb"),
  36069. name: "Side",
  36070. image: {
  36071. source: "./media/characters/softpurr/side.svg",
  36072. extra: 1993/1945,
  36073. bottom: 134/2127
  36074. }
  36075. },
  36076. front: {
  36077. height: math.unit(5 + 1/12, "feet"),
  36078. weight: math.unit(418, "lb"),
  36079. name: "Front",
  36080. image: {
  36081. source: "./media/characters/softpurr/front.svg",
  36082. extra: 1950/1856,
  36083. bottom: 174/2124
  36084. }
  36085. },
  36086. paw: {
  36087. height: math.unit(1, "feet"),
  36088. name: "Paw",
  36089. image: {
  36090. source: "./media/characters/softpurr/paw.svg"
  36091. }
  36092. },
  36093. },
  36094. [
  36095. {
  36096. name: "Normal",
  36097. height: math.unit(5 + 1/12, "feet"),
  36098. default: true
  36099. },
  36100. ]
  36101. ))
  36102. characterMakers.push(() => makeCharacter(
  36103. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36104. {
  36105. front: {
  36106. height: math.unit(260, "meters"),
  36107. name: "Front",
  36108. image: {
  36109. source: "./media/characters/anahita/front.svg",
  36110. extra: 665/635,
  36111. bottom: 89/754
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Macro",
  36118. height: math.unit(260, "meters"),
  36119. default: true
  36120. },
  36121. ]
  36122. ))
  36123. characterMakers.push(() => makeCharacter(
  36124. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36125. {
  36126. front: {
  36127. height: math.unit(4 + 10/12, "feet"),
  36128. weight: math.unit(160, "lb"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/chip-mouse/front.svg",
  36132. extra: 3528/3408,
  36133. bottom: 0/3528
  36134. }
  36135. },
  36136. frontNsfw: {
  36137. height: math.unit(4 + 10/12, "feet"),
  36138. weight: math.unit(160, "lb"),
  36139. name: "Front (NSFW)",
  36140. image: {
  36141. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36142. extra: 3528/3408,
  36143. bottom: 0/3528
  36144. }
  36145. },
  36146. },
  36147. [
  36148. {
  36149. name: "Normal",
  36150. height: math.unit(4 + 10/12, "feet"),
  36151. default: true
  36152. },
  36153. ]
  36154. ))
  36155. characterMakers.push(() => makeCharacter(
  36156. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36157. {
  36158. side: {
  36159. height: math.unit(10, "feet"),
  36160. weight: math.unit(14000, "lb"),
  36161. name: "Side",
  36162. image: {
  36163. source: "./media/characters/kremm/side.svg",
  36164. extra: 1390/1053,
  36165. bottom: 90/1480
  36166. }
  36167. },
  36168. gut: {
  36169. height: math.unit(5.8, "feet"),
  36170. name: "Gut",
  36171. image: {
  36172. source: "./media/characters/kremm/gut.svg"
  36173. }
  36174. },
  36175. ass: {
  36176. height: math.unit(6.1, "feet"),
  36177. name: "Ass",
  36178. image: {
  36179. source: "./media/characters/kremm/ass.svg"
  36180. }
  36181. },
  36182. jaws: {
  36183. height: math.unit(2.2, "feet"),
  36184. name: "Jaws",
  36185. image: {
  36186. source: "./media/characters/kremm/jaws.svg"
  36187. }
  36188. },
  36189. dick: {
  36190. height: math.unit(4.26, "feet"),
  36191. name: "Dick",
  36192. image: {
  36193. source: "./media/characters/kremm/dick.svg"
  36194. }
  36195. },
  36196. },
  36197. [
  36198. {
  36199. name: "Normal",
  36200. height: math.unit(10, "feet"),
  36201. default: true
  36202. },
  36203. ]
  36204. ))
  36205. characterMakers.push(() => makeCharacter(
  36206. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36207. {
  36208. front: {
  36209. height: math.unit(30, "stories"),
  36210. name: "Front",
  36211. image: {
  36212. source: "./media/characters/kai/front.svg",
  36213. extra: 1892/1718,
  36214. bottom: 162/2054
  36215. }
  36216. },
  36217. },
  36218. [
  36219. {
  36220. name: "Macro",
  36221. height: math.unit(30, "stories"),
  36222. default: true
  36223. },
  36224. ]
  36225. ))
  36226. characterMakers.push(() => makeCharacter(
  36227. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36228. {
  36229. front: {
  36230. height: math.unit(6 + 4/12, "feet"),
  36231. weight: math.unit(145, "lb"),
  36232. name: "Front",
  36233. image: {
  36234. source: "./media/characters/sykes/front.svg",
  36235. extra: 1321 / 1187,
  36236. bottom: 66 / 1387
  36237. }
  36238. },
  36239. back: {
  36240. height: math.unit(6 + 4/12, "feet"),
  36241. weight: math.unit(145, "lb"),
  36242. name: "Back",
  36243. image: {
  36244. source: "./media/characters/sykes/back.svg",
  36245. extra: 1326/1181,
  36246. bottom: 31/1357
  36247. }
  36248. },
  36249. traditionalOutfit: {
  36250. height: math.unit(6 + 4/12, "feet"),
  36251. weight: math.unit(145, "lb"),
  36252. name: "Traditional Outfit",
  36253. image: {
  36254. source: "./media/characters/sykes/traditional-outfit.svg",
  36255. extra: 1321 / 1187,
  36256. bottom: 66 / 1387
  36257. }
  36258. },
  36259. adventureOutfit: {
  36260. height: math.unit(6 + 4/12, "feet"),
  36261. weight: math.unit(145, "lb"),
  36262. name: "Adventure Outfit",
  36263. image: {
  36264. source: "./media/characters/sykes/adventure-outfit.svg",
  36265. extra: 1321 / 1187,
  36266. bottom: 66 / 1387
  36267. }
  36268. },
  36269. handLeft: {
  36270. height: math.unit(0.9, "feet"),
  36271. name: "Hand (Left)",
  36272. image: {
  36273. source: "./media/characters/sykes/hand-left.svg"
  36274. }
  36275. },
  36276. handRight: {
  36277. height: math.unit(0.839, "feet"),
  36278. name: "Hand (Right)",
  36279. image: {
  36280. source: "./media/characters/sykes/hand-right.svg"
  36281. }
  36282. },
  36283. leftFoot: {
  36284. height: math.unit(1.2, "feet"),
  36285. name: "Foot (Left)",
  36286. image: {
  36287. source: "./media/characters/sykes/foot-left.svg"
  36288. }
  36289. },
  36290. rightFoot: {
  36291. height: math.unit(1.2, "feet"),
  36292. name: "Foot (Right)",
  36293. image: {
  36294. source: "./media/characters/sykes/foot-right.svg"
  36295. }
  36296. },
  36297. maw: {
  36298. height: math.unit(1.93, "feet"),
  36299. name: "Maw",
  36300. image: {
  36301. source: "./media/characters/sykes/maw.svg"
  36302. }
  36303. },
  36304. teeth: {
  36305. height: math.unit(0.51, "feet"),
  36306. name: "Teeth",
  36307. image: {
  36308. source: "./media/characters/sykes/teeth.svg"
  36309. }
  36310. },
  36311. tongue: {
  36312. height: math.unit(2.13, "feet"),
  36313. name: "Tongue",
  36314. image: {
  36315. source: "./media/characters/sykes/tongue.svg"
  36316. }
  36317. },
  36318. uvula: {
  36319. height: math.unit(0.16, "feet"),
  36320. name: "Uvula",
  36321. image: {
  36322. source: "./media/characters/sykes/uvula.svg"
  36323. }
  36324. },
  36325. collar: {
  36326. height: math.unit(0.287, "feet"),
  36327. name: "Collar",
  36328. image: {
  36329. source: "./media/characters/sykes/collar.svg"
  36330. }
  36331. },
  36332. tail: {
  36333. height: math.unit(3.8, "feet"),
  36334. name: "Tail",
  36335. image: {
  36336. source: "./media/characters/sykes/tail.svg"
  36337. }
  36338. },
  36339. },
  36340. [
  36341. {
  36342. name: "Shrunken",
  36343. height: math.unit(5, "inches")
  36344. },
  36345. {
  36346. name: "Normal",
  36347. height: math.unit(6 + 4 / 12, "feet"),
  36348. default: true
  36349. },
  36350. {
  36351. name: "Big",
  36352. height: math.unit(15, "feet")
  36353. },
  36354. ]
  36355. ))
  36356. characterMakers.push(() => makeCharacter(
  36357. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36358. {
  36359. front: {
  36360. height: math.unit(5 + 8/12, "feet"),
  36361. weight: math.unit(190, "lb"),
  36362. name: "Front",
  36363. image: {
  36364. source: "./media/characters/oven-otter/front.svg",
  36365. extra: 1809/1740,
  36366. bottom: 181/1990
  36367. }
  36368. },
  36369. back: {
  36370. height: math.unit(5 + 8/12, "feet"),
  36371. weight: math.unit(190, "lb"),
  36372. name: "Back",
  36373. image: {
  36374. source: "./media/characters/oven-otter/back.svg",
  36375. extra: 1709/1635,
  36376. bottom: 118/1827
  36377. }
  36378. },
  36379. hand: {
  36380. height: math.unit(1.07, "feet"),
  36381. name: "Hand",
  36382. image: {
  36383. source: "./media/characters/oven-otter/hand.svg"
  36384. }
  36385. },
  36386. beans: {
  36387. height: math.unit(1.74, "feet"),
  36388. name: "Beans",
  36389. image: {
  36390. source: "./media/characters/oven-otter/beans.svg"
  36391. }
  36392. },
  36393. },
  36394. [
  36395. {
  36396. name: "Micro",
  36397. height: math.unit(0.5, "inches")
  36398. },
  36399. {
  36400. name: "Normal",
  36401. height: math.unit(5 + 8/12, "feet"),
  36402. default: true
  36403. },
  36404. {
  36405. name: "Macro",
  36406. height: math.unit(250, "feet")
  36407. },
  36408. {
  36409. name: "Really High",
  36410. height: math.unit(420, "feet")
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36416. {
  36417. front: {
  36418. height: math.unit(5, "meters"),
  36419. weight: math.unit(292000000000000, "kg"),
  36420. name: "Front",
  36421. image: {
  36422. source: "./media/characters/devourer/front.svg",
  36423. extra: 1800/1733,
  36424. bottom: 211/2011
  36425. }
  36426. },
  36427. maw: {
  36428. height: math.unit(1.1, "meter"),
  36429. name: "Maw",
  36430. image: {
  36431. source: "./media/characters/devourer/maw.svg"
  36432. }
  36433. },
  36434. },
  36435. [
  36436. {
  36437. name: "Small",
  36438. height: math.unit(3, "meters")
  36439. },
  36440. {
  36441. name: "Large",
  36442. height: math.unit(5, "meters"),
  36443. default: true
  36444. },
  36445. ]
  36446. ))
  36447. characterMakers.push(() => makeCharacter(
  36448. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36449. {
  36450. front: {
  36451. height: math.unit(6, "feet"),
  36452. weight: math.unit(400, "lb"),
  36453. name: "Front",
  36454. image: {
  36455. source: "./media/characters/ellarby/front.svg",
  36456. extra: 1909/1763,
  36457. bottom: 80/1989
  36458. }
  36459. },
  36460. back: {
  36461. height: math.unit(6, "feet"),
  36462. weight: math.unit(400, "lb"),
  36463. name: "Back",
  36464. image: {
  36465. source: "./media/characters/ellarby/back.svg",
  36466. extra: 1914/1784,
  36467. bottom: 172/2086
  36468. }
  36469. },
  36470. },
  36471. [
  36472. {
  36473. name: "Mischief",
  36474. height: math.unit(18, "inches")
  36475. },
  36476. {
  36477. name: "Trouble",
  36478. height: math.unit(12, "feet")
  36479. },
  36480. {
  36481. name: "Havoc",
  36482. height: math.unit(200, "feet"),
  36483. default: true
  36484. },
  36485. {
  36486. name: "Pandemonium",
  36487. height: math.unit(1, "mile")
  36488. },
  36489. {
  36490. name: "Catastrophe",
  36491. height: math.unit(100, "miles")
  36492. },
  36493. ]
  36494. ))
  36495. characterMakers.push(() => makeCharacter(
  36496. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36497. {
  36498. front: {
  36499. height: math.unit(4.7, "meters"),
  36500. weight: math.unit(6500, "kg"),
  36501. name: "Front",
  36502. image: {
  36503. source: "./media/characters/vex/front.svg",
  36504. extra: 1288/1140,
  36505. bottom: 100/1388
  36506. }
  36507. },
  36508. },
  36509. [
  36510. {
  36511. name: "Normal",
  36512. height: math.unit(4.7, "meters"),
  36513. default: true
  36514. },
  36515. ]
  36516. ))
  36517. characterMakers.push(() => makeCharacter(
  36518. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36519. {
  36520. normal: {
  36521. height: math.unit(6, "feet"),
  36522. weight: math.unit(350, "lb"),
  36523. name: "Normal",
  36524. image: {
  36525. source: "./media/characters/teshy/normal.svg",
  36526. extra: 1795/1735,
  36527. bottom: 16/1811
  36528. }
  36529. },
  36530. monsterFront: {
  36531. height: math.unit(12, "feet"),
  36532. weight: math.unit(4700, "lb"),
  36533. name: "Monster (Front)",
  36534. image: {
  36535. source: "./media/characters/teshy/monster-front.svg",
  36536. extra: 2042/2034,
  36537. bottom: 128/2170
  36538. }
  36539. },
  36540. monsterSide: {
  36541. height: math.unit(12, "feet"),
  36542. weight: math.unit(4700, "lb"),
  36543. name: "Monster (Side)",
  36544. image: {
  36545. source: "./media/characters/teshy/monster-side.svg",
  36546. extra: 2067/2056,
  36547. bottom: 70/2137
  36548. }
  36549. },
  36550. monsterBack: {
  36551. height: math.unit(12, "feet"),
  36552. weight: math.unit(4700, "lb"),
  36553. name: "Monster (Back)",
  36554. image: {
  36555. source: "./media/characters/teshy/monster-back.svg",
  36556. extra: 1921/1914,
  36557. bottom: 171/2092
  36558. }
  36559. },
  36560. },
  36561. [
  36562. {
  36563. name: "Normal",
  36564. height: math.unit(6, "feet"),
  36565. default: true
  36566. },
  36567. ]
  36568. ))
  36569. characterMakers.push(() => makeCharacter(
  36570. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36571. {
  36572. front: {
  36573. height: math.unit(6, "feet"),
  36574. name: "Front",
  36575. image: {
  36576. source: "./media/characters/ramey/front.svg",
  36577. extra: 790/787,
  36578. bottom: 27/817
  36579. }
  36580. },
  36581. },
  36582. [
  36583. {
  36584. name: "Normal",
  36585. height: math.unit(6, "feet"),
  36586. default: true
  36587. },
  36588. ]
  36589. ))
  36590. characterMakers.push(() => makeCharacter(
  36591. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36592. {
  36593. front: {
  36594. height: math.unit(5 + 5/12, "feet"),
  36595. weight: math.unit(120, "lb"),
  36596. name: "Front",
  36597. image: {
  36598. source: "./media/characters/phirae/front.svg",
  36599. extra: 2491/2436,
  36600. bottom: 38/2529
  36601. }
  36602. },
  36603. },
  36604. [
  36605. {
  36606. name: "Normal",
  36607. height: math.unit(5 + 5/12, "feet"),
  36608. default: true
  36609. },
  36610. ]
  36611. ))
  36612. characterMakers.push(() => makeCharacter(
  36613. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36614. {
  36615. front: {
  36616. height: math.unit(5 + 3/12, "feet"),
  36617. name: "Front",
  36618. image: {
  36619. source: "./media/characters/stagglas/front.svg",
  36620. extra: 962/882,
  36621. bottom: 53/1015
  36622. }
  36623. },
  36624. feral: {
  36625. height: math.unit(335, "cm"),
  36626. name: "Feral",
  36627. image: {
  36628. source: "./media/characters/stagglas/feral.svg",
  36629. extra: 1732/1090,
  36630. bottom: 48/1780
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Normal",
  36637. height: math.unit(5 + 3/12, "feet"),
  36638. default: true
  36639. },
  36640. ]
  36641. ))
  36642. characterMakers.push(() => makeCharacter(
  36643. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36644. {
  36645. front: {
  36646. height: math.unit(5 + 4/12, "feet"),
  36647. weight: math.unit(145, "lb"),
  36648. name: "Front",
  36649. image: {
  36650. source: "./media/characters/starra/front.svg",
  36651. extra: 1790/1691,
  36652. bottom: 91/1881
  36653. }
  36654. },
  36655. },
  36656. [
  36657. {
  36658. name: "Normal",
  36659. height: math.unit(5 + 4/12, "feet"),
  36660. default: true
  36661. },
  36662. ]
  36663. ))
  36664. characterMakers.push(() => makeCharacter(
  36665. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36666. {
  36667. front: {
  36668. height: math.unit(3.5, "meters"),
  36669. name: "Front",
  36670. image: {
  36671. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36672. extra: 1248/972,
  36673. bottom: 38/1286
  36674. }
  36675. },
  36676. },
  36677. [
  36678. {
  36679. name: "Normal",
  36680. height: math.unit(3.5, "meters"),
  36681. default: true
  36682. },
  36683. ]
  36684. ))
  36685. characterMakers.push(() => makeCharacter(
  36686. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36687. {
  36688. side: {
  36689. height: math.unit(8 + 2/12, "feet"),
  36690. weight: math.unit(1240, "lb"),
  36691. name: "Side",
  36692. image: {
  36693. source: "./media/characters/mika-valentine/side.svg",
  36694. extra: 2670/2501,
  36695. bottom: 250/2920
  36696. }
  36697. },
  36698. },
  36699. [
  36700. {
  36701. name: "Normal",
  36702. height: math.unit(8 + 2/12, "feet"),
  36703. default: true
  36704. },
  36705. ]
  36706. ))
  36707. characterMakers.push(() => makeCharacter(
  36708. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36709. {
  36710. front: {
  36711. height: math.unit(7 + 2/12, "feet"),
  36712. name: "Front",
  36713. image: {
  36714. source: "./media/characters/xoltol/front.svg",
  36715. extra: 2212/2124,
  36716. bottom: 84/2296
  36717. }
  36718. },
  36719. side: {
  36720. height: math.unit(7 + 2/12, "feet"),
  36721. name: "Side",
  36722. image: {
  36723. source: "./media/characters/xoltol/side.svg",
  36724. extra: 2273/2197,
  36725. bottom: 26/2299
  36726. }
  36727. },
  36728. hand: {
  36729. height: math.unit(2.5, "feet"),
  36730. name: "Hand",
  36731. image: {
  36732. source: "./media/characters/xoltol/hand.svg"
  36733. }
  36734. },
  36735. },
  36736. [
  36737. {
  36738. name: "Small-ish",
  36739. height: math.unit(5 + 11/12, "feet")
  36740. },
  36741. {
  36742. name: "Normal",
  36743. height: math.unit(7 + 2/12, "feet")
  36744. },
  36745. {
  36746. name: "\"Macro\"",
  36747. height: math.unit(14 + 9/12, "feet"),
  36748. default: true
  36749. },
  36750. {
  36751. name: "Alternate Height",
  36752. height: math.unit(20, "feet")
  36753. },
  36754. {
  36755. name: "Actually Macro",
  36756. height: math.unit(100, "feet")
  36757. },
  36758. ]
  36759. ))
  36760. characterMakers.push(() => makeCharacter(
  36761. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36762. {
  36763. front: {
  36764. height: math.unit(5 + 2/12, "feet"),
  36765. name: "Front",
  36766. image: {
  36767. source: "./media/characters/kotetsu-redwood/front.svg",
  36768. extra: 1053/942,
  36769. bottom: 60/1113
  36770. }
  36771. },
  36772. },
  36773. [
  36774. {
  36775. name: "Normal",
  36776. height: math.unit(5 + 2/12, "feet"),
  36777. default: true
  36778. },
  36779. ]
  36780. ))
  36781. characterMakers.push(() => makeCharacter(
  36782. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36783. {
  36784. front: {
  36785. height: math.unit(2.4, "meters"),
  36786. weight: math.unit(125, "kg"),
  36787. name: "Front",
  36788. image: {
  36789. source: "./media/characters/lilith/front.svg",
  36790. extra: 1590/1513,
  36791. bottom: 203/1793
  36792. }
  36793. },
  36794. },
  36795. [
  36796. {
  36797. name: "Humanoid",
  36798. height: math.unit(2.4, "meters")
  36799. },
  36800. {
  36801. name: "Normal",
  36802. height: math.unit(6, "meters"),
  36803. default: true
  36804. },
  36805. {
  36806. name: "Largest",
  36807. height: math.unit(55, "meters")
  36808. },
  36809. ]
  36810. ))
  36811. characterMakers.push(() => makeCharacter(
  36812. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36813. {
  36814. front: {
  36815. height: math.unit(8 + 4/12, "feet"),
  36816. weight: math.unit(535, "lb"),
  36817. name: "Front",
  36818. image: {
  36819. source: "./media/characters/beh'kah-bolger/front.svg",
  36820. extra: 1660/1603,
  36821. bottom: 37/1697
  36822. }
  36823. },
  36824. },
  36825. [
  36826. {
  36827. name: "Normal",
  36828. height: math.unit(8 + 4/12, "feet"),
  36829. default: true
  36830. },
  36831. {
  36832. name: "Kaiju",
  36833. height: math.unit(250, "feet")
  36834. },
  36835. {
  36836. name: "Still Growing",
  36837. height: math.unit(10, "miles")
  36838. },
  36839. {
  36840. name: "Continental",
  36841. height: math.unit(5000, "miles")
  36842. },
  36843. {
  36844. name: "Final Form",
  36845. height: math.unit(2500000, "miles")
  36846. },
  36847. ]
  36848. ))
  36849. characterMakers.push(() => makeCharacter(
  36850. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36851. {
  36852. front: {
  36853. height: math.unit(7 + 2/12, "feet"),
  36854. weight: math.unit(230, "kg"),
  36855. name: "Front",
  36856. image: {
  36857. source: "./media/characters/tatyana-milewska/front.svg",
  36858. extra: 1199/1150,
  36859. bottom: 86/1285
  36860. }
  36861. },
  36862. },
  36863. [
  36864. {
  36865. name: "Normal",
  36866. height: math.unit(7 + 2/12, "feet"),
  36867. default: true
  36868. },
  36869. {
  36870. name: "Big",
  36871. height: math.unit(12, "feet")
  36872. },
  36873. {
  36874. name: "Minimacro",
  36875. height: math.unit(20, "feet")
  36876. },
  36877. {
  36878. name: "Macro",
  36879. height: math.unit(120, "feet")
  36880. },
  36881. ]
  36882. ))
  36883. characterMakers.push(() => makeCharacter(
  36884. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36885. {
  36886. front: {
  36887. height: math.unit(7 + 8/12, "feet"),
  36888. weight: math.unit(152, "kg"),
  36889. name: "Front",
  36890. image: {
  36891. source: "./media/characters/helen-arri/front.svg",
  36892. extra: 440/423,
  36893. bottom: 14/454
  36894. }
  36895. },
  36896. back: {
  36897. height: math.unit(7 + 8/12, "feet"),
  36898. weight: math.unit(152, "kg"),
  36899. name: "Back",
  36900. image: {
  36901. source: "./media/characters/helen-arri/back.svg",
  36902. extra: 443/426,
  36903. bottom: 8/451
  36904. }
  36905. },
  36906. },
  36907. [
  36908. {
  36909. name: "Normal",
  36910. height: math.unit(7 + 8/12, "feet"),
  36911. default: true
  36912. },
  36913. {
  36914. name: "Big",
  36915. height: math.unit(14, "feet")
  36916. },
  36917. {
  36918. name: "Minimacro",
  36919. height: math.unit(24, "feet")
  36920. },
  36921. {
  36922. name: "Macro",
  36923. height: math.unit(140, "feet")
  36924. },
  36925. ]
  36926. ))
  36927. characterMakers.push(() => makeCharacter(
  36928. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36929. {
  36930. front: {
  36931. height: math.unit(6, "meters"),
  36932. name: "Front",
  36933. image: {
  36934. source: "./media/characters/ehanu-rehu/front.svg",
  36935. extra: 1800/1800,
  36936. bottom: 59/1859
  36937. }
  36938. },
  36939. },
  36940. [
  36941. {
  36942. name: "Normal",
  36943. height: math.unit(6, "meters"),
  36944. default: true
  36945. },
  36946. ]
  36947. ))
  36948. characterMakers.push(() => makeCharacter(
  36949. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36950. {
  36951. front: {
  36952. height: math.unit(7 + 3/12, "feet"),
  36953. name: "Front",
  36954. image: {
  36955. source: "./media/characters/renholder/front.svg",
  36956. extra: 3096/2960,
  36957. bottom: 250/3346
  36958. }
  36959. },
  36960. },
  36961. [
  36962. {
  36963. name: "Normal Bat",
  36964. height: math.unit(7 + 3/12, "feet"),
  36965. default: true
  36966. },
  36967. {
  36968. name: "Slightly Tall Bat",
  36969. height: math.unit(100, "feet")
  36970. },
  36971. {
  36972. name: "Big Bat",
  36973. height: math.unit(1000, "feet")
  36974. },
  36975. {
  36976. name: "City-Sized Bat",
  36977. height: math.unit(200000, "feet")
  36978. },
  36979. {
  36980. name: "Bigger Bat",
  36981. height: math.unit(10000, "miles")
  36982. },
  36983. {
  36984. name: "Solar Sized Bat",
  36985. height: math.unit(100, "AU")
  36986. },
  36987. {
  36988. name: "Galactic Bat",
  36989. height: math.unit(200000, "lightyears")
  36990. },
  36991. {
  36992. name: "Universally Known Bat",
  36993. height: math.unit(1, "universe")
  36994. },
  36995. ]
  36996. ))
  36997. characterMakers.push(() => makeCharacter(
  36998. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36999. {
  37000. front: {
  37001. height: math.unit(6 + 11/12, "feet"),
  37002. weight: math.unit(250, "lb"),
  37003. name: "Front",
  37004. image: {
  37005. source: "./media/characters/cookiecat/front.svg",
  37006. extra: 893/827,
  37007. bottom: 14/907
  37008. }
  37009. },
  37010. },
  37011. [
  37012. {
  37013. name: "Micro",
  37014. height: math.unit(3, "inches")
  37015. },
  37016. {
  37017. name: "Normal",
  37018. height: math.unit(6 + 11/12, "feet"),
  37019. default: true
  37020. },
  37021. {
  37022. name: "Macro",
  37023. height: math.unit(100, "feet")
  37024. },
  37025. {
  37026. name: "Macro+",
  37027. height: math.unit(404, "feet")
  37028. },
  37029. {
  37030. name: "Megamacro",
  37031. height: math.unit(165, "miles")
  37032. },
  37033. {
  37034. name: "Planetary",
  37035. height: math.unit(4600, "miles")
  37036. },
  37037. ]
  37038. ))
  37039. characterMakers.push(() => makeCharacter(
  37040. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37041. {
  37042. front: {
  37043. height: math.unit(10 + 3/12, "feet"),
  37044. weight: math.unit(1500, "lb"),
  37045. name: "Front",
  37046. image: {
  37047. source: "./media/characters/tux-kusanagi/front.svg",
  37048. extra: 944/840,
  37049. bottom: 39/983
  37050. }
  37051. },
  37052. back: {
  37053. height: math.unit(10 + 3/12, "feet"),
  37054. weight: math.unit(1500, "lb"),
  37055. name: "Back",
  37056. image: {
  37057. source: "./media/characters/tux-kusanagi/back.svg",
  37058. extra: 941/842,
  37059. bottom: 28/969
  37060. }
  37061. },
  37062. rump: {
  37063. height: math.unit(5.25, "feet"),
  37064. name: "Rump",
  37065. image: {
  37066. source: "./media/characters/tux-kusanagi/rump.svg"
  37067. }
  37068. },
  37069. beak: {
  37070. height: math.unit(1.54, "feet"),
  37071. name: "Beak",
  37072. image: {
  37073. source: "./media/characters/tux-kusanagi/beak.svg"
  37074. }
  37075. },
  37076. },
  37077. [
  37078. {
  37079. name: "Normal",
  37080. height: math.unit(10 + 3/12, "feet"),
  37081. default: true
  37082. },
  37083. ]
  37084. ))
  37085. characterMakers.push(() => makeCharacter(
  37086. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37087. {
  37088. front: {
  37089. height: math.unit(58, "feet"),
  37090. weight: math.unit(200, "tons"),
  37091. name: "Front",
  37092. image: {
  37093. source: "./media/characters/uzarmazari/front.svg",
  37094. extra: 1575/1455,
  37095. bottom: 152/1727
  37096. }
  37097. },
  37098. back: {
  37099. height: math.unit(58, "feet"),
  37100. weight: math.unit(200, "tons"),
  37101. name: "Back",
  37102. image: {
  37103. source: "./media/characters/uzarmazari/back.svg",
  37104. extra: 1585/1510,
  37105. bottom: 157/1742
  37106. }
  37107. },
  37108. head: {
  37109. height: math.unit(26, "feet"),
  37110. name: "Head",
  37111. image: {
  37112. source: "./media/characters/uzarmazari/head.svg"
  37113. }
  37114. },
  37115. },
  37116. [
  37117. {
  37118. name: "Normal",
  37119. height: math.unit(58, "feet"),
  37120. default: true
  37121. },
  37122. ]
  37123. ))
  37124. characterMakers.push(() => makeCharacter(
  37125. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37126. {
  37127. side: {
  37128. height: math.unit(15, "feet"),
  37129. name: "Side",
  37130. image: {
  37131. source: "./media/characters/akitu/side.svg",
  37132. extra: 1421/1321,
  37133. bottom: 157/1578
  37134. }
  37135. },
  37136. front: {
  37137. height: math.unit(15, "feet"),
  37138. name: "Front",
  37139. image: {
  37140. source: "./media/characters/akitu/front.svg",
  37141. extra: 1435/1326,
  37142. bottom: 232/1667
  37143. }
  37144. },
  37145. },
  37146. [
  37147. {
  37148. name: "Normal",
  37149. height: math.unit(15, "feet"),
  37150. default: true
  37151. },
  37152. ]
  37153. ))
  37154. characterMakers.push(() => makeCharacter(
  37155. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37156. {
  37157. front: {
  37158. height: math.unit(10 + 8/12, "feet"),
  37159. name: "Front",
  37160. image: {
  37161. source: "./media/characters/azalie-croixland/front.svg",
  37162. extra: 1972/1856,
  37163. bottom: 31/2003
  37164. }
  37165. },
  37166. },
  37167. [
  37168. {
  37169. name: "Original Height",
  37170. height: math.unit(5 + 4/12, "feet")
  37171. },
  37172. {
  37173. name: "Normal Height",
  37174. height: math.unit(10 + 8/12, "feet"),
  37175. default: true
  37176. },
  37177. ]
  37178. ))
  37179. characterMakers.push(() => makeCharacter(
  37180. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37181. {
  37182. side: {
  37183. height: math.unit(7 + 1/12, "feet"),
  37184. weight: math.unit(245, "lb"),
  37185. name: "Side",
  37186. image: {
  37187. source: "./media/characters/kavus-kazian/side.svg",
  37188. extra: 349/342,
  37189. bottom: 15/364
  37190. }
  37191. },
  37192. },
  37193. [
  37194. {
  37195. name: "Normal",
  37196. height: math.unit(7 + 1/12, "feet"),
  37197. default: true
  37198. },
  37199. ]
  37200. ))
  37201. characterMakers.push(() => makeCharacter(
  37202. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37203. {
  37204. normalFront: {
  37205. height: math.unit(5 + 11/12, "feet"),
  37206. name: "Front",
  37207. image: {
  37208. source: "./media/characters/moonlight-rose/normal-front.svg",
  37209. extra: 1980/1825,
  37210. bottom: 18/1998
  37211. },
  37212. form: "normal",
  37213. default: true
  37214. },
  37215. normalBack: {
  37216. height: math.unit(5 + 11/12, "feet"),
  37217. name: "Back",
  37218. image: {
  37219. source: "./media/characters/moonlight-rose/normal-back.svg",
  37220. extra: 2010/1839,
  37221. bottom: 10/2020
  37222. },
  37223. form: "normal"
  37224. },
  37225. demonFront: {
  37226. height: math.unit(1.5, "earths"),
  37227. name: "Front",
  37228. image: {
  37229. source: "./media/characters/moonlight-rose/demon.svg",
  37230. extra: 1400/1294,
  37231. bottom: 45/1445
  37232. },
  37233. form: "demon",
  37234. default: true
  37235. },
  37236. terraFront: {
  37237. height: math.unit(1.5, "earths"),
  37238. name: "Front",
  37239. image: {
  37240. source: "./media/characters/moonlight-rose/terra.svg"
  37241. },
  37242. form: "terra",
  37243. default: true
  37244. },
  37245. jupiterFront: {
  37246. height: math.unit(69911*2, "km"),
  37247. name: "Front",
  37248. image: {
  37249. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37250. extra: 1367/1286,
  37251. bottom: 55/1422
  37252. },
  37253. form: "jupiter",
  37254. default: true
  37255. },
  37256. neptuneFront: {
  37257. height: math.unit(24622*2, "feet"),
  37258. name: "Front",
  37259. image: {
  37260. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37261. extra: 1851/1712,
  37262. bottom: 0/1851
  37263. },
  37264. form: "neptune",
  37265. default: true
  37266. },
  37267. },
  37268. [
  37269. {
  37270. name: "\"Natural\" Height",
  37271. height: math.unit(5 + 11/12, "feet"),
  37272. form: "normal"
  37273. },
  37274. {
  37275. name: "Smallest comfortable size",
  37276. height: math.unit(40, "meters"),
  37277. form: "normal"
  37278. },
  37279. {
  37280. name: "Common size",
  37281. height: math.unit(50, "km"),
  37282. form: "normal",
  37283. default: true
  37284. },
  37285. {
  37286. name: "Normal",
  37287. height: math.unit(1.5, "earths"),
  37288. form: "demon",
  37289. default: true
  37290. },
  37291. {
  37292. name: "Universal",
  37293. height: math.unit(15, "universes"),
  37294. form: "demon"
  37295. },
  37296. {
  37297. name: "Earth",
  37298. height: math.unit(1.5, "earths"),
  37299. form: "terra",
  37300. default: true
  37301. },
  37302. {
  37303. name: "Super Earth",
  37304. height: math.unit(67.5, "earths"),
  37305. form: "terra"
  37306. },
  37307. {
  37308. name: "Doesn't fit in a solar system...",
  37309. height: math.unit(1, "galaxy"),
  37310. form: "terra"
  37311. },
  37312. {
  37313. name: "Saturn",
  37314. height: math.unit(58232*2, "km"),
  37315. form: "jupiter"
  37316. },
  37317. {
  37318. name: "Jupiter",
  37319. height: math.unit(69911*2, "km"),
  37320. form: "jupiter",
  37321. default: true
  37322. },
  37323. {
  37324. name: "HD 100546 b",
  37325. height: math.unit(482938, "km"),
  37326. form: "jupiter"
  37327. },
  37328. {
  37329. name: "Enceladus",
  37330. height: math.unit(513*2, "km"),
  37331. form: "neptune"
  37332. },
  37333. {
  37334. name: "Europe",
  37335. height: math.unit(1560*2, "km"),
  37336. form: "neptune"
  37337. },
  37338. {
  37339. name: "Neptune",
  37340. height: math.unit(24622*2, "km"),
  37341. form: "neptune",
  37342. default: true
  37343. },
  37344. {
  37345. name: "CoRoT-9b",
  37346. height: math.unit(75067*2, "km"),
  37347. form: "neptune"
  37348. },
  37349. ],
  37350. {
  37351. "normal": {
  37352. name: "Normal",
  37353. default: true
  37354. },
  37355. "demon": {
  37356. name: "Demon"
  37357. },
  37358. "terra": {
  37359. name: "Terra"
  37360. },
  37361. "jupiter": {
  37362. name: "Jupiter"
  37363. },
  37364. "neptune": {
  37365. name: "Neptune"
  37366. }
  37367. }
  37368. ))
  37369. characterMakers.push(() => makeCharacter(
  37370. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37371. {
  37372. front: {
  37373. height: math.unit(16, "feet"),
  37374. weight: math.unit(610, "kg"),
  37375. name: "Front",
  37376. image: {
  37377. source: "./media/characters/huckle/front.svg",
  37378. extra: 1731/1625,
  37379. bottom: 33/1764
  37380. }
  37381. },
  37382. back: {
  37383. height: math.unit(16, "feet"),
  37384. weight: math.unit(610, "kg"),
  37385. name: "Back",
  37386. image: {
  37387. source: "./media/characters/huckle/back.svg",
  37388. extra: 1738/1651,
  37389. bottom: 37/1775
  37390. }
  37391. },
  37392. laughing: {
  37393. height: math.unit(3.75, "feet"),
  37394. name: "Laughing",
  37395. image: {
  37396. source: "./media/characters/huckle/laughing.svg"
  37397. }
  37398. },
  37399. angry: {
  37400. height: math.unit(4.15, "feet"),
  37401. name: "Angry",
  37402. image: {
  37403. source: "./media/characters/huckle/angry.svg"
  37404. }
  37405. },
  37406. },
  37407. [
  37408. {
  37409. name: "Normal",
  37410. height: math.unit(16, "feet"),
  37411. default: true
  37412. },
  37413. {
  37414. name: "Mini Macro",
  37415. height: math.unit(463, "feet")
  37416. },
  37417. {
  37418. name: "Macro",
  37419. height: math.unit(1680, "meters")
  37420. },
  37421. {
  37422. name: "Mega Macro",
  37423. height: math.unit(175, "km")
  37424. },
  37425. {
  37426. name: "Terra Macro",
  37427. height: math.unit(32, "gigameters")
  37428. },
  37429. {
  37430. name: "Multiverse+",
  37431. height: math.unit(2.56e23, "yottameters")
  37432. },
  37433. ]
  37434. ))
  37435. characterMakers.push(() => makeCharacter(
  37436. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37437. {
  37438. front: {
  37439. height: math.unit(6 + 9/12, "feet"),
  37440. weight: math.unit(280, "lb"),
  37441. name: "Front",
  37442. image: {
  37443. source: "./media/characters/candy/front.svg",
  37444. extra: 234/217,
  37445. bottom: 11/245
  37446. }
  37447. },
  37448. },
  37449. [
  37450. {
  37451. name: "Really Small",
  37452. height: math.unit(0.1, "nm")
  37453. },
  37454. {
  37455. name: "Micro",
  37456. height: math.unit(2, "inches")
  37457. },
  37458. {
  37459. name: "Normal",
  37460. height: math.unit(6 + 9/12, "feet"),
  37461. default: true
  37462. },
  37463. {
  37464. name: "Small Macro",
  37465. height: math.unit(69, "feet")
  37466. },
  37467. {
  37468. name: "Macro",
  37469. height: math.unit(160, "feet")
  37470. },
  37471. {
  37472. name: "Megamacro",
  37473. height: math.unit(22000, "miles")
  37474. },
  37475. {
  37476. name: "Gigamacro",
  37477. height: math.unit(50000, "miles")
  37478. },
  37479. ]
  37480. ))
  37481. characterMakers.push(() => makeCharacter(
  37482. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37483. {
  37484. front: {
  37485. height: math.unit(4, "feet"),
  37486. weight: math.unit(90, "lb"),
  37487. name: "Front",
  37488. image: {
  37489. source: "./media/characters/joey-mcdonald/front.svg",
  37490. extra: 1059/852,
  37491. bottom: 33/1092
  37492. }
  37493. },
  37494. back: {
  37495. height: math.unit(4, "feet"),
  37496. weight: math.unit(90, "lb"),
  37497. name: "Back",
  37498. image: {
  37499. source: "./media/characters/joey-mcdonald/back.svg",
  37500. extra: 1077/879,
  37501. bottom: 5/1082
  37502. }
  37503. },
  37504. frontKobold: {
  37505. height: math.unit(4, "feet"),
  37506. weight: math.unit(100, "lb"),
  37507. name: "Front-kobold",
  37508. image: {
  37509. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37510. extra: 1480/1367,
  37511. bottom: 0/1480
  37512. }
  37513. },
  37514. backKobold: {
  37515. height: math.unit(4, "feet"),
  37516. weight: math.unit(100, "lb"),
  37517. name: "Back-kobold",
  37518. image: {
  37519. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37520. extra: 1449/1361,
  37521. bottom: 0/1449
  37522. }
  37523. },
  37524. },
  37525. [
  37526. {
  37527. name: "Normal",
  37528. height: math.unit(4, "feet"),
  37529. default: true
  37530. },
  37531. ]
  37532. ))
  37533. characterMakers.push(() => makeCharacter(
  37534. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37535. {
  37536. front: {
  37537. height: math.unit(12 + 6/12, "feet"),
  37538. name: "Front",
  37539. image: {
  37540. source: "./media/characters/kass-lockheed/front.svg",
  37541. extra: 354/343,
  37542. bottom: 9/363
  37543. }
  37544. },
  37545. back: {
  37546. height: math.unit(12 + 6/12, "feet"),
  37547. name: "Back",
  37548. image: {
  37549. source: "./media/characters/kass-lockheed/back.svg",
  37550. extra: 364/352,
  37551. bottom: 3/367
  37552. }
  37553. },
  37554. dick: {
  37555. height: math.unit(3.12, "feet"),
  37556. name: "Dick",
  37557. image: {
  37558. source: "./media/characters/kass-lockheed/dick.svg"
  37559. }
  37560. },
  37561. head: {
  37562. height: math.unit(2.6, "feet"),
  37563. name: "Head",
  37564. image: {
  37565. source: "./media/characters/kass-lockheed/head.svg"
  37566. }
  37567. },
  37568. bleh: {
  37569. height: math.unit(2.85, "feet"),
  37570. name: "Bleh",
  37571. image: {
  37572. source: "./media/characters/kass-lockheed/bleh.svg"
  37573. }
  37574. },
  37575. smug: {
  37576. height: math.unit(2.85, "feet"),
  37577. name: "Smug",
  37578. image: {
  37579. source: "./media/characters/kass-lockheed/smug.svg"
  37580. }
  37581. },
  37582. },
  37583. [
  37584. {
  37585. name: "Normal",
  37586. height: math.unit(12 + 6/12, "feet"),
  37587. default: true
  37588. },
  37589. ]
  37590. ))
  37591. characterMakers.push(() => makeCharacter(
  37592. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37593. {
  37594. front: {
  37595. height: math.unit(6 + 2/12, "feet"),
  37596. name: "Front",
  37597. image: {
  37598. source: "./media/characters/taylor/front.svg",
  37599. extra: 639/495,
  37600. bottom: 12/651
  37601. }
  37602. },
  37603. },
  37604. [
  37605. {
  37606. name: "Normal",
  37607. height: math.unit(6 + 2/12, "feet"),
  37608. default: true
  37609. },
  37610. {
  37611. name: "Big",
  37612. height: math.unit(15, "feet")
  37613. },
  37614. {
  37615. name: "Lorg",
  37616. height: math.unit(80, "feet")
  37617. },
  37618. {
  37619. name: "Too Lorg",
  37620. height: math.unit(120, "feet")
  37621. },
  37622. ]
  37623. ))
  37624. characterMakers.push(() => makeCharacter(
  37625. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37626. {
  37627. front: {
  37628. height: math.unit(15, "feet"),
  37629. name: "Front",
  37630. image: {
  37631. source: "./media/characters/kaizer/front.svg",
  37632. extra: 1612/1436,
  37633. bottom: 43/1655
  37634. }
  37635. },
  37636. },
  37637. [
  37638. {
  37639. name: "Normal",
  37640. height: math.unit(15, "feet"),
  37641. default: true
  37642. },
  37643. ]
  37644. ))
  37645. characterMakers.push(() => makeCharacter(
  37646. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37647. {
  37648. front: {
  37649. height: math.unit(2, "feet"),
  37650. weight: math.unit(30, "lb"),
  37651. name: "Front",
  37652. image: {
  37653. source: "./media/characters/sandy/front.svg",
  37654. extra: 1439/1307,
  37655. bottom: 194/1633
  37656. }
  37657. },
  37658. },
  37659. [
  37660. {
  37661. name: "Normal",
  37662. height: math.unit(2, "feet"),
  37663. default: true
  37664. },
  37665. ]
  37666. ))
  37667. characterMakers.push(() => makeCharacter(
  37668. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37669. {
  37670. front: {
  37671. height: math.unit(3, "feet"),
  37672. name: "Front",
  37673. image: {
  37674. source: "./media/characters/mellvi/front.svg",
  37675. extra: 1831/1630,
  37676. bottom: 58/1889
  37677. }
  37678. },
  37679. },
  37680. [
  37681. {
  37682. name: "Normal",
  37683. height: math.unit(3, "feet"),
  37684. default: true
  37685. },
  37686. ]
  37687. ))
  37688. characterMakers.push(() => makeCharacter(
  37689. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37690. {
  37691. front: {
  37692. height: math.unit(5 + 11/12, "feet"),
  37693. weight: math.unit(200, "lb"),
  37694. name: "Front",
  37695. image: {
  37696. source: "./media/characters/shirou/front.svg",
  37697. extra: 2491/2383,
  37698. bottom: 189/2680
  37699. }
  37700. },
  37701. back: {
  37702. height: math.unit(5 + 11/12, "feet"),
  37703. weight: math.unit(200, "lb"),
  37704. name: "Back",
  37705. image: {
  37706. source: "./media/characters/shirou/back.svg",
  37707. extra: 2554/2450,
  37708. bottom: 76/2630
  37709. }
  37710. },
  37711. },
  37712. [
  37713. {
  37714. name: "Normal",
  37715. height: math.unit(5 + 11/12, "feet"),
  37716. default: true
  37717. },
  37718. ]
  37719. ))
  37720. characterMakers.push(() => makeCharacter(
  37721. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37722. {
  37723. front: {
  37724. height: math.unit(6 + 3/12, "feet"),
  37725. weight: math.unit(177, "lb"),
  37726. name: "Front",
  37727. image: {
  37728. source: "./media/characters/noryu/front.svg",
  37729. extra: 973/885,
  37730. bottom: 10/983
  37731. }
  37732. },
  37733. },
  37734. [
  37735. {
  37736. name: "Normal",
  37737. height: math.unit(6 + 3/12, "feet"),
  37738. default: true
  37739. },
  37740. ]
  37741. ))
  37742. characterMakers.push(() => makeCharacter(
  37743. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37744. {
  37745. front: {
  37746. height: math.unit(5 + 6/12, "feet"),
  37747. weight: math.unit(170, "lb"),
  37748. name: "Front",
  37749. image: {
  37750. source: "./media/characters/mevolas-rubenido/front.svg",
  37751. extra: 2109/1901,
  37752. bottom: 96/2205
  37753. }
  37754. },
  37755. },
  37756. [
  37757. {
  37758. name: "Normal",
  37759. height: math.unit(5 + 6/12, "feet"),
  37760. default: true
  37761. },
  37762. ]
  37763. ))
  37764. characterMakers.push(() => makeCharacter(
  37765. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37766. {
  37767. front: {
  37768. height: math.unit(100, "feet"),
  37769. name: "Front",
  37770. image: {
  37771. source: "./media/characters/dee/front.svg",
  37772. extra: 2153/2036,
  37773. bottom: 59/2212
  37774. }
  37775. },
  37776. back: {
  37777. height: math.unit(100, "feet"),
  37778. name: "Back",
  37779. image: {
  37780. source: "./media/characters/dee/back.svg",
  37781. extra: 2183/2058,
  37782. bottom: 75/2258
  37783. }
  37784. },
  37785. foot: {
  37786. height: math.unit(19.43, "feet"),
  37787. name: "Foot",
  37788. image: {
  37789. source: "./media/characters/dee/foot.svg"
  37790. }
  37791. },
  37792. hoof: {
  37793. height: math.unit(20.6, "feet"),
  37794. name: "Hoof",
  37795. image: {
  37796. source: "./media/characters/dee/hoof.svg"
  37797. }
  37798. },
  37799. },
  37800. [
  37801. {
  37802. name: "Macro",
  37803. height: math.unit(100, "feet"),
  37804. default: true
  37805. },
  37806. ]
  37807. ))
  37808. characterMakers.push(() => makeCharacter(
  37809. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37810. {
  37811. front: {
  37812. height: math.unit(5 + 6/12, "feet"),
  37813. name: "Front",
  37814. image: {
  37815. source: "./media/characters/teh/front.svg",
  37816. extra: 1002/847,
  37817. bottom: 62/1064
  37818. }
  37819. },
  37820. },
  37821. [
  37822. {
  37823. name: "Normal",
  37824. height: math.unit(5 + 6/12, "feet"),
  37825. default: true
  37826. },
  37827. ]
  37828. ))
  37829. characterMakers.push(() => makeCharacter(
  37830. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37831. {
  37832. side: {
  37833. height: math.unit(6 + 1/12, "feet"),
  37834. weight: math.unit(204, "lb"),
  37835. name: "Side",
  37836. image: {
  37837. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37838. extra: 974/775,
  37839. bottom: 169/1143
  37840. }
  37841. },
  37842. sitting: {
  37843. height: math.unit(6 + 2/12, "feet"),
  37844. weight: math.unit(204, "lb"),
  37845. name: "Sitting",
  37846. image: {
  37847. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37848. extra: 1175/964,
  37849. bottom: 378/1553
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(6 + 1/12, "feet"),
  37857. default: true
  37858. },
  37859. ]
  37860. ))
  37861. characterMakers.push(() => makeCharacter(
  37862. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37863. {
  37864. front: {
  37865. height: math.unit(6, "inches"),
  37866. name: "Front",
  37867. image: {
  37868. source: "./media/characters/tululi/front.svg",
  37869. extra: 1997/1876,
  37870. bottom: 20/2017
  37871. }
  37872. },
  37873. },
  37874. [
  37875. {
  37876. name: "Normal",
  37877. height: math.unit(6, "inches"),
  37878. default: true
  37879. },
  37880. ]
  37881. ))
  37882. characterMakers.push(() => makeCharacter(
  37883. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37884. {
  37885. front: {
  37886. height: math.unit(4 + 1/12, "feet"),
  37887. name: "Front",
  37888. image: {
  37889. source: "./media/characters/star/front.svg",
  37890. extra: 1493/1189,
  37891. bottom: 48/1541
  37892. }
  37893. },
  37894. },
  37895. [
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(4 + 1/12, "feet"),
  37899. default: true
  37900. },
  37901. ]
  37902. ))
  37903. characterMakers.push(() => makeCharacter(
  37904. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37905. {
  37906. front: {
  37907. height: math.unit(6 + 3/12, "feet"),
  37908. name: "Front",
  37909. image: {
  37910. source: "./media/characters/comet/front.svg",
  37911. extra: 1681/1462,
  37912. bottom: 26/1707
  37913. }
  37914. },
  37915. },
  37916. [
  37917. {
  37918. name: "Normal",
  37919. height: math.unit(6 + 3/12, "feet"),
  37920. default: true
  37921. },
  37922. ]
  37923. ))
  37924. characterMakers.push(() => makeCharacter(
  37925. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37926. {
  37927. front: {
  37928. height: math.unit(950, "feet"),
  37929. name: "Front",
  37930. image: {
  37931. source: "./media/characters/vortex/front.svg",
  37932. extra: 1497/1434,
  37933. bottom: 56/1553
  37934. }
  37935. },
  37936. maw: {
  37937. height: math.unit(285, "feet"),
  37938. name: "Maw",
  37939. image: {
  37940. source: "./media/characters/vortex/maw.svg"
  37941. }
  37942. },
  37943. },
  37944. [
  37945. {
  37946. name: "Macro",
  37947. height: math.unit(950, "feet"),
  37948. default: true
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37954. {
  37955. front: {
  37956. height: math.unit(600, "feet"),
  37957. weight: math.unit(0.02, "grams"),
  37958. name: "Front",
  37959. image: {
  37960. source: "./media/characters/doodle/front.svg",
  37961. extra: 1578/1413,
  37962. bottom: 37/1615
  37963. }
  37964. },
  37965. },
  37966. [
  37967. {
  37968. name: "Macro",
  37969. height: math.unit(600, "feet"),
  37970. default: true
  37971. },
  37972. ]
  37973. ))
  37974. characterMakers.push(() => makeCharacter(
  37975. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37976. {
  37977. front: {
  37978. height: math.unit(6 + 6/12, "feet"),
  37979. name: "Front",
  37980. image: {
  37981. source: "./media/characters/jai/front.svg",
  37982. extra: 1645/1534,
  37983. bottom: 115/1760
  37984. }
  37985. },
  37986. },
  37987. [
  37988. {
  37989. name: "Normal",
  37990. height: math.unit(6 + 6/12, "feet"),
  37991. default: true
  37992. },
  37993. ]
  37994. ))
  37995. characterMakers.push(() => makeCharacter(
  37996. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37997. {
  37998. front: {
  37999. height: math.unit(6 + 8/12, "feet"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/pixel/front.svg",
  38003. extra: 1900/1735,
  38004. bottom: 63/1963
  38005. }
  38006. },
  38007. },
  38008. [
  38009. {
  38010. name: "Normal",
  38011. height: math.unit(6 + 8/12, "feet"),
  38012. default: true
  38013. },
  38014. ]
  38015. ))
  38016. characterMakers.push(() => makeCharacter(
  38017. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38018. {
  38019. back: {
  38020. height: math.unit(4 + 1/12, "feet"),
  38021. weight: math.unit(75, "lb"),
  38022. name: "Back",
  38023. image: {
  38024. source: "./media/characters/rhett/back.svg",
  38025. extra: 930/878,
  38026. bottom: 25/955
  38027. }
  38028. },
  38029. front: {
  38030. height: math.unit(4 + 1/12, "feet"),
  38031. weight: math.unit(75, "lb"),
  38032. name: "Front",
  38033. image: {
  38034. source: "./media/characters/rhett/front.svg",
  38035. extra: 1682/1586,
  38036. bottom: 92/1774
  38037. }
  38038. },
  38039. },
  38040. [
  38041. {
  38042. name: "Micro",
  38043. height: math.unit(8, "inches")
  38044. },
  38045. {
  38046. name: "Tiny",
  38047. height: math.unit(2, "feet")
  38048. },
  38049. {
  38050. name: "Normal",
  38051. height: math.unit(4 + 1/12, "feet"),
  38052. default: true
  38053. },
  38054. ]
  38055. ))
  38056. characterMakers.push(() => makeCharacter(
  38057. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38058. {
  38059. front: {
  38060. height: math.unit(3 + 3/12, "feet"),
  38061. name: "Front",
  38062. image: {
  38063. source: "./media/characters/penny/front.svg",
  38064. extra: 1406/1311,
  38065. bottom: 26/1432
  38066. }
  38067. },
  38068. },
  38069. [
  38070. {
  38071. name: "Normal",
  38072. height: math.unit(3 + 3/12, "feet"),
  38073. default: true
  38074. },
  38075. ]
  38076. ))
  38077. characterMakers.push(() => makeCharacter(
  38078. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38079. {
  38080. front: {
  38081. height: math.unit(4 + 11/12, "feet"),
  38082. name: "Front",
  38083. image: {
  38084. source: "./media/characters/monty/front.svg",
  38085. extra: 1479/1209,
  38086. bottom: 0/1479
  38087. }
  38088. },
  38089. },
  38090. [
  38091. {
  38092. name: "Normal",
  38093. height: math.unit(4 + 11/12, "feet"),
  38094. default: true
  38095. },
  38096. ]
  38097. ))
  38098. characterMakers.push(() => makeCharacter(
  38099. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38100. {
  38101. front: {
  38102. height: math.unit(8 + 4/12, "feet"),
  38103. name: "Front",
  38104. image: {
  38105. source: "./media/characters/sterling/front.svg",
  38106. extra: 1420/1236,
  38107. bottom: 27/1447
  38108. }
  38109. },
  38110. },
  38111. [
  38112. {
  38113. name: "Normal",
  38114. height: math.unit(8 + 4/12, "feet"),
  38115. default: true
  38116. },
  38117. ]
  38118. ))
  38119. characterMakers.push(() => makeCharacter(
  38120. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38121. {
  38122. front: {
  38123. height: math.unit(15, "feet"),
  38124. name: "Front",
  38125. image: {
  38126. source: "./media/characters/marble/front.svg",
  38127. extra: 973/937,
  38128. bottom: 32/1005
  38129. }
  38130. },
  38131. },
  38132. [
  38133. {
  38134. name: "Normal",
  38135. height: math.unit(15, "feet"),
  38136. default: true
  38137. },
  38138. ]
  38139. ))
  38140. characterMakers.push(() => makeCharacter(
  38141. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38142. {
  38143. front: {
  38144. height: math.unit(3, "inches"),
  38145. name: "Front",
  38146. image: {
  38147. source: "./media/characters/powder/front.svg",
  38148. extra: 1504/1334,
  38149. bottom: 518/2022
  38150. }
  38151. },
  38152. },
  38153. [
  38154. {
  38155. name: "Normal",
  38156. height: math.unit(3, "inches"),
  38157. default: true
  38158. },
  38159. ]
  38160. ))
  38161. characterMakers.push(() => makeCharacter(
  38162. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38163. {
  38164. front: {
  38165. height: math.unit(4 + 5/12, "feet"),
  38166. name: "Front",
  38167. image: {
  38168. source: "./media/characters/joey-raccoon/front.svg",
  38169. extra: 1273/1197,
  38170. bottom: 0/1273
  38171. }
  38172. },
  38173. },
  38174. [
  38175. {
  38176. name: "Normal",
  38177. height: math.unit(4 + 5/12, "feet"),
  38178. default: true
  38179. },
  38180. ]
  38181. ))
  38182. characterMakers.push(() => makeCharacter(
  38183. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38184. {
  38185. front: {
  38186. height: math.unit(8 + 4/12, "feet"),
  38187. name: "Front",
  38188. image: {
  38189. source: "./media/characters/vick/front.svg",
  38190. extra: 2187/2118,
  38191. bottom: 47/2234
  38192. }
  38193. },
  38194. },
  38195. [
  38196. {
  38197. name: "Normal",
  38198. height: math.unit(8 + 4/12, "feet"),
  38199. default: true
  38200. },
  38201. ]
  38202. ))
  38203. characterMakers.push(() => makeCharacter(
  38204. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38205. {
  38206. front: {
  38207. height: math.unit(5 + 5/12, "feet"),
  38208. name: "Front",
  38209. image: {
  38210. source: "./media/characters/mitsy/front.svg",
  38211. extra: 1842/1695,
  38212. bottom: 0/1842
  38213. }
  38214. },
  38215. },
  38216. [
  38217. {
  38218. name: "Normal",
  38219. height: math.unit(5 + 5/12, "feet"),
  38220. default: true
  38221. },
  38222. ]
  38223. ))
  38224. characterMakers.push(() => makeCharacter(
  38225. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38226. {
  38227. front: {
  38228. height: math.unit(6 + 3/12, "feet"),
  38229. name: "Front",
  38230. image: {
  38231. source: "./media/characters/silvy/front.svg",
  38232. extra: 1995/1836,
  38233. bottom: 225/2220
  38234. }
  38235. },
  38236. },
  38237. [
  38238. {
  38239. name: "Normal",
  38240. height: math.unit(6 + 3/12, "feet"),
  38241. default: true
  38242. },
  38243. ]
  38244. ))
  38245. characterMakers.push(() => makeCharacter(
  38246. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38247. {
  38248. front: {
  38249. height: math.unit(3 + 8/12, "feet"),
  38250. name: "Front",
  38251. image: {
  38252. source: "./media/characters/rodney/front.svg",
  38253. extra: 1956/1747,
  38254. bottom: 31/1987
  38255. }
  38256. },
  38257. frontDressed: {
  38258. height: math.unit(2.9, "feet"),
  38259. name: "Front (Dressed)",
  38260. image: {
  38261. source: "./media/characters/rodney/front-dressed.svg",
  38262. extra: 1382/1241,
  38263. bottom: 385/1767
  38264. }
  38265. },
  38266. },
  38267. [
  38268. {
  38269. name: "Normal",
  38270. height: math.unit(3 + 8/12, "feet"),
  38271. default: true
  38272. },
  38273. ]
  38274. ))
  38275. characterMakers.push(() => makeCharacter(
  38276. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38277. {
  38278. front: {
  38279. height: math.unit(5 + 9/12, "feet"),
  38280. weight: math.unit(194, "lbs"),
  38281. name: "Front",
  38282. image: {
  38283. source: "./media/characters/zakail-sudekai/front.svg",
  38284. extra: 2696/2533,
  38285. bottom: 248/2944
  38286. }
  38287. },
  38288. maw: {
  38289. height: math.unit(1.35, "feet"),
  38290. name: "Maw",
  38291. image: {
  38292. source: "./media/characters/zakail-sudekai/maw.svg"
  38293. }
  38294. },
  38295. },
  38296. [
  38297. {
  38298. name: "Normal",
  38299. height: math.unit(5 + 9/12, "feet"),
  38300. default: true
  38301. },
  38302. ]
  38303. ))
  38304. characterMakers.push(() => makeCharacter(
  38305. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38306. {
  38307. front: {
  38308. height: math.unit(8 + 4/12, "feet"),
  38309. weight: math.unit(1200, "lb"),
  38310. name: "Front",
  38311. image: {
  38312. source: "./media/characters/eleanor/front.svg",
  38313. extra: 1226/1192,
  38314. bottom: 52/1278
  38315. }
  38316. },
  38317. back: {
  38318. height: math.unit(8 + 4/12, "feet"),
  38319. weight: math.unit(1200, "lb"),
  38320. name: "Back",
  38321. image: {
  38322. source: "./media/characters/eleanor/back.svg",
  38323. extra: 1242/1184,
  38324. bottom: 60/1302
  38325. }
  38326. },
  38327. head: {
  38328. height: math.unit(2.62, "feet"),
  38329. name: "Head",
  38330. image: {
  38331. source: "./media/characters/eleanor/head.svg"
  38332. }
  38333. },
  38334. },
  38335. [
  38336. {
  38337. name: "Normal",
  38338. height: math.unit(8 + 4/12, "feet"),
  38339. default: true
  38340. },
  38341. ]
  38342. ))
  38343. characterMakers.push(() => makeCharacter(
  38344. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38345. {
  38346. front: {
  38347. height: math.unit(8 + 4/12, "feet"),
  38348. weight: math.unit(750, "lb"),
  38349. name: "Front",
  38350. image: {
  38351. source: "./media/characters/tanya/front.svg",
  38352. extra: 1749/1615,
  38353. bottom: 33/1782
  38354. }
  38355. },
  38356. },
  38357. [
  38358. {
  38359. name: "Normal",
  38360. height: math.unit(8 + 4/12, "feet"),
  38361. default: true
  38362. },
  38363. ]
  38364. ))
  38365. characterMakers.push(() => makeCharacter(
  38366. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38367. {
  38368. front: {
  38369. height: math.unit(5, "feet"),
  38370. weight: math.unit(225, "lb"),
  38371. name: "Front",
  38372. image: {
  38373. source: "./media/characters/cindy/front.svg",
  38374. extra: 1320/1250,
  38375. bottom: 42/1362
  38376. }
  38377. },
  38378. frontDressed: {
  38379. height: math.unit(5, "feet"),
  38380. weight: math.unit(225, "lb"),
  38381. name: "Front (Dressed)",
  38382. image: {
  38383. source: "./media/characters/cindy/front-dressed.svg",
  38384. extra: 1320/1250,
  38385. bottom: 42/1362
  38386. }
  38387. },
  38388. back: {
  38389. height: math.unit(5, "feet"),
  38390. weight: math.unit(225, "lb"),
  38391. name: "Back",
  38392. image: {
  38393. source: "./media/characters/cindy/back.svg",
  38394. extra: 1384/1346,
  38395. bottom: 14/1398
  38396. }
  38397. },
  38398. },
  38399. [
  38400. {
  38401. name: "Normal",
  38402. height: math.unit(5, "feet"),
  38403. default: true
  38404. },
  38405. ]
  38406. ))
  38407. characterMakers.push(() => makeCharacter(
  38408. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38409. {
  38410. front: {
  38411. height: math.unit(6 + 9/12, "feet"),
  38412. weight: math.unit(440, "lb"),
  38413. name: "Front",
  38414. image: {
  38415. source: "./media/characters/wilbur-owen/front.svg",
  38416. extra: 1575/1448,
  38417. bottom: 72/1647
  38418. }
  38419. },
  38420. back: {
  38421. height: math.unit(6 + 9/12, "feet"),
  38422. weight: math.unit(440, "lb"),
  38423. name: "Back",
  38424. image: {
  38425. source: "./media/characters/wilbur-owen/back.svg",
  38426. extra: 1578/1445,
  38427. bottom: 36/1614
  38428. }
  38429. },
  38430. },
  38431. [
  38432. {
  38433. name: "Normal",
  38434. height: math.unit(6 + 9/12, "feet"),
  38435. default: true
  38436. },
  38437. ]
  38438. ))
  38439. characterMakers.push(() => makeCharacter(
  38440. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38441. {
  38442. front: {
  38443. height: math.unit(6 + 5/12, "feet"),
  38444. weight: math.unit(650, "lb"),
  38445. name: "Front",
  38446. image: {
  38447. source: "./media/characters/keegan/front.svg",
  38448. extra: 2387/2198,
  38449. bottom: 33/2420
  38450. }
  38451. },
  38452. side: {
  38453. height: math.unit(6 + 5/12, "feet"),
  38454. weight: math.unit(650, "lb"),
  38455. name: "Side",
  38456. image: {
  38457. source: "./media/characters/keegan/side.svg",
  38458. extra: 2390/2202,
  38459. bottom: 47/2437
  38460. }
  38461. },
  38462. back: {
  38463. height: math.unit(6 + 5/12, "feet"),
  38464. weight: math.unit(650, "lb"),
  38465. name: "Back",
  38466. image: {
  38467. source: "./media/characters/keegan/back.svg",
  38468. extra: 2418/2268,
  38469. bottom: 15/2433
  38470. }
  38471. },
  38472. frontSfw: {
  38473. height: math.unit(6 + 5/12, "feet"),
  38474. weight: math.unit(650, "lb"),
  38475. name: "Front (SFW)",
  38476. image: {
  38477. source: "./media/characters/keegan/front-sfw.svg",
  38478. extra: 2387/2198,
  38479. bottom: 33/2420
  38480. }
  38481. },
  38482. beans: {
  38483. height: math.unit(1.85, "feet"),
  38484. name: "Beans",
  38485. image: {
  38486. source: "./media/characters/keegan/beans.svg"
  38487. }
  38488. },
  38489. },
  38490. [
  38491. {
  38492. name: "Normal",
  38493. height: math.unit(6 + 5/12, "feet"),
  38494. default: true
  38495. },
  38496. ]
  38497. ))
  38498. characterMakers.push(() => makeCharacter(
  38499. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38500. {
  38501. front: {
  38502. height: math.unit(9, "feet"),
  38503. name: "Front",
  38504. image: {
  38505. source: "./media/characters/colton/front.svg",
  38506. extra: 1589/1326,
  38507. bottom: 139/1728
  38508. }
  38509. },
  38510. },
  38511. [
  38512. {
  38513. name: "Normal",
  38514. height: math.unit(9, "feet"),
  38515. default: true
  38516. },
  38517. ]
  38518. ))
  38519. characterMakers.push(() => makeCharacter(
  38520. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38521. {
  38522. front: {
  38523. height: math.unit(2 + 9/12, "feet"),
  38524. name: "Front",
  38525. image: {
  38526. source: "./media/characters/bora/front.svg",
  38527. extra: 1265/1250,
  38528. bottom: 24/1289
  38529. }
  38530. },
  38531. },
  38532. [
  38533. {
  38534. name: "Normal",
  38535. height: math.unit(2 + 9/12, "feet"),
  38536. default: true
  38537. },
  38538. ]
  38539. ))
  38540. characterMakers.push(() => makeCharacter(
  38541. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38542. {
  38543. front: {
  38544. height: math.unit(8, "feet"),
  38545. name: "Front",
  38546. image: {
  38547. source: "./media/characters/myu-myu/front.svg",
  38548. extra: 1949/1857,
  38549. bottom: 90/2039
  38550. }
  38551. },
  38552. },
  38553. [
  38554. {
  38555. name: "Normal",
  38556. height: math.unit(8, "feet"),
  38557. default: true
  38558. },
  38559. {
  38560. name: "Big",
  38561. height: math.unit(15, "feet")
  38562. },
  38563. {
  38564. name: "BIG",
  38565. height: math.unit(25, "feet")
  38566. },
  38567. ]
  38568. ))
  38569. characterMakers.push(() => makeCharacter(
  38570. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38571. {
  38572. side: {
  38573. height: math.unit(7 + 5/12, "feet"),
  38574. weight: math.unit(2800, "lb"),
  38575. name: "Side",
  38576. image: {
  38577. source: "./media/characters/haloren/side.svg",
  38578. extra: 1793/409,
  38579. bottom: 59/1852
  38580. }
  38581. },
  38582. frontPaw: {
  38583. height: math.unit(2.36, "feet"),
  38584. name: "Front paw",
  38585. image: {
  38586. source: "./media/characters/haloren/front-paw.svg"
  38587. }
  38588. },
  38589. hindPaw: {
  38590. height: math.unit(3.18, "feet"),
  38591. name: "Hind paw",
  38592. image: {
  38593. source: "./media/characters/haloren/hind-paw.svg"
  38594. }
  38595. },
  38596. maw: {
  38597. height: math.unit(5.05, "feet"),
  38598. name: "Maw",
  38599. image: {
  38600. source: "./media/characters/haloren/maw.svg"
  38601. }
  38602. },
  38603. dick: {
  38604. height: math.unit(2.90, "feet"),
  38605. name: "Dick",
  38606. image: {
  38607. source: "./media/characters/haloren/dick.svg"
  38608. }
  38609. },
  38610. },
  38611. [
  38612. {
  38613. name: "Normal",
  38614. height: math.unit(7 + 5/12, "feet"),
  38615. default: true
  38616. },
  38617. {
  38618. name: "Enhanced",
  38619. height: math.unit(14 + 3/12, "feet")
  38620. },
  38621. ]
  38622. ))
  38623. characterMakers.push(() => makeCharacter(
  38624. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38625. {
  38626. front: {
  38627. height: math.unit(171, "cm"),
  38628. name: "Front",
  38629. image: {
  38630. source: "./media/characters/kimmy/front.svg",
  38631. extra: 1491/1435,
  38632. bottom: 53/1544
  38633. }
  38634. },
  38635. },
  38636. [
  38637. {
  38638. name: "Small",
  38639. height: math.unit(9, "cm")
  38640. },
  38641. {
  38642. name: "Normal",
  38643. height: math.unit(171, "cm"),
  38644. default: true
  38645. },
  38646. ]
  38647. ))
  38648. characterMakers.push(() => makeCharacter(
  38649. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38650. {
  38651. front: {
  38652. height: math.unit(8, "feet"),
  38653. weight: math.unit(300, "lb"),
  38654. name: "Front",
  38655. image: {
  38656. source: "./media/characters/galeboomer/front.svg",
  38657. extra: 4651/4415,
  38658. bottom: 162/4813
  38659. }
  38660. },
  38661. back: {
  38662. height: math.unit(8, "feet"),
  38663. weight: math.unit(300, "lb"),
  38664. name: "Back",
  38665. image: {
  38666. source: "./media/characters/galeboomer/back.svg",
  38667. extra: 4544/4314,
  38668. bottom: 16/4560
  38669. }
  38670. },
  38671. frontAlt: {
  38672. height: math.unit(8, "feet"),
  38673. weight: math.unit(300, "lb"),
  38674. name: "Front (Alt)",
  38675. image: {
  38676. source: "./media/characters/galeboomer/front-alt.svg",
  38677. extra: 4458/4228,
  38678. bottom: 68/4526
  38679. }
  38680. },
  38681. maw: {
  38682. height: math.unit(1.2, "feet"),
  38683. name: "Maw",
  38684. image: {
  38685. source: "./media/characters/galeboomer/maw.svg"
  38686. }
  38687. },
  38688. },
  38689. [
  38690. {
  38691. name: "Normal",
  38692. height: math.unit(8, "feet"),
  38693. default: true
  38694. },
  38695. ]
  38696. ))
  38697. characterMakers.push(() => makeCharacter(
  38698. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38699. {
  38700. front: {
  38701. height: math.unit(5 + 9/12, "feet"),
  38702. weight: math.unit(120, "lb"),
  38703. name: "Front",
  38704. image: {
  38705. source: "./media/characters/chyr/front.svg",
  38706. extra: 1323/1254,
  38707. bottom: 63/1386
  38708. }
  38709. },
  38710. back: {
  38711. height: math.unit(5 + 9/12, "feet"),
  38712. weight: math.unit(120, "lb"),
  38713. name: "Back",
  38714. image: {
  38715. source: "./media/characters/chyr/back.svg",
  38716. extra: 1323/1252,
  38717. bottom: 48/1371
  38718. }
  38719. },
  38720. },
  38721. [
  38722. {
  38723. name: "Normal",
  38724. height: math.unit(5 + 9/12, "feet"),
  38725. default: true
  38726. },
  38727. ]
  38728. ))
  38729. characterMakers.push(() => makeCharacter(
  38730. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38731. {
  38732. front: {
  38733. height: math.unit(7, "feet"),
  38734. weight: math.unit(310, "lb"),
  38735. name: "Front",
  38736. image: {
  38737. source: "./media/characters/solarus/front.svg",
  38738. extra: 2415/2021,
  38739. bottom: 103/2518
  38740. }
  38741. },
  38742. back: {
  38743. height: math.unit(7, "feet"),
  38744. weight: math.unit(310, "lb"),
  38745. name: "Back",
  38746. image: {
  38747. source: "./media/characters/solarus/back.svg",
  38748. extra: 2463/2089,
  38749. bottom: 79/2542
  38750. }
  38751. },
  38752. },
  38753. [
  38754. {
  38755. name: "Normal",
  38756. height: math.unit(7, "feet"),
  38757. default: true
  38758. },
  38759. ]
  38760. ))
  38761. characterMakers.push(() => makeCharacter(
  38762. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38763. {
  38764. front: {
  38765. height: math.unit(16, "feet"),
  38766. name: "Front",
  38767. image: {
  38768. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38769. extra: 1844/1780,
  38770. bottom: 58/1902
  38771. }
  38772. },
  38773. winterCoat: {
  38774. height: math.unit(16, "feet"),
  38775. name: "Winter Coat",
  38776. image: {
  38777. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38778. extra: 1807/1775,
  38779. bottom: 69/1876
  38780. }
  38781. },
  38782. },
  38783. [
  38784. {
  38785. name: "Normal",
  38786. height: math.unit(16, "feet"),
  38787. default: true
  38788. },
  38789. {
  38790. name: "Chicago Size",
  38791. height: math.unit(560, "feet")
  38792. },
  38793. ]
  38794. ))
  38795. characterMakers.push(() => makeCharacter(
  38796. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38797. {
  38798. front: {
  38799. height: math.unit(11 + 6/12, "feet"),
  38800. weight: math.unit(1366, "lb"),
  38801. name: "Front",
  38802. image: {
  38803. source: "./media/characters/lexor/front.svg",
  38804. extra: 1560/1481,
  38805. bottom: 211/1771
  38806. }
  38807. },
  38808. back: {
  38809. height: math.unit(11 + 6/12, "feet"),
  38810. weight: math.unit(1366, "lb"),
  38811. name: "Back",
  38812. image: {
  38813. source: "./media/characters/lexor/back.svg",
  38814. extra: 1614/1533,
  38815. bottom: 76/1690
  38816. }
  38817. },
  38818. maw: {
  38819. height: math.unit(3, "feet"),
  38820. name: "Maw",
  38821. image: {
  38822. source: "./media/characters/lexor/maw.svg"
  38823. }
  38824. },
  38825. dick: {
  38826. height: math.unit(2.59, "feet"),
  38827. name: "Dick",
  38828. image: {
  38829. source: "./media/characters/lexor/dick.svg"
  38830. }
  38831. },
  38832. },
  38833. [
  38834. {
  38835. name: "Normal",
  38836. height: math.unit(11 + 6/12, "feet"),
  38837. default: true
  38838. },
  38839. ]
  38840. ))
  38841. characterMakers.push(() => makeCharacter(
  38842. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38843. {
  38844. front: {
  38845. height: math.unit(5 + 8/12, "feet"),
  38846. name: "Front",
  38847. image: {
  38848. source: "./media/characters/magnum/front.svg",
  38849. extra: 942/855,
  38850. bottom: 26/968
  38851. }
  38852. },
  38853. },
  38854. [
  38855. {
  38856. name: "Normal",
  38857. height: math.unit(5 + 8/12, "feet"),
  38858. default: true
  38859. },
  38860. ]
  38861. ))
  38862. characterMakers.push(() => makeCharacter(
  38863. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38864. {
  38865. front: {
  38866. height: math.unit(18 + 4/12, "feet"),
  38867. weight: math.unit(1500, "kg"),
  38868. name: "Front",
  38869. image: {
  38870. source: "./media/characters/solas-sharpsman/front.svg",
  38871. extra: 1698/1589,
  38872. bottom: 0/1698
  38873. }
  38874. },
  38875. },
  38876. [
  38877. {
  38878. name: "Normal",
  38879. height: math.unit(18 + 4/12, "feet"),
  38880. default: true
  38881. },
  38882. ]
  38883. ))
  38884. characterMakers.push(() => makeCharacter(
  38885. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38886. {
  38887. front: {
  38888. height: math.unit(5 + 5/12, "feet"),
  38889. weight: math.unit(180, "lb"),
  38890. name: "Front",
  38891. image: {
  38892. source: "./media/characters/october/front.svg",
  38893. extra: 1800/1650,
  38894. bottom: 0/1800
  38895. }
  38896. },
  38897. frontNsfw: {
  38898. height: math.unit(5 + 5/12, "feet"),
  38899. weight: math.unit(180, "lb"),
  38900. name: "Front (NSFW)",
  38901. image: {
  38902. source: "./media/characters/october/front-nsfw.svg",
  38903. extra: 1392/1307,
  38904. bottom: 42/1434
  38905. }
  38906. },
  38907. },
  38908. [
  38909. {
  38910. name: "Normal",
  38911. height: math.unit(5 + 5/12, "feet"),
  38912. default: true
  38913. },
  38914. ]
  38915. ))
  38916. characterMakers.push(() => makeCharacter(
  38917. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38918. {
  38919. front: {
  38920. height: math.unit(8 + 6/12, "feet"),
  38921. name: "Front",
  38922. image: {
  38923. source: "./media/characters/essynkardi/front.svg",
  38924. extra: 1914/1846,
  38925. bottom: 22/1936
  38926. }
  38927. },
  38928. },
  38929. [
  38930. {
  38931. name: "Normal",
  38932. height: math.unit(8 + 6/12, "feet"),
  38933. default: true
  38934. },
  38935. ]
  38936. ))
  38937. characterMakers.push(() => makeCharacter(
  38938. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38939. {
  38940. front: {
  38941. height: math.unit(6 + 6/12, "feet"),
  38942. weight: math.unit(7, "lb"),
  38943. name: "Front",
  38944. image: {
  38945. source: "./media/characters/icky/front.svg",
  38946. extra: 813/782,
  38947. bottom: 66/879
  38948. }
  38949. },
  38950. back: {
  38951. height: math.unit(6 + 6/12, "feet"),
  38952. weight: math.unit(7, "lb"),
  38953. name: "Back",
  38954. image: {
  38955. source: "./media/characters/icky/back.svg",
  38956. extra: 754/735,
  38957. bottom: 56/810
  38958. }
  38959. },
  38960. },
  38961. [
  38962. {
  38963. name: "Normal",
  38964. height: math.unit(6 + 6/12, "feet"),
  38965. default: true
  38966. },
  38967. ]
  38968. ))
  38969. characterMakers.push(() => makeCharacter(
  38970. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38971. {
  38972. front: {
  38973. height: math.unit(15, "feet"),
  38974. name: "Front",
  38975. image: {
  38976. source: "./media/characters/rojas/front.svg",
  38977. extra: 1462/1408,
  38978. bottom: 95/1557
  38979. }
  38980. },
  38981. back: {
  38982. height: math.unit(15, "feet"),
  38983. name: "Back",
  38984. image: {
  38985. source: "./media/characters/rojas/back.svg",
  38986. extra: 1023/954,
  38987. bottom: 28/1051
  38988. }
  38989. },
  38990. },
  38991. [
  38992. {
  38993. name: "Normal",
  38994. height: math.unit(15, "feet"),
  38995. default: true
  38996. },
  38997. ]
  38998. ))
  38999. characterMakers.push(() => makeCharacter(
  39000. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39001. {
  39002. frontHuman: {
  39003. height: math.unit(5 + 7/12, "feet"),
  39004. name: "Front (Human)",
  39005. image: {
  39006. source: "./media/characters/alek-dryagan/front-human.svg",
  39007. extra: 1687/1667,
  39008. bottom: 69/1756
  39009. }
  39010. },
  39011. backHuman: {
  39012. height: math.unit(5 + 7/12, "feet"),
  39013. name: "Back (Human)",
  39014. image: {
  39015. source: "./media/characters/alek-dryagan/back-human.svg",
  39016. extra: 1670/1649,
  39017. bottom: 65/1735
  39018. }
  39019. },
  39020. frontDemi: {
  39021. height: math.unit(65, "feet"),
  39022. name: "Front (Demi)",
  39023. image: {
  39024. source: "./media/characters/alek-dryagan/front-demi.svg",
  39025. extra: 1669/1642,
  39026. bottom: 49/1718
  39027. }
  39028. },
  39029. backDemi: {
  39030. height: math.unit(65, "feet"),
  39031. name: "Back (Demi)",
  39032. image: {
  39033. source: "./media/characters/alek-dryagan/back-demi.svg",
  39034. extra: 1658/1637,
  39035. bottom: 40/1698
  39036. }
  39037. },
  39038. mawHuman: {
  39039. height: math.unit(0.3, "feet"),
  39040. name: "Maw (Human)",
  39041. image: {
  39042. source: "./media/characters/alek-dryagan/maw-human.svg"
  39043. }
  39044. },
  39045. mawDemi: {
  39046. height: math.unit(3.8, "feet"),
  39047. name: "Maw (Demi)",
  39048. image: {
  39049. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39050. }
  39051. },
  39052. },
  39053. [
  39054. {
  39055. name: "Normal",
  39056. height: math.unit(5 + 7/12, "feet"),
  39057. default: true
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39063. {
  39064. frontHuman: {
  39065. height: math.unit(5 + 2/12, "feet"),
  39066. name: "Front (Human)",
  39067. image: {
  39068. source: "./media/characters/gen/front-human.svg",
  39069. extra: 1627/1538,
  39070. bottom: 71/1698
  39071. }
  39072. },
  39073. backHuman: {
  39074. height: math.unit(5 + 2/12, "feet"),
  39075. name: "Back (Human)",
  39076. image: {
  39077. source: "./media/characters/gen/back-human.svg",
  39078. extra: 1638/1548,
  39079. bottom: 69/1707
  39080. }
  39081. },
  39082. frontDemi: {
  39083. height: math.unit(5 + 2/12, "feet"),
  39084. name: "Front (Demi)",
  39085. image: {
  39086. source: "./media/characters/gen/front-demi.svg",
  39087. extra: 1627/1538,
  39088. bottom: 71/1698
  39089. }
  39090. },
  39091. backDemi: {
  39092. height: math.unit(5 + 2/12, "feet"),
  39093. name: "Back (Demi)",
  39094. image: {
  39095. source: "./media/characters/gen/back-demi.svg",
  39096. extra: 1638/1548,
  39097. bottom: 69/1707
  39098. }
  39099. },
  39100. },
  39101. [
  39102. {
  39103. name: "Normal",
  39104. height: math.unit(5 + 2/12, "feet"),
  39105. default: true
  39106. },
  39107. ]
  39108. ))
  39109. characterMakers.push(() => makeCharacter(
  39110. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39111. {
  39112. frontImp: {
  39113. height: math.unit(1 + 11/12, "feet"),
  39114. name: "Front (Imp)",
  39115. image: {
  39116. source: "./media/characters/max-kobold/front-imp.svg",
  39117. extra: 1238/1134,
  39118. bottom: 81/1319
  39119. }
  39120. },
  39121. backImp: {
  39122. height: math.unit(1 + 11/12, "feet"),
  39123. name: "Back (Imp)",
  39124. image: {
  39125. source: "./media/characters/max-kobold/back-imp.svg",
  39126. extra: 1334/1175,
  39127. bottom: 34/1368
  39128. }
  39129. },
  39130. frontDemi: {
  39131. height: math.unit(5 + 9/12, "feet"),
  39132. name: "Front (Demi)",
  39133. image: {
  39134. source: "./media/characters/max-kobold/front-demi.svg",
  39135. extra: 1715/1685,
  39136. bottom: 54/1769
  39137. }
  39138. },
  39139. backDemi: {
  39140. height: math.unit(5 + 9/12, "feet"),
  39141. name: "Back (Demi)",
  39142. image: {
  39143. source: "./media/characters/max-kobold/back-demi.svg",
  39144. extra: 1752/1729,
  39145. bottom: 41/1793
  39146. }
  39147. },
  39148. handImp: {
  39149. height: math.unit(0.45, "feet"),
  39150. name: "Hand (Imp)",
  39151. image: {
  39152. source: "./media/characters/max-kobold/hand.svg"
  39153. }
  39154. },
  39155. pawImp: {
  39156. height: math.unit(0.46, "feet"),
  39157. name: "Paw (Imp)",
  39158. image: {
  39159. source: "./media/characters/max-kobold/paw.svg"
  39160. }
  39161. },
  39162. handDemi: {
  39163. height: math.unit(0.80, "feet"),
  39164. name: "Hand (Demi)",
  39165. image: {
  39166. source: "./media/characters/max-kobold/hand.svg"
  39167. }
  39168. },
  39169. pawDemi: {
  39170. height: math.unit(1.1, "feet"),
  39171. name: "Paw (Demi)",
  39172. image: {
  39173. source: "./media/characters/max-kobold/paw.svg"
  39174. }
  39175. },
  39176. headImp: {
  39177. height: math.unit(1.33, "feet"),
  39178. name: "Head (Imp)",
  39179. image: {
  39180. source: "./media/characters/max-kobold/head-imp.svg"
  39181. }
  39182. },
  39183. mawImp: {
  39184. height: math.unit(0.75, "feet"),
  39185. name: "Maw (Imp)",
  39186. image: {
  39187. source: "./media/characters/max-kobold/maw-imp.svg"
  39188. }
  39189. },
  39190. mawDemi: {
  39191. height: math.unit(0.42, "feet"),
  39192. name: "Maw (Demi)",
  39193. image: {
  39194. source: "./media/characters/max-kobold/maw-demi.svg"
  39195. }
  39196. },
  39197. },
  39198. [
  39199. {
  39200. name: "Normal",
  39201. height: math.unit(1 + 11/12, "feet"),
  39202. default: true
  39203. },
  39204. ]
  39205. ))
  39206. characterMakers.push(() => makeCharacter(
  39207. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39208. {
  39209. front: {
  39210. height: math.unit(7 + 5/12, "feet"),
  39211. name: "Front",
  39212. image: {
  39213. source: "./media/characters/carbon/front.svg",
  39214. extra: 1754/1689,
  39215. bottom: 65/1819
  39216. }
  39217. },
  39218. back: {
  39219. height: math.unit(7 + 5/12, "feet"),
  39220. name: "Back",
  39221. image: {
  39222. source: "./media/characters/carbon/back.svg",
  39223. extra: 1762/1695,
  39224. bottom: 24/1786
  39225. }
  39226. },
  39227. frontGigantamax: {
  39228. height: math.unit(150, "feet"),
  39229. name: "Front (Gigantamax)",
  39230. image: {
  39231. source: "./media/characters/carbon/front-gigantamax.svg",
  39232. extra: 1826/1669,
  39233. bottom: 59/1885
  39234. }
  39235. },
  39236. backGigantamax: {
  39237. height: math.unit(150, "feet"),
  39238. name: "Back (Gigantamax)",
  39239. image: {
  39240. source: "./media/characters/carbon/back-gigantamax.svg",
  39241. extra: 1796/1653,
  39242. bottom: 53/1849
  39243. }
  39244. },
  39245. maw: {
  39246. height: math.unit(0.48, "feet"),
  39247. name: "Maw",
  39248. image: {
  39249. source: "./media/characters/carbon/maw.svg"
  39250. }
  39251. },
  39252. mawGigantamax: {
  39253. height: math.unit(7.5, "feet"),
  39254. name: "Maw (Gigantamax)",
  39255. image: {
  39256. source: "./media/characters/carbon/maw-gigantamax.svg"
  39257. }
  39258. },
  39259. },
  39260. [
  39261. {
  39262. name: "Normal",
  39263. height: math.unit(7 + 5/12, "feet"),
  39264. default: true
  39265. },
  39266. ]
  39267. ))
  39268. characterMakers.push(() => makeCharacter(
  39269. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39270. {
  39271. front: {
  39272. height: math.unit(6, "feet"),
  39273. name: "Front",
  39274. image: {
  39275. source: "./media/characters/maverick/front.svg",
  39276. extra: 1672/1661,
  39277. bottom: 85/1757
  39278. }
  39279. },
  39280. back: {
  39281. height: math.unit(6, "feet"),
  39282. name: "Back",
  39283. image: {
  39284. source: "./media/characters/maverick/back.svg",
  39285. extra: 1642/1631,
  39286. bottom: 38/1680
  39287. }
  39288. },
  39289. },
  39290. [
  39291. {
  39292. name: "Normal",
  39293. height: math.unit(6, "feet"),
  39294. default: true
  39295. },
  39296. ]
  39297. ))
  39298. characterMakers.push(() => makeCharacter(
  39299. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39300. {
  39301. front: {
  39302. height: math.unit(15, "feet"),
  39303. weight: math.unit(615, "lb"),
  39304. name: "Front",
  39305. image: {
  39306. source: "./media/characters/grockle/front.svg",
  39307. extra: 1535/1427,
  39308. bottom: 56/1591
  39309. }
  39310. },
  39311. },
  39312. [
  39313. {
  39314. name: "Normal",
  39315. height: math.unit(15, "feet"),
  39316. default: true
  39317. },
  39318. {
  39319. name: "Large",
  39320. height: math.unit(150, "feet")
  39321. },
  39322. {
  39323. name: "Macro",
  39324. height: math.unit(1876, "feet")
  39325. },
  39326. {
  39327. name: "Mega Macro",
  39328. height: math.unit(121940, "feet")
  39329. },
  39330. {
  39331. name: "Giga Macro",
  39332. height: math.unit(750, "km")
  39333. },
  39334. {
  39335. name: "Tera Macro",
  39336. height: math.unit(750000, "km")
  39337. },
  39338. {
  39339. name: "Galactic",
  39340. height: math.unit(1.4e5, "km")
  39341. },
  39342. {
  39343. name: "Godlike",
  39344. height: math.unit(9.8e280, "galaxies")
  39345. },
  39346. ]
  39347. ))
  39348. characterMakers.push(() => makeCharacter(
  39349. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39350. {
  39351. front: {
  39352. height: math.unit(11, "meters"),
  39353. weight: math.unit(20, "tonnes"),
  39354. name: "Front",
  39355. image: {
  39356. source: "./media/characters/alistair/front.svg",
  39357. extra: 1265/1009,
  39358. bottom: 93/1358
  39359. }
  39360. },
  39361. },
  39362. [
  39363. {
  39364. name: "Normal",
  39365. height: math.unit(11, "meters"),
  39366. default: true
  39367. },
  39368. ]
  39369. ))
  39370. characterMakers.push(() => makeCharacter(
  39371. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39372. {
  39373. front: {
  39374. height: math.unit(5 + 8/12, "feet"),
  39375. name: "Front",
  39376. image: {
  39377. source: "./media/characters/haruka/front.svg",
  39378. extra: 2012/1952,
  39379. bottom: 0/2012
  39380. }
  39381. },
  39382. },
  39383. [
  39384. {
  39385. name: "Normal",
  39386. height: math.unit(5 + 8/12, "feet"),
  39387. default: true
  39388. },
  39389. ]
  39390. ))
  39391. characterMakers.push(() => makeCharacter(
  39392. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39393. {
  39394. back: {
  39395. height: math.unit(9, "feet"),
  39396. name: "Back",
  39397. image: {
  39398. source: "./media/characters/vivian-sylveon/back.svg",
  39399. extra: 1853/1714,
  39400. bottom: 0/1853
  39401. }
  39402. },
  39403. },
  39404. [
  39405. {
  39406. name: "Normal",
  39407. height: math.unit(9, "feet"),
  39408. default: true
  39409. },
  39410. {
  39411. name: "Macro",
  39412. height: math.unit(500, "feet")
  39413. },
  39414. {
  39415. name: "Megamacro",
  39416. height: math.unit(600, "miles")
  39417. },
  39418. {
  39419. name: "Gigamacro",
  39420. height: math.unit(30000, "miles")
  39421. },
  39422. ]
  39423. ))
  39424. characterMakers.push(() => makeCharacter(
  39425. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39426. {
  39427. anthro: {
  39428. height: math.unit(5 + 10/12, "feet"),
  39429. weight: math.unit(100, "lb"),
  39430. name: "Anthro",
  39431. image: {
  39432. source: "./media/characters/daiki/anthro.svg",
  39433. extra: 1115/1027,
  39434. bottom: 69/1184
  39435. }
  39436. },
  39437. feral: {
  39438. height: math.unit(200, "feet"),
  39439. name: "Feral",
  39440. image: {
  39441. source: "./media/characters/daiki/feral.svg",
  39442. extra: 1256/313,
  39443. bottom: 39/1295
  39444. }
  39445. },
  39446. feralHead: {
  39447. height: math.unit(171, "feet"),
  39448. name: "Feral Head",
  39449. image: {
  39450. source: "./media/characters/daiki/feral-head.svg"
  39451. }
  39452. },
  39453. manaDragon: {
  39454. height: math.unit(170, "meters"),
  39455. name: "Mana-dragon",
  39456. image: {
  39457. source: "./media/characters/daiki/mana-dragon.svg",
  39458. extra: 763/420,
  39459. bottom: 97/860
  39460. }
  39461. },
  39462. },
  39463. [
  39464. {
  39465. name: "Normal",
  39466. height: math.unit(5 + 10/12, "feet"),
  39467. default: true
  39468. },
  39469. ]
  39470. ))
  39471. characterMakers.push(() => makeCharacter(
  39472. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39473. {
  39474. fullyEquippedFront: {
  39475. height: math.unit(3 + 1/12, "feet"),
  39476. weight: math.unit(24, "lb"),
  39477. name: "Fully Equipped (Front)",
  39478. image: {
  39479. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39480. extra: 687/605,
  39481. bottom: 18/705
  39482. }
  39483. },
  39484. fullyEquippedBack: {
  39485. height: math.unit(3 + 1/12, "feet"),
  39486. weight: math.unit(24, "lb"),
  39487. name: "Fully Equipped (Back)",
  39488. image: {
  39489. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39490. extra: 689/590,
  39491. bottom: 18/707
  39492. }
  39493. },
  39494. dailyWear: {
  39495. height: math.unit(3 + 1/12, "feet"),
  39496. weight: math.unit(24, "lb"),
  39497. name: "Daily Wear",
  39498. image: {
  39499. source: "./media/characters/tea-spot/daily-wear.svg",
  39500. extra: 701/620,
  39501. bottom: 21/722
  39502. }
  39503. },
  39504. maidWork: {
  39505. height: math.unit(3 + 1/12, "feet"),
  39506. weight: math.unit(24, "lb"),
  39507. name: "Maid Work",
  39508. image: {
  39509. source: "./media/characters/tea-spot/maid-work.svg",
  39510. extra: 693/609,
  39511. bottom: 15/708
  39512. }
  39513. },
  39514. },
  39515. [
  39516. {
  39517. name: "Normal",
  39518. height: math.unit(3 + 1/12, "feet"),
  39519. default: true
  39520. },
  39521. ]
  39522. ))
  39523. characterMakers.push(() => makeCharacter(
  39524. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39525. {
  39526. front: {
  39527. height: math.unit(175, "cm"),
  39528. weight: math.unit(75, "kg"),
  39529. name: "Front",
  39530. image: {
  39531. source: "./media/characters/chee/front.svg",
  39532. extra: 1796/1740,
  39533. bottom: 40/1836
  39534. }
  39535. },
  39536. },
  39537. [
  39538. {
  39539. name: "Micro-Micro",
  39540. height: math.unit(1, "nm")
  39541. },
  39542. {
  39543. name: "Micro-erst",
  39544. height: math.unit(1, "micrometer")
  39545. },
  39546. {
  39547. name: "Micro-er",
  39548. height: math.unit(1, "cm")
  39549. },
  39550. {
  39551. name: "Normal",
  39552. height: math.unit(175, "cm"),
  39553. default: true
  39554. },
  39555. {
  39556. name: "Macro",
  39557. height: math.unit(100, "m")
  39558. },
  39559. {
  39560. name: "Macro-er",
  39561. height: math.unit(1, "km")
  39562. },
  39563. {
  39564. name: "Macro-erst",
  39565. height: math.unit(10, "km")
  39566. },
  39567. {
  39568. name: "Macro-Macro",
  39569. height: math.unit(100, "km")
  39570. },
  39571. ]
  39572. ))
  39573. characterMakers.push(() => makeCharacter(
  39574. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39575. {
  39576. front: {
  39577. height: math.unit(11 + 9/12, "feet"),
  39578. weight: math.unit(935, "lb"),
  39579. name: "Front",
  39580. image: {
  39581. source: "./media/characters/kingsley/front.svg",
  39582. extra: 1803/1674,
  39583. bottom: 127/1930
  39584. }
  39585. },
  39586. frontNude: {
  39587. height: math.unit(11 + 9/12, "feet"),
  39588. weight: math.unit(935, "lb"),
  39589. name: "Front (Nude)",
  39590. image: {
  39591. source: "./media/characters/kingsley/front-nude.svg",
  39592. extra: 1803/1674,
  39593. bottom: 127/1930
  39594. }
  39595. },
  39596. },
  39597. [
  39598. {
  39599. name: "Normal",
  39600. height: math.unit(11 + 9/12, "feet"),
  39601. default: true
  39602. },
  39603. ]
  39604. ))
  39605. characterMakers.push(() => makeCharacter(
  39606. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39607. {
  39608. side: {
  39609. height: math.unit(9, "feet"),
  39610. name: "Side",
  39611. image: {
  39612. source: "./media/characters/rymel/side.svg",
  39613. extra: 792/469,
  39614. bottom: 121/913
  39615. }
  39616. },
  39617. maw: {
  39618. height: math.unit(2.4, "meters"),
  39619. name: "Maw",
  39620. image: {
  39621. source: "./media/characters/rymel/maw.svg"
  39622. }
  39623. },
  39624. },
  39625. [
  39626. {
  39627. name: "House Drake",
  39628. height: math.unit(2, "feet")
  39629. },
  39630. {
  39631. name: "Reduced",
  39632. height: math.unit(4.5, "feet")
  39633. },
  39634. {
  39635. name: "Normal",
  39636. height: math.unit(9, "feet"),
  39637. default: true
  39638. },
  39639. ]
  39640. ))
  39641. characterMakers.push(() => makeCharacter(
  39642. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39643. {
  39644. front: {
  39645. height: math.unit(1.74, "meters"),
  39646. weight: math.unit(55, "kg"),
  39647. name: "Front",
  39648. image: {
  39649. source: "./media/characters/rubus/front.svg",
  39650. extra: 1894/1742,
  39651. bottom: 44/1938
  39652. }
  39653. },
  39654. },
  39655. [
  39656. {
  39657. name: "Normal",
  39658. height: math.unit(1.74, "meters"),
  39659. default: true
  39660. },
  39661. ]
  39662. ))
  39663. characterMakers.push(() => makeCharacter(
  39664. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39665. {
  39666. front: {
  39667. height: math.unit(5 + 2/12, "feet"),
  39668. weight: math.unit(112, "lb"),
  39669. name: "Front",
  39670. image: {
  39671. source: "./media/characters/cassie-kingston/front.svg",
  39672. extra: 1438/1390,
  39673. bottom: 47/1485
  39674. }
  39675. },
  39676. },
  39677. [
  39678. {
  39679. name: "Normal",
  39680. height: math.unit(5 + 2/12, "feet"),
  39681. default: true
  39682. },
  39683. {
  39684. name: "Macro",
  39685. height: math.unit(128, "feet")
  39686. },
  39687. {
  39688. name: "Megamacro",
  39689. height: math.unit(2.56, "miles")
  39690. },
  39691. ]
  39692. ))
  39693. characterMakers.push(() => makeCharacter(
  39694. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39695. {
  39696. front: {
  39697. height: math.unit(7, "feet"),
  39698. name: "Front",
  39699. image: {
  39700. source: "./media/characters/fox/front.svg",
  39701. extra: 1798/1703,
  39702. bottom: 55/1853
  39703. }
  39704. },
  39705. back: {
  39706. height: math.unit(7, "feet"),
  39707. name: "Back",
  39708. image: {
  39709. source: "./media/characters/fox/back.svg",
  39710. extra: 1748/1649,
  39711. bottom: 32/1780
  39712. }
  39713. },
  39714. head: {
  39715. height: math.unit(1.95, "feet"),
  39716. name: "Head",
  39717. image: {
  39718. source: "./media/characters/fox/head.svg"
  39719. }
  39720. },
  39721. dick: {
  39722. height: math.unit(1.33, "feet"),
  39723. name: "Dick",
  39724. image: {
  39725. source: "./media/characters/fox/dick.svg"
  39726. }
  39727. },
  39728. foot: {
  39729. height: math.unit(1, "feet"),
  39730. name: "Foot",
  39731. image: {
  39732. source: "./media/characters/fox/foot.svg"
  39733. }
  39734. },
  39735. paw: {
  39736. height: math.unit(0.92, "feet"),
  39737. name: "Paw",
  39738. image: {
  39739. source: "./media/characters/fox/paw.svg"
  39740. }
  39741. },
  39742. },
  39743. [
  39744. {
  39745. name: "Small",
  39746. height: math.unit(3, "inches")
  39747. },
  39748. {
  39749. name: "\"Realistic\"",
  39750. height: math.unit(7, "feet")
  39751. },
  39752. {
  39753. name: "Normal",
  39754. height: math.unit(150, "feet"),
  39755. default: true
  39756. },
  39757. {
  39758. name: "BIG",
  39759. height: math.unit(1200, "feet")
  39760. },
  39761. {
  39762. name: "👀",
  39763. height: math.unit(5, "miles")
  39764. },
  39765. {
  39766. name: "👀👀👀",
  39767. height: math.unit(64, "miles")
  39768. },
  39769. ]
  39770. ))
  39771. characterMakers.push(() => makeCharacter(
  39772. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39773. {
  39774. front: {
  39775. height: math.unit(625, "feet"),
  39776. name: "Front",
  39777. image: {
  39778. source: "./media/characters/asonja-rossa/front.svg",
  39779. extra: 1833/1686,
  39780. bottom: 24/1857
  39781. }
  39782. },
  39783. back: {
  39784. height: math.unit(625, "feet"),
  39785. name: "Back",
  39786. image: {
  39787. source: "./media/characters/asonja-rossa/back.svg",
  39788. extra: 1852/1753,
  39789. bottom: 26/1878
  39790. }
  39791. },
  39792. },
  39793. [
  39794. {
  39795. name: "Macro",
  39796. height: math.unit(625, "feet"),
  39797. default: true
  39798. },
  39799. ]
  39800. ))
  39801. characterMakers.push(() => makeCharacter(
  39802. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39803. {
  39804. side: {
  39805. height: math.unit(8, "feet"),
  39806. name: "Side",
  39807. image: {
  39808. source: "./media/characters/rezukii/side.svg",
  39809. extra: 979/542,
  39810. bottom: 87/1066
  39811. }
  39812. },
  39813. sitting: {
  39814. height: math.unit(14.6, "feet"),
  39815. name: "Sitting",
  39816. image: {
  39817. source: "./media/characters/rezukii/sitting.svg",
  39818. extra: 1023/813,
  39819. bottom: 45/1068
  39820. }
  39821. },
  39822. },
  39823. [
  39824. {
  39825. name: "Tiny",
  39826. height: math.unit(2, "feet")
  39827. },
  39828. {
  39829. name: "Smol",
  39830. height: math.unit(4, "feet")
  39831. },
  39832. {
  39833. name: "Normal",
  39834. height: math.unit(8, "feet"),
  39835. default: true
  39836. },
  39837. {
  39838. name: "Big",
  39839. height: math.unit(12, "feet")
  39840. },
  39841. {
  39842. name: "Macro",
  39843. height: math.unit(30, "feet")
  39844. },
  39845. ]
  39846. ))
  39847. characterMakers.push(() => makeCharacter(
  39848. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39849. {
  39850. front: {
  39851. height: math.unit(14, "feet"),
  39852. weight: math.unit(9.5, "tonnes"),
  39853. name: "Front",
  39854. image: {
  39855. source: "./media/characters/dawnheart/front.svg",
  39856. extra: 2792/2675,
  39857. bottom: 64/2856
  39858. }
  39859. },
  39860. },
  39861. [
  39862. {
  39863. name: "Normal",
  39864. height: math.unit(14, "feet"),
  39865. default: true
  39866. },
  39867. ]
  39868. ))
  39869. characterMakers.push(() => makeCharacter(
  39870. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39871. {
  39872. front: {
  39873. height: math.unit(1.7, "m"),
  39874. name: "Front",
  39875. image: {
  39876. source: "./media/characters/gladi/front.svg",
  39877. extra: 1460/1362,
  39878. bottom: 19/1479
  39879. }
  39880. },
  39881. back: {
  39882. height: math.unit(1.7, "m"),
  39883. name: "Back",
  39884. image: {
  39885. source: "./media/characters/gladi/back.svg",
  39886. extra: 1459/1357,
  39887. bottom: 12/1471
  39888. }
  39889. },
  39890. feral: {
  39891. height: math.unit(2.05, "m"),
  39892. name: "Feral",
  39893. image: {
  39894. source: "./media/characters/gladi/feral.svg",
  39895. extra: 821/557,
  39896. bottom: 91/912
  39897. }
  39898. },
  39899. },
  39900. [
  39901. {
  39902. name: "Shortest",
  39903. height: math.unit(70, "cm")
  39904. },
  39905. {
  39906. name: "Normal",
  39907. height: math.unit(1.7, "m")
  39908. },
  39909. {
  39910. name: "Macro",
  39911. height: math.unit(10, "m"),
  39912. default: true
  39913. },
  39914. {
  39915. name: "Tallest",
  39916. height: math.unit(200, "m")
  39917. },
  39918. ]
  39919. ))
  39920. characterMakers.push(() => makeCharacter(
  39921. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39922. {
  39923. front: {
  39924. height: math.unit(5 + 7/12, "feet"),
  39925. weight: math.unit(2, "tons"),
  39926. name: "Front",
  39927. image: {
  39928. source: "./media/characters/erdno/front.svg",
  39929. extra: 1234/1129,
  39930. bottom: 35/1269
  39931. }
  39932. },
  39933. angled: {
  39934. height: math.unit(5 + 7/12, "feet"),
  39935. weight: math.unit(2, "tons"),
  39936. name: "Angled",
  39937. image: {
  39938. source: "./media/characters/erdno/angled.svg",
  39939. extra: 1185/1139,
  39940. bottom: 36/1221
  39941. }
  39942. },
  39943. side: {
  39944. height: math.unit(5 + 7/12, "feet"),
  39945. weight: math.unit(2, "tons"),
  39946. name: "Side",
  39947. image: {
  39948. source: "./media/characters/erdno/side.svg",
  39949. extra: 1191/1144,
  39950. bottom: 40/1231
  39951. }
  39952. },
  39953. back: {
  39954. height: math.unit(5 + 7/12, "feet"),
  39955. weight: math.unit(2, "tons"),
  39956. name: "Back",
  39957. image: {
  39958. source: "./media/characters/erdno/back.svg",
  39959. extra: 1202/1146,
  39960. bottom: 17/1219
  39961. }
  39962. },
  39963. frontNsfw: {
  39964. height: math.unit(5 + 7/12, "feet"),
  39965. weight: math.unit(2, "tons"),
  39966. name: "Front (NSFW)",
  39967. image: {
  39968. source: "./media/characters/erdno/front-nsfw.svg",
  39969. extra: 1234/1129,
  39970. bottom: 35/1269
  39971. }
  39972. },
  39973. angledNsfw: {
  39974. height: math.unit(5 + 7/12, "feet"),
  39975. weight: math.unit(2, "tons"),
  39976. name: "Angled (NSFW)",
  39977. image: {
  39978. source: "./media/characters/erdno/angled-nsfw.svg",
  39979. extra: 1185/1139,
  39980. bottom: 36/1221
  39981. }
  39982. },
  39983. sideNsfw: {
  39984. height: math.unit(5 + 7/12, "feet"),
  39985. weight: math.unit(2, "tons"),
  39986. name: "Side (NSFW)",
  39987. image: {
  39988. source: "./media/characters/erdno/side-nsfw.svg",
  39989. extra: 1191/1144,
  39990. bottom: 40/1231
  39991. }
  39992. },
  39993. backNsfw: {
  39994. height: math.unit(5 + 7/12, "feet"),
  39995. weight: math.unit(2, "tons"),
  39996. name: "Back (NSFW)",
  39997. image: {
  39998. source: "./media/characters/erdno/back-nsfw.svg",
  39999. extra: 1202/1146,
  40000. bottom: 17/1219
  40001. }
  40002. },
  40003. frontHyper: {
  40004. height: math.unit(5 + 7/12, "feet"),
  40005. weight: math.unit(2, "tons"),
  40006. name: "Front (Hyper)",
  40007. image: {
  40008. source: "./media/characters/erdno/front-hyper.svg",
  40009. extra: 1298/1136,
  40010. bottom: 35/1333
  40011. }
  40012. },
  40013. },
  40014. [
  40015. {
  40016. name: "Normal",
  40017. height: math.unit(5 + 7/12, "feet"),
  40018. default: true
  40019. },
  40020. {
  40021. name: "Big",
  40022. height: math.unit(5.7, "meters")
  40023. },
  40024. {
  40025. name: "Macro",
  40026. height: math.unit(5.7, "kilometers")
  40027. },
  40028. {
  40029. name: "Megamacro",
  40030. height: math.unit(5.7, "earths")
  40031. },
  40032. ]
  40033. ))
  40034. characterMakers.push(() => makeCharacter(
  40035. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40036. {
  40037. front: {
  40038. height: math.unit(5 + 10/12, "feet"),
  40039. weight: math.unit(150, "lb"),
  40040. name: "Front",
  40041. image: {
  40042. source: "./media/characters/jamie/front.svg",
  40043. extra: 1908/1768,
  40044. bottom: 19/1927
  40045. }
  40046. },
  40047. },
  40048. [
  40049. {
  40050. name: "Minimum",
  40051. height: math.unit(2, "cm")
  40052. },
  40053. {
  40054. name: "Micro",
  40055. height: math.unit(3, "inches")
  40056. },
  40057. {
  40058. name: "Normal",
  40059. height: math.unit(5 + 10/12, "feet"),
  40060. default: true
  40061. },
  40062. {
  40063. name: "Macro",
  40064. height: math.unit(150, "feet")
  40065. },
  40066. {
  40067. name: "Megamacro",
  40068. height: math.unit(10000, "m")
  40069. },
  40070. ]
  40071. ))
  40072. characterMakers.push(() => makeCharacter(
  40073. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40074. {
  40075. front: {
  40076. height: math.unit(2, "meters"),
  40077. weight: math.unit(100, "kg"),
  40078. name: "Front",
  40079. image: {
  40080. source: "./media/characters/shiron/front.svg",
  40081. extra: 2103/1985,
  40082. bottom: 98/2201
  40083. }
  40084. },
  40085. back: {
  40086. height: math.unit(2, "meters"),
  40087. weight: math.unit(100, "kg"),
  40088. name: "Back",
  40089. image: {
  40090. source: "./media/characters/shiron/back.svg",
  40091. extra: 2110/2015,
  40092. bottom: 89/2199
  40093. }
  40094. },
  40095. hand: {
  40096. height: math.unit(0.96, "feet"),
  40097. name: "Hand",
  40098. image: {
  40099. source: "./media/characters/shiron/hand.svg"
  40100. }
  40101. },
  40102. foot: {
  40103. height: math.unit(1.464, "feet"),
  40104. name: "Foot",
  40105. image: {
  40106. source: "./media/characters/shiron/foot.svg"
  40107. }
  40108. },
  40109. },
  40110. [
  40111. {
  40112. name: "Normal",
  40113. height: math.unit(2, "meters")
  40114. },
  40115. {
  40116. name: "Macro",
  40117. height: math.unit(500, "meters"),
  40118. default: true
  40119. },
  40120. {
  40121. name: "Megamacro",
  40122. height: math.unit(20, "km")
  40123. },
  40124. ]
  40125. ))
  40126. characterMakers.push(() => makeCharacter(
  40127. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40128. {
  40129. front: {
  40130. height: math.unit(6, "feet"),
  40131. name: "Front",
  40132. image: {
  40133. source: "./media/characters/sam/front.svg",
  40134. extra: 849/826,
  40135. bottom: 19/868
  40136. }
  40137. },
  40138. },
  40139. [
  40140. {
  40141. name: "Normal",
  40142. height: math.unit(6, "feet"),
  40143. default: true
  40144. },
  40145. ]
  40146. ))
  40147. characterMakers.push(() => makeCharacter(
  40148. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40149. {
  40150. front: {
  40151. height: math.unit(8 + 4/12, "feet"),
  40152. weight: math.unit(122, "kg"),
  40153. name: "Front",
  40154. image: {
  40155. source: "./media/characters/namori-kurogawa/front.svg",
  40156. extra: 1894/1576,
  40157. bottom: 34/1928
  40158. }
  40159. },
  40160. },
  40161. [
  40162. {
  40163. name: "Normal",
  40164. height: math.unit(8 + 4/12, "feet"),
  40165. default: true
  40166. },
  40167. ]
  40168. ))
  40169. characterMakers.push(() => makeCharacter(
  40170. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40171. {
  40172. front: {
  40173. height: math.unit(9, "feet"),
  40174. weight: math.unit(621, "lb"),
  40175. name: "Front",
  40176. image: {
  40177. source: "./media/characters/unmru/front.svg",
  40178. extra: 1853/1747,
  40179. bottom: 73/1926
  40180. }
  40181. },
  40182. side: {
  40183. height: math.unit(9, "feet"),
  40184. weight: math.unit(621, "lb"),
  40185. name: "Side",
  40186. image: {
  40187. source: "./media/characters/unmru/side.svg",
  40188. extra: 1781/1671,
  40189. bottom: 127/1908
  40190. }
  40191. },
  40192. back: {
  40193. height: math.unit(9, "feet"),
  40194. weight: math.unit(621, "lb"),
  40195. name: "Back",
  40196. image: {
  40197. source: "./media/characters/unmru/back.svg",
  40198. extra: 1894/1765,
  40199. bottom: 75/1969
  40200. }
  40201. },
  40202. dick: {
  40203. height: math.unit(3, "feet"),
  40204. weight: math.unit(35, "lb"),
  40205. name: "Dick",
  40206. image: {
  40207. source: "./media/characters/unmru/dick.svg"
  40208. }
  40209. },
  40210. },
  40211. [
  40212. {
  40213. name: "Normal",
  40214. height: math.unit(9, "feet")
  40215. },
  40216. {
  40217. name: "Natural",
  40218. height: math.unit(27, "feet"),
  40219. default: true
  40220. },
  40221. {
  40222. name: "Giant",
  40223. height: math.unit(90, "feet")
  40224. },
  40225. {
  40226. name: "Kaiju",
  40227. height: math.unit(270, "feet")
  40228. },
  40229. {
  40230. name: "Macro",
  40231. height: math.unit(900, "feet")
  40232. },
  40233. {
  40234. name: "Macro+",
  40235. height: math.unit(2700, "feet")
  40236. },
  40237. {
  40238. name: "Megamacro",
  40239. height: math.unit(9000, "feet")
  40240. },
  40241. {
  40242. name: "City-Crushing",
  40243. height: math.unit(27000, "feet")
  40244. },
  40245. {
  40246. name: "Mountain-Mashing",
  40247. height: math.unit(90000, "feet")
  40248. },
  40249. {
  40250. name: "Earth-Eclipsing",
  40251. height: math.unit(2.7e8, "feet")
  40252. },
  40253. {
  40254. name: "Sol-Swallowing",
  40255. height: math.unit(9e10, "feet")
  40256. },
  40257. {
  40258. name: "Majoris-Munching",
  40259. height: math.unit(2.7e13, "feet")
  40260. },
  40261. ]
  40262. ))
  40263. characterMakers.push(() => makeCharacter(
  40264. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40265. {
  40266. front: {
  40267. height: math.unit(1, "inch"),
  40268. name: "Front",
  40269. image: {
  40270. source: "./media/characters/squeaks-mouse/front.svg",
  40271. extra: 352/308,
  40272. bottom: 25/377
  40273. }
  40274. },
  40275. },
  40276. [
  40277. {
  40278. name: "Micro",
  40279. height: math.unit(1, "inch"),
  40280. default: true
  40281. },
  40282. ]
  40283. ))
  40284. characterMakers.push(() => makeCharacter(
  40285. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40286. {
  40287. side: {
  40288. height: math.unit(35, "feet"),
  40289. name: "Side",
  40290. image: {
  40291. source: "./media/characters/sayko/side.svg",
  40292. extra: 1697/1021,
  40293. bottom: 82/1779
  40294. }
  40295. },
  40296. head: {
  40297. height: math.unit(16, "feet"),
  40298. name: "Head",
  40299. image: {
  40300. source: "./media/characters/sayko/head.svg"
  40301. }
  40302. },
  40303. forepaw: {
  40304. height: math.unit(7.85, "feet"),
  40305. name: "Forepaw",
  40306. image: {
  40307. source: "./media/characters/sayko/forepaw.svg"
  40308. }
  40309. },
  40310. hindpaw: {
  40311. height: math.unit(8.8, "feet"),
  40312. name: "Hindpaw",
  40313. image: {
  40314. source: "./media/characters/sayko/hindpaw.svg"
  40315. }
  40316. },
  40317. },
  40318. [
  40319. {
  40320. name: "Normal",
  40321. height: math.unit(35, "feet"),
  40322. default: true
  40323. },
  40324. {
  40325. name: "Colossus",
  40326. height: math.unit(100, "meters")
  40327. },
  40328. {
  40329. name: "\"Small\" Deity",
  40330. height: math.unit(1, "km")
  40331. },
  40332. {
  40333. name: "\"Large\" Deity",
  40334. height: math.unit(15, "km")
  40335. },
  40336. ]
  40337. ))
  40338. characterMakers.push(() => makeCharacter(
  40339. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40340. {
  40341. front: {
  40342. height: math.unit(6, "feet"),
  40343. weight: math.unit(250, "lb"),
  40344. name: "Front",
  40345. image: {
  40346. source: "./media/characters/mukiro/front.svg",
  40347. extra: 1368/1310,
  40348. bottom: 34/1402
  40349. }
  40350. },
  40351. },
  40352. [
  40353. {
  40354. name: "Normal",
  40355. height: math.unit(6, "feet"),
  40356. default: true
  40357. },
  40358. ]
  40359. ))
  40360. characterMakers.push(() => makeCharacter(
  40361. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40362. {
  40363. front: {
  40364. height: math.unit(12 + 4/12, "feet"),
  40365. name: "Front",
  40366. image: {
  40367. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40368. extra: 1346/1311,
  40369. bottom: 65/1411
  40370. }
  40371. },
  40372. },
  40373. [
  40374. {
  40375. name: "Base",
  40376. height: math.unit(12 + 4/12, "feet"),
  40377. default: true
  40378. },
  40379. {
  40380. name: "Macro",
  40381. height: math.unit(150, "feet")
  40382. },
  40383. {
  40384. name: "Mega",
  40385. height: math.unit(2, "miles")
  40386. },
  40387. {
  40388. name: "Demi God",
  40389. height: math.unit(4, "AU")
  40390. },
  40391. {
  40392. name: "God Size",
  40393. height: math.unit(1, "universe")
  40394. },
  40395. ]
  40396. ))
  40397. characterMakers.push(() => makeCharacter(
  40398. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40399. {
  40400. front: {
  40401. height: math.unit(3 + 3/12, "feet"),
  40402. weight: math.unit(88, "lb"),
  40403. name: "Front",
  40404. image: {
  40405. source: "./media/characters/trey/front.svg",
  40406. extra: 1815/1509,
  40407. bottom: 60/1875
  40408. }
  40409. },
  40410. },
  40411. [
  40412. {
  40413. name: "Normal",
  40414. height: math.unit(3 + 3/12, "feet"),
  40415. default: true
  40416. },
  40417. ]
  40418. ))
  40419. characterMakers.push(() => makeCharacter(
  40420. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40421. {
  40422. front: {
  40423. height: math.unit(4, "meters"),
  40424. name: "Front",
  40425. image: {
  40426. source: "./media/characters/adelonda/front.svg",
  40427. extra: 1077/982,
  40428. bottom: 39/1116
  40429. }
  40430. },
  40431. back: {
  40432. height: math.unit(4, "meters"),
  40433. name: "Back",
  40434. image: {
  40435. source: "./media/characters/adelonda/back.svg",
  40436. extra: 1105/1003,
  40437. bottom: 25/1130
  40438. }
  40439. },
  40440. feral: {
  40441. height: math.unit(40/1.5, "meters"),
  40442. name: "Feral",
  40443. image: {
  40444. source: "./media/characters/adelonda/feral.svg",
  40445. extra: 597/271,
  40446. bottom: 387/984
  40447. }
  40448. },
  40449. },
  40450. [
  40451. {
  40452. name: "Normal",
  40453. height: math.unit(4, "meters"),
  40454. default: true
  40455. },
  40456. ]
  40457. ))
  40458. characterMakers.push(() => makeCharacter(
  40459. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40460. {
  40461. front: {
  40462. height: math.unit(8 + 4/12, "feet"),
  40463. weight: math.unit(670, "lb"),
  40464. name: "Front",
  40465. image: {
  40466. source: "./media/characters/acadiel/front.svg",
  40467. extra: 1901/1595,
  40468. bottom: 142/2043
  40469. }
  40470. },
  40471. },
  40472. [
  40473. {
  40474. name: "Normal",
  40475. height: math.unit(8 + 4/12, "feet"),
  40476. default: true
  40477. },
  40478. {
  40479. name: "Macro",
  40480. height: math.unit(200, "feet")
  40481. },
  40482. ]
  40483. ))
  40484. characterMakers.push(() => makeCharacter(
  40485. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40486. {
  40487. front: {
  40488. height: math.unit(6 + 2/12, "feet"),
  40489. weight: math.unit(185, "lb"),
  40490. name: "Front",
  40491. image: {
  40492. source: "./media/characters/kayne-ein/front.svg",
  40493. extra: 1780/1560,
  40494. bottom: 81/1861
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "Normal",
  40501. height: math.unit(6 + 2/12, "feet"),
  40502. default: true
  40503. },
  40504. {
  40505. name: "Transformation Stage",
  40506. height: math.unit(15, "feet")
  40507. },
  40508. {
  40509. name: "Macro",
  40510. height: math.unit(150, "feet")
  40511. },
  40512. {
  40513. name: "Earth's Shadow",
  40514. height: math.unit(6200, "miles")
  40515. },
  40516. {
  40517. name: "Universal Demon",
  40518. height: math.unit(28e9, "parsecs")
  40519. },
  40520. {
  40521. name: "Multiverse God",
  40522. height: math.unit(3, "multiverses")
  40523. },
  40524. ]
  40525. ))
  40526. characterMakers.push(() => makeCharacter(
  40527. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40528. {
  40529. front: {
  40530. height: math.unit(5 + 5/12, "feet"),
  40531. name: "Front",
  40532. image: {
  40533. source: "./media/characters/fawn/front.svg",
  40534. extra: 1873/1731,
  40535. bottom: 95/1968
  40536. }
  40537. },
  40538. back: {
  40539. height: math.unit(5 + 5/12, "feet"),
  40540. name: "Back",
  40541. image: {
  40542. source: "./media/characters/fawn/back.svg",
  40543. extra: 1813/1700,
  40544. bottom: 14/1827
  40545. }
  40546. },
  40547. hoof: {
  40548. height: math.unit(1.45, "feet"),
  40549. name: "Hoof",
  40550. image: {
  40551. source: "./media/characters/fawn/hoof.svg"
  40552. }
  40553. },
  40554. },
  40555. [
  40556. {
  40557. name: "Normal",
  40558. height: math.unit(5 + 5/12, "feet"),
  40559. default: true
  40560. },
  40561. ]
  40562. ))
  40563. characterMakers.push(() => makeCharacter(
  40564. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40565. {
  40566. front: {
  40567. height: math.unit(2 + 5/12, "feet"),
  40568. name: "Front",
  40569. image: {
  40570. source: "./media/characters/orion/front.svg",
  40571. extra: 1366/1304,
  40572. bottom: 43/1409
  40573. }
  40574. },
  40575. paw: {
  40576. height: math.unit(0.52, "feet"),
  40577. name: "Paw",
  40578. image: {
  40579. source: "./media/characters/orion/paw.svg"
  40580. }
  40581. },
  40582. },
  40583. [
  40584. {
  40585. name: "Normal",
  40586. height: math.unit(2 + 5/12, "feet"),
  40587. default: true
  40588. },
  40589. ]
  40590. ))
  40591. characterMakers.push(() => makeCharacter(
  40592. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40593. {
  40594. front: {
  40595. height: math.unit(5 + 10/12, "feet"),
  40596. name: "Front",
  40597. image: {
  40598. source: "./media/characters/vera/front.svg",
  40599. extra: 1680/1575,
  40600. bottom: 49/1729
  40601. }
  40602. },
  40603. back: {
  40604. height: math.unit(5 + 10/12, "feet"),
  40605. name: "Back",
  40606. image: {
  40607. source: "./media/characters/vera/back.svg",
  40608. extra: 1700/1588,
  40609. bottom: 18/1718
  40610. }
  40611. },
  40612. arcanine: {
  40613. height: math.unit(6 + 8/12, "feet"),
  40614. name: "Arcanine",
  40615. image: {
  40616. source: "./media/characters/vera/arcanine.svg",
  40617. extra: 1590/1511,
  40618. bottom: 71/1661
  40619. }
  40620. },
  40621. maw: {
  40622. height: math.unit(0.82, "feet"),
  40623. name: "Maw",
  40624. image: {
  40625. source: "./media/characters/vera/maw.svg"
  40626. }
  40627. },
  40628. mawArcanine: {
  40629. height: math.unit(0.97, "feet"),
  40630. name: "Maw (Arcanine)",
  40631. image: {
  40632. source: "./media/characters/vera/maw-arcanine.svg"
  40633. }
  40634. },
  40635. paw: {
  40636. height: math.unit(0.75, "feet"),
  40637. name: "Paw",
  40638. image: {
  40639. source: "./media/characters/vera/paw.svg"
  40640. }
  40641. },
  40642. pawprint: {
  40643. height: math.unit(0.52, "feet"),
  40644. name: "Pawprint",
  40645. image: {
  40646. source: "./media/characters/vera/pawprint.svg"
  40647. }
  40648. },
  40649. },
  40650. [
  40651. {
  40652. name: "Normal",
  40653. height: math.unit(5 + 10/12, "feet"),
  40654. default: true
  40655. },
  40656. {
  40657. name: "Macro",
  40658. height: math.unit(75, "feet")
  40659. },
  40660. ]
  40661. ))
  40662. characterMakers.push(() => makeCharacter(
  40663. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40664. {
  40665. front: {
  40666. height: math.unit(4, "feet"),
  40667. weight: math.unit(40, "lb"),
  40668. name: "Front",
  40669. image: {
  40670. source: "./media/characters/orvan-rabbit/front.svg",
  40671. extra: 1896/1642,
  40672. bottom: 29/1925
  40673. }
  40674. },
  40675. },
  40676. [
  40677. {
  40678. name: "Normal",
  40679. height: math.unit(4, "feet"),
  40680. default: true
  40681. },
  40682. ]
  40683. ))
  40684. characterMakers.push(() => makeCharacter(
  40685. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40686. {
  40687. front: {
  40688. height: math.unit(6, "feet"),
  40689. weight: math.unit(168, "lb"),
  40690. name: "Front",
  40691. image: {
  40692. source: "./media/characters/lisa/front.svg",
  40693. extra: 2065/1867,
  40694. bottom: 46/2111
  40695. }
  40696. },
  40697. back: {
  40698. height: math.unit(6, "feet"),
  40699. weight: math.unit(168, "lb"),
  40700. name: "Back",
  40701. image: {
  40702. source: "./media/characters/lisa/back.svg",
  40703. extra: 1982/1838,
  40704. bottom: 29/2011
  40705. }
  40706. },
  40707. maw: {
  40708. height: math.unit(0.81, "feet"),
  40709. name: "Maw",
  40710. image: {
  40711. source: "./media/characters/lisa/maw.svg"
  40712. }
  40713. },
  40714. paw: {
  40715. height: math.unit(0.9, "feet"),
  40716. name: "Paw",
  40717. image: {
  40718. source: "./media/characters/lisa/paw.svg"
  40719. }
  40720. },
  40721. caribousune: {
  40722. height: math.unit(7 + 2/12, "feet"),
  40723. weight: math.unit(268, "lb"),
  40724. name: "Caribousune",
  40725. image: {
  40726. source: "./media/characters/lisa/caribousune.svg",
  40727. extra: 1843/1633,
  40728. bottom: 29/1872
  40729. }
  40730. },
  40731. frontCaribousune: {
  40732. height: math.unit(7 + 2/12, "feet"),
  40733. weight: math.unit(268, "lb"),
  40734. name: "Front (Caribousune)",
  40735. image: {
  40736. source: "./media/characters/lisa/front-caribousune.svg",
  40737. extra: 1818/1638,
  40738. bottom: 52/1870
  40739. }
  40740. },
  40741. sideCaribousune: {
  40742. height: math.unit(7 + 2/12, "feet"),
  40743. weight: math.unit(268, "lb"),
  40744. name: "Side (Caribousune)",
  40745. image: {
  40746. source: "./media/characters/lisa/side-caribousune.svg",
  40747. extra: 1851/1635,
  40748. bottom: 16/1867
  40749. }
  40750. },
  40751. backCaribousune: {
  40752. height: math.unit(7 + 2/12, "feet"),
  40753. weight: math.unit(268, "lb"),
  40754. name: "Back (Caribousune)",
  40755. image: {
  40756. source: "./media/characters/lisa/back-caribousune.svg",
  40757. extra: 1801/1604,
  40758. bottom: 44/1845
  40759. }
  40760. },
  40761. caribou: {
  40762. height: math.unit(7 + 2/12, "feet"),
  40763. weight: math.unit(268, "lb"),
  40764. name: "Caribou",
  40765. image: {
  40766. source: "./media/characters/lisa/caribou.svg",
  40767. extra: 1843/1633,
  40768. bottom: 29/1872
  40769. }
  40770. },
  40771. frontCaribou: {
  40772. height: math.unit(7 + 2/12, "feet"),
  40773. weight: math.unit(268, "lb"),
  40774. name: "Front (Caribou)",
  40775. image: {
  40776. source: "./media/characters/lisa/front-caribou.svg",
  40777. extra: 1818/1638,
  40778. bottom: 52/1870
  40779. }
  40780. },
  40781. sideCaribou: {
  40782. height: math.unit(7 + 2/12, "feet"),
  40783. weight: math.unit(268, "lb"),
  40784. name: "Side (Caribou)",
  40785. image: {
  40786. source: "./media/characters/lisa/side-caribou.svg",
  40787. extra: 1851/1635,
  40788. bottom: 16/1867
  40789. }
  40790. },
  40791. backCaribou: {
  40792. height: math.unit(7 + 2/12, "feet"),
  40793. weight: math.unit(268, "lb"),
  40794. name: "Back (Caribou)",
  40795. image: {
  40796. source: "./media/characters/lisa/back-caribou.svg",
  40797. extra: 1801/1604,
  40798. bottom: 44/1845
  40799. }
  40800. },
  40801. mawCaribou: {
  40802. height: math.unit(1.45, "feet"),
  40803. name: "Maw (Caribou)",
  40804. image: {
  40805. source: "./media/characters/lisa/maw-caribou.svg"
  40806. }
  40807. },
  40808. mawCaribousune: {
  40809. height: math.unit(1.45, "feet"),
  40810. name: "Maw (Caribousune)",
  40811. image: {
  40812. source: "./media/characters/lisa/maw-caribousune.svg"
  40813. }
  40814. },
  40815. pawCaribousune: {
  40816. height: math.unit(1.61, "feet"),
  40817. name: "Paw (Caribou)",
  40818. image: {
  40819. source: "./media/characters/lisa/paw-caribousune.svg"
  40820. }
  40821. },
  40822. },
  40823. [
  40824. {
  40825. name: "Normal",
  40826. height: math.unit(6, "feet")
  40827. },
  40828. {
  40829. name: "God Size",
  40830. height: math.unit(72, "feet"),
  40831. default: true
  40832. },
  40833. {
  40834. name: "Towering",
  40835. height: math.unit(288, "feet")
  40836. },
  40837. {
  40838. name: "City Size",
  40839. height: math.unit(48384, "feet")
  40840. },
  40841. {
  40842. name: "Continental",
  40843. height: math.unit(4200, "miles")
  40844. },
  40845. {
  40846. name: "Planet Eater",
  40847. height: math.unit(42, "earths")
  40848. },
  40849. {
  40850. name: "Star Swallower",
  40851. height: math.unit(42, "solarradii")
  40852. },
  40853. {
  40854. name: "System Swallower",
  40855. height: math.unit(84000, "AU")
  40856. },
  40857. {
  40858. name: "Galaxy Gobbler",
  40859. height: math.unit(42, "galaxies")
  40860. },
  40861. {
  40862. name: "Universe Devourer",
  40863. height: math.unit(42, "universes")
  40864. },
  40865. {
  40866. name: "Multiverse Muncher",
  40867. height: math.unit(42, "multiverses")
  40868. },
  40869. ]
  40870. ))
  40871. characterMakers.push(() => makeCharacter(
  40872. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40873. {
  40874. front: {
  40875. height: math.unit(36, "feet"),
  40876. name: "Front",
  40877. image: {
  40878. source: "./media/characters/shadow-rat/front.svg",
  40879. extra: 1845/1758,
  40880. bottom: 83/1928
  40881. }
  40882. },
  40883. },
  40884. [
  40885. {
  40886. name: "Macro",
  40887. height: math.unit(36, "feet"),
  40888. default: true
  40889. },
  40890. ]
  40891. ))
  40892. characterMakers.push(() => makeCharacter(
  40893. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40894. {
  40895. side: {
  40896. height: math.unit(8, "feet"),
  40897. weight: math.unit(2630, "lb"),
  40898. name: "Side",
  40899. image: {
  40900. source: "./media/characters/torallia/side.svg",
  40901. extra: 2164/2021,
  40902. bottom: 371/2535
  40903. }
  40904. },
  40905. },
  40906. [
  40907. {
  40908. name: "Mortal Interaction",
  40909. height: math.unit(8, "feet")
  40910. },
  40911. {
  40912. name: "Natural",
  40913. height: math.unit(24, "feet"),
  40914. default: true
  40915. },
  40916. {
  40917. name: "Giant",
  40918. height: math.unit(80, "feet")
  40919. },
  40920. {
  40921. name: "Kaiju",
  40922. height: math.unit(240, "feet")
  40923. },
  40924. {
  40925. name: "Macro",
  40926. height: math.unit(800, "feet")
  40927. },
  40928. {
  40929. name: "Macro+",
  40930. height: math.unit(2400, "feet")
  40931. },
  40932. {
  40933. name: "Macro++",
  40934. height: math.unit(8000, "feet")
  40935. },
  40936. {
  40937. name: "City-Crushing",
  40938. height: math.unit(24000, "feet")
  40939. },
  40940. {
  40941. name: "Mountain-Mashing",
  40942. height: math.unit(80000, "feet")
  40943. },
  40944. {
  40945. name: "District Demolisher",
  40946. height: math.unit(240000, "feet")
  40947. },
  40948. {
  40949. name: "Tri-County Terror",
  40950. height: math.unit(800000, "feet")
  40951. },
  40952. {
  40953. name: "State Smasher",
  40954. height: math.unit(2.4e6, "feet")
  40955. },
  40956. {
  40957. name: "Nation Nemesis",
  40958. height: math.unit(8e6, "feet")
  40959. },
  40960. {
  40961. name: "Continent Cracker",
  40962. height: math.unit(2.4e7, "feet")
  40963. },
  40964. {
  40965. name: "Planet-Pillaging",
  40966. height: math.unit(8e7, "feet")
  40967. },
  40968. {
  40969. name: "Earth-Eclipsing",
  40970. height: math.unit(2.4e8, "feet")
  40971. },
  40972. {
  40973. name: "Jovian-Jostling",
  40974. height: math.unit(8e8, "feet")
  40975. },
  40976. {
  40977. name: "Gas Giant Gulper",
  40978. height: math.unit(2.4e9, "feet")
  40979. },
  40980. {
  40981. name: "Astral Annihilator",
  40982. height: math.unit(8e9, "feet")
  40983. },
  40984. {
  40985. name: "Celestial Conqueror",
  40986. height: math.unit(2.4e10, "feet")
  40987. },
  40988. {
  40989. name: "Sol-Swallowing",
  40990. height: math.unit(8e10, "feet")
  40991. },
  40992. {
  40993. name: "Hunter of the Heavens",
  40994. height: math.unit(2.4e13, "feet")
  40995. },
  40996. ]
  40997. ))
  40998. characterMakers.push(() => makeCharacter(
  40999. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41000. {
  41001. front: {
  41002. height: math.unit(6 + 8/12, "feet"),
  41003. weight: math.unit(250, "kilograms"),
  41004. volume: math.unit(28, "liters"),
  41005. name: "Front",
  41006. image: {
  41007. source: "./media/characters/rebecca-pawlson/front.svg",
  41008. extra: 1737/1596,
  41009. bottom: 107/1844
  41010. }
  41011. },
  41012. back: {
  41013. height: math.unit(6 + 8/12, "feet"),
  41014. weight: math.unit(250, "kilograms"),
  41015. volume: math.unit(28, "liters"),
  41016. name: "Back",
  41017. image: {
  41018. source: "./media/characters/rebecca-pawlson/back.svg",
  41019. extra: 1702/1523,
  41020. bottom: 86/1788
  41021. }
  41022. },
  41023. },
  41024. [
  41025. {
  41026. name: "Normal",
  41027. height: math.unit(6 + 8/12, "feet")
  41028. },
  41029. {
  41030. name: "Mini Macro",
  41031. height: math.unit(10, "feet"),
  41032. default: true
  41033. },
  41034. {
  41035. name: "Macro",
  41036. height: math.unit(100, "feet")
  41037. },
  41038. {
  41039. name: "Mega Macro",
  41040. height: math.unit(2500, "feet")
  41041. },
  41042. {
  41043. name: "Giga Macro",
  41044. height: math.unit(50, "miles")
  41045. },
  41046. ]
  41047. ))
  41048. characterMakers.push(() => makeCharacter(
  41049. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41050. {
  41051. front: {
  41052. height: math.unit(7 + 6/12, "feet"),
  41053. weight: math.unit(600, "lb"),
  41054. name: "Front",
  41055. image: {
  41056. source: "./media/characters/moxie-nova/front.svg",
  41057. extra: 1734/1652,
  41058. bottom: 41/1775
  41059. }
  41060. },
  41061. },
  41062. [
  41063. {
  41064. name: "Normal",
  41065. height: math.unit(7 + 6/12, "feet"),
  41066. default: true
  41067. },
  41068. ]
  41069. ))
  41070. characterMakers.push(() => makeCharacter(
  41071. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41072. {
  41073. goat: {
  41074. height: math.unit(4, "feet"),
  41075. weight: math.unit(180, "lb"),
  41076. name: "Goat",
  41077. image: {
  41078. source: "./media/characters/tiffany/goat.svg",
  41079. extra: 1845/1595,
  41080. bottom: 106/1951
  41081. }
  41082. },
  41083. front: {
  41084. height: math.unit(5, "feet"),
  41085. weight: math.unit(150, "lb"),
  41086. name: "Foxcoon",
  41087. image: {
  41088. source: "./media/characters/tiffany/foxcoon.svg",
  41089. extra: 1941/1845,
  41090. bottom: 58/1999
  41091. }
  41092. },
  41093. },
  41094. [
  41095. {
  41096. name: "Normal",
  41097. height: math.unit(5, "feet"),
  41098. default: true
  41099. },
  41100. ]
  41101. ))
  41102. characterMakers.push(() => makeCharacter(
  41103. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41104. {
  41105. front: {
  41106. height: math.unit(8, "feet"),
  41107. weight: math.unit(300, "lb"),
  41108. name: "Front",
  41109. image: {
  41110. source: "./media/characters/raxinath/front.svg",
  41111. extra: 1407/1309,
  41112. bottom: 39/1446
  41113. }
  41114. },
  41115. back: {
  41116. height: math.unit(8, "feet"),
  41117. weight: math.unit(300, "lb"),
  41118. name: "Back",
  41119. image: {
  41120. source: "./media/characters/raxinath/back.svg",
  41121. extra: 1405/1315,
  41122. bottom: 9/1414
  41123. }
  41124. },
  41125. },
  41126. [
  41127. {
  41128. name: "Speck",
  41129. height: math.unit(0.5, "nm")
  41130. },
  41131. {
  41132. name: "Micro",
  41133. height: math.unit(3, "inches")
  41134. },
  41135. {
  41136. name: "Kobold",
  41137. height: math.unit(3, "feet")
  41138. },
  41139. {
  41140. name: "Normal",
  41141. height: math.unit(8, "feet"),
  41142. default: true
  41143. },
  41144. {
  41145. name: "Giant",
  41146. height: math.unit(50, "feet")
  41147. },
  41148. {
  41149. name: "Macro",
  41150. height: math.unit(1000, "feet")
  41151. },
  41152. {
  41153. name: "Megamacro",
  41154. height: math.unit(1, "mile")
  41155. },
  41156. ]
  41157. ))
  41158. characterMakers.push(() => makeCharacter(
  41159. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41160. {
  41161. front: {
  41162. height: math.unit(10, "feet"),
  41163. weight: math.unit(1442, "lb"),
  41164. name: "Front",
  41165. image: {
  41166. source: "./media/characters/mal-dragon/front.svg",
  41167. extra: 1515/1444,
  41168. bottom: 113/1628
  41169. }
  41170. },
  41171. back: {
  41172. height: math.unit(10, "feet"),
  41173. weight: math.unit(1442, "lb"),
  41174. name: "Back",
  41175. image: {
  41176. source: "./media/characters/mal-dragon/back.svg",
  41177. extra: 1527/1434,
  41178. bottom: 25/1552
  41179. }
  41180. },
  41181. },
  41182. [
  41183. {
  41184. name: "Mortal Interaction",
  41185. height: math.unit(10, "feet"),
  41186. default: true
  41187. },
  41188. {
  41189. name: "Large",
  41190. height: math.unit(30, "feet")
  41191. },
  41192. {
  41193. name: "Kaiju",
  41194. height: math.unit(300, "feet")
  41195. },
  41196. {
  41197. name: "Megamacro",
  41198. height: math.unit(10000, "feet")
  41199. },
  41200. {
  41201. name: "Continent Cracker",
  41202. height: math.unit(30000000, "feet")
  41203. },
  41204. {
  41205. name: "Sol-Swallowing",
  41206. height: math.unit(1e11, "feet")
  41207. },
  41208. {
  41209. name: "Light Universal",
  41210. height: math.unit(5, "universes")
  41211. },
  41212. {
  41213. name: "Universe Atoms",
  41214. height: math.unit(1.829e9, "universes")
  41215. },
  41216. {
  41217. name: "Light Multiversal",
  41218. height: math.unit(5, "multiverses")
  41219. },
  41220. {
  41221. name: "Multiverse Atoms",
  41222. height: math.unit(1.829e9, "multiverses")
  41223. },
  41224. {
  41225. name: "Fabric of Time",
  41226. height: math.unit(1e262, "multiverses")
  41227. },
  41228. ]
  41229. ))
  41230. characterMakers.push(() => makeCharacter(
  41231. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41232. {
  41233. front: {
  41234. height: math.unit(9, "feet"),
  41235. weight: math.unit(1050, "lb"),
  41236. name: "Front",
  41237. image: {
  41238. source: "./media/characters/tabitha/front.svg",
  41239. extra: 2083/1994,
  41240. bottom: 68/2151
  41241. }
  41242. },
  41243. },
  41244. [
  41245. {
  41246. name: "Baseline",
  41247. height: math.unit(9, "feet"),
  41248. default: true
  41249. },
  41250. {
  41251. name: "Giant",
  41252. height: math.unit(90, "feet")
  41253. },
  41254. {
  41255. name: "Macro",
  41256. height: math.unit(900, "feet")
  41257. },
  41258. {
  41259. name: "Megamacro",
  41260. height: math.unit(9000, "feet")
  41261. },
  41262. {
  41263. name: "City-Crushing",
  41264. height: math.unit(27000, "feet")
  41265. },
  41266. {
  41267. name: "Mountain-Mashing",
  41268. height: math.unit(90000, "feet")
  41269. },
  41270. {
  41271. name: "Nation Nemesis",
  41272. height: math.unit(9e6, "feet")
  41273. },
  41274. {
  41275. name: "Continent Cracker",
  41276. height: math.unit(27e6, "feet")
  41277. },
  41278. {
  41279. name: "Earth-Eclipsing",
  41280. height: math.unit(2.7e8, "feet")
  41281. },
  41282. {
  41283. name: "Gas Giant Gulper",
  41284. height: math.unit(2.7e9, "feet")
  41285. },
  41286. {
  41287. name: "Sol-Swallowing",
  41288. height: math.unit(9e10, "feet")
  41289. },
  41290. {
  41291. name: "Galaxy Gulper",
  41292. height: math.unit(9, "galaxies")
  41293. },
  41294. {
  41295. name: "Cosmos Churner",
  41296. height: math.unit(9, "universes")
  41297. },
  41298. ]
  41299. ))
  41300. characterMakers.push(() => makeCharacter(
  41301. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41302. {
  41303. front: {
  41304. height: math.unit(160, "cm"),
  41305. weight: math.unit(55, "kg"),
  41306. name: "Front",
  41307. image: {
  41308. source: "./media/characters/tow/front.svg",
  41309. extra: 1751/1722,
  41310. bottom: 74/1825
  41311. }
  41312. },
  41313. },
  41314. [
  41315. {
  41316. name: "Norm",
  41317. height: math.unit(160, "cm")
  41318. },
  41319. {
  41320. name: "Casual",
  41321. height: math.unit(3200, "m"),
  41322. default: true
  41323. },
  41324. {
  41325. name: "Show-Off",
  41326. height: math.unit(160, "km")
  41327. },
  41328. ]
  41329. ))
  41330. characterMakers.push(() => makeCharacter(
  41331. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41332. {
  41333. front: {
  41334. height: math.unit(7 + 11/12, "feet"),
  41335. weight: math.unit(342.8, "lb"),
  41336. name: "Front",
  41337. image: {
  41338. source: "./media/characters/vivian-orca-dragon/front.svg",
  41339. extra: 1890/1865,
  41340. bottom: 28/1918
  41341. }
  41342. },
  41343. },
  41344. [
  41345. {
  41346. name: "Micro",
  41347. height: math.unit(5, "inches")
  41348. },
  41349. {
  41350. name: "Normal",
  41351. height: math.unit(7 + 11/12, "feet"),
  41352. default: true
  41353. },
  41354. {
  41355. name: "Macro",
  41356. height: math.unit(395 + 7/12, "feet")
  41357. },
  41358. ]
  41359. ))
  41360. characterMakers.push(() => makeCharacter(
  41361. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41362. {
  41363. side: {
  41364. height: math.unit(10, "feet"),
  41365. weight: math.unit(1442, "lb"),
  41366. name: "Side",
  41367. image: {
  41368. source: "./media/characters/lotherakon/side.svg",
  41369. extra: 1604/1497,
  41370. bottom: 89/1693
  41371. }
  41372. },
  41373. },
  41374. [
  41375. {
  41376. name: "Mortal Interaction",
  41377. height: math.unit(10, "feet")
  41378. },
  41379. {
  41380. name: "Large",
  41381. height: math.unit(30, "feet"),
  41382. default: true
  41383. },
  41384. {
  41385. name: "Giant",
  41386. height: math.unit(100, "feet")
  41387. },
  41388. {
  41389. name: "Kaiju",
  41390. height: math.unit(300, "feet")
  41391. },
  41392. {
  41393. name: "Macro",
  41394. height: math.unit(1000, "feet")
  41395. },
  41396. {
  41397. name: "Macro+",
  41398. height: math.unit(3000, "feet")
  41399. },
  41400. {
  41401. name: "Megamacro",
  41402. height: math.unit(10000, "feet")
  41403. },
  41404. {
  41405. name: "City-Crushing",
  41406. height: math.unit(30000, "feet")
  41407. },
  41408. {
  41409. name: "Continent Cracker",
  41410. height: math.unit(30e6, "feet")
  41411. },
  41412. {
  41413. name: "Earth Eclipsing",
  41414. height: math.unit(3e8, "feet")
  41415. },
  41416. {
  41417. name: "Gas Giant Gulper",
  41418. height: math.unit(3e9, "feet")
  41419. },
  41420. {
  41421. name: "Sol-Swallowing",
  41422. height: math.unit(1e11, "feet")
  41423. },
  41424. {
  41425. name: "System Swallower",
  41426. height: math.unit(3e14, "feet")
  41427. },
  41428. {
  41429. name: "Galaxy Gulper",
  41430. height: math.unit(10, "galaxies")
  41431. },
  41432. {
  41433. name: "Light Universal",
  41434. height: math.unit(5, "universes")
  41435. },
  41436. {
  41437. name: "Universe Palm",
  41438. height: math.unit(20, "universes")
  41439. },
  41440. {
  41441. name: "Light Multiversal",
  41442. height: math.unit(5, "multiverses")
  41443. },
  41444. {
  41445. name: "Multiverse Palm",
  41446. height: math.unit(20, "multiverses")
  41447. },
  41448. {
  41449. name: "Inferno Incarnate",
  41450. height: math.unit(1e7, "multiverses")
  41451. },
  41452. ]
  41453. ))
  41454. characterMakers.push(() => makeCharacter(
  41455. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41456. {
  41457. front: {
  41458. height: math.unit(8, "feet"),
  41459. weight: math.unit(1200, "lb"),
  41460. name: "Front",
  41461. image: {
  41462. source: "./media/characters/malithee/front.svg",
  41463. extra: 1675/1640,
  41464. bottom: 162/1837
  41465. }
  41466. },
  41467. },
  41468. [
  41469. {
  41470. name: "Mortal Interaction",
  41471. height: math.unit(8, "feet"),
  41472. default: true
  41473. },
  41474. {
  41475. name: "Large",
  41476. height: math.unit(24, "feet")
  41477. },
  41478. {
  41479. name: "Kaiju",
  41480. height: math.unit(240, "feet")
  41481. },
  41482. {
  41483. name: "Megamacro",
  41484. height: math.unit(8000, "feet")
  41485. },
  41486. {
  41487. name: "Continent Cracker",
  41488. height: math.unit(24e6, "feet")
  41489. },
  41490. {
  41491. name: "Earth-Eclipsing",
  41492. height: math.unit(2.4e8, "feet")
  41493. },
  41494. {
  41495. name: "Sol-Swallowing",
  41496. height: math.unit(8e10, "feet")
  41497. },
  41498. {
  41499. name: "Galaxy Gulper",
  41500. height: math.unit(8, "galaxies")
  41501. },
  41502. {
  41503. name: "Light Universal",
  41504. height: math.unit(4, "universes")
  41505. },
  41506. {
  41507. name: "Universe Atoms",
  41508. height: math.unit(1.829e9, "universes")
  41509. },
  41510. {
  41511. name: "Light Multiversal",
  41512. height: math.unit(4, "multiverses")
  41513. },
  41514. {
  41515. name: "Multiverse Atoms",
  41516. height: math.unit(1.829e9, "multiverses")
  41517. },
  41518. {
  41519. name: "Nigh-Omnipresence",
  41520. height: math.unit(8e261, "multiverses")
  41521. },
  41522. ]
  41523. ))
  41524. characterMakers.push(() => makeCharacter(
  41525. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41526. {
  41527. front: {
  41528. height: math.unit(10, "feet"),
  41529. weight: math.unit(1500, "lb"),
  41530. name: "Front",
  41531. image: {
  41532. source: "./media/characters/miles-thestia/front.svg",
  41533. extra: 1812/1727,
  41534. bottom: 86/1898
  41535. }
  41536. },
  41537. back: {
  41538. height: math.unit(10, "feet"),
  41539. weight: math.unit(1500, "lb"),
  41540. name: "Back",
  41541. image: {
  41542. source: "./media/characters/miles-thestia/back.svg",
  41543. extra: 1799/1690,
  41544. bottom: 47/1846
  41545. }
  41546. },
  41547. frontNsfw: {
  41548. height: math.unit(10, "feet"),
  41549. weight: math.unit(1500, "lb"),
  41550. name: "Front (NSFW)",
  41551. image: {
  41552. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41553. extra: 1812/1727,
  41554. bottom: 86/1898
  41555. }
  41556. },
  41557. },
  41558. [
  41559. {
  41560. name: "Mini-Macro",
  41561. height: math.unit(10, "feet"),
  41562. default: true
  41563. },
  41564. ]
  41565. ))
  41566. characterMakers.push(() => makeCharacter(
  41567. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41568. {
  41569. front: {
  41570. height: math.unit(25, "feet"),
  41571. name: "Front",
  41572. image: {
  41573. source: "./media/characters/titan-s-wulf/front.svg",
  41574. extra: 1560/1484,
  41575. bottom: 76/1636
  41576. }
  41577. },
  41578. },
  41579. [
  41580. {
  41581. name: "Smallest",
  41582. height: math.unit(25, "feet"),
  41583. default: true
  41584. },
  41585. {
  41586. name: "Normal",
  41587. height: math.unit(200, "feet")
  41588. },
  41589. {
  41590. name: "Macro",
  41591. height: math.unit(200000, "feet")
  41592. },
  41593. {
  41594. name: "Multiversal Original",
  41595. height: math.unit(10000, "multiverses")
  41596. },
  41597. ]
  41598. ))
  41599. characterMakers.push(() => makeCharacter(
  41600. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41601. {
  41602. front: {
  41603. height: math.unit(8, "feet"),
  41604. weight: math.unit(553, "lb"),
  41605. name: "Front",
  41606. image: {
  41607. source: "./media/characters/tawendeh/front.svg",
  41608. extra: 2365/2268,
  41609. bottom: 83/2448
  41610. }
  41611. },
  41612. frontClothed: {
  41613. height: math.unit(8, "feet"),
  41614. weight: math.unit(553, "lb"),
  41615. name: "Front (Clothed)",
  41616. image: {
  41617. source: "./media/characters/tawendeh/front-clothed.svg",
  41618. extra: 2365/2268,
  41619. bottom: 83/2448
  41620. }
  41621. },
  41622. back: {
  41623. height: math.unit(8, "feet"),
  41624. weight: math.unit(553, "lb"),
  41625. name: "Back",
  41626. image: {
  41627. source: "./media/characters/tawendeh/back.svg",
  41628. extra: 2397/2294,
  41629. bottom: 42/2439
  41630. }
  41631. },
  41632. },
  41633. [
  41634. {
  41635. name: "Mortal Interaction",
  41636. height: math.unit(8, "feet"),
  41637. default: true
  41638. },
  41639. {
  41640. name: "Giant",
  41641. height: math.unit(80, "feet")
  41642. },
  41643. {
  41644. name: "Macro",
  41645. height: math.unit(800, "feet")
  41646. },
  41647. {
  41648. name: "Megamacro",
  41649. height: math.unit(8000, "feet")
  41650. },
  41651. {
  41652. name: "City-Crushing",
  41653. height: math.unit(24000, "feet")
  41654. },
  41655. {
  41656. name: "Mountain-Mashing",
  41657. height: math.unit(80000, "feet")
  41658. },
  41659. {
  41660. name: "Nation Nemesis",
  41661. height: math.unit(8e6, "feet")
  41662. },
  41663. {
  41664. name: "Continent Cracker",
  41665. height: math.unit(24e6, "feet")
  41666. },
  41667. {
  41668. name: "Earth-Eclipsing",
  41669. height: math.unit(2.4e8, "feet")
  41670. },
  41671. {
  41672. name: "Gas Giant Gulper",
  41673. height: math.unit(2.4e9, "feet")
  41674. },
  41675. {
  41676. name: "Sol-Swallowing",
  41677. height: math.unit(8e10, "feet")
  41678. },
  41679. {
  41680. name: "Galaxy Gulper",
  41681. height: math.unit(8, "galaxies")
  41682. },
  41683. {
  41684. name: "Cosmos Churner",
  41685. height: math.unit(8, "universes")
  41686. },
  41687. {
  41688. name: "Omnipotent Otter",
  41689. height: math.unit(80, "universes")
  41690. },
  41691. ]
  41692. ))
  41693. characterMakers.push(() => makeCharacter(
  41694. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41695. {
  41696. front: {
  41697. height: math.unit(2.6, "meters"),
  41698. weight: math.unit(900, "kg"),
  41699. name: "Front",
  41700. image: {
  41701. source: "./media/characters/neesha/front.svg",
  41702. extra: 1803/1653,
  41703. bottom: 128/1931
  41704. }
  41705. },
  41706. },
  41707. [
  41708. {
  41709. name: "Normal",
  41710. height: math.unit(2.6, "meters"),
  41711. default: true
  41712. },
  41713. {
  41714. name: "Macro",
  41715. height: math.unit(50, "meters")
  41716. },
  41717. ]
  41718. ))
  41719. characterMakers.push(() => makeCharacter(
  41720. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41721. {
  41722. front: {
  41723. height: math.unit(5, "feet"),
  41724. weight: math.unit(185, "lb"),
  41725. name: "Front",
  41726. image: {
  41727. source: "./media/characters/kyera/front.svg",
  41728. extra: 1875/1790,
  41729. bottom: 96/1971
  41730. }
  41731. },
  41732. },
  41733. [
  41734. {
  41735. name: "Normal",
  41736. height: math.unit(5, "feet"),
  41737. default: true
  41738. },
  41739. ]
  41740. ))
  41741. characterMakers.push(() => makeCharacter(
  41742. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41743. {
  41744. front: {
  41745. height: math.unit(7 + 6/12, "feet"),
  41746. weight: math.unit(540, "lb"),
  41747. name: "Front",
  41748. image: {
  41749. source: "./media/characters/yuko/front.svg",
  41750. extra: 1282/1222,
  41751. bottom: 101/1383
  41752. }
  41753. },
  41754. frontClothed: {
  41755. height: math.unit(7 + 6/12, "feet"),
  41756. weight: math.unit(540, "lb"),
  41757. name: "Front (Clothed)",
  41758. image: {
  41759. source: "./media/characters/yuko/front-clothed.svg",
  41760. extra: 1282/1222,
  41761. bottom: 101/1383
  41762. }
  41763. },
  41764. },
  41765. [
  41766. {
  41767. name: "Normal",
  41768. height: math.unit(7 + 6/12, "feet"),
  41769. default: true
  41770. },
  41771. {
  41772. name: "Macro",
  41773. height: math.unit(26 + 9/12, "feet")
  41774. },
  41775. {
  41776. name: "Megamacro",
  41777. height: math.unit(300, "feet")
  41778. },
  41779. {
  41780. name: "Gigamacro",
  41781. height: math.unit(5000, "feet")
  41782. },
  41783. {
  41784. name: "Planetary",
  41785. height: math.unit(10000, "miles")
  41786. },
  41787. ]
  41788. ))
  41789. characterMakers.push(() => makeCharacter(
  41790. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41791. {
  41792. front: {
  41793. height: math.unit(8 + 2/12, "feet"),
  41794. weight: math.unit(600, "lb"),
  41795. name: "Front",
  41796. image: {
  41797. source: "./media/characters/deam-nitrel/front.svg",
  41798. extra: 1308/1234,
  41799. bottom: 125/1433
  41800. }
  41801. },
  41802. },
  41803. [
  41804. {
  41805. name: "Normal",
  41806. height: math.unit(8 + 2/12, "feet"),
  41807. default: true
  41808. },
  41809. ]
  41810. ))
  41811. characterMakers.push(() => makeCharacter(
  41812. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41813. {
  41814. front: {
  41815. height: math.unit(6.1, "feet"),
  41816. weight: math.unit(180, "lb"),
  41817. name: "Front",
  41818. image: {
  41819. source: "./media/characters/skyress/front.svg",
  41820. extra: 1045/915,
  41821. bottom: 28/1073
  41822. }
  41823. },
  41824. maw: {
  41825. height: math.unit(1, "feet"),
  41826. name: "Maw",
  41827. image: {
  41828. source: "./media/characters/skyress/maw.svg"
  41829. }
  41830. },
  41831. },
  41832. [
  41833. {
  41834. name: "Normal",
  41835. height: math.unit(6.1, "feet"),
  41836. default: true
  41837. },
  41838. {
  41839. name: "Macro",
  41840. height: math.unit(200, "feet")
  41841. },
  41842. ]
  41843. ))
  41844. characterMakers.push(() => makeCharacter(
  41845. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41846. {
  41847. front: {
  41848. height: math.unit(4 + 2/12, "feet"),
  41849. weight: math.unit(40, "kg"),
  41850. name: "Front",
  41851. image: {
  41852. source: "./media/characters/amethyst-jones/front.svg",
  41853. extra: 1220/1150,
  41854. bottom: 101/1321
  41855. }
  41856. },
  41857. },
  41858. [
  41859. {
  41860. name: "Normal",
  41861. height: math.unit(4 + 2/12, "feet"),
  41862. default: true
  41863. },
  41864. ]
  41865. ))
  41866. characterMakers.push(() => makeCharacter(
  41867. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41868. {
  41869. front: {
  41870. height: math.unit(1.7, "m"),
  41871. weight: math.unit(135, "lb"),
  41872. name: "Front",
  41873. image: {
  41874. source: "./media/characters/jade/front.svg",
  41875. extra: 1818/1767,
  41876. bottom: 32/1850
  41877. }
  41878. },
  41879. back: {
  41880. height: math.unit(1.7, "m"),
  41881. weight: math.unit(135, "lb"),
  41882. name: "Back",
  41883. image: {
  41884. source: "./media/characters/jade/back.svg",
  41885. extra: 1869/1809,
  41886. bottom: 35/1904
  41887. }
  41888. },
  41889. hand: {
  41890. height: math.unit(0.24, "m"),
  41891. name: "Hand",
  41892. image: {
  41893. source: "./media/characters/jade/hand.svg"
  41894. }
  41895. },
  41896. foot: {
  41897. height: math.unit(0.263, "m"),
  41898. name: "Foot",
  41899. image: {
  41900. source: "./media/characters/jade/foot.svg"
  41901. }
  41902. },
  41903. dick: {
  41904. height: math.unit(0.47, "m"),
  41905. name: "Dick",
  41906. image: {
  41907. source: "./media/characters/jade/dick.svg"
  41908. }
  41909. },
  41910. },
  41911. [
  41912. {
  41913. name: "Micro",
  41914. height: math.unit(22, "cm")
  41915. },
  41916. {
  41917. name: "Normal",
  41918. height: math.unit(1.7, "m"),
  41919. default: true
  41920. },
  41921. {
  41922. name: "Macro",
  41923. height: math.unit(152, "m")
  41924. },
  41925. ]
  41926. ))
  41927. characterMakers.push(() => makeCharacter(
  41928. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41929. {
  41930. front: {
  41931. height: math.unit(100, "miles"),
  41932. weight: math.unit(20000, "tons"),
  41933. name: "Front",
  41934. image: {
  41935. source: "./media/characters/cookie/front.svg",
  41936. extra: 1125/1070,
  41937. bottom: 30/1155
  41938. }
  41939. },
  41940. },
  41941. [
  41942. {
  41943. name: "Big",
  41944. height: math.unit(50, "feet")
  41945. },
  41946. {
  41947. name: "Macro",
  41948. height: math.unit(100, "miles"),
  41949. default: true
  41950. },
  41951. {
  41952. name: "Megamacro",
  41953. height: math.unit(90000, "miles")
  41954. },
  41955. ]
  41956. ))
  41957. characterMakers.push(() => makeCharacter(
  41958. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41959. {
  41960. front: {
  41961. height: math.unit(6, "feet"),
  41962. weight: math.unit(145, "lb"),
  41963. name: "Front",
  41964. image: {
  41965. source: "./media/characters/farzian/front.svg",
  41966. extra: 1902/1693,
  41967. bottom: 108/2010
  41968. }
  41969. },
  41970. },
  41971. [
  41972. {
  41973. name: "Macro",
  41974. height: math.unit(500, "feet"),
  41975. default: true
  41976. },
  41977. ]
  41978. ))
  41979. characterMakers.push(() => makeCharacter(
  41980. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41981. {
  41982. front: {
  41983. height: math.unit(3 + 6/12, "feet"),
  41984. weight: math.unit(50, "lb"),
  41985. name: "Front",
  41986. image: {
  41987. source: "./media/characters/kimberly-tilson/front.svg",
  41988. extra: 1400/1322,
  41989. bottom: 36/1436
  41990. }
  41991. },
  41992. back: {
  41993. height: math.unit(3 + 6/12, "feet"),
  41994. weight: math.unit(50, "lb"),
  41995. name: "Back",
  41996. image: {
  41997. source: "./media/characters/kimberly-tilson/back.svg",
  41998. extra: 1370/1307,
  41999. bottom: 20/1390
  42000. }
  42001. },
  42002. },
  42003. [
  42004. {
  42005. name: "Normal",
  42006. height: math.unit(3 + 6/12, "feet"),
  42007. default: true
  42008. },
  42009. ]
  42010. ))
  42011. characterMakers.push(() => makeCharacter(
  42012. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42013. {
  42014. front: {
  42015. height: math.unit(1148, "feet"),
  42016. weight: math.unit(34057, "lb"),
  42017. name: "Front",
  42018. image: {
  42019. source: "./media/characters/harthos/front.svg",
  42020. extra: 1391/1339,
  42021. bottom: 13/1404
  42022. }
  42023. },
  42024. },
  42025. [
  42026. {
  42027. name: "Macro",
  42028. height: math.unit(1148, "feet"),
  42029. default: true
  42030. },
  42031. ]
  42032. ))
  42033. characterMakers.push(() => makeCharacter(
  42034. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42035. {
  42036. front: {
  42037. height: math.unit(15, "feet"),
  42038. name: "Front",
  42039. image: {
  42040. source: "./media/characters/hypatia/front.svg",
  42041. extra: 1653/1591,
  42042. bottom: 79/1732
  42043. }
  42044. },
  42045. },
  42046. [
  42047. {
  42048. name: "Normal",
  42049. height: math.unit(15, "feet")
  42050. },
  42051. {
  42052. name: "Small",
  42053. height: math.unit(300, "feet")
  42054. },
  42055. {
  42056. name: "Macro",
  42057. height: math.unit(2500, "feet"),
  42058. default: true
  42059. },
  42060. {
  42061. name: "Mega Macro",
  42062. height: math.unit(1500, "miles")
  42063. },
  42064. {
  42065. name: "Giga Macro",
  42066. height: math.unit(1.5e6, "miles")
  42067. },
  42068. ]
  42069. ))
  42070. characterMakers.push(() => makeCharacter(
  42071. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42072. {
  42073. front: {
  42074. height: math.unit(6, "feet"),
  42075. weight: math.unit(200, "lb"),
  42076. name: "Front",
  42077. image: {
  42078. source: "./media/characters/wulver/front.svg",
  42079. extra: 1724/1632,
  42080. bottom: 130/1854
  42081. }
  42082. },
  42083. frontNsfw: {
  42084. height: math.unit(6, "feet"),
  42085. weight: math.unit(200, "lb"),
  42086. name: "Front (NSFW)",
  42087. image: {
  42088. source: "./media/characters/wulver/front-nsfw.svg",
  42089. extra: 1724/1632,
  42090. bottom: 130/1854
  42091. }
  42092. },
  42093. },
  42094. [
  42095. {
  42096. name: "Human-Sized",
  42097. height: math.unit(6, "feet")
  42098. },
  42099. {
  42100. name: "Normal",
  42101. height: math.unit(4, "meters"),
  42102. default: true
  42103. },
  42104. {
  42105. name: "Large",
  42106. height: math.unit(6, "m")
  42107. },
  42108. ]
  42109. ))
  42110. characterMakers.push(() => makeCharacter(
  42111. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42112. {
  42113. front: {
  42114. height: math.unit(7, "feet"),
  42115. name: "Front",
  42116. image: {
  42117. source: "./media/characters/maru/front.svg",
  42118. extra: 1595/1570,
  42119. bottom: 0/1595
  42120. }
  42121. },
  42122. },
  42123. [
  42124. {
  42125. name: "Normal",
  42126. height: math.unit(7, "feet"),
  42127. default: true
  42128. },
  42129. {
  42130. name: "Macro",
  42131. height: math.unit(700, "feet")
  42132. },
  42133. {
  42134. name: "Mega Macro",
  42135. height: math.unit(25, "miles")
  42136. },
  42137. ]
  42138. ))
  42139. characterMakers.push(() => makeCharacter(
  42140. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42141. {
  42142. front: {
  42143. height: math.unit(6, "feet"),
  42144. weight: math.unit(170, "lb"),
  42145. name: "Front",
  42146. image: {
  42147. source: "./media/characters/xenon/front.svg",
  42148. extra: 1376/1305,
  42149. bottom: 56/1432
  42150. }
  42151. },
  42152. back: {
  42153. height: math.unit(6, "feet"),
  42154. weight: math.unit(170, "lb"),
  42155. name: "Back",
  42156. image: {
  42157. source: "./media/characters/xenon/back.svg",
  42158. extra: 1328/1259,
  42159. bottom: 95/1423
  42160. }
  42161. },
  42162. maw: {
  42163. height: math.unit(0.52, "feet"),
  42164. name: "Maw",
  42165. image: {
  42166. source: "./media/characters/xenon/maw.svg"
  42167. }
  42168. },
  42169. handLeft: {
  42170. height: math.unit(0.82 * 169 / 153, "feet"),
  42171. name: "Hand (Left)",
  42172. image: {
  42173. source: "./media/characters/xenon/hand-left.svg"
  42174. }
  42175. },
  42176. handRight: {
  42177. height: math.unit(0.82, "feet"),
  42178. name: "Hand (Right)",
  42179. image: {
  42180. source: "./media/characters/xenon/hand-right.svg"
  42181. }
  42182. },
  42183. footLeft: {
  42184. height: math.unit(1.13, "feet"),
  42185. name: "Foot (Left)",
  42186. image: {
  42187. source: "./media/characters/xenon/foot-left.svg"
  42188. }
  42189. },
  42190. footRight: {
  42191. height: math.unit(1.13 * 194 / 196, "feet"),
  42192. name: "Foot (Right)",
  42193. image: {
  42194. source: "./media/characters/xenon/foot-right.svg"
  42195. }
  42196. },
  42197. },
  42198. [
  42199. {
  42200. name: "Micro",
  42201. height: math.unit(0.8, "inches")
  42202. },
  42203. {
  42204. name: "Normal",
  42205. height: math.unit(6, "feet")
  42206. },
  42207. {
  42208. name: "Macro",
  42209. height: math.unit(50, "feet"),
  42210. default: true
  42211. },
  42212. {
  42213. name: "Macro+",
  42214. height: math.unit(250, "feet")
  42215. },
  42216. {
  42217. name: "Megamacro",
  42218. height: math.unit(1500, "feet")
  42219. },
  42220. ]
  42221. ))
  42222. characterMakers.push(() => makeCharacter(
  42223. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42224. {
  42225. front: {
  42226. height: math.unit(7 + 5/12, "feet"),
  42227. name: "Front",
  42228. image: {
  42229. source: "./media/characters/zane/front.svg",
  42230. extra: 1260/1203,
  42231. bottom: 94/1354
  42232. }
  42233. },
  42234. back: {
  42235. height: math.unit(5.05, "feet"),
  42236. name: "Back",
  42237. image: {
  42238. source: "./media/characters/zane/back.svg",
  42239. extra: 893/829,
  42240. bottom: 30/923
  42241. }
  42242. },
  42243. werewolf: {
  42244. height: math.unit(11, "feet"),
  42245. name: "Werewolf",
  42246. image: {
  42247. source: "./media/characters/zane/werewolf.svg",
  42248. extra: 1383/1323,
  42249. bottom: 89/1472
  42250. }
  42251. },
  42252. foot: {
  42253. height: math.unit(1.46, "feet"),
  42254. name: "Foot",
  42255. image: {
  42256. source: "./media/characters/zane/foot.svg"
  42257. }
  42258. },
  42259. footFront: {
  42260. height: math.unit(0.784, "feet"),
  42261. name: "Foot (Front)",
  42262. image: {
  42263. source: "./media/characters/zane/foot-front.svg"
  42264. }
  42265. },
  42266. dick: {
  42267. height: math.unit(1.95, "feet"),
  42268. name: "Dick",
  42269. image: {
  42270. source: "./media/characters/zane/dick.svg"
  42271. }
  42272. },
  42273. dickWerewolf: {
  42274. height: math.unit(3.77, "feet"),
  42275. name: "Dick (Werewolf)",
  42276. image: {
  42277. source: "./media/characters/zane/dick.svg"
  42278. }
  42279. },
  42280. },
  42281. [
  42282. {
  42283. name: "Normal",
  42284. height: math.unit(7 + 5/12, "feet"),
  42285. default: true
  42286. },
  42287. ]
  42288. ))
  42289. characterMakers.push(() => makeCharacter(
  42290. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42291. {
  42292. front: {
  42293. height: math.unit(6 + 2/12, "feet"),
  42294. weight: math.unit(284, "lb"),
  42295. name: "Front",
  42296. image: {
  42297. source: "./media/characters/benni-desparque/front.svg",
  42298. extra: 1353/1126,
  42299. bottom: 69/1422
  42300. }
  42301. },
  42302. },
  42303. [
  42304. {
  42305. name: "Civilian",
  42306. height: math.unit(6 + 2/12, "feet")
  42307. },
  42308. {
  42309. name: "Normal",
  42310. height: math.unit(98, "feet"),
  42311. default: true
  42312. },
  42313. {
  42314. name: "Kaiju Fighter",
  42315. height: math.unit(268, "feet")
  42316. },
  42317. ]
  42318. ))
  42319. characterMakers.push(() => makeCharacter(
  42320. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42321. {
  42322. front: {
  42323. height: math.unit(5, "feet"),
  42324. weight: math.unit(105, "lb"),
  42325. name: "Front",
  42326. image: {
  42327. source: "./media/characters/maxine/front.svg",
  42328. extra: 1386/1250,
  42329. bottom: 71/1457
  42330. }
  42331. },
  42332. },
  42333. [
  42334. {
  42335. name: "Normal",
  42336. height: math.unit(5, "feet"),
  42337. default: true
  42338. },
  42339. ]
  42340. ))
  42341. characterMakers.push(() => makeCharacter(
  42342. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42343. {
  42344. front: {
  42345. height: math.unit(11 + 7/12, "feet"),
  42346. weight: math.unit(9576, "lb"),
  42347. name: "Front",
  42348. image: {
  42349. source: "./media/characters/scaly/front.svg",
  42350. extra: 888/867,
  42351. bottom: 36/924
  42352. }
  42353. },
  42354. },
  42355. [
  42356. {
  42357. name: "Normal",
  42358. height: math.unit(11 + 7/12, "feet"),
  42359. default: true
  42360. },
  42361. ]
  42362. ))
  42363. characterMakers.push(() => makeCharacter(
  42364. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42365. {
  42366. front: {
  42367. height: math.unit(6 + 3/12, "feet"),
  42368. name: "Front",
  42369. image: {
  42370. source: "./media/characters/saelria/front.svg",
  42371. extra: 1243/1138,
  42372. bottom: 46/1289
  42373. }
  42374. },
  42375. },
  42376. [
  42377. {
  42378. name: "Micro",
  42379. height: math.unit(6, "inches"),
  42380. },
  42381. {
  42382. name: "Normal",
  42383. height: math.unit(6 + 3/12, "feet"),
  42384. default: true
  42385. },
  42386. {
  42387. name: "Macro",
  42388. height: math.unit(25, "feet")
  42389. },
  42390. ]
  42391. ))
  42392. characterMakers.push(() => makeCharacter(
  42393. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42394. {
  42395. front: {
  42396. height: math.unit(80, "meters"),
  42397. weight: math.unit(7000, "tonnes"),
  42398. name: "Front",
  42399. image: {
  42400. source: "./media/characters/tef/front.svg",
  42401. extra: 2036/1991,
  42402. bottom: 54/2090
  42403. }
  42404. },
  42405. back: {
  42406. height: math.unit(80, "meters"),
  42407. weight: math.unit(7000, "tonnes"),
  42408. name: "Back",
  42409. image: {
  42410. source: "./media/characters/tef/back.svg",
  42411. extra: 2036/1991,
  42412. bottom: 54/2090
  42413. }
  42414. },
  42415. },
  42416. [
  42417. {
  42418. name: "Macro",
  42419. height: math.unit(80, "meters"),
  42420. default: true
  42421. },
  42422. ]
  42423. ))
  42424. characterMakers.push(() => makeCharacter(
  42425. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42426. {
  42427. front: {
  42428. height: math.unit(13, "feet"),
  42429. weight: math.unit(6, "tons"),
  42430. name: "Front",
  42431. image: {
  42432. source: "./media/characters/rover/front.svg",
  42433. extra: 1233/1156,
  42434. bottom: 50/1283
  42435. }
  42436. },
  42437. back: {
  42438. height: math.unit(13, "feet"),
  42439. weight: math.unit(6, "tons"),
  42440. name: "Back",
  42441. image: {
  42442. source: "./media/characters/rover/back.svg",
  42443. extra: 1327/1258,
  42444. bottom: 39/1366
  42445. }
  42446. },
  42447. },
  42448. [
  42449. {
  42450. name: "Normal",
  42451. height: math.unit(13, "feet"),
  42452. default: true
  42453. },
  42454. {
  42455. name: "Macro",
  42456. height: math.unit(1300, "feet")
  42457. },
  42458. {
  42459. name: "Megamacro",
  42460. height: math.unit(1300, "miles")
  42461. },
  42462. {
  42463. name: "Gigamacro",
  42464. height: math.unit(1300000, "miles")
  42465. },
  42466. ]
  42467. ))
  42468. characterMakers.push(() => makeCharacter(
  42469. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42470. {
  42471. front: {
  42472. height: math.unit(6, "feet"),
  42473. weight: math.unit(150, "lb"),
  42474. name: "Front",
  42475. image: {
  42476. source: "./media/characters/ariz/front.svg",
  42477. extra: 1401/1346,
  42478. bottom: 5/1406
  42479. }
  42480. },
  42481. },
  42482. [
  42483. {
  42484. name: "Normal",
  42485. height: math.unit(10, "feet"),
  42486. default: true
  42487. },
  42488. ]
  42489. ))
  42490. characterMakers.push(() => makeCharacter(
  42491. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42492. {
  42493. front: {
  42494. height: math.unit(6, "feet"),
  42495. weight: math.unit(140, "lb"),
  42496. name: "Front",
  42497. image: {
  42498. source: "./media/characters/sigrun/front.svg",
  42499. extra: 1418/1359,
  42500. bottom: 27/1445
  42501. }
  42502. },
  42503. },
  42504. [
  42505. {
  42506. name: "Macro",
  42507. height: math.unit(35, "feet"),
  42508. default: true
  42509. },
  42510. ]
  42511. ))
  42512. characterMakers.push(() => makeCharacter(
  42513. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42514. {
  42515. front: {
  42516. height: math.unit(6, "feet"),
  42517. weight: math.unit(150, "lb"),
  42518. name: "Front",
  42519. image: {
  42520. source: "./media/characters/numin/front.svg",
  42521. extra: 1433/1388,
  42522. bottom: 12/1445
  42523. }
  42524. },
  42525. },
  42526. [
  42527. {
  42528. name: "Macro",
  42529. height: math.unit(21.5, "km"),
  42530. default: true
  42531. },
  42532. ]
  42533. ))
  42534. characterMakers.push(() => makeCharacter(
  42535. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42536. {
  42537. front: {
  42538. height: math.unit(6, "feet"),
  42539. weight: math.unit(463, "lb"),
  42540. name: "Front",
  42541. image: {
  42542. source: "./media/characters/melwa/front.svg",
  42543. extra: 1307/1248,
  42544. bottom: 93/1400
  42545. }
  42546. },
  42547. },
  42548. [
  42549. {
  42550. name: "Macro",
  42551. height: math.unit(50, "meters"),
  42552. default: true
  42553. },
  42554. ]
  42555. ))
  42556. characterMakers.push(() => makeCharacter(
  42557. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42558. {
  42559. front: {
  42560. height: math.unit(325, "feet"),
  42561. name: "Front",
  42562. image: {
  42563. source: "./media/characters/zorkaiju/front.svg",
  42564. extra: 1955/1814,
  42565. bottom: 40/1995
  42566. }
  42567. },
  42568. frontExtended: {
  42569. height: math.unit(325, "feet"),
  42570. name: "Front (Extended)",
  42571. image: {
  42572. source: "./media/characters/zorkaiju/front-extended.svg",
  42573. extra: 1955/1814,
  42574. bottom: 40/1995
  42575. }
  42576. },
  42577. side: {
  42578. height: math.unit(325, "feet"),
  42579. name: "Side",
  42580. image: {
  42581. source: "./media/characters/zorkaiju/side.svg",
  42582. extra: 1495/1396,
  42583. bottom: 17/1512
  42584. }
  42585. },
  42586. sideExtended: {
  42587. height: math.unit(325, "feet"),
  42588. name: "Side (Extended)",
  42589. image: {
  42590. source: "./media/characters/zorkaiju/side-extended.svg",
  42591. extra: 1495/1396,
  42592. bottom: 17/1512
  42593. }
  42594. },
  42595. back: {
  42596. height: math.unit(325, "feet"),
  42597. name: "Back",
  42598. image: {
  42599. source: "./media/characters/zorkaiju/back.svg",
  42600. extra: 1959/1821,
  42601. bottom: 31/1990
  42602. }
  42603. },
  42604. backExtended: {
  42605. height: math.unit(325, "feet"),
  42606. name: "Back (Extended)",
  42607. image: {
  42608. source: "./media/characters/zorkaiju/back-extended.svg",
  42609. extra: 1959/1821,
  42610. bottom: 31/1990
  42611. }
  42612. },
  42613. hand: {
  42614. height: math.unit(58.4, "feet"),
  42615. name: "Hand",
  42616. image: {
  42617. source: "./media/characters/zorkaiju/hand.svg"
  42618. }
  42619. },
  42620. handExtended: {
  42621. height: math.unit(61.4, "feet"),
  42622. name: "Hand (Extended)",
  42623. image: {
  42624. source: "./media/characters/zorkaiju/hand-extended.svg"
  42625. }
  42626. },
  42627. foot: {
  42628. height: math.unit(95, "feet"),
  42629. name: "Foot",
  42630. image: {
  42631. source: "./media/characters/zorkaiju/foot.svg"
  42632. }
  42633. },
  42634. leftArm: {
  42635. height: math.unit(59, "feet"),
  42636. name: "Left Arm",
  42637. image: {
  42638. source: "./media/characters/zorkaiju/left-arm.svg"
  42639. }
  42640. },
  42641. rightArm: {
  42642. height: math.unit(59, "feet"),
  42643. name: "Right Arm",
  42644. image: {
  42645. source: "./media/characters/zorkaiju/right-arm.svg"
  42646. }
  42647. },
  42648. leftArmExtended: {
  42649. height: math.unit(59 * 1.033546, "feet"),
  42650. name: "Left Arm (Extended)",
  42651. image: {
  42652. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42653. }
  42654. },
  42655. rightArmExtended: {
  42656. height: math.unit(59 * 1.0496, "feet"),
  42657. name: "Right Arm (Extended)",
  42658. image: {
  42659. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42660. }
  42661. },
  42662. tail: {
  42663. height: math.unit(104, "feet"),
  42664. name: "Tail",
  42665. image: {
  42666. source: "./media/characters/zorkaiju/tail.svg"
  42667. }
  42668. },
  42669. tailExtended: {
  42670. height: math.unit(104, "feet"),
  42671. name: "Tail (Extended)",
  42672. image: {
  42673. source: "./media/characters/zorkaiju/tail-extended.svg"
  42674. }
  42675. },
  42676. tailBottom: {
  42677. height: math.unit(104, "feet"),
  42678. name: "Tail Bottom",
  42679. image: {
  42680. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42681. }
  42682. },
  42683. crystal: {
  42684. height: math.unit(27.54, "feet"),
  42685. name: "Crystal",
  42686. image: {
  42687. source: "./media/characters/zorkaiju/crystal.svg"
  42688. }
  42689. },
  42690. },
  42691. [
  42692. {
  42693. name: "Kaiju",
  42694. height: math.unit(325, "feet"),
  42695. default: true
  42696. },
  42697. ]
  42698. ))
  42699. characterMakers.push(() => makeCharacter(
  42700. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42701. {
  42702. front: {
  42703. height: math.unit(6 + 1/12, "feet"),
  42704. weight: math.unit(115, "lb"),
  42705. name: "Front",
  42706. image: {
  42707. source: "./media/characters/bailey-belfry/front.svg",
  42708. extra: 1240/1121,
  42709. bottom: 101/1341
  42710. }
  42711. },
  42712. },
  42713. [
  42714. {
  42715. name: "Normal",
  42716. height: math.unit(6 + 1/12, "feet"),
  42717. default: true
  42718. },
  42719. ]
  42720. ))
  42721. characterMakers.push(() => makeCharacter(
  42722. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42723. {
  42724. side: {
  42725. height: math.unit(4, "meters"),
  42726. weight: math.unit(250, "kg"),
  42727. name: "Side",
  42728. image: {
  42729. source: "./media/characters/blacky/side.svg",
  42730. extra: 1027/919,
  42731. bottom: 43/1070
  42732. }
  42733. },
  42734. maw: {
  42735. height: math.unit(1, "meters"),
  42736. name: "Maw",
  42737. image: {
  42738. source: "./media/characters/blacky/maw.svg"
  42739. }
  42740. },
  42741. paw: {
  42742. height: math.unit(1, "meters"),
  42743. name: "Paw",
  42744. image: {
  42745. source: "./media/characters/blacky/paw.svg"
  42746. }
  42747. },
  42748. },
  42749. [
  42750. {
  42751. name: "Normal",
  42752. height: math.unit(4, "meters"),
  42753. default: true
  42754. },
  42755. ]
  42756. ))
  42757. characterMakers.push(() => makeCharacter(
  42758. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42759. {
  42760. front: {
  42761. height: math.unit(170, "cm"),
  42762. weight: math.unit(66, "kg"),
  42763. name: "Front",
  42764. image: {
  42765. source: "./media/characters/thux-ei/front.svg",
  42766. extra: 1109/1011,
  42767. bottom: 8/1117
  42768. }
  42769. },
  42770. },
  42771. [
  42772. {
  42773. name: "Normal",
  42774. height: math.unit(170, "cm"),
  42775. default: true
  42776. },
  42777. ]
  42778. ))
  42779. characterMakers.push(() => makeCharacter(
  42780. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42781. {
  42782. front: {
  42783. height: math.unit(5, "feet"),
  42784. weight: math.unit(120, "lb"),
  42785. name: "Front",
  42786. image: {
  42787. source: "./media/characters/roxanne-voltaire/front.svg",
  42788. extra: 1901/1779,
  42789. bottom: 53/1954
  42790. }
  42791. },
  42792. },
  42793. [
  42794. {
  42795. name: "Normal",
  42796. height: math.unit(5, "feet"),
  42797. default: true
  42798. },
  42799. {
  42800. name: "Giant",
  42801. height: math.unit(50, "feet")
  42802. },
  42803. {
  42804. name: "Titan",
  42805. height: math.unit(500, "feet")
  42806. },
  42807. {
  42808. name: "Macro",
  42809. height: math.unit(5000, "feet")
  42810. },
  42811. {
  42812. name: "Megamacro",
  42813. height: math.unit(50000, "feet")
  42814. },
  42815. {
  42816. name: "Gigamacro",
  42817. height: math.unit(500000, "feet")
  42818. },
  42819. {
  42820. name: "Teramacro",
  42821. height: math.unit(5e6, "feet")
  42822. },
  42823. ]
  42824. ))
  42825. characterMakers.push(() => makeCharacter(
  42826. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42827. {
  42828. front: {
  42829. height: math.unit(6 + 2/12, "feet"),
  42830. name: "Front",
  42831. image: {
  42832. source: "./media/characters/squeaks/front.svg",
  42833. extra: 1823/1768,
  42834. bottom: 138/1961
  42835. }
  42836. },
  42837. },
  42838. [
  42839. {
  42840. name: "Micro",
  42841. height: math.unit(0.5, "inches")
  42842. },
  42843. {
  42844. name: "Normal",
  42845. height: math.unit(6 + 2/12, "feet"),
  42846. default: true
  42847. },
  42848. {
  42849. name: "Macro",
  42850. height: math.unit(600, "feet")
  42851. },
  42852. ]
  42853. ))
  42854. characterMakers.push(() => makeCharacter(
  42855. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42856. {
  42857. front: {
  42858. height: math.unit(1.72, "meters"),
  42859. name: "Front",
  42860. image: {
  42861. source: "./media/characters/archinger/front.svg",
  42862. extra: 1861/1675,
  42863. bottom: 125/1986
  42864. }
  42865. },
  42866. back: {
  42867. height: math.unit(1.72, "meters"),
  42868. name: "Back",
  42869. image: {
  42870. source: "./media/characters/archinger/back.svg",
  42871. extra: 1844/1701,
  42872. bottom: 104/1948
  42873. }
  42874. },
  42875. cock: {
  42876. height: math.unit(0.59, "feet"),
  42877. name: "Cock",
  42878. image: {
  42879. source: "./media/characters/archinger/cock.svg"
  42880. }
  42881. },
  42882. },
  42883. [
  42884. {
  42885. name: "Normal",
  42886. height: math.unit(1.72, "meters"),
  42887. default: true
  42888. },
  42889. {
  42890. name: "Macro",
  42891. height: math.unit(84, "meters")
  42892. },
  42893. {
  42894. name: "Macro+",
  42895. height: math.unit(112, "meters")
  42896. },
  42897. {
  42898. name: "Macro++",
  42899. height: math.unit(960, "meters")
  42900. },
  42901. {
  42902. name: "Macro+++",
  42903. height: math.unit(4, "km")
  42904. },
  42905. {
  42906. name: "Macro++++",
  42907. height: math.unit(48, "km")
  42908. },
  42909. {
  42910. name: "Macro+++++",
  42911. height: math.unit(4500, "km")
  42912. },
  42913. ]
  42914. ))
  42915. characterMakers.push(() => makeCharacter(
  42916. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42917. {
  42918. front: {
  42919. height: math.unit(5 + 5/12, "feet"),
  42920. name: "Front",
  42921. image: {
  42922. source: "./media/characters/alsnapz/front.svg",
  42923. extra: 1157/1065,
  42924. bottom: 42/1199
  42925. }
  42926. },
  42927. },
  42928. [
  42929. {
  42930. name: "Normal",
  42931. height: math.unit(5 + 5/12, "feet"),
  42932. default: true
  42933. },
  42934. ]
  42935. ))
  42936. characterMakers.push(() => makeCharacter(
  42937. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42938. {
  42939. side: {
  42940. height: math.unit(3.2, "earths"),
  42941. name: "Side",
  42942. image: {
  42943. source: "./media/characters/mag/side.svg",
  42944. extra: 1331/1008,
  42945. bottom: 52/1383
  42946. }
  42947. },
  42948. wing: {
  42949. height: math.unit(1.94, "earths"),
  42950. name: "Wing",
  42951. image: {
  42952. source: "./media/characters/mag/wing.svg"
  42953. }
  42954. },
  42955. dick: {
  42956. height: math.unit(1.8, "earths"),
  42957. name: "Dick",
  42958. image: {
  42959. source: "./media/characters/mag/dick.svg"
  42960. }
  42961. },
  42962. ass: {
  42963. height: math.unit(1.33, "earths"),
  42964. name: "Ass",
  42965. image: {
  42966. source: "./media/characters/mag/ass.svg"
  42967. }
  42968. },
  42969. head: {
  42970. height: math.unit(1.1, "earths"),
  42971. name: "Head",
  42972. image: {
  42973. source: "./media/characters/mag/head.svg"
  42974. }
  42975. },
  42976. maw: {
  42977. height: math.unit(1.62, "earths"),
  42978. name: "Maw",
  42979. image: {
  42980. source: "./media/characters/mag/maw.svg"
  42981. }
  42982. },
  42983. },
  42984. [
  42985. {
  42986. name: "Small",
  42987. height: math.unit(162, "feet")
  42988. },
  42989. {
  42990. name: "Normal",
  42991. height: math.unit(3.2, "earths"),
  42992. default: true
  42993. },
  42994. ]
  42995. ))
  42996. characterMakers.push(() => makeCharacter(
  42997. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42998. {
  42999. front: {
  43000. height: math.unit(512, "feet"),
  43001. weight: math.unit(63509, "tonnes"),
  43002. name: "Front",
  43003. image: {
  43004. source: "./media/characters/vorrel-harroc/front.svg",
  43005. extra: 1075/1063,
  43006. bottom: 62/1137
  43007. }
  43008. },
  43009. },
  43010. [
  43011. {
  43012. name: "Normal",
  43013. height: math.unit(10, "feet")
  43014. },
  43015. {
  43016. name: "Macro",
  43017. height: math.unit(512, "feet"),
  43018. default: true
  43019. },
  43020. {
  43021. name: "Megamacro",
  43022. height: math.unit(256, "miles")
  43023. },
  43024. {
  43025. name: "Gigamacro",
  43026. height: math.unit(4096, "miles")
  43027. },
  43028. ]
  43029. ))
  43030. characterMakers.push(() => makeCharacter(
  43031. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43032. {
  43033. side: {
  43034. height: math.unit(50, "feet"),
  43035. name: "Side",
  43036. image: {
  43037. source: "./media/characters/froimar/side.svg",
  43038. extra: 855/638,
  43039. bottom: 99/954
  43040. }
  43041. },
  43042. },
  43043. [
  43044. {
  43045. name: "Macro",
  43046. height: math.unit(50, "feet"),
  43047. default: true
  43048. },
  43049. ]
  43050. ))
  43051. characterMakers.push(() => makeCharacter(
  43052. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43053. {
  43054. front: {
  43055. height: math.unit(210, "miles"),
  43056. name: "Front",
  43057. image: {
  43058. source: "./media/characters/timothy/front.svg",
  43059. extra: 1007/943,
  43060. bottom: 62/1069
  43061. }
  43062. },
  43063. frontSkirt: {
  43064. height: math.unit(210, "miles"),
  43065. name: "Front (Skirt)",
  43066. image: {
  43067. source: "./media/characters/timothy/front-skirt.svg",
  43068. extra: 1007/943,
  43069. bottom: 62/1069
  43070. }
  43071. },
  43072. frontCoat: {
  43073. height: math.unit(210, "miles"),
  43074. name: "Front (Coat)",
  43075. image: {
  43076. source: "./media/characters/timothy/front-coat.svg",
  43077. extra: 1007/943,
  43078. bottom: 62/1069
  43079. }
  43080. },
  43081. },
  43082. [
  43083. {
  43084. name: "Macro",
  43085. height: math.unit(210, "miles"),
  43086. default: true
  43087. },
  43088. {
  43089. name: "Megamacro",
  43090. height: math.unit(210000, "miles")
  43091. },
  43092. ]
  43093. ))
  43094. characterMakers.push(() => makeCharacter(
  43095. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43096. {
  43097. front: {
  43098. height: math.unit(188, "feet"),
  43099. name: "Front",
  43100. image: {
  43101. source: "./media/characters/pyotr/front.svg",
  43102. extra: 1912/1826,
  43103. bottom: 18/1930
  43104. }
  43105. },
  43106. },
  43107. [
  43108. {
  43109. name: "Macro",
  43110. height: math.unit(188, "feet"),
  43111. default: true
  43112. },
  43113. {
  43114. name: "Megamacro",
  43115. height: math.unit(8, "miles")
  43116. },
  43117. ]
  43118. ))
  43119. characterMakers.push(() => makeCharacter(
  43120. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43121. {
  43122. side: {
  43123. height: math.unit(10, "feet"),
  43124. weight: math.unit(4500, "lb"),
  43125. name: "Side",
  43126. image: {
  43127. source: "./media/characters/ackart/side.svg",
  43128. extra: 1776/1668,
  43129. bottom: 116/1892
  43130. }
  43131. },
  43132. },
  43133. [
  43134. {
  43135. name: "Normal",
  43136. height: math.unit(10, "feet"),
  43137. default: true
  43138. },
  43139. ]
  43140. ))
  43141. characterMakers.push(() => makeCharacter(
  43142. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43143. {
  43144. side: {
  43145. height: math.unit(21, "feet"),
  43146. name: "Side",
  43147. image: {
  43148. source: "./media/characters/nolow/side.svg",
  43149. extra: 1484/1434,
  43150. bottom: 85/1569
  43151. }
  43152. },
  43153. sideErect: {
  43154. height: math.unit(21, "feet"),
  43155. name: "Side-erect",
  43156. image: {
  43157. source: "./media/characters/nolow/side-erect.svg",
  43158. extra: 1484/1434,
  43159. bottom: 85/1569
  43160. }
  43161. },
  43162. },
  43163. [
  43164. {
  43165. name: "Regular",
  43166. height: math.unit(12, "feet")
  43167. },
  43168. {
  43169. name: "Big Chee",
  43170. height: math.unit(21, "feet"),
  43171. default: true
  43172. },
  43173. ]
  43174. ))
  43175. characterMakers.push(() => makeCharacter(
  43176. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43177. {
  43178. front: {
  43179. height: math.unit(7, "feet"),
  43180. weight: math.unit(250, "lb"),
  43181. name: "Front",
  43182. image: {
  43183. source: "./media/characters/nines/front.svg",
  43184. extra: 1741/1607,
  43185. bottom: 41/1782
  43186. }
  43187. },
  43188. side: {
  43189. height: math.unit(7, "feet"),
  43190. weight: math.unit(250, "lb"),
  43191. name: "Side",
  43192. image: {
  43193. source: "./media/characters/nines/side.svg",
  43194. extra: 1854/1735,
  43195. bottom: 93/1947
  43196. }
  43197. },
  43198. back: {
  43199. height: math.unit(7, "feet"),
  43200. weight: math.unit(250, "lb"),
  43201. name: "Back",
  43202. image: {
  43203. source: "./media/characters/nines/back.svg",
  43204. extra: 1748/1615,
  43205. bottom: 20/1768
  43206. }
  43207. },
  43208. },
  43209. [
  43210. {
  43211. name: "Megamacro",
  43212. height: math.unit(99, "km"),
  43213. default: true
  43214. },
  43215. ]
  43216. ))
  43217. characterMakers.push(() => makeCharacter(
  43218. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43219. {
  43220. front: {
  43221. height: math.unit(5 + 10/12, "feet"),
  43222. weight: math.unit(210, "lb"),
  43223. name: "Front",
  43224. image: {
  43225. source: "./media/characters/zenith/front.svg",
  43226. extra: 1531/1452,
  43227. bottom: 198/1729
  43228. }
  43229. },
  43230. back: {
  43231. height: math.unit(5 + 10/12, "feet"),
  43232. weight: math.unit(210, "lb"),
  43233. name: "Back",
  43234. image: {
  43235. source: "./media/characters/zenith/back.svg",
  43236. extra: 1571/1487,
  43237. bottom: 75/1646
  43238. }
  43239. },
  43240. },
  43241. [
  43242. {
  43243. name: "Normal",
  43244. height: math.unit(5 + 10/12, "feet"),
  43245. default: true
  43246. }
  43247. ]
  43248. ))
  43249. characterMakers.push(() => makeCharacter(
  43250. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43251. {
  43252. front: {
  43253. height: math.unit(4, "feet"),
  43254. weight: math.unit(60, "lb"),
  43255. name: "Front",
  43256. image: {
  43257. source: "./media/characters/jasper/front.svg",
  43258. extra: 1450/1379,
  43259. bottom: 19/1469
  43260. }
  43261. },
  43262. },
  43263. [
  43264. {
  43265. name: "Normal",
  43266. height: math.unit(4, "feet"),
  43267. default: true
  43268. },
  43269. ]
  43270. ))
  43271. characterMakers.push(() => makeCharacter(
  43272. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43273. {
  43274. front: {
  43275. height: math.unit(6 + 5/12, "feet"),
  43276. weight: math.unit(290, "lb"),
  43277. name: "Front",
  43278. image: {
  43279. source: "./media/characters/tiberius-thyben/front.svg",
  43280. extra: 757/739,
  43281. bottom: 39/796
  43282. }
  43283. },
  43284. },
  43285. [
  43286. {
  43287. name: "Micro",
  43288. height: math.unit(1.5, "inches")
  43289. },
  43290. {
  43291. name: "Normal",
  43292. height: math.unit(6 + 5/12, "feet"),
  43293. default: true
  43294. },
  43295. {
  43296. name: "Macro",
  43297. height: math.unit(300, "feet")
  43298. },
  43299. ]
  43300. ))
  43301. characterMakers.push(() => makeCharacter(
  43302. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43303. {
  43304. front: {
  43305. height: math.unit(5 + 6/12, "feet"),
  43306. weight: math.unit(60, "kg"),
  43307. name: "Front",
  43308. image: {
  43309. source: "./media/characters/sabre/front.svg",
  43310. extra: 738/671,
  43311. bottom: 27/765
  43312. }
  43313. },
  43314. },
  43315. [
  43316. {
  43317. name: "Teeny",
  43318. height: math.unit(2, "inches")
  43319. },
  43320. {
  43321. name: "Smol",
  43322. height: math.unit(8, "inches")
  43323. },
  43324. {
  43325. name: "Normal",
  43326. height: math.unit(5 + 6/12, "feet"),
  43327. default: true
  43328. },
  43329. {
  43330. name: "Mini-Macro",
  43331. height: math.unit(15, "feet")
  43332. },
  43333. {
  43334. name: "Macro",
  43335. height: math.unit(50, "feet")
  43336. },
  43337. ]
  43338. ))
  43339. characterMakers.push(() => makeCharacter(
  43340. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43341. {
  43342. front: {
  43343. height: math.unit(6 + 4/12, "feet"),
  43344. weight: math.unit(170, "lb"),
  43345. name: "Front",
  43346. image: {
  43347. source: "./media/characters/charlie/front.svg",
  43348. extra: 1348/1228,
  43349. bottom: 15/1363
  43350. }
  43351. },
  43352. },
  43353. [
  43354. {
  43355. name: "Macro",
  43356. height: math.unit(1700, "meters"),
  43357. default: true
  43358. },
  43359. {
  43360. name: "MegaMacro",
  43361. height: math.unit(20400, "meters")
  43362. },
  43363. ]
  43364. ))
  43365. characterMakers.push(() => makeCharacter(
  43366. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43367. {
  43368. front: {
  43369. height: math.unit(6 + 3/12, "feet"),
  43370. weight: math.unit(185, "lb"),
  43371. name: "Front",
  43372. image: {
  43373. source: "./media/characters/susan-grant/front.svg",
  43374. extra: 1351/1327,
  43375. bottom: 26/1377
  43376. }
  43377. },
  43378. },
  43379. [
  43380. {
  43381. name: "Normal",
  43382. height: math.unit(6 + 3/12, "feet"),
  43383. default: true
  43384. },
  43385. {
  43386. name: "Macro",
  43387. height: math.unit(225, "feet")
  43388. },
  43389. {
  43390. name: "Macro+",
  43391. height: math.unit(900, "feet")
  43392. },
  43393. {
  43394. name: "MegaMacro",
  43395. height: math.unit(14400, "feet")
  43396. },
  43397. ]
  43398. ))
  43399. characterMakers.push(() => makeCharacter(
  43400. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43401. {
  43402. front: {
  43403. height: math.unit(5 + 4/12, "feet"),
  43404. weight: math.unit(110, "lb"),
  43405. name: "Front",
  43406. image: {
  43407. source: "./media/characters/axel-isanov/front.svg",
  43408. extra: 1096/1065,
  43409. bottom: 13/1109
  43410. }
  43411. },
  43412. },
  43413. [
  43414. {
  43415. name: "Normal",
  43416. height: math.unit(5 + 4/12, "feet"),
  43417. default: true
  43418. },
  43419. ]
  43420. ))
  43421. characterMakers.push(() => makeCharacter(
  43422. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43423. {
  43424. front: {
  43425. height: math.unit(9, "feet"),
  43426. weight: math.unit(467, "lb"),
  43427. name: "Front",
  43428. image: {
  43429. source: "./media/characters/necahual/front.svg",
  43430. extra: 920/873,
  43431. bottom: 26/946
  43432. }
  43433. },
  43434. back: {
  43435. height: math.unit(9, "feet"),
  43436. weight: math.unit(467, "lb"),
  43437. name: "Back",
  43438. image: {
  43439. source: "./media/characters/necahual/back.svg",
  43440. extra: 930/884,
  43441. bottom: 16/946
  43442. }
  43443. },
  43444. frontUnderwear: {
  43445. height: math.unit(9, "feet"),
  43446. weight: math.unit(467, "lb"),
  43447. name: "Front (Underwear)",
  43448. image: {
  43449. source: "./media/characters/necahual/front-underwear.svg",
  43450. extra: 920/873,
  43451. bottom: 26/946
  43452. }
  43453. },
  43454. frontDressed: {
  43455. height: math.unit(9, "feet"),
  43456. weight: math.unit(467, "lb"),
  43457. name: "Front (Dressed)",
  43458. image: {
  43459. source: "./media/characters/necahual/front-dressed.svg",
  43460. extra: 920/873,
  43461. bottom: 26/946
  43462. }
  43463. },
  43464. },
  43465. [
  43466. {
  43467. name: "Comprsesed",
  43468. height: math.unit(9, "feet")
  43469. },
  43470. {
  43471. name: "Natural",
  43472. height: math.unit(15, "feet"),
  43473. default: true
  43474. },
  43475. {
  43476. name: "Boosted",
  43477. height: math.unit(50, "feet")
  43478. },
  43479. {
  43480. name: "Boosted+",
  43481. height: math.unit(150, "feet")
  43482. },
  43483. {
  43484. name: "Max",
  43485. height: math.unit(500, "feet")
  43486. },
  43487. ]
  43488. ))
  43489. characterMakers.push(() => makeCharacter(
  43490. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43491. {
  43492. front: {
  43493. height: math.unit(22 + 1/12, "feet"),
  43494. weight: math.unit(3200, "lb"),
  43495. name: "Front",
  43496. image: {
  43497. source: "./media/characters/theo-acacia/front.svg",
  43498. extra: 1796/1741,
  43499. bottom: 83/1879
  43500. }
  43501. },
  43502. frontUnderwear: {
  43503. height: math.unit(22 + 1/12, "feet"),
  43504. weight: math.unit(3200, "lb"),
  43505. name: "Front (Underwear)",
  43506. image: {
  43507. source: "./media/characters/theo-acacia/front-underwear.svg",
  43508. extra: 1796/1741,
  43509. bottom: 83/1879
  43510. }
  43511. },
  43512. frontNude: {
  43513. height: math.unit(22 + 1/12, "feet"),
  43514. weight: math.unit(3200, "lb"),
  43515. name: "Front (Nude)",
  43516. image: {
  43517. source: "./media/characters/theo-acacia/front-nude.svg",
  43518. extra: 1796/1741,
  43519. bottom: 83/1879
  43520. }
  43521. },
  43522. },
  43523. [
  43524. {
  43525. name: "Normal",
  43526. height: math.unit(22 + 1/12, "feet"),
  43527. default: true
  43528. },
  43529. ]
  43530. ))
  43531. characterMakers.push(() => makeCharacter(
  43532. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43533. {
  43534. front: {
  43535. height: math.unit(20, "feet"),
  43536. name: "Front",
  43537. image: {
  43538. source: "./media/characters/astra/front.svg",
  43539. extra: 1850/1714,
  43540. bottom: 106/1956
  43541. }
  43542. },
  43543. frontUndressed: {
  43544. height: math.unit(20, "feet"),
  43545. name: "Front (Undressed)",
  43546. image: {
  43547. source: "./media/characters/astra/front-undressed.svg",
  43548. extra: 1926/1749,
  43549. bottom: 0/1926
  43550. }
  43551. },
  43552. hand: {
  43553. height: math.unit(1.53, "feet"),
  43554. name: "Hand",
  43555. image: {
  43556. source: "./media/characters/astra/hand.svg"
  43557. }
  43558. },
  43559. paw: {
  43560. height: math.unit(1.53, "feet"),
  43561. name: "Paw",
  43562. image: {
  43563. source: "./media/characters/astra/paw.svg"
  43564. }
  43565. },
  43566. },
  43567. [
  43568. {
  43569. name: "Smallest",
  43570. height: math.unit(20, "feet")
  43571. },
  43572. {
  43573. name: "Normal",
  43574. height: math.unit(1e9, "miles"),
  43575. default: true
  43576. },
  43577. {
  43578. name: "Larger",
  43579. height: math.unit(5, "multiverses")
  43580. },
  43581. {
  43582. name: "Largest",
  43583. height: math.unit(1e9, "multiverses")
  43584. },
  43585. ]
  43586. ))
  43587. characterMakers.push(() => makeCharacter(
  43588. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43589. {
  43590. front: {
  43591. height: math.unit(8, "feet"),
  43592. name: "Front",
  43593. image: {
  43594. source: "./media/characters/breanna/front.svg",
  43595. extra: 1912/1632,
  43596. bottom: 33/1945
  43597. }
  43598. },
  43599. },
  43600. [
  43601. {
  43602. name: "Smallest",
  43603. height: math.unit(8, "feet")
  43604. },
  43605. {
  43606. name: "Normal",
  43607. height: math.unit(1, "mile"),
  43608. default: true
  43609. },
  43610. {
  43611. name: "Maximum",
  43612. height: math.unit(1500000000000, "lightyears")
  43613. },
  43614. ]
  43615. ))
  43616. characterMakers.push(() => makeCharacter(
  43617. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43618. {
  43619. front: {
  43620. height: math.unit(5 + 11/12, "feet"),
  43621. weight: math.unit(155, "lb"),
  43622. name: "Front",
  43623. image: {
  43624. source: "./media/characters/cai/front.svg",
  43625. extra: 1823/1702,
  43626. bottom: 32/1855
  43627. }
  43628. },
  43629. back: {
  43630. height: math.unit(5 + 11/12, "feet"),
  43631. weight: math.unit(155, "lb"),
  43632. name: "Back",
  43633. image: {
  43634. source: "./media/characters/cai/back.svg",
  43635. extra: 1809/1708,
  43636. bottom: 31/1840
  43637. }
  43638. },
  43639. },
  43640. [
  43641. {
  43642. name: "Normal",
  43643. height: math.unit(5 + 11/12, "feet"),
  43644. default: true
  43645. },
  43646. {
  43647. name: "Big",
  43648. height: math.unit(15, "feet")
  43649. },
  43650. {
  43651. name: "Macro",
  43652. height: math.unit(200, "feet")
  43653. },
  43654. ]
  43655. ))
  43656. characterMakers.push(() => makeCharacter(
  43657. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43658. {
  43659. front: {
  43660. height: math.unit(5 + 6/12, "feet"),
  43661. weight: math.unit(160, "lb"),
  43662. name: "Front",
  43663. image: {
  43664. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43665. extra: 1227/1174,
  43666. bottom: 37/1264
  43667. }
  43668. },
  43669. },
  43670. [
  43671. {
  43672. name: "Macro",
  43673. height: math.unit(444, "meters"),
  43674. default: true
  43675. },
  43676. ]
  43677. ))
  43678. characterMakers.push(() => makeCharacter(
  43679. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43680. {
  43681. front: {
  43682. height: math.unit(18 + 7/12, "feet"),
  43683. name: "Front",
  43684. image: {
  43685. source: "./media/characters/rex/front.svg",
  43686. extra: 1941/1807,
  43687. bottom: 66/2007
  43688. }
  43689. },
  43690. back: {
  43691. height: math.unit(18 + 7/12, "feet"),
  43692. name: "Back",
  43693. image: {
  43694. source: "./media/characters/rex/back.svg",
  43695. extra: 1937/1822,
  43696. bottom: 42/1979
  43697. }
  43698. },
  43699. boot: {
  43700. height: math.unit(3.45, "feet"),
  43701. name: "Boot",
  43702. image: {
  43703. source: "./media/characters/rex/boot.svg"
  43704. }
  43705. },
  43706. paw: {
  43707. height: math.unit(4.17, "feet"),
  43708. name: "Paw",
  43709. image: {
  43710. source: "./media/characters/rex/paw.svg"
  43711. }
  43712. },
  43713. head: {
  43714. height: math.unit(6.728, "feet"),
  43715. name: "Head",
  43716. image: {
  43717. source: "./media/characters/rex/head.svg"
  43718. }
  43719. },
  43720. },
  43721. [
  43722. {
  43723. name: "Nano",
  43724. height: math.unit(18 + 7/12, "feet")
  43725. },
  43726. {
  43727. name: "Micro",
  43728. height: math.unit(1.5, "megameters")
  43729. },
  43730. {
  43731. name: "Normal",
  43732. height: math.unit(440, "megameters"),
  43733. default: true
  43734. },
  43735. {
  43736. name: "Macro",
  43737. height: math.unit(2.5, "gigameters")
  43738. },
  43739. {
  43740. name: "Gigamacro",
  43741. height: math.unit(2, "galaxies")
  43742. },
  43743. ]
  43744. ))
  43745. characterMakers.push(() => makeCharacter(
  43746. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43747. {
  43748. side: {
  43749. height: math.unit(32, "feet"),
  43750. weight: math.unit(250000, "lb"),
  43751. name: "Side",
  43752. image: {
  43753. source: "./media/characters/silverwing/side.svg",
  43754. extra: 1100/1019,
  43755. bottom: 204/1304
  43756. }
  43757. },
  43758. },
  43759. [
  43760. {
  43761. name: "Normal",
  43762. height: math.unit(32, "feet"),
  43763. default: true
  43764. },
  43765. ]
  43766. ))
  43767. characterMakers.push(() => makeCharacter(
  43768. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43769. {
  43770. front: {
  43771. height: math.unit(6 + 6/12, "feet"),
  43772. weight: math.unit(350, "lb"),
  43773. name: "Front",
  43774. image: {
  43775. source: "./media/characters/tristan-hawthorne/front.svg",
  43776. extra: 1159/1124,
  43777. bottom: 37/1196
  43778. },
  43779. form: "labrador",
  43780. default: true
  43781. },
  43782. skunkFront: {
  43783. height: math.unit(4 + 6/12, "feet"),
  43784. weight: math.unit(120, "lb"),
  43785. name: "Front",
  43786. image: {
  43787. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43788. extra: 1609/1551,
  43789. bottom: 169/1778
  43790. },
  43791. form: "skunk",
  43792. default: true
  43793. },
  43794. },
  43795. [
  43796. {
  43797. name: "Normal",
  43798. height: math.unit(6 + 6/12, "feet"),
  43799. form: "labrador",
  43800. default: true
  43801. },
  43802. {
  43803. name: "Normal",
  43804. height: math.unit(4 + 6/12, "feet"),
  43805. form: "skunk",
  43806. default: true
  43807. },
  43808. ],
  43809. {
  43810. "labrador": {
  43811. name: "Labrador",
  43812. default: true
  43813. },
  43814. "skunk": {
  43815. name: "Skunk"
  43816. }
  43817. }
  43818. ))
  43819. characterMakers.push(() => makeCharacter(
  43820. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43821. {
  43822. front: {
  43823. height: math.unit(5 + 11/12, "feet"),
  43824. weight: math.unit(190, "lb"),
  43825. name: "Front",
  43826. image: {
  43827. source: "./media/characters/mizu/front.svg",
  43828. extra: 1988/1788,
  43829. bottom: 14/2002
  43830. }
  43831. },
  43832. },
  43833. [
  43834. {
  43835. name: "Normal",
  43836. height: math.unit(5 + 11/12, "feet"),
  43837. default: true
  43838. },
  43839. ]
  43840. ))
  43841. characterMakers.push(() => makeCharacter(
  43842. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43843. {
  43844. front: {
  43845. height: math.unit(1.7, "feet"),
  43846. weight: math.unit(50, "lb"),
  43847. name: "Front",
  43848. image: {
  43849. source: "./media/characters/dechroma/front.svg",
  43850. extra: 1095/859,
  43851. bottom: 64/1159
  43852. }
  43853. },
  43854. },
  43855. [
  43856. {
  43857. name: "Normal",
  43858. height: math.unit(1.7, "feet"),
  43859. default: true
  43860. },
  43861. ]
  43862. ))
  43863. characterMakers.push(() => makeCharacter(
  43864. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43865. {
  43866. side: {
  43867. height: math.unit(30, "feet"),
  43868. name: "Side",
  43869. image: {
  43870. source: "./media/characters/veluren-thanazel/side.svg",
  43871. extra: 1611/633,
  43872. bottom: 118/1729
  43873. }
  43874. },
  43875. front: {
  43876. height: math.unit(30, "feet"),
  43877. name: "Front",
  43878. image: {
  43879. source: "./media/characters/veluren-thanazel/front.svg",
  43880. extra: 1486/636,
  43881. bottom: 238/1724
  43882. }
  43883. },
  43884. head: {
  43885. height: math.unit(21.4, "feet"),
  43886. name: "Head",
  43887. image: {
  43888. source: "./media/characters/veluren-thanazel/head.svg"
  43889. }
  43890. },
  43891. genitals: {
  43892. height: math.unit(19.4, "feet"),
  43893. name: "Genitals",
  43894. image: {
  43895. source: "./media/characters/veluren-thanazel/genitals.svg"
  43896. }
  43897. },
  43898. },
  43899. [
  43900. {
  43901. name: "Social",
  43902. height: math.unit(6, "feet")
  43903. },
  43904. {
  43905. name: "Play",
  43906. height: math.unit(12, "feet")
  43907. },
  43908. {
  43909. name: "True",
  43910. height: math.unit(30, "feet"),
  43911. default: true
  43912. },
  43913. ]
  43914. ))
  43915. characterMakers.push(() => makeCharacter(
  43916. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43917. {
  43918. front: {
  43919. height: math.unit(7 + 6/12, "feet"),
  43920. weight: math.unit(500, "kg"),
  43921. name: "Front",
  43922. image: {
  43923. source: "./media/characters/arcturas/front.svg",
  43924. extra: 1700/1500,
  43925. bottom: 145/1845
  43926. }
  43927. },
  43928. },
  43929. [
  43930. {
  43931. name: "Normal",
  43932. height: math.unit(7 + 6/12, "feet"),
  43933. default: true
  43934. },
  43935. ]
  43936. ))
  43937. characterMakers.push(() => makeCharacter(
  43938. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43939. {
  43940. side: {
  43941. height: math.unit(6, "feet"),
  43942. weight: math.unit(2, "tons"),
  43943. name: "Side",
  43944. image: {
  43945. source: "./media/characters/vitaen/side.svg",
  43946. extra: 1157/617,
  43947. bottom: 122/1279
  43948. }
  43949. },
  43950. },
  43951. [
  43952. {
  43953. name: "Normal",
  43954. height: math.unit(6, "feet"),
  43955. default: true
  43956. },
  43957. ]
  43958. ))
  43959. characterMakers.push(() => makeCharacter(
  43960. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43961. {
  43962. front: {
  43963. height: math.unit(19, "feet"),
  43964. name: "Front",
  43965. image: {
  43966. source: "./media/characters/fia-dreamweaver/front.svg",
  43967. extra: 1630/1504,
  43968. bottom: 25/1655
  43969. }
  43970. },
  43971. },
  43972. [
  43973. {
  43974. name: "Normal",
  43975. height: math.unit(19, "feet"),
  43976. default: true
  43977. },
  43978. ]
  43979. ))
  43980. characterMakers.push(() => makeCharacter(
  43981. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43982. {
  43983. front: {
  43984. height: math.unit(5 + 4/12, "feet"),
  43985. name: "Front",
  43986. image: {
  43987. source: "./media/characters/artan/front.svg",
  43988. extra: 1618/1535,
  43989. bottom: 46/1664
  43990. }
  43991. },
  43992. back: {
  43993. height: math.unit(5 + 4/12, "feet"),
  43994. name: "Back",
  43995. image: {
  43996. source: "./media/characters/artan/back.svg",
  43997. extra: 1618/1543,
  43998. bottom: 31/1649
  43999. }
  44000. },
  44001. },
  44002. [
  44003. {
  44004. name: "Normal",
  44005. height: math.unit(5 + 4/12, "feet"),
  44006. default: true
  44007. },
  44008. ]
  44009. ))
  44010. characterMakers.push(() => makeCharacter(
  44011. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44012. {
  44013. side: {
  44014. height: math.unit(182, "cm"),
  44015. weight: math.unit(1000, "lb"),
  44016. name: "Side",
  44017. image: {
  44018. source: "./media/characters/silver-dragon/side.svg",
  44019. extra: 710/287,
  44020. bottom: 88/798
  44021. }
  44022. },
  44023. },
  44024. [
  44025. {
  44026. name: "Normal",
  44027. height: math.unit(182, "cm"),
  44028. default: true
  44029. },
  44030. ]
  44031. ))
  44032. characterMakers.push(() => makeCharacter(
  44033. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44034. {
  44035. side: {
  44036. height: math.unit(6 + 6/12, "feet"),
  44037. weight: math.unit(1.5, "tons"),
  44038. name: "Side",
  44039. image: {
  44040. source: "./media/characters/zephyr/side.svg",
  44041. extra: 1433/586,
  44042. bottom: 109/1542
  44043. }
  44044. },
  44045. },
  44046. [
  44047. {
  44048. name: "Normal",
  44049. height: math.unit(6 + 6/12, "feet"),
  44050. default: true
  44051. },
  44052. ]
  44053. ))
  44054. characterMakers.push(() => makeCharacter(
  44055. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44056. {
  44057. side: {
  44058. height: math.unit(1, "feet"),
  44059. name: "Side",
  44060. image: {
  44061. source: "./media/characters/vixye/side.svg",
  44062. extra: 632/541,
  44063. bottom: 0/632
  44064. }
  44065. },
  44066. },
  44067. [
  44068. {
  44069. name: "Normal",
  44070. height: math.unit(1, "feet"),
  44071. default: true
  44072. },
  44073. {
  44074. name: "True",
  44075. height: math.unit(1e15, "multiverses")
  44076. },
  44077. ]
  44078. ))
  44079. characterMakers.push(() => makeCharacter(
  44080. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44081. {
  44082. front: {
  44083. height: math.unit(8 + 2/12, "feet"),
  44084. weight: math.unit(650, "lb"),
  44085. name: "Front",
  44086. image: {
  44087. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44088. extra: 1174/1137,
  44089. bottom: 82/1256
  44090. }
  44091. },
  44092. back: {
  44093. height: math.unit(8 + 2/12, "feet"),
  44094. weight: math.unit(650, "lb"),
  44095. name: "Back",
  44096. image: {
  44097. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44098. extra: 1204/1157,
  44099. bottom: 46/1250
  44100. }
  44101. },
  44102. },
  44103. [
  44104. {
  44105. name: "Wildform",
  44106. height: math.unit(8 + 2/12, "feet"),
  44107. default: true
  44108. },
  44109. ]
  44110. ))
  44111. characterMakers.push(() => makeCharacter(
  44112. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44113. {
  44114. front: {
  44115. height: math.unit(18, "feet"),
  44116. name: "Front",
  44117. image: {
  44118. source: "./media/characters/cyphin/front.svg",
  44119. extra: 970/886,
  44120. bottom: 42/1012
  44121. }
  44122. },
  44123. back: {
  44124. height: math.unit(18, "feet"),
  44125. name: "Back",
  44126. image: {
  44127. source: "./media/characters/cyphin/back.svg",
  44128. extra: 1009/894,
  44129. bottom: 24/1033
  44130. }
  44131. },
  44132. head: {
  44133. height: math.unit(5.05, "feet"),
  44134. name: "Head",
  44135. image: {
  44136. source: "./media/characters/cyphin/head.svg"
  44137. }
  44138. },
  44139. tailbud: {
  44140. height: math.unit(5, "feet"),
  44141. name: "Tailbud",
  44142. image: {
  44143. source: "./media/characters/cyphin/tailbud.svg"
  44144. }
  44145. },
  44146. },
  44147. [
  44148. ]
  44149. ))
  44150. characterMakers.push(() => makeCharacter(
  44151. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44152. {
  44153. side: {
  44154. height: math.unit(10, "feet"),
  44155. weight: math.unit(6, "tons"),
  44156. name: "Side",
  44157. image: {
  44158. source: "./media/characters/raijin/side.svg",
  44159. extra: 1529/613,
  44160. bottom: 337/1866
  44161. }
  44162. },
  44163. },
  44164. [
  44165. {
  44166. name: "Normal",
  44167. height: math.unit(10, "feet"),
  44168. default: true
  44169. },
  44170. ]
  44171. ))
  44172. characterMakers.push(() => makeCharacter(
  44173. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44174. {
  44175. side: {
  44176. height: math.unit(9, "feet"),
  44177. name: "Side",
  44178. image: {
  44179. source: "./media/characters/nilghais/side.svg",
  44180. extra: 1047/744,
  44181. bottom: 91/1138
  44182. }
  44183. },
  44184. head: {
  44185. height: math.unit(3.14, "feet"),
  44186. name: "Head",
  44187. image: {
  44188. source: "./media/characters/nilghais/head.svg"
  44189. }
  44190. },
  44191. mouth: {
  44192. height: math.unit(4.6, "feet"),
  44193. name: "Mouth",
  44194. image: {
  44195. source: "./media/characters/nilghais/mouth.svg"
  44196. }
  44197. },
  44198. wings: {
  44199. height: math.unit(24, "feet"),
  44200. name: "Wings",
  44201. image: {
  44202. source: "./media/characters/nilghais/wings.svg"
  44203. }
  44204. },
  44205. ass: {
  44206. height: math.unit(6.12, "feet"),
  44207. name: "Ass",
  44208. image: {
  44209. source: "./media/characters/nilghais/ass.svg"
  44210. }
  44211. },
  44212. },
  44213. [
  44214. {
  44215. name: "Normal",
  44216. height: math.unit(9, "feet"),
  44217. default: true
  44218. },
  44219. ]
  44220. ))
  44221. characterMakers.push(() => makeCharacter(
  44222. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44223. {
  44224. regular: {
  44225. height: math.unit(16 + 2/12, "feet"),
  44226. weight: math.unit(2300, "lb"),
  44227. name: "Regular",
  44228. image: {
  44229. source: "./media/characters/zolgar/regular.svg",
  44230. extra: 1246/1004,
  44231. bottom: 124/1370
  44232. }
  44233. },
  44234. boxers: {
  44235. height: math.unit(16 + 2/12, "feet"),
  44236. weight: math.unit(2300, "lb"),
  44237. name: "Boxers",
  44238. image: {
  44239. source: "./media/characters/zolgar/boxers.svg",
  44240. extra: 1246/1004,
  44241. bottom: 124/1370
  44242. }
  44243. },
  44244. armored: {
  44245. height: math.unit(16 + 2/12, "feet"),
  44246. weight: math.unit(2300, "lb"),
  44247. name: "Armored",
  44248. image: {
  44249. source: "./media/characters/zolgar/armored.svg",
  44250. extra: 1246/1004,
  44251. bottom: 124/1370
  44252. }
  44253. },
  44254. goth: {
  44255. height: math.unit(16 + 2/12, "feet"),
  44256. weight: math.unit(2300, "lb"),
  44257. name: "Goth",
  44258. image: {
  44259. source: "./media/characters/zolgar/goth.svg",
  44260. extra: 1246/1004,
  44261. bottom: 124/1370
  44262. }
  44263. },
  44264. },
  44265. [
  44266. {
  44267. name: "Shrunken Down",
  44268. height: math.unit(9 + 2/12, "feet")
  44269. },
  44270. {
  44271. name: "Normal",
  44272. height: math.unit(16 + 2/12, "feet"),
  44273. default: true
  44274. },
  44275. ]
  44276. ))
  44277. characterMakers.push(() => makeCharacter(
  44278. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44279. {
  44280. front: {
  44281. height: math.unit(6, "feet"),
  44282. weight: math.unit(168, "lb"),
  44283. name: "Front",
  44284. image: {
  44285. source: "./media/characters/luca/front.svg",
  44286. extra: 841/667,
  44287. bottom: 102/943
  44288. }
  44289. },
  44290. },
  44291. [
  44292. {
  44293. name: "Normal",
  44294. height: math.unit(6, "feet"),
  44295. default: true
  44296. },
  44297. ]
  44298. ))
  44299. characterMakers.push(() => makeCharacter(
  44300. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44301. {
  44302. side: {
  44303. height: math.unit(7 + 3/12, "feet"),
  44304. weight: math.unit(312, "lb"),
  44305. name: "Side",
  44306. image: {
  44307. source: "./media/characters/zezo/side.svg",
  44308. extra: 1192/1067,
  44309. bottom: 63/1255
  44310. }
  44311. },
  44312. },
  44313. [
  44314. {
  44315. name: "Normal",
  44316. height: math.unit(7 + 3/12, "feet"),
  44317. default: true
  44318. },
  44319. ]
  44320. ))
  44321. characterMakers.push(() => makeCharacter(
  44322. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44323. {
  44324. front: {
  44325. height: math.unit(5 + 5/12, "feet"),
  44326. weight: math.unit(170, "lb"),
  44327. name: "Front",
  44328. image: {
  44329. source: "./media/characters/mayso/front.svg",
  44330. extra: 1215/1108,
  44331. bottom: 16/1231
  44332. }
  44333. },
  44334. },
  44335. [
  44336. {
  44337. name: "Normal",
  44338. height: math.unit(5 + 5/12, "feet"),
  44339. default: true
  44340. },
  44341. ]
  44342. ))
  44343. characterMakers.push(() => makeCharacter(
  44344. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44345. {
  44346. front: {
  44347. height: math.unit(4 + 3/12, "feet"),
  44348. weight: math.unit(80, "lb"),
  44349. name: "Front",
  44350. image: {
  44351. source: "./media/characters/hess/front.svg",
  44352. extra: 1200/1123,
  44353. bottom: 16/1216
  44354. }
  44355. },
  44356. },
  44357. [
  44358. {
  44359. name: "Normal",
  44360. height: math.unit(4 + 3/12, "feet"),
  44361. default: true
  44362. },
  44363. ]
  44364. ))
  44365. characterMakers.push(() => makeCharacter(
  44366. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44367. {
  44368. front: {
  44369. height: math.unit(1.9, "meters"),
  44370. name: "Front",
  44371. image: {
  44372. source: "./media/characters/ashgar/front.svg",
  44373. extra: 1177/1146,
  44374. bottom: 99/1276
  44375. }
  44376. },
  44377. back: {
  44378. height: math.unit(1.9, "meters"),
  44379. name: "Back",
  44380. image: {
  44381. source: "./media/characters/ashgar/back.svg",
  44382. extra: 1201/1183,
  44383. bottom: 53/1254
  44384. }
  44385. },
  44386. feral: {
  44387. height: math.unit(1.4, "meters"),
  44388. name: "Feral",
  44389. image: {
  44390. source: "./media/characters/ashgar/feral.svg",
  44391. extra: 370/345,
  44392. bottom: 45/415
  44393. }
  44394. },
  44395. },
  44396. [
  44397. {
  44398. name: "Normal",
  44399. height: math.unit(1.9, "meters"),
  44400. default: true
  44401. },
  44402. ]
  44403. ))
  44404. characterMakers.push(() => makeCharacter(
  44405. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44406. {
  44407. regular: {
  44408. height: math.unit(6, "feet"),
  44409. weight: math.unit(220, "lb"),
  44410. name: "Regular",
  44411. image: {
  44412. source: "./media/characters/phillip/regular.svg",
  44413. extra: 1373/1277,
  44414. bottom: 75/1448
  44415. }
  44416. },
  44417. dressed: {
  44418. height: math.unit(6, "feet"),
  44419. weight: math.unit(220, "lb"),
  44420. name: "Dressed",
  44421. image: {
  44422. source: "./media/characters/phillip/dressed.svg",
  44423. extra: 1373/1277,
  44424. bottom: 75/1448
  44425. }
  44426. },
  44427. paw: {
  44428. height: math.unit(1.44, "feet"),
  44429. name: "Paw",
  44430. image: {
  44431. source: "./media/characters/phillip/paw.svg"
  44432. }
  44433. },
  44434. },
  44435. [
  44436. {
  44437. name: "Normal",
  44438. height: math.unit(6, "feet"),
  44439. default: true
  44440. },
  44441. ]
  44442. ))
  44443. characterMakers.push(() => makeCharacter(
  44444. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44445. {
  44446. side: {
  44447. height: math.unit(42, "feet"),
  44448. name: "Side",
  44449. image: {
  44450. source: "./media/characters/uvula/side.svg",
  44451. extra: 683/586,
  44452. bottom: 60/743
  44453. }
  44454. },
  44455. front: {
  44456. height: math.unit(42, "feet"),
  44457. name: "Front",
  44458. image: {
  44459. source: "./media/characters/uvula/front.svg",
  44460. extra: 705/613,
  44461. bottom: 54/759
  44462. }
  44463. },
  44464. maw: {
  44465. height: math.unit(23.5, "feet"),
  44466. name: "Maw",
  44467. image: {
  44468. source: "./media/characters/uvula/maw.svg"
  44469. }
  44470. },
  44471. },
  44472. [
  44473. {
  44474. name: "Original Size",
  44475. height: math.unit(14, "inches")
  44476. },
  44477. {
  44478. name: "Human Size",
  44479. height: math.unit(6, "feet")
  44480. },
  44481. {
  44482. name: "Big",
  44483. height: math.unit(42, "feet"),
  44484. default: true
  44485. },
  44486. {
  44487. name: "Bigger",
  44488. height: math.unit(100, "feet")
  44489. },
  44490. ]
  44491. ))
  44492. characterMakers.push(() => makeCharacter(
  44493. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44494. {
  44495. front: {
  44496. height: math.unit(5 + 11/12, "feet"),
  44497. name: "Front",
  44498. image: {
  44499. source: "./media/characters/lannah/front.svg",
  44500. extra: 1208/1113,
  44501. bottom: 97/1305
  44502. }
  44503. },
  44504. },
  44505. [
  44506. {
  44507. name: "Normal",
  44508. height: math.unit(5 + 11/12, "feet"),
  44509. default: true
  44510. },
  44511. ]
  44512. ))
  44513. characterMakers.push(() => makeCharacter(
  44514. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44515. {
  44516. front: {
  44517. height: math.unit(6 + 3/12, "feet"),
  44518. weight: math.unit(3.5, "tons"),
  44519. name: "Front",
  44520. image: {
  44521. source: "./media/characters/emberflame/front.svg",
  44522. extra: 1198/672,
  44523. bottom: 82/1280
  44524. }
  44525. },
  44526. side: {
  44527. height: math.unit(6 + 3/12, "feet"),
  44528. weight: math.unit(3.5, "tons"),
  44529. name: "Side",
  44530. image: {
  44531. source: "./media/characters/emberflame/side.svg",
  44532. extra: 938/527,
  44533. bottom: 56/994
  44534. }
  44535. },
  44536. },
  44537. [
  44538. {
  44539. name: "Normal",
  44540. height: math.unit(6 + 3/12, "feet"),
  44541. default: true
  44542. },
  44543. ]
  44544. ))
  44545. characterMakers.push(() => makeCharacter(
  44546. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44547. {
  44548. side: {
  44549. height: math.unit(17.5, "feet"),
  44550. weight: math.unit(35, "tons"),
  44551. name: "Side",
  44552. image: {
  44553. source: "./media/characters/sophie-ambrose/side.svg",
  44554. extra: 1573/1242,
  44555. bottom: 71/1644
  44556. }
  44557. },
  44558. maw: {
  44559. height: math.unit(7.4, "feet"),
  44560. name: "Maw",
  44561. image: {
  44562. source: "./media/characters/sophie-ambrose/maw.svg"
  44563. }
  44564. },
  44565. },
  44566. [
  44567. {
  44568. name: "Normal",
  44569. height: math.unit(17.5, "feet"),
  44570. default: true
  44571. },
  44572. ]
  44573. ))
  44574. characterMakers.push(() => makeCharacter(
  44575. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44576. {
  44577. front: {
  44578. height: math.unit(280, "feet"),
  44579. weight: math.unit(550, "tons"),
  44580. name: "Front",
  44581. image: {
  44582. source: "./media/characters/king-mugi/front.svg",
  44583. extra: 1102/947,
  44584. bottom: 104/1206
  44585. }
  44586. },
  44587. },
  44588. [
  44589. {
  44590. name: "King Mugi",
  44591. height: math.unit(280, "feet"),
  44592. default: true
  44593. },
  44594. ]
  44595. ))
  44596. characterMakers.push(() => makeCharacter(
  44597. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44598. {
  44599. front: {
  44600. height: math.unit(64, "meters"),
  44601. name: "Front",
  44602. image: {
  44603. source: "./media/characters/nova-fox/front.svg",
  44604. extra: 1310/1246,
  44605. bottom: 65/1375
  44606. }
  44607. },
  44608. },
  44609. [
  44610. {
  44611. name: "Macro",
  44612. height: math.unit(64, "meters"),
  44613. default: true
  44614. },
  44615. ]
  44616. ))
  44617. characterMakers.push(() => makeCharacter(
  44618. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44619. {
  44620. front: {
  44621. height: math.unit(6 + 3/12, "feet"),
  44622. weight: math.unit(170, "lb"),
  44623. name: "Front",
  44624. image: {
  44625. source: "./media/characters/sam-bat/front.svg",
  44626. extra: 1601/1411,
  44627. bottom: 125/1726
  44628. }
  44629. },
  44630. back: {
  44631. height: math.unit(6 + 3/12, "feet"),
  44632. weight: math.unit(170, "lb"),
  44633. name: "Back",
  44634. image: {
  44635. source: "./media/characters/sam-bat/back.svg",
  44636. extra: 1577/1405,
  44637. bottom: 58/1635
  44638. }
  44639. },
  44640. },
  44641. [
  44642. {
  44643. name: "Normal",
  44644. height: math.unit(6 + 3/12, "feet"),
  44645. default: true
  44646. },
  44647. ]
  44648. ))
  44649. characterMakers.push(() => makeCharacter(
  44650. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44651. {
  44652. front: {
  44653. height: math.unit(59, "feet"),
  44654. weight: math.unit(40000, "lb"),
  44655. name: "Front",
  44656. image: {
  44657. source: "./media/characters/inari/front.svg",
  44658. extra: 1884/1350,
  44659. bottom: 95/1979
  44660. }
  44661. },
  44662. },
  44663. [
  44664. {
  44665. name: "Gigantamax",
  44666. height: math.unit(59, "feet"),
  44667. default: true
  44668. },
  44669. ]
  44670. ))
  44671. characterMakers.push(() => makeCharacter(
  44672. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44673. {
  44674. front: {
  44675. height: math.unit(5 + 8/12, "feet"),
  44676. name: "Front",
  44677. image: {
  44678. source: "./media/characters/elizabeth/front.svg",
  44679. extra: 1395/1298,
  44680. bottom: 54/1449
  44681. }
  44682. },
  44683. mouth: {
  44684. height: math.unit(1.97, "feet"),
  44685. name: "Mouth",
  44686. image: {
  44687. source: "./media/characters/elizabeth/mouth.svg"
  44688. }
  44689. },
  44690. foot: {
  44691. height: math.unit(1.17, "feet"),
  44692. name: "Foot",
  44693. image: {
  44694. source: "./media/characters/elizabeth/foot.svg"
  44695. }
  44696. },
  44697. },
  44698. [
  44699. {
  44700. name: "Normal",
  44701. height: math.unit(5 + 8/12, "feet"),
  44702. default: true
  44703. },
  44704. {
  44705. name: "Minimacro",
  44706. height: math.unit(18, "feet")
  44707. },
  44708. {
  44709. name: "Macro",
  44710. height: math.unit(180, "feet")
  44711. },
  44712. ]
  44713. ))
  44714. characterMakers.push(() => makeCharacter(
  44715. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44716. {
  44717. front: {
  44718. height: math.unit(5 + 2/12, "feet"),
  44719. name: "Front",
  44720. image: {
  44721. source: "./media/characters/october-gossamer/front.svg",
  44722. extra: 505/454,
  44723. bottom: 7/512
  44724. }
  44725. },
  44726. back: {
  44727. height: math.unit(5 + 2/12, "feet"),
  44728. name: "Back",
  44729. image: {
  44730. source: "./media/characters/october-gossamer/back.svg",
  44731. extra: 501/454,
  44732. bottom: 11/512
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "Normal",
  44739. height: math.unit(5 + 2/12, "feet"),
  44740. default: true
  44741. },
  44742. ]
  44743. ))
  44744. characterMakers.push(() => makeCharacter(
  44745. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44746. {
  44747. front: {
  44748. height: math.unit(5, "feet"),
  44749. name: "Front",
  44750. image: {
  44751. source: "./media/characters/epiglottis/front.svg",
  44752. extra: 923/849,
  44753. bottom: 17/940
  44754. }
  44755. },
  44756. },
  44757. [
  44758. {
  44759. name: "Original Size",
  44760. height: math.unit(10, "inches")
  44761. },
  44762. {
  44763. name: "Human Size",
  44764. height: math.unit(5, "feet"),
  44765. default: true
  44766. },
  44767. {
  44768. name: "Big",
  44769. height: math.unit(25, "feet")
  44770. },
  44771. {
  44772. name: "Bigger",
  44773. height: math.unit(50, "feet")
  44774. },
  44775. {
  44776. name: "oh lawd",
  44777. height: math.unit(75, "feet")
  44778. },
  44779. ]
  44780. ))
  44781. characterMakers.push(() => makeCharacter(
  44782. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44783. {
  44784. front: {
  44785. height: math.unit(2 + 4/12, "feet"),
  44786. weight: math.unit(60, "lb"),
  44787. name: "Front",
  44788. image: {
  44789. source: "./media/characters/lerm/front.svg",
  44790. extra: 796/790,
  44791. bottom: 79/875
  44792. }
  44793. },
  44794. },
  44795. [
  44796. {
  44797. name: "Normal",
  44798. height: math.unit(2 + 4/12, "feet"),
  44799. default: true
  44800. },
  44801. ]
  44802. ))
  44803. characterMakers.push(() => makeCharacter(
  44804. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44805. {
  44806. front: {
  44807. height: math.unit(5.5, "feet"),
  44808. weight: math.unit(130, "lb"),
  44809. name: "Front",
  44810. image: {
  44811. source: "./media/characters/xena-nebadon/front.svg",
  44812. extra: 1828/1730,
  44813. bottom: 79/1907
  44814. }
  44815. },
  44816. },
  44817. [
  44818. {
  44819. name: "Tiny Puppy",
  44820. height: math.unit(3, "inches")
  44821. },
  44822. {
  44823. name: "Normal",
  44824. height: math.unit(5.5, "feet"),
  44825. default: true
  44826. },
  44827. {
  44828. name: "Lotta Lady",
  44829. height: math.unit(12, "feet")
  44830. },
  44831. {
  44832. name: "Pretty Big",
  44833. height: math.unit(100, "feet")
  44834. },
  44835. {
  44836. name: "Big",
  44837. height: math.unit(500, "feet")
  44838. },
  44839. {
  44840. name: "Skyscraper Toys",
  44841. height: math.unit(2500, "feet")
  44842. },
  44843. {
  44844. name: "Plane Catcher",
  44845. height: math.unit(8, "miles")
  44846. },
  44847. {
  44848. name: "Planet Toys",
  44849. height: math.unit(15, "earths")
  44850. },
  44851. {
  44852. name: "Stardust",
  44853. height: math.unit(0.25, "galaxies")
  44854. },
  44855. {
  44856. name: "Snacks",
  44857. height: math.unit(70, "universes")
  44858. },
  44859. ]
  44860. ))
  44861. characterMakers.push(() => makeCharacter(
  44862. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44863. {
  44864. front: {
  44865. height: math.unit(1.6, "meters"),
  44866. weight: math.unit(60, "kg"),
  44867. name: "Front",
  44868. image: {
  44869. source: "./media/characters/bounty/front.svg",
  44870. extra: 1426/1308,
  44871. bottom: 15/1441
  44872. }
  44873. },
  44874. back: {
  44875. height: math.unit(1.6, "meters"),
  44876. weight: math.unit(60, "kg"),
  44877. name: "Back",
  44878. image: {
  44879. source: "./media/characters/bounty/back.svg",
  44880. extra: 1417/1307,
  44881. bottom: 8/1425
  44882. }
  44883. },
  44884. },
  44885. [
  44886. {
  44887. name: "Normal",
  44888. height: math.unit(1.6, "meters"),
  44889. default: true
  44890. },
  44891. {
  44892. name: "Macro",
  44893. height: math.unit(300, "meters")
  44894. },
  44895. ]
  44896. ))
  44897. characterMakers.push(() => makeCharacter(
  44898. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44899. {
  44900. front: {
  44901. height: math.unit(2 + 8/12, "feet"),
  44902. weight: math.unit(15, "lb"),
  44903. name: "Front",
  44904. image: {
  44905. source: "./media/characters/mochi/front.svg",
  44906. extra: 1022/852,
  44907. bottom: 435/1457
  44908. }
  44909. },
  44910. back: {
  44911. height: math.unit(2 + 8/12, "feet"),
  44912. weight: math.unit(15, "lb"),
  44913. name: "Back",
  44914. image: {
  44915. source: "./media/characters/mochi/back.svg",
  44916. extra: 1335/1119,
  44917. bottom: 39/1374
  44918. }
  44919. },
  44920. bird: {
  44921. height: math.unit(2 + 8/12, "feet"),
  44922. weight: math.unit(15, "lb"),
  44923. name: "Bird",
  44924. image: {
  44925. source: "./media/characters/mochi/bird.svg",
  44926. extra: 1251/1113,
  44927. bottom: 178/1429
  44928. }
  44929. },
  44930. kaiju: {
  44931. height: math.unit(154, "feet"),
  44932. weight: math.unit(1e7, "lb"),
  44933. name: "Kaiju",
  44934. image: {
  44935. source: "./media/characters/mochi/kaiju.svg",
  44936. extra: 460/324,
  44937. bottom: 40/500
  44938. }
  44939. },
  44940. head: {
  44941. height: math.unit(1.21, "feet"),
  44942. name: "Head",
  44943. image: {
  44944. source: "./media/characters/mochi/head.svg"
  44945. }
  44946. },
  44947. alternateTail: {
  44948. height: math.unit(2 + 8/12, "feet"),
  44949. weight: math.unit(45, "lb"),
  44950. name: "Alternate Tail",
  44951. image: {
  44952. source: "./media/characters/mochi/alternate-tail.svg",
  44953. extra: 139/76,
  44954. bottom: 45/184
  44955. }
  44956. },
  44957. },
  44958. [
  44959. {
  44960. name: "Micro",
  44961. height: math.unit(2, "inches")
  44962. },
  44963. {
  44964. name: "Normal",
  44965. height: math.unit(2 + 8/12, "feet"),
  44966. default: true
  44967. },
  44968. {
  44969. name: "Macro",
  44970. height: math.unit(106, "feet")
  44971. },
  44972. ]
  44973. ))
  44974. characterMakers.push(() => makeCharacter(
  44975. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44976. {
  44977. front: {
  44978. height: math.unit(5.67, "feet"),
  44979. weight: math.unit(135, "lb"),
  44980. name: "Front",
  44981. image: {
  44982. source: "./media/characters/sarel/front.svg",
  44983. extra: 865/788,
  44984. bottom: 97/962
  44985. }
  44986. },
  44987. back: {
  44988. height: math.unit(5.67, "feet"),
  44989. weight: math.unit(135, "lb"),
  44990. name: "Back",
  44991. image: {
  44992. source: "./media/characters/sarel/back.svg",
  44993. extra: 857/777,
  44994. bottom: 32/889
  44995. }
  44996. },
  44997. chozoan: {
  44998. height: math.unit(5.67, "feet"),
  44999. weight: math.unit(135, "lb"),
  45000. name: "Chozoan",
  45001. image: {
  45002. source: "./media/characters/sarel/chozoan.svg",
  45003. extra: 865/788,
  45004. bottom: 97/962
  45005. }
  45006. },
  45007. current: {
  45008. height: math.unit(5.67, "feet"),
  45009. weight: math.unit(135, "lb"),
  45010. name: "Current",
  45011. image: {
  45012. source: "./media/characters/sarel/current.svg",
  45013. extra: 865/788,
  45014. bottom: 97/962
  45015. }
  45016. },
  45017. head: {
  45018. height: math.unit(1.77, "feet"),
  45019. name: "Head",
  45020. image: {
  45021. source: "./media/characters/sarel/head.svg"
  45022. }
  45023. },
  45024. claws: {
  45025. height: math.unit(1.8, "feet"),
  45026. name: "Claws",
  45027. image: {
  45028. source: "./media/characters/sarel/claws.svg"
  45029. }
  45030. },
  45031. clawsAlt: {
  45032. height: math.unit(1.8, "feet"),
  45033. name: "Claws-alt",
  45034. image: {
  45035. source: "./media/characters/sarel/claws-alt.svg"
  45036. }
  45037. },
  45038. },
  45039. [
  45040. {
  45041. name: "Normal",
  45042. height: math.unit(5.67, "feet"),
  45043. default: true
  45044. },
  45045. ]
  45046. ))
  45047. characterMakers.push(() => makeCharacter(
  45048. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45049. {
  45050. front: {
  45051. height: math.unit(5500, "feet"),
  45052. name: "Front",
  45053. image: {
  45054. source: "./media/characters/alyonia/front.svg",
  45055. extra: 1200/1135,
  45056. bottom: 29/1229
  45057. }
  45058. },
  45059. back: {
  45060. height: math.unit(5500, "feet"),
  45061. name: "Back",
  45062. image: {
  45063. source: "./media/characters/alyonia/back.svg",
  45064. extra: 1205/1138,
  45065. bottom: 10/1215
  45066. }
  45067. },
  45068. },
  45069. [
  45070. {
  45071. name: "Small",
  45072. height: math.unit(10, "feet")
  45073. },
  45074. {
  45075. name: "Macro",
  45076. height: math.unit(500, "feet")
  45077. },
  45078. {
  45079. name: "Mega Macro",
  45080. height: math.unit(5500, "feet"),
  45081. default: true
  45082. },
  45083. {
  45084. name: "Mega Macro+",
  45085. height: math.unit(500000, "feet")
  45086. },
  45087. {
  45088. name: "Giga Macro",
  45089. height: math.unit(3000, "miles")
  45090. },
  45091. {
  45092. name: "Tera Macro",
  45093. height: math.unit(2.8e6, "miles")
  45094. },
  45095. {
  45096. name: "Galactic",
  45097. height: math.unit(120000, "lightyears")
  45098. },
  45099. ]
  45100. ))
  45101. characterMakers.push(() => makeCharacter(
  45102. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45103. {
  45104. werewolf: {
  45105. height: math.unit(8, "feet"),
  45106. weight: math.unit(425, "lb"),
  45107. name: "Werewolf",
  45108. image: {
  45109. source: "./media/characters/autumn/werewolf.svg",
  45110. extra: 2154/2031,
  45111. bottom: 160/2314
  45112. }
  45113. },
  45114. human: {
  45115. height: math.unit(5 + 8/12, "feet"),
  45116. weight: math.unit(150, "lb"),
  45117. name: "Human",
  45118. image: {
  45119. source: "./media/characters/autumn/human.svg",
  45120. extra: 1200/1149,
  45121. bottom: 30/1230
  45122. }
  45123. },
  45124. },
  45125. [
  45126. {
  45127. name: "Normal",
  45128. height: math.unit(8, "feet"),
  45129. default: true
  45130. },
  45131. ]
  45132. ))
  45133. characterMakers.push(() => makeCharacter(
  45134. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45135. {
  45136. front: {
  45137. height: math.unit(8 + 5/12, "feet"),
  45138. weight: math.unit(825, "lb"),
  45139. name: "Front",
  45140. image: {
  45141. source: "./media/characters/cobalt-charizard/front.svg",
  45142. extra: 1268/1155,
  45143. bottom: 122/1390
  45144. }
  45145. },
  45146. side: {
  45147. height: math.unit(8 + 5/12, "feet"),
  45148. weight: math.unit(825, "lb"),
  45149. name: "Side",
  45150. image: {
  45151. source: "./media/characters/cobalt-charizard/side.svg",
  45152. extra: 1348/1257,
  45153. bottom: 58/1406
  45154. }
  45155. },
  45156. gMax: {
  45157. height: math.unit(134 + 11/12, "feet"),
  45158. name: "G-Max",
  45159. image: {
  45160. source: "./media/characters/cobalt-charizard/g-max.svg",
  45161. extra: 1835/1541,
  45162. bottom: 151/1986
  45163. }
  45164. },
  45165. },
  45166. [
  45167. {
  45168. name: "Normal",
  45169. height: math.unit(8 + 5/12, "feet"),
  45170. default: true
  45171. },
  45172. ]
  45173. ))
  45174. characterMakers.push(() => makeCharacter(
  45175. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45176. {
  45177. front: {
  45178. height: math.unit(6 + 3/12, "feet"),
  45179. weight: math.unit(210, "lb"),
  45180. name: "Front",
  45181. image: {
  45182. source: "./media/characters/stella/front.svg",
  45183. extra: 3549/3335,
  45184. bottom: 51/3600
  45185. }
  45186. },
  45187. },
  45188. [
  45189. {
  45190. name: "Normal",
  45191. height: math.unit(6 + 3/12, "feet"),
  45192. default: true
  45193. },
  45194. ]
  45195. ))
  45196. characterMakers.push(() => makeCharacter(
  45197. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45198. {
  45199. front: {
  45200. height: math.unit(5, "feet"),
  45201. weight: math.unit(90, "lb"),
  45202. name: "Front",
  45203. image: {
  45204. source: "./media/characters/riley-bishop/front.svg",
  45205. extra: 1450/1428,
  45206. bottom: 152/1602
  45207. }
  45208. },
  45209. },
  45210. [
  45211. {
  45212. name: "Normal",
  45213. height: math.unit(5, "feet"),
  45214. default: true
  45215. },
  45216. ]
  45217. ))
  45218. characterMakers.push(() => makeCharacter(
  45219. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45220. {
  45221. side: {
  45222. height: math.unit(8 + 2/12, "feet"),
  45223. weight: math.unit(500, "kg"),
  45224. name: "Side",
  45225. image: {
  45226. source: "./media/characters/theo-arcanine/side.svg",
  45227. extra: 1342/1074,
  45228. bottom: 111/1453
  45229. }
  45230. },
  45231. },
  45232. [
  45233. {
  45234. name: "Normal",
  45235. height: math.unit(8 + 2/12, "feet"),
  45236. default: true
  45237. },
  45238. ]
  45239. ))
  45240. characterMakers.push(() => makeCharacter(
  45241. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45242. {
  45243. front: {
  45244. height: math.unit(4, "feet"),
  45245. name: "Front",
  45246. image: {
  45247. source: "./media/characters/kali/front.svg",
  45248. extra: 1921/1357,
  45249. bottom: 70/1991
  45250. }
  45251. },
  45252. },
  45253. [
  45254. {
  45255. name: "Normal",
  45256. height: math.unit(4, "feet"),
  45257. default: true
  45258. },
  45259. {
  45260. name: "Macro",
  45261. height: math.unit(32, "meters")
  45262. },
  45263. {
  45264. name: "Macro+",
  45265. height: math.unit(150, "meters")
  45266. },
  45267. {
  45268. name: "Megamacro",
  45269. height: math.unit(7500, "meters")
  45270. },
  45271. {
  45272. name: "Megamacro+",
  45273. height: math.unit(80, "kilometers")
  45274. },
  45275. ]
  45276. ))
  45277. characterMakers.push(() => makeCharacter(
  45278. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45279. {
  45280. side: {
  45281. height: math.unit(5 + 11/12, "feet"),
  45282. weight: math.unit(236, "lb"),
  45283. name: "Side",
  45284. image: {
  45285. source: "./media/characters/gapp/side.svg",
  45286. extra: 775/340,
  45287. bottom: 58/833
  45288. }
  45289. },
  45290. mouth: {
  45291. height: math.unit(2.98, "feet"),
  45292. name: "Mouth",
  45293. image: {
  45294. source: "./media/characters/gapp/mouth.svg"
  45295. }
  45296. },
  45297. },
  45298. [
  45299. {
  45300. name: "Normal",
  45301. height: math.unit(5 + 1/12, "feet"),
  45302. default: true
  45303. },
  45304. ]
  45305. ))
  45306. characterMakers.push(() => makeCharacter(
  45307. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45308. {
  45309. front: {
  45310. height: math.unit(6, "feet"),
  45311. name: "Front",
  45312. image: {
  45313. source: "./media/characters/persephone/front.svg",
  45314. extra: 1895/1717,
  45315. bottom: 96/1991
  45316. }
  45317. },
  45318. back: {
  45319. height: math.unit(6, "feet"),
  45320. name: "Back",
  45321. image: {
  45322. source: "./media/characters/persephone/back.svg",
  45323. extra: 1868/1679,
  45324. bottom: 26/1894
  45325. }
  45326. },
  45327. casual: {
  45328. height: math.unit(6, "feet"),
  45329. name: "Casual",
  45330. image: {
  45331. source: "./media/characters/persephone/casual.svg",
  45332. extra: 1713/1541,
  45333. bottom: 76/1789
  45334. }
  45335. },
  45336. },
  45337. [
  45338. {
  45339. name: "Human Size",
  45340. height: math.unit(6, "feet")
  45341. },
  45342. {
  45343. name: "Big Steppy",
  45344. height: math.unit(600, "meters"),
  45345. default: true
  45346. },
  45347. {
  45348. name: "Galaxy Brain",
  45349. height: math.unit(1, "zettameter")
  45350. },
  45351. ]
  45352. ))
  45353. characterMakers.push(() => makeCharacter(
  45354. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45355. {
  45356. front: {
  45357. height: math.unit(1.85, "meters"),
  45358. name: "Front",
  45359. image: {
  45360. source: "./media/characters/riley-foxthing/front.svg",
  45361. extra: 1495/1354,
  45362. bottom: 122/1617
  45363. }
  45364. },
  45365. frontAlt: {
  45366. height: math.unit(1.85, "meters"),
  45367. name: "Front (Alt)",
  45368. image: {
  45369. source: "./media/characters/riley-foxthing/front-alt.svg",
  45370. extra: 1572/1389,
  45371. bottom: 116/1688
  45372. }
  45373. },
  45374. },
  45375. [
  45376. {
  45377. name: "Normal Sized",
  45378. height: math.unit(1.85, "meters"),
  45379. default: true
  45380. },
  45381. {
  45382. name: "Quite Sizable",
  45383. height: math.unit(5, "meters")
  45384. },
  45385. {
  45386. name: "Rather Large",
  45387. height: math.unit(20, "meters")
  45388. },
  45389. {
  45390. name: "Macro",
  45391. height: math.unit(450, "meters")
  45392. },
  45393. {
  45394. name: "Giga",
  45395. height: math.unit(5, "km")
  45396. },
  45397. ]
  45398. ))
  45399. characterMakers.push(() => makeCharacter(
  45400. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45401. {
  45402. front: {
  45403. height: math.unit(6, "feet"),
  45404. weight: math.unit(200, "lb"),
  45405. name: "Front",
  45406. image: {
  45407. source: "./media/characters/blizzard/front.svg",
  45408. extra: 1136/990,
  45409. bottom: 136/1272
  45410. }
  45411. },
  45412. back: {
  45413. height: math.unit(6, "feet"),
  45414. weight: math.unit(200, "lb"),
  45415. name: "Back",
  45416. image: {
  45417. source: "./media/characters/blizzard/back.svg",
  45418. extra: 1175/1034,
  45419. bottom: 97/1272
  45420. }
  45421. },
  45422. sitting: {
  45423. height: math.unit(3.725, "feet"),
  45424. weight: math.unit(200, "lb"),
  45425. name: "Sitting",
  45426. image: {
  45427. source: "./media/characters/blizzard/sitting.svg",
  45428. extra: 581/485,
  45429. bottom: 90/671
  45430. }
  45431. },
  45432. frontWizard: {
  45433. height: math.unit(7.9, "feet"),
  45434. weight: math.unit(200, "lb"),
  45435. name: "Front (Wizard)",
  45436. image: {
  45437. source: "./media/characters/blizzard/front-wizard.svg"
  45438. }
  45439. },
  45440. backWizard: {
  45441. height: math.unit(7.9, "feet"),
  45442. weight: math.unit(200, "lb"),
  45443. name: "Back (Wizard)",
  45444. image: {
  45445. source: "./media/characters/blizzard/back-wizard.svg"
  45446. }
  45447. },
  45448. frontNsfw: {
  45449. height: math.unit(6, "feet"),
  45450. weight: math.unit(200, "lb"),
  45451. name: "Front (NSFW)",
  45452. image: {
  45453. source: "./media/characters/blizzard/front-nsfw.svg",
  45454. extra: 1136/990,
  45455. bottom: 136/1272
  45456. }
  45457. },
  45458. backNsfw: {
  45459. height: math.unit(6, "feet"),
  45460. weight: math.unit(200, "lb"),
  45461. name: "Back (NSFW)",
  45462. image: {
  45463. source: "./media/characters/blizzard/back-nsfw.svg",
  45464. extra: 1175/1034,
  45465. bottom: 97/1272
  45466. }
  45467. },
  45468. sittingNsfw: {
  45469. height: math.unit(3.725, "feet"),
  45470. weight: math.unit(200, "lb"),
  45471. name: "Sitting (NSFW)",
  45472. image: {
  45473. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45474. extra: 581/485,
  45475. bottom: 90/671
  45476. }
  45477. },
  45478. wizardFrontNsfw: {
  45479. height: math.unit(7.9, "feet"),
  45480. weight: math.unit(200, "lb"),
  45481. name: "Wizard (Front, NSFW)",
  45482. image: {
  45483. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45484. }
  45485. },
  45486. },
  45487. [
  45488. {
  45489. name: "Normal",
  45490. height: math.unit(6, "feet"),
  45491. default: true
  45492. },
  45493. ]
  45494. ))
  45495. characterMakers.push(() => makeCharacter(
  45496. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45497. {
  45498. front: {
  45499. height: math.unit(5 + 2/12, "feet"),
  45500. name: "Front",
  45501. image: {
  45502. source: "./media/characters/lumi/front.svg",
  45503. extra: 1328/1268,
  45504. bottom: 103/1431
  45505. }
  45506. },
  45507. back: {
  45508. height: math.unit(5 + 2/12, "feet"),
  45509. name: "Back",
  45510. image: {
  45511. source: "./media/characters/lumi/back.svg",
  45512. extra: 1381/1327,
  45513. bottom: 43/1424
  45514. }
  45515. },
  45516. },
  45517. [
  45518. {
  45519. name: "Normal",
  45520. height: math.unit(5 + 2/12, "feet"),
  45521. default: true
  45522. },
  45523. ]
  45524. ))
  45525. characterMakers.push(() => makeCharacter(
  45526. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45527. {
  45528. front: {
  45529. height: math.unit(5 + 9/12, "feet"),
  45530. name: "Front",
  45531. image: {
  45532. source: "./media/characters/aliya-cotton/front.svg",
  45533. extra: 577/564,
  45534. bottom: 29/606
  45535. }
  45536. },
  45537. },
  45538. [
  45539. {
  45540. name: "Normal",
  45541. height: math.unit(5 + 9/12, "feet"),
  45542. default: true
  45543. },
  45544. ]
  45545. ))
  45546. characterMakers.push(() => makeCharacter(
  45547. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45548. {
  45549. front: {
  45550. height: math.unit(2.7, "meters"),
  45551. weight: math.unit(25000, "lb"),
  45552. name: "Front",
  45553. image: {
  45554. source: "./media/characters/noah-luxray/front.svg",
  45555. extra: 1644/825,
  45556. bottom: 339/1983
  45557. }
  45558. },
  45559. side: {
  45560. height: math.unit(2.97, "meters"),
  45561. weight: math.unit(25000, "lb"),
  45562. name: "Side",
  45563. image: {
  45564. source: "./media/characters/noah-luxray/side.svg",
  45565. extra: 1319/650,
  45566. bottom: 163/1482
  45567. }
  45568. },
  45569. dick: {
  45570. height: math.unit(7.4, "feet"),
  45571. weight: math.unit(2500, "lb"),
  45572. name: "Dick",
  45573. image: {
  45574. source: "./media/characters/noah-luxray/dick.svg"
  45575. }
  45576. },
  45577. dickAlt: {
  45578. height: math.unit(10.83, "feet"),
  45579. weight: math.unit(2500, "lb"),
  45580. name: "Dick-alt",
  45581. image: {
  45582. source: "./media/characters/noah-luxray/dick-alt.svg"
  45583. }
  45584. },
  45585. },
  45586. [
  45587. {
  45588. name: "BIG",
  45589. height: math.unit(2.7, "meters"),
  45590. default: true
  45591. },
  45592. ]
  45593. ))
  45594. characterMakers.push(() => makeCharacter(
  45595. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45596. {
  45597. standing: {
  45598. height: math.unit(183, "cm"),
  45599. weight: math.unit(68, "kg"),
  45600. name: "Standing",
  45601. image: {
  45602. source: "./media/characters/arion/standing.svg",
  45603. extra: 1869/1807,
  45604. bottom: 93/1962
  45605. }
  45606. },
  45607. reclining: {
  45608. height: math.unit(70.5, "cm"),
  45609. weight: math.unit(68, "lb"),
  45610. name: "Reclining",
  45611. image: {
  45612. source: "./media/characters/arion/reclining.svg",
  45613. extra: 937/870,
  45614. bottom: 63/1000
  45615. }
  45616. },
  45617. },
  45618. [
  45619. {
  45620. name: "Colossus Size, Low",
  45621. height: math.unit(33, "meters"),
  45622. default: true
  45623. },
  45624. {
  45625. name: "Colossus Size, Mid",
  45626. height: math.unit(52, "meters")
  45627. },
  45628. {
  45629. name: "Colossus Size, High",
  45630. height: math.unit(60, "meters")
  45631. },
  45632. {
  45633. name: "Titan Size, Low",
  45634. height: math.unit(91, "meters"),
  45635. },
  45636. {
  45637. name: "Titan Size, Mid",
  45638. height: math.unit(122, "meters")
  45639. },
  45640. {
  45641. name: "Titan Size, High",
  45642. height: math.unit(162, "meters")
  45643. },
  45644. ]
  45645. ))
  45646. characterMakers.push(() => makeCharacter(
  45647. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45648. {
  45649. front: {
  45650. height: math.unit(53, "meters"),
  45651. name: "Front",
  45652. image: {
  45653. source: "./media/characters/stellar-marbey/front.svg",
  45654. extra: 1913/1805,
  45655. bottom: 92/2005
  45656. }
  45657. },
  45658. back: {
  45659. height: math.unit(53, "meters"),
  45660. name: "Back",
  45661. image: {
  45662. source: "./media/characters/stellar-marbey/back.svg",
  45663. extra: 1960/1851,
  45664. bottom: 28/1988
  45665. }
  45666. },
  45667. mouth: {
  45668. height: math.unit(3.5, "meters"),
  45669. name: "Mouth",
  45670. image: {
  45671. source: "./media/characters/stellar-marbey/mouth.svg"
  45672. }
  45673. },
  45674. },
  45675. [
  45676. {
  45677. name: "Macro",
  45678. height: math.unit(53, "meters"),
  45679. default: true
  45680. },
  45681. ]
  45682. ))
  45683. characterMakers.push(() => makeCharacter(
  45684. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45685. {
  45686. front: {
  45687. height: math.unit(8 + 1/12, "feet"),
  45688. weight: math.unit(233, "lb"),
  45689. name: "Front",
  45690. image: {
  45691. source: "./media/characters/matsu/front.svg",
  45692. extra: 832/772,
  45693. bottom: 40/872
  45694. }
  45695. },
  45696. back: {
  45697. height: math.unit(8 + 1/12, "feet"),
  45698. weight: math.unit(233, "lb"),
  45699. name: "Back",
  45700. image: {
  45701. source: "./media/characters/matsu/back.svg",
  45702. extra: 839/780,
  45703. bottom: 47/886
  45704. }
  45705. },
  45706. },
  45707. [
  45708. {
  45709. name: "Normal",
  45710. height: math.unit(8 + 1/12, "feet"),
  45711. default: true
  45712. },
  45713. ]
  45714. ))
  45715. characterMakers.push(() => makeCharacter(
  45716. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45717. {
  45718. front: {
  45719. height: math.unit(4, "feet"),
  45720. weight: math.unit(148, "lb"),
  45721. name: "Front",
  45722. image: {
  45723. source: "./media/characters/thiz/front.svg",
  45724. extra: 1913/1748,
  45725. bottom: 62/1975
  45726. }
  45727. },
  45728. },
  45729. [
  45730. {
  45731. name: "Normal",
  45732. height: math.unit(4, "feet"),
  45733. default: true
  45734. },
  45735. ]
  45736. ))
  45737. characterMakers.push(() => makeCharacter(
  45738. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45739. {
  45740. front: {
  45741. height: math.unit(7 + 6/12, "feet"),
  45742. weight: math.unit(267, "lb"),
  45743. name: "Front",
  45744. image: {
  45745. source: "./media/characters/marcel/front.svg",
  45746. extra: 1221/1096,
  45747. bottom: 76/1297
  45748. }
  45749. },
  45750. },
  45751. [
  45752. {
  45753. name: "Normal",
  45754. height: math.unit(7 + 6/12, "feet"),
  45755. default: true
  45756. },
  45757. ]
  45758. ))
  45759. characterMakers.push(() => makeCharacter(
  45760. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45761. {
  45762. side: {
  45763. height: math.unit(42, "meters"),
  45764. name: "Side",
  45765. image: {
  45766. source: "./media/characters/flake/side.svg",
  45767. extra: 1525/1306,
  45768. bottom: 209/1734
  45769. }
  45770. },
  45771. },
  45772. [
  45773. {
  45774. name: "Normal",
  45775. height: math.unit(42, "meters"),
  45776. default: true
  45777. },
  45778. ]
  45779. ))
  45780. characterMakers.push(() => makeCharacter(
  45781. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45782. {
  45783. dressed: {
  45784. height: math.unit(6 + 4/12, "feet"),
  45785. weight: math.unit(520, "lb"),
  45786. name: "Dressed",
  45787. image: {
  45788. source: "./media/characters/someonne/dressed.svg",
  45789. extra: 1020/1010,
  45790. bottom: 178/1198
  45791. }
  45792. },
  45793. undressed: {
  45794. height: math.unit(6 + 4/12, "feet"),
  45795. weight: math.unit(520, "lb"),
  45796. name: "Undressed",
  45797. image: {
  45798. source: "./media/characters/someonne/undressed.svg",
  45799. extra: 1019/1014,
  45800. bottom: 169/1188
  45801. }
  45802. },
  45803. },
  45804. [
  45805. {
  45806. name: "Normal",
  45807. height: math.unit(6 + 4/12, "feet"),
  45808. default: true
  45809. },
  45810. ]
  45811. ))
  45812. characterMakers.push(() => makeCharacter(
  45813. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45814. {
  45815. front: {
  45816. height: math.unit(3, "feet"),
  45817. weight: math.unit(30, "lb"),
  45818. name: "Front",
  45819. image: {
  45820. source: "./media/characters/till/front.svg",
  45821. extra: 892/823,
  45822. bottom: 55/947
  45823. }
  45824. },
  45825. },
  45826. [
  45827. {
  45828. name: "Normal",
  45829. height: math.unit(3, "feet"),
  45830. default: true
  45831. },
  45832. ]
  45833. ))
  45834. characterMakers.push(() => makeCharacter(
  45835. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45836. {
  45837. front: {
  45838. height: math.unit(9 + 8/12, "feet"),
  45839. weight: math.unit(800, "lb"),
  45840. name: "Front",
  45841. image: {
  45842. source: "./media/characters/sydney-heki/front.svg",
  45843. extra: 1360/1300,
  45844. bottom: 22/1382
  45845. }
  45846. },
  45847. back: {
  45848. height: math.unit(9 + 8/12, "feet"),
  45849. weight: math.unit(800, "lb"),
  45850. name: "Back",
  45851. image: {
  45852. source: "./media/characters/sydney-heki/back.svg",
  45853. extra: 1356/1293,
  45854. bottom: 12/1368
  45855. }
  45856. },
  45857. frontDressed: {
  45858. height: math.unit(9 + 8/12, "feet"),
  45859. weight: math.unit(800, "lb"),
  45860. name: "Front-dressed",
  45861. image: {
  45862. source: "./media/characters/sydney-heki/front-dressed.svg",
  45863. extra: 1360/1300,
  45864. bottom: 22/1382
  45865. }
  45866. },
  45867. },
  45868. [
  45869. {
  45870. name: "Normal",
  45871. height: math.unit(9 + 8/12, "feet"),
  45872. default: true
  45873. },
  45874. {
  45875. name: "Macro",
  45876. height: math.unit(500, "feet")
  45877. },
  45878. {
  45879. name: "Megamacro",
  45880. height: math.unit(3.6, "miles")
  45881. },
  45882. ]
  45883. ))
  45884. characterMakers.push(() => makeCharacter(
  45885. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45886. {
  45887. front: {
  45888. height: math.unit(200, "cm"),
  45889. weight: math.unit(250, "lb"),
  45890. name: "Front",
  45891. image: {
  45892. source: "./media/characters/fowler-karlsson/front.svg",
  45893. extra: 897/845,
  45894. bottom: 123/1020
  45895. }
  45896. },
  45897. back: {
  45898. height: math.unit(200, "cm"),
  45899. weight: math.unit(250, "lb"),
  45900. name: "Back",
  45901. image: {
  45902. source: "./media/characters/fowler-karlsson/back.svg",
  45903. extra: 999/944,
  45904. bottom: 26/1025
  45905. }
  45906. },
  45907. dick: {
  45908. height: math.unit(1.92, "feet"),
  45909. weight: math.unit(150, "lb"),
  45910. name: "Dick",
  45911. image: {
  45912. source: "./media/characters/fowler-karlsson/dick.svg"
  45913. }
  45914. },
  45915. },
  45916. [
  45917. {
  45918. name: "Normal",
  45919. height: math.unit(200, "cm"),
  45920. default: true
  45921. },
  45922. {
  45923. name: "Smaller Macro",
  45924. height: math.unit(90, "m")
  45925. },
  45926. {
  45927. name: "Macro",
  45928. height: math.unit(150, "m")
  45929. },
  45930. {
  45931. name: "Bigger Macro",
  45932. height: math.unit(300, "m")
  45933. },
  45934. ]
  45935. ))
  45936. characterMakers.push(() => makeCharacter(
  45937. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45938. {
  45939. side: {
  45940. height: math.unit(8 + 2/12, "feet"),
  45941. weight: math.unit(1, "tonne"),
  45942. name: "Side",
  45943. image: {
  45944. source: "./media/characters/rylide/side.svg",
  45945. extra: 1318/1034,
  45946. bottom: 106/1424
  45947. }
  45948. },
  45949. sitting: {
  45950. height: math.unit(303, "cm"),
  45951. weight: math.unit(1, "tonne"),
  45952. name: "Sitting",
  45953. image: {
  45954. source: "./media/characters/rylide/sitting.svg",
  45955. extra: 1303/1103,
  45956. bottom: 36/1339
  45957. }
  45958. },
  45959. },
  45960. [
  45961. {
  45962. name: "Normal",
  45963. height: math.unit(8 + 2/12, "feet"),
  45964. default: true
  45965. },
  45966. ]
  45967. ))
  45968. characterMakers.push(() => makeCharacter(
  45969. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45970. {
  45971. front: {
  45972. height: math.unit(5 + 10/12, "feet"),
  45973. weight: math.unit(160, "lb"),
  45974. name: "Front",
  45975. image: {
  45976. source: "./media/characters/pudask/front.svg",
  45977. extra: 1616/1590,
  45978. bottom: 161/1777
  45979. }
  45980. },
  45981. },
  45982. [
  45983. {
  45984. name: "Ferret Height",
  45985. height: math.unit(2 + 5/12, "feet")
  45986. },
  45987. {
  45988. name: "Canon Height",
  45989. height: math.unit(5 + 10/12, "feet"),
  45990. default: true
  45991. },
  45992. ]
  45993. ))
  45994. characterMakers.push(() => makeCharacter(
  45995. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45996. {
  45997. front: {
  45998. height: math.unit(3 + 6/12, "feet"),
  45999. weight: math.unit(60, "lb"),
  46000. name: "Front",
  46001. image: {
  46002. source: "./media/characters/ramita/front.svg",
  46003. extra: 1402/1232,
  46004. bottom: 62/1464
  46005. }
  46006. },
  46007. dressed: {
  46008. height: math.unit(3 + 6/12, "feet"),
  46009. weight: math.unit(60, "lb"),
  46010. name: "Dressed",
  46011. image: {
  46012. source: "./media/characters/ramita/dressed.svg",
  46013. extra: 1534/1249,
  46014. bottom: 50/1584
  46015. }
  46016. },
  46017. },
  46018. [
  46019. {
  46020. name: "Normal",
  46021. height: math.unit(3 + 6/12, "feet"),
  46022. default: true
  46023. },
  46024. ]
  46025. ))
  46026. characterMakers.push(() => makeCharacter(
  46027. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46028. {
  46029. front: {
  46030. height: math.unit(8, "feet"),
  46031. name: "Front",
  46032. image: {
  46033. source: "./media/characters/ark/front.svg",
  46034. extra: 772/693,
  46035. bottom: 45/817
  46036. }
  46037. },
  46038. },
  46039. [
  46040. {
  46041. name: "Normal",
  46042. height: math.unit(8, "feet"),
  46043. default: true
  46044. },
  46045. ]
  46046. ))
  46047. characterMakers.push(() => makeCharacter(
  46048. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46049. {
  46050. front: {
  46051. height: math.unit(6, "feet"),
  46052. weight: math.unit(250, "lb"),
  46053. volume: math.unit(5/8, "gallons"),
  46054. name: "Front",
  46055. image: {
  46056. source: "./media/characters/ludwig-horn/front.svg",
  46057. extra: 1782/1635,
  46058. bottom: 96/1878
  46059. }
  46060. },
  46061. back: {
  46062. height: math.unit(6, "feet"),
  46063. weight: math.unit(250, "lb"),
  46064. volume: math.unit(5/8, "gallons"),
  46065. name: "Back",
  46066. image: {
  46067. source: "./media/characters/ludwig-horn/back.svg",
  46068. extra: 1874/1729,
  46069. bottom: 27/1901
  46070. }
  46071. },
  46072. dick: {
  46073. height: math.unit(1.05, "feet"),
  46074. weight: math.unit(15, "lb"),
  46075. volume: math.unit(5/8, "gallons"),
  46076. name: "Dick",
  46077. image: {
  46078. source: "./media/characters/ludwig-horn/dick.svg"
  46079. }
  46080. },
  46081. },
  46082. [
  46083. {
  46084. name: "Small",
  46085. height: math.unit(6, "feet")
  46086. },
  46087. {
  46088. name: "Typical",
  46089. height: math.unit(12, "feet"),
  46090. default: true
  46091. },
  46092. {
  46093. name: "Building",
  46094. height: math.unit(80, "feet")
  46095. },
  46096. {
  46097. name: "Town",
  46098. height: math.unit(800, "feet")
  46099. },
  46100. {
  46101. name: "Kingdom",
  46102. height: math.unit(80000, "feet")
  46103. },
  46104. {
  46105. name: "Planet",
  46106. height: math.unit(8000000, "feet")
  46107. },
  46108. {
  46109. name: "Universe",
  46110. height: math.unit(8000000000, "feet")
  46111. },
  46112. {
  46113. name: "Transcended",
  46114. height: math.unit(8e27, "feet")
  46115. },
  46116. ]
  46117. ))
  46118. characterMakers.push(() => makeCharacter(
  46119. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46120. {
  46121. front: {
  46122. height: math.unit(5, "feet"),
  46123. weight: math.unit(50, "kg"),
  46124. name: "Front",
  46125. image: {
  46126. source: "./media/characters/biot-avery/front.svg",
  46127. extra: 1295/1232,
  46128. bottom: 86/1381
  46129. }
  46130. },
  46131. },
  46132. [
  46133. {
  46134. name: "Normal",
  46135. height: math.unit(5, "feet"),
  46136. default: true
  46137. },
  46138. ]
  46139. ))
  46140. characterMakers.push(() => makeCharacter(
  46141. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46142. {
  46143. front: {
  46144. height: math.unit(6, "feet"),
  46145. name: "Front",
  46146. image: {
  46147. source: "./media/characters/kitsune-kiro/front.svg",
  46148. extra: 1270/1158,
  46149. bottom: 42/1312
  46150. }
  46151. },
  46152. frontAlt: {
  46153. height: math.unit(6, "feet"),
  46154. name: "Front-alt",
  46155. image: {
  46156. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46157. extra: 1130/1081,
  46158. bottom: 36/1166
  46159. }
  46160. },
  46161. },
  46162. [
  46163. {
  46164. name: "Smol",
  46165. height: math.unit(3, "feet")
  46166. },
  46167. {
  46168. name: "Normal",
  46169. height: math.unit(6, "feet"),
  46170. default: true
  46171. },
  46172. ]
  46173. ))
  46174. characterMakers.push(() => makeCharacter(
  46175. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46176. {
  46177. front: {
  46178. height: math.unit(6, "feet"),
  46179. weight: math.unit(125, "lb"),
  46180. name: "Front",
  46181. image: {
  46182. source: "./media/characters/jack-thatcher/front.svg",
  46183. extra: 1474/1370,
  46184. bottom: 26/1500
  46185. }
  46186. },
  46187. back: {
  46188. height: math.unit(6, "feet"),
  46189. weight: math.unit(125, "lb"),
  46190. name: "Back",
  46191. image: {
  46192. source: "./media/characters/jack-thatcher/back.svg",
  46193. extra: 1489/1384,
  46194. bottom: 18/1507
  46195. }
  46196. },
  46197. },
  46198. [
  46199. {
  46200. name: "Normal",
  46201. height: math.unit(6, "feet"),
  46202. default: true
  46203. },
  46204. {
  46205. name: "Macro",
  46206. height: math.unit(75, "feet")
  46207. },
  46208. {
  46209. name: "Macro-er",
  46210. height: math.unit(250, "feet")
  46211. },
  46212. ]
  46213. ))
  46214. characterMakers.push(() => makeCharacter(
  46215. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46216. {
  46217. front: {
  46218. height: math.unit(7, "feet"),
  46219. weight: math.unit(110, "kg"),
  46220. name: "Front",
  46221. image: {
  46222. source: "./media/characters/max-hyper/front.svg",
  46223. extra: 1969/1881,
  46224. bottom: 49/2018
  46225. }
  46226. },
  46227. },
  46228. [
  46229. {
  46230. name: "Normal",
  46231. height: math.unit(7, "feet"),
  46232. default: true
  46233. },
  46234. ]
  46235. ))
  46236. characterMakers.push(() => makeCharacter(
  46237. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46238. {
  46239. front: {
  46240. height: math.unit(5 + 5/12, "feet"),
  46241. weight: math.unit(160, "lb"),
  46242. name: "Front",
  46243. image: {
  46244. source: "./media/characters/spook/front.svg",
  46245. extra: 794/791,
  46246. bottom: 54/848
  46247. }
  46248. },
  46249. back: {
  46250. height: math.unit(5 + 5/12, "feet"),
  46251. weight: math.unit(160, "lb"),
  46252. name: "Back",
  46253. image: {
  46254. source: "./media/characters/spook/back.svg",
  46255. extra: 812/798,
  46256. bottom: 32/844
  46257. }
  46258. },
  46259. },
  46260. [
  46261. {
  46262. name: "Normal",
  46263. height: math.unit(5 + 5/12, "feet"),
  46264. default: true
  46265. },
  46266. ]
  46267. ))
  46268. characterMakers.push(() => makeCharacter(
  46269. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46270. {
  46271. front: {
  46272. height: math.unit(18, "feet"),
  46273. name: "Front",
  46274. image: {
  46275. source: "./media/characters/xeaduulix/front.svg",
  46276. extra: 1380/1166,
  46277. bottom: 110/1490
  46278. }
  46279. },
  46280. back: {
  46281. height: math.unit(18, "feet"),
  46282. name: "Back",
  46283. image: {
  46284. source: "./media/characters/xeaduulix/back.svg",
  46285. extra: 1592/1170,
  46286. bottom: 128/1720
  46287. }
  46288. },
  46289. frontNsfw: {
  46290. height: math.unit(18, "feet"),
  46291. name: "Front (NSFW)",
  46292. image: {
  46293. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46294. extra: 1380/1166,
  46295. bottom: 110/1490
  46296. }
  46297. },
  46298. backNsfw: {
  46299. height: math.unit(18, "feet"),
  46300. name: "Back (NSFW)",
  46301. image: {
  46302. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46303. extra: 1592/1170,
  46304. bottom: 128/1720
  46305. }
  46306. },
  46307. },
  46308. [
  46309. {
  46310. name: "Normal",
  46311. height: math.unit(18, "feet"),
  46312. default: true
  46313. },
  46314. ]
  46315. ))
  46316. characterMakers.push(() => makeCharacter(
  46317. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46318. {
  46319. spreadWings: {
  46320. height: math.unit(20, "feet"),
  46321. name: "Spread Wings",
  46322. image: {
  46323. source: "./media/characters/fledge/spread-wings.svg",
  46324. extra: 693/635,
  46325. bottom: 26/719
  46326. }
  46327. },
  46328. front: {
  46329. height: math.unit(20, "feet"),
  46330. name: "Front",
  46331. image: {
  46332. source: "./media/characters/fledge/front.svg",
  46333. extra: 684/637,
  46334. bottom: 18/702
  46335. }
  46336. },
  46337. frontAlt: {
  46338. height: math.unit(20, "feet"),
  46339. name: "Front (Alt)",
  46340. image: {
  46341. source: "./media/characters/fledge/front-alt.svg",
  46342. extra: 708/664,
  46343. bottom: 13/721
  46344. }
  46345. },
  46346. back: {
  46347. height: math.unit(20, "feet"),
  46348. name: "Back",
  46349. image: {
  46350. source: "./media/characters/fledge/back.svg",
  46351. extra: 718/634,
  46352. bottom: 22/740
  46353. }
  46354. },
  46355. head: {
  46356. height: math.unit(5.55, "feet"),
  46357. name: "Head",
  46358. image: {
  46359. source: "./media/characters/fledge/head.svg"
  46360. }
  46361. },
  46362. headAlt: {
  46363. height: math.unit(5.1, "feet"),
  46364. name: "Head (Alt)",
  46365. image: {
  46366. source: "./media/characters/fledge/head-alt.svg"
  46367. }
  46368. },
  46369. },
  46370. [
  46371. {
  46372. name: "Small",
  46373. height: math.unit(6 + 2/12, "feet")
  46374. },
  46375. {
  46376. name: "Big",
  46377. height: math.unit(20, "feet"),
  46378. default: true
  46379. },
  46380. {
  46381. name: "Giant",
  46382. height: math.unit(100, "feet")
  46383. },
  46384. {
  46385. name: "Macro",
  46386. height: math.unit(200, "feet")
  46387. },
  46388. ]
  46389. ))
  46390. characterMakers.push(() => makeCharacter(
  46391. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46392. {
  46393. front: {
  46394. height: math.unit(1, "meter"),
  46395. name: "Front",
  46396. image: {
  46397. source: "./media/characters/atlas-morenai/front.svg",
  46398. extra: 1275/1043,
  46399. bottom: 19/1294
  46400. }
  46401. },
  46402. back: {
  46403. height: math.unit(1, "meter"),
  46404. name: "Back",
  46405. image: {
  46406. source: "./media/characters/atlas-morenai/back.svg",
  46407. extra: 1141/1001,
  46408. bottom: 25/1166
  46409. }
  46410. },
  46411. },
  46412. [
  46413. {
  46414. name: "Normal",
  46415. height: math.unit(1, "meter"),
  46416. default: true
  46417. },
  46418. {
  46419. name: "Magic-Infused",
  46420. height: math.unit(5, "meters")
  46421. },
  46422. ]
  46423. ))
  46424. characterMakers.push(() => makeCharacter(
  46425. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46426. {
  46427. front: {
  46428. height: math.unit(5, "meters"),
  46429. name: "Front",
  46430. image: {
  46431. source: "./media/characters/cintia/front.svg",
  46432. extra: 1312/1228,
  46433. bottom: 38/1350
  46434. }
  46435. },
  46436. back: {
  46437. height: math.unit(5, "meters"),
  46438. name: "Back",
  46439. image: {
  46440. source: "./media/characters/cintia/back.svg",
  46441. extra: 1260/1166,
  46442. bottom: 98/1358
  46443. }
  46444. },
  46445. frontDick: {
  46446. height: math.unit(5, "meters"),
  46447. name: "Front (Dick)",
  46448. image: {
  46449. source: "./media/characters/cintia/front-dick.svg",
  46450. extra: 1312/1228,
  46451. bottom: 38/1350
  46452. }
  46453. },
  46454. backDick: {
  46455. height: math.unit(5, "meters"),
  46456. name: "Back (Dick)",
  46457. image: {
  46458. source: "./media/characters/cintia/back-dick.svg",
  46459. extra: 1260/1166,
  46460. bottom: 98/1358
  46461. }
  46462. },
  46463. bust: {
  46464. height: math.unit(1.97, "meters"),
  46465. name: "Bust",
  46466. image: {
  46467. source: "./media/characters/cintia/bust.svg",
  46468. extra: 617/565,
  46469. bottom: 0/617
  46470. }
  46471. },
  46472. },
  46473. [
  46474. {
  46475. name: "Normal",
  46476. height: math.unit(5, "meters"),
  46477. default: true
  46478. },
  46479. ]
  46480. ))
  46481. characterMakers.push(() => makeCharacter(
  46482. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46483. {
  46484. side: {
  46485. height: math.unit(100, "feet"),
  46486. name: "Side",
  46487. image: {
  46488. source: "./media/characters/denora/side.svg",
  46489. extra: 875/803,
  46490. bottom: 9/884
  46491. }
  46492. },
  46493. },
  46494. [
  46495. {
  46496. name: "Standard",
  46497. height: math.unit(100, "feet"),
  46498. default: true
  46499. },
  46500. {
  46501. name: "Grand",
  46502. height: math.unit(1000, "feet")
  46503. },
  46504. {
  46505. name: "Conquering",
  46506. height: math.unit(10000, "feet")
  46507. },
  46508. ]
  46509. ))
  46510. characterMakers.push(() => makeCharacter(
  46511. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46512. {
  46513. dressed: {
  46514. height: math.unit(8 + 5/12, "feet"),
  46515. weight: math.unit(700, "lb"),
  46516. name: "Dressed",
  46517. image: {
  46518. source: "./media/characters/kiva/dressed.svg",
  46519. extra: 1102/1055,
  46520. bottom: 60/1162
  46521. }
  46522. },
  46523. nude: {
  46524. height: math.unit(8 + 5/12, "feet"),
  46525. weight: math.unit(700, "lb"),
  46526. name: "Nude",
  46527. image: {
  46528. source: "./media/characters/kiva/nude.svg",
  46529. extra: 1102/1055,
  46530. bottom: 60/1162
  46531. }
  46532. },
  46533. },
  46534. [
  46535. {
  46536. name: "Base Height",
  46537. height: math.unit(8 + 5/12, "feet"),
  46538. default: true
  46539. },
  46540. {
  46541. name: "Macro",
  46542. height: math.unit(100, "feet")
  46543. },
  46544. {
  46545. name: "Max",
  46546. height: math.unit(3280, "feet")
  46547. },
  46548. ]
  46549. ))
  46550. characterMakers.push(() => makeCharacter(
  46551. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46552. {
  46553. front: {
  46554. height: math.unit(6 + 8/12, "feet"),
  46555. weight: math.unit(250, "lb"),
  46556. name: "Front",
  46557. image: {
  46558. source: "./media/characters/ztragon/front.svg",
  46559. extra: 1825/1684,
  46560. bottom: 98/1923
  46561. }
  46562. },
  46563. },
  46564. [
  46565. {
  46566. name: "Normal",
  46567. height: math.unit(6 + 8/12, "feet"),
  46568. default: true
  46569. },
  46570. {
  46571. name: "Macro",
  46572. height: math.unit(80, "feet")
  46573. },
  46574. ]
  46575. ))
  46576. characterMakers.push(() => makeCharacter(
  46577. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46578. {
  46579. front: {
  46580. height: math.unit(10.4, "feet"),
  46581. weight: math.unit(2, "tons"),
  46582. name: "Front",
  46583. image: {
  46584. source: "./media/characters/yesenia/front.svg",
  46585. extra: 1479/1474,
  46586. bottom: 233/1712
  46587. }
  46588. },
  46589. },
  46590. [
  46591. {
  46592. name: "Normal",
  46593. height: math.unit(10.4, "feet"),
  46594. default: true
  46595. },
  46596. ]
  46597. ))
  46598. characterMakers.push(() => makeCharacter(
  46599. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46600. {
  46601. normal: {
  46602. height: math.unit(6 + 1/12, "feet"),
  46603. weight: math.unit(180, "lb"),
  46604. name: "Normal",
  46605. image: {
  46606. source: "./media/characters/leanne-lycheborne/normal.svg",
  46607. extra: 1748/1660,
  46608. bottom: 98/1846
  46609. }
  46610. },
  46611. were: {
  46612. height: math.unit(12, "feet"),
  46613. weight: math.unit(1600, "lb"),
  46614. name: "Were",
  46615. image: {
  46616. source: "./media/characters/leanne-lycheborne/were.svg",
  46617. extra: 1485/1432,
  46618. bottom: 66/1551
  46619. }
  46620. },
  46621. },
  46622. [
  46623. {
  46624. name: "Normal",
  46625. height: math.unit(6 + 1/12, "feet"),
  46626. default: true
  46627. },
  46628. ]
  46629. ))
  46630. characterMakers.push(() => makeCharacter(
  46631. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46632. {
  46633. side: {
  46634. height: math.unit(13, "feet"),
  46635. name: "Side",
  46636. image: {
  46637. source: "./media/characters/kira-tyler/side.svg",
  46638. extra: 693/393,
  46639. bottom: 58/751
  46640. }
  46641. },
  46642. },
  46643. [
  46644. {
  46645. name: "Normal",
  46646. height: math.unit(13, "feet"),
  46647. default: true
  46648. },
  46649. ]
  46650. ))
  46651. characterMakers.push(() => makeCharacter(
  46652. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46653. {
  46654. front: {
  46655. height: math.unit(10.3, "feet"),
  46656. weight: math.unit(150, "lb"),
  46657. name: "Front",
  46658. image: {
  46659. source: "./media/characters/blaze/front.svg",
  46660. extra: 1378/1286,
  46661. bottom: 172/1550
  46662. }
  46663. },
  46664. },
  46665. [
  46666. {
  46667. name: "Normal",
  46668. height: math.unit(10.3, "feet"),
  46669. default: true
  46670. },
  46671. ]
  46672. ))
  46673. characterMakers.push(() => makeCharacter(
  46674. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46675. {
  46676. side: {
  46677. height: math.unit(2, "meters"),
  46678. weight: math.unit(400, "kg"),
  46679. name: "Side",
  46680. image: {
  46681. source: "./media/characters/anu/side.svg",
  46682. extra: 506/394,
  46683. bottom: 18/524
  46684. }
  46685. },
  46686. },
  46687. [
  46688. {
  46689. name: "Humanoid",
  46690. height: math.unit(2, "meters")
  46691. },
  46692. {
  46693. name: "Normal",
  46694. height: math.unit(5, "meters"),
  46695. default: true
  46696. },
  46697. ]
  46698. ))
  46699. characterMakers.push(() => makeCharacter(
  46700. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46701. {
  46702. front: {
  46703. height: math.unit(5 + 5/12, "feet"),
  46704. weight: math.unit(170, "lb"),
  46705. name: "Front",
  46706. image: {
  46707. source: "./media/characters/synx-the-lynx/front.svg",
  46708. extra: 1893/1745,
  46709. bottom: 17/1910
  46710. }
  46711. },
  46712. side: {
  46713. height: math.unit(5 + 5/12, "feet"),
  46714. weight: math.unit(170, "lb"),
  46715. name: "Side",
  46716. image: {
  46717. source: "./media/characters/synx-the-lynx/side.svg",
  46718. extra: 1884/1740,
  46719. bottom: 39/1923
  46720. }
  46721. },
  46722. back: {
  46723. height: math.unit(5 + 5/12, "feet"),
  46724. weight: math.unit(170, "lb"),
  46725. name: "Back",
  46726. image: {
  46727. source: "./media/characters/synx-the-lynx/back.svg",
  46728. extra: 1903/1755,
  46729. bottom: 14/1917
  46730. }
  46731. },
  46732. },
  46733. [
  46734. {
  46735. name: "Normal",
  46736. height: math.unit(5 + 5/12, "feet"),
  46737. default: true
  46738. },
  46739. ]
  46740. ))
  46741. characterMakers.push(() => makeCharacter(
  46742. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46743. {
  46744. back: {
  46745. height: math.unit(15, "feet"),
  46746. name: "Back",
  46747. image: {
  46748. source: "./media/characters/nadezda-fex/back.svg",
  46749. extra: 1695/1481,
  46750. bottom: 25/1720
  46751. }
  46752. },
  46753. },
  46754. [
  46755. {
  46756. name: "Normal",
  46757. height: math.unit(15, "feet"),
  46758. default: true
  46759. },
  46760. {
  46761. name: "Macro",
  46762. height: math.unit(2.5, "miles")
  46763. },
  46764. {
  46765. name: "Goddess",
  46766. height: math.unit(2, "multiverses")
  46767. },
  46768. ]
  46769. ))
  46770. characterMakers.push(() => makeCharacter(
  46771. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46772. {
  46773. front: {
  46774. height: math.unit(216, "cm"),
  46775. name: "Front",
  46776. image: {
  46777. source: "./media/characters/lev/front.svg",
  46778. extra: 1728/1670,
  46779. bottom: 82/1810
  46780. }
  46781. },
  46782. back: {
  46783. height: math.unit(216, "cm"),
  46784. name: "Back",
  46785. image: {
  46786. source: "./media/characters/lev/back.svg",
  46787. extra: 1738/1675,
  46788. bottom: 24/1762
  46789. }
  46790. },
  46791. dressed: {
  46792. height: math.unit(216, "cm"),
  46793. name: "Dressed",
  46794. image: {
  46795. source: "./media/characters/lev/dressed.svg",
  46796. extra: 1397/1351,
  46797. bottom: 73/1470
  46798. }
  46799. },
  46800. head: {
  46801. height: math.unit(0.51, "meter"),
  46802. name: "Head",
  46803. image: {
  46804. source: "./media/characters/lev/head.svg"
  46805. }
  46806. },
  46807. },
  46808. [
  46809. {
  46810. name: "Normal",
  46811. height: math.unit(216, "cm"),
  46812. default: true
  46813. },
  46814. {
  46815. name: "Relatively Macro",
  46816. height: math.unit(80, "meters")
  46817. },
  46818. {
  46819. name: "Megamacro",
  46820. height: math.unit(21600, "meters")
  46821. },
  46822. {
  46823. name: "Megamacro+",
  46824. height: math.unit(64800, "meters")
  46825. },
  46826. ]
  46827. ))
  46828. characterMakers.push(() => makeCharacter(
  46829. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46830. {
  46831. front: {
  46832. height: math.unit(2, "meters"),
  46833. weight: math.unit(80, "kg"),
  46834. name: "Front",
  46835. image: {
  46836. source: "./media/characters/moka/front.svg",
  46837. extra: 1337/1255,
  46838. bottom: 58/1395
  46839. }
  46840. },
  46841. },
  46842. [
  46843. {
  46844. name: "Micro",
  46845. height: math.unit(15, "cm")
  46846. },
  46847. {
  46848. name: "Normal",
  46849. height: math.unit(2, "meters"),
  46850. default: true
  46851. },
  46852. {
  46853. name: "Macro",
  46854. height: math.unit(20, "meters"),
  46855. },
  46856. ]
  46857. ))
  46858. characterMakers.push(() => makeCharacter(
  46859. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46860. {
  46861. front: {
  46862. height: math.unit(9, "feet"),
  46863. weight: math.unit(240, "lb"),
  46864. name: "Front",
  46865. image: {
  46866. source: "./media/characters/kuzco/front.svg",
  46867. extra: 1593/1487,
  46868. bottom: 32/1625
  46869. }
  46870. },
  46871. side: {
  46872. height: math.unit(9, "feet"),
  46873. weight: math.unit(240, "lb"),
  46874. name: "Side",
  46875. image: {
  46876. source: "./media/characters/kuzco/side.svg",
  46877. extra: 1575/1485,
  46878. bottom: 30/1605
  46879. }
  46880. },
  46881. back: {
  46882. height: math.unit(9, "feet"),
  46883. weight: math.unit(240, "lb"),
  46884. name: "Back",
  46885. image: {
  46886. source: "./media/characters/kuzco/back.svg",
  46887. extra: 1603/1514,
  46888. bottom: 14/1617
  46889. }
  46890. },
  46891. },
  46892. [
  46893. {
  46894. name: "Normal",
  46895. height: math.unit(9, "feet"),
  46896. default: true
  46897. },
  46898. ]
  46899. ))
  46900. characterMakers.push(() => makeCharacter(
  46901. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46902. {
  46903. side: {
  46904. height: math.unit(2, "meters"),
  46905. weight: math.unit(300, "kg"),
  46906. name: "Side",
  46907. image: {
  46908. source: "./media/characters/ceruleus/side.svg",
  46909. extra: 1068/974,
  46910. bottom: 126/1194
  46911. }
  46912. },
  46913. maw: {
  46914. height: math.unit(0.8125, "meter"),
  46915. name: "Maw",
  46916. image: {
  46917. source: "./media/characters/ceruleus/maw.svg"
  46918. }
  46919. },
  46920. },
  46921. [
  46922. {
  46923. name: "Normal",
  46924. height: math.unit(16, "meters"),
  46925. default: true
  46926. },
  46927. ]
  46928. ))
  46929. characterMakers.push(() => makeCharacter(
  46930. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46931. {
  46932. front: {
  46933. height: math.unit(9, "feet"),
  46934. weight: math.unit(500, "kg"),
  46935. name: "Front",
  46936. image: {
  46937. source: "./media/characters/acouya/front.svg",
  46938. extra: 1660/1473,
  46939. bottom: 28/1688
  46940. }
  46941. },
  46942. },
  46943. [
  46944. {
  46945. name: "Normal",
  46946. height: math.unit(9, "feet"),
  46947. default: true
  46948. },
  46949. ]
  46950. ))
  46951. characterMakers.push(() => makeCharacter(
  46952. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46953. {
  46954. front: {
  46955. height: math.unit(5 + 6/12, "feet"),
  46956. weight: math.unit(195, "lb"),
  46957. name: "Front",
  46958. image: {
  46959. source: "./media/characters/vant/front.svg",
  46960. extra: 1396/1320,
  46961. bottom: 20/1416
  46962. }
  46963. },
  46964. back: {
  46965. height: math.unit(5 + 6/12, "feet"),
  46966. weight: math.unit(195, "lb"),
  46967. name: "Back",
  46968. image: {
  46969. source: "./media/characters/vant/back.svg",
  46970. extra: 1396/1320,
  46971. bottom: 20/1416
  46972. }
  46973. },
  46974. maw: {
  46975. height: math.unit(0.75, "feet"),
  46976. name: "Maw",
  46977. image: {
  46978. source: "./media/characters/vant/maw.svg"
  46979. }
  46980. },
  46981. paw: {
  46982. height: math.unit(1.07, "feet"),
  46983. name: "Paw",
  46984. image: {
  46985. source: "./media/characters/vant/paw.svg"
  46986. }
  46987. },
  46988. },
  46989. [
  46990. {
  46991. name: "Micro",
  46992. height: math.unit(0.25, "inches")
  46993. },
  46994. {
  46995. name: "Normal",
  46996. height: math.unit(5 + 6/12, "feet"),
  46997. default: true
  46998. },
  46999. {
  47000. name: "Macro",
  47001. height: math.unit(75, "feet")
  47002. },
  47003. ]
  47004. ))
  47005. characterMakers.push(() => makeCharacter(
  47006. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47007. {
  47008. front: {
  47009. height: math.unit(30, "meters"),
  47010. weight: math.unit(363, "tons"),
  47011. name: "Front",
  47012. image: {
  47013. source: "./media/characters/ahra/front.svg",
  47014. extra: 1914/1814,
  47015. bottom: 46/1960
  47016. }
  47017. },
  47018. },
  47019. [
  47020. {
  47021. name: "Macro",
  47022. height: math.unit(30, "meters"),
  47023. default: true
  47024. },
  47025. ]
  47026. ))
  47027. characterMakers.push(() => makeCharacter(
  47028. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47029. {
  47030. undressed: {
  47031. height: math.unit(2, "m"),
  47032. weight: math.unit(250, "kg"),
  47033. name: "Undressed",
  47034. image: {
  47035. source: "./media/characters/coriander/undressed.svg",
  47036. extra: 1757/1606,
  47037. bottom: 107/1864
  47038. }
  47039. },
  47040. dressed: {
  47041. height: math.unit(2, "m"),
  47042. weight: math.unit(250, "kg"),
  47043. name: "Dressed",
  47044. image: {
  47045. source: "./media/characters/coriander/dressed.svg",
  47046. extra: 1757/1606,
  47047. bottom: 107/1864
  47048. }
  47049. },
  47050. },
  47051. [
  47052. {
  47053. name: "Normal",
  47054. height: math.unit(4, "meters"),
  47055. default: true
  47056. },
  47057. {
  47058. name: "XL",
  47059. height: math.unit(6, "meters")
  47060. },
  47061. {
  47062. name: "XXL",
  47063. height: math.unit(8, "meters")
  47064. },
  47065. ]
  47066. ))
  47067. characterMakers.push(() => makeCharacter(
  47068. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47069. {
  47070. front: {
  47071. height: math.unit(6, "feet"),
  47072. name: "Front",
  47073. image: {
  47074. source: "./media/characters/syrinx/front.svg",
  47075. extra: 1557/1259,
  47076. bottom: 171/1728
  47077. }
  47078. },
  47079. },
  47080. [
  47081. {
  47082. name: "Normal",
  47083. height: math.unit(6 + 3/12, "feet"),
  47084. default: true
  47085. },
  47086. ]
  47087. ))
  47088. characterMakers.push(() => makeCharacter(
  47089. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47090. {
  47091. front: {
  47092. height: math.unit(11 + 6/12, "feet"),
  47093. weight: math.unit(1.5, "tons"),
  47094. name: "Front",
  47095. image: {
  47096. source: "./media/characters/bor/front.svg",
  47097. extra: 1189/1109,
  47098. bottom: 170/1359
  47099. }
  47100. },
  47101. },
  47102. [
  47103. {
  47104. name: "Normal",
  47105. height: math.unit(11 + 6/12, "feet"),
  47106. default: true
  47107. },
  47108. {
  47109. name: "Macro",
  47110. height: math.unit(32 + 9/12, "feet")
  47111. },
  47112. ]
  47113. ))
  47114. characterMakers.push(() => makeCharacter(
  47115. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47116. {
  47117. anthro: {
  47118. height: math.unit(9, "feet"),
  47119. weight: math.unit(2076, "lb"),
  47120. name: "Anthro",
  47121. image: {
  47122. source: "./media/characters/abacus/anthro.svg",
  47123. extra: 1540/1494,
  47124. bottom: 233/1773
  47125. }
  47126. },
  47127. pigeon: {
  47128. height: math.unit(1, "feet"),
  47129. name: "Pigeon",
  47130. image: {
  47131. source: "./media/characters/abacus/pigeon.svg",
  47132. extra: 528/525,
  47133. bottom: 46/574
  47134. }
  47135. },
  47136. },
  47137. [
  47138. {
  47139. name: "Normal",
  47140. height: math.unit(9, "feet"),
  47141. default: true
  47142. },
  47143. ]
  47144. ))
  47145. characterMakers.push(() => makeCharacter(
  47146. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47147. {
  47148. side: {
  47149. height: math.unit(6, "feet"),
  47150. name: "Side",
  47151. image: {
  47152. source: "./media/characters/delkhan/side.svg",
  47153. extra: 1884/1786,
  47154. bottom: 308/2192
  47155. }
  47156. },
  47157. head: {
  47158. height: math.unit(3.38, "feet"),
  47159. name: "Head",
  47160. image: {
  47161. source: "./media/characters/delkhan/head.svg"
  47162. }
  47163. },
  47164. },
  47165. [
  47166. {
  47167. name: "Normal",
  47168. height: math.unit(72, "feet"),
  47169. default: true
  47170. },
  47171. {
  47172. name: "Giant",
  47173. height: math.unit(172, "feet")
  47174. },
  47175. ]
  47176. ))
  47177. characterMakers.push(() => makeCharacter(
  47178. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47179. {
  47180. standing: {
  47181. height: math.unit(6, "feet"),
  47182. name: "Standing",
  47183. image: {
  47184. source: "./media/characters/euchidat/standing.svg",
  47185. extra: 1612/1553,
  47186. bottom: 116/1728
  47187. }
  47188. },
  47189. leaning: {
  47190. height: math.unit(6, "feet"),
  47191. name: "Leaning",
  47192. image: {
  47193. source: "./media/characters/euchidat/leaning.svg",
  47194. extra: 1719/1674,
  47195. bottom: 27/1746
  47196. }
  47197. },
  47198. },
  47199. [
  47200. {
  47201. name: "Normal",
  47202. height: math.unit(175, "feet"),
  47203. default: true
  47204. },
  47205. {
  47206. name: "Megamacro",
  47207. height: math.unit(190, "miles")
  47208. },
  47209. {
  47210. name: "Gigamacro",
  47211. height: math.unit(190000, "miles")
  47212. },
  47213. ]
  47214. ))
  47215. characterMakers.push(() => makeCharacter(
  47216. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47217. {
  47218. front: {
  47219. height: math.unit(6, "feet"),
  47220. weight: math.unit(150, "lb"),
  47221. name: "Front",
  47222. image: {
  47223. source: "./media/characters/rebecca-stack/front.svg",
  47224. extra: 1256/1201,
  47225. bottom: 18/1274
  47226. }
  47227. },
  47228. },
  47229. [
  47230. {
  47231. name: "Normal",
  47232. height: math.unit(5 + 8/12, "feet"),
  47233. default: true
  47234. },
  47235. {
  47236. name: "Demolitionist",
  47237. height: math.unit(200, "feet")
  47238. },
  47239. {
  47240. name: "Out of Control",
  47241. height: math.unit(2, "miles")
  47242. },
  47243. {
  47244. name: "Giga",
  47245. height: math.unit(7200, "miles")
  47246. },
  47247. ]
  47248. ))
  47249. characterMakers.push(() => makeCharacter(
  47250. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47251. {
  47252. front: {
  47253. height: math.unit(6, "feet"),
  47254. weight: math.unit(150, "lb"),
  47255. name: "Front",
  47256. image: {
  47257. source: "./media/characters/jenny-cartwright/front.svg",
  47258. extra: 1384/1376,
  47259. bottom: 58/1442
  47260. }
  47261. },
  47262. },
  47263. [
  47264. {
  47265. name: "Normal",
  47266. height: math.unit(6 + 7/12, "feet"),
  47267. default: true
  47268. },
  47269. {
  47270. name: "Librarian",
  47271. height: math.unit(55, "feet")
  47272. },
  47273. {
  47274. name: "Sightseer",
  47275. height: math.unit(50, "miles")
  47276. },
  47277. {
  47278. name: "Giga",
  47279. height: math.unit(30000, "miles")
  47280. },
  47281. ]
  47282. ))
  47283. characterMakers.push(() => makeCharacter(
  47284. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47285. {
  47286. nude: {
  47287. height: math.unit(8, "feet"),
  47288. weight: math.unit(225, "lb"),
  47289. name: "Nude",
  47290. image: {
  47291. source: "./media/characters/marvy/nude.svg",
  47292. extra: 1900/1683,
  47293. bottom: 89/1989
  47294. }
  47295. },
  47296. dressed: {
  47297. height: math.unit(8, "feet"),
  47298. weight: math.unit(225, "lb"),
  47299. name: "Dressed",
  47300. image: {
  47301. source: "./media/characters/marvy/dressed.svg",
  47302. extra: 1900/1683,
  47303. bottom: 89/1989
  47304. }
  47305. },
  47306. head: {
  47307. height: math.unit(2.85, "feet"),
  47308. name: "Head",
  47309. image: {
  47310. source: "./media/characters/marvy/head.svg"
  47311. }
  47312. },
  47313. },
  47314. [
  47315. {
  47316. name: "Normal",
  47317. height: math.unit(8, "feet"),
  47318. default: true
  47319. },
  47320. ]
  47321. ))
  47322. characterMakers.push(() => makeCharacter(
  47323. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47324. {
  47325. front: {
  47326. height: math.unit(8, "feet"),
  47327. weight: math.unit(250, "lb"),
  47328. name: "Front",
  47329. image: {
  47330. source: "./media/characters/leah/front.svg",
  47331. extra: 1257/1149,
  47332. bottom: 109/1366
  47333. }
  47334. },
  47335. },
  47336. [
  47337. {
  47338. name: "Normal",
  47339. height: math.unit(8, "feet"),
  47340. default: true
  47341. },
  47342. {
  47343. name: "Minimacro",
  47344. height: math.unit(40, "feet")
  47345. },
  47346. {
  47347. name: "Macro",
  47348. height: math.unit(124, "feet")
  47349. },
  47350. {
  47351. name: "Megamacro",
  47352. height: math.unit(850, "feet")
  47353. },
  47354. ]
  47355. ))
  47356. characterMakers.push(() => makeCharacter(
  47357. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47358. {
  47359. side: {
  47360. height: math.unit(13 + 6/12, "feet"),
  47361. weight: math.unit(3200, "lb"),
  47362. name: "Side",
  47363. image: {
  47364. source: "./media/characters/alvir/side.svg",
  47365. extra: 896/589,
  47366. bottom: 26/922
  47367. }
  47368. },
  47369. },
  47370. [
  47371. {
  47372. name: "Normal",
  47373. height: math.unit(13 + 6/12, "feet"),
  47374. default: true
  47375. },
  47376. ]
  47377. ))
  47378. characterMakers.push(() => makeCharacter(
  47379. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47380. {
  47381. front: {
  47382. height: math.unit(5 + 4/12, "feet"),
  47383. weight: math.unit(236, "lb"),
  47384. name: "Front",
  47385. image: {
  47386. source: "./media/characters/zaina-khalil/front.svg",
  47387. extra: 1533/1485,
  47388. bottom: 94/1627
  47389. }
  47390. },
  47391. side: {
  47392. height: math.unit(5 + 4/12, "feet"),
  47393. weight: math.unit(236, "lb"),
  47394. name: "Side",
  47395. image: {
  47396. source: "./media/characters/zaina-khalil/side.svg",
  47397. extra: 1537/1498,
  47398. bottom: 66/1603
  47399. }
  47400. },
  47401. back: {
  47402. height: math.unit(5 + 4/12, "feet"),
  47403. weight: math.unit(236, "lb"),
  47404. name: "Back",
  47405. image: {
  47406. source: "./media/characters/zaina-khalil/back.svg",
  47407. extra: 1546/1494,
  47408. bottom: 89/1635
  47409. }
  47410. },
  47411. },
  47412. [
  47413. {
  47414. name: "Normal",
  47415. height: math.unit(5 + 4/12, "feet"),
  47416. default: true
  47417. },
  47418. ]
  47419. ))
  47420. characterMakers.push(() => makeCharacter(
  47421. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47422. {
  47423. side: {
  47424. height: math.unit(12, "feet"),
  47425. weight: math.unit(4000, "lb"),
  47426. name: "Side",
  47427. image: {
  47428. source: "./media/characters/terry/side.svg",
  47429. extra: 1518/1439,
  47430. bottom: 149/1667
  47431. }
  47432. },
  47433. },
  47434. [
  47435. {
  47436. name: "Normal",
  47437. height: math.unit(12, "feet"),
  47438. default: true
  47439. },
  47440. ]
  47441. ))
  47442. characterMakers.push(() => makeCharacter(
  47443. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47444. {
  47445. front: {
  47446. height: math.unit(12, "feet"),
  47447. weight: math.unit(1500, "lb"),
  47448. name: "Front",
  47449. image: {
  47450. source: "./media/characters/kahea/front.svg",
  47451. extra: 1722/1617,
  47452. bottom: 179/1901
  47453. }
  47454. },
  47455. },
  47456. [
  47457. {
  47458. name: "Normal",
  47459. height: math.unit(12, "feet"),
  47460. default: true
  47461. },
  47462. ]
  47463. ))
  47464. characterMakers.push(() => makeCharacter(
  47465. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47466. {
  47467. demonFront: {
  47468. height: math.unit(36, "feet"),
  47469. name: "Front",
  47470. image: {
  47471. source: "./media/characters/alex-xuria/demon-front.svg",
  47472. extra: 1705/1673,
  47473. bottom: 198/1903
  47474. },
  47475. form: "demon",
  47476. default: true
  47477. },
  47478. demonBack: {
  47479. height: math.unit(36, "feet"),
  47480. name: "Back",
  47481. image: {
  47482. source: "./media/characters/alex-xuria/demon-back.svg",
  47483. extra: 1725/1693,
  47484. bottom: 70/1795
  47485. },
  47486. form: "demon"
  47487. },
  47488. demonHead: {
  47489. height: math.unit(2.14, "meters"),
  47490. name: "Head",
  47491. image: {
  47492. source: "./media/characters/alex-xuria/demon-head.svg"
  47493. },
  47494. form: "demon"
  47495. },
  47496. demonHand: {
  47497. height: math.unit(1.61, "meters"),
  47498. name: "Hand",
  47499. image: {
  47500. source: "./media/characters/alex-xuria/demon-hand.svg"
  47501. },
  47502. form: "demon"
  47503. },
  47504. demonPaw: {
  47505. height: math.unit(1.35, "meters"),
  47506. name: "Paw",
  47507. image: {
  47508. source: "./media/characters/alex-xuria/demon-paw.svg"
  47509. },
  47510. form: "demon"
  47511. },
  47512. demonFoot: {
  47513. height: math.unit(2.2, "meters"),
  47514. name: "Foot",
  47515. image: {
  47516. source: "./media/characters/alex-xuria/demon-foot.svg"
  47517. },
  47518. form: "demon"
  47519. },
  47520. demonCock: {
  47521. height: math.unit(1.74, "meters"),
  47522. name: "Cock",
  47523. image: {
  47524. source: "./media/characters/alex-xuria/demon-cock.svg"
  47525. },
  47526. form: "demon"
  47527. },
  47528. demonTailClosed: {
  47529. height: math.unit(1.47, "meters"),
  47530. name: "Tail (Closed)",
  47531. image: {
  47532. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47533. },
  47534. form: "demon"
  47535. },
  47536. demonTailOpen: {
  47537. height: math.unit(2.85, "meters"),
  47538. name: "Tail (Open)",
  47539. image: {
  47540. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47541. },
  47542. form: "demon"
  47543. },
  47544. incubusFront: {
  47545. height: math.unit(12, "feet"),
  47546. name: "Front",
  47547. image: {
  47548. source: "./media/characters/alex-xuria/incubus-front.svg",
  47549. extra: 1754/1677,
  47550. bottom: 125/1879
  47551. },
  47552. form: "incubus",
  47553. default: true
  47554. },
  47555. incubusBack: {
  47556. height: math.unit(12, "feet"),
  47557. name: "Back",
  47558. image: {
  47559. source: "./media/characters/alex-xuria/incubus-back.svg",
  47560. extra: 1702/1647,
  47561. bottom: 30/1732
  47562. },
  47563. form: "incubus"
  47564. },
  47565. incubusHead: {
  47566. height: math.unit(3.45, "feet"),
  47567. name: "Head",
  47568. image: {
  47569. source: "./media/characters/alex-xuria/incubus-head.svg"
  47570. },
  47571. form: "incubus"
  47572. },
  47573. rabbitFront: {
  47574. height: math.unit(6, "feet"),
  47575. name: "Front",
  47576. image: {
  47577. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47578. extra: 1369/1349,
  47579. bottom: 45/1414
  47580. },
  47581. form: "rabbit",
  47582. default: true
  47583. },
  47584. rabbitSide: {
  47585. height: math.unit(6, "feet"),
  47586. name: "Side",
  47587. image: {
  47588. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47589. extra: 1370/1356,
  47590. bottom: 37/1407
  47591. },
  47592. form: "rabbit"
  47593. },
  47594. rabbitBack: {
  47595. height: math.unit(6, "feet"),
  47596. name: "Back",
  47597. image: {
  47598. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47599. extra: 1375/1358,
  47600. bottom: 43/1418
  47601. },
  47602. form: "rabbit"
  47603. },
  47604. },
  47605. [
  47606. {
  47607. name: "Normal",
  47608. height: math.unit(6, "feet"),
  47609. default: true,
  47610. form: "rabbit"
  47611. },
  47612. {
  47613. name: "Incubus",
  47614. height: math.unit(12, "feet"),
  47615. default: true,
  47616. form: "incubus"
  47617. },
  47618. {
  47619. name: "Demon",
  47620. height: math.unit(36, "feet"),
  47621. default: true,
  47622. form: "demon"
  47623. }
  47624. ],
  47625. {
  47626. "demon": {
  47627. name: "Demon",
  47628. default: true
  47629. },
  47630. "incubus": {
  47631. name: "Incubus",
  47632. },
  47633. "rabbit": {
  47634. name: "Rabbit"
  47635. }
  47636. }
  47637. ))
  47638. characterMakers.push(() => makeCharacter(
  47639. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47640. {
  47641. front: {
  47642. height: math.unit(7 + 5/12, "feet"),
  47643. weight: math.unit(510, "lb"),
  47644. name: "Front",
  47645. image: {
  47646. source: "./media/characters/syrup/front.svg",
  47647. extra: 932/916,
  47648. bottom: 26/958
  47649. }
  47650. },
  47651. },
  47652. [
  47653. {
  47654. name: "Normal",
  47655. height: math.unit(7 + 5/12, "feet"),
  47656. default: true
  47657. },
  47658. {
  47659. name: "Big",
  47660. height: math.unit(50, "feet")
  47661. },
  47662. {
  47663. name: "Macro",
  47664. height: math.unit(300, "feet")
  47665. },
  47666. {
  47667. name: "Megamacro",
  47668. height: math.unit(1, "mile")
  47669. },
  47670. ]
  47671. ))
  47672. characterMakers.push(() => makeCharacter(
  47673. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47674. {
  47675. front: {
  47676. height: math.unit(6 + 9/12, "feet"),
  47677. name: "Front",
  47678. image: {
  47679. source: "./media/characters/zeimne/front.svg",
  47680. extra: 1969/1806,
  47681. bottom: 53/2022
  47682. }
  47683. },
  47684. },
  47685. [
  47686. {
  47687. name: "Normal",
  47688. height: math.unit(6 + 9/12, "feet"),
  47689. default: true
  47690. },
  47691. {
  47692. name: "Giant",
  47693. height: math.unit(550, "feet")
  47694. },
  47695. {
  47696. name: "Mega",
  47697. height: math.unit(3, "miles")
  47698. },
  47699. {
  47700. name: "Giga",
  47701. height: math.unit(250, "miles")
  47702. },
  47703. {
  47704. name: "Tera",
  47705. height: math.unit(1, "AU")
  47706. },
  47707. ]
  47708. ))
  47709. characterMakers.push(() => makeCharacter(
  47710. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47711. {
  47712. front: {
  47713. height: math.unit(5 + 2/12, "feet"),
  47714. name: "Front",
  47715. image: {
  47716. source: "./media/characters/grar/front.svg",
  47717. extra: 1331/1119,
  47718. bottom: 60/1391
  47719. }
  47720. },
  47721. back: {
  47722. height: math.unit(5 + 2/12, "feet"),
  47723. name: "Back",
  47724. image: {
  47725. source: "./media/characters/grar/back.svg",
  47726. extra: 1385/1169,
  47727. bottom: 23/1408
  47728. }
  47729. },
  47730. },
  47731. [
  47732. {
  47733. name: "Normal",
  47734. height: math.unit(5 + 2/12, "feet"),
  47735. default: true
  47736. },
  47737. ]
  47738. ))
  47739. characterMakers.push(() => makeCharacter(
  47740. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47741. {
  47742. front: {
  47743. height: math.unit(13 + 7/12, "feet"),
  47744. weight: math.unit(2200, "lb"),
  47745. name: "Front",
  47746. image: {
  47747. source: "./media/characters/endraya/front.svg",
  47748. extra: 1289/1215,
  47749. bottom: 50/1339
  47750. }
  47751. },
  47752. nude: {
  47753. height: math.unit(13 + 7/12, "feet"),
  47754. weight: math.unit(2200, "lb"),
  47755. name: "Nude",
  47756. image: {
  47757. source: "./media/characters/endraya/nude.svg",
  47758. extra: 1247/1171,
  47759. bottom: 40/1287
  47760. }
  47761. },
  47762. head: {
  47763. height: math.unit(2.6, "feet"),
  47764. name: "Head",
  47765. image: {
  47766. source: "./media/characters/endraya/head.svg"
  47767. }
  47768. },
  47769. slit: {
  47770. height: math.unit(3.4, "feet"),
  47771. name: "Slit",
  47772. image: {
  47773. source: "./media/characters/endraya/slit.svg"
  47774. }
  47775. },
  47776. },
  47777. [
  47778. {
  47779. name: "Normal",
  47780. height: math.unit(13 + 7/12, "feet"),
  47781. default: true
  47782. },
  47783. {
  47784. name: "Macro",
  47785. height: math.unit(200, "feet")
  47786. },
  47787. ]
  47788. ))
  47789. characterMakers.push(() => makeCharacter(
  47790. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47791. {
  47792. front: {
  47793. height: math.unit(1.81, "meters"),
  47794. weight: math.unit(69, "kg"),
  47795. name: "Front",
  47796. image: {
  47797. source: "./media/characters/rodryana/front.svg",
  47798. extra: 2002/1921,
  47799. bottom: 53/2055
  47800. }
  47801. },
  47802. back: {
  47803. height: math.unit(1.81, "meters"),
  47804. weight: math.unit(69, "kg"),
  47805. name: "Back",
  47806. image: {
  47807. source: "./media/characters/rodryana/back.svg",
  47808. extra: 1993/1926,
  47809. bottom: 48/2041
  47810. }
  47811. },
  47812. maw: {
  47813. height: math.unit(0.19769417475, "meters"),
  47814. name: "Maw",
  47815. image: {
  47816. source: "./media/characters/rodryana/maw.svg"
  47817. }
  47818. },
  47819. slit: {
  47820. height: math.unit(0.31631067961, "meters"),
  47821. name: "Slit",
  47822. image: {
  47823. source: "./media/characters/rodryana/slit.svg"
  47824. }
  47825. },
  47826. },
  47827. [
  47828. {
  47829. name: "Normal",
  47830. height: math.unit(1.81, "meters")
  47831. },
  47832. {
  47833. name: "Mini Macro",
  47834. height: math.unit(181, "meters")
  47835. },
  47836. {
  47837. name: "Macro",
  47838. height: math.unit(452, "meters"),
  47839. default: true
  47840. },
  47841. {
  47842. name: "Mega Macro",
  47843. height: math.unit(1.375, "km")
  47844. },
  47845. {
  47846. name: "Giga Macro",
  47847. height: math.unit(13.575, "km")
  47848. },
  47849. ]
  47850. ))
  47851. characterMakers.push(() => makeCharacter(
  47852. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47853. {
  47854. front: {
  47855. height: math.unit(6, "feet"),
  47856. weight: math.unit(1000, "lb"),
  47857. name: "Front",
  47858. image: {
  47859. source: "./media/characters/asaya/front.svg",
  47860. extra: 1460/1200,
  47861. bottom: 71/1531
  47862. }
  47863. },
  47864. },
  47865. [
  47866. {
  47867. name: "Normal",
  47868. height: math.unit(8, "km"),
  47869. default: true
  47870. },
  47871. ]
  47872. ))
  47873. characterMakers.push(() => makeCharacter(
  47874. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47875. {
  47876. front: {
  47877. height: math.unit(3.5, "meters"),
  47878. name: "Front",
  47879. image: {
  47880. source: "./media/characters/sarzu-and-israz/front.svg",
  47881. extra: 1570/1558,
  47882. bottom: 150/1720
  47883. },
  47884. },
  47885. back: {
  47886. height: math.unit(3.5, "meters"),
  47887. name: "Back",
  47888. image: {
  47889. source: "./media/characters/sarzu-and-israz/back.svg",
  47890. extra: 1523/1509,
  47891. bottom: 132/1655
  47892. },
  47893. },
  47894. frontFemale: {
  47895. height: math.unit(3.5, "meters"),
  47896. name: "Front (Female)",
  47897. image: {
  47898. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47899. extra: 1570/1558,
  47900. bottom: 150/1720
  47901. },
  47902. },
  47903. frontHerm: {
  47904. height: math.unit(3.5, "meters"),
  47905. name: "Front (Herm)",
  47906. image: {
  47907. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47908. extra: 1570/1558,
  47909. bottom: 150/1720
  47910. },
  47911. },
  47912. },
  47913. [
  47914. {
  47915. name: "Normal",
  47916. height: math.unit(3.5, "meters"),
  47917. default: true,
  47918. },
  47919. {
  47920. name: "Macro",
  47921. height: math.unit(65.5, "meters"),
  47922. },
  47923. ],
  47924. ))
  47925. characterMakers.push(() => makeCharacter(
  47926. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47927. {
  47928. front: {
  47929. height: math.unit(6, "feet"),
  47930. weight: math.unit(250, "lb"),
  47931. name: "Front",
  47932. image: {
  47933. source: "./media/characters/zenimma/front.svg",
  47934. extra: 1346/1320,
  47935. bottom: 58/1404
  47936. }
  47937. },
  47938. back: {
  47939. height: math.unit(6, "feet"),
  47940. weight: math.unit(250, "lb"),
  47941. name: "Back",
  47942. image: {
  47943. source: "./media/characters/zenimma/back.svg",
  47944. extra: 1324/1308,
  47945. bottom: 44/1368
  47946. }
  47947. },
  47948. dick: {
  47949. height: math.unit(1.44, "feet"),
  47950. name: "Dick",
  47951. image: {
  47952. source: "./media/characters/zenimma/dick.svg"
  47953. }
  47954. },
  47955. },
  47956. [
  47957. {
  47958. name: "Canon Height",
  47959. height: math.unit(66, "miles"),
  47960. default: true
  47961. },
  47962. ]
  47963. ))
  47964. characterMakers.push(() => makeCharacter(
  47965. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47966. {
  47967. nude: {
  47968. height: math.unit(6, "feet"),
  47969. weight: math.unit(150, "lb"),
  47970. name: "Nude",
  47971. image: {
  47972. source: "./media/characters/shavon/nude.svg",
  47973. extra: 1242/1096,
  47974. bottom: 98/1340
  47975. }
  47976. },
  47977. dressed: {
  47978. height: math.unit(6, "feet"),
  47979. weight: math.unit(150, "lb"),
  47980. name: "Dressed",
  47981. image: {
  47982. source: "./media/characters/shavon/dressed.svg",
  47983. extra: 1242/1096,
  47984. bottom: 98/1340
  47985. }
  47986. },
  47987. },
  47988. [
  47989. {
  47990. name: "Macro",
  47991. height: math.unit(255, "feet"),
  47992. default: true
  47993. },
  47994. ]
  47995. ))
  47996. characterMakers.push(() => makeCharacter(
  47997. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47998. {
  47999. front: {
  48000. height: math.unit(6, "feet"),
  48001. name: "Front",
  48002. image: {
  48003. source: "./media/characters/steph/front.svg",
  48004. extra: 1430/1330,
  48005. bottom: 54/1484
  48006. }
  48007. },
  48008. },
  48009. [
  48010. {
  48011. name: "Normal",
  48012. height: math.unit(6, "feet"),
  48013. default: true
  48014. },
  48015. ]
  48016. ))
  48017. characterMakers.push(() => makeCharacter(
  48018. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48019. {
  48020. front: {
  48021. height: math.unit(9, "feet"),
  48022. weight: math.unit(400, "lb"),
  48023. name: "Front",
  48024. image: {
  48025. source: "./media/characters/kil'aman/front.svg",
  48026. extra: 1210/1159,
  48027. bottom: 109/1319
  48028. }
  48029. },
  48030. head: {
  48031. height: math.unit(2.14, "feet"),
  48032. name: "Head",
  48033. image: {
  48034. source: "./media/characters/kil'aman/head.svg"
  48035. }
  48036. },
  48037. maw: {
  48038. height: math.unit(1.21, "feet"),
  48039. name: "Maw",
  48040. image: {
  48041. source: "./media/characters/kil'aman/maw.svg"
  48042. }
  48043. },
  48044. foot: {
  48045. height: math.unit(1.7, "feet"),
  48046. name: "Foot",
  48047. image: {
  48048. source: "./media/characters/kil'aman/foot.svg"
  48049. }
  48050. },
  48051. dick: {
  48052. height: math.unit(2.1, "feet"),
  48053. name: "Dick",
  48054. image: {
  48055. source: "./media/characters/kil'aman/dick.svg"
  48056. }
  48057. },
  48058. },
  48059. [
  48060. {
  48061. name: "Normal",
  48062. height: math.unit(9, "feet")
  48063. },
  48064. {
  48065. name: "Canon Height",
  48066. height: math.unit(10, "miles"),
  48067. default: true
  48068. },
  48069. {
  48070. name: "Maximum",
  48071. height: math.unit(6e9, "miles")
  48072. },
  48073. ]
  48074. ))
  48075. characterMakers.push(() => makeCharacter(
  48076. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48077. {
  48078. front: {
  48079. height: math.unit(90, "feet"),
  48080. weight: math.unit(675000, "lb"),
  48081. name: "Front",
  48082. image: {
  48083. source: "./media/characters/qadan/front.svg",
  48084. extra: 1012/1004,
  48085. bottom: 78/1090
  48086. }
  48087. },
  48088. back: {
  48089. height: math.unit(90, "feet"),
  48090. weight: math.unit(675000, "lb"),
  48091. name: "Back",
  48092. image: {
  48093. source: "./media/characters/qadan/back.svg",
  48094. extra: 1042/1031,
  48095. bottom: 55/1097
  48096. }
  48097. },
  48098. armored: {
  48099. height: math.unit(90, "feet"),
  48100. weight: math.unit(675000, "lb"),
  48101. name: "Armored",
  48102. image: {
  48103. source: "./media/characters/qadan/armored.svg",
  48104. extra: 1047/1037,
  48105. bottom: 48/1095
  48106. }
  48107. },
  48108. },
  48109. [
  48110. {
  48111. name: "Normal",
  48112. height: math.unit(90, "feet"),
  48113. default: true
  48114. },
  48115. ]
  48116. ))
  48117. characterMakers.push(() => makeCharacter(
  48118. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48119. {
  48120. front: {
  48121. height: math.unit(6, "feet"),
  48122. weight: math.unit(225, "lb"),
  48123. name: "Front",
  48124. image: {
  48125. source: "./media/characters/brooke/front.svg",
  48126. extra: 1050/1010,
  48127. bottom: 66/1116
  48128. }
  48129. },
  48130. back: {
  48131. height: math.unit(6, "feet"),
  48132. weight: math.unit(225, "lb"),
  48133. name: "Back",
  48134. image: {
  48135. source: "./media/characters/brooke/back.svg",
  48136. extra: 1053/1013,
  48137. bottom: 41/1094
  48138. }
  48139. },
  48140. dressed: {
  48141. height: math.unit(6, "feet"),
  48142. weight: math.unit(225, "lb"),
  48143. name: "Dressed",
  48144. image: {
  48145. source: "./media/characters/brooke/dressed.svg",
  48146. extra: 1050/1010,
  48147. bottom: 66/1116
  48148. }
  48149. },
  48150. },
  48151. [
  48152. {
  48153. name: "Canon Height",
  48154. height: math.unit(500, "miles"),
  48155. default: true
  48156. },
  48157. ]
  48158. ))
  48159. characterMakers.push(() => makeCharacter(
  48160. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48161. {
  48162. front: {
  48163. height: math.unit(6 + 2/12, "feet"),
  48164. weight: math.unit(210, "lb"),
  48165. name: "Front",
  48166. image: {
  48167. source: "./media/characters/wubs/front.svg",
  48168. extra: 1345/1325,
  48169. bottom: 70/1415
  48170. }
  48171. },
  48172. back: {
  48173. height: math.unit(6 + 2/12, "feet"),
  48174. weight: math.unit(210, "lb"),
  48175. name: "Back",
  48176. image: {
  48177. source: "./media/characters/wubs/back.svg",
  48178. extra: 1296/1275,
  48179. bottom: 58/1354
  48180. }
  48181. },
  48182. },
  48183. [
  48184. {
  48185. name: "Normal",
  48186. height: math.unit(6 + 2/12, "feet"),
  48187. default: true
  48188. },
  48189. {
  48190. name: "Macro",
  48191. height: math.unit(1000, "feet")
  48192. },
  48193. {
  48194. name: "Megamacro",
  48195. height: math.unit(1, "mile")
  48196. },
  48197. ]
  48198. ))
  48199. characterMakers.push(() => makeCharacter(
  48200. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48201. {
  48202. front: {
  48203. height: math.unit(4, "feet"),
  48204. weight: math.unit(120, "lb"),
  48205. name: "Front",
  48206. image: {
  48207. source: "./media/characters/blue/front.svg",
  48208. extra: 1636/1525,
  48209. bottom: 43/1679
  48210. }
  48211. },
  48212. back: {
  48213. height: math.unit(4, "feet"),
  48214. weight: math.unit(120, "lb"),
  48215. name: "Back",
  48216. image: {
  48217. source: "./media/characters/blue/back.svg",
  48218. extra: 1660/1560,
  48219. bottom: 57/1717
  48220. }
  48221. },
  48222. paws: {
  48223. height: math.unit(0.826, "feet"),
  48224. name: "Paws",
  48225. image: {
  48226. source: "./media/characters/blue/paws.svg"
  48227. }
  48228. },
  48229. },
  48230. [
  48231. {
  48232. name: "Micro",
  48233. height: math.unit(3, "inches")
  48234. },
  48235. {
  48236. name: "Normal",
  48237. height: math.unit(4, "feet"),
  48238. default: true
  48239. },
  48240. {
  48241. name: "Femenine Form",
  48242. height: math.unit(14, "feet")
  48243. },
  48244. {
  48245. name: "Werebat Form",
  48246. height: math.unit(18, "feet")
  48247. },
  48248. ]
  48249. ))
  48250. characterMakers.push(() => makeCharacter(
  48251. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48252. {
  48253. female: {
  48254. height: math.unit(7 + 4/12, "feet"),
  48255. weight: math.unit(243, "lb"),
  48256. name: "Female",
  48257. image: {
  48258. source: "./media/characters/kaya/female.svg",
  48259. extra: 975/898,
  48260. bottom: 34/1009
  48261. }
  48262. },
  48263. herm: {
  48264. height: math.unit(7 + 4/12, "feet"),
  48265. weight: math.unit(243, "lb"),
  48266. name: "Herm",
  48267. image: {
  48268. source: "./media/characters/kaya/herm.svg",
  48269. extra: 975/898,
  48270. bottom: 34/1009
  48271. }
  48272. },
  48273. },
  48274. [
  48275. {
  48276. name: "Normal",
  48277. height: math.unit(7 + 4/12, "feet"),
  48278. default: true
  48279. },
  48280. ]
  48281. ))
  48282. characterMakers.push(() => makeCharacter(
  48283. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48284. {
  48285. female: {
  48286. height: math.unit(9 + 4/12, "feet"),
  48287. weight: math.unit(398, "lb"),
  48288. name: "Female",
  48289. image: {
  48290. source: "./media/characters/kassandra/female.svg",
  48291. extra: 908/839,
  48292. bottom: 61/969
  48293. }
  48294. },
  48295. intersex: {
  48296. height: math.unit(9 + 4/12, "feet"),
  48297. weight: math.unit(398, "lb"),
  48298. name: "Intersex",
  48299. image: {
  48300. source: "./media/characters/kassandra/intersex.svg",
  48301. extra: 908/839,
  48302. bottom: 61/969
  48303. }
  48304. },
  48305. },
  48306. [
  48307. {
  48308. name: "Normal",
  48309. height: math.unit(9 + 4/12, "feet"),
  48310. default: true
  48311. },
  48312. ]
  48313. ))
  48314. characterMakers.push(() => makeCharacter(
  48315. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48316. {
  48317. front: {
  48318. height: math.unit(3, "meters"),
  48319. name: "Front",
  48320. image: {
  48321. source: "./media/characters/amy/front.svg",
  48322. extra: 1380/1343,
  48323. bottom: 70/1450
  48324. }
  48325. },
  48326. back: {
  48327. height: math.unit(3, "meters"),
  48328. name: "Back",
  48329. image: {
  48330. source: "./media/characters/amy/back.svg",
  48331. extra: 1380/1347,
  48332. bottom: 66/1446
  48333. }
  48334. },
  48335. },
  48336. [
  48337. {
  48338. name: "Normal",
  48339. height: math.unit(3, "meters"),
  48340. default: true
  48341. },
  48342. ]
  48343. ))
  48344. characterMakers.push(() => makeCharacter(
  48345. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48346. {
  48347. side: {
  48348. height: math.unit(47, "cm"),
  48349. weight: math.unit(10.8, "kg"),
  48350. name: "Side",
  48351. image: {
  48352. source: "./media/characters/alphaschakal/side.svg",
  48353. extra: 1058/568,
  48354. bottom: 62/1120
  48355. }
  48356. },
  48357. back: {
  48358. height: math.unit(78, "cm"),
  48359. weight: math.unit(10.8, "kg"),
  48360. name: "Back",
  48361. image: {
  48362. source: "./media/characters/alphaschakal/back.svg",
  48363. extra: 1102/942,
  48364. bottom: 185/1287
  48365. }
  48366. },
  48367. head: {
  48368. height: math.unit(28, "cm"),
  48369. name: "Head",
  48370. image: {
  48371. source: "./media/characters/alphaschakal/head.svg",
  48372. extra: 696/508,
  48373. bottom: 0/696
  48374. }
  48375. },
  48376. paw: {
  48377. height: math.unit(16, "cm"),
  48378. name: "Paw",
  48379. image: {
  48380. source: "./media/characters/alphaschakal/paw.svg"
  48381. }
  48382. },
  48383. },
  48384. [
  48385. {
  48386. name: "Normal",
  48387. height: math.unit(47, "cm"),
  48388. default: true
  48389. },
  48390. {
  48391. name: "Macro",
  48392. height: math.unit(340, "cm")
  48393. },
  48394. ]
  48395. ))
  48396. characterMakers.push(() => makeCharacter(
  48397. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48398. {
  48399. front: {
  48400. height: math.unit(36, "earths"),
  48401. name: "Front",
  48402. image: {
  48403. source: "./media/characters/ecobyss/front.svg",
  48404. extra: 1282/1215,
  48405. bottom: 11/1293
  48406. }
  48407. },
  48408. back: {
  48409. height: math.unit(36, "earths"),
  48410. name: "Back",
  48411. image: {
  48412. source: "./media/characters/ecobyss/back.svg",
  48413. extra: 1291/1222,
  48414. bottom: 8/1299
  48415. }
  48416. },
  48417. },
  48418. [
  48419. {
  48420. name: "Normal",
  48421. height: math.unit(36, "earths"),
  48422. default: true
  48423. },
  48424. ]
  48425. ))
  48426. characterMakers.push(() => makeCharacter(
  48427. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48428. {
  48429. front: {
  48430. height: math.unit(12, "feet"),
  48431. name: "Front",
  48432. image: {
  48433. source: "./media/characters/vasuk/front.svg",
  48434. extra: 1326/1207,
  48435. bottom: 64/1390
  48436. }
  48437. },
  48438. },
  48439. [
  48440. {
  48441. name: "Normal",
  48442. height: math.unit(12, "feet"),
  48443. default: true
  48444. },
  48445. ]
  48446. ))
  48447. characterMakers.push(() => makeCharacter(
  48448. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48449. {
  48450. side: {
  48451. height: math.unit(100, "feet"),
  48452. name: "Side",
  48453. image: {
  48454. source: "./media/characters/linneaus/side.svg",
  48455. extra: 987/807,
  48456. bottom: 47/1034
  48457. }
  48458. },
  48459. },
  48460. [
  48461. {
  48462. name: "Macro",
  48463. height: math.unit(100, "feet"),
  48464. default: true
  48465. },
  48466. ]
  48467. ))
  48468. characterMakers.push(() => makeCharacter(
  48469. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48470. {
  48471. front: {
  48472. height: math.unit(8, "feet"),
  48473. weight: math.unit(1200, "lb"),
  48474. name: "Front",
  48475. image: {
  48476. source: "./media/characters/nyterious-daligdig/front.svg",
  48477. extra: 1284/1094,
  48478. bottom: 84/1368
  48479. }
  48480. },
  48481. back: {
  48482. height: math.unit(8, "feet"),
  48483. weight: math.unit(1200, "lb"),
  48484. name: "Back",
  48485. image: {
  48486. source: "./media/characters/nyterious-daligdig/back.svg",
  48487. extra: 1301/1121,
  48488. bottom: 129/1430
  48489. }
  48490. },
  48491. mouth: {
  48492. height: math.unit(1.464, "feet"),
  48493. name: "Mouth",
  48494. image: {
  48495. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48496. }
  48497. },
  48498. },
  48499. [
  48500. {
  48501. name: "Small",
  48502. height: math.unit(8, "feet"),
  48503. default: true
  48504. },
  48505. {
  48506. name: "Normal",
  48507. height: math.unit(15, "feet")
  48508. },
  48509. {
  48510. name: "Macro",
  48511. height: math.unit(90, "feet")
  48512. },
  48513. ]
  48514. ))
  48515. characterMakers.push(() => makeCharacter(
  48516. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48517. {
  48518. front: {
  48519. height: math.unit(7 + 4/12, "feet"),
  48520. weight: math.unit(252, "lb"),
  48521. name: "Front",
  48522. image: {
  48523. source: "./media/characters/bandel/front.svg",
  48524. extra: 1946/1775,
  48525. bottom: 26/1972
  48526. }
  48527. },
  48528. back: {
  48529. height: math.unit(7 + 4/12, "feet"),
  48530. weight: math.unit(252, "lb"),
  48531. name: "Back",
  48532. image: {
  48533. source: "./media/characters/bandel/back.svg",
  48534. extra: 1940/1770,
  48535. bottom: 25/1965
  48536. }
  48537. },
  48538. maw: {
  48539. height: math.unit(2.15, "feet"),
  48540. name: "Maw",
  48541. image: {
  48542. source: "./media/characters/bandel/maw.svg"
  48543. }
  48544. },
  48545. stomach: {
  48546. height: math.unit(1.95, "feet"),
  48547. name: "Stomach",
  48548. image: {
  48549. source: "./media/characters/bandel/stomach.svg"
  48550. }
  48551. },
  48552. },
  48553. [
  48554. {
  48555. name: "Normal",
  48556. height: math.unit(7 + 4/12, "feet"),
  48557. default: true
  48558. },
  48559. ]
  48560. ))
  48561. characterMakers.push(() => makeCharacter(
  48562. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48563. {
  48564. front: {
  48565. height: math.unit(10 + 5/12, "feet"),
  48566. weight: math.unit(773.5, "kg"),
  48567. name: "Front",
  48568. image: {
  48569. source: "./media/characters/zed/front.svg",
  48570. extra: 987/941,
  48571. bottom: 52/1039
  48572. }
  48573. },
  48574. },
  48575. [
  48576. {
  48577. name: "Short",
  48578. height: math.unit(5 + 4/12, "feet")
  48579. },
  48580. {
  48581. name: "Average",
  48582. height: math.unit(10 + 5/12, "feet"),
  48583. default: true
  48584. },
  48585. {
  48586. name: "Mini-Macro",
  48587. height: math.unit(24 + 9/12, "feet")
  48588. },
  48589. {
  48590. name: "Macro",
  48591. height: math.unit(249, "feet")
  48592. },
  48593. {
  48594. name: "Mega-Macro",
  48595. height: math.unit(12490, "feet")
  48596. },
  48597. {
  48598. name: "Giga-Macro",
  48599. height: math.unit(24.9, "miles")
  48600. },
  48601. {
  48602. name: "Tera-Macro",
  48603. height: math.unit(24900, "miles")
  48604. },
  48605. {
  48606. name: "Cosmic Scale",
  48607. height: math.unit(38.9, "lightyears")
  48608. },
  48609. {
  48610. name: "Universal Scale",
  48611. height: math.unit(138e12, "lightyears")
  48612. },
  48613. ]
  48614. ))
  48615. characterMakers.push(() => makeCharacter(
  48616. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48617. {
  48618. front: {
  48619. height: math.unit(1561, "inches"),
  48620. name: "Front",
  48621. image: {
  48622. source: "./media/characters/ivan/front.svg",
  48623. extra: 1126/1071,
  48624. bottom: 26/1152
  48625. }
  48626. },
  48627. back: {
  48628. height: math.unit(1561, "inches"),
  48629. name: "Back",
  48630. image: {
  48631. source: "./media/characters/ivan/back.svg",
  48632. extra: 1134/1079,
  48633. bottom: 30/1164
  48634. }
  48635. },
  48636. },
  48637. [
  48638. {
  48639. name: "Normal",
  48640. height: math.unit(1561, "inches"),
  48641. default: true
  48642. },
  48643. ]
  48644. ))
  48645. characterMakers.push(() => makeCharacter(
  48646. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48647. {
  48648. front: {
  48649. height: math.unit(5 + 7/12, "feet"),
  48650. weight: math.unit(150, "lb"),
  48651. name: "Front",
  48652. image: {
  48653. source: "./media/characters/robin-arctic-hare/front.svg",
  48654. extra: 1148/974,
  48655. bottom: 20/1168
  48656. }
  48657. },
  48658. },
  48659. [
  48660. {
  48661. name: "Normal",
  48662. height: math.unit(5 + 7/12, "feet"),
  48663. default: true
  48664. },
  48665. ]
  48666. ))
  48667. characterMakers.push(() => makeCharacter(
  48668. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48669. {
  48670. side: {
  48671. height: math.unit(5, "feet"),
  48672. name: "Side",
  48673. image: {
  48674. source: "./media/characters/birch/side.svg",
  48675. extra: 985/796,
  48676. bottom: 111/1096
  48677. }
  48678. },
  48679. },
  48680. [
  48681. {
  48682. name: "Normal",
  48683. height: math.unit(5, "feet"),
  48684. default: true
  48685. },
  48686. ]
  48687. ))
  48688. characterMakers.push(() => makeCharacter(
  48689. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48690. {
  48691. front: {
  48692. height: math.unit(4, "feet"),
  48693. name: "Front",
  48694. image: {
  48695. source: "./media/characters/rasp/front.svg",
  48696. extra: 561/478,
  48697. bottom: 74/635
  48698. }
  48699. },
  48700. },
  48701. [
  48702. {
  48703. name: "Normal",
  48704. height: math.unit(4, "feet"),
  48705. default: true
  48706. },
  48707. ]
  48708. ))
  48709. characterMakers.push(() => makeCharacter(
  48710. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48711. {
  48712. front: {
  48713. height: math.unit(4 + 6/12, "feet"),
  48714. name: "Front",
  48715. image: {
  48716. source: "./media/characters/agatha/front.svg",
  48717. extra: 947/933,
  48718. bottom: 42/989
  48719. }
  48720. },
  48721. back: {
  48722. height: math.unit(4 + 6/12, "feet"),
  48723. name: "Back",
  48724. image: {
  48725. source: "./media/characters/agatha/back.svg",
  48726. extra: 935/922,
  48727. bottom: 48/983
  48728. }
  48729. },
  48730. },
  48731. [
  48732. {
  48733. name: "Normal",
  48734. height: math.unit(4 + 6 /12, "feet"),
  48735. default: true
  48736. },
  48737. {
  48738. name: "Max Size",
  48739. height: math.unit(500, "feet")
  48740. },
  48741. ]
  48742. ))
  48743. characterMakers.push(() => makeCharacter(
  48744. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48745. {
  48746. side: {
  48747. height: math.unit(30, "feet"),
  48748. name: "Side",
  48749. image: {
  48750. source: "./media/characters/roggy/side.svg",
  48751. extra: 909/643,
  48752. bottom: 63/972
  48753. }
  48754. },
  48755. lounging: {
  48756. height: math.unit(20, "feet"),
  48757. name: "Lounging",
  48758. image: {
  48759. source: "./media/characters/roggy/lounging.svg",
  48760. extra: 643/479,
  48761. bottom: 145/788
  48762. }
  48763. },
  48764. handpaw: {
  48765. height: math.unit(13.1, "feet"),
  48766. name: "Handpaw",
  48767. image: {
  48768. source: "./media/characters/roggy/handpaw.svg"
  48769. }
  48770. },
  48771. footpaw: {
  48772. height: math.unit(15.8, "feet"),
  48773. name: "Footpaw",
  48774. image: {
  48775. source: "./media/characters/roggy/footpaw.svg"
  48776. }
  48777. },
  48778. },
  48779. [
  48780. {
  48781. name: "Menacing",
  48782. height: math.unit(30, "feet"),
  48783. default: true
  48784. },
  48785. ]
  48786. ))
  48787. characterMakers.push(() => makeCharacter(
  48788. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48789. {
  48790. front: {
  48791. height: math.unit(5 + 7/12, "feet"),
  48792. weight: math.unit(135, "lb"),
  48793. name: "Front",
  48794. image: {
  48795. source: "./media/characters/naomi/front.svg",
  48796. extra: 1209/1154,
  48797. bottom: 129/1338
  48798. }
  48799. },
  48800. back: {
  48801. height: math.unit(5 + 7/12, "feet"),
  48802. weight: math.unit(135, "lb"),
  48803. name: "Back",
  48804. image: {
  48805. source: "./media/characters/naomi/back.svg",
  48806. extra: 1252/1190,
  48807. bottom: 23/1275
  48808. }
  48809. },
  48810. },
  48811. [
  48812. {
  48813. name: "Normal",
  48814. height: math.unit(5 + 7 /12, "feet"),
  48815. default: true
  48816. },
  48817. ]
  48818. ))
  48819. characterMakers.push(() => makeCharacter(
  48820. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48821. {
  48822. side: {
  48823. height: math.unit(35, "meters"),
  48824. name: "Side",
  48825. image: {
  48826. source: "./media/characters/kimpi/side.svg",
  48827. extra: 419/382,
  48828. bottom: 63/482
  48829. }
  48830. },
  48831. hand: {
  48832. height: math.unit(8.96, "meters"),
  48833. name: "Hand",
  48834. image: {
  48835. source: "./media/characters/kimpi/hand.svg"
  48836. }
  48837. },
  48838. },
  48839. [
  48840. {
  48841. name: "Normal",
  48842. height: math.unit(35, "meters"),
  48843. default: true
  48844. },
  48845. ]
  48846. ))
  48847. characterMakers.push(() => makeCharacter(
  48848. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48849. {
  48850. front: {
  48851. height: math.unit(4 + 4/12, "feet"),
  48852. name: "Front",
  48853. image: {
  48854. source: "./media/characters/pepper-purrloin/front.svg",
  48855. extra: 1141/1024,
  48856. bottom: 21/1162
  48857. }
  48858. },
  48859. },
  48860. [
  48861. {
  48862. name: "Normal",
  48863. height: math.unit(4 + 4/12, "feet"),
  48864. default: true
  48865. },
  48866. ]
  48867. ))
  48868. characterMakers.push(() => makeCharacter(
  48869. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48870. {
  48871. front: {
  48872. height: math.unit(6 + 2/12, "feet"),
  48873. name: "Front",
  48874. image: {
  48875. source: "./media/characters/raphael/front.svg",
  48876. extra: 1101/962,
  48877. bottom: 59/1160
  48878. }
  48879. },
  48880. },
  48881. [
  48882. {
  48883. name: "Normal",
  48884. height: math.unit(6 + 2/12, "feet"),
  48885. default: true
  48886. },
  48887. ]
  48888. ))
  48889. characterMakers.push(() => makeCharacter(
  48890. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48891. {
  48892. front: {
  48893. height: math.unit(6, "feet"),
  48894. weight: math.unit(150, "lb"),
  48895. name: "Front",
  48896. image: {
  48897. source: "./media/characters/victor-williams/front.svg",
  48898. extra: 1894/1825,
  48899. bottom: 67/1961
  48900. }
  48901. },
  48902. },
  48903. [
  48904. {
  48905. name: "Normal",
  48906. height: math.unit(6, "feet"),
  48907. default: true
  48908. },
  48909. ]
  48910. ))
  48911. characterMakers.push(() => makeCharacter(
  48912. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48913. {
  48914. front: {
  48915. height: math.unit(5 + 8/12, "feet"),
  48916. weight: math.unit(150, "lb"),
  48917. name: "Front",
  48918. image: {
  48919. source: "./media/characters/rachel/front.svg",
  48920. extra: 1902/1787,
  48921. bottom: 46/1948
  48922. }
  48923. },
  48924. },
  48925. [
  48926. {
  48927. name: "Base Height",
  48928. height: math.unit(5 + 8/12, "feet"),
  48929. default: true
  48930. },
  48931. {
  48932. name: "Macro",
  48933. height: math.unit(200, "feet")
  48934. },
  48935. {
  48936. name: "Mega Macro",
  48937. height: math.unit(1, "mile")
  48938. },
  48939. {
  48940. name: "Giga Macro",
  48941. height: math.unit(1500, "miles")
  48942. },
  48943. {
  48944. name: "Tera Macro",
  48945. height: math.unit(8000, "miles")
  48946. },
  48947. {
  48948. name: "Tera Macro+",
  48949. height: math.unit(2e5, "miles")
  48950. },
  48951. ]
  48952. ))
  48953. characterMakers.push(() => makeCharacter(
  48954. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48955. {
  48956. front: {
  48957. height: math.unit(6.5, "feet"),
  48958. name: "Front",
  48959. image: {
  48960. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48961. extra: 860/819,
  48962. bottom: 307/1167
  48963. }
  48964. },
  48965. back: {
  48966. height: math.unit(6.5, "feet"),
  48967. name: "Back",
  48968. image: {
  48969. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48970. extra: 880/837,
  48971. bottom: 395/1275
  48972. }
  48973. },
  48974. sleeping: {
  48975. height: math.unit(2.79, "feet"),
  48976. name: "Sleeping",
  48977. image: {
  48978. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48979. extra: 465/383,
  48980. bottom: 263/728
  48981. }
  48982. },
  48983. maw: {
  48984. height: math.unit(2.52, "feet"),
  48985. name: "Maw",
  48986. image: {
  48987. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48988. }
  48989. },
  48990. },
  48991. [
  48992. {
  48993. name: "Normal",
  48994. height: math.unit(6.5, "feet"),
  48995. default: true
  48996. },
  48997. ]
  48998. ))
  48999. characterMakers.push(() => makeCharacter(
  49000. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49001. {
  49002. front: {
  49003. height: math.unit(5, "feet"),
  49004. name: "Front",
  49005. image: {
  49006. source: "./media/characters/nova-nerium/front.svg",
  49007. extra: 1548/1392,
  49008. bottom: 374/1922
  49009. }
  49010. },
  49011. back: {
  49012. height: math.unit(5, "feet"),
  49013. name: "Back",
  49014. image: {
  49015. source: "./media/characters/nova-nerium/back.svg",
  49016. extra: 1658/1468,
  49017. bottom: 257/1915
  49018. }
  49019. },
  49020. },
  49021. [
  49022. {
  49023. name: "Normal",
  49024. height: math.unit(5, "feet"),
  49025. default: true
  49026. },
  49027. ]
  49028. ))
  49029. characterMakers.push(() => makeCharacter(
  49030. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49031. {
  49032. front: {
  49033. height: math.unit(5 + 4/12, "feet"),
  49034. name: "Front",
  49035. image: {
  49036. source: "./media/characters/ashe-pyriph/front.svg",
  49037. extra: 1935/1747,
  49038. bottom: 60/1995
  49039. }
  49040. },
  49041. },
  49042. [
  49043. {
  49044. name: "Normal",
  49045. height: math.unit(5 + 4/12, "feet"),
  49046. default: true
  49047. },
  49048. ]
  49049. ))
  49050. characterMakers.push(() => makeCharacter(
  49051. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49052. {
  49053. front: {
  49054. height: math.unit(8.7, "feet"),
  49055. name: "Front",
  49056. image: {
  49057. source: "./media/characters/flicker-wisp/front.svg",
  49058. extra: 1835/1613,
  49059. bottom: 449/2284
  49060. }
  49061. },
  49062. side: {
  49063. height: math.unit(8.7, "feet"),
  49064. name: "Side",
  49065. image: {
  49066. source: "./media/characters/flicker-wisp/side.svg",
  49067. extra: 1841/1642,
  49068. bottom: 336/2177
  49069. },
  49070. default: true
  49071. },
  49072. maw: {
  49073. height: math.unit(3.35, "feet"),
  49074. name: "Maw",
  49075. image: {
  49076. source: "./media/characters/flicker-wisp/maw.svg",
  49077. extra: 2338/1506,
  49078. bottom: 0/2338
  49079. }
  49080. },
  49081. ovipositor: {
  49082. height: math.unit(4.95, "feet"),
  49083. name: "Ovipositor",
  49084. image: {
  49085. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49086. }
  49087. },
  49088. egg: {
  49089. height: math.unit(0.385, "feet"),
  49090. weight: math.unit(2, "lb"),
  49091. name: "Egg",
  49092. image: {
  49093. source: "./media/characters/flicker-wisp/egg.svg"
  49094. }
  49095. },
  49096. },
  49097. [
  49098. {
  49099. name: "Normal",
  49100. height: math.unit(8.7, "feet"),
  49101. default: true
  49102. },
  49103. ]
  49104. ))
  49105. characterMakers.push(() => makeCharacter(
  49106. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49107. {
  49108. side: {
  49109. height: math.unit(11, "feet"),
  49110. name: "Side",
  49111. image: {
  49112. source: "./media/characters/faefnul/side.svg",
  49113. extra: 1100/1007,
  49114. bottom: 0/1100
  49115. }
  49116. },
  49117. },
  49118. [
  49119. {
  49120. name: "Normal",
  49121. height: math.unit(11, "feet"),
  49122. default: true
  49123. },
  49124. ]
  49125. ))
  49126. characterMakers.push(() => makeCharacter(
  49127. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49128. {
  49129. front: {
  49130. height: math.unit(6 + 2/12, "feet"),
  49131. name: "Front",
  49132. image: {
  49133. source: "./media/characters/shady/front.svg",
  49134. extra: 502/461,
  49135. bottom: 9/511
  49136. }
  49137. },
  49138. kneeling: {
  49139. height: math.unit(4.6, "feet"),
  49140. name: "Kneeling",
  49141. image: {
  49142. source: "./media/characters/shady/kneeling.svg",
  49143. extra: 1328/1219,
  49144. bottom: 117/1445
  49145. }
  49146. },
  49147. maw: {
  49148. height: math.unit(2, "feet"),
  49149. name: "Maw",
  49150. image: {
  49151. source: "./media/characters/shady/maw.svg"
  49152. }
  49153. },
  49154. },
  49155. [
  49156. {
  49157. name: "Nano",
  49158. height: math.unit(1, "mm")
  49159. },
  49160. {
  49161. name: "Micro",
  49162. height: math.unit(12, "mm")
  49163. },
  49164. {
  49165. name: "Tiny",
  49166. height: math.unit(3, "inches")
  49167. },
  49168. {
  49169. name: "Normal",
  49170. height: math.unit(6 + 2/12, "feet"),
  49171. default: true
  49172. },
  49173. {
  49174. name: "Big",
  49175. height: math.unit(15, "feet")
  49176. },
  49177. {
  49178. name: "Macro",
  49179. height: math.unit(150, "feet")
  49180. },
  49181. {
  49182. name: "Titanic",
  49183. height: math.unit(500, "feet")
  49184. },
  49185. ]
  49186. ))
  49187. characterMakers.push(() => makeCharacter(
  49188. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49189. {
  49190. front: {
  49191. height: math.unit(12, "feet"),
  49192. name: "Front",
  49193. image: {
  49194. source: "./media/characters/fenrir/front.svg",
  49195. extra: 968/875,
  49196. bottom: 22/990
  49197. }
  49198. },
  49199. },
  49200. [
  49201. {
  49202. name: "Big",
  49203. height: math.unit(12, "feet"),
  49204. default: true
  49205. },
  49206. ]
  49207. ))
  49208. characterMakers.push(() => makeCharacter(
  49209. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49210. {
  49211. front: {
  49212. height: math.unit(5 + 4/12, "feet"),
  49213. name: "Front",
  49214. image: {
  49215. source: "./media/characters/makar/front.svg",
  49216. extra: 1181/1112,
  49217. bottom: 78/1259
  49218. }
  49219. },
  49220. },
  49221. [
  49222. {
  49223. name: "Normal",
  49224. height: math.unit(5 + 4/12, "feet"),
  49225. default: true
  49226. },
  49227. ]
  49228. ))
  49229. characterMakers.push(() => makeCharacter(
  49230. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49231. {
  49232. front: {
  49233. height: math.unit(5 + 7/12, "feet"),
  49234. name: "Front",
  49235. image: {
  49236. source: "./media/characters/callow/front.svg",
  49237. extra: 1482/1304,
  49238. bottom: 23/1505
  49239. }
  49240. },
  49241. back: {
  49242. height: math.unit(5 + 7/12, "feet"),
  49243. name: "Back",
  49244. image: {
  49245. source: "./media/characters/callow/back.svg",
  49246. extra: 1484/1296,
  49247. bottom: 25/1509
  49248. }
  49249. },
  49250. },
  49251. [
  49252. {
  49253. name: "Micro",
  49254. height: math.unit(3, "inches"),
  49255. default: true
  49256. },
  49257. {
  49258. name: "Normal",
  49259. height: math.unit(5 + 7/12, "feet")
  49260. },
  49261. ]
  49262. ))
  49263. characterMakers.push(() => makeCharacter(
  49264. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49265. {
  49266. front: {
  49267. height: math.unit(6 + 2/12, "feet"),
  49268. name: "Front",
  49269. image: {
  49270. source: "./media/characters/natel/front.svg",
  49271. extra: 1833/1692,
  49272. bottom: 166/1999
  49273. }
  49274. },
  49275. },
  49276. [
  49277. {
  49278. name: "Normal",
  49279. height: math.unit(6 + 2/12, "feet"),
  49280. default: true
  49281. },
  49282. ]
  49283. ))
  49284. characterMakers.push(() => makeCharacter(
  49285. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49286. {
  49287. front: {
  49288. height: math.unit(1.75, "meters"),
  49289. name: "Front",
  49290. image: {
  49291. source: "./media/characters/misu/front.svg",
  49292. extra: 1690/1558,
  49293. bottom: 234/1924
  49294. }
  49295. },
  49296. back: {
  49297. height: math.unit(1.75, "meters"),
  49298. name: "Back",
  49299. image: {
  49300. source: "./media/characters/misu/back.svg",
  49301. extra: 1762/1618,
  49302. bottom: 146/1908
  49303. }
  49304. },
  49305. frontNude: {
  49306. height: math.unit(1.75, "meters"),
  49307. name: "Front (Nude)",
  49308. image: {
  49309. source: "./media/characters/misu/front-nude.svg",
  49310. extra: 1690/1558,
  49311. bottom: 234/1924
  49312. }
  49313. },
  49314. backNude: {
  49315. height: math.unit(1.75, "meters"),
  49316. name: "Back (Nude)",
  49317. image: {
  49318. source: "./media/characters/misu/back-nude.svg",
  49319. extra: 1762/1618,
  49320. bottom: 146/1908
  49321. }
  49322. },
  49323. frontErect: {
  49324. height: math.unit(1.75, "meters"),
  49325. name: "Front (Erect)",
  49326. image: {
  49327. source: "./media/characters/misu/front-erect.svg",
  49328. extra: 1690/1558,
  49329. bottom: 234/1924
  49330. }
  49331. },
  49332. maw: {
  49333. height: math.unit(0.47, "meters"),
  49334. name: "Maw",
  49335. image: {
  49336. source: "./media/characters/misu/maw.svg"
  49337. }
  49338. },
  49339. head: {
  49340. height: math.unit(0.35, "meters"),
  49341. name: "Head",
  49342. image: {
  49343. source: "./media/characters/misu/head.svg"
  49344. }
  49345. },
  49346. rear: {
  49347. height: math.unit(0.47, "meters"),
  49348. name: "Rear",
  49349. image: {
  49350. source: "./media/characters/misu/rear.svg"
  49351. }
  49352. },
  49353. },
  49354. [
  49355. {
  49356. name: "Normal",
  49357. height: math.unit(1.75, "meters")
  49358. },
  49359. {
  49360. name: "Not good for the people",
  49361. height: math.unit(42, "meters")
  49362. },
  49363. {
  49364. name: "Not good for the neighborhood",
  49365. height: math.unit(135, "meters")
  49366. },
  49367. {
  49368. name: "Bit bigger problem",
  49369. height: math.unit(380, "meters"),
  49370. default: true
  49371. },
  49372. {
  49373. name: "Not good for the city",
  49374. height: math.unit(1.5, "km")
  49375. },
  49376. {
  49377. name: "Not good for the county",
  49378. height: math.unit(5.5, "km")
  49379. },
  49380. {
  49381. name: "Not good for the state",
  49382. height: math.unit(25, "km")
  49383. },
  49384. {
  49385. name: "Not good for the country",
  49386. height: math.unit(125, "km")
  49387. },
  49388. {
  49389. name: "Not good for the continent",
  49390. height: math.unit(2100, "km")
  49391. },
  49392. {
  49393. name: "Not good for the planet",
  49394. height: math.unit(35000, "km")
  49395. },
  49396. {
  49397. name: "Just no",
  49398. height: math.unit(8.5e18, "km")
  49399. },
  49400. ]
  49401. ))
  49402. characterMakers.push(() => makeCharacter(
  49403. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49404. {
  49405. front: {
  49406. height: math.unit(6.5, "feet"),
  49407. name: "Front",
  49408. image: {
  49409. source: "./media/characters/poppy/front.svg",
  49410. extra: 1878/1812,
  49411. bottom: 43/1921
  49412. }
  49413. },
  49414. feet: {
  49415. height: math.unit(1.06, "feet"),
  49416. name: "Feet",
  49417. image: {
  49418. source: "./media/characters/poppy/feet.svg",
  49419. extra: 1083/1083,
  49420. bottom: 87/1170
  49421. }
  49422. },
  49423. },
  49424. [
  49425. {
  49426. name: "Human",
  49427. height: math.unit(6.5, "feet")
  49428. },
  49429. {
  49430. name: "Default",
  49431. height: math.unit(300, "feet"),
  49432. default: true
  49433. },
  49434. {
  49435. name: "Huge",
  49436. height: math.unit(850, "feet")
  49437. },
  49438. {
  49439. name: "Mega",
  49440. height: math.unit(8000, "feet")
  49441. },
  49442. {
  49443. name: "Giga",
  49444. height: math.unit(300, "miles")
  49445. },
  49446. ]
  49447. ))
  49448. characterMakers.push(() => makeCharacter(
  49449. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49450. {
  49451. bipedal: {
  49452. height: math.unit(7, "feet"),
  49453. name: "Bipedal",
  49454. image: {
  49455. source: "./media/characters/zener/bipedal.svg",
  49456. extra: 874/805,
  49457. bottom: 109/983
  49458. }
  49459. },
  49460. quadrupedal: {
  49461. height: math.unit(4.64, "feet"),
  49462. name: "Quadrupedal",
  49463. image: {
  49464. source: "./media/characters/zener/quadrupedal.svg",
  49465. extra: 638/507,
  49466. bottom: 190/828
  49467. }
  49468. },
  49469. cock: {
  49470. height: math.unit(18, "inches"),
  49471. name: "Cock",
  49472. image: {
  49473. source: "./media/characters/zener/cock.svg"
  49474. }
  49475. },
  49476. },
  49477. [
  49478. {
  49479. name: "Normal",
  49480. height: math.unit(7, "feet"),
  49481. default: true
  49482. },
  49483. ]
  49484. ))
  49485. characterMakers.push(() => makeCharacter(
  49486. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49487. {
  49488. nude: {
  49489. height: math.unit(5 + 6/12, "feet"),
  49490. name: "Nude",
  49491. image: {
  49492. source: "./media/characters/charlie-dog/nude.svg",
  49493. extra: 768/734,
  49494. bottom: 26/794
  49495. }
  49496. },
  49497. dressed: {
  49498. height: math.unit(5 + 6/12, "feet"),
  49499. name: "Dressed",
  49500. image: {
  49501. source: "./media/characters/charlie-dog/dressed.svg",
  49502. extra: 768/734,
  49503. bottom: 26/794
  49504. }
  49505. },
  49506. },
  49507. [
  49508. {
  49509. name: "Normal",
  49510. height: math.unit(5 + 6/12, "feet"),
  49511. default: true
  49512. },
  49513. ]
  49514. ))
  49515. characterMakers.push(() => makeCharacter(
  49516. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49517. {
  49518. front: {
  49519. height: math.unit(6 + 4/12, "feet"),
  49520. name: "Front",
  49521. image: {
  49522. source: "./media/characters/ir'istrasz/front.svg",
  49523. extra: 1014/977,
  49524. bottom: 65/1079
  49525. }
  49526. },
  49527. back: {
  49528. height: math.unit(6 + 4/12, "feet"),
  49529. name: "Back",
  49530. image: {
  49531. source: "./media/characters/ir'istrasz/back.svg",
  49532. extra: 1024/992,
  49533. bottom: 34/1058
  49534. }
  49535. },
  49536. },
  49537. [
  49538. {
  49539. name: "Normal",
  49540. height: math.unit(6 + 4/12, "feet"),
  49541. default: true
  49542. },
  49543. ]
  49544. ))
  49545. characterMakers.push(() => makeCharacter(
  49546. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49547. {
  49548. front: {
  49549. height: math.unit(5 + 8/12, "feet"),
  49550. name: "Front",
  49551. image: {
  49552. source: "./media/characters/dee-ditto/front.svg",
  49553. extra: 1874/1785,
  49554. bottom: 68/1942
  49555. }
  49556. },
  49557. back: {
  49558. height: math.unit(5 + 8/12, "feet"),
  49559. name: "Back",
  49560. image: {
  49561. source: "./media/characters/dee-ditto/back.svg",
  49562. extra: 1870/1783,
  49563. bottom: 77/1947
  49564. }
  49565. },
  49566. },
  49567. [
  49568. {
  49569. name: "Normal",
  49570. height: math.unit(5 + 8/12, "feet"),
  49571. default: true
  49572. },
  49573. ]
  49574. ))
  49575. characterMakers.push(() => makeCharacter(
  49576. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49577. {
  49578. front: {
  49579. height: math.unit(7 + 6/12, "feet"),
  49580. name: "Front",
  49581. image: {
  49582. source: "./media/characters/fey/front.svg",
  49583. extra: 995/979,
  49584. bottom: 30/1025
  49585. }
  49586. },
  49587. back: {
  49588. height: math.unit(7 + 6/12, "feet"),
  49589. name: "Back",
  49590. image: {
  49591. source: "./media/characters/fey/back.svg",
  49592. extra: 1079/1008,
  49593. bottom: 5/1084
  49594. }
  49595. },
  49596. dressed: {
  49597. height: math.unit(7 + 6/12, "feet"),
  49598. name: "Dressed",
  49599. image: {
  49600. source: "./media/characters/fey/dressed.svg",
  49601. extra: 995/979,
  49602. bottom: 30/1025
  49603. }
  49604. },
  49605. },
  49606. [
  49607. {
  49608. name: "Normal",
  49609. height: math.unit(7 + 6/12, "feet"),
  49610. default: true
  49611. },
  49612. ]
  49613. ))
  49614. characterMakers.push(() => makeCharacter(
  49615. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49616. {
  49617. standing: {
  49618. height: math.unit(17, "feet"),
  49619. name: "Standing",
  49620. image: {
  49621. source: "./media/characters/aster/standing.svg",
  49622. extra: 1798/1598,
  49623. bottom: 117/1915
  49624. }
  49625. },
  49626. },
  49627. [
  49628. {
  49629. name: "Normal",
  49630. height: math.unit(17, "feet"),
  49631. default: true
  49632. },
  49633. {
  49634. name: "Homewrecker",
  49635. height: math.unit(95, "feet")
  49636. },
  49637. {
  49638. name: "Planet Devourer",
  49639. height: math.unit(1008000, "miles")
  49640. },
  49641. ]
  49642. ))
  49643. characterMakers.push(() => makeCharacter(
  49644. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49645. {
  49646. front: {
  49647. height: math.unit(6 + 5/12, "feet"),
  49648. weight: math.unit(265, "lb"),
  49649. name: "Front",
  49650. image: {
  49651. source: "./media/characters/devon-childs/front.svg",
  49652. extra: 1795/1721,
  49653. bottom: 41/1836
  49654. }
  49655. },
  49656. side: {
  49657. height: math.unit(6 + 5/12, "feet"),
  49658. weight: math.unit(265, "lb"),
  49659. name: "Side",
  49660. image: {
  49661. source: "./media/characters/devon-childs/side.svg",
  49662. extra: 1812/1738,
  49663. bottom: 30/1842
  49664. }
  49665. },
  49666. back: {
  49667. height: math.unit(6 + 5/12, "feet"),
  49668. weight: math.unit(265, "lb"),
  49669. name: "Back",
  49670. image: {
  49671. source: "./media/characters/devon-childs/back.svg",
  49672. extra: 1808/1735,
  49673. bottom: 23/1831
  49674. }
  49675. },
  49676. hand: {
  49677. height: math.unit(1.464, "feet"),
  49678. name: "Hand",
  49679. image: {
  49680. source: "./media/characters/devon-childs/hand.svg"
  49681. }
  49682. },
  49683. foot: {
  49684. height: math.unit(1.6, "feet"),
  49685. name: "Foot",
  49686. image: {
  49687. source: "./media/characters/devon-childs/foot.svg"
  49688. }
  49689. },
  49690. },
  49691. [
  49692. {
  49693. name: "Micro",
  49694. height: math.unit(7, "cm")
  49695. },
  49696. {
  49697. name: "Normal",
  49698. height: math.unit(6 + 5/12, "feet"),
  49699. default: true
  49700. },
  49701. {
  49702. name: "Macro",
  49703. height: math.unit(154, "feet")
  49704. },
  49705. ]
  49706. ))
  49707. characterMakers.push(() => makeCharacter(
  49708. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49709. {
  49710. front: {
  49711. height: math.unit(6, "feet"),
  49712. weight: math.unit(180, "lb"),
  49713. name: "Front",
  49714. image: {
  49715. source: "./media/characters/lydemox-vir/front.svg",
  49716. extra: 1632/1435,
  49717. bottom: 58/1690
  49718. }
  49719. },
  49720. frontSFW: {
  49721. height: math.unit(6, "feet"),
  49722. weight: math.unit(180, "lb"),
  49723. name: "Front (SFW)",
  49724. image: {
  49725. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49726. extra: 1632/1435,
  49727. bottom: 58/1690
  49728. }
  49729. },
  49730. back: {
  49731. height: math.unit(6, "feet"),
  49732. weight: math.unit(180, "lb"),
  49733. name: "Back",
  49734. image: {
  49735. source: "./media/characters/lydemox-vir/back.svg",
  49736. extra: 1593/1408,
  49737. bottom: 31/1624
  49738. }
  49739. },
  49740. paw: {
  49741. height: math.unit(1.85, "feet"),
  49742. name: "Paw",
  49743. image: {
  49744. source: "./media/characters/lydemox-vir/paw.svg"
  49745. }
  49746. },
  49747. dick: {
  49748. height: math.unit(1.8, "feet"),
  49749. name: "Dick",
  49750. image: {
  49751. source: "./media/characters/lydemox-vir/dick.svg"
  49752. }
  49753. },
  49754. },
  49755. [
  49756. {
  49757. name: "Macro",
  49758. height: math.unit(100, "feet"),
  49759. default: true
  49760. },
  49761. {
  49762. name: "Teramacro",
  49763. height: math.unit(1, "earth")
  49764. },
  49765. {
  49766. name: "Planetary",
  49767. height: math.unit(20, "earths")
  49768. },
  49769. ]
  49770. ))
  49771. characterMakers.push(() => makeCharacter(
  49772. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49773. {
  49774. front: {
  49775. height: math.unit(15 + 8/12, "feet"),
  49776. weight: math.unit(1237, "kg"),
  49777. name: "Front",
  49778. image: {
  49779. source: "./media/characters/mia/front.svg",
  49780. extra: 1573/1446,
  49781. bottom: 58/1631
  49782. }
  49783. },
  49784. },
  49785. [
  49786. {
  49787. name: "Small",
  49788. height: math.unit(9 + 5/12, "feet")
  49789. },
  49790. {
  49791. name: "Normal",
  49792. height: math.unit(15 + 8/12, "feet"),
  49793. default: true
  49794. },
  49795. ]
  49796. ))
  49797. characterMakers.push(() => makeCharacter(
  49798. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49799. {
  49800. front: {
  49801. height: math.unit(10 + 6/12, "feet"),
  49802. weight: math.unit(1.3, "tons"),
  49803. name: "Front",
  49804. image: {
  49805. source: "./media/characters/mr-graves/front.svg",
  49806. extra: 1779/1695,
  49807. bottom: 198/1977
  49808. }
  49809. },
  49810. },
  49811. [
  49812. {
  49813. name: "Normal",
  49814. height: math.unit(10 + 6 /12, "feet"),
  49815. default: true
  49816. },
  49817. ]
  49818. ))
  49819. characterMakers.push(() => makeCharacter(
  49820. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49821. {
  49822. dressedFront: {
  49823. height: math.unit(5 + 8/12, "feet"),
  49824. weight: math.unit(125, "lb"),
  49825. name: "Dressed (Front)",
  49826. image: {
  49827. source: "./media/characters/jess/dressed-front.svg",
  49828. extra: 1176/1152,
  49829. bottom: 42/1218
  49830. }
  49831. },
  49832. dressedSide: {
  49833. height: math.unit(5 + 8/12, "feet"),
  49834. weight: math.unit(125, "lb"),
  49835. name: "Dressed (Side)",
  49836. image: {
  49837. source: "./media/characters/jess/dressed-side.svg",
  49838. extra: 1204/1190,
  49839. bottom: 6/1210
  49840. }
  49841. },
  49842. nudeFront: {
  49843. height: math.unit(5 + 8/12, "feet"),
  49844. weight: math.unit(125, "lb"),
  49845. name: "Nude (Front)",
  49846. image: {
  49847. source: "./media/characters/jess/nude-front.svg",
  49848. extra: 1176/1152,
  49849. bottom: 42/1218
  49850. }
  49851. },
  49852. nudeSide: {
  49853. height: math.unit(5 + 8/12, "feet"),
  49854. weight: math.unit(125, "lb"),
  49855. name: "Nude (Side)",
  49856. image: {
  49857. source: "./media/characters/jess/nude-side.svg",
  49858. extra: 1204/1190,
  49859. bottom: 6/1210
  49860. }
  49861. },
  49862. organsFront: {
  49863. height: math.unit(2.83799342105, "feet"),
  49864. name: "Organs (Front)",
  49865. image: {
  49866. source: "./media/characters/jess/organs-front.svg"
  49867. }
  49868. },
  49869. organsSide: {
  49870. height: math.unit(2.64225290474, "feet"),
  49871. name: "Organs (Side)",
  49872. image: {
  49873. source: "./media/characters/jess/organs-side.svg"
  49874. }
  49875. },
  49876. digestiveTractFront: {
  49877. height: math.unit(2.8106580871, "feet"),
  49878. name: "Digestive Tract (Front)",
  49879. image: {
  49880. source: "./media/characters/jess/digestive-tract-front.svg"
  49881. }
  49882. },
  49883. digestiveTractSide: {
  49884. height: math.unit(2.54365045014, "feet"),
  49885. name: "Digestive Tract (Side)",
  49886. image: {
  49887. source: "./media/characters/jess/digestive-tract-side.svg"
  49888. }
  49889. },
  49890. respiratorySystemFront: {
  49891. height: math.unit(1.11196233456, "feet"),
  49892. name: "Respiratory System (Front)",
  49893. image: {
  49894. source: "./media/characters/jess/respiratory-system-front.svg"
  49895. }
  49896. },
  49897. respiratorySystemSide: {
  49898. height: math.unit(0.89327966297, "feet"),
  49899. name: "Respiratory System (Side)",
  49900. image: {
  49901. source: "./media/characters/jess/respiratory-system-side.svg"
  49902. }
  49903. },
  49904. urinaryTractFront: {
  49905. height: math.unit(1.16126356186, "feet"),
  49906. name: "Urinary Tract (Front)",
  49907. image: {
  49908. source: "./media/characters/jess/urinary-tract-front.svg"
  49909. }
  49910. },
  49911. urinaryTractSide: {
  49912. height: math.unit(1.20910039627, "feet"),
  49913. name: "Urinary Tract (Side)",
  49914. image: {
  49915. source: "./media/characters/jess/urinary-tract-side.svg"
  49916. }
  49917. },
  49918. reproductiveOrgansFront: {
  49919. height: math.unit(0.48422591566, "feet"),
  49920. name: "Reproductive Organs (Front)",
  49921. image: {
  49922. source: "./media/characters/jess/reproductive-organs-front.svg"
  49923. }
  49924. },
  49925. reproductiveOrgansSide: {
  49926. height: math.unit(0.61553314481, "feet"),
  49927. name: "Reproductive Organs (Side)",
  49928. image: {
  49929. source: "./media/characters/jess/reproductive-organs-side.svg"
  49930. }
  49931. },
  49932. breastsFront: {
  49933. height: math.unit(0.47690395121, "feet"),
  49934. name: "Breasts (Front)",
  49935. image: {
  49936. source: "./media/characters/jess/breasts-front.svg"
  49937. }
  49938. },
  49939. breastsSide: {
  49940. height: math.unit(0.30556998307, "feet"),
  49941. name: "Breasts (Side)",
  49942. image: {
  49943. source: "./media/characters/jess/breasts-side.svg"
  49944. }
  49945. },
  49946. heartFront: {
  49947. height: math.unit(0.53011022622, "feet"),
  49948. name: "Heart (Front)",
  49949. image: {
  49950. source: "./media/characters/jess/heart-front.svg"
  49951. }
  49952. },
  49953. heartSide: {
  49954. height: math.unit(0.51790695213, "feet"),
  49955. name: "Heart (Side)",
  49956. image: {
  49957. source: "./media/characters/jess/heart-side.svg"
  49958. }
  49959. },
  49960. earsAndNoseFront: {
  49961. height: math.unit(0.29385483995, "feet"),
  49962. name: "Ears and Nose (Front)",
  49963. image: {
  49964. source: "./media/characters/jess/ears-and-nose-front.svg"
  49965. }
  49966. },
  49967. earsAndNoseSide: {
  49968. height: math.unit(0.18109658741, "feet"),
  49969. name: "Ears and Nose (Side)",
  49970. image: {
  49971. source: "./media/characters/jess/ears-and-nose-side.svg"
  49972. }
  49973. },
  49974. },
  49975. [
  49976. {
  49977. name: "Normal",
  49978. height: math.unit(5 + 8/12, "feet"),
  49979. default: true
  49980. },
  49981. ]
  49982. ))
  49983. characterMakers.push(() => makeCharacter(
  49984. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49985. {
  49986. front: {
  49987. height: math.unit(6, "feet"),
  49988. weight: math.unit(6.64467e-7, "grams"),
  49989. name: "Front",
  49990. image: {
  49991. source: "./media/characters/wimpering/front.svg",
  49992. extra: 597/587,
  49993. bottom: 34/631
  49994. }
  49995. },
  49996. },
  49997. [
  49998. {
  49999. name: "Micro",
  50000. height: math.unit(0.4, "mm"),
  50001. default: true
  50002. },
  50003. ]
  50004. ))
  50005. characterMakers.push(() => makeCharacter(
  50006. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50007. {
  50008. front: {
  50009. height: math.unit(5 + 2/12, "feet"),
  50010. weight: math.unit(110, "lb"),
  50011. name: "Front",
  50012. image: {
  50013. source: "./media/characters/keltre/front.svg",
  50014. extra: 1099/1057,
  50015. bottom: 22/1121
  50016. }
  50017. },
  50018. back: {
  50019. height: math.unit(5 + 2/12, "feet"),
  50020. weight: math.unit(110, "lb"),
  50021. name: "Back",
  50022. image: {
  50023. source: "./media/characters/keltre/back.svg",
  50024. extra: 1095/1053,
  50025. bottom: 17/1112
  50026. }
  50027. },
  50028. dressed: {
  50029. height: math.unit(5 + 2/12, "feet"),
  50030. weight: math.unit(110, "lb"),
  50031. name: "Dressed",
  50032. image: {
  50033. source: "./media/characters/keltre/dressed.svg",
  50034. extra: 1099/1057,
  50035. bottom: 22/1121
  50036. }
  50037. },
  50038. winter: {
  50039. height: math.unit(5 + 2/12, "feet"),
  50040. weight: math.unit(110, "lb"),
  50041. name: "Winter",
  50042. image: {
  50043. source: "./media/characters/keltre/winter.svg",
  50044. extra: 1099/1057,
  50045. bottom: 22/1121
  50046. }
  50047. },
  50048. head: {
  50049. height: math.unit(1.61 * 0.86, "feet"),
  50050. name: "Head",
  50051. image: {
  50052. source: "./media/characters/keltre/head.svg",
  50053. extra: 534/421,
  50054. bottom: 0/534
  50055. }
  50056. },
  50057. hand: {
  50058. height: math.unit(1.3 * 0.86, "feet"),
  50059. name: "Hand",
  50060. image: {
  50061. source: "./media/characters/keltre/hand.svg"
  50062. }
  50063. },
  50064. foot: {
  50065. height: math.unit(1.8 * 0.86, "feet"),
  50066. name: "Foot",
  50067. image: {
  50068. source: "./media/characters/keltre/foot.svg"
  50069. }
  50070. },
  50071. },
  50072. [
  50073. {
  50074. name: "Fine",
  50075. height: math.unit(1, "inch")
  50076. },
  50077. {
  50078. name: "Dimnutive",
  50079. height: math.unit(4, "inches")
  50080. },
  50081. {
  50082. name: "Tiny",
  50083. height: math.unit(1, "foot")
  50084. },
  50085. {
  50086. name: "Small",
  50087. height: math.unit(3, "feet")
  50088. },
  50089. {
  50090. name: "Normal",
  50091. height: math.unit(5 + 2/12, "feet"),
  50092. default: true
  50093. },
  50094. ]
  50095. ))
  50096. characterMakers.push(() => makeCharacter(
  50097. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50098. {
  50099. front: {
  50100. height: math.unit(6 + 2/12, "feet"),
  50101. name: "Front",
  50102. image: {
  50103. source: "./media/characters/nox/front.svg",
  50104. extra: 1917/1830,
  50105. bottom: 74/1991
  50106. }
  50107. },
  50108. back: {
  50109. height: math.unit(6 + 2/12, "feet"),
  50110. name: "Back",
  50111. image: {
  50112. source: "./media/characters/nox/back.svg",
  50113. extra: 1896/1815,
  50114. bottom: 21/1917
  50115. }
  50116. },
  50117. head: {
  50118. height: math.unit(1.1, "feet"),
  50119. name: "Head",
  50120. image: {
  50121. source: "./media/characters/nox/head.svg",
  50122. extra: 874/704,
  50123. bottom: 0/874
  50124. }
  50125. },
  50126. tattoo: {
  50127. height: math.unit(0.729, "feet"),
  50128. name: "Tattoo",
  50129. image: {
  50130. source: "./media/characters/nox/tattoo.svg"
  50131. }
  50132. },
  50133. },
  50134. [
  50135. {
  50136. name: "Normal",
  50137. height: math.unit(6 + 2/12, "feet")
  50138. },
  50139. {
  50140. name: "Gigamacro",
  50141. height: math.unit(2, "earths"),
  50142. default: true
  50143. },
  50144. {
  50145. name: "Cosmic",
  50146. height: math.unit(867, "yottameters")
  50147. },
  50148. ]
  50149. ))
  50150. characterMakers.push(() => makeCharacter(
  50151. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50152. {
  50153. front: {
  50154. height: math.unit(6, "feet"),
  50155. weight: math.unit(150, "lb"),
  50156. name: "Front",
  50157. image: {
  50158. source: "./media/characters/caspian/front.svg",
  50159. extra: 1443/1359,
  50160. bottom: 0/1443
  50161. }
  50162. },
  50163. back: {
  50164. height: math.unit(6, "feet"),
  50165. weight: math.unit(150, "lb"),
  50166. name: "Back",
  50167. image: {
  50168. source: "./media/characters/caspian/back.svg",
  50169. extra: 1379/1309,
  50170. bottom: 0/1379
  50171. }
  50172. },
  50173. head: {
  50174. height: math.unit(0.9, "feet"),
  50175. name: "Head",
  50176. image: {
  50177. source: "./media/characters/caspian/head.svg",
  50178. extra: 692/492,
  50179. bottom: 0/692
  50180. }
  50181. },
  50182. headAlt: {
  50183. height: math.unit(0.95, "feet"),
  50184. name: "Head (Alt)",
  50185. image: {
  50186. source: "./media/characters/caspian/head-alt.svg",
  50187. extra: 668/508,
  50188. bottom: 0/668
  50189. }
  50190. },
  50191. hand: {
  50192. height: math.unit(0.8, "feet"),
  50193. name: "Hand",
  50194. image: {
  50195. source: "./media/characters/caspian/hand.svg"
  50196. }
  50197. },
  50198. paw: {
  50199. height: math.unit(0.95, "feet"),
  50200. name: "Paw",
  50201. image: {
  50202. source: "./media/characters/caspian/paw.svg"
  50203. }
  50204. },
  50205. },
  50206. [
  50207. {
  50208. name: "Normal",
  50209. height: math.unit(162, "feet"),
  50210. default: true
  50211. },
  50212. ]
  50213. ))
  50214. characterMakers.push(() => makeCharacter(
  50215. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50216. {
  50217. front: {
  50218. height: math.unit(6, "feet"),
  50219. name: "Front",
  50220. image: {
  50221. source: "./media/characters/myra-aisling/front.svg",
  50222. extra: 1268/1166,
  50223. bottom: 73/1341
  50224. }
  50225. },
  50226. back: {
  50227. height: math.unit(6, "feet"),
  50228. name: "Back",
  50229. image: {
  50230. source: "./media/characters/myra-aisling/back.svg",
  50231. extra: 1249/1149,
  50232. bottom: 79/1328
  50233. }
  50234. },
  50235. dressed: {
  50236. height: math.unit(6, "feet"),
  50237. name: "Dressed",
  50238. image: {
  50239. source: "./media/characters/myra-aisling/dressed.svg",
  50240. extra: 1290/1189,
  50241. bottom: 47/1337
  50242. }
  50243. },
  50244. hand: {
  50245. height: math.unit(1.1, "feet"),
  50246. name: "Hand",
  50247. image: {
  50248. source: "./media/characters/myra-aisling/hand.svg"
  50249. }
  50250. },
  50251. paw: {
  50252. height: math.unit(1.23, "feet"),
  50253. name: "Paw",
  50254. image: {
  50255. source: "./media/characters/myra-aisling/paw.svg"
  50256. }
  50257. },
  50258. },
  50259. [
  50260. {
  50261. name: "Normal",
  50262. height: math.unit(160, "feet"),
  50263. default: true
  50264. },
  50265. ]
  50266. ))
  50267. characterMakers.push(() => makeCharacter(
  50268. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50269. {
  50270. front: {
  50271. height: math.unit(6, "feet"),
  50272. name: "Front",
  50273. image: {
  50274. source: "./media/characters/tenley-sidero/front.svg",
  50275. extra: 1365/1276,
  50276. bottom: 47/1412
  50277. }
  50278. },
  50279. back: {
  50280. height: math.unit(6, "feet"),
  50281. name: "Back",
  50282. image: {
  50283. source: "./media/characters/tenley-sidero/back.svg",
  50284. extra: 1383/1283,
  50285. bottom: 35/1418
  50286. }
  50287. },
  50288. dressed: {
  50289. height: math.unit(6, "feet"),
  50290. name: "Dressed",
  50291. image: {
  50292. source: "./media/characters/tenley-sidero/dressed.svg",
  50293. extra: 1364/1275,
  50294. bottom: 42/1406
  50295. }
  50296. },
  50297. head: {
  50298. height: math.unit(1.47, "feet"),
  50299. name: "Head",
  50300. image: {
  50301. source: "./media/characters/tenley-sidero/head.svg",
  50302. extra: 610/490,
  50303. bottom: 0/610
  50304. }
  50305. },
  50306. },
  50307. [
  50308. {
  50309. name: "Normal",
  50310. height: math.unit(154, "feet"),
  50311. default: true
  50312. },
  50313. ]
  50314. ))
  50315. characterMakers.push(() => makeCharacter(
  50316. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50317. {
  50318. front: {
  50319. height: math.unit(5, "inches"),
  50320. name: "Front",
  50321. image: {
  50322. source: "./media/characters/mallory/front.svg",
  50323. extra: 1919/1678,
  50324. bottom: 29/1948
  50325. }
  50326. },
  50327. hand: {
  50328. height: math.unit(0.73, "inches"),
  50329. name: "Hand",
  50330. image: {
  50331. source: "./media/characters/mallory/hand.svg"
  50332. }
  50333. },
  50334. paw: {
  50335. height: math.unit(0.68, "inches"),
  50336. name: "Paw",
  50337. image: {
  50338. source: "./media/characters/mallory/paw.svg"
  50339. }
  50340. },
  50341. },
  50342. [
  50343. {
  50344. name: "Small",
  50345. height: math.unit(5, "inches"),
  50346. default: true
  50347. },
  50348. ]
  50349. ))
  50350. characterMakers.push(() => makeCharacter(
  50351. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50352. {
  50353. naked: {
  50354. height: math.unit(6, "feet"),
  50355. name: "Naked",
  50356. image: {
  50357. source: "./media/characters/mab/naked.svg",
  50358. extra: 1855/1757,
  50359. bottom: 208/2063
  50360. }
  50361. },
  50362. outside: {
  50363. height: math.unit(6, "feet"),
  50364. name: "Outside",
  50365. image: {
  50366. source: "./media/characters/mab/outside.svg",
  50367. extra: 1855/1757,
  50368. bottom: 208/2063
  50369. }
  50370. },
  50371. party: {
  50372. height: math.unit(6, "feet"),
  50373. name: "Party",
  50374. image: {
  50375. source: "./media/characters/mab/party.svg",
  50376. extra: 1855/1757,
  50377. bottom: 208/2063
  50378. }
  50379. },
  50380. },
  50381. [
  50382. {
  50383. name: "Normal",
  50384. height: math.unit(165, "feet"),
  50385. default: true
  50386. },
  50387. ]
  50388. ))
  50389. characterMakers.push(() => makeCharacter(
  50390. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50391. {
  50392. feral: {
  50393. height: math.unit(12, "feet"),
  50394. weight: math.unit(20000, "lb"),
  50395. name: "Side",
  50396. image: {
  50397. source: "./media/characters/winter/feral.svg",
  50398. extra: 1286/943,
  50399. bottom: 112/1398
  50400. },
  50401. form: "feral",
  50402. default: true
  50403. },
  50404. feralNsfw: {
  50405. height: math.unit(12, "feet"),
  50406. weight: math.unit(20000, "lb"),
  50407. name: "Side (NSFW)",
  50408. image: {
  50409. source: "./media/characters/winter/feral-nsfw.svg",
  50410. extra: 1286/943,
  50411. bottom: 112/1398
  50412. },
  50413. form: "feral"
  50414. },
  50415. dick: {
  50416. height: math.unit(3.79, "feet"),
  50417. name: "Dick",
  50418. image: {
  50419. source: "./media/characters/winter/dick.svg"
  50420. },
  50421. form: "feral"
  50422. },
  50423. anthro: {
  50424. height: math.unit(12, "feet"),
  50425. weight: math.unit(10, "tons"),
  50426. name: "Anthro",
  50427. image: {
  50428. source: "./media/characters/winter/anthro.svg",
  50429. extra: 1701/1553,
  50430. bottom: 64/1765
  50431. },
  50432. form: "anthro",
  50433. default: true
  50434. },
  50435. },
  50436. [
  50437. {
  50438. name: "Big",
  50439. height: math.unit(12, "feet"),
  50440. default: true,
  50441. form: "feral"
  50442. },
  50443. {
  50444. name: "Big",
  50445. height: math.unit(12, "feet"),
  50446. default: true,
  50447. form: "anthro"
  50448. },
  50449. ],
  50450. {
  50451. "feral": {
  50452. name: "Feral",
  50453. default: true
  50454. },
  50455. "anthro": {
  50456. name: "Anthro"
  50457. }
  50458. }
  50459. ))
  50460. characterMakers.push(() => makeCharacter(
  50461. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50462. {
  50463. front: {
  50464. height: math.unit(4.1, "inches"),
  50465. name: "Front",
  50466. image: {
  50467. source: "./media/characters/alto/front.svg",
  50468. extra: 736/627,
  50469. bottom: 90/826
  50470. }
  50471. },
  50472. },
  50473. [
  50474. {
  50475. name: "Normal",
  50476. height: math.unit(4.1, "inches"),
  50477. default: true
  50478. },
  50479. ]
  50480. ))
  50481. characterMakers.push(() => makeCharacter(
  50482. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50483. {
  50484. sitting: {
  50485. height: math.unit(3, "feet"),
  50486. name: "Sitting",
  50487. image: {
  50488. source: "./media/characters/ratstrid-v/sitting.svg",
  50489. extra: 355/310,
  50490. bottom: 136/491
  50491. }
  50492. },
  50493. },
  50494. [
  50495. {
  50496. name: "Normal",
  50497. height: math.unit(3, "feet"),
  50498. default: true
  50499. },
  50500. ]
  50501. ))
  50502. characterMakers.push(() => makeCharacter(
  50503. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50504. {
  50505. back: {
  50506. height: math.unit(6, "feet"),
  50507. weight: math.unit(450, "lb"),
  50508. name: "Back",
  50509. image: {
  50510. source: "./media/characters/siz/back.svg",
  50511. extra: 1449/1274,
  50512. bottom: 13/1462
  50513. }
  50514. },
  50515. },
  50516. [
  50517. {
  50518. name: "Smallest",
  50519. height: math.unit(18 + 3/12, "feet")
  50520. },
  50521. {
  50522. name: "Modest",
  50523. height: math.unit(56 + 8/12, "feet"),
  50524. default: true
  50525. },
  50526. {
  50527. name: "Largest",
  50528. height: math.unit(3590, "feet")
  50529. },
  50530. ]
  50531. ))
  50532. characterMakers.push(() => makeCharacter(
  50533. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50534. {
  50535. front: {
  50536. height: math.unit(5 + 9/12, "feet"),
  50537. weight: math.unit(150, "lb"),
  50538. name: "Front",
  50539. image: {
  50540. source: "./media/characters/ven/front.svg",
  50541. extra: 1372/1320,
  50542. bottom: 73/1445
  50543. }
  50544. },
  50545. side: {
  50546. height: math.unit(5 + 9/12, "feet"),
  50547. weight: math.unit(1150, "lb"),
  50548. name: "Side",
  50549. image: {
  50550. source: "./media/characters/ven/side.svg",
  50551. extra: 1119/1070,
  50552. bottom: 42/1161
  50553. },
  50554. default: true
  50555. },
  50556. },
  50557. [
  50558. {
  50559. name: "Normal",
  50560. height: math.unit(5 + 9/12, "feet"),
  50561. default: true
  50562. },
  50563. ]
  50564. ))
  50565. characterMakers.push(() => makeCharacter(
  50566. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50567. {
  50568. front: {
  50569. height: math.unit(12, "feet"),
  50570. weight: math.unit(1000, "kg"),
  50571. name: "Front",
  50572. image: {
  50573. source: "./media/characters/maple/front.svg",
  50574. extra: 1193/1081,
  50575. bottom: 22/1215
  50576. }
  50577. },
  50578. },
  50579. [
  50580. {
  50581. name: "Compressed",
  50582. height: math.unit(7, "feet")
  50583. },
  50584. {
  50585. name: "Normal",
  50586. height: math.unit(12, "feet"),
  50587. default: true
  50588. },
  50589. ]
  50590. ))
  50591. characterMakers.push(() => makeCharacter(
  50592. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50593. {
  50594. front: {
  50595. height: math.unit(9, "feet"),
  50596. weight: math.unit(1500, "lb"),
  50597. name: "Front",
  50598. image: {
  50599. source: "./media/characters/nora/front.svg",
  50600. extra: 1348/1286,
  50601. bottom: 218/1566
  50602. }
  50603. },
  50604. erect: {
  50605. height: math.unit(9, "feet"),
  50606. weight: math.unit(11500, "lb"),
  50607. name: "Erect",
  50608. image: {
  50609. source: "./media/characters/nora/erect.svg",
  50610. extra: 1488/1433,
  50611. bottom: 133/1621
  50612. }
  50613. },
  50614. },
  50615. [
  50616. {
  50617. name: "Normal",
  50618. height: math.unit(9, "feet"),
  50619. default: true
  50620. },
  50621. ]
  50622. ))
  50623. characterMakers.push(() => makeCharacter(
  50624. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50625. {
  50626. front: {
  50627. height: math.unit(25, "feet"),
  50628. weight: math.unit(27500, "lb"),
  50629. name: "Front",
  50630. image: {
  50631. source: "./media/characters/north-caudin/front.svg",
  50632. extra: 1184/1082,
  50633. bottom: 23/1207
  50634. }
  50635. },
  50636. },
  50637. [
  50638. {
  50639. name: "Compressed",
  50640. height: math.unit(10, "feet")
  50641. },
  50642. {
  50643. name: "Normal",
  50644. height: math.unit(25, "feet"),
  50645. default: true
  50646. },
  50647. ]
  50648. ))
  50649. characterMakers.push(() => makeCharacter(
  50650. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50651. {
  50652. front: {
  50653. height: math.unit(9, "feet"),
  50654. weight: math.unit(1250, "lb"),
  50655. name: "Front",
  50656. image: {
  50657. source: "./media/characters/merrian/front.svg",
  50658. extra: 2393/2304,
  50659. bottom: 40/2433
  50660. }
  50661. },
  50662. },
  50663. [
  50664. {
  50665. name: "Normal",
  50666. height: math.unit(9, "feet"),
  50667. default: true
  50668. },
  50669. ]
  50670. ))
  50671. characterMakers.push(() => makeCharacter(
  50672. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50673. {
  50674. front: {
  50675. height: math.unit(9, "feet"),
  50676. weight: math.unit(1000, "lb"),
  50677. name: "Front",
  50678. image: {
  50679. source: "./media/characters/hazel/front.svg",
  50680. extra: 2351/2298,
  50681. bottom: 38/2389
  50682. }
  50683. },
  50684. },
  50685. [
  50686. {
  50687. name: "Normal",
  50688. height: math.unit(9, "feet"),
  50689. default: true
  50690. },
  50691. ]
  50692. ))
  50693. characterMakers.push(() => makeCharacter(
  50694. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50695. {
  50696. front: {
  50697. height: math.unit(13, "feet"),
  50698. weight: math.unit(3200, "lb"),
  50699. name: "Front",
  50700. image: {
  50701. source: "./media/characters/emma/front.svg",
  50702. extra: 2263/2029,
  50703. bottom: 68/2331
  50704. }
  50705. },
  50706. },
  50707. [
  50708. {
  50709. name: "Normal",
  50710. height: math.unit(13, "feet"),
  50711. default: true
  50712. },
  50713. ]
  50714. ))
  50715. characterMakers.push(() => makeCharacter(
  50716. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50717. {
  50718. front: {
  50719. height: math.unit(11 + 9/12, "feet"),
  50720. weight: math.unit(2500, "lb"),
  50721. name: "Front",
  50722. image: {
  50723. source: "./media/characters/ilumina/front.svg",
  50724. extra: 2248/2209,
  50725. bottom: 164/2412
  50726. }
  50727. },
  50728. },
  50729. [
  50730. {
  50731. name: "Normal",
  50732. height: math.unit(11 + 9/12, "feet"),
  50733. default: true
  50734. },
  50735. ]
  50736. ))
  50737. characterMakers.push(() => makeCharacter(
  50738. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50739. {
  50740. front: {
  50741. height: math.unit(8 + 10/12, "feet"),
  50742. weight: math.unit(1350, "lb"),
  50743. name: "Front",
  50744. image: {
  50745. source: "./media/characters/moonshine/front.svg",
  50746. extra: 2395/2288,
  50747. bottom: 40/2435
  50748. }
  50749. },
  50750. },
  50751. [
  50752. {
  50753. name: "Normal",
  50754. height: math.unit(8 + 10/12, "feet"),
  50755. default: true
  50756. },
  50757. ]
  50758. ))
  50759. characterMakers.push(() => makeCharacter(
  50760. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50761. {
  50762. front: {
  50763. height: math.unit(14, "feet"),
  50764. weight: math.unit(3400, "lb"),
  50765. name: "Front",
  50766. image: {
  50767. source: "./media/characters/aletia/front.svg",
  50768. extra: 1185/1052,
  50769. bottom: 21/1206
  50770. }
  50771. },
  50772. },
  50773. [
  50774. {
  50775. name: "Compressed",
  50776. height: math.unit(8, "feet")
  50777. },
  50778. {
  50779. name: "Normal",
  50780. height: math.unit(14, "feet"),
  50781. default: true
  50782. },
  50783. ]
  50784. ))
  50785. characterMakers.push(() => makeCharacter(
  50786. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50787. {
  50788. front: {
  50789. height: math.unit(17, "feet"),
  50790. weight: math.unit(6500, "lb"),
  50791. name: "Front",
  50792. image: {
  50793. source: "./media/characters/deidra/front.svg",
  50794. extra: 1201/1081,
  50795. bottom: 16/1217
  50796. }
  50797. },
  50798. },
  50799. [
  50800. {
  50801. name: "Compressed",
  50802. height: math.unit(9 + 6/12, "feet")
  50803. },
  50804. {
  50805. name: "Normal",
  50806. height: math.unit(17, "feet"),
  50807. default: true
  50808. },
  50809. ]
  50810. ))
  50811. characterMakers.push(() => makeCharacter(
  50812. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50813. {
  50814. front: {
  50815. height: math.unit(7 + 4/12, "feet"),
  50816. weight: math.unit(280, "lb"),
  50817. name: "Front",
  50818. image: {
  50819. source: "./media/characters/freki-yrmori/front.svg",
  50820. extra: 1286/1182,
  50821. bottom: 29/1315
  50822. }
  50823. },
  50824. maw: {
  50825. height: math.unit(0.9, "feet"),
  50826. name: "Maw",
  50827. image: {
  50828. source: "./media/characters/freki-yrmori/maw.svg"
  50829. }
  50830. },
  50831. },
  50832. [
  50833. {
  50834. name: "Normal",
  50835. height: math.unit(7 + 4/12, "feet"),
  50836. default: true
  50837. },
  50838. {
  50839. name: "Macro",
  50840. height: math.unit(38.5, "meters")
  50841. },
  50842. ]
  50843. ))
  50844. characterMakers.push(() => makeCharacter(
  50845. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50846. {
  50847. side: {
  50848. height: math.unit(47.2, "meters"),
  50849. weight: math.unit(10000, "tons"),
  50850. name: "Side",
  50851. image: {
  50852. source: "./media/characters/aetherios/side.svg",
  50853. extra: 2363/642,
  50854. bottom: 221/2584
  50855. }
  50856. },
  50857. top: {
  50858. height: math.unit(240, "meters"),
  50859. weight: math.unit(10000, "tons"),
  50860. name: "Top",
  50861. image: {
  50862. source: "./media/characters/aetherios/top.svg"
  50863. }
  50864. },
  50865. bottom: {
  50866. height: math.unit(240, "meters"),
  50867. weight: math.unit(10000, "tons"),
  50868. name: "Bottom",
  50869. image: {
  50870. source: "./media/characters/aetherios/bottom.svg"
  50871. }
  50872. },
  50873. head: {
  50874. height: math.unit(38.6, "meters"),
  50875. name: "Head",
  50876. image: {
  50877. source: "./media/characters/aetherios/head.svg",
  50878. extra: 1335/1112,
  50879. bottom: 0/1335
  50880. }
  50881. },
  50882. front: {
  50883. height: math.unit(29, "meters"),
  50884. name: "Front",
  50885. image: {
  50886. source: "./media/characters/aetherios/front.svg",
  50887. extra: 1266/953,
  50888. bottom: 158/1424
  50889. }
  50890. },
  50891. maw: {
  50892. height: math.unit(16.37, "meters"),
  50893. name: "Maw",
  50894. image: {
  50895. source: "./media/characters/aetherios/maw.svg",
  50896. extra: 748/637,
  50897. bottom: 0/748
  50898. },
  50899. extraAttributes: {
  50900. preyCapacity: {
  50901. name: "Capacity",
  50902. power: 3,
  50903. type: "volume",
  50904. base: math.unit(1000, "people")
  50905. },
  50906. tongueSize: {
  50907. name: "Tongue Size",
  50908. power: 2,
  50909. type: "area",
  50910. base: math.unit(21, "m^2")
  50911. }
  50912. }
  50913. },
  50914. forepaw: {
  50915. height: math.unit(18, "meters"),
  50916. name: "Forepaw",
  50917. image: {
  50918. source: "./media/characters/aetherios/forepaw.svg"
  50919. }
  50920. },
  50921. hindpaw: {
  50922. height: math.unit(23, "meters"),
  50923. name: "Hindpaw",
  50924. image: {
  50925. source: "./media/characters/aetherios/hindpaw.svg"
  50926. }
  50927. },
  50928. genitals: {
  50929. height: math.unit(42, "meters"),
  50930. name: "Genitals",
  50931. image: {
  50932. source: "./media/characters/aetherios/genitals.svg"
  50933. }
  50934. },
  50935. },
  50936. [
  50937. {
  50938. name: "Normal",
  50939. height: math.unit(47.2, "meters"),
  50940. default: true
  50941. },
  50942. {
  50943. name: "Macro",
  50944. height: math.unit(160, "meters")
  50945. },
  50946. {
  50947. name: "Mega",
  50948. height: math.unit(1.87, "km")
  50949. },
  50950. {
  50951. name: "Giga",
  50952. height: math.unit(40000, "km")
  50953. },
  50954. {
  50955. name: "Stellar",
  50956. height: math.unit(158000000, "km")
  50957. },
  50958. {
  50959. name: "Cosmic",
  50960. height: math.unit(9.46e12, "km")
  50961. },
  50962. ]
  50963. ))
  50964. characterMakers.push(() => makeCharacter(
  50965. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50966. {
  50967. front: {
  50968. height: math.unit(5 + 4/12, "feet"),
  50969. weight: math.unit(80, "lb"),
  50970. name: "Front",
  50971. image: {
  50972. source: "./media/characters/mizu-gieeg/front.svg",
  50973. extra: 850/709,
  50974. bottom: 52/902
  50975. }
  50976. },
  50977. back: {
  50978. height: math.unit(5 + 4/12, "feet"),
  50979. weight: math.unit(80, "lb"),
  50980. name: "Back",
  50981. image: {
  50982. source: "./media/characters/mizu-gieeg/back.svg",
  50983. extra: 882/745,
  50984. bottom: 25/907
  50985. }
  50986. },
  50987. },
  50988. [
  50989. {
  50990. name: "Normal",
  50991. height: math.unit(5 + 4/12, "feet"),
  50992. default: true
  50993. },
  50994. ]
  50995. ))
  50996. characterMakers.push(() => makeCharacter(
  50997. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50998. {
  50999. front: {
  51000. height: math.unit(6, "feet"),
  51001. name: "Front",
  51002. image: {
  51003. source: "./media/characters/roselle-st-papier/front.svg",
  51004. extra: 1430/1280,
  51005. bottom: 37/1467
  51006. }
  51007. },
  51008. back: {
  51009. height: math.unit(6, "feet"),
  51010. name: "Back",
  51011. image: {
  51012. source: "./media/characters/roselle-st-papier/back.svg",
  51013. extra: 1491/1296,
  51014. bottom: 23/1514
  51015. }
  51016. },
  51017. ear: {
  51018. height: math.unit(1.26, "feet"),
  51019. name: "Ear",
  51020. image: {
  51021. source: "./media/characters/roselle-st-papier/ear.svg"
  51022. }
  51023. },
  51024. },
  51025. [
  51026. {
  51027. name: "Normal",
  51028. height: math.unit(150, "feet"),
  51029. default: true
  51030. },
  51031. ]
  51032. ))
  51033. characterMakers.push(() => makeCharacter(
  51034. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51035. {
  51036. front: {
  51037. height: math.unit(1, "inches"),
  51038. name: "Front",
  51039. image: {
  51040. source: "./media/characters/valargent/front.svg",
  51041. extra: 1825/1694,
  51042. bottom: 62/1887
  51043. }
  51044. },
  51045. back: {
  51046. height: math.unit(1, "inches"),
  51047. name: "Back",
  51048. image: {
  51049. source: "./media/characters/valargent/back.svg",
  51050. extra: 1775/1682,
  51051. bottom: 88/1863
  51052. }
  51053. },
  51054. },
  51055. [
  51056. {
  51057. name: "Micro",
  51058. height: math.unit(1, "inch"),
  51059. default: true
  51060. },
  51061. ]
  51062. ))
  51063. characterMakers.push(() => makeCharacter(
  51064. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51065. {
  51066. front: {
  51067. height: math.unit(3.4, "meters"),
  51068. name: "Front",
  51069. image: {
  51070. source: "./media/characters/zarina/front.svg",
  51071. extra: 1733/1425,
  51072. bottom: 93/1826
  51073. }
  51074. },
  51075. squatting: {
  51076. height: math.unit(2.14, "meters"),
  51077. name: "Squatting",
  51078. image: {
  51079. source: "./media/characters/zarina/squatting.svg",
  51080. extra: 1073/788,
  51081. bottom: 63/1136
  51082. }
  51083. },
  51084. back: {
  51085. height: math.unit(2.14, "meters"),
  51086. name: "Back",
  51087. image: {
  51088. source: "./media/characters/zarina/back.svg",
  51089. extra: 1128/885,
  51090. bottom: 0/1128
  51091. }
  51092. },
  51093. },
  51094. [
  51095. {
  51096. name: "Normal",
  51097. height: math.unit(3.4, "meters"),
  51098. default: true
  51099. },
  51100. {
  51101. name: "Big",
  51102. height: math.unit(5, "meters")
  51103. },
  51104. {
  51105. name: "Macro",
  51106. height: math.unit(110, "meters")
  51107. },
  51108. ]
  51109. ))
  51110. characterMakers.push(() => makeCharacter(
  51111. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51112. {
  51113. front: {
  51114. height: math.unit(7, "feet"),
  51115. name: "Front",
  51116. image: {
  51117. source: "./media/characters/ventus-astro-fox/front.svg",
  51118. extra: 1792/1623,
  51119. bottom: 28/1820
  51120. }
  51121. },
  51122. back: {
  51123. height: math.unit(7, "feet"),
  51124. name: "Back",
  51125. image: {
  51126. source: "./media/characters/ventus-astro-fox/back.svg",
  51127. extra: 1789/1620,
  51128. bottom: 31/1820
  51129. }
  51130. },
  51131. outfit: {
  51132. height: math.unit(7, "feet"),
  51133. name: "Outfit",
  51134. image: {
  51135. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51136. extra: 1054/925,
  51137. bottom: 15/1069
  51138. }
  51139. },
  51140. head: {
  51141. height: math.unit(1.12, "feet"),
  51142. name: "Head",
  51143. image: {
  51144. source: "./media/characters/ventus-astro-fox/head.svg",
  51145. extra: 866/504,
  51146. bottom: 0/866
  51147. }
  51148. },
  51149. hand: {
  51150. height: math.unit(1, "feet"),
  51151. name: "Hand",
  51152. image: {
  51153. source: "./media/characters/ventus-astro-fox/hand.svg"
  51154. }
  51155. },
  51156. paw: {
  51157. height: math.unit(1.5, "feet"),
  51158. name: "Paw",
  51159. image: {
  51160. source: "./media/characters/ventus-astro-fox/paw.svg"
  51161. }
  51162. },
  51163. },
  51164. [
  51165. {
  51166. name: "Normal",
  51167. height: math.unit(7, "feet"),
  51168. default: true
  51169. },
  51170. {
  51171. name: "Macro",
  51172. height: math.unit(200, "feet")
  51173. },
  51174. {
  51175. name: "Cosmic",
  51176. height: math.unit(3, "universes")
  51177. },
  51178. ]
  51179. ))
  51180. characterMakers.push(() => makeCharacter(
  51181. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51182. {
  51183. front: {
  51184. height: math.unit(3, "meters"),
  51185. weight: math.unit(7000, "lb"),
  51186. name: "Front",
  51187. image: {
  51188. source: "./media/characters/core-t/front.svg",
  51189. extra: 5729/4941,
  51190. bottom: 1129/6858
  51191. }
  51192. },
  51193. },
  51194. [
  51195. {
  51196. name: "Big",
  51197. height: math.unit(3, "meters"),
  51198. default: true
  51199. },
  51200. ]
  51201. ))
  51202. characterMakers.push(() => makeCharacter(
  51203. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51204. {
  51205. normal: {
  51206. height: math.unit(6 + 6/12, "feet"),
  51207. weight: math.unit(275, "lb"),
  51208. name: "Front",
  51209. image: {
  51210. source: "./media/characters/cadbunny/normal.svg",
  51211. extra: 1129/947,
  51212. bottom: 93/1222
  51213. },
  51214. default: true,
  51215. form: "normal"
  51216. },
  51217. gigantamax: {
  51218. height: math.unit(26, "feet"),
  51219. weight: math.unit(16000, "lb"),
  51220. name: "Front",
  51221. image: {
  51222. source: "./media/characters/cadbunny/gigantamax.svg",
  51223. extra: 1133/944,
  51224. bottom: 90/1223
  51225. },
  51226. default: true,
  51227. form: "gigantamax"
  51228. },
  51229. },
  51230. [
  51231. {
  51232. name: "Normal",
  51233. height: math.unit(6 + 6/12, "feet"),
  51234. default: true,
  51235. form: "normal"
  51236. },
  51237. {
  51238. name: "Small",
  51239. height: math.unit(26, "feet"),
  51240. default: true,
  51241. form: "gigantamax"
  51242. },
  51243. {
  51244. name: "Large",
  51245. height: math.unit(78, "feet"),
  51246. form: "gigantamax"
  51247. },
  51248. ],
  51249. {
  51250. "normal": {
  51251. name: "Normal",
  51252. default: true
  51253. },
  51254. "gigantamax": {
  51255. name: "Gigantamax"
  51256. }
  51257. }
  51258. ))
  51259. characterMakers.push(() => makeCharacter(
  51260. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51261. {
  51262. anthroFront: {
  51263. height: math.unit(8, "feet"),
  51264. weight: math.unit(300, "lb"),
  51265. name: "Front",
  51266. image: {
  51267. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51268. extra: 1272/1176,
  51269. bottom: 53/1325
  51270. },
  51271. form: "anthro",
  51272. default: true
  51273. },
  51274. feralSide: {
  51275. height: math.unit(4, "feet"),
  51276. weight: math.unit(250, "lb"),
  51277. name: "Side",
  51278. image: {
  51279. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51280. extra: 731/621,
  51281. bottom: 0/731
  51282. },
  51283. form: "feral",
  51284. default: true
  51285. },
  51286. },
  51287. [
  51288. {
  51289. name: "Regular",
  51290. height: math.unit(8, "feet"),
  51291. form: "anthro"
  51292. },
  51293. {
  51294. name: "Macro",
  51295. height: math.unit(250, "feet"),
  51296. form: "anthro",
  51297. default: true
  51298. },
  51299. {
  51300. name: "Regular",
  51301. height: math.unit(4, "feet"),
  51302. form: "feral"
  51303. },
  51304. {
  51305. name: "Macro",
  51306. height: math.unit(125, "feet"),
  51307. form: "feral",
  51308. default: true
  51309. },
  51310. ],
  51311. {
  51312. "anthro": {
  51313. name: "Anthro",
  51314. default: true
  51315. },
  51316. "feral": {
  51317. name: "Feral",
  51318. },
  51319. }
  51320. ))
  51321. characterMakers.push(() => makeCharacter(
  51322. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51323. {
  51324. front: {
  51325. height: math.unit(11 + 10/12, "feet"),
  51326. weight: math.unit(1587, "kg"),
  51327. name: "Front",
  51328. image: {
  51329. source: "./media/characters/maple-javira-dragon/front.svg",
  51330. extra: 1136/744,
  51331. bottom: 73/1209
  51332. }
  51333. },
  51334. side: {
  51335. height: math.unit(11 + 10/12, "feet"),
  51336. weight: math.unit(1587, "kg"),
  51337. name: "Side",
  51338. image: {
  51339. source: "./media/characters/maple-javira-dragon/side.svg",
  51340. extra: 712/505,
  51341. bottom: 17/729
  51342. }
  51343. },
  51344. head: {
  51345. height: math.unit(8.05, "feet"),
  51346. name: "Head",
  51347. image: {
  51348. source: "./media/characters/maple-javira-dragon/head.svg",
  51349. extra: 1420/1344,
  51350. bottom: 0/1420
  51351. }
  51352. },
  51353. },
  51354. [
  51355. {
  51356. name: "Normal",
  51357. height: math.unit(11 + 10/12, "feet"),
  51358. default: true
  51359. },
  51360. ]
  51361. ))
  51362. characterMakers.push(() => makeCharacter(
  51363. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51364. {
  51365. front: {
  51366. height: math.unit(117, "cm"),
  51367. weight: math.unit(50, "kg"),
  51368. name: "Front",
  51369. image: {
  51370. source: "./media/characters/sonia-wyverntail/front.svg",
  51371. extra: 708/592,
  51372. bottom: 25/733
  51373. }
  51374. },
  51375. },
  51376. [
  51377. {
  51378. name: "Normal",
  51379. height: math.unit(117, "cm"),
  51380. default: true
  51381. },
  51382. ]
  51383. ))
  51384. characterMakers.push(() => makeCharacter(
  51385. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51386. {
  51387. front: {
  51388. height: math.unit(6 + 5/12, "feet"),
  51389. name: "Front",
  51390. image: {
  51391. source: "./media/characters/micah/front.svg",
  51392. extra: 1758/1546,
  51393. bottom: 214/1972
  51394. }
  51395. },
  51396. },
  51397. [
  51398. {
  51399. name: "Normal",
  51400. height: math.unit(6 + 5/12, "feet"),
  51401. default: true
  51402. },
  51403. ]
  51404. ))
  51405. characterMakers.push(() => makeCharacter(
  51406. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51407. {
  51408. front: {
  51409. height: math.unit(1.75, "meters"),
  51410. weight: math.unit(100, "kg"),
  51411. name: "Front",
  51412. image: {
  51413. source: "./media/characters/zarya/front.svg",
  51414. extra: 741/735,
  51415. bottom: 44/785
  51416. },
  51417. extraAttributes: {
  51418. "tailLength": {
  51419. name: "Tail Length",
  51420. power: 1,
  51421. type: "length",
  51422. base: math.unit(180, "cm")
  51423. },
  51424. "pawLength": {
  51425. name: "Paw Length",
  51426. power: 1,
  51427. type: "length",
  51428. base: math.unit(31, "cm")
  51429. },
  51430. }
  51431. },
  51432. side: {
  51433. height: math.unit(1.75, "meters"),
  51434. weight: math.unit(100, "kg"),
  51435. name: "Side",
  51436. image: {
  51437. source: "./media/characters/zarya/side.svg",
  51438. extra: 776/770,
  51439. bottom: 17/793
  51440. },
  51441. extraAttributes: {
  51442. "tailLength": {
  51443. name: "Tail Length",
  51444. power: 1,
  51445. type: "length",
  51446. base: math.unit(180, "cm")
  51447. },
  51448. "pawLength": {
  51449. name: "Paw Length",
  51450. power: 1,
  51451. type: "length",
  51452. base: math.unit(31, "cm")
  51453. },
  51454. }
  51455. },
  51456. back: {
  51457. height: math.unit(1.75, "meters"),
  51458. weight: math.unit(100, "kg"),
  51459. name: "Back",
  51460. image: {
  51461. source: "./media/characters/zarya/back.svg",
  51462. extra: 741/735,
  51463. bottom: 44/785
  51464. },
  51465. extraAttributes: {
  51466. "tailLength": {
  51467. name: "Tail Length",
  51468. power: 1,
  51469. type: "length",
  51470. base: math.unit(180, "cm")
  51471. },
  51472. "pawLength": {
  51473. name: "Paw Length",
  51474. power: 1,
  51475. type: "length",
  51476. base: math.unit(31, "cm")
  51477. },
  51478. }
  51479. },
  51480. frontNoTail: {
  51481. height: math.unit(1.75, "meters"),
  51482. weight: math.unit(100, "kg"),
  51483. name: "Front (No Tail)",
  51484. image: {
  51485. source: "./media/characters/zarya/front-no-tail.svg",
  51486. extra: 741/735,
  51487. bottom: 44/785
  51488. },
  51489. extraAttributes: {
  51490. "tailLength": {
  51491. name: "Tail Length",
  51492. power: 1,
  51493. type: "length",
  51494. base: math.unit(180, "cm")
  51495. },
  51496. "pawLength": {
  51497. name: "Paw Length",
  51498. power: 1,
  51499. type: "length",
  51500. base: math.unit(31, "cm")
  51501. },
  51502. }
  51503. },
  51504. dressed: {
  51505. height: math.unit(1.75, "meters"),
  51506. weight: math.unit(100, "kg"),
  51507. name: "Dressed",
  51508. image: {
  51509. source: "./media/characters/zarya/dressed.svg",
  51510. extra: 683/672,
  51511. bottom: 79/762
  51512. },
  51513. extraAttributes: {
  51514. "tailLength": {
  51515. name: "Tail Length",
  51516. power: 1,
  51517. type: "length",
  51518. base: math.unit(180, "cm")
  51519. },
  51520. "pawLength": {
  51521. name: "Paw Length",
  51522. power: 1,
  51523. type: "length",
  51524. base: math.unit(31, "cm")
  51525. },
  51526. }
  51527. },
  51528. },
  51529. [
  51530. {
  51531. name: "Micro",
  51532. height: math.unit(5, "cm")
  51533. },
  51534. {
  51535. name: "Normal",
  51536. height: math.unit(1.75, "meters"),
  51537. default: true
  51538. },
  51539. {
  51540. name: "Macro",
  51541. height: math.unit(122, "meters")
  51542. },
  51543. ]
  51544. ))
  51545. characterMakers.push(() => makeCharacter(
  51546. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51547. {
  51548. front: {
  51549. height: math.unit(7.5, "feet"),
  51550. name: "Front",
  51551. image: {
  51552. source: "./media/characters/sven-hatisson/front.svg",
  51553. extra: 917/857,
  51554. bottom: 42/959
  51555. }
  51556. },
  51557. back: {
  51558. height: math.unit(7.5, "feet"),
  51559. name: "Back",
  51560. image: {
  51561. source: "./media/characters/sven-hatisson/back.svg",
  51562. extra: 903/856,
  51563. bottom: 15/918
  51564. }
  51565. },
  51566. },
  51567. [
  51568. {
  51569. name: "Base Height",
  51570. height: math.unit(7.5, "feet")
  51571. },
  51572. {
  51573. name: "Usual Height",
  51574. height: math.unit(13.5, "feet"),
  51575. default: true
  51576. },
  51577. {
  51578. name: "Smaller Macro",
  51579. height: math.unit(85, "feet")
  51580. },
  51581. {
  51582. name: "Moderate Macro",
  51583. height: math.unit(320, "feet")
  51584. },
  51585. {
  51586. name: "Large Macro",
  51587. height: math.unit(1000, "feet")
  51588. },
  51589. {
  51590. name: "Largest Size",
  51591. height: math.unit(2, "miles")
  51592. },
  51593. ]
  51594. ))
  51595. characterMakers.push(() => makeCharacter(
  51596. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51597. {
  51598. side: {
  51599. height: math.unit(1.8, "meters"),
  51600. weight: math.unit(275, "kg"),
  51601. name: "Side",
  51602. image: {
  51603. source: "./media/characters/terra/side.svg",
  51604. extra: 1273/1147,
  51605. bottom: 0/1273
  51606. }
  51607. },
  51608. },
  51609. [
  51610. {
  51611. name: "Normal",
  51612. height: math.unit(16.2, "meters"),
  51613. default: true
  51614. },
  51615. ]
  51616. ))
  51617. characterMakers.push(() => makeCharacter(
  51618. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51619. {
  51620. borzoiFront: {
  51621. height: math.unit(6 + 9/12, "feet"),
  51622. name: "Front",
  51623. image: {
  51624. source: "./media/characters/rae/borzoi-front.svg",
  51625. extra: 1161/1098,
  51626. bottom: 31/1192
  51627. },
  51628. form: "borzoi",
  51629. default: true
  51630. },
  51631. werewolfFront: {
  51632. height: math.unit(8 + 7/12, "feet"),
  51633. name: "Front",
  51634. image: {
  51635. source: "./media/characters/rae/werewolf-front.svg",
  51636. extra: 1411/1334,
  51637. bottom: 127/1538
  51638. },
  51639. form: "werewolf",
  51640. default: true
  51641. },
  51642. },
  51643. [
  51644. {
  51645. name: "Normal",
  51646. height: math.unit(6 + 9/12, "feet"),
  51647. default: true,
  51648. form: "borzoi"
  51649. },
  51650. {
  51651. name: "Normal",
  51652. height: math.unit(8 + 7/12, "feet"),
  51653. default: true,
  51654. form: "werewolf"
  51655. },
  51656. ],
  51657. {
  51658. "borzoi": {
  51659. name: "Borzoi",
  51660. default: true
  51661. },
  51662. "werewolf": {
  51663. name: "Werewolf",
  51664. },
  51665. }
  51666. ))
  51667. characterMakers.push(() => makeCharacter(
  51668. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51669. {
  51670. front: {
  51671. height: math.unit(8 + 7/12, "feet"),
  51672. weight: math.unit(482, "lb"),
  51673. name: "Front",
  51674. image: {
  51675. source: "./media/characters/kit/front.svg",
  51676. extra: 1247/1103,
  51677. bottom: 41/1288
  51678. }
  51679. },
  51680. back: {
  51681. height: math.unit(8 + 7/12, "feet"),
  51682. weight: math.unit(482, "lb"),
  51683. name: "Back",
  51684. image: {
  51685. source: "./media/characters/kit/back.svg",
  51686. extra: 1252/1123,
  51687. bottom: 21/1273
  51688. }
  51689. },
  51690. paw: {
  51691. height: math.unit(1.46, "feet"),
  51692. name: "Paw",
  51693. image: {
  51694. source: "./media/characters/kit/paw.svg"
  51695. }
  51696. },
  51697. },
  51698. [
  51699. {
  51700. name: "Normal",
  51701. height: math.unit(2.61, "meters"),
  51702. default: true
  51703. },
  51704. {
  51705. name: "\"Tall\"",
  51706. height: math.unit(8.21, "meters")
  51707. },
  51708. {
  51709. name: "Tall",
  51710. height: math.unit(19.6, "meters")
  51711. },
  51712. {
  51713. name: "Very Tall",
  51714. height: math.unit(57.91, "meters")
  51715. },
  51716. {
  51717. name: "Semi-Macro",
  51718. height: math.unit(138.64, "meters")
  51719. },
  51720. {
  51721. name: "Macro",
  51722. height: math.unit(831.99, "meters")
  51723. },
  51724. {
  51725. name: "EX-Macro",
  51726. height: math.unit(96451121, "meters")
  51727. },
  51728. {
  51729. name: "S1-Omnipotent",
  51730. height: math.unit(4.42074e+9, "meters")
  51731. },
  51732. {
  51733. name: "S2-Omnipotent",
  51734. height: math.unit(9.42074e+17, "meters")
  51735. },
  51736. {
  51737. name: "Omnipotent",
  51738. height: math.unit(4.23112e+24, "meters")
  51739. },
  51740. {
  51741. name: "Hypergod",
  51742. height: math.unit(5.05176e+27, "meters")
  51743. },
  51744. {
  51745. name: "Hypergod-EX",
  51746. height: math.unit(9.45532e+49, "meters")
  51747. },
  51748. {
  51749. name: "Hypergod-SP",
  51750. height: math.unit(9.45532e+195, "meters")
  51751. },
  51752. ]
  51753. ))
  51754. characterMakers.push(() => makeCharacter(
  51755. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51756. {
  51757. side: {
  51758. height: math.unit(0.6, "meters"),
  51759. weight: math.unit(24, "kg"),
  51760. name: "Side",
  51761. image: {
  51762. source: "./media/characters/celeste/side.svg",
  51763. extra: 810/517,
  51764. bottom: 53/863
  51765. }
  51766. },
  51767. },
  51768. [
  51769. {
  51770. name: "Velociraptor",
  51771. height: math.unit(0.6, "meters"),
  51772. default: true
  51773. },
  51774. {
  51775. name: "Utahraptor",
  51776. height: math.unit(1.8, "meters")
  51777. },
  51778. {
  51779. name: "Gallimimus",
  51780. height: math.unit(4.0, "meters")
  51781. },
  51782. {
  51783. name: "Large",
  51784. height: math.unit(20, "meters")
  51785. },
  51786. {
  51787. name: "Planetary",
  51788. height: math.unit(50, "megameters")
  51789. },
  51790. {
  51791. name: "Stellar",
  51792. height: math.unit(1.5, "gigameters")
  51793. },
  51794. {
  51795. name: "Galactic",
  51796. height: math.unit(100, "exameters")
  51797. },
  51798. ]
  51799. ))
  51800. characterMakers.push(() => makeCharacter(
  51801. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51802. {
  51803. front: {
  51804. height: math.unit(6, "feet"),
  51805. weight: math.unit(210, "lb"),
  51806. name: "Front",
  51807. image: {
  51808. source: "./media/characters/glacia/front.svg",
  51809. extra: 958/901,
  51810. bottom: 45/1003
  51811. }
  51812. },
  51813. },
  51814. [
  51815. {
  51816. name: "Macro",
  51817. height: math.unit(1000, "meters"),
  51818. default: true
  51819. },
  51820. ]
  51821. ))
  51822. characterMakers.push(() => makeCharacter(
  51823. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51824. {
  51825. front: {
  51826. height: math.unit(4, "meters"),
  51827. name: "Front",
  51828. image: {
  51829. source: "./media/characters/giri/front.svg",
  51830. extra: 966/894,
  51831. bottom: 21/987
  51832. }
  51833. },
  51834. },
  51835. [
  51836. {
  51837. name: "Normal",
  51838. height: math.unit(4, "meters"),
  51839. default: true
  51840. },
  51841. ]
  51842. ))
  51843. characterMakers.push(() => makeCharacter(
  51844. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51845. {
  51846. back: {
  51847. height: math.unit(4, "feet"),
  51848. weight: math.unit(37, "lb"),
  51849. name: "Back",
  51850. image: {
  51851. source: "./media/characters/tin/back.svg",
  51852. extra: 845/780,
  51853. bottom: 28/873
  51854. }
  51855. },
  51856. },
  51857. [
  51858. {
  51859. name: "Normal",
  51860. height: math.unit(4, "feet"),
  51861. default: true
  51862. },
  51863. ]
  51864. ))
  51865. characterMakers.push(() => makeCharacter(
  51866. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51867. {
  51868. front: {
  51869. height: math.unit(25, "feet"),
  51870. name: "Front",
  51871. image: {
  51872. source: "./media/characters/cadenza-vivace/front.svg",
  51873. extra: 1842/1578,
  51874. bottom: 30/1872
  51875. }
  51876. },
  51877. },
  51878. [
  51879. {
  51880. name: "Macro",
  51881. height: math.unit(25, "feet"),
  51882. default: true
  51883. },
  51884. ]
  51885. ))
  51886. characterMakers.push(() => makeCharacter(
  51887. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51888. {
  51889. front: {
  51890. height: math.unit(10, "feet"),
  51891. weight: math.unit(625, "kg"),
  51892. name: "Front",
  51893. image: {
  51894. source: "./media/characters/zain/front.svg",
  51895. extra: 1682/1498,
  51896. bottom: 223/1905
  51897. }
  51898. },
  51899. back: {
  51900. height: math.unit(10, "feet"),
  51901. weight: math.unit(625, "kg"),
  51902. name: "Back",
  51903. image: {
  51904. source: "./media/characters/zain/back.svg",
  51905. extra: 1814/1657,
  51906. bottom: 152/1966
  51907. }
  51908. },
  51909. head: {
  51910. height: math.unit(10, "feet"),
  51911. weight: math.unit(625, "kg"),
  51912. name: "Head",
  51913. image: {
  51914. source: "./media/characters/zain/head.svg",
  51915. extra: 1059/762,
  51916. bottom: 0/1059
  51917. }
  51918. },
  51919. },
  51920. [
  51921. {
  51922. name: "Normal",
  51923. height: math.unit(10, "feet"),
  51924. default: true
  51925. },
  51926. ]
  51927. ))
  51928. characterMakers.push(() => makeCharacter(
  51929. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51930. {
  51931. front: {
  51932. height: math.unit(6 + 5/12, "feet"),
  51933. weight: math.unit(750, "lb"),
  51934. name: "Front",
  51935. image: {
  51936. source: "./media/characters/ruchex/front.svg",
  51937. extra: 877/820,
  51938. bottom: 17/894
  51939. },
  51940. extraAttributes: {
  51941. "width": {
  51942. name: "Width",
  51943. power: 1,
  51944. type: "length",
  51945. base: math.unit(4.757, "feet")
  51946. },
  51947. }
  51948. },
  51949. },
  51950. [
  51951. {
  51952. name: "Normal",
  51953. height: math.unit(6 + 5/12, "feet"),
  51954. default: true
  51955. },
  51956. ]
  51957. ))
  51958. characterMakers.push(() => makeCharacter(
  51959. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51960. {
  51961. dressedFront: {
  51962. height: math.unit(191, "cm"),
  51963. weight: math.unit(80, "kg"),
  51964. name: "Front",
  51965. image: {
  51966. source: "./media/characters/buster/dressed-front.svg",
  51967. extra: 1022/973,
  51968. bottom: 69/1091
  51969. }
  51970. },
  51971. dressedBack: {
  51972. height: math.unit(191, "cm"),
  51973. weight: math.unit(80, "kg"),
  51974. name: "Back",
  51975. image: {
  51976. source: "./media/characters/buster/dressed-back.svg",
  51977. extra: 1018/970,
  51978. bottom: 55/1073
  51979. }
  51980. },
  51981. nudeFront: {
  51982. height: math.unit(191, "cm"),
  51983. weight: math.unit(80, "kg"),
  51984. name: "Front (Nude)",
  51985. image: {
  51986. source: "./media/characters/buster/nude-front.svg",
  51987. extra: 1022/973,
  51988. bottom: 69/1091
  51989. }
  51990. },
  51991. nudeBack: {
  51992. height: math.unit(191, "cm"),
  51993. weight: math.unit(80, "kg"),
  51994. name: "Back (Nude)",
  51995. image: {
  51996. source: "./media/characters/buster/nude-back.svg",
  51997. extra: 1018/970,
  51998. bottom: 55/1073
  51999. }
  52000. },
  52001. dick: {
  52002. height: math.unit(2.59, "feet"),
  52003. name: "Dick",
  52004. image: {
  52005. source: "./media/characters/buster/dick.svg"
  52006. }
  52007. },
  52008. ass: {
  52009. height: math.unit(1.2, "feet"),
  52010. name: "Ass",
  52011. image: {
  52012. source: "./media/characters/buster/ass.svg"
  52013. }
  52014. },
  52015. },
  52016. [
  52017. {
  52018. name: "Normal",
  52019. height: math.unit(191, "cm"),
  52020. default: true
  52021. },
  52022. ]
  52023. ))
  52024. characterMakers.push(() => makeCharacter(
  52025. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52026. {
  52027. side: {
  52028. height: math.unit(8.1, "feet"),
  52029. weight: math.unit(3500, "lb"),
  52030. name: "Side",
  52031. image: {
  52032. source: "./media/characters/sonya/side.svg",
  52033. extra: 1730/1317,
  52034. bottom: 86/1816
  52035. }
  52036. },
  52037. },
  52038. [
  52039. {
  52040. name: "Normal",
  52041. height: math.unit(8.1, "feet"),
  52042. default: true
  52043. },
  52044. ]
  52045. ))
  52046. characterMakers.push(() => makeCharacter(
  52047. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52048. {
  52049. front: {
  52050. height: math.unit(6, "feet"),
  52051. weight: math.unit(150, "lb"),
  52052. name: "Front",
  52053. image: {
  52054. source: "./media/characters/cadence-andrysiak/front.svg",
  52055. extra: 1164/1121,
  52056. bottom: 60/1224
  52057. }
  52058. },
  52059. back: {
  52060. height: math.unit(6, "feet"),
  52061. weight: math.unit(150, "lb"),
  52062. name: "Back",
  52063. image: {
  52064. source: "./media/characters/cadence-andrysiak/back.svg",
  52065. extra: 1200/1165,
  52066. bottom: 9/1209
  52067. }
  52068. },
  52069. dressed: {
  52070. height: math.unit(6, "feet"),
  52071. weight: math.unit(150, "lb"),
  52072. name: "Dressed",
  52073. image: {
  52074. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52075. extra: 1164/1121,
  52076. bottom: 60/1224
  52077. }
  52078. },
  52079. },
  52080. [
  52081. {
  52082. name: "Micro",
  52083. height: math.unit(1, "mm")
  52084. },
  52085. {
  52086. name: "Normal",
  52087. height: math.unit(6, "feet"),
  52088. default: true
  52089. },
  52090. ]
  52091. ))
  52092. characterMakers.push(() => makeCharacter(
  52093. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52094. {
  52095. front: {
  52096. height: math.unit(60, "inches"),
  52097. weight: math.unit(16, "lb"),
  52098. preyCapacity: math.unit(80, "liters"),
  52099. name: "Front",
  52100. image: {
  52101. source: "./media/characters/penny-lynx/front.svg",
  52102. extra: 1959/1769,
  52103. bottom: 49/2008
  52104. }
  52105. },
  52106. },
  52107. [
  52108. {
  52109. name: "Nokia",
  52110. height: math.unit(2, "inches")
  52111. },
  52112. {
  52113. name: "Desktop",
  52114. height: math.unit(24, "inches")
  52115. },
  52116. {
  52117. name: "TV",
  52118. height: math.unit(60, "inches")
  52119. },
  52120. {
  52121. name: "Jumbotron",
  52122. height: math.unit(12, "feet")
  52123. },
  52124. {
  52125. name: "Billboard",
  52126. height: math.unit(48, "feet"),
  52127. default: true
  52128. },
  52129. {
  52130. name: "IMAX",
  52131. height: math.unit(96, "feet")
  52132. },
  52133. {
  52134. name: "SINGULARITY",
  52135. height: math.unit(864938, "miles")
  52136. },
  52137. ]
  52138. ))
  52139. characterMakers.push(() => makeCharacter(
  52140. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52141. {
  52142. front: {
  52143. height: math.unit(5 + 4/12, "feet"),
  52144. weight: math.unit(230, "lb"),
  52145. name: "Front",
  52146. image: {
  52147. source: "./media/characters/sukebe/front.svg",
  52148. extra: 2130/2038,
  52149. bottom: 90/2220
  52150. }
  52151. },
  52152. back: {
  52153. height: math.unit(3.48, "feet"),
  52154. weight: math.unit(230, "lb"),
  52155. name: "Back",
  52156. image: {
  52157. source: "./media/characters/sukebe/back.svg",
  52158. extra: 1670/1604,
  52159. bottom: 0/1670
  52160. }
  52161. },
  52162. },
  52163. [
  52164. {
  52165. name: "Normal",
  52166. height: math.unit(5 + 4/12, "feet"),
  52167. default: true
  52168. },
  52169. ]
  52170. ))
  52171. characterMakers.push(() => makeCharacter(
  52172. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52173. {
  52174. front: {
  52175. height: math.unit(6, "feet"),
  52176. name: "Front",
  52177. image: {
  52178. source: "./media/characters/nylla/front.svg",
  52179. extra: 1868/1699,
  52180. bottom: 97/1965
  52181. }
  52182. },
  52183. back: {
  52184. height: math.unit(6, "feet"),
  52185. name: "Back",
  52186. image: {
  52187. source: "./media/characters/nylla/back.svg",
  52188. extra: 1889/1712,
  52189. bottom: 93/1982
  52190. }
  52191. },
  52192. frontNsfw: {
  52193. height: math.unit(6, "feet"),
  52194. name: "Front (NSFW)",
  52195. image: {
  52196. source: "./media/characters/nylla/front-nsfw.svg",
  52197. extra: 1868/1699,
  52198. bottom: 97/1965
  52199. },
  52200. extraAttributes: {
  52201. "dickLength": {
  52202. name: "Dick Length",
  52203. power: 1,
  52204. type: "length",
  52205. base: math.unit(1.4, "feet")
  52206. },
  52207. "cumVolume": {
  52208. name: "Cum Volume",
  52209. power: 3,
  52210. type: "volume",
  52211. base: math.unit(100, "mL")
  52212. },
  52213. }
  52214. },
  52215. backNsfw: {
  52216. height: math.unit(6, "feet"),
  52217. name: "Back (NSFW)",
  52218. image: {
  52219. source: "./media/characters/nylla/back-nsfw.svg",
  52220. extra: 1889/1712,
  52221. bottom: 93/1982
  52222. }
  52223. },
  52224. maw: {
  52225. height: math.unit(2.10, "feet"),
  52226. name: "Maw",
  52227. image: {
  52228. source: "./media/characters/nylla/maw.svg"
  52229. }
  52230. },
  52231. paws: {
  52232. height: math.unit(2.06, "feet"),
  52233. name: "Paws",
  52234. image: {
  52235. source: "./media/characters/nylla/paws.svg"
  52236. }
  52237. },
  52238. muzzle: {
  52239. height: math.unit(0.61, "feet"),
  52240. name: "Muzzle",
  52241. image: {
  52242. source: "./media/characters/nylla/muzzle.svg"
  52243. }
  52244. },
  52245. sheath: {
  52246. height: math.unit(1.305, "feet"),
  52247. name: "Sheath",
  52248. image: {
  52249. source: "./media/characters/nylla/sheath.svg"
  52250. }
  52251. },
  52252. },
  52253. [
  52254. {
  52255. name: "Micro",
  52256. height: math.unit(7.5, "inches")
  52257. },
  52258. {
  52259. name: "Normal",
  52260. height: math.unit(7, "feet"),
  52261. default: true
  52262. },
  52263. {
  52264. name: "Macro",
  52265. height: math.unit(60, "feet")
  52266. },
  52267. {
  52268. name: "Mega",
  52269. height: math.unit(200, "feet")
  52270. },
  52271. ]
  52272. ))
  52273. characterMakers.push(() => makeCharacter(
  52274. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52275. {
  52276. front: {
  52277. height: math.unit(10, "feet"),
  52278. weight: math.unit(2300, "lb"),
  52279. name: "Front",
  52280. image: {
  52281. source: "./media/characters/hunt3r/front.svg",
  52282. extra: 1909/1742,
  52283. bottom: 46/1955
  52284. }
  52285. },
  52286. },
  52287. [
  52288. {
  52289. name: "Normal",
  52290. height: math.unit(10, "feet"),
  52291. default: true
  52292. },
  52293. ]
  52294. ))
  52295. characterMakers.push(() => makeCharacter(
  52296. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52297. {
  52298. dressed: {
  52299. height: math.unit(11, "feet"),
  52300. weight: math.unit(18500, "lb"),
  52301. preyCapacity: math.unit(9, "people"),
  52302. name: "Dressed",
  52303. image: {
  52304. source: "./media/characters/cylphis/dressed.svg",
  52305. extra: 1028/1003,
  52306. bottom: 75/1103
  52307. },
  52308. },
  52309. undressed: {
  52310. height: math.unit(11, "feet"),
  52311. weight: math.unit(18500, "lb"),
  52312. preyCapacity: math.unit(9, "people"),
  52313. name: "Undressed",
  52314. image: {
  52315. source: "./media/characters/cylphis/undressed.svg",
  52316. extra: 1028/1003,
  52317. bottom: 75/1103
  52318. }
  52319. },
  52320. full: {
  52321. height: math.unit(11, "feet"),
  52322. weight: math.unit(18500 + 150*9, "lb"),
  52323. preyCapacity: math.unit(9, "people"),
  52324. name: "Full",
  52325. image: {
  52326. source: "./media/characters/cylphis/full.svg",
  52327. extra: 1028/1003,
  52328. bottom: 75/1103
  52329. }
  52330. },
  52331. },
  52332. [
  52333. {
  52334. name: "Small",
  52335. height: math.unit(8, "feet")
  52336. },
  52337. {
  52338. name: "Normal",
  52339. height: math.unit(11, "feet"),
  52340. default: true
  52341. },
  52342. ]
  52343. ))
  52344. characterMakers.push(() => makeCharacter(
  52345. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52346. {
  52347. front: {
  52348. height: math.unit(2 + 7/12, "feet"),
  52349. name: "Front",
  52350. image: {
  52351. source: "./media/characters/orishan/front.svg",
  52352. extra: 1058/1023,
  52353. bottom: 23/1081
  52354. }
  52355. },
  52356. back: {
  52357. height: math.unit(2 + 7/12, "feet"),
  52358. name: "Back",
  52359. image: {
  52360. source: "./media/characters/orishan/back.svg",
  52361. extra: 1058/1023,
  52362. bottom: 23/1081
  52363. }
  52364. },
  52365. },
  52366. [
  52367. {
  52368. name: "Micro",
  52369. height: math.unit(2, "cm")
  52370. },
  52371. {
  52372. name: "Normal",
  52373. height: math.unit(2 + 7/12, "feet"),
  52374. default: true
  52375. },
  52376. ]
  52377. ))
  52378. characterMakers.push(() => makeCharacter(
  52379. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52380. {
  52381. front: {
  52382. height: math.unit(3, "meters"),
  52383. weight: math.unit(508, "kg"),
  52384. name: "Front",
  52385. image: {
  52386. source: "./media/characters/seranis/front.svg",
  52387. extra: 1478/1454,
  52388. bottom: 41/1519
  52389. }
  52390. },
  52391. },
  52392. [
  52393. {
  52394. name: "Normal",
  52395. height: math.unit(3, "meters"),
  52396. default: true
  52397. },
  52398. {
  52399. name: "Macro",
  52400. height: math.unit(108, "meters")
  52401. },
  52402. {
  52403. name: "Megamacro",
  52404. height: math.unit(1250, "meters")
  52405. },
  52406. ]
  52407. ))
  52408. characterMakers.push(() => makeCharacter(
  52409. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52410. {
  52411. undressed: {
  52412. height: math.unit(5 + 3/12, "feet"),
  52413. name: "Undressed",
  52414. image: {
  52415. source: "./media/characters/ankou/undressed.svg",
  52416. extra: 1301/1213,
  52417. bottom: 87/1388
  52418. }
  52419. },
  52420. dressed: {
  52421. height: math.unit(5 + 3/12, "feet"),
  52422. name: "Dressed",
  52423. image: {
  52424. source: "./media/characters/ankou/dressed.svg",
  52425. extra: 1301/1213,
  52426. bottom: 87/1388
  52427. }
  52428. },
  52429. head: {
  52430. height: math.unit(1.61, "feet"),
  52431. name: "Head",
  52432. image: {
  52433. source: "./media/characters/ankou/head.svg"
  52434. }
  52435. },
  52436. },
  52437. [
  52438. {
  52439. name: "Normal",
  52440. height: math.unit(5 + 3/12, "feet"),
  52441. default: true
  52442. },
  52443. ]
  52444. ))
  52445. characterMakers.push(() => makeCharacter(
  52446. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52447. {
  52448. side: {
  52449. height: math.unit(6 + 3/12, "feet"),
  52450. weight: math.unit(200, "kg"),
  52451. name: "Side",
  52452. image: {
  52453. source: "./media/characters/juniper-skunktaur/side.svg",
  52454. extra: 1574/1229,
  52455. bottom: 38/1612
  52456. }
  52457. },
  52458. front: {
  52459. height: math.unit(6 + 3/12, "feet"),
  52460. weight: math.unit(200, "kg"),
  52461. name: "Front",
  52462. image: {
  52463. source: "./media/characters/juniper-skunktaur/front.svg",
  52464. extra: 1337/1278,
  52465. bottom: 22/1359
  52466. }
  52467. },
  52468. back: {
  52469. height: math.unit(6 + 3/12, "feet"),
  52470. weight: math.unit(200, "kg"),
  52471. name: "Back",
  52472. image: {
  52473. source: "./media/characters/juniper-skunktaur/back.svg",
  52474. extra: 1618/1273,
  52475. bottom: 13/1631
  52476. }
  52477. },
  52478. top: {
  52479. height: math.unit(2.62, "feet"),
  52480. weight: math.unit(200, "kg"),
  52481. name: "Top",
  52482. image: {
  52483. source: "./media/characters/juniper-skunktaur/top.svg"
  52484. }
  52485. },
  52486. },
  52487. [
  52488. {
  52489. name: "Normal",
  52490. height: math.unit(6 + 3/12, "feet"),
  52491. default: true
  52492. },
  52493. ]
  52494. ))
  52495. characterMakers.push(() => makeCharacter(
  52496. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52497. {
  52498. front: {
  52499. height: math.unit(20.5, "feet"),
  52500. name: "Front",
  52501. image: {
  52502. source: "./media/characters/rei/front.svg",
  52503. extra: 1349/1195,
  52504. bottom: 31/1380
  52505. }
  52506. },
  52507. back: {
  52508. height: math.unit(20.5, "feet"),
  52509. name: "Back",
  52510. image: {
  52511. source: "./media/characters/rei/back.svg",
  52512. extra: 1358/1204,
  52513. bottom: 22/1380
  52514. }
  52515. },
  52516. pawsDigi: {
  52517. height: math.unit(3.45, "feet"),
  52518. name: "Paws (Digi)",
  52519. image: {
  52520. source: "./media/characters/rei/paws-digi.svg"
  52521. }
  52522. },
  52523. pawsPlanti: {
  52524. height: math.unit(3.45, "feet"),
  52525. name: "Paws (Planti)",
  52526. image: {
  52527. source: "./media/characters/rei/paws-planti.svg"
  52528. }
  52529. },
  52530. },
  52531. [
  52532. {
  52533. name: "Normal",
  52534. height: math.unit(20.5, "feet"),
  52535. default: true
  52536. },
  52537. ]
  52538. ))
  52539. characterMakers.push(() => makeCharacter(
  52540. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52541. {
  52542. front: {
  52543. height: math.unit(5 + 11/12, "feet"),
  52544. name: "Front",
  52545. image: {
  52546. source: "./media/characters/carina/front.svg",
  52547. extra: 1720/1449,
  52548. bottom: 14/1734
  52549. }
  52550. },
  52551. back: {
  52552. height: math.unit(5 + 11/12, "feet"),
  52553. name: "Back",
  52554. image: {
  52555. source: "./media/characters/carina/back.svg",
  52556. extra: 1493/1445,
  52557. bottom: 17/1510
  52558. }
  52559. },
  52560. paw: {
  52561. height: math.unit(0.92, "feet"),
  52562. name: "Paw",
  52563. image: {
  52564. source: "./media/characters/carina/paw.svg"
  52565. }
  52566. },
  52567. },
  52568. [
  52569. {
  52570. name: "Normal",
  52571. height: math.unit(5 + 11/12, "feet"),
  52572. default: true
  52573. },
  52574. ]
  52575. ))
  52576. characterMakers.push(() => makeCharacter(
  52577. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52578. {
  52579. normal_front: {
  52580. height: math.unit(4.88, "meters"),
  52581. name: "Front",
  52582. image: {
  52583. source: "./media/characters/maya/normal-front.svg",
  52584. extra: 1222/1145,
  52585. bottom: 57/1279
  52586. },
  52587. form: "normal",
  52588. default: true
  52589. },
  52590. monstrous_front: {
  52591. height: math.unit(10, "meters"),
  52592. name: "Front",
  52593. image: {
  52594. source: "./media/characters/maya/monstrous-front.svg",
  52595. extra: 1523/1109,
  52596. bottom: 113/1636
  52597. },
  52598. form: "monstrous",
  52599. extraAttributes: {
  52600. "swallowSize": {
  52601. name: "Tailmaw Bite Size",
  52602. power: 3,
  52603. type: "volume",
  52604. base: math.unit(43000, "liters")
  52605. },
  52606. }
  52607. },
  52608. taur_front: {
  52609. height: math.unit(10, "meters"),
  52610. name: "Front",
  52611. image: {
  52612. source: "./media/characters/maya/taur-front.svg",
  52613. extra: 743/506,
  52614. bottom: 101/844
  52615. },
  52616. form: "taur",
  52617. },
  52618. },
  52619. [
  52620. {
  52621. name: "Normal",
  52622. height: math.unit(4.88, "meters"),
  52623. default: true,
  52624. form: "normal"
  52625. },
  52626. {
  52627. name: "Macro",
  52628. height: math.unit(38.1, "meters"),
  52629. form: "normal"
  52630. },
  52631. {
  52632. name: "Macro+",
  52633. height: math.unit(152.4, "meters"),
  52634. form: "normal"
  52635. },
  52636. {
  52637. name: "Macro++",
  52638. height: math.unit(16.09, "km"),
  52639. form: "normal"
  52640. },
  52641. {
  52642. name: "Mega-macro",
  52643. height: math.unit(700, "megameters"),
  52644. form: "normal"
  52645. },
  52646. {
  52647. name: "Satiated",
  52648. height: math.unit(10, "meters"),
  52649. default: true,
  52650. form: "monstrous"
  52651. },
  52652. {
  52653. name: "Hungry",
  52654. height: math.unit(75, "meters"),
  52655. form: "monstrous"
  52656. },
  52657. {
  52658. name: "Ravenous",
  52659. height: math.unit(500, "meters"),
  52660. form: "monstrous"
  52661. },
  52662. {
  52663. name: "\"Normal\"",
  52664. height: math.unit(10, "meters"),
  52665. form: "taur"
  52666. },
  52667. {
  52668. name: "Macro",
  52669. height: math.unit(50, "meters"),
  52670. form: "taur"
  52671. },
  52672. ],
  52673. {
  52674. "normal": {
  52675. name: "Normal",
  52676. default: true
  52677. },
  52678. "monstrous": {
  52679. name: "Monstrous",
  52680. },
  52681. "taur": {
  52682. name: "Taur",
  52683. },
  52684. }
  52685. ))
  52686. characterMakers.push(() => makeCharacter(
  52687. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52688. {
  52689. front: {
  52690. height: math.unit(6 + 2/12, "feet"),
  52691. weight: math.unit(500, "lb"),
  52692. preyCapacity: math.unit(4, "people"),
  52693. name: "Front",
  52694. image: {
  52695. source: "./media/characters/yepir/front.svg"
  52696. }
  52697. },
  52698. side: {
  52699. height: math.unit(6 + 2/12, "feet"),
  52700. weight: math.unit(500, "lb"),
  52701. preyCapacity: math.unit(4, "people"),
  52702. name: "Side",
  52703. image: {
  52704. source: "./media/characters/yepir/side.svg"
  52705. }
  52706. },
  52707. paw: {
  52708. height: math.unit(1.05, "feet"),
  52709. name: "Paw",
  52710. image: {
  52711. source: "./media/characters/yepir/paw.svg"
  52712. }
  52713. },
  52714. },
  52715. [
  52716. {
  52717. name: "Normal",
  52718. height: math.unit(6 + 2/12, "feet"),
  52719. default: true
  52720. },
  52721. ]
  52722. ))
  52723. characterMakers.push(() => makeCharacter(
  52724. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52725. {
  52726. front: {
  52727. height: math.unit(5 + 4/12, "feet"),
  52728. name: "Front",
  52729. image: {
  52730. source: "./media/characters/russec/front.svg",
  52731. extra: 1926/1626,
  52732. bottom: 72/1998
  52733. }
  52734. },
  52735. back: {
  52736. height: math.unit(5 + 4/12, "feet"),
  52737. name: "Back",
  52738. image: {
  52739. source: "./media/characters/russec/back.svg",
  52740. extra: 1910/1591,
  52741. bottom: 48/1958
  52742. }
  52743. },
  52744. },
  52745. [
  52746. {
  52747. name: "Small",
  52748. height: math.unit(5 + 4/12, "feet")
  52749. },
  52750. {
  52751. name: "Normal",
  52752. height: math.unit(72, "feet"),
  52753. default: true
  52754. },
  52755. ]
  52756. ))
  52757. characterMakers.push(() => makeCharacter(
  52758. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52759. {
  52760. side: {
  52761. height: math.unit(12, "feet"),
  52762. name: "Side",
  52763. image: {
  52764. source: "./media/characters/cianus/side.svg",
  52765. extra: 808/526,
  52766. bottom: 61/869
  52767. }
  52768. },
  52769. },
  52770. [
  52771. {
  52772. name: "Normal",
  52773. height: math.unit(12, "feet"),
  52774. default: true
  52775. },
  52776. ]
  52777. ))
  52778. characterMakers.push(() => makeCharacter(
  52779. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52780. {
  52781. front: {
  52782. height: math.unit(9 + 6/12, "feet"),
  52783. weight: math.unit(300, "lb"),
  52784. name: "Front",
  52785. image: {
  52786. source: "./media/characters/ahab/front.svg",
  52787. extra: 1897/1868,
  52788. bottom: 121/2018
  52789. }
  52790. },
  52791. frontNsfw: {
  52792. height: math.unit(9 + 6/12, "feet"),
  52793. weight: math.unit(300, "lb"),
  52794. name: "Front-nsfw",
  52795. image: {
  52796. source: "./media/characters/ahab/front-nsfw.svg",
  52797. extra: 1897/1868,
  52798. bottom: 121/2018
  52799. }
  52800. },
  52801. },
  52802. [
  52803. {
  52804. name: "Normal",
  52805. height: math.unit(9 + 6/12, "feet")
  52806. },
  52807. {
  52808. name: "Macro",
  52809. height: math.unit(657, "feet"),
  52810. default: true
  52811. },
  52812. ]
  52813. ))
  52814. characterMakers.push(() => makeCharacter(
  52815. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52816. {
  52817. front: {
  52818. height: math.unit(2.69, "meters"),
  52819. weight: math.unit(132, "kg"),
  52820. name: "Front",
  52821. image: {
  52822. source: "./media/characters/aarkus/front.svg",
  52823. extra: 1400/1231,
  52824. bottom: 34/1434
  52825. }
  52826. },
  52827. back: {
  52828. height: math.unit(2.69, "meters"),
  52829. weight: math.unit(132, "kg"),
  52830. name: "Back",
  52831. image: {
  52832. source: "./media/characters/aarkus/back.svg",
  52833. extra: 1381/1218,
  52834. bottom: 30/1411
  52835. }
  52836. },
  52837. frontNsfw: {
  52838. height: math.unit(2.69, "meters"),
  52839. weight: math.unit(132, "kg"),
  52840. name: "Front (NSFW)",
  52841. image: {
  52842. source: "./media/characters/aarkus/front-nsfw.svg",
  52843. extra: 1400/1231,
  52844. bottom: 34/1434
  52845. }
  52846. },
  52847. foot: {
  52848. height: math.unit(1.45, "feet"),
  52849. name: "Foot",
  52850. image: {
  52851. source: "./media/characters/aarkus/foot.svg"
  52852. }
  52853. },
  52854. head: {
  52855. height: math.unit(2.85, "feet"),
  52856. name: "Head",
  52857. image: {
  52858. source: "./media/characters/aarkus/head.svg"
  52859. }
  52860. },
  52861. headAlt: {
  52862. height: math.unit(3.07, "feet"),
  52863. name: "Head (Alt)",
  52864. image: {
  52865. source: "./media/characters/aarkus/head-alt.svg"
  52866. }
  52867. },
  52868. mouth: {
  52869. height: math.unit(1.25, "feet"),
  52870. name: "Mouth",
  52871. image: {
  52872. source: "./media/characters/aarkus/mouth.svg"
  52873. }
  52874. },
  52875. dick: {
  52876. height: math.unit(1.77, "feet"),
  52877. name: "Dick",
  52878. image: {
  52879. source: "./media/characters/aarkus/dick.svg"
  52880. }
  52881. },
  52882. },
  52883. [
  52884. {
  52885. name: "Normal",
  52886. height: math.unit(2.69, "meters"),
  52887. default: true
  52888. },
  52889. {
  52890. name: "Macro",
  52891. height: math.unit(269, "meters")
  52892. },
  52893. {
  52894. name: "Macro+",
  52895. height: math.unit(672.5, "meters")
  52896. },
  52897. {
  52898. name: "Megamacro",
  52899. height: math.unit(2.017, "km")
  52900. },
  52901. ]
  52902. ))
  52903. characterMakers.push(() => makeCharacter(
  52904. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52905. {
  52906. front: {
  52907. height: math.unit(23.47, "cm"),
  52908. weight: math.unit(600, "grams"),
  52909. name: "Front",
  52910. image: {
  52911. source: "./media/characters/diode/front.svg",
  52912. extra: 1778/1396,
  52913. bottom: 95/1873
  52914. }
  52915. },
  52916. side: {
  52917. height: math.unit(23.47, "cm"),
  52918. weight: math.unit(600, "grams"),
  52919. name: "Side",
  52920. image: {
  52921. source: "./media/characters/diode/side.svg",
  52922. extra: 1831/1404,
  52923. bottom: 86/1917
  52924. }
  52925. },
  52926. wings: {
  52927. height: math.unit(0.683, "feet"),
  52928. name: "Wings",
  52929. image: {
  52930. source: "./media/characters/diode/wings.svg"
  52931. }
  52932. },
  52933. },
  52934. [
  52935. {
  52936. name: "Normal",
  52937. height: math.unit(23.47, "cm"),
  52938. default: true
  52939. },
  52940. ]
  52941. ))
  52942. characterMakers.push(() => makeCharacter(
  52943. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52944. {
  52945. front: {
  52946. height: math.unit(6 + 3/12, "feet"),
  52947. weight: math.unit(250, "lb"),
  52948. name: "Front",
  52949. image: {
  52950. source: "./media/characters/reika/front.svg",
  52951. extra: 1120/1078,
  52952. bottom: 86/1206
  52953. }
  52954. },
  52955. },
  52956. [
  52957. {
  52958. name: "Normal",
  52959. height: math.unit(6 + 3/12, "feet"),
  52960. default: true
  52961. },
  52962. ]
  52963. ))
  52964. characterMakers.push(() => makeCharacter(
  52965. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52966. {
  52967. front: {
  52968. height: math.unit(16 + 8/12, "feet"),
  52969. weight: math.unit(9000, "lb"),
  52970. name: "Front",
  52971. image: {
  52972. source: "./media/characters/lokuto-takama/front.svg",
  52973. extra: 1774/1632,
  52974. bottom: 147/1921
  52975. },
  52976. extraAttributes: {
  52977. "bustWidth": {
  52978. name: "Bust Width",
  52979. power: 1,
  52980. type: "length",
  52981. base: math.unit(2.4, "meters")
  52982. },
  52983. "breastWeight": {
  52984. name: "Breast Weight",
  52985. power: 3,
  52986. type: "mass",
  52987. base: math.unit(1000, "kg")
  52988. },
  52989. }
  52990. },
  52991. },
  52992. [
  52993. {
  52994. name: "Normal",
  52995. height: math.unit(16 + 8/12, "feet"),
  52996. default: true
  52997. },
  52998. ]
  52999. ))
  53000. characterMakers.push(() => makeCharacter(
  53001. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53002. {
  53003. front: {
  53004. height: math.unit(10, "cm"),
  53005. weight: math.unit(850, "grams"),
  53006. name: "Front",
  53007. image: {
  53008. source: "./media/characters/owak-bone/front.svg",
  53009. extra: 1965/1801,
  53010. bottom: 31/1996
  53011. }
  53012. },
  53013. },
  53014. [
  53015. {
  53016. name: "Normal",
  53017. height: math.unit(10, "cm"),
  53018. default: true
  53019. },
  53020. ]
  53021. ))
  53022. characterMakers.push(() => makeCharacter(
  53023. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53024. {
  53025. front: {
  53026. height: math.unit(2 + 6/12, "feet"),
  53027. weight: math.unit(9, "lb"),
  53028. name: "Front",
  53029. image: {
  53030. source: "./media/characters/muffin/front.svg",
  53031. extra: 1220/1195,
  53032. bottom: 84/1304
  53033. }
  53034. },
  53035. },
  53036. [
  53037. {
  53038. name: "Normal",
  53039. height: math.unit(2 + 6/12, "feet"),
  53040. default: true
  53041. },
  53042. ]
  53043. ))
  53044. characterMakers.push(() => makeCharacter(
  53045. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53046. {
  53047. front: {
  53048. height: math.unit(7, "feet"),
  53049. name: "Front",
  53050. image: {
  53051. source: "./media/characters/chimera/front.svg",
  53052. extra: 1752/1614,
  53053. bottom: 68/1820
  53054. }
  53055. },
  53056. },
  53057. [
  53058. {
  53059. name: "Normal",
  53060. height: math.unit(7, "feet")
  53061. },
  53062. {
  53063. name: "Gigamacro",
  53064. height: math.unit(2.9, "gigameters"),
  53065. default: true
  53066. },
  53067. {
  53068. name: "Universal",
  53069. height: math.unit(1.56e26, "yottameters")
  53070. },
  53071. ]
  53072. ))
  53073. characterMakers.push(() => makeCharacter(
  53074. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53075. {
  53076. front: {
  53077. height: math.unit(3, "feet"),
  53078. weight: math.unit(20, "lb"),
  53079. name: "Front",
  53080. image: {
  53081. source: "./media/characters/kit-fennec-fox/front.svg",
  53082. extra: 1027/932,
  53083. bottom: 16/1043
  53084. }
  53085. },
  53086. back: {
  53087. height: math.unit(3, "feet"),
  53088. weight: math.unit(20, "lb"),
  53089. name: "Back",
  53090. image: {
  53091. source: "./media/characters/kit-fennec-fox/back.svg",
  53092. extra: 1027/932,
  53093. bottom: 16/1043
  53094. }
  53095. },
  53096. },
  53097. [
  53098. {
  53099. name: "Normal",
  53100. height: math.unit(3, "feet"),
  53101. default: true
  53102. },
  53103. ]
  53104. ))
  53105. characterMakers.push(() => makeCharacter(
  53106. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53107. {
  53108. front: {
  53109. height: math.unit(167, "cm"),
  53110. name: "Front",
  53111. image: {
  53112. source: "./media/characters/blue-otter/front.svg",
  53113. extra: 1951/1920,
  53114. bottom: 31/1982
  53115. }
  53116. },
  53117. },
  53118. [
  53119. {
  53120. name: "Otter-Sized",
  53121. height: math.unit(100, "cm")
  53122. },
  53123. {
  53124. name: "Normal",
  53125. height: math.unit(167, "cm"),
  53126. default: true
  53127. },
  53128. ]
  53129. ))
  53130. characterMakers.push(() => makeCharacter(
  53131. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53132. {
  53133. front: {
  53134. height: math.unit(4 + 4/12, "feet"),
  53135. name: "Front",
  53136. image: {
  53137. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53138. extra: 1072/1067,
  53139. bottom: 117/1189
  53140. }
  53141. },
  53142. back: {
  53143. height: math.unit(4 + 4/12, "feet"),
  53144. name: "Back",
  53145. image: {
  53146. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53147. extra: 1135/1129,
  53148. bottom: 57/1192
  53149. }
  53150. },
  53151. head: {
  53152. height: math.unit(1.77, "feet"),
  53153. name: "Head",
  53154. image: {
  53155. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53156. }
  53157. },
  53158. },
  53159. [
  53160. {
  53161. name: "Normal",
  53162. height: math.unit(4 + 4/12, "feet"),
  53163. default: true
  53164. },
  53165. ]
  53166. ))
  53167. characterMakers.push(() => makeCharacter(
  53168. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53169. {
  53170. front: {
  53171. height: math.unit(2, "inches"),
  53172. name: "Front",
  53173. image: {
  53174. source: "./media/characters/carley-hartford/front.svg",
  53175. extra: 1035/988,
  53176. bottom: 23/1058
  53177. }
  53178. },
  53179. back: {
  53180. height: math.unit(2, "inches"),
  53181. name: "Back",
  53182. image: {
  53183. source: "./media/characters/carley-hartford/back.svg",
  53184. extra: 1035/988,
  53185. bottom: 23/1058
  53186. }
  53187. },
  53188. dressed: {
  53189. height: math.unit(2, "inches"),
  53190. name: "Dressed",
  53191. image: {
  53192. source: "./media/characters/carley-hartford/dressed.svg",
  53193. extra: 651/620,
  53194. bottom: 0/651
  53195. }
  53196. },
  53197. },
  53198. [
  53199. {
  53200. name: "Micro",
  53201. height: math.unit(2, "inches"),
  53202. default: true
  53203. },
  53204. {
  53205. name: "Macro",
  53206. height: math.unit(6 + 3/12, "feet")
  53207. },
  53208. ]
  53209. ))
  53210. characterMakers.push(() => makeCharacter(
  53211. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53212. {
  53213. front: {
  53214. height: math.unit(2 + 3/12, "feet"),
  53215. weight: math.unit(15 + 7/16, "lb"),
  53216. name: "Front",
  53217. image: {
  53218. source: "./media/characters/duke/front.svg",
  53219. extra: 910/815,
  53220. bottom: 30/940
  53221. }
  53222. },
  53223. },
  53224. [
  53225. {
  53226. name: "Normal",
  53227. height: math.unit(2 + 3/12, "feet"),
  53228. default: true
  53229. },
  53230. ]
  53231. ))
  53232. characterMakers.push(() => makeCharacter(
  53233. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53234. {
  53235. front: {
  53236. height: math.unit(5 + 4/12, "feet"),
  53237. weight: math.unit(156, "lb"),
  53238. name: "Front",
  53239. image: {
  53240. source: "./media/characters/dein/front.svg",
  53241. extra: 855/815,
  53242. bottom: 48/903
  53243. }
  53244. },
  53245. side: {
  53246. height: math.unit(5 + 4/12, "feet"),
  53247. weight: math.unit(156, "lb"),
  53248. name: "side",
  53249. image: {
  53250. source: "./media/characters/dein/side.svg",
  53251. extra: 846/803,
  53252. bottom: 25/871
  53253. }
  53254. },
  53255. maw: {
  53256. height: math.unit(1.45, "feet"),
  53257. name: "Maw",
  53258. image: {
  53259. source: "./media/characters/dein/maw.svg"
  53260. }
  53261. },
  53262. },
  53263. [
  53264. {
  53265. name: "Ferret Sized",
  53266. height: math.unit(2 + 5/12, "feet")
  53267. },
  53268. {
  53269. name: "Normal",
  53270. height: math.unit(5 + 4/12, "feet"),
  53271. default: true
  53272. },
  53273. ]
  53274. ))
  53275. characterMakers.push(() => makeCharacter(
  53276. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53277. {
  53278. front: {
  53279. height: math.unit(84 + 8/12, "feet"),
  53280. weight: math.unit(942180, "lb"),
  53281. name: "Front",
  53282. image: {
  53283. source: "./media/characters/daurine-arima/front.svg",
  53284. extra: 1989/1782,
  53285. bottom: 37/2026
  53286. }
  53287. },
  53288. side: {
  53289. height: math.unit(84 + 8/12, "feet"),
  53290. weight: math.unit(942180, "lb"),
  53291. name: "Side",
  53292. image: {
  53293. source: "./media/characters/daurine-arima/side.svg",
  53294. extra: 1997/1790,
  53295. bottom: 21/2018
  53296. }
  53297. },
  53298. back: {
  53299. height: math.unit(84 + 8/12, "feet"),
  53300. weight: math.unit(942180, "lb"),
  53301. name: "Back",
  53302. image: {
  53303. source: "./media/characters/daurine-arima/back.svg",
  53304. extra: 1992/1800,
  53305. bottom: 12/2004
  53306. }
  53307. },
  53308. head: {
  53309. height: math.unit(15.5, "feet"),
  53310. name: "Head",
  53311. image: {
  53312. source: "./media/characters/daurine-arima/head.svg"
  53313. }
  53314. },
  53315. headAlt: {
  53316. height: math.unit(19.19, "feet"),
  53317. name: "Head (Alt)",
  53318. image: {
  53319. source: "./media/characters/daurine-arima/head-alt.svg"
  53320. }
  53321. },
  53322. },
  53323. [
  53324. {
  53325. name: "Minimum height",
  53326. height: math.unit(8 + 10/12, "feet")
  53327. },
  53328. {
  53329. name: "Comfort height",
  53330. height: math.unit(19 + 6 /12, "feet")
  53331. },
  53332. {
  53333. name: "\"Normal\" height",
  53334. height: math.unit(28 + 10/12, "feet")
  53335. },
  53336. {
  53337. name: "Base height",
  53338. height: math.unit(84 + 8/12, "feet"),
  53339. default: true
  53340. },
  53341. {
  53342. name: "Mini-macro",
  53343. height: math.unit(2360, "feet")
  53344. },
  53345. {
  53346. name: "Macro",
  53347. height: math.unit(10, "miles")
  53348. },
  53349. {
  53350. name: "Goddess",
  53351. height: math.unit(9.99e40, "yottameters")
  53352. },
  53353. ]
  53354. ))
  53355. characterMakers.push(() => makeCharacter(
  53356. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53357. {
  53358. front: {
  53359. height: math.unit(2.3, "meters"),
  53360. name: "Front",
  53361. image: {
  53362. source: "./media/characters/cilenomon/front.svg",
  53363. extra: 1963/1778,
  53364. bottom: 54/2017
  53365. }
  53366. },
  53367. },
  53368. [
  53369. {
  53370. name: "Normal",
  53371. height: math.unit(2.3, "meters"),
  53372. default: true
  53373. },
  53374. {
  53375. name: "Big",
  53376. height: math.unit(5, "meters")
  53377. },
  53378. {
  53379. name: "Macro",
  53380. height: math.unit(30, "meters")
  53381. },
  53382. {
  53383. name: "True",
  53384. height: math.unit(1, "universe")
  53385. },
  53386. ]
  53387. ))
  53388. characterMakers.push(() => makeCharacter(
  53389. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53390. {
  53391. front: {
  53392. height: math.unit(5, "feet"),
  53393. name: "Front",
  53394. image: {
  53395. source: "./media/characters/sen-mink/front.svg",
  53396. extra: 1727/1675,
  53397. bottom: 35/1762
  53398. }
  53399. },
  53400. },
  53401. [
  53402. {
  53403. name: "Normal",
  53404. height: math.unit(5, "feet"),
  53405. default: true
  53406. },
  53407. ]
  53408. ))
  53409. characterMakers.push(() => makeCharacter(
  53410. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53411. {
  53412. front: {
  53413. height: math.unit(5.42999, "feet"),
  53414. weight: math.unit(100, "lb"),
  53415. name: "Front",
  53416. image: {
  53417. source: "./media/characters/ophois/front.svg",
  53418. extra: 1429/1286,
  53419. bottom: 60/1489
  53420. }
  53421. },
  53422. },
  53423. [
  53424. {
  53425. name: "Normal",
  53426. height: math.unit(5.42999, "feet"),
  53427. default: true
  53428. },
  53429. ]
  53430. ))
  53431. characterMakers.push(() => makeCharacter(
  53432. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53433. {
  53434. front: {
  53435. height: math.unit(2, "meters"),
  53436. name: "Front",
  53437. image: {
  53438. source: "./media/characters/riley/front.svg",
  53439. extra: 1779/1754,
  53440. bottom: 139/1918
  53441. }
  53442. },
  53443. },
  53444. [
  53445. {
  53446. name: "Normal",
  53447. height: math.unit(2, "meters"),
  53448. default: true
  53449. },
  53450. ]
  53451. ))
  53452. characterMakers.push(() => makeCharacter(
  53453. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53454. {
  53455. front: {
  53456. height: math.unit(6 + 2/12, "feet"),
  53457. weight: math.unit(195, "lb"),
  53458. preyCapacity: math.unit(6, "people"),
  53459. name: "Front",
  53460. image: {
  53461. source: "./media/characters/shuken-flash/front.svg",
  53462. extra: 1905/1739,
  53463. bottom: 65/1970
  53464. }
  53465. },
  53466. back: {
  53467. height: math.unit(6 + 2/12, "feet"),
  53468. weight: math.unit(195, "lb"),
  53469. preyCapacity: math.unit(6, "people"),
  53470. name: "Back",
  53471. image: {
  53472. source: "./media/characters/shuken-flash/back.svg",
  53473. extra: 1912/1751,
  53474. bottom: 13/1925
  53475. }
  53476. },
  53477. },
  53478. [
  53479. {
  53480. name: "Normal",
  53481. height: math.unit(6 + 2/12, "feet"),
  53482. default: true
  53483. },
  53484. ]
  53485. ))
  53486. characterMakers.push(() => makeCharacter(
  53487. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53488. {
  53489. front: {
  53490. height: math.unit(5 + 9/12, "feet"),
  53491. weight: math.unit(150, "lb"),
  53492. name: "Front",
  53493. image: {
  53494. source: "./media/characters/plat/front.svg",
  53495. extra: 1816/1703,
  53496. bottom: 43/1859
  53497. }
  53498. },
  53499. side: {
  53500. height: math.unit(5 + 9/12, "feet"),
  53501. weight: math.unit(300, "lb"),
  53502. name: "Side",
  53503. image: {
  53504. source: "./media/characters/plat/side.svg",
  53505. extra: 1824/1699,
  53506. bottom: 18/1842
  53507. }
  53508. },
  53509. },
  53510. [
  53511. {
  53512. name: "Normal",
  53513. height: math.unit(5 + 9/12, "feet"),
  53514. default: true
  53515. },
  53516. ]
  53517. ))
  53518. characterMakers.push(() => makeCharacter(
  53519. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53520. {
  53521. front: {
  53522. height: math.unit(9, "feet"),
  53523. weight: math.unit(1800, "lb"),
  53524. name: "Front",
  53525. image: {
  53526. source: "./media/characters/elaine/front.svg",
  53527. extra: 1833/1354,
  53528. bottom: 25/1858
  53529. }
  53530. },
  53531. back: {
  53532. height: math.unit(8.8, "feet"),
  53533. weight: math.unit(1800, "lb"),
  53534. name: "Back",
  53535. image: {
  53536. source: "./media/characters/elaine/back.svg",
  53537. extra: 1641/1233,
  53538. bottom: 53/1694
  53539. }
  53540. },
  53541. },
  53542. [
  53543. {
  53544. name: "Normal",
  53545. height: math.unit(9, "feet"),
  53546. default: true
  53547. },
  53548. ]
  53549. ))
  53550. characterMakers.push(() => makeCharacter(
  53551. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53552. {
  53553. front: {
  53554. height: math.unit(17 + 9/12, "feet"),
  53555. weight: math.unit(8000, "lb"),
  53556. name: "Front",
  53557. image: {
  53558. source: "./media/characters/vera-raven/front.svg",
  53559. extra: 1457/1412,
  53560. bottom: 121/1578
  53561. }
  53562. },
  53563. side: {
  53564. height: math.unit(17 + 9/12, "feet"),
  53565. weight: math.unit(8000, "lb"),
  53566. name: "Side",
  53567. image: {
  53568. source: "./media/characters/vera-raven/side.svg",
  53569. extra: 1510/1464,
  53570. bottom: 54/1564
  53571. }
  53572. },
  53573. },
  53574. [
  53575. {
  53576. name: "Normal",
  53577. height: math.unit(17 + 9/12, "feet"),
  53578. default: true
  53579. },
  53580. ]
  53581. ))
  53582. characterMakers.push(() => makeCharacter(
  53583. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53584. {
  53585. dressed: {
  53586. height: math.unit(6 + 9/12, "feet"),
  53587. name: "Dressed",
  53588. image: {
  53589. source: "./media/characters/nakisha/dressed.svg",
  53590. extra: 1909/1757,
  53591. bottom: 48/1957
  53592. }
  53593. },
  53594. nude: {
  53595. height: math.unit(6 + 9/12, "feet"),
  53596. name: "Nude",
  53597. image: {
  53598. source: "./media/characters/nakisha/nude.svg",
  53599. extra: 1917/1765,
  53600. bottom: 34/1951
  53601. }
  53602. },
  53603. },
  53604. [
  53605. {
  53606. name: "Normal",
  53607. height: math.unit(6 + 9/12, "feet"),
  53608. default: true
  53609. },
  53610. ]
  53611. ))
  53612. characterMakers.push(() => makeCharacter(
  53613. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53614. {
  53615. front: {
  53616. height: math.unit(87, "meters"),
  53617. name: "Front",
  53618. image: {
  53619. source: "./media/characters/serafin/front.svg",
  53620. extra: 1919/1776,
  53621. bottom: 65/1984
  53622. }
  53623. },
  53624. },
  53625. [
  53626. {
  53627. name: "Normal",
  53628. height: math.unit(87, "meters"),
  53629. default: true
  53630. },
  53631. ]
  53632. ))
  53633. characterMakers.push(() => makeCharacter(
  53634. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53635. {
  53636. front: {
  53637. height: math.unit(6, "feet"),
  53638. weight: math.unit(200, "lb"),
  53639. name: "Front",
  53640. image: {
  53641. source: "./media/characters/poptart/front.svg",
  53642. extra: 615/583,
  53643. bottom: 23/638
  53644. }
  53645. },
  53646. back: {
  53647. height: math.unit(6, "feet"),
  53648. weight: math.unit(200, "lb"),
  53649. name: "Back",
  53650. image: {
  53651. source: "./media/characters/poptart/back.svg",
  53652. extra: 617/584,
  53653. bottom: 22/639
  53654. }
  53655. },
  53656. frontNsfw: {
  53657. height: math.unit(6, "feet"),
  53658. weight: math.unit(200, "lb"),
  53659. name: "Front (NSFW)",
  53660. image: {
  53661. source: "./media/characters/poptart/front-nsfw.svg",
  53662. extra: 615/583,
  53663. bottom: 23/638
  53664. }
  53665. },
  53666. backNsfw: {
  53667. height: math.unit(6, "feet"),
  53668. weight: math.unit(200, "lb"),
  53669. name: "Back (NSFW)",
  53670. image: {
  53671. source: "./media/characters/poptart/back-nsfw.svg",
  53672. extra: 617/584,
  53673. bottom: 22/639
  53674. }
  53675. },
  53676. hand: {
  53677. height: math.unit(1.14, "feet"),
  53678. name: "Hand",
  53679. image: {
  53680. source: "./media/characters/poptart/hand.svg"
  53681. }
  53682. },
  53683. foot: {
  53684. height: math.unit(1.5, "feet"),
  53685. name: "Foot",
  53686. image: {
  53687. source: "./media/characters/poptart/foot.svg"
  53688. }
  53689. },
  53690. },
  53691. [
  53692. {
  53693. name: "Normal",
  53694. height: math.unit(6, "feet"),
  53695. default: true
  53696. },
  53697. {
  53698. name: "Grande",
  53699. height: math.unit(350, "feet")
  53700. },
  53701. {
  53702. name: "Massif",
  53703. height: math.unit(967, "feet")
  53704. },
  53705. ]
  53706. ))
  53707. characterMakers.push(() => makeCharacter(
  53708. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53709. {
  53710. hyenaSide: {
  53711. height: math.unit(120, "cm"),
  53712. weight: math.unit(120, "lb"),
  53713. name: "Side",
  53714. image: {
  53715. source: "./media/characters/trance/hyena-side.svg",
  53716. extra: 998/904,
  53717. bottom: 76/1074
  53718. }
  53719. },
  53720. },
  53721. [
  53722. {
  53723. name: "Normal",
  53724. height: math.unit(120, "cm"),
  53725. default: true
  53726. },
  53727. {
  53728. name: "Dire",
  53729. height: math.unit(230, "cm")
  53730. },
  53731. {
  53732. name: "Macro",
  53733. height: math.unit(37, "feet")
  53734. },
  53735. ]
  53736. ))
  53737. characterMakers.push(() => makeCharacter(
  53738. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53739. {
  53740. front: {
  53741. height: math.unit(6 + 3/12, "feet"),
  53742. name: "Front",
  53743. image: {
  53744. source: "./media/characters/michael-berretta/front.svg",
  53745. extra: 515/494,
  53746. bottom: 20/535
  53747. }
  53748. },
  53749. back: {
  53750. height: math.unit(6 + 3/12, "feet"),
  53751. name: "Back",
  53752. image: {
  53753. source: "./media/characters/michael-berretta/back.svg",
  53754. extra: 520/497,
  53755. bottom: 21/541
  53756. }
  53757. },
  53758. frontNsfw: {
  53759. height: math.unit(6 + 3/12, "feet"),
  53760. name: "Front (NSFW)",
  53761. image: {
  53762. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53763. extra: 515/494,
  53764. bottom: 20/535
  53765. }
  53766. },
  53767. dick: {
  53768. height: math.unit(1, "feet"),
  53769. name: "Dick",
  53770. image: {
  53771. source: "./media/characters/michael-berretta/dick.svg"
  53772. }
  53773. },
  53774. },
  53775. [
  53776. {
  53777. name: "Normal",
  53778. height: math.unit(6 + 3/12, "feet"),
  53779. default: true
  53780. },
  53781. {
  53782. name: "Big",
  53783. height: math.unit(12, "feet")
  53784. },
  53785. {
  53786. name: "Macro",
  53787. height: math.unit(187.5, "feet")
  53788. },
  53789. ]
  53790. ))
  53791. characterMakers.push(() => makeCharacter(
  53792. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53793. {
  53794. front: {
  53795. height: math.unit(9 + 9/12, "feet"),
  53796. weight: math.unit(1244, "lb"),
  53797. name: "Front",
  53798. image: {
  53799. source: "./media/characters/stella-edgecomb/front.svg",
  53800. extra: 1835/1706,
  53801. bottom: 49/1884
  53802. }
  53803. },
  53804. pen: {
  53805. height: math.unit(0.95, "feet"),
  53806. name: "Pen",
  53807. image: {
  53808. source: "./media/characters/stella-edgecomb/pen.svg"
  53809. }
  53810. },
  53811. },
  53812. [
  53813. {
  53814. name: "Cozy Bear",
  53815. height: math.unit(0.5, "inches")
  53816. },
  53817. {
  53818. name: "Normal",
  53819. height: math.unit(9 + 9/12, "feet"),
  53820. default: true
  53821. },
  53822. {
  53823. name: "Giga Bear",
  53824. height: math.unit(1, "mile")
  53825. },
  53826. {
  53827. name: "Great Bear",
  53828. height: math.unit(53, "miles")
  53829. },
  53830. {
  53831. name: "Goddess Bear",
  53832. height: math.unit(40000, "miles")
  53833. },
  53834. {
  53835. name: "Sun Bear",
  53836. height: math.unit(900000, "miles")
  53837. },
  53838. ]
  53839. ))
  53840. characterMakers.push(() => makeCharacter(
  53841. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53842. {
  53843. anthroFront: {
  53844. height: math.unit(556, "cm"),
  53845. weight: math.unit(2650, "kg"),
  53846. preyCapacity: math.unit(3, "people"),
  53847. name: "Front",
  53848. image: {
  53849. source: "./media/characters/ash´iika/front.svg",
  53850. extra: 710/673,
  53851. bottom: 15/725
  53852. },
  53853. form: "anthro",
  53854. default: true
  53855. },
  53856. anthroSide: {
  53857. height: math.unit(556, "cm"),
  53858. weight: math.unit(2650, "kg"),
  53859. preyCapacity: math.unit(3, "people"),
  53860. name: "Side",
  53861. image: {
  53862. source: "./media/characters/ash´iika/side.svg",
  53863. extra: 696/676,
  53864. bottom: 13/709
  53865. },
  53866. form: "anthro"
  53867. },
  53868. anthroDressed: {
  53869. height: math.unit(556, "cm"),
  53870. weight: math.unit(2650, "kg"),
  53871. preyCapacity: math.unit(3, "people"),
  53872. name: "Dressed",
  53873. image: {
  53874. source: "./media/characters/ash´iika/dressed.svg",
  53875. extra: 710/673,
  53876. bottom: 15/725
  53877. },
  53878. form: "anthro"
  53879. },
  53880. anthroHead: {
  53881. height: math.unit(3.5, "feet"),
  53882. name: "Head",
  53883. image: {
  53884. source: "./media/characters/ash´iika/head.svg",
  53885. extra: 348/291,
  53886. bottom: 45/393
  53887. },
  53888. form: "anthro"
  53889. },
  53890. feralSide: {
  53891. height: math.unit(870, "cm"),
  53892. weight: math.unit(17500, "kg"),
  53893. preyCapacity: math.unit(15, "people"),
  53894. name: "Side",
  53895. image: {
  53896. source: "./media/characters/ash´iika/feral.svg",
  53897. extra: 595/199,
  53898. bottom: 7/602
  53899. },
  53900. form: "feral",
  53901. default: true,
  53902. },
  53903. },
  53904. [
  53905. {
  53906. name: "Normal",
  53907. height: math.unit(556, "cm"),
  53908. default: true,
  53909. form: "anthro"
  53910. },
  53911. {
  53912. name: "Macro",
  53913. height: math.unit(88, "meters"),
  53914. form: "anthro"
  53915. },
  53916. {
  53917. name: "Normal",
  53918. height: math.unit(870, "cm"),
  53919. default: true,
  53920. form: "feral"
  53921. },
  53922. {
  53923. name: "Large",
  53924. height: math.unit(25, "meters"),
  53925. form: "feral"
  53926. },
  53927. ],
  53928. {
  53929. "anthro": {
  53930. name: "Anthro",
  53931. default: true
  53932. },
  53933. "feral": {
  53934. name: "Feral",
  53935. },
  53936. }
  53937. ))
  53938. characterMakers.push(() => makeCharacter(
  53939. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53940. {
  53941. front: {
  53942. height: math.unit(10, "feet"),
  53943. weight: math.unit(800, "lb"),
  53944. name: "Front",
  53945. image: {
  53946. source: "./media/characters/yen/front.svg",
  53947. extra: 443/411,
  53948. bottom: 6/449
  53949. }
  53950. },
  53951. sleeping: {
  53952. height: math.unit(10, "feet"),
  53953. weight: math.unit(800, "lb"),
  53954. name: "Sleeping",
  53955. image: {
  53956. source: "./media/characters/yen/sleeping.svg",
  53957. extra: 470/422,
  53958. bottom: 0/470
  53959. }
  53960. },
  53961. head: {
  53962. height: math.unit(2.2, "feet"),
  53963. name: "Head",
  53964. image: {
  53965. source: "./media/characters/yen/head.svg"
  53966. }
  53967. },
  53968. headAlt: {
  53969. height: math.unit(2.1, "feet"),
  53970. name: "Head (Alt)",
  53971. image: {
  53972. source: "./media/characters/yen/head-alt.svg"
  53973. }
  53974. },
  53975. },
  53976. [
  53977. {
  53978. name: "Normal",
  53979. height: math.unit(10, "feet"),
  53980. default: true
  53981. },
  53982. ]
  53983. ))
  53984. characterMakers.push(() => makeCharacter(
  53985. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53986. {
  53987. front: {
  53988. height: math.unit(12, "feet"),
  53989. name: "Front",
  53990. image: {
  53991. source: "./media/characters/citra/front.svg",
  53992. extra: 1950/1710,
  53993. bottom: 47/1997
  53994. }
  53995. },
  53996. },
  53997. [
  53998. {
  53999. name: "Normal",
  54000. height: math.unit(12, "feet"),
  54001. default: true
  54002. },
  54003. ]
  54004. ))
  54005. characterMakers.push(() => makeCharacter(
  54006. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54007. {
  54008. side: {
  54009. height: math.unit(7 + 10/12, "feet"),
  54010. name: "Side",
  54011. image: {
  54012. source: "./media/characters/sholstim/side.svg",
  54013. extra: 786/682,
  54014. bottom: 40/826
  54015. }
  54016. },
  54017. },
  54018. [
  54019. {
  54020. name: "Normal",
  54021. height: math.unit(7 + 10/12, "feet"),
  54022. default: true
  54023. },
  54024. ]
  54025. ))
  54026. characterMakers.push(() => makeCharacter(
  54027. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54028. {
  54029. front: {
  54030. height: math.unit(3.10, "meters"),
  54031. name: "Front",
  54032. image: {
  54033. source: "./media/characters/aggyn/front.svg",
  54034. extra: 1188/963,
  54035. bottom: 24/1212
  54036. }
  54037. },
  54038. },
  54039. [
  54040. {
  54041. name: "Normal",
  54042. height: math.unit(3.10, "meters"),
  54043. default: true
  54044. },
  54045. ]
  54046. ))
  54047. characterMakers.push(() => makeCharacter(
  54048. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54049. {
  54050. front: {
  54051. height: math.unit(7 + 5/12, "feet"),
  54052. weight: math.unit(687, "lb"),
  54053. name: "Front",
  54054. image: {
  54055. source: "./media/characters/alsandair-hergenroether/front.svg",
  54056. extra: 1251/1186,
  54057. bottom: 75/1326
  54058. }
  54059. },
  54060. back: {
  54061. height: math.unit(7 + 5/12, "feet"),
  54062. weight: math.unit(687, "lb"),
  54063. name: "Back",
  54064. image: {
  54065. source: "./media/characters/alsandair-hergenroether/back.svg",
  54066. extra: 1290/1229,
  54067. bottom: 17/1307
  54068. }
  54069. },
  54070. },
  54071. [
  54072. {
  54073. name: "Max Compression",
  54074. height: math.unit(7 + 5/12, "feet"),
  54075. default: true
  54076. },
  54077. {
  54078. name: "\"Normal\"",
  54079. height: math.unit(2, "universes")
  54080. },
  54081. ]
  54082. ))
  54083. characterMakers.push(() => makeCharacter(
  54084. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54085. {
  54086. front: {
  54087. height: math.unit(4 + 1/12, "feet"),
  54088. weight: math.unit(92, "lb"),
  54089. name: "Front",
  54090. image: {
  54091. source: "./media/characters/ie/front.svg",
  54092. extra: 1585/1352,
  54093. bottom: 91/1676
  54094. }
  54095. },
  54096. },
  54097. [
  54098. {
  54099. name: "Normal",
  54100. height: math.unit(4 + 1/12, "feet"),
  54101. default: true
  54102. },
  54103. ]
  54104. ))
  54105. characterMakers.push(() => makeCharacter(
  54106. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54107. {
  54108. anthro: {
  54109. height: math.unit(6, "feet"),
  54110. weight: math.unit(150, "lb"),
  54111. name: "Front",
  54112. image: {
  54113. source: "./media/characters/willow/anthro.svg",
  54114. extra: 1073/986,
  54115. bottom: 34/1107
  54116. },
  54117. form: "anthro",
  54118. default: true
  54119. },
  54120. taur: {
  54121. height: math.unit(6, "feet"),
  54122. weight: math.unit(150, "lb"),
  54123. name: "Side",
  54124. image: {
  54125. source: "./media/characters/willow/taur.svg",
  54126. extra: 647/512,
  54127. bottom: 136/783
  54128. },
  54129. form: "taur",
  54130. default: true
  54131. },
  54132. },
  54133. [
  54134. {
  54135. name: "Humanoid",
  54136. height: math.unit(2.7, "meters"),
  54137. form: "anthro"
  54138. },
  54139. {
  54140. name: "Normal",
  54141. height: math.unit(9, "meters"),
  54142. form: "anthro",
  54143. default: true
  54144. },
  54145. {
  54146. name: "Humanoid",
  54147. height: math.unit(2.1, "meters"),
  54148. form: "taur"
  54149. },
  54150. {
  54151. name: "Normal",
  54152. height: math.unit(7, "meters"),
  54153. form: "taur",
  54154. default: true
  54155. },
  54156. ],
  54157. {
  54158. "anthro": {
  54159. name: "Anthro",
  54160. default: true
  54161. },
  54162. "taur": {
  54163. name: "Taur",
  54164. },
  54165. }
  54166. ))
  54167. characterMakers.push(() => makeCharacter(
  54168. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54169. {
  54170. front: {
  54171. height: math.unit(2 + 5/12, "feet"),
  54172. name: "Front",
  54173. image: {
  54174. source: "./media/characters/kyan/front.svg",
  54175. extra: 460/334,
  54176. bottom: 23/483
  54177. },
  54178. extraAttributes: {
  54179. "toeLength": {
  54180. name: "Toe Length",
  54181. power: 1,
  54182. type: "length",
  54183. base: math.unit(7, "cm")
  54184. },
  54185. "toeclawLength": {
  54186. name: "Toeclaw Length",
  54187. power: 1,
  54188. type: "length",
  54189. base: math.unit(4.7, "cm")
  54190. },
  54191. "earHeight": {
  54192. name: "Ear Height",
  54193. power: 1,
  54194. type: "length",
  54195. base: math.unit(14.1, "cm")
  54196. },
  54197. }
  54198. },
  54199. paws: {
  54200. height: math.unit(0.45, "feet"),
  54201. name: "Paws",
  54202. image: {
  54203. source: "./media/characters/kyan/paws.svg",
  54204. extra: 581/581,
  54205. bottom: 114/695
  54206. }
  54207. },
  54208. },
  54209. [
  54210. {
  54211. name: "Normal",
  54212. height: math.unit(2 + 5/12, "feet"),
  54213. default: true
  54214. },
  54215. ]
  54216. ))
  54217. characterMakers.push(() => makeCharacter(
  54218. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54219. {
  54220. front: {
  54221. height: math.unit(2 + 2/3, "feet"),
  54222. name: "Front",
  54223. image: {
  54224. source: "./media/characters/xazzon/front.svg",
  54225. extra: 1109/984,
  54226. bottom: 42/1151
  54227. }
  54228. },
  54229. back: {
  54230. height: math.unit(2 + 2/3, "feet"),
  54231. name: "Back",
  54232. image: {
  54233. source: "./media/characters/xazzon/back.svg",
  54234. extra: 1095/971,
  54235. bottom: 23/1118
  54236. }
  54237. },
  54238. },
  54239. [
  54240. {
  54241. name: "Normal",
  54242. height: math.unit(2 + 2/3, "feet"),
  54243. default: true
  54244. },
  54245. ]
  54246. ))
  54247. characterMakers.push(() => makeCharacter(
  54248. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54249. {
  54250. dressed: {
  54251. height: math.unit(5 + 7/12, "feet"),
  54252. weight: math.unit(173, "lb"),
  54253. name: "Dressed",
  54254. image: {
  54255. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54256. extra: 3262/2862,
  54257. bottom: 188/3450
  54258. }
  54259. },
  54260. undressed: {
  54261. height: math.unit(5 + 7/12, "feet"),
  54262. weight: math.unit(173, "lb"),
  54263. name: "Undressed",
  54264. image: {
  54265. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54266. extra: 3262/2862,
  54267. bottom: 188/3450
  54268. }
  54269. },
  54270. },
  54271. [
  54272. {
  54273. name: "The void",
  54274. height: math.unit(7.29193e-34, "angstroms")
  54275. },
  54276. {
  54277. name: "Uh-Oh.",
  54278. height: math.unit(5.734e-7, "angstroms")
  54279. },
  54280. {
  54281. name: "Pico",
  54282. height: math.unit(0.876, "angstroms")
  54283. },
  54284. {
  54285. name: "Nano",
  54286. height: math.unit(0.000134200, "mm")
  54287. },
  54288. {
  54289. name: "Micro",
  54290. height: math.unit(0.0673020, "mm")
  54291. },
  54292. {
  54293. name: "Tiny",
  54294. height: math.unit(2.4, "mm")
  54295. },
  54296. {
  54297. name: "Actual Normal",
  54298. height: math.unit(3, "inches"),
  54299. default: true
  54300. },
  54301. {
  54302. name: "Normal",
  54303. height: math.unit(5 + 8/12, "feet")
  54304. },
  54305. {
  54306. name: "Giant",
  54307. height: math.unit(12, "feet")
  54308. },
  54309. {
  54310. name: "City Ruler",
  54311. height: math.unit(270, "meters")
  54312. },
  54313. {
  54314. name: "Giga",
  54315. height: math.unit(1117.6, "km")
  54316. },
  54317. {
  54318. name: "All-Powerful Queen",
  54319. height: math.unit(70.8, "gigameters")
  54320. },
  54321. {
  54322. name: "'Goddess'",
  54323. height: math.unit(600, "yottameters")
  54324. },
  54325. {
  54326. name: "Biggest!",
  54327. height: math.unit(4.23e5, "yottameters")
  54328. },
  54329. ]
  54330. ))
  54331. characterMakers.push(() => makeCharacter(
  54332. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54333. {
  54334. front: {
  54335. height: math.unit(8, "feet"),
  54336. weight: math.unit(300, "lb"),
  54337. name: "Front",
  54338. image: {
  54339. source: "./media/characters/khyla-shadowsong/front.svg",
  54340. extra: 861/798,
  54341. bottom: 32/893
  54342. }
  54343. },
  54344. side: {
  54345. height: math.unit(8, "feet"),
  54346. weight: math.unit(300, "lb"),
  54347. name: "Side",
  54348. image: {
  54349. source: "./media/characters/khyla-shadowsong/side.svg",
  54350. extra: 790/750,
  54351. bottom: 87/877
  54352. }
  54353. },
  54354. back: {
  54355. height: math.unit(8, "feet"),
  54356. weight: math.unit(300, "lb"),
  54357. name: "Back",
  54358. image: {
  54359. source: "./media/characters/khyla-shadowsong/back.svg",
  54360. extra: 855/808,
  54361. bottom: 14/869
  54362. }
  54363. },
  54364. head: {
  54365. height: math.unit(2.7, "feet"),
  54366. name: "Head",
  54367. image: {
  54368. source: "./media/characters/khyla-shadowsong/head.svg"
  54369. }
  54370. },
  54371. },
  54372. [
  54373. {
  54374. name: "Micro",
  54375. height: math.unit(6, "inches")
  54376. },
  54377. {
  54378. name: "Normal",
  54379. height: math.unit(8, "feet"),
  54380. default: true
  54381. },
  54382. ]
  54383. ))
  54384. characterMakers.push(() => makeCharacter(
  54385. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54386. {
  54387. hyperFront: {
  54388. height: math.unit(9 + 4/12, "feet"),
  54389. weight: math.unit(2000, "lb"),
  54390. name: "Front",
  54391. image: {
  54392. source: "./media/characters/tiden/hyper-front.svg",
  54393. extra: 400/382,
  54394. bottom: 6/406
  54395. },
  54396. form: "hyper",
  54397. },
  54398. regularFront: {
  54399. height: math.unit(7 + 10/12, "feet"),
  54400. weight: math.unit(470, "lb"),
  54401. name: "Front",
  54402. image: {
  54403. source: "./media/characters/tiden/regular-front.svg",
  54404. extra: 468/442,
  54405. bottom: 6/474
  54406. },
  54407. form: "regular",
  54408. },
  54409. },
  54410. [
  54411. {
  54412. name: "Normal",
  54413. height: math.unit(9 + 4/12, "feet"),
  54414. default: true,
  54415. form: "hyper"
  54416. },
  54417. {
  54418. name: "Normal",
  54419. height: math.unit(7 + 10/12, "feet"),
  54420. default: true,
  54421. form: "regular"
  54422. },
  54423. ],
  54424. {
  54425. "hyper": {
  54426. name: "Hyper",
  54427. default: true
  54428. },
  54429. "regular": {
  54430. name: "Regular",
  54431. },
  54432. }
  54433. ))
  54434. characterMakers.push(() => makeCharacter(
  54435. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54436. {
  54437. side: {
  54438. height: math.unit(6, "feet"),
  54439. weight: math.unit(150, "lb"),
  54440. name: "Side",
  54441. image: {
  54442. source: "./media/characters/jason-crowe/side.svg",
  54443. extra: 1771/766,
  54444. bottom: 219/1990
  54445. }
  54446. },
  54447. },
  54448. [
  54449. {
  54450. name: "Pocket Gryphon",
  54451. height: math.unit(6, "cm")
  54452. },
  54453. {
  54454. name: "Raven",
  54455. height: math.unit(60, "cm")
  54456. },
  54457. {
  54458. name: "Normal",
  54459. height: math.unit(1, "meter"),
  54460. default: true
  54461. },
  54462. ]
  54463. ))
  54464. characterMakers.push(() => makeCharacter(
  54465. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54466. {
  54467. front: {
  54468. height: math.unit(9 + 6/12, "feet"),
  54469. weight: math.unit(1100, "lb"),
  54470. name: "Front",
  54471. image: {
  54472. source: "./media/characters/django/front.svg",
  54473. extra: 1231/1136,
  54474. bottom: 34/1265
  54475. }
  54476. },
  54477. side: {
  54478. height: math.unit(9 + 6/12, "feet"),
  54479. weight: math.unit(1100, "lb"),
  54480. name: "Side",
  54481. image: {
  54482. source: "./media/characters/django/side.svg",
  54483. extra: 1267/1174,
  54484. bottom: 9/1276
  54485. }
  54486. },
  54487. },
  54488. [
  54489. {
  54490. name: "Normal",
  54491. height: math.unit(9 + 6/12, "feet"),
  54492. default: true
  54493. },
  54494. {
  54495. name: "Macro 1",
  54496. height: math.unit(50, "feet")
  54497. },
  54498. {
  54499. name: "Macro 2",
  54500. height: math.unit(500, "feet")
  54501. },
  54502. {
  54503. name: "Mega Macro",
  54504. height: math.unit(5300, "feet")
  54505. },
  54506. ]
  54507. ))
  54508. characterMakers.push(() => makeCharacter(
  54509. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54510. {
  54511. frontSfw: {
  54512. height: math.unit(120, "cm"),
  54513. weight: math.unit(15, "kg"),
  54514. name: "Front (SFW)",
  54515. image: {
  54516. source: "./media/characters/eri/front-sfw.svg",
  54517. extra: 1014/939,
  54518. bottom: 37/1051
  54519. },
  54520. form: "moth",
  54521. },
  54522. frontNsfw: {
  54523. height: math.unit(120, "cm"),
  54524. weight: math.unit(15, "kg"),
  54525. name: "Front (NSFW)",
  54526. image: {
  54527. source: "./media/characters/eri/front-nsfw.svg",
  54528. extra: 1014/939,
  54529. bottom: 37/1051
  54530. },
  54531. form: "moth",
  54532. default: true
  54533. },
  54534. egg: {
  54535. height: math.unit(10, "cm"),
  54536. name: "Egg",
  54537. image: {
  54538. source: "./media/characters/eri/egg.svg"
  54539. },
  54540. form: "egg",
  54541. default: true
  54542. },
  54543. },
  54544. [
  54545. {
  54546. name: "Normal",
  54547. height: math.unit(120, "cm"),
  54548. default: true,
  54549. form: "moth"
  54550. },
  54551. {
  54552. name: "Normal",
  54553. height: math.unit(10, "cm"),
  54554. default: true,
  54555. form: "egg"
  54556. },
  54557. ],
  54558. {
  54559. "moth": {
  54560. name: "Moth",
  54561. default: true
  54562. },
  54563. "egg": {
  54564. name: "Egg",
  54565. },
  54566. }
  54567. ))
  54568. characterMakers.push(() => makeCharacter(
  54569. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54570. {
  54571. front: {
  54572. height: math.unit(200, "feet"),
  54573. name: "Front",
  54574. image: {
  54575. source: "./media/characters/bishop-dowser/front.svg",
  54576. extra: 933/868,
  54577. bottom: 106/1039
  54578. }
  54579. },
  54580. },
  54581. [
  54582. {
  54583. name: "Giant",
  54584. height: math.unit(200, "feet"),
  54585. default: true
  54586. },
  54587. ]
  54588. ))
  54589. characterMakers.push(() => makeCharacter(
  54590. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54591. {
  54592. front: {
  54593. height: math.unit(2, "meters"),
  54594. preyCapacity: math.unit(3, "people"),
  54595. name: "Front",
  54596. image: {
  54597. source: "./media/characters/fryra/front.svg",
  54598. extra: 1025/948,
  54599. bottom: 30/1055
  54600. },
  54601. extraAttributes: {
  54602. "breastVolume": {
  54603. name: "Breast Volume",
  54604. power: 3,
  54605. type: "volume",
  54606. base: math.unit(8, "liters")
  54607. },
  54608. }
  54609. },
  54610. back: {
  54611. height: math.unit(2, "meters"),
  54612. preyCapacity: math.unit(3, "people"),
  54613. name: "Back",
  54614. image: {
  54615. source: "./media/characters/fryra/back.svg",
  54616. extra: 993/938,
  54617. bottom: 38/1031
  54618. },
  54619. extraAttributes: {
  54620. "breastVolume": {
  54621. name: "Breast Volume",
  54622. power: 3,
  54623. type: "volume",
  54624. base: math.unit(8, "liters")
  54625. },
  54626. }
  54627. },
  54628. head: {
  54629. height: math.unit(1.33, "feet"),
  54630. name: "Head",
  54631. image: {
  54632. source: "./media/characters/fryra/head.svg"
  54633. }
  54634. },
  54635. maw: {
  54636. height: math.unit(0.56, "feet"),
  54637. name: "Maw",
  54638. image: {
  54639. source: "./media/characters/fryra/maw.svg"
  54640. }
  54641. },
  54642. },
  54643. [
  54644. {
  54645. name: "Micro",
  54646. height: math.unit(5, "cm")
  54647. },
  54648. {
  54649. name: "Normal",
  54650. height: math.unit(2, "meters"),
  54651. default: true
  54652. },
  54653. {
  54654. name: "Small Macro",
  54655. height: math.unit(8, "meters")
  54656. },
  54657. {
  54658. name: "Macro",
  54659. height: math.unit(50, "meters")
  54660. },
  54661. {
  54662. name: "Megamacro",
  54663. height: math.unit(1, "km")
  54664. },
  54665. {
  54666. name: "Planetary",
  54667. height: math.unit(300000, "km")
  54668. },
  54669. {
  54670. name: "Universal",
  54671. height: math.unit(250, "lightyears")
  54672. },
  54673. {
  54674. name: "Fabric of Reality",
  54675. height: math.unit(1000, "multiverses")
  54676. },
  54677. ]
  54678. ))
  54679. characterMakers.push(() => makeCharacter(
  54680. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54681. {
  54682. frontDressed: {
  54683. height: math.unit(6 + 2/12, "feet"),
  54684. name: "Front (Dressed)",
  54685. image: {
  54686. source: "./media/characters/fiera/front-dressed.svg",
  54687. extra: 1883/1793,
  54688. bottom: 70/1953
  54689. }
  54690. },
  54691. backDressed: {
  54692. height: math.unit(6 + 2/12, "feet"),
  54693. name: "Back (Dressed)",
  54694. image: {
  54695. source: "./media/characters/fiera/back-dressed.svg",
  54696. extra: 1847/1780,
  54697. bottom: 70/1917
  54698. }
  54699. },
  54700. frontNude: {
  54701. height: math.unit(6 + 2/12, "feet"),
  54702. name: "Front (Nude)",
  54703. image: {
  54704. source: "./media/characters/fiera/front-nude.svg",
  54705. extra: 1875/1785,
  54706. bottom: 66/1941
  54707. }
  54708. },
  54709. backNude: {
  54710. height: math.unit(6 + 2/12, "feet"),
  54711. name: "Back (Nude)",
  54712. image: {
  54713. source: "./media/characters/fiera/back-nude.svg",
  54714. extra: 1855/1788,
  54715. bottom: 44/1899
  54716. }
  54717. },
  54718. maw: {
  54719. height: math.unit(1.3, "feet"),
  54720. name: "Maw",
  54721. image: {
  54722. source: "./media/characters/fiera/maw.svg"
  54723. }
  54724. },
  54725. paw: {
  54726. height: math.unit(1, "feet"),
  54727. name: "Paw",
  54728. image: {
  54729. source: "./media/characters/fiera/paw.svg"
  54730. }
  54731. },
  54732. shoe: {
  54733. height: math.unit(1.05, "feet"),
  54734. name: "Shoe",
  54735. image: {
  54736. source: "./media/characters/fiera/shoe.svg"
  54737. }
  54738. },
  54739. },
  54740. [
  54741. {
  54742. name: "Normal",
  54743. height: math.unit(6 + 2/12, "feet"),
  54744. default: true
  54745. },
  54746. {
  54747. name: "Size Difference",
  54748. height: math.unit(13, "feet")
  54749. },
  54750. {
  54751. name: "Macro",
  54752. height: math.unit(60, "feet")
  54753. },
  54754. {
  54755. name: "Mega Macro",
  54756. height: math.unit(200, "feet")
  54757. },
  54758. ]
  54759. ))
  54760. characterMakers.push(() => makeCharacter(
  54761. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54762. {
  54763. back: {
  54764. height: math.unit(6, "feet"),
  54765. name: "Back",
  54766. image: {
  54767. source: "./media/characters/flare/back.svg",
  54768. extra: 1883/1765,
  54769. bottom: 32/1915
  54770. }
  54771. },
  54772. },
  54773. [
  54774. {
  54775. name: "Normal",
  54776. height: math.unit(6 + 2/12, "feet"),
  54777. default: true
  54778. },
  54779. {
  54780. name: "Size Difference",
  54781. height: math.unit(13, "feet")
  54782. },
  54783. {
  54784. name: "Macro",
  54785. height: math.unit(60, "feet")
  54786. },
  54787. {
  54788. name: "Macro 2",
  54789. height: math.unit(100, "feet")
  54790. },
  54791. {
  54792. name: "Mega Macro",
  54793. height: math.unit(200, "feet")
  54794. },
  54795. ]
  54796. ))
  54797. characterMakers.push(() => makeCharacter(
  54798. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54799. {
  54800. front: {
  54801. height: math.unit(2.2, "m"),
  54802. weight: math.unit(300, "kg"),
  54803. name: "Front",
  54804. image: {
  54805. source: "./media/characters/hanna/front.svg",
  54806. extra: 1696/1502,
  54807. bottom: 206/1902
  54808. }
  54809. },
  54810. },
  54811. [
  54812. {
  54813. name: "Humanoid",
  54814. height: math.unit(2.2, "meters")
  54815. },
  54816. {
  54817. name: "Normal",
  54818. height: math.unit(4.8, "meters"),
  54819. default: true
  54820. },
  54821. ]
  54822. ))
  54823. characterMakers.push(() => makeCharacter(
  54824. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54825. {
  54826. front: {
  54827. height: math.unit(2.8, "meters"),
  54828. name: "Front",
  54829. image: {
  54830. source: "./media/characters/argo/front.svg",
  54831. extra: 731/518,
  54832. bottom: 84/815
  54833. }
  54834. },
  54835. },
  54836. [
  54837. {
  54838. name: "Normal",
  54839. height: math.unit(3, "meters"),
  54840. default: true
  54841. },
  54842. ]
  54843. ))
  54844. characterMakers.push(() => makeCharacter(
  54845. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54846. {
  54847. side: {
  54848. height: math.unit(3.8, "meters"),
  54849. name: "Side",
  54850. image: {
  54851. source: "./media/characters/sybil/side.svg",
  54852. extra: 382/361,
  54853. bottom: 25/407
  54854. }
  54855. },
  54856. },
  54857. [
  54858. {
  54859. name: "Normal",
  54860. height: math.unit(3.8, "meters"),
  54861. default: true
  54862. },
  54863. ]
  54864. ))
  54865. characterMakers.push(() => makeCharacter(
  54866. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54867. {
  54868. side: {
  54869. height: math.unit(6, "meters"),
  54870. name: "Side",
  54871. image: {
  54872. source: "./media/characters/plum/side.svg",
  54873. extra: 858/755,
  54874. bottom: 45/903
  54875. },
  54876. form: "taur",
  54877. default: true
  54878. },
  54879. back: {
  54880. height: math.unit(6.3, "meters"),
  54881. name: "Back",
  54882. image: {
  54883. source: "./media/characters/plum/back.svg",
  54884. extra: 887/813,
  54885. bottom: 32/919
  54886. },
  54887. form: "taur",
  54888. },
  54889. feral: {
  54890. height: math.unit(5.5, "meter"),
  54891. name: "Front",
  54892. image: {
  54893. source: "./media/characters/plum/feral.svg",
  54894. extra: 568/403,
  54895. bottom: 51/619
  54896. },
  54897. form: "feral",
  54898. default: true
  54899. },
  54900. head: {
  54901. height: math.unit(1.46, "meter"),
  54902. name: "Head",
  54903. image: {
  54904. source: "./media/characters/plum/head.svg"
  54905. },
  54906. form: "taur"
  54907. },
  54908. tailTop: {
  54909. height: math.unit(5.6, "meter"),
  54910. name: "Tail (Top)",
  54911. image: {
  54912. source: "./media/characters/plum/tail-top.svg"
  54913. },
  54914. form: "taur",
  54915. },
  54916. tailBottom: {
  54917. height: math.unit(5.6, "meter"),
  54918. name: "Tail (Bottom)",
  54919. image: {
  54920. source: "./media/characters/plum/tail-bottom.svg"
  54921. },
  54922. form: "taur",
  54923. },
  54924. feralHead: {
  54925. height: math.unit(2.56549521, "meter"),
  54926. name: "Head",
  54927. image: {
  54928. source: "./media/characters/plum/head.svg"
  54929. },
  54930. form: "feral"
  54931. },
  54932. feralTailTop: {
  54933. height: math.unit(5.44728435, "meter"),
  54934. name: "Tail (Top)",
  54935. image: {
  54936. source: "./media/characters/plum/tail-top.svg"
  54937. },
  54938. form: "feral",
  54939. },
  54940. feralTailBottom: {
  54941. height: math.unit(5.44728435, "meter"),
  54942. name: "Tail (Bottom)",
  54943. image: {
  54944. source: "./media/characters/plum/tail-bottom.svg"
  54945. },
  54946. form: "feral",
  54947. },
  54948. },
  54949. [
  54950. {
  54951. name: "Normal",
  54952. height: math.unit(6, "meters"),
  54953. default: true,
  54954. form: "taur"
  54955. },
  54956. {
  54957. name: "Normal",
  54958. height: math.unit(5.5, "meters"),
  54959. default: true,
  54960. form: "feral"
  54961. },
  54962. ],
  54963. {
  54964. "taur": {
  54965. name: "Taur",
  54966. default: true
  54967. },
  54968. "feral": {
  54969. name: "Feral",
  54970. },
  54971. }
  54972. ))
  54973. characterMakers.push(() => makeCharacter(
  54974. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54975. {
  54976. front: {
  54977. height: math.unit(6, "feet"),
  54978. weight: math.unit(115, "lb"),
  54979. name: "Front",
  54980. image: {
  54981. source: "./media/characters/celeste-kitsune/front.svg",
  54982. extra: 393/366,
  54983. bottom: 7/400
  54984. }
  54985. },
  54986. side: {
  54987. height: math.unit(6, "feet"),
  54988. weight: math.unit(115, "lb"),
  54989. name: "Side",
  54990. image: {
  54991. source: "./media/characters/celeste-kitsune/side.svg",
  54992. extra: 818/765,
  54993. bottom: 40/858
  54994. }
  54995. },
  54996. },
  54997. [
  54998. {
  54999. name: "Megamacro",
  55000. height: math.unit(1500, "miles"),
  55001. default: true
  55002. },
  55003. ]
  55004. ))
  55005. characterMakers.push(() => makeCharacter(
  55006. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55007. {
  55008. front: {
  55009. height: math.unit(8, "meters"),
  55010. name: "Front",
  55011. image: {
  55012. source: "./media/characters/io/front.svg",
  55013. extra: 865/722,
  55014. bottom: 58/923
  55015. }
  55016. },
  55017. back: {
  55018. height: math.unit(8, "meters"),
  55019. name: "Back",
  55020. image: {
  55021. source: "./media/characters/io/back.svg",
  55022. extra: 920/776,
  55023. bottom: 42/962
  55024. }
  55025. },
  55026. head: {
  55027. height: math.unit(5.09, "meters"),
  55028. name: "Head",
  55029. image: {
  55030. source: "./media/characters/io/head.svg"
  55031. }
  55032. },
  55033. hand: {
  55034. height: math.unit(1.6, "meters"),
  55035. name: "Hand",
  55036. image: {
  55037. source: "./media/characters/io/hand.svg"
  55038. }
  55039. },
  55040. foot: {
  55041. height: math.unit(2.4, "meters"),
  55042. name: "Foot",
  55043. image: {
  55044. source: "./media/characters/io/foot.svg"
  55045. }
  55046. },
  55047. },
  55048. [
  55049. {
  55050. name: "Normal",
  55051. height: math.unit(8, "meters"),
  55052. default: true
  55053. },
  55054. ]
  55055. ))
  55056. characterMakers.push(() => makeCharacter(
  55057. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55058. {
  55059. side: {
  55060. height: math.unit(6 + 3/12, "feet"),
  55061. weight: math.unit(225, "lb"),
  55062. name: "Side",
  55063. image: {
  55064. source: "./media/characters/silas/side.svg",
  55065. extra: 703/653,
  55066. bottom: 23/726
  55067. },
  55068. extraAttributes: {
  55069. "pawLength": {
  55070. name: "Paw Length",
  55071. power: 1,
  55072. type: "length",
  55073. base: math.unit(12, "inches")
  55074. },
  55075. "pawWidth": {
  55076. name: "Paw Width",
  55077. power: 1,
  55078. type: "length",
  55079. base: math.unit(4.5, "inches")
  55080. },
  55081. "pawArea": {
  55082. name: "Paw Area",
  55083. power: 2,
  55084. type: "area",
  55085. base: math.unit(12 * 4.5, "inches^2")
  55086. },
  55087. }
  55088. },
  55089. },
  55090. [
  55091. {
  55092. name: "Normal",
  55093. height: math.unit(6 + 3/12, "feet"),
  55094. default: true
  55095. },
  55096. ]
  55097. ))
  55098. characterMakers.push(() => makeCharacter(
  55099. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55100. {
  55101. back: {
  55102. height: math.unit(1.6, "meters"),
  55103. weight: math.unit(150, "lb"),
  55104. name: "Back",
  55105. image: {
  55106. source: "./media/characters/zari/back.svg",
  55107. extra: 424/411,
  55108. bottom: 32/456
  55109. },
  55110. extraAttributes: {
  55111. "bladderCapacity": {
  55112. name: "Bladder Size",
  55113. power: 3,
  55114. type: "volume",
  55115. base: math.unit(500, "mL")
  55116. },
  55117. "bladderFlow": {
  55118. name: "Flow Rate",
  55119. power: 3,
  55120. type: "volume",
  55121. base: math.unit(25, "mL")
  55122. },
  55123. }
  55124. },
  55125. },
  55126. [
  55127. {
  55128. name: "Normal",
  55129. height: math.unit(1.6, "meters"),
  55130. default: true
  55131. },
  55132. ]
  55133. ))
  55134. characterMakers.push(() => makeCharacter(
  55135. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55136. {
  55137. front: {
  55138. height: math.unit(25, "feet"),
  55139. weight: math.unit(5, "tons"),
  55140. name: "Front",
  55141. image: {
  55142. source: "./media/characters/charlie-human/front.svg",
  55143. extra: 1870/1740,
  55144. bottom: 102/1972
  55145. },
  55146. extraAttributes: {
  55147. "dickLength": {
  55148. name: "Dick Length",
  55149. power: 1,
  55150. type: "length",
  55151. base: math.unit(9, "feet")
  55152. },
  55153. }
  55154. },
  55155. back: {
  55156. height: math.unit(25, "feet"),
  55157. weight: math.unit(5, "tons"),
  55158. name: "Back",
  55159. image: {
  55160. source: "./media/characters/charlie-human/back.svg",
  55161. extra: 1858/1733,
  55162. bottom: 105/1963
  55163. },
  55164. extraAttributes: {
  55165. "dickLength": {
  55166. name: "Dick Length",
  55167. power: 1,
  55168. type: "length",
  55169. base: math.unit(9, "feet")
  55170. },
  55171. }
  55172. },
  55173. },
  55174. [
  55175. {
  55176. name: "\"Normal\"",
  55177. height: math.unit(6 + 4/12, "feet")
  55178. },
  55179. {
  55180. name: "Big",
  55181. height: math.unit(25, "feet"),
  55182. default: true
  55183. },
  55184. ]
  55185. ))
  55186. characterMakers.push(() => makeCharacter(
  55187. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55188. {
  55189. front: {
  55190. height: math.unit(6 + 4/12, "feet"),
  55191. weight: math.unit(320, "lb"),
  55192. name: "Front",
  55193. image: {
  55194. source: "./media/characters/ookitsu/front.svg",
  55195. extra: 1160/976,
  55196. bottom: 38/1198
  55197. }
  55198. },
  55199. frontNsfw: {
  55200. height: math.unit(6 + 4/12, "feet"),
  55201. weight: math.unit(320, "lb"),
  55202. name: "Front (NSFW)",
  55203. image: {
  55204. source: "./media/characters/ookitsu/front-nsfw.svg",
  55205. extra: 1160/976,
  55206. bottom: 38/1198
  55207. }
  55208. },
  55209. back: {
  55210. height: math.unit(6 + 4/12, "feet"),
  55211. weight: math.unit(320, "lb"),
  55212. name: "Back",
  55213. image: {
  55214. source: "./media/characters/ookitsu/back.svg",
  55215. extra: 1030/975,
  55216. bottom: 70/1100
  55217. }
  55218. },
  55219. head: {
  55220. height: math.unit(1.79, "feet"),
  55221. name: "Head",
  55222. image: {
  55223. source: "./media/characters/ookitsu/head.svg"
  55224. }
  55225. },
  55226. hand: {
  55227. height: math.unit(0.92, "feet"),
  55228. name: "Hand",
  55229. image: {
  55230. source: "./media/characters/ookitsu/hand.svg"
  55231. }
  55232. },
  55233. tails: {
  55234. height: math.unit(3.3, "feet"),
  55235. name: "Tails",
  55236. image: {
  55237. source: "./media/characters/ookitsu/tails.svg"
  55238. }
  55239. },
  55240. dick: {
  55241. height: math.unit(1.10833, "feet"),
  55242. name: "Dick",
  55243. image: {
  55244. source: "./media/characters/ookitsu/dick.svg"
  55245. }
  55246. },
  55247. },
  55248. [
  55249. {
  55250. name: "Normal",
  55251. height: math.unit(6 + 4/12, "feet"),
  55252. default: true
  55253. },
  55254. {
  55255. name: "Macro",
  55256. height: math.unit(30, "feet")
  55257. },
  55258. ]
  55259. ))
  55260. characterMakers.push(() => makeCharacter(
  55261. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55262. {
  55263. anthroFront: {
  55264. height: math.unit(6, "feet"),
  55265. weight: math.unit(250, "lb"),
  55266. name: "Front",
  55267. image: {
  55268. source: "./media/characters/jhusky/anthro-front.svg",
  55269. extra: 474/439,
  55270. bottom: 7/481
  55271. },
  55272. form: "anthro",
  55273. default: true
  55274. },
  55275. taurSideSfw: {
  55276. height: math.unit(6 + 4/12, "feet"),
  55277. weight: math.unit(500, "lb"),
  55278. name: "Side (SFW)",
  55279. image: {
  55280. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55281. extra: 1741/1629,
  55282. bottom: 196/1937
  55283. },
  55284. form: "taur",
  55285. default: true
  55286. },
  55287. taurSideNsfw: {
  55288. height: math.unit(6 + 4/12, "feet"),
  55289. weight: math.unit(500, "lb"),
  55290. name: "Taur (NSFW)",
  55291. image: {
  55292. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55293. extra: 1741/1629,
  55294. bottom: 196/1937
  55295. },
  55296. form: "taur",
  55297. },
  55298. },
  55299. [
  55300. {
  55301. name: "Huge",
  55302. height: math.unit(500, "feet"),
  55303. form: "anthro"
  55304. },
  55305. {
  55306. name: "Macro",
  55307. height: math.unit(1000, "feet"),
  55308. default: true,
  55309. form: "anthro"
  55310. },
  55311. {
  55312. name: "Megamacro",
  55313. height: math.unit(10000, "feet"),
  55314. form: "anthro"
  55315. },
  55316. {
  55317. name: "Huge",
  55318. height: math.unit(528, "feet"),
  55319. form: "taur"
  55320. },
  55321. {
  55322. name: "Macro",
  55323. height: math.unit(1056, "feet"),
  55324. default: true,
  55325. form: "taur"
  55326. },
  55327. {
  55328. name: "Megamacro",
  55329. height: math.unit(10556, "feet"),
  55330. form: "taur"
  55331. },
  55332. ],
  55333. {
  55334. "anthro": {
  55335. name: "Anthro",
  55336. default: true
  55337. },
  55338. "taur": {
  55339. name: "Taur",
  55340. },
  55341. }
  55342. ))
  55343. characterMakers.push(() => makeCharacter(
  55344. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55345. {
  55346. front: {
  55347. height: math.unit(8, "feet"),
  55348. weight: math.unit(500, "lb"),
  55349. name: "Front",
  55350. image: {
  55351. source: "./media/characters/armail/front.svg",
  55352. extra: 1753/1669,
  55353. bottom: 155/1908
  55354. }
  55355. },
  55356. back: {
  55357. height: math.unit(8, "feet"),
  55358. weight: math.unit(500, "lb"),
  55359. name: "Back",
  55360. image: {
  55361. source: "./media/characters/armail/back.svg",
  55362. extra: 1872/1803,
  55363. bottom: 63/1935
  55364. }
  55365. },
  55366. },
  55367. [
  55368. {
  55369. name: "Micro",
  55370. height: math.unit(0.25, "feet")
  55371. },
  55372. {
  55373. name: "Normal",
  55374. height: math.unit(8, "feet"),
  55375. default: true
  55376. },
  55377. {
  55378. name: "Mini-macro",
  55379. height: math.unit(30, "feet")
  55380. },
  55381. {
  55382. name: "Macro",
  55383. height: math.unit(400, "feet")
  55384. },
  55385. {
  55386. name: "Mega-macro",
  55387. height: math.unit(6000, "feet")
  55388. },
  55389. ]
  55390. ))
  55391. characterMakers.push(() => makeCharacter(
  55392. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55393. {
  55394. front: {
  55395. height: math.unit(6 + 7/12, "feet"),
  55396. weight: math.unit(210, "lb"),
  55397. name: "Front",
  55398. image: {
  55399. source: "./media/characters/wilfred-t-buxton/front.svg",
  55400. extra: 1068/882,
  55401. bottom: 28/1096
  55402. }
  55403. },
  55404. },
  55405. [
  55406. {
  55407. name: "Normal",
  55408. height: math.unit(6 + 7/12, "feet"),
  55409. default: true
  55410. },
  55411. ]
  55412. ))
  55413. characterMakers.push(() => makeCharacter(
  55414. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55415. {
  55416. front: {
  55417. height: math.unit(5 + 2/12, "feet"),
  55418. weight: math.unit(120, "lb"),
  55419. name: "Front",
  55420. image: {
  55421. source: "./media/characters/leighton-marrow/front.svg",
  55422. extra: 441/409,
  55423. bottom: 37/478
  55424. }
  55425. },
  55426. },
  55427. [
  55428. {
  55429. name: "Normal",
  55430. height: math.unit(5 + 2/12, "feet"),
  55431. default: true
  55432. },
  55433. ]
  55434. ))
  55435. characterMakers.push(() => makeCharacter(
  55436. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55437. {
  55438. front: {
  55439. height: math.unit(4, "meters"),
  55440. weight: math.unit(1200, "kg"),
  55441. name: "Front",
  55442. image: {
  55443. source: "./media/characters/licos/front.svg",
  55444. extra: 1727/1604,
  55445. bottom: 101/1828
  55446. },
  55447. form: "anthro",
  55448. default: true
  55449. },
  55450. taur_side: {
  55451. height: math.unit(20, "meters"),
  55452. weight: math.unit(1100000, "kg"),
  55453. name: "Side",
  55454. image: {
  55455. source: "./media/characters/licos/taur.svg",
  55456. extra: 1158/1091,
  55457. bottom: 80/1238
  55458. },
  55459. form: "taur",
  55460. default: true
  55461. },
  55462. },
  55463. [
  55464. {
  55465. name: "Normal",
  55466. height: math.unit(4, "meters"),
  55467. default: true,
  55468. form: "anthro"
  55469. },
  55470. {
  55471. name: "Normal",
  55472. height: math.unit(20, "meters"),
  55473. default: true,
  55474. form: "taur"
  55475. },
  55476. ],
  55477. {
  55478. "anthro": {
  55479. name: "Anthro",
  55480. default: true
  55481. },
  55482. "taur": {
  55483. name: "Taur",
  55484. },
  55485. }
  55486. ))
  55487. characterMakers.push(() => makeCharacter(
  55488. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55489. {
  55490. front: {
  55491. height: math.unit(10 + 3/12, "feet"),
  55492. name: "Front",
  55493. image: {
  55494. source: "./media/characters/theo-monkey/front.svg",
  55495. extra: 1735/1658,
  55496. bottom: 73/1808
  55497. }
  55498. },
  55499. back: {
  55500. height: math.unit(10 + 3/12, "feet"),
  55501. name: "Back",
  55502. image: {
  55503. source: "./media/characters/theo-monkey/back.svg",
  55504. extra: 1742/1664,
  55505. bottom: 33/1775
  55506. }
  55507. },
  55508. head: {
  55509. height: math.unit(2.29, "feet"),
  55510. name: "Head",
  55511. image: {
  55512. source: "./media/characters/theo-monkey/head.svg"
  55513. }
  55514. },
  55515. handPalm: {
  55516. height: math.unit(1.73, "feet"),
  55517. name: "Hand (Palm)",
  55518. image: {
  55519. source: "./media/characters/theo-monkey/hand-palm.svg"
  55520. }
  55521. },
  55522. handBack: {
  55523. height: math.unit(1.63, "feet"),
  55524. name: "Hand (Back)",
  55525. image: {
  55526. source: "./media/characters/theo-monkey/hand-back.svg"
  55527. }
  55528. },
  55529. footSole: {
  55530. height: math.unit(2.15, "feet"),
  55531. name: "Foot (Sole)",
  55532. image: {
  55533. source: "./media/characters/theo-monkey/foot-sole.svg"
  55534. }
  55535. },
  55536. footSide: {
  55537. height: math.unit(1.6, "feet"),
  55538. name: "Foot (Side)",
  55539. image: {
  55540. source: "./media/characters/theo-monkey/foot-side.svg"
  55541. }
  55542. },
  55543. },
  55544. [
  55545. {
  55546. name: "Normal",
  55547. height: math.unit(10 + 3/12, "feet"),
  55548. default: true
  55549. },
  55550. ]
  55551. ))
  55552. characterMakers.push(() => makeCharacter(
  55553. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55554. {
  55555. front: {
  55556. height: math.unit(11, "feet"),
  55557. weight: math.unit(3000, "lb"),
  55558. preyCapacity: math.unit(10, "people"),
  55559. name: "Front",
  55560. image: {
  55561. source: "./media/characters/brook/front.svg",
  55562. extra: 909/835,
  55563. bottom: 108/1017
  55564. }
  55565. },
  55566. back: {
  55567. height: math.unit(11, "feet"),
  55568. weight: math.unit(3000, "lb"),
  55569. preyCapacity: math.unit(10, "people"),
  55570. name: "Back",
  55571. image: {
  55572. source: "./media/characters/brook/back.svg",
  55573. extra: 976/916,
  55574. bottom: 34/1010
  55575. }
  55576. },
  55577. backAlt: {
  55578. height: math.unit(11, "feet"),
  55579. weight: math.unit(3000, "lb"),
  55580. preyCapacity: math.unit(10, "people"),
  55581. name: "Back (Alt)",
  55582. image: {
  55583. source: "./media/characters/brook/back-alt.svg",
  55584. extra: 1283/1213,
  55585. bottom: 35/1318
  55586. }
  55587. },
  55588. bust: {
  55589. height: math.unit(9.0859030837, "feet"),
  55590. weight: math.unit(3000, "lb"),
  55591. preyCapacity: math.unit(10, "people"),
  55592. name: "Bust",
  55593. image: {
  55594. source: "./media/characters/brook/bust.svg",
  55595. extra: 2043/1923,
  55596. bottom: 0/2043
  55597. }
  55598. },
  55599. },
  55600. [
  55601. {
  55602. name: "Small",
  55603. height: math.unit(11, "feet"),
  55604. default: true
  55605. },
  55606. {
  55607. name: "Towering",
  55608. height: math.unit(5, "km")
  55609. },
  55610. {
  55611. name: "Enormous",
  55612. height: math.unit(25, "earths")
  55613. },
  55614. ]
  55615. ))
  55616. characterMakers.push(() => makeCharacter(
  55617. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55618. {
  55619. front: {
  55620. height: math.unit(4, "feet"),
  55621. weight: math.unit(150, "lb"),
  55622. name: "Front",
  55623. image: {
  55624. source: "./media/characters/squishi/front.svg",
  55625. extra: 1428/1271,
  55626. bottom: 30/1458
  55627. },
  55628. extraAttributes: {
  55629. "pawSize": {
  55630. name: "Paw Size",
  55631. power: 1,
  55632. type: "length",
  55633. base: math.unit(14, "ShoeSizeMensUS"),
  55634. defaultUnit: "ShoeSizeMensUS"
  55635. },
  55636. }
  55637. },
  55638. side: {
  55639. height: math.unit(4, "feet"),
  55640. weight: math.unit(150, "lb"),
  55641. name: "Side",
  55642. image: {
  55643. source: "./media/characters/squishi/side.svg",
  55644. extra: 1428/1271,
  55645. bottom: 30/1458
  55646. },
  55647. extraAttributes: {
  55648. "pawSize": {
  55649. name: "Paw Size",
  55650. power: 1,
  55651. type: "length",
  55652. base: math.unit(14, "ShoeSizeMensUS"),
  55653. defaultUnit: "ShoeSizeMensUS"
  55654. },
  55655. }
  55656. },
  55657. back: {
  55658. height: math.unit(4, "feet"),
  55659. weight: math.unit(150, "lb"),
  55660. name: "Back",
  55661. image: {
  55662. source: "./media/characters/squishi/back.svg",
  55663. extra: 1428/1271,
  55664. bottom: 30/1458
  55665. },
  55666. extraAttributes: {
  55667. "pawSize": {
  55668. name: "Paw Size",
  55669. power: 1,
  55670. type: "length",
  55671. base: math.unit(14, "ShoeSizeMensUS"),
  55672. defaultUnit: "ShoeSizeMensUS"
  55673. },
  55674. }
  55675. },
  55676. },
  55677. [
  55678. {
  55679. name: "Normal",
  55680. height: math.unit(4, "feet"),
  55681. default: true
  55682. },
  55683. ]
  55684. ))
  55685. characterMakers.push(() => makeCharacter(
  55686. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55687. {
  55688. front: {
  55689. height: math.unit(7 + 8/12, "feet"),
  55690. weight: math.unit(333, "lb"),
  55691. name: "Front",
  55692. image: {
  55693. source: "./media/characters/vincent-vasroc/front.svg",
  55694. extra: 1962/1860,
  55695. bottom: 41/2003
  55696. }
  55697. },
  55698. back: {
  55699. height: math.unit(7 + 8/12, "feet"),
  55700. weight: math.unit(333, "lb"),
  55701. name: "Back",
  55702. image: {
  55703. source: "./media/characters/vincent-vasroc/back.svg",
  55704. extra: 1952/1815,
  55705. bottom: 33/1985
  55706. }
  55707. },
  55708. paw: {
  55709. height: math.unit(1.24, "feet"),
  55710. name: "Paw",
  55711. image: {
  55712. source: "./media/characters/vincent-vasroc/paw.svg"
  55713. }
  55714. },
  55715. ear: {
  55716. height: math.unit(0.75, "feet"),
  55717. name: "Ear",
  55718. image: {
  55719. source: "./media/characters/vincent-vasroc/ear.svg"
  55720. }
  55721. },
  55722. },
  55723. [
  55724. {
  55725. name: "Nano",
  55726. height: math.unit(92, "micrometers")
  55727. },
  55728. {
  55729. name: "Normal",
  55730. height: math.unit(7 + 8/12, "feet"),
  55731. default: true
  55732. },
  55733. ]
  55734. ))
  55735. characterMakers.push(() => makeCharacter(
  55736. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55737. {
  55738. frontNsfw: {
  55739. height: math.unit(40, "feet"),
  55740. weight: math.unit(58, "tons"),
  55741. name: "Front (NSFW)",
  55742. image: {
  55743. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55744. extra: 1265/965,
  55745. bottom: 155/1420
  55746. }
  55747. },
  55748. frontSfw: {
  55749. height: math.unit(40, "feet"),
  55750. weight: math.unit(58, "tons"),
  55751. name: "Front (SFW)",
  55752. image: {
  55753. source: "./media/characters/ru-kahn/front-sfw.svg",
  55754. extra: 1265/965,
  55755. bottom: 80/1345
  55756. }
  55757. },
  55758. },
  55759. [
  55760. {
  55761. name: "Small",
  55762. height: math.unit(4, "feet")
  55763. },
  55764. {
  55765. name: "Normal",
  55766. height: math.unit(40, "feet"),
  55767. default: true
  55768. },
  55769. {
  55770. name: "Macro",
  55771. height: math.unit(400, "feet")
  55772. },
  55773. ]
  55774. ))
  55775. characterMakers.push(() => makeCharacter(
  55776. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55777. {
  55778. frontNude: {
  55779. height: math.unit(6 + 5/12, "feet"),
  55780. name: "Front (Nude)",
  55781. image: {
  55782. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55783. extra: 1369/1366,
  55784. bottom: 68/1437
  55785. }
  55786. },
  55787. frontDressed: {
  55788. height: math.unit(6 + 5/12, "feet"),
  55789. name: "Front (Dressed)",
  55790. image: {
  55791. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55792. extra: 1369/1366,
  55793. bottom: 68/1437
  55794. }
  55795. },
  55796. },
  55797. [
  55798. {
  55799. name: "Normal",
  55800. height: math.unit(6 + 5/12, "feet"),
  55801. default: true
  55802. },
  55803. {
  55804. name: "Maximum",
  55805. height: math.unit(1930, "feet")
  55806. },
  55807. ]
  55808. ))
  55809. characterMakers.push(() => makeCharacter(
  55810. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55811. {
  55812. front: {
  55813. height: math.unit(5 + 6/12, "feet"),
  55814. name: "Front",
  55815. image: {
  55816. source: "./media/characters/kaja/front.svg",
  55817. extra: 1874/1514,
  55818. bottom: 117/1991
  55819. }
  55820. },
  55821. },
  55822. [
  55823. {
  55824. name: "Normal",
  55825. height: math.unit(5 + 6/12, "feet"),
  55826. default: true
  55827. },
  55828. ]
  55829. ))
  55830. characterMakers.push(() => makeCharacter(
  55831. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55832. {
  55833. front: {
  55834. height: math.unit(5 + 9/12, "feet"),
  55835. weight: math.unit(200, "lb"),
  55836. name: "Front",
  55837. image: {
  55838. source: "./media/characters/mark-smith/front.svg",
  55839. extra: 1004/943,
  55840. bottom: 58/1062
  55841. }
  55842. },
  55843. back: {
  55844. height: math.unit(5 + 9/12, "feet"),
  55845. weight: math.unit(200, "lb"),
  55846. name: "Back",
  55847. image: {
  55848. source: "./media/characters/mark-smith/back.svg",
  55849. extra: 1023/953,
  55850. bottom: 24/1047
  55851. }
  55852. },
  55853. head: {
  55854. height: math.unit(1.82, "feet"),
  55855. name: "Head",
  55856. image: {
  55857. source: "./media/characters/mark-smith/head.svg"
  55858. }
  55859. },
  55860. hand: {
  55861. height: math.unit(1.4, "feet"),
  55862. name: "Hand",
  55863. image: {
  55864. source: "./media/characters/mark-smith/hand.svg"
  55865. }
  55866. },
  55867. paw: {
  55868. height: math.unit(1.69, "feet"),
  55869. name: "Paw",
  55870. image: {
  55871. source: "./media/characters/mark-smith/paw.svg"
  55872. }
  55873. },
  55874. },
  55875. [
  55876. {
  55877. name: "Micro",
  55878. height: math.unit(0.25, "inches")
  55879. },
  55880. {
  55881. name: "Normal",
  55882. height: math.unit(5 + 9/12, "feet"),
  55883. default: true
  55884. },
  55885. {
  55886. name: "Macro",
  55887. height: math.unit(500, "feet")
  55888. },
  55889. ]
  55890. ))
  55891. characterMakers.push(() => makeCharacter(
  55892. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55893. {
  55894. frontNude: {
  55895. height: math.unit(6, "feet"),
  55896. name: "Front (Nude)",
  55897. image: {
  55898. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55899. extra: 1384/1321,
  55900. bottom: 57/1441
  55901. }
  55902. },
  55903. frontDressed: {
  55904. height: math.unit(6, "feet"),
  55905. name: "Front (Dressed)",
  55906. image: {
  55907. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55908. extra: 1384/1321,
  55909. bottom: 57/1441
  55910. }
  55911. },
  55912. },
  55913. [
  55914. {
  55915. name: "Normal",
  55916. height: math.unit(6, "feet"),
  55917. default: true
  55918. },
  55919. {
  55920. name: "Maximum",
  55921. height: math.unit(1776, "feet")
  55922. },
  55923. ]
  55924. ))
  55925. characterMakers.push(() => makeCharacter(
  55926. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55927. {
  55928. front: {
  55929. height: math.unit(2 + 4/12, "feet"),
  55930. weight: math.unit(350, "lb"),
  55931. name: "Front",
  55932. image: {
  55933. source: "./media/characters/devos/front.svg",
  55934. extra: 958/852,
  55935. bottom: 143/1101
  55936. }
  55937. },
  55938. },
  55939. [
  55940. {
  55941. name: "Base",
  55942. height: math.unit(2 + 4/12, "feet"),
  55943. default: true
  55944. },
  55945. ]
  55946. ))
  55947. characterMakers.push(() => makeCharacter(
  55948. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55949. {
  55950. front: {
  55951. height: math.unit(9 + 2/12, "feet"),
  55952. name: "Front",
  55953. image: {
  55954. source: "./media/characters/hiveheart/front.svg",
  55955. extra: 394/364,
  55956. bottom: 65/459
  55957. }
  55958. },
  55959. back: {
  55960. height: math.unit(9 + 2/12, "feet"),
  55961. name: "Back",
  55962. image: {
  55963. source: "./media/characters/hiveheart/back.svg",
  55964. extra: 374/357,
  55965. bottom: 63/437
  55966. }
  55967. },
  55968. },
  55969. [
  55970. {
  55971. name: "Base",
  55972. height: math.unit(9 + 2/12, "feet"),
  55973. default: true
  55974. },
  55975. ]
  55976. ))
  55977. characterMakers.push(() => makeCharacter(
  55978. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55979. {
  55980. front: {
  55981. height: math.unit(2.5, "inches"),
  55982. weight: math.unit(0.6, "oz"),
  55983. name: "Front",
  55984. image: {
  55985. source: "./media/characters/bryn/front.svg",
  55986. extra: 1480/1205,
  55987. bottom: 27/1507
  55988. }
  55989. },
  55990. back: {
  55991. height: math.unit(2.5, "inches"),
  55992. weight: math.unit(0.6, "oz"),
  55993. name: "Back",
  55994. image: {
  55995. source: "./media/characters/bryn/back.svg",
  55996. extra: 1475/1201,
  55997. bottom: 39/1514
  55998. }
  55999. },
  56000. foot: {
  56001. height: math.unit(0.4, "inches"),
  56002. name: "Foot",
  56003. image: {
  56004. source: "./media/characters/bryn/foot.svg"
  56005. }
  56006. },
  56007. },
  56008. [
  56009. {
  56010. name: "Normal",
  56011. height: math.unit(2.5, "inches"),
  56012. default: true
  56013. },
  56014. ]
  56015. ))
  56016. characterMakers.push(() => makeCharacter(
  56017. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56018. {
  56019. side: {
  56020. height: math.unit(7, "feet"),
  56021. weight: math.unit(657, "kg"),
  56022. name: "Side",
  56023. image: {
  56024. source: "./media/characters/delta/side.svg",
  56025. extra: 781/212,
  56026. bottom: 7/788
  56027. },
  56028. extraAttributes: {
  56029. "wingspan": {
  56030. name: "Wingspan",
  56031. power: 1,
  56032. type: "length",
  56033. base: math.unit(48, "feet")
  56034. },
  56035. "length": {
  56036. name: "Length",
  56037. power: 1,
  56038. type: "length",
  56039. base: math.unit(21, "feet")
  56040. },
  56041. "pawSize": {
  56042. name: "Paw Size",
  56043. power: 2,
  56044. type: "area",
  56045. base: math.unit(1.5*1.4, "feet^2")
  56046. },
  56047. }
  56048. },
  56049. },
  56050. [
  56051. {
  56052. name: "Normal",
  56053. height: math.unit(6, "feet"),
  56054. default: true
  56055. },
  56056. ]
  56057. ))
  56058. characterMakers.push(() => makeCharacter(
  56059. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56060. {
  56061. front: {
  56062. height: math.unit(6, "feet"),
  56063. name: "Front",
  56064. image: {
  56065. source: "./media/characters/pyrow/front.svg",
  56066. extra: 513/486,
  56067. bottom: 14/527
  56068. }
  56069. },
  56070. frontWing: {
  56071. height: math.unit(6, "feet"),
  56072. name: "Front (Wing)",
  56073. image: {
  56074. source: "./media/characters/pyrow/front-wing.svg",
  56075. extra: 539/383,
  56076. bottom: 20/559
  56077. }
  56078. },
  56079. back: {
  56080. height: math.unit(6, "feet"),
  56081. name: "Back",
  56082. image: {
  56083. source: "./media/characters/pyrow/back.svg",
  56084. extra: 500/473,
  56085. bottom: 9/509
  56086. }
  56087. },
  56088. },
  56089. [
  56090. {
  56091. name: "Normal",
  56092. height: math.unit(6, "feet"),
  56093. default: true
  56094. },
  56095. ]
  56096. ))
  56097. characterMakers.push(() => makeCharacter(
  56098. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56099. {
  56100. front: {
  56101. height: math.unit(5, "meters"),
  56102. weight: math.unit(3, "tonnes"),
  56103. name: "Front",
  56104. image: {
  56105. source: "./media/characters/velikan/front.svg",
  56106. extra: 867/744,
  56107. bottom: 71/938
  56108. },
  56109. extraAttributes: {
  56110. "shoeSize": {
  56111. name: "Shoe Size",
  56112. power: 1,
  56113. type: "length",
  56114. base: math.unit(135, "ShoeSizeUK"),
  56115. defaultUnit: "ShoeSizeUK"
  56116. },
  56117. }
  56118. },
  56119. },
  56120. [
  56121. {
  56122. name: "Normal",
  56123. height: math.unit(5, "meters"),
  56124. default: true
  56125. },
  56126. {
  56127. name: "Macro",
  56128. height: math.unit(1, "km")
  56129. },
  56130. {
  56131. name: "Mega Macro",
  56132. height: math.unit(100, "km")
  56133. },
  56134. {
  56135. name: "Giga Macro",
  56136. height: math.unit(2, "megameters")
  56137. },
  56138. {
  56139. name: "Planetary",
  56140. height: math.unit(22, "megameters")
  56141. },
  56142. {
  56143. name: "Solar",
  56144. height: math.unit(8, "gigameters")
  56145. },
  56146. {
  56147. name: "Cosmic",
  56148. height: math.unit(10, "zettameters")
  56149. },
  56150. {
  56151. name: "Omni",
  56152. height: math.unit(9e260, "multiverses")
  56153. },
  56154. ]
  56155. ))
  56156. characterMakers.push(() => makeCharacter(
  56157. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56158. {
  56159. front: {
  56160. height: math.unit(4 + 3/12, "feet"),
  56161. weight: math.unit(90, "lb"),
  56162. name: "Front",
  56163. image: {
  56164. source: "./media/characters/sabiki/front.svg",
  56165. extra: 1662/1423,
  56166. bottom: 65/1727
  56167. }
  56168. },
  56169. },
  56170. [
  56171. {
  56172. name: "Normal",
  56173. height: math.unit(4 + 3/12, "feet"),
  56174. default: true
  56175. },
  56176. ]
  56177. ))
  56178. characterMakers.push(() => makeCharacter(
  56179. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56180. {
  56181. frontSfw: {
  56182. height: math.unit(2, "mm"),
  56183. name: "Front (SFW)",
  56184. image: {
  56185. source: "./media/characters/carmel/front-sfw.svg",
  56186. extra: 1131/1006,
  56187. bottom: 66/1197
  56188. }
  56189. },
  56190. frontNsfw: {
  56191. height: math.unit(2, "mm"),
  56192. name: "Front (NSFW)",
  56193. image: {
  56194. source: "./media/characters/carmel/front-nsfw.svg",
  56195. extra: 1131/1006,
  56196. bottom: 66/1197
  56197. }
  56198. },
  56199. foot: {
  56200. height: math.unit(0.3, "mm"),
  56201. name: "Foot",
  56202. image: {
  56203. source: "./media/characters/carmel/foot.svg"
  56204. }
  56205. },
  56206. tongue: {
  56207. height: math.unit(0.71, "mm"),
  56208. name: "Tongue",
  56209. image: {
  56210. source: "./media/characters/carmel/tongue.svg"
  56211. }
  56212. },
  56213. dick: {
  56214. height: math.unit(0.085, "mm"),
  56215. name: "Dick",
  56216. image: {
  56217. source: "./media/characters/carmel/dick.svg"
  56218. }
  56219. },
  56220. },
  56221. [
  56222. {
  56223. name: "Micro",
  56224. height: math.unit(2, "mm"),
  56225. default: true
  56226. },
  56227. {
  56228. name: "Normal",
  56229. height: math.unit(4 + 8/12, "feet")
  56230. },
  56231. {
  56232. name: "Mega Macro",
  56233. height: math.unit(250, "feet")
  56234. },
  56235. {
  56236. name: "BIGGER",
  56237. height: math.unit(1000, "feet")
  56238. },
  56239. {
  56240. name: "BIGGEST",
  56241. height: math.unit(2, "miles")
  56242. },
  56243. ]
  56244. ))
  56245. characterMakers.push(() => makeCharacter(
  56246. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56247. {
  56248. front: {
  56249. height: math.unit(6.5, "feet"),
  56250. weight: math.unit(198, "lb"),
  56251. name: "Front",
  56252. image: {
  56253. source: "./media/characters/tamani/anthro.svg",
  56254. extra: 930/890,
  56255. bottom: 34/964
  56256. },
  56257. form: "anthro",
  56258. default: true
  56259. },
  56260. side: {
  56261. height: math.unit(6, "feet"),
  56262. weight: math.unit(198*2, "lb"),
  56263. name: "Side",
  56264. image: {
  56265. source: "./media/characters/tamani/feral.svg",
  56266. extra: 559/519,
  56267. bottom: 43/602
  56268. },
  56269. form: "feral"
  56270. },
  56271. },
  56272. [
  56273. {
  56274. name: "Normal",
  56275. height: math.unit(6.5, "feet"),
  56276. default: true,
  56277. form: "anthro"
  56278. },
  56279. {
  56280. name: "Normal",
  56281. height: math.unit(6, "feet"),
  56282. default: true,
  56283. form: "feral"
  56284. },
  56285. ],
  56286. {
  56287. "anthro": {
  56288. name: "Anthro",
  56289. default: true
  56290. },
  56291. "feral": {
  56292. name: "Feral",
  56293. },
  56294. }
  56295. ))
  56296. characterMakers.push(() => makeCharacter(
  56297. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56298. {
  56299. front: {
  56300. height: math.unit(4 + 1/12, "feet"),
  56301. weight: math.unit(114, "lb"),
  56302. name: "Front",
  56303. image: {
  56304. source: "./media/characters/dex/front.svg",
  56305. extra: 787/680,
  56306. bottom: 18/805
  56307. }
  56308. },
  56309. side: {
  56310. height: math.unit(4 + 1/12, "feet"),
  56311. weight: math.unit(114, "lb"),
  56312. name: "Side",
  56313. image: {
  56314. source: "./media/characters/dex/side.svg",
  56315. extra: 785/680,
  56316. bottom: 12/797
  56317. }
  56318. },
  56319. back: {
  56320. height: math.unit(4 + 1/12, "feet"),
  56321. weight: math.unit(114, "lb"),
  56322. name: "Back",
  56323. image: {
  56324. source: "./media/characters/dex/back.svg",
  56325. extra: 785/681,
  56326. bottom: 17/802
  56327. }
  56328. },
  56329. loungewear: {
  56330. height: math.unit(4 + 1/12, "feet"),
  56331. weight: math.unit(114, "lb"),
  56332. name: "Loungewear",
  56333. image: {
  56334. source: "./media/characters/dex/loungewear.svg",
  56335. extra: 787/680,
  56336. bottom: 18/805
  56337. }
  56338. },
  56339. workout: {
  56340. height: math.unit(4 + 1/12, "feet"),
  56341. weight: math.unit(114, "lb"),
  56342. name: "Workout",
  56343. image: {
  56344. source: "./media/characters/dex/workout.svg",
  56345. extra: 787/680,
  56346. bottom: 18/805
  56347. }
  56348. },
  56349. schoolUniform: {
  56350. height: math.unit(4 + 1/12, "feet"),
  56351. weight: math.unit(114, "lb"),
  56352. name: "School-uniform",
  56353. image: {
  56354. source: "./media/characters/dex/school-uniform.svg",
  56355. extra: 787/680,
  56356. bottom: 18/805
  56357. }
  56358. },
  56359. maw: {
  56360. height: math.unit(0.55, "feet"),
  56361. name: "Maw",
  56362. image: {
  56363. source: "./media/characters/dex/maw.svg"
  56364. }
  56365. },
  56366. paw: {
  56367. height: math.unit(0.87, "feet"),
  56368. name: "Paw",
  56369. image: {
  56370. source: "./media/characters/dex/paw.svg"
  56371. }
  56372. },
  56373. bust: {
  56374. height: math.unit(1.67, "feet"),
  56375. name: "Bust",
  56376. image: {
  56377. source: "./media/characters/dex/bust.svg"
  56378. }
  56379. },
  56380. },
  56381. [
  56382. {
  56383. name: "Normal",
  56384. height: math.unit(4 + 1/12, "feet"),
  56385. default: true
  56386. },
  56387. ]
  56388. ))
  56389. characterMakers.push(() => makeCharacter(
  56390. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56391. {
  56392. front: {
  56393. height: math.unit(4 + 3/12, "feet"),
  56394. weight: math.unit(60, "lb"),
  56395. name: "Front",
  56396. image: {
  56397. source: "./media/characters/silke/front.svg",
  56398. extra: 1334/1122,
  56399. bottom: 21/1355
  56400. }
  56401. },
  56402. back: {
  56403. height: math.unit(4 + 3/12, "feet"),
  56404. weight: math.unit(60, "lb"),
  56405. name: "Back",
  56406. image: {
  56407. source: "./media/characters/silke/back.svg",
  56408. extra: 1328/1092,
  56409. bottom: 16/1344
  56410. }
  56411. },
  56412. dressed: {
  56413. height: math.unit(4 + 3/12, "feet"),
  56414. weight: math.unit(60, "lb"),
  56415. name: "Dressed",
  56416. image: {
  56417. source: "./media/characters/silke/dressed.svg",
  56418. extra: 1334/1122,
  56419. bottom: 43/1377
  56420. }
  56421. },
  56422. },
  56423. [
  56424. {
  56425. name: "Normal",
  56426. height: math.unit(4 + 3/12, "feet"),
  56427. default: true
  56428. },
  56429. ]
  56430. ))
  56431. characterMakers.push(() => makeCharacter(
  56432. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56433. {
  56434. front: {
  56435. height: math.unit(1.58, "meters"),
  56436. weight: math.unit(47, "kg"),
  56437. name: "Front",
  56438. image: {
  56439. source: "./media/characters/wireshark/front.svg",
  56440. extra: 883/838,
  56441. bottom: 66/949
  56442. }
  56443. },
  56444. },
  56445. [
  56446. {
  56447. name: "Normal",
  56448. height: math.unit(1.58, "meters"),
  56449. default: true
  56450. },
  56451. ]
  56452. ))
  56453. characterMakers.push(() => makeCharacter(
  56454. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56455. {
  56456. front: {
  56457. height: math.unit(6, "meters"),
  56458. weight: math.unit(15000, "kg"),
  56459. name: "Front",
  56460. image: {
  56461. source: "./media/characters/gallagher/front.svg",
  56462. extra: 532/493,
  56463. bottom: 0/532
  56464. }
  56465. },
  56466. },
  56467. [
  56468. {
  56469. name: "Normal",
  56470. height: math.unit(6, "meters"),
  56471. default: true
  56472. },
  56473. ]
  56474. ))
  56475. characterMakers.push(() => makeCharacter(
  56476. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56477. {
  56478. front: {
  56479. height: math.unit(2.4, "meters"),
  56480. weight: math.unit(270, "kg"),
  56481. name: "Front",
  56482. image: {
  56483. source: "./media/characters/alice/front.svg",
  56484. extra: 950/900,
  56485. bottom: 36/986
  56486. }
  56487. },
  56488. side: {
  56489. height: math.unit(2.4, "meters"),
  56490. weight: math.unit(270, "kg"),
  56491. name: "Side",
  56492. image: {
  56493. source: "./media/characters/alice/side.svg",
  56494. extra: 921/876,
  56495. bottom: 19/940
  56496. }
  56497. },
  56498. dressed: {
  56499. height: math.unit(2.4, "meters"),
  56500. weight: math.unit(270, "kg"),
  56501. name: "Dressed",
  56502. image: {
  56503. source: "./media/characters/alice/dressed.svg",
  56504. extra: 905/850,
  56505. bottom: 81/986
  56506. }
  56507. },
  56508. fishnet: {
  56509. height: math.unit(2.4, "meters"),
  56510. weight: math.unit(270, "kg"),
  56511. name: "Fishnet",
  56512. image: {
  56513. source: "./media/characters/alice/fishnet.svg",
  56514. extra: 905/850,
  56515. bottom: 81/986
  56516. }
  56517. },
  56518. },
  56519. [
  56520. {
  56521. name: "Normal",
  56522. height: math.unit(2.4, "meters"),
  56523. default: true
  56524. },
  56525. ]
  56526. ))
  56527. characterMakers.push(() => makeCharacter(
  56528. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56529. {
  56530. front: {
  56531. height: math.unit(175.25, "feet"),
  56532. name: "Front",
  56533. image: {
  56534. source: "./media/characters/fio/front.svg",
  56535. extra: 1883/1591,
  56536. bottom: 34/1917
  56537. }
  56538. },
  56539. },
  56540. [
  56541. {
  56542. name: "Normal",
  56543. height: math.unit(175.25, "cm"),
  56544. default: true
  56545. },
  56546. ]
  56547. ))
  56548. characterMakers.push(() => makeCharacter(
  56549. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56550. {
  56551. side: {
  56552. height: math.unit(6, "meters"),
  56553. weight: math.unit(3400, "kg"),
  56554. preyCapacity: math.unit(1700, "liters"),
  56555. name: "Side",
  56556. image: {
  56557. source: "./media/characters/hass/side.svg",
  56558. extra: 1058/997,
  56559. bottom: 177/1235
  56560. }
  56561. },
  56562. feeding: {
  56563. height: math.unit(6*0.63, "meters"),
  56564. weight: math.unit(3400, "kg"),
  56565. preyCapacity: math.unit(1700, "liters"),
  56566. name: "Feeding",
  56567. image: {
  56568. source: "./media/characters/hass/feeding.svg",
  56569. extra: 689/579,
  56570. bottom: 146/835
  56571. }
  56572. },
  56573. guts: {
  56574. height: math.unit(6, "meters"),
  56575. weight: math.unit(3400, "kg"),
  56576. name: "Guts",
  56577. image: {
  56578. source: "./media/characters/hass/guts.svg",
  56579. extra: 1223/1198,
  56580. bottom: 182/1405
  56581. }
  56582. },
  56583. dickFront: {
  56584. height: math.unit(1.4, "meters"),
  56585. name: "Dick (Front)",
  56586. image: {
  56587. source: "./media/characters/hass/dick-front.svg"
  56588. }
  56589. },
  56590. dickSide: {
  56591. height: math.unit(1.3, "meters"),
  56592. name: "Dick (Side)",
  56593. image: {
  56594. source: "./media/characters/hass/dick-side.svg"
  56595. }
  56596. },
  56597. dickBack: {
  56598. height: math.unit(1.4, "meters"),
  56599. name: "Dick (Back)",
  56600. image: {
  56601. source: "./media/characters/hass/dick-back.svg"
  56602. }
  56603. },
  56604. },
  56605. [
  56606. {
  56607. name: "Normal",
  56608. height: math.unit(6, "meters"),
  56609. default: true
  56610. },
  56611. ]
  56612. ))
  56613. characterMakers.push(() => makeCharacter(
  56614. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56615. {
  56616. front: {
  56617. height: math.unit(4, "feet"),
  56618. weight: math.unit(60, "lb"),
  56619. name: "Front",
  56620. image: {
  56621. source: "./media/characters/hickory-finnegan/front.svg",
  56622. extra: 444/411,
  56623. bottom: 10/454
  56624. }
  56625. },
  56626. side: {
  56627. height: math.unit(4, "feet"),
  56628. weight: math.unit(60, "lb"),
  56629. name: "Side",
  56630. image: {
  56631. source: "./media/characters/hickory-finnegan/side.svg",
  56632. extra: 444/411,
  56633. bottom: 10/454
  56634. }
  56635. },
  56636. back: {
  56637. height: math.unit(4, "feet"),
  56638. weight: math.unit(60, "lb"),
  56639. name: "Back",
  56640. image: {
  56641. source: "./media/characters/hickory-finnegan/back.svg",
  56642. extra: 444/411,
  56643. bottom: 10/454
  56644. }
  56645. },
  56646. },
  56647. [
  56648. {
  56649. name: "Normal",
  56650. height: math.unit(4, "feet"),
  56651. default: true
  56652. },
  56653. ]
  56654. ))
  56655. characterMakers.push(() => makeCharacter(
  56656. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56657. {
  56658. snivy_front: {
  56659. height: math.unit(2, "feet"),
  56660. weight: math.unit(17.9, "lb"),
  56661. name: "Front",
  56662. image: {
  56663. source: "./media/characters/robin-phox/snivy-front.svg",
  56664. extra: 569/504,
  56665. bottom: 33/602
  56666. },
  56667. form: "snivy",
  56668. default: true
  56669. },
  56670. snivy_frontNsfw: {
  56671. height: math.unit(2, "feet"),
  56672. weight: math.unit(17.9, "lb"),
  56673. name: "Front (NSFW)",
  56674. image: {
  56675. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56676. extra: 569/504,
  56677. bottom: 33/602
  56678. },
  56679. form: "snivy",
  56680. },
  56681. snivy_back: {
  56682. height: math.unit(2, "feet"),
  56683. weight: math.unit(17.9, "lb"),
  56684. name: "Back",
  56685. image: {
  56686. source: "./media/characters/robin-phox/snivy-back.svg",
  56687. extra: 577/508,
  56688. bottom: 21/598
  56689. },
  56690. form: "snivy",
  56691. },
  56692. snivy_foot: {
  56693. height: math.unit(0.68, "feet"),
  56694. name: "Foot",
  56695. image: {
  56696. source: "./media/characters/robin-phox/snivy-foot.svg"
  56697. },
  56698. form: "snivy",
  56699. },
  56700. snivy_sole: {
  56701. height: math.unit(0.68, "feet"),
  56702. name: "Sole",
  56703. image: {
  56704. source: "./media/characters/robin-phox/snivy-sole.svg"
  56705. },
  56706. form: "snivy",
  56707. },
  56708. yoshi_front: {
  56709. height: math.unit(6, "feet"),
  56710. weight: math.unit(150, "lb"),
  56711. name: "Front",
  56712. image: {
  56713. source: "./media/characters/robin-phox/yoshi-front.svg",
  56714. extra: 890/792,
  56715. bottom: 29/919
  56716. },
  56717. form: "yoshi",
  56718. default: true
  56719. },
  56720. yoshi_frontNsfw: {
  56721. height: math.unit(6, "feet"),
  56722. weight: math.unit(150, "lb"),
  56723. name: "Front (NSFW)",
  56724. image: {
  56725. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56726. extra: 890/792,
  56727. bottom: 29/919
  56728. },
  56729. form: "yoshi",
  56730. },
  56731. yoshi_back: {
  56732. height: math.unit(6, "feet"),
  56733. weight: math.unit(150, "lb"),
  56734. name: "Back",
  56735. image: {
  56736. source: "./media/characters/robin-phox/yoshi-back.svg",
  56737. extra: 890/792,
  56738. bottom: 29/919
  56739. },
  56740. form: "yoshi",
  56741. },
  56742. yoshi_foot: {
  56743. height: math.unit(1.5, "feet"),
  56744. name: "Foot",
  56745. image: {
  56746. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56747. },
  56748. form: "yoshi",
  56749. },
  56750. delphox_front: {
  56751. height: math.unit(4 + 11/12, "feet"),
  56752. weight: math.unit(86, "lb"),
  56753. name: "Front",
  56754. image: {
  56755. source: "./media/characters/robin-phox/delphox-front.svg",
  56756. extra: 1266/1069,
  56757. bottom: 32/1298
  56758. },
  56759. form: "delphox",
  56760. default: true
  56761. },
  56762. delphox_frontNsfw: {
  56763. height: math.unit(4 + 11/12, "feet"),
  56764. weight: math.unit(86, "lb"),
  56765. name: "Front (NSFW)",
  56766. image: {
  56767. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56768. extra: 1266/1069,
  56769. bottom: 32/1298
  56770. },
  56771. form: "delphox",
  56772. },
  56773. delphox_back: {
  56774. height: math.unit(4 + 11/12, "feet"),
  56775. weight: math.unit(86, "lb"),
  56776. name: "Back",
  56777. image: {
  56778. source: "./media/characters/robin-phox/delphox-back.svg",
  56779. extra: 1269/1083,
  56780. bottom: 15/1284
  56781. },
  56782. form: "delphox",
  56783. },
  56784. mienshao_front: {
  56785. height: math.unit(4 + 7/12, "feet"),
  56786. weight: math.unit(78.3, "lb"),
  56787. name: "Front",
  56788. image: {
  56789. source: "./media/characters/robin-phox/mienshao-front.svg",
  56790. extra: 1052/970,
  56791. bottom: 108/1160
  56792. },
  56793. form: "mienshao",
  56794. default: true
  56795. },
  56796. mienshao_frontNsfw: {
  56797. height: math.unit(4 + 7/12, "feet"),
  56798. weight: math.unit(78.3, "lb"),
  56799. name: "Front (NSFW)",
  56800. image: {
  56801. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56802. extra: 1052/970,
  56803. bottom: 108/1160
  56804. },
  56805. form: "mienshao",
  56806. },
  56807. mienshao_back: {
  56808. height: math.unit(4 + 7/12, "feet"),
  56809. weight: math.unit(78.3, "lb"),
  56810. name: "Back",
  56811. image: {
  56812. source: "./media/characters/robin-phox/mienshao-back.svg",
  56813. extra: 1102/982,
  56814. bottom: 32/1134
  56815. },
  56816. form: "mienshao",
  56817. },
  56818. inteleon_front: {
  56819. height: math.unit(6 + 3/12, "feet"),
  56820. weight: math.unit(99.6, "lb"),
  56821. name: "Front",
  56822. image: {
  56823. source: "./media/characters/robin-phox/inteleon-front.svg",
  56824. extra: 910/799,
  56825. bottom: 76/986
  56826. },
  56827. form: "inteleon",
  56828. default: true
  56829. },
  56830. inteleon_frontNsfw: {
  56831. height: math.unit(6 + 3/12, "feet"),
  56832. weight: math.unit(99.6, "lb"),
  56833. name: "Front (NSFW)",
  56834. image: {
  56835. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56836. extra: 910/799,
  56837. bottom: 76/986
  56838. },
  56839. form: "inteleon",
  56840. },
  56841. inteleon_back: {
  56842. height: math.unit(6 + 3/12, "feet"),
  56843. weight: math.unit(99.6, "lb"),
  56844. name: "Back",
  56845. image: {
  56846. source: "./media/characters/robin-phox/inteleon-back.svg",
  56847. extra: 907/796,
  56848. bottom: 25/932
  56849. },
  56850. form: "inteleon",
  56851. },
  56852. reshiram_front: {
  56853. height: math.unit(10 + 6/12, "feet"),
  56854. weight: math.unit(727.5, "lb"),
  56855. name: "Front",
  56856. image: {
  56857. source: "./media/characters/robin-phox/reshiram-front.svg",
  56858. extra: 1198/940,
  56859. bottom: 123/1321
  56860. },
  56861. form: "reshiram",
  56862. },
  56863. reshiram_frontNsfw: {
  56864. height: math.unit(10 + 6/12, "feet"),
  56865. weight: math.unit(727.5, "lb"),
  56866. name: "Front-nsfw",
  56867. image: {
  56868. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56869. extra: 1198/940,
  56870. bottom: 123/1321
  56871. },
  56872. form: "reshiram",
  56873. },
  56874. reshiram_back: {
  56875. height: math.unit(10 + 6/12, "feet"),
  56876. weight: math.unit(727.5, "lb"),
  56877. name: "Back",
  56878. image: {
  56879. source: "./media/characters/robin-phox/reshiram-back.svg",
  56880. extra: 1024/904,
  56881. bottom: 85/1109
  56882. },
  56883. form: "reshiram",
  56884. },
  56885. samurott_front: {
  56886. height: math.unit(8, "feet"),
  56887. weight: math.unit(208.6, "lb"),
  56888. name: "Front",
  56889. image: {
  56890. source: "./media/characters/robin-phox/samurott-front.svg",
  56891. extra: 1048/984,
  56892. bottom: 100/1148
  56893. },
  56894. form: "samurott",
  56895. },
  56896. samurott_frontNsfw: {
  56897. height: math.unit(8, "feet"),
  56898. weight: math.unit(208.6, "lb"),
  56899. name: "Front-nsfw",
  56900. image: {
  56901. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56902. extra: 1048/984,
  56903. bottom: 100/1148
  56904. },
  56905. form: "samurott",
  56906. },
  56907. samurott_back: {
  56908. height: math.unit(8, "feet"),
  56909. weight: math.unit(208.6, "lb"),
  56910. name: "Back",
  56911. image: {
  56912. source: "./media/characters/robin-phox/samurott-back.svg",
  56913. extra: 1110/1042,
  56914. bottom: 12/1122
  56915. },
  56916. form: "samurott",
  56917. },
  56918. samurott_feral: {
  56919. height: math.unit(4 + 11/12, "feet"),
  56920. weight: math.unit(208.6, "lb"),
  56921. name: "Feral",
  56922. image: {
  56923. source: "./media/characters/robin-phox/samurott-feral.svg",
  56924. extra: 766/681,
  56925. bottom: 108/874
  56926. },
  56927. form: "samurott",
  56928. },
  56929. },
  56930. [
  56931. {
  56932. name: "Normal",
  56933. height: math.unit(2, "feet"),
  56934. default: true,
  56935. form: "snivy"
  56936. },
  56937. {
  56938. name: "Normal",
  56939. height: math.unit(6, "feet"),
  56940. default: true,
  56941. form: "yoshi"
  56942. },
  56943. {
  56944. name: "Normal",
  56945. height: math.unit(4 + 11/12, "feet"),
  56946. default: true,
  56947. form: "delphox"
  56948. },
  56949. {
  56950. name: "Normal",
  56951. height: math.unit(4 + 7/12, "feet"),
  56952. default: true,
  56953. form: "mienshao"
  56954. },
  56955. {
  56956. name: "Normal",
  56957. height: math.unit(6 + 3/12, "feet"),
  56958. default: true,
  56959. form: "inteleon"
  56960. },
  56961. {
  56962. name: "Normal",
  56963. height: math.unit(10 + 6/12, "feet"),
  56964. default: true,
  56965. form: "reshiram"
  56966. },
  56967. {
  56968. name: "Normal",
  56969. height: math.unit(8, "feet"),
  56970. default: true,
  56971. form: "samurott"
  56972. },
  56973. {
  56974. name: "Macro",
  56975. height: math.unit(500, "feet"),
  56976. allForms: true
  56977. },
  56978. {
  56979. name: "Mega Macro",
  56980. height: math.unit(10, "earths"),
  56981. allForms: true
  56982. },
  56983. {
  56984. name: "Giga Macro",
  56985. height: math.unit(1, "galaxy"),
  56986. allForms: true
  56987. },
  56988. {
  56989. name: "Godly Macro",
  56990. height: math.unit(1e10, "multiverses"),
  56991. allForms: true
  56992. },
  56993. ],
  56994. {
  56995. "snivy": {
  56996. name: "Snivy",
  56997. default: true
  56998. },
  56999. "yoshi": {
  57000. name: "Yoshi",
  57001. },
  57002. "delphox": {
  57003. name: "Delphox",
  57004. },
  57005. "mienshao": {
  57006. name: "Mienshao",
  57007. },
  57008. "inteleon": {
  57009. name: "Inteleon",
  57010. },
  57011. "reshiram": {
  57012. name: "Reshiram",
  57013. },
  57014. "samurott": {
  57015. name: "Samurott",
  57016. },
  57017. }
  57018. ))
  57019. characterMakers.push(() => makeCharacter(
  57020. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57021. {
  57022. front: {
  57023. height: math.unit(4, "feet"),
  57024. name: "Front",
  57025. image: {
  57026. source: "./media/characters/ash-leung/front.svg",
  57027. extra: 1916/1792,
  57028. bottom: 50/1966
  57029. }
  57030. },
  57031. },
  57032. [
  57033. {
  57034. name: "Atomic",
  57035. height: math.unit(1, "angstrom")
  57036. },
  57037. {
  57038. name: "Microscopic",
  57039. height: math.unit(4000, "angstroms")
  57040. },
  57041. {
  57042. name: "Speck",
  57043. height: math.unit(1, "mm")
  57044. },
  57045. {
  57046. name: "Small",
  57047. height: math.unit(1, "inch")
  57048. },
  57049. {
  57050. name: "Normal",
  57051. height: math.unit(4, "feet"),
  57052. default: true
  57053. },
  57054. ]
  57055. ))
  57056. characterMakers.push(() => makeCharacter(
  57057. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57058. {
  57059. frontDressed: {
  57060. height: math.unit(2.08, "meters"),
  57061. weight: math.unit(175, "lb"),
  57062. name: "Front (Dressed)",
  57063. image: {
  57064. source: "./media/characters/carie/front-dressed.svg",
  57065. extra: 456/417,
  57066. bottom: 7/463
  57067. }
  57068. },
  57069. backDressed: {
  57070. height: math.unit(2.08, "meters"),
  57071. weight: math.unit(175, "lb"),
  57072. name: "Back (Dressed)",
  57073. image: {
  57074. source: "./media/characters/carie/back-dressed.svg",
  57075. extra: 455/414,
  57076. bottom: 11/466
  57077. }
  57078. },
  57079. front: {
  57080. height: math.unit(2, "meters"),
  57081. weight: math.unit(175, "lb"),
  57082. name: "Front",
  57083. image: {
  57084. source: "./media/characters/carie/front.svg",
  57085. extra: 438/399,
  57086. bottom: 12/450
  57087. }
  57088. },
  57089. back: {
  57090. height: math.unit(2, "meters"),
  57091. weight: math.unit(175, "lb"),
  57092. name: "Back",
  57093. image: {
  57094. source: "./media/characters/carie/back.svg",
  57095. extra: 438/397,
  57096. bottom: 7/445
  57097. }
  57098. },
  57099. },
  57100. [
  57101. {
  57102. name: "Normal",
  57103. height: math.unit(2.08, "meters"),
  57104. default: true
  57105. },
  57106. {
  57107. name: "Macro",
  57108. height: math.unit(2.08e3, "meters")
  57109. },
  57110. {
  57111. name: "Mega Macro",
  57112. height: math.unit(2.08e6, "meters")
  57113. },
  57114. {
  57115. name: "Giga Macro",
  57116. height: math.unit(2.08e9, "meters")
  57117. },
  57118. {
  57119. name: "Tera Macro",
  57120. height: math.unit(2.08e12, "meters")
  57121. },
  57122. {
  57123. name: "Peta Macro",
  57124. height: math.unit(2.08e15, "meters")
  57125. },
  57126. {
  57127. name: "Exa Macro",
  57128. height: math.unit(2.08e18, "meters")
  57129. },
  57130. {
  57131. name: "Zetta Macro",
  57132. height: math.unit(2.08e21, "meters")
  57133. },
  57134. {
  57135. name: "Yotta Macro",
  57136. height: math.unit(2.08e24, "meters")
  57137. },
  57138. ]
  57139. ))
  57140. characterMakers.push(() => makeCharacter(
  57141. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57142. {
  57143. front: {
  57144. height: math.unit(5 + 2/12, "feet"),
  57145. weight: math.unit(120, "lb"),
  57146. name: "Front",
  57147. image: {
  57148. source: "./media/characters/sai-bree/front.svg",
  57149. extra: 1843/1702,
  57150. bottom: 91/1934
  57151. }
  57152. },
  57153. back: {
  57154. height: math.unit(5 + 2/12, "feet"),
  57155. weight: math.unit(120, "lb"),
  57156. name: "Back",
  57157. image: {
  57158. source: "./media/characters/sai-bree/back.svg",
  57159. extra: 1809/1637,
  57160. bottom: 56/1865
  57161. }
  57162. },
  57163. },
  57164. [
  57165. {
  57166. name: "Normal",
  57167. height: math.unit(5 + 2/12, "feet"),
  57168. default: true
  57169. },
  57170. {
  57171. name: "Macro",
  57172. height: math.unit(500, "feet")
  57173. },
  57174. ]
  57175. ))
  57176. characterMakers.push(() => makeCharacter(
  57177. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57178. {
  57179. side: {
  57180. height: math.unit(0.77, "meters"),
  57181. weight: math.unit(120, "lb"),
  57182. name: "Side",
  57183. image: {
  57184. source: "./media/characters/davwyn/side.svg",
  57185. extra: 1557/1225,
  57186. bottom: 131/1688
  57187. }
  57188. },
  57189. front: {
  57190. height: math.unit(0.835410, "meters"),
  57191. weight: math.unit(120, "lb"),
  57192. name: "Front",
  57193. image: {
  57194. source: "./media/characters/davwyn/front.svg",
  57195. extra: 870/843,
  57196. bottom: 175/1045
  57197. }
  57198. },
  57199. },
  57200. [
  57201. {
  57202. name: "Minidrake",
  57203. height: math.unit(0.77/4, "meters")
  57204. },
  57205. {
  57206. name: "Normal",
  57207. height: math.unit(0.77, "meters"),
  57208. default: true
  57209. },
  57210. ]
  57211. ))
  57212. characterMakers.push(() => makeCharacter(
  57213. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57214. {
  57215. front: {
  57216. height: math.unit(10 + 3/12, "feet"),
  57217. weight: math.unit(2857, "lb"),
  57218. name: "Front",
  57219. image: {
  57220. source: "./media/characters/balans/front.svg",
  57221. extra: 427/402,
  57222. bottom: 26/453
  57223. }
  57224. },
  57225. side: {
  57226. height: math.unit(10 + 3/12, "feet"),
  57227. weight: math.unit(2857, "lb"),
  57228. name: "Side",
  57229. image: {
  57230. source: "./media/characters/balans/side.svg",
  57231. extra: 397/371,
  57232. bottom: 17/414
  57233. }
  57234. },
  57235. back: {
  57236. height: math.unit(10 + 3/12, "feet"),
  57237. weight: math.unit(2857, "lb"),
  57238. name: "Back",
  57239. image: {
  57240. source: "./media/characters/balans/back.svg",
  57241. extra: 408/381,
  57242. bottom: 14/422
  57243. }
  57244. },
  57245. hand: {
  57246. height: math.unit(1.15, "feet"),
  57247. name: "Hand",
  57248. image: {
  57249. source: "./media/characters/balans/hand.svg"
  57250. }
  57251. },
  57252. footRest: {
  57253. height: math.unit(3.1, "feet"),
  57254. name: "Foot (Rest)",
  57255. image: {
  57256. source: "./media/characters/balans/foot-rest.svg"
  57257. }
  57258. },
  57259. footActive: {
  57260. height: math.unit(3.5, "feet"),
  57261. name: "Foot (Active)",
  57262. image: {
  57263. source: "./media/characters/balans/foot-active.svg"
  57264. }
  57265. },
  57266. },
  57267. [
  57268. {
  57269. name: "Normal",
  57270. height: math.unit(10 + 3/12, "feet"),
  57271. default: true
  57272. },
  57273. ]
  57274. ))
  57275. characterMakers.push(() => makeCharacter(
  57276. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57277. {
  57278. side: {
  57279. height: math.unit(9, "meters"),
  57280. weight: math.unit(114, "tonnes"),
  57281. name: "Side",
  57282. image: {
  57283. source: "./media/characters/eldkveikir/side.svg",
  57284. extra: 1927/338,
  57285. bottom: 42/1969
  57286. }
  57287. },
  57288. sitting: {
  57289. height: math.unit(13.4, "meters"),
  57290. weight: math.unit(114, "tonnes"),
  57291. name: "Sitting",
  57292. image: {
  57293. source: "./media/characters/eldkveikir/sitting.svg",
  57294. extra: 1108/963,
  57295. bottom: 610/1718
  57296. }
  57297. },
  57298. maw: {
  57299. height: math.unit(8.36, "meters"),
  57300. name: "Maw",
  57301. image: {
  57302. source: "./media/characters/eldkveikir/maw.svg"
  57303. }
  57304. },
  57305. hand: {
  57306. height: math.unit(4.84, "meters"),
  57307. name: "Hand",
  57308. image: {
  57309. source: "./media/characters/eldkveikir/hand.svg"
  57310. }
  57311. },
  57312. foot: {
  57313. height: math.unit(6.9, "meters"),
  57314. name: "Foot",
  57315. image: {
  57316. source: "./media/characters/eldkveikir/foot.svg"
  57317. }
  57318. },
  57319. genitals: {
  57320. height: math.unit(9.6, "meters"),
  57321. name: "Genitals",
  57322. image: {
  57323. source: "./media/characters/eldkveikir/genitals.svg"
  57324. }
  57325. },
  57326. },
  57327. [
  57328. {
  57329. name: "Normal",
  57330. height: math.unit(9, "meters"),
  57331. default: true
  57332. },
  57333. ]
  57334. ))
  57335. characterMakers.push(() => makeCharacter(
  57336. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57337. {
  57338. front: {
  57339. height: math.unit(14, "feet"),
  57340. weight: math.unit(4100, "lb"),
  57341. name: "Front",
  57342. image: {
  57343. source: "./media/characters/arrow/front.svg",
  57344. extra: 330/318,
  57345. bottom: 56/386
  57346. }
  57347. },
  57348. },
  57349. [
  57350. {
  57351. name: "Normal",
  57352. height: math.unit(14, "feet"),
  57353. default: true
  57354. },
  57355. {
  57356. name: "Minimacro",
  57357. height: math.unit(63, "feet")
  57358. },
  57359. {
  57360. name: "Macro",
  57361. height: math.unit(630, "feet")
  57362. },
  57363. {
  57364. name: "Megamacro",
  57365. height: math.unit(12600, "feet")
  57366. },
  57367. {
  57368. name: "Gigamacro",
  57369. height: math.unit(18000, "miles")
  57370. },
  57371. ]
  57372. ))
  57373. characterMakers.push(() => makeCharacter(
  57374. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57375. {
  57376. front: {
  57377. height: math.unit(10, "feet"),
  57378. weight: math.unit(2.4, "tons"),
  57379. name: "Front",
  57380. image: {
  57381. source: "./media/characters/3yk-k0-unit/front.svg",
  57382. extra: 573/561,
  57383. bottom: 33/606
  57384. }
  57385. },
  57386. back: {
  57387. height: math.unit(10, "feet"),
  57388. weight: math.unit(2.4, "tons"),
  57389. name: "Back",
  57390. image: {
  57391. source: "./media/characters/3yk-k0-unit/back.svg",
  57392. extra: 614/573,
  57393. bottom: 32/646
  57394. }
  57395. },
  57396. maw: {
  57397. height: math.unit(2.15, "feet"),
  57398. name: "Maw",
  57399. image: {
  57400. source: "./media/characters/3yk-k0-unit/maw.svg"
  57401. }
  57402. },
  57403. },
  57404. [
  57405. {
  57406. name: "Normal",
  57407. height: math.unit(10, "feet"),
  57408. default: true
  57409. },
  57410. ]
  57411. ))
  57412. characterMakers.push(() => makeCharacter(
  57413. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57414. {
  57415. front: {
  57416. height: math.unit(8 + 8/12, "feet"),
  57417. name: "Front",
  57418. image: {
  57419. source: "./media/characters/nemo/front.svg",
  57420. extra: 1308/1217,
  57421. bottom: 57/1365
  57422. }
  57423. },
  57424. },
  57425. [
  57426. {
  57427. name: "Normal",
  57428. height: math.unit(8 + 8/12, "feet"),
  57429. default: true
  57430. },
  57431. ]
  57432. ))
  57433. characterMakers.push(() => makeCharacter(
  57434. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57435. {
  57436. front: {
  57437. height: math.unit(8, "feet"),
  57438. weight: math.unit(760, "lb"),
  57439. name: "Front",
  57440. image: {
  57441. source: "./media/characters/rexx/front.svg",
  57442. extra: 786/750,
  57443. bottom: 17/803
  57444. },
  57445. extraAttributes: {
  57446. "pawLength": {
  57447. name: "Paw Length",
  57448. power: 1,
  57449. type: "length",
  57450. base: math.unit(27, "inches")
  57451. },
  57452. }
  57453. },
  57454. },
  57455. [
  57456. {
  57457. name: "Micro",
  57458. height: math.unit(2, "inches")
  57459. },
  57460. {
  57461. name: "Normal",
  57462. height: math.unit(8, "feet"),
  57463. default: true
  57464. },
  57465. {
  57466. name: "Macro",
  57467. height: math.unit(150, "feet")
  57468. },
  57469. ]
  57470. ))
  57471. characterMakers.push(() => makeCharacter(
  57472. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57473. {
  57474. front: {
  57475. height: math.unit(18, "feet"),
  57476. weight: math.unit(1975, "lb"),
  57477. name: "Front",
  57478. image: {
  57479. source: "./media/characters/draco/front.svg",
  57480. extra: 1325/1241,
  57481. bottom: 83/1408
  57482. }
  57483. },
  57484. back: {
  57485. height: math.unit(18, "feet"),
  57486. weight: math.unit(1975, "lb"),
  57487. name: "Back",
  57488. image: {
  57489. source: "./media/characters/draco/back.svg",
  57490. extra: 1332/1250,
  57491. bottom: 43/1375
  57492. }
  57493. },
  57494. dick: {
  57495. height: math.unit(7.5, "feet"),
  57496. name: "Dick",
  57497. image: {
  57498. source: "./media/characters/draco/dick.svg"
  57499. }
  57500. },
  57501. },
  57502. [
  57503. {
  57504. name: "Normal",
  57505. height: math.unit(18, "feet"),
  57506. default: true
  57507. },
  57508. ]
  57509. ))
  57510. characterMakers.push(() => makeCharacter(
  57511. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57512. {
  57513. front: {
  57514. height: math.unit(3.2, "meters"),
  57515. name: "Front",
  57516. image: {
  57517. source: "./media/characters/harriett/front.svg",
  57518. extra: 1966/1915,
  57519. bottom: 9/1975
  57520. }
  57521. },
  57522. },
  57523. [
  57524. {
  57525. name: "Normal",
  57526. height: math.unit(3.2, "meters"),
  57527. default: true
  57528. },
  57529. ]
  57530. ))
  57531. characterMakers.push(() => makeCharacter(
  57532. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57533. {
  57534. sitting: {
  57535. height: math.unit(0.8, "meter"),
  57536. name: "Sitting",
  57537. image: {
  57538. source: "./media/characters/serpentus/sitting.svg",
  57539. extra: 293/290,
  57540. bottom: 140/433
  57541. }
  57542. },
  57543. },
  57544. [
  57545. {
  57546. name: "Normal",
  57547. height: math.unit(0.8, "meter"),
  57548. default: true
  57549. },
  57550. ]
  57551. ))
  57552. characterMakers.push(() => makeCharacter(
  57553. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57554. {
  57555. front: {
  57556. height: math.unit(5.7174385736, "feet"),
  57557. name: "Front",
  57558. image: {
  57559. source: "./media/characters/nova-polecat/front.svg",
  57560. extra: 1317/1216,
  57561. bottom: 92/1409
  57562. }
  57563. },
  57564. },
  57565. [
  57566. {
  57567. name: "Normal",
  57568. height: math.unit(5.7174385736, "feet"),
  57569. default: true
  57570. },
  57571. ]
  57572. ))
  57573. characterMakers.push(() => makeCharacter(
  57574. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57575. {
  57576. front: {
  57577. height: math.unit(5 + 4/12, "feet"),
  57578. weight: math.unit(250, "lb"),
  57579. name: "Front",
  57580. image: {
  57581. source: "./media/characters/mook/front.svg",
  57582. extra: 1088/1037,
  57583. bottom: 132/1220
  57584. }
  57585. },
  57586. back: {
  57587. height: math.unit(5 + 1/12, "feet"),
  57588. weight: math.unit(250, "lb"),
  57589. name: "Back",
  57590. image: {
  57591. source: "./media/characters/mook/back.svg",
  57592. extra: 1184/905,
  57593. bottom: 96/1280
  57594. }
  57595. },
  57596. head: {
  57597. height: math.unit(1.85, "feet"),
  57598. name: "Head",
  57599. image: {
  57600. source: "./media/characters/mook/head.svg"
  57601. }
  57602. },
  57603. hand: {
  57604. height: math.unit(1.9, "feet"),
  57605. name: "Hand",
  57606. image: {
  57607. source: "./media/characters/mook/hand.svg"
  57608. }
  57609. },
  57610. palm: {
  57611. height: math.unit(1.84, "feet"),
  57612. name: "Palm",
  57613. image: {
  57614. source: "./media/characters/mook/palm.svg"
  57615. }
  57616. },
  57617. foot: {
  57618. height: math.unit(1.44, "feet"),
  57619. name: "Foot",
  57620. image: {
  57621. source: "./media/characters/mook/foot.svg"
  57622. }
  57623. },
  57624. sole: {
  57625. height: math.unit(1.44, "feet"),
  57626. name: "Sole",
  57627. image: {
  57628. source: "./media/characters/mook/sole.svg"
  57629. }
  57630. },
  57631. },
  57632. [
  57633. {
  57634. name: "Normal",
  57635. height: math.unit(5 + 4/12, "feet"),
  57636. default: true
  57637. },
  57638. {
  57639. name: "Big",
  57640. height: math.unit(12, "feet")
  57641. },
  57642. ]
  57643. ))
  57644. characterMakers.push(() => makeCharacter(
  57645. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57646. {
  57647. front: {
  57648. height: math.unit(6 + 10/12, "feet"),
  57649. weight: math.unit(233, "lb"),
  57650. name: "Front",
  57651. image: {
  57652. source: "./media/characters/kayla/front.svg",
  57653. extra: 1850/1775,
  57654. bottom: 65/1915
  57655. }
  57656. },
  57657. },
  57658. [
  57659. {
  57660. name: "Normal",
  57661. height: math.unit(6 + 10/12, "feet"),
  57662. default: true
  57663. },
  57664. {
  57665. name: "Amazonian",
  57666. height: math.unit(12 + 5/12, "feet")
  57667. },
  57668. {
  57669. name: "Mini Giantess",
  57670. height: math.unit(26, "feet")
  57671. },
  57672. {
  57673. name: "Giantess",
  57674. height: math.unit(200, "feet")
  57675. },
  57676. {
  57677. name: "Mega Giantess",
  57678. height: math.unit(2500, "feet")
  57679. },
  57680. {
  57681. name: "City Sized",
  57682. height: math.unit(50, "miles")
  57683. },
  57684. {
  57685. name: "Country Sized",
  57686. height: math.unit(500, "miles")
  57687. },
  57688. {
  57689. name: "Continent Sized",
  57690. height: math.unit(2500, "miles")
  57691. },
  57692. {
  57693. name: "Planet Sized",
  57694. height: math.unit(10000, "miles")
  57695. },
  57696. {
  57697. name: "Star Sized",
  57698. height: math.unit(5e6, "miles")
  57699. },
  57700. {
  57701. name: "Solar System Sized",
  57702. height: math.unit(125, "AU")
  57703. },
  57704. {
  57705. name: "Galaxy Sized",
  57706. height: math.unit(300e3, "lightyears")
  57707. },
  57708. {
  57709. name: "Universe Sized",
  57710. height: math.unit(200e9, "lightyears")
  57711. },
  57712. {
  57713. name: "Multiverse Sized",
  57714. height: math.unit(20, "exauniverses")
  57715. },
  57716. {
  57717. name: "Mother of Existence",
  57718. height: math.unit(1e6, "yottauniverses")
  57719. },
  57720. ]
  57721. ))
  57722. characterMakers.push(() => makeCharacter(
  57723. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57724. {
  57725. side: {
  57726. height: math.unit(9.5, "meters"),
  57727. name: "Side",
  57728. image: {
  57729. source: "./media/characters/kulve-ragnarok/side.svg",
  57730. extra: 364/326,
  57731. bottom: 50/414
  57732. }
  57733. },
  57734. },
  57735. [
  57736. {
  57737. name: "Normal",
  57738. height: math.unit(9.5, "meters"),
  57739. default: true
  57740. },
  57741. ]
  57742. ))
  57743. characterMakers.push(() => makeCharacter(
  57744. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57745. {
  57746. front: {
  57747. height: math.unit(8 + 9/12, "feet"),
  57748. name: "Front",
  57749. image: {
  57750. source: "./media/characters/atlas-goat/front.svg",
  57751. extra: 1462/1323,
  57752. bottom: 12/1474
  57753. }
  57754. },
  57755. },
  57756. [
  57757. {
  57758. name: "Normal",
  57759. height: math.unit(8 + 9/12, "feet"),
  57760. default: true
  57761. },
  57762. {
  57763. name: "Skyline",
  57764. height: math.unit(845, "feet")
  57765. },
  57766. {
  57767. name: "Orbital",
  57768. height: math.unit(93000, "miles")
  57769. },
  57770. {
  57771. name: "Constellation",
  57772. height: math.unit(27000, "lightyears")
  57773. },
  57774. ]
  57775. ))
  57776. characterMakers.push(() => makeCharacter(
  57777. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57778. {
  57779. side: {
  57780. height: math.unit(1.8, "meters"),
  57781. weight: math.unit(120, "kg"),
  57782. name: "Side",
  57783. image: {
  57784. source: "./media/characters/xie-ling/side.svg",
  57785. extra: 646/574,
  57786. bottom: 44/690
  57787. }
  57788. },
  57789. },
  57790. [
  57791. {
  57792. name: "Tiny",
  57793. height: math.unit(1.80, "meters")
  57794. },
  57795. {
  57796. name: "Small",
  57797. height: math.unit(6, "meters")
  57798. },
  57799. {
  57800. name: "Medium",
  57801. height: math.unit(15, "meters")
  57802. },
  57803. {
  57804. name: "Normal",
  57805. height: math.unit(30, "meters"),
  57806. default: true
  57807. },
  57808. {
  57809. name: "Above Normal",
  57810. height: math.unit(60, "meters")
  57811. },
  57812. {
  57813. name: "Big",
  57814. height: math.unit(220, "meters")
  57815. },
  57816. {
  57817. name: "Giant",
  57818. height: math.unit(2.2, "km")
  57819. },
  57820. {
  57821. name: "Macro",
  57822. height: math.unit(25, "km")
  57823. },
  57824. {
  57825. name: "Mega Macro",
  57826. height: math.unit(350, "km")
  57827. },
  57828. {
  57829. name: "Mega Macro+",
  57830. height: math.unit(5000, "km")
  57831. },
  57832. {
  57833. name: "Goddess",
  57834. height: math.unit(3, "multiverses")
  57835. },
  57836. ]
  57837. ))
  57838. characterMakers.push(() => makeCharacter(
  57839. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57840. {
  57841. frontSfw: {
  57842. height: math.unit(5 + 11/12, "feet"),
  57843. weight: math.unit(210, "lb"),
  57844. name: "Front",
  57845. image: {
  57846. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57847. extra: 1928/1821,
  57848. bottom: 45/1973
  57849. }
  57850. },
  57851. backSfw: {
  57852. height: math.unit(5 + 11/12, "feet"),
  57853. weight: math.unit(210, "lb"),
  57854. name: "Back",
  57855. image: {
  57856. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57857. extra: 1920/1813,
  57858. bottom: 34/1954
  57859. }
  57860. },
  57861. frontNsfw: {
  57862. height: math.unit(5 + 11/12, "feet"),
  57863. weight: math.unit(210, "lb"),
  57864. name: "Front (NSFW)",
  57865. image: {
  57866. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57867. extra: 1928/1821,
  57868. bottom: 45/1973
  57869. }
  57870. },
  57871. backNsfw: {
  57872. height: math.unit(5 + 11/12, "feet"),
  57873. weight: math.unit(210, "lb"),
  57874. name: "Back (NSFW)",
  57875. image: {
  57876. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57877. extra: 1920/1813,
  57878. bottom: 34/1954
  57879. }
  57880. },
  57881. },
  57882. [
  57883. {
  57884. name: "Normal",
  57885. height: math.unit(5 + 11/12, "feet"),
  57886. default: true
  57887. },
  57888. {
  57889. name: "Goddess",
  57890. height: math.unit(20 + 3/12, "feet")
  57891. },
  57892. {
  57893. name: "Breaker of Man",
  57894. height: math.unit(329 + 9/12, "feet")
  57895. },
  57896. {
  57897. name: "Solar Justice",
  57898. height: math.unit(0.6, "solarradii")
  57899. },
  57900. {
  57901. name: "She Who Judges",
  57902. height: math.unit(1, "universe")
  57903. },
  57904. ]
  57905. ))
  57906. characterMakers.push(() => makeCharacter(
  57907. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  57908. {
  57909. casual_front: {
  57910. height: math.unit(6 + 1/12, "feet"),
  57911. weight: math.unit(190, "lb"),
  57912. preyCapacity: math.unit(1, "people"),
  57913. name: "Front",
  57914. image: {
  57915. source: "./media/characters/managarmr/casual-front.svg",
  57916. extra: 411/381,
  57917. bottom: 15/426
  57918. },
  57919. extraAttributes: {
  57920. "pawSize": {
  57921. name: "Paw Size",
  57922. power: 1,
  57923. type: "length",
  57924. base: math.unit(0.2, "meters")
  57925. },
  57926. },
  57927. form: "casual",
  57928. },
  57929. casual_back: {
  57930. height: math.unit(6 + 1/12, "feet"),
  57931. weight: math.unit(190, "lb"),
  57932. preyCapacity: math.unit(1, "people"),
  57933. name: "Back",
  57934. image: {
  57935. source: "./media/characters/managarmr/casual-back.svg",
  57936. extra: 413/383,
  57937. bottom: 13/426
  57938. },
  57939. extraAttributes: {
  57940. "pawSize": {
  57941. name: "Paw Size",
  57942. power: 1,
  57943. type: "length",
  57944. base: math.unit(0.2, "meters")
  57945. },
  57946. },
  57947. form: "casual",
  57948. },
  57949. base_front: {
  57950. height: math.unit(7, "feet"),
  57951. weight: math.unit(210, "lb"),
  57952. preyCapacity: math.unit(2, "people"),
  57953. name: "Front",
  57954. image: {
  57955. source: "./media/characters/managarmr/base-front.svg",
  57956. extra: 580/485,
  57957. bottom: 32/612
  57958. },
  57959. extraAttributes: {
  57960. "wingspan": {
  57961. name: "Wingspan",
  57962. power: 1,
  57963. type: "length",
  57964. base: math.unit(4, "meters")
  57965. },
  57966. "pawSize": {
  57967. name: "Paw Size",
  57968. power: 1,
  57969. type: "length",
  57970. base: math.unit(0.2, "meters")
  57971. },
  57972. },
  57973. form: "base",
  57974. },
  57975. "true-divine_front": {
  57976. height: math.unit(40, "feet"),
  57977. weight: math.unit(39000, "lb"),
  57978. preyCapacity: math.unit(375, "people"),
  57979. name: "Front",
  57980. image: {
  57981. source: "./media/characters/managarmr/true-divine-front.svg",
  57982. extra: 725/573,
  57983. bottom: 120/845
  57984. },
  57985. extraAttributes: {
  57986. "wingspan": {
  57987. name: "Wingspan",
  57988. power: 1,
  57989. type: "length",
  57990. base: math.unit(20, "meters")
  57991. },
  57992. "pawSize": {
  57993. name: "Paw Size",
  57994. power: 1,
  57995. type: "length",
  57996. base: math.unit(1.5, "meters")
  57997. },
  57998. },
  57999. form: "true-divine",
  58000. },
  58001. },
  58002. [
  58003. {
  58004. name: "Normal",
  58005. height: math.unit(6 + 1/12, "feet"),
  58006. form: "casual",
  58007. default: true
  58008. },
  58009. {
  58010. name: "Normal",
  58011. height: math.unit(7, "feet"),
  58012. form: "base",
  58013. default: true
  58014. },
  58015. ],
  58016. {
  58017. "casual": {
  58018. name: "Casual",
  58019. default: true
  58020. },
  58021. "base": {
  58022. name: "Base",
  58023. },
  58024. "true-divine": {
  58025. name: "True Divine",
  58026. },
  58027. }
  58028. ))
  58029. characterMakers.push(() => makeCharacter(
  58030. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58031. {
  58032. front: {
  58033. height: math.unit(1.8, "meters"),
  58034. weight: math.unit(110, "kg"),
  58035. name: "Front",
  58036. image: {
  58037. source: "./media/characters/mystra/front.svg",
  58038. extra: 529/442,
  58039. bottom: 31/560
  58040. }
  58041. },
  58042. frontLewd: {
  58043. height: math.unit(1.8, "meters"),
  58044. weight: math.unit(110, "kg"),
  58045. name: "Front (Lewd)",
  58046. image: {
  58047. source: "./media/characters/mystra/front-lewd.svg",
  58048. extra: 529/442,
  58049. bottom: 31/560
  58050. }
  58051. },
  58052. head: {
  58053. height: math.unit(1.63, "feet"),
  58054. name: "Head",
  58055. image: {
  58056. source: "./media/characters/mystra/head.svg"
  58057. }
  58058. },
  58059. paw: {
  58060. height: math.unit(1.9, "feet"),
  58061. name: "Paw",
  58062. image: {
  58063. source: "./media/characters/mystra/paw.svg"
  58064. }
  58065. },
  58066. },
  58067. [
  58068. {
  58069. name: "Incognito",
  58070. height: math.unit(2.3, "meters")
  58071. },
  58072. {
  58073. name: "Small Macro",
  58074. height: math.unit(300, "meters")
  58075. },
  58076. {
  58077. name: "Small Mega",
  58078. height: math.unit(2, "km")
  58079. },
  58080. {
  58081. name: "Mega",
  58082. height: math.unit(30, "km")
  58083. },
  58084. {
  58085. name: "Small Giga",
  58086. height: math.unit(100, "km")
  58087. },
  58088. {
  58089. name: "Giga",
  58090. height: math.unit(1000, "km"),
  58091. default: true
  58092. },
  58093. {
  58094. name: "Continental",
  58095. height: math.unit(5000, "km")
  58096. },
  58097. {
  58098. name: "Terra",
  58099. height: math.unit(20000, "km")
  58100. },
  58101. {
  58102. name: "Solar",
  58103. height: math.unit(2e6, "km")
  58104. },
  58105. {
  58106. name: "Galactic",
  58107. height: math.unit(528502, "lightyears")
  58108. },
  58109. {
  58110. name: "Universal",
  58111. height: math.unit(20, "universes")
  58112. },
  58113. ]
  58114. ))
  58115. characterMakers.push(() => makeCharacter(
  58116. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58117. {
  58118. front: {
  58119. height: math.unit(2, "meters"),
  58120. weight: math.unit(140, "kg"),
  58121. name: "Front",
  58122. image: {
  58123. source: "./media/characters/caleb/front.svg",
  58124. extra: 873/817,
  58125. bottom: 47/920
  58126. }
  58127. },
  58128. back: {
  58129. height: math.unit(2, "meters"),
  58130. weight: math.unit(140, "kg"),
  58131. name: "Back",
  58132. image: {
  58133. source: "./media/characters/caleb/back.svg",
  58134. extra: 877/828,
  58135. bottom: 24/901
  58136. }
  58137. },
  58138. snakeTail: {
  58139. height: math.unit(1.44, "feet"),
  58140. name: "Snake Tail",
  58141. image: {
  58142. source: "./media/characters/caleb/snake-tail.svg"
  58143. }
  58144. },
  58145. dick: {
  58146. height: math.unit(2.6, "feet"),
  58147. name: "Dick",
  58148. image: {
  58149. source: "./media/characters/caleb/dick.svg"
  58150. }
  58151. },
  58152. },
  58153. [
  58154. {
  58155. name: "Incognito",
  58156. height: math.unit(3, "meters")
  58157. },
  58158. {
  58159. name: "Home Size",
  58160. height: math.unit(200, "meters"),
  58161. default: true
  58162. },
  58163. {
  58164. name: "Macro",
  58165. height: math.unit(500, "meters")
  58166. },
  58167. {
  58168. name: "Big Macro",
  58169. height: math.unit(5, "km")
  58170. },
  58171. {
  58172. name: "Giga",
  58173. height: math.unit(250, "km")
  58174. },
  58175. {
  58176. name: "Giga+",
  58177. height: math.unit(5000, "km")
  58178. },
  58179. {
  58180. name: "Small Terra",
  58181. height: math.unit(35e3, "km")
  58182. },
  58183. {
  58184. name: "Terra",
  58185. height: math.unit(2e6, "km")
  58186. },
  58187. {
  58188. name: "Terra+",
  58189. height: math.unit(1.5e6, "km")
  58190. },
  58191. ]
  58192. ))
  58193. characterMakers.push(() => makeCharacter(
  58194. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58195. {
  58196. front: {
  58197. height: math.unit(2, "meters"),
  58198. weight: math.unit(120, "kg"),
  58199. name: "Front",
  58200. image: {
  58201. source: "./media/characters/gilirian/front.svg",
  58202. extra: 805/737,
  58203. bottom: 13/818
  58204. }
  58205. },
  58206. side: {
  58207. height: math.unit(2, "meters"),
  58208. weight: math.unit(120, "kg"),
  58209. name: "Side",
  58210. image: {
  58211. source: "./media/characters/gilirian/side.svg",
  58212. extra: 810/746,
  58213. bottom: 6/816
  58214. }
  58215. },
  58216. back: {
  58217. height: math.unit(2, "meters"),
  58218. weight: math.unit(120, "kg"),
  58219. name: "Back",
  58220. image: {
  58221. source: "./media/characters/gilirian/back.svg",
  58222. extra: 815/745,
  58223. bottom: 15/830
  58224. }
  58225. },
  58226. frontNsfw: {
  58227. height: math.unit(2, "meters"),
  58228. weight: math.unit(120, "kg"),
  58229. name: "Front (NSFW)",
  58230. image: {
  58231. source: "./media/characters/gilirian/front-nsfw.svg",
  58232. extra: 805/737,
  58233. bottom: 13/818
  58234. }
  58235. },
  58236. sideNsfw: {
  58237. height: math.unit(2, "meters"),
  58238. weight: math.unit(120, "kg"),
  58239. name: "Side (NSFW)",
  58240. image: {
  58241. source: "./media/characters/gilirian/side-nsfw.svg",
  58242. extra: 810/746,
  58243. bottom: 6/816
  58244. }
  58245. },
  58246. },
  58247. [
  58248. {
  58249. name: "Incognito",
  58250. height: math.unit(2, "meters"),
  58251. default: true
  58252. },
  58253. {
  58254. name: "Macro",
  58255. height: math.unit(250, "meters")
  58256. },
  58257. {
  58258. name: "Big Macro",
  58259. height: math.unit(1500, "meters")
  58260. },
  58261. {
  58262. name: "Mega",
  58263. height: math.unit(40, "km")
  58264. },
  58265. {
  58266. name: "Giga",
  58267. height: math.unit(300, "km")
  58268. },
  58269. {
  58270. name: "Extra Giga",
  58271. height: math.unit(5000, "km")
  58272. },
  58273. {
  58274. name: "Small Terra",
  58275. height: math.unit(10e3, "km")
  58276. },
  58277. {
  58278. name: "Terra",
  58279. height: math.unit(3e5, "km")
  58280. },
  58281. {
  58282. name: "Galactic",
  58283. height: math.unit(369950, "lightyears")
  58284. },
  58285. ]
  58286. ))
  58287. characterMakers.push(() => makeCharacter(
  58288. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58289. {
  58290. front: {
  58291. height: math.unit(2.5, "meters"),
  58292. weight: math.unit(230, "lb"),
  58293. name: "Front",
  58294. image: {
  58295. source: "./media/characters/tarken/front.svg",
  58296. extra: 764/720,
  58297. bottom: 49/813
  58298. }
  58299. },
  58300. back: {
  58301. height: math.unit(2.5, "meters"),
  58302. weight: math.unit(230, "lb"),
  58303. name: "Back",
  58304. image: {
  58305. source: "./media/characters/tarken/back.svg",
  58306. extra: 756/720,
  58307. bottom: 35/791
  58308. }
  58309. },
  58310. frontNsfw: {
  58311. height: math.unit(2.5, "meters"),
  58312. weight: math.unit(230, "lb"),
  58313. name: "Front (NSFW)",
  58314. image: {
  58315. source: "./media/characters/tarken/front-nsfw.svg",
  58316. extra: 764/720,
  58317. bottom: 49/813
  58318. }
  58319. },
  58320. backNsfw: {
  58321. height: math.unit(2.5, "meters"),
  58322. weight: math.unit(230, "lb"),
  58323. name: "Back (NSFW)",
  58324. image: {
  58325. source: "./media/characters/tarken/back-nsfw.svg",
  58326. extra: 756/720,
  58327. bottom: 35/791
  58328. }
  58329. },
  58330. head: {
  58331. height: math.unit(2.22, "feet"),
  58332. name: "Head",
  58333. image: {
  58334. source: "./media/characters/tarken/head.svg"
  58335. }
  58336. },
  58337. tail: {
  58338. height: math.unit(5.25, "feet"),
  58339. name: "Tail",
  58340. image: {
  58341. source: "./media/characters/tarken/tail.svg"
  58342. }
  58343. },
  58344. dick: {
  58345. height: math.unit(1.95, "feet"),
  58346. name: "Dick",
  58347. image: {
  58348. source: "./media/characters/tarken/dick.svg"
  58349. }
  58350. },
  58351. hand: {
  58352. height: math.unit(1.78, "feet"),
  58353. name: "Hand",
  58354. image: {
  58355. source: "./media/characters/tarken/hand.svg"
  58356. }
  58357. },
  58358. beam: {
  58359. height: math.unit(1.5, "feet"),
  58360. name: "Beam",
  58361. image: {
  58362. source: "./media/characters/tarken/beam.svg"
  58363. }
  58364. },
  58365. },
  58366. [
  58367. {
  58368. name: "Original Size",
  58369. height: math.unit(2.5, "meters")
  58370. },
  58371. {
  58372. name: "Macro",
  58373. height: math.unit(150, "meters"),
  58374. default: true
  58375. },
  58376. {
  58377. name: "Macro+",
  58378. height: math.unit(300, "meters")
  58379. },
  58380. {
  58381. name: "Mega",
  58382. height: math.unit(2, "km")
  58383. },
  58384. {
  58385. name: "Mega+",
  58386. height: math.unit(35, "km")
  58387. },
  58388.  {
  58389. name: "Mega++",
  58390. height: math.unit(60, "km")
  58391. },
  58392. {
  58393. name: "Giga",
  58394. height: math.unit(200, "km")
  58395. },
  58396. {
  58397. name: "Giga+",
  58398. height: math.unit(2500, "km")
  58399. },
  58400. {
  58401. name: "Giga++",
  58402. height: math.unit(6600, "km")
  58403. },
  58404. {
  58405. name: "Terra",
  58406. height: math.unit(20000, "km")
  58407. },
  58408. {
  58409. name: "Terra+",
  58410. height: math.unit(300000, "km")
  58411. },
  58412. ]
  58413. ))
  58414. characterMakers.push(() => makeCharacter(
  58415. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58416. {
  58417. magpie_dressed: {
  58418. height: math.unit(1.7, "meters"),
  58419. weight: math.unit(70, "kg"),
  58420. name: "Dressed",
  58421. image: {
  58422. source: "./media/characters/otreus/magpie-dressed.svg",
  58423. extra: 691/672,
  58424. bottom: 116/807
  58425. },
  58426. form: "magpie",
  58427. default: true
  58428. },
  58429. magpie_nude: {
  58430. height: math.unit(1.7, "meters"),
  58431. weight: math.unit(70, "kg"),
  58432. name: "Nude",
  58433. image: {
  58434. source: "./media/characters/otreus/magpie-nude.svg",
  58435. extra: 691/672,
  58436. bottom: 116/807
  58437. },
  58438. form: "magpie",
  58439. },
  58440. magpie_dressedLewd: {
  58441. height: math.unit(1.7, "meters"),
  58442. weight: math.unit(70, "kg"),
  58443. name: "Dressed (Lewd)",
  58444. image: {
  58445. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58446. extra: 691/672,
  58447. bottom: 116/807
  58448. },
  58449. form: "magpie",
  58450. },
  58451. magpie_nudeLewd: {
  58452. height: math.unit(1.7, "meters"),
  58453. weight: math.unit(70, "kg"),
  58454. name: "Nude (Lewd)",
  58455. image: {
  58456. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58457. extra: 691/672,
  58458. bottom: 116/807
  58459. },
  58460. form: "magpie",
  58461. },
  58462. magpie_leftFoot: {
  58463. height: math.unit(1.58, "feet"),
  58464. name: "Left Foot",
  58465. image: {
  58466. source: "./media/characters/otreus/magpie-left-foot.svg"
  58467. },
  58468. form: "magpie",
  58469. },
  58470. magpie_rightFoot: {
  58471. height: math.unit(1.58, "feet"),
  58472. name: "Right Foot",
  58473. image: {
  58474. source: "./media/characters/otreus/magpie-right-foot.svg"
  58475. },
  58476. form: "magpie",
  58477. },
  58478. magpie_wingspan: {
  58479. height: math.unit(2, "meters"),
  58480. weight: math.unit(70, "kg"),
  58481. name: "Wingspan",
  58482. image: {
  58483. source: "./media/characters/otreus/magpie-wingspan.svg"
  58484. },
  58485. extraAttributes: {
  58486. "wingspan": {
  58487. name: "Wingspan",
  58488. power: 1,
  58489. type: "length",
  58490. base: math.unit(3.35, "meters")
  58491. },
  58492. },
  58493. form: "magpie",
  58494. },
  58495. hippogriff_dressed: {
  58496. height: math.unit(1.7, "meters"),
  58497. weight: math.unit(70, "kg"),
  58498. name: "Dressed",
  58499. image: {
  58500. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58501. extra: 710/689,
  58502. bottom: 67/777
  58503. },
  58504. form: "hippogriff",
  58505. default: true
  58506. },
  58507. hippogriff_nude: {
  58508. height: math.unit(1.7, "meters"),
  58509. weight: math.unit(70, "kg"),
  58510. name: "Nude",
  58511. image: {
  58512. source: "./media/characters/otreus/hippogriff-nude.svg",
  58513. extra: 710/689,
  58514. bottom: 67/777
  58515. },
  58516. form: "hippogriff",
  58517. },
  58518. hippogriff_dressedLewd: {
  58519. height: math.unit(1.7, "meters"),
  58520. weight: math.unit(70, "kg"),
  58521. name: "Dressed (Lewd)",
  58522. image: {
  58523. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58524. extra: 710/689,
  58525. bottom: 67/777
  58526. },
  58527. form: "hippogriff",
  58528. },
  58529. hippogriff_nudeLewd: {
  58530. height: math.unit(1.7, "meters"),
  58531. weight: math.unit(70, "kg"),
  58532. name: "Nude (Lewd)",
  58533. image: {
  58534. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58535. extra: 710/689,
  58536. bottom: 67/777
  58537. },
  58538. form: "hippogriff",
  58539. },
  58540. },
  58541. [
  58542. {
  58543. name: "Original Size",
  58544. height: math.unit(1.7, "meters"),
  58545. allForms: true
  58546. },
  58547. {
  58548. name: "Incognito Size",
  58549. height: math.unit(2, "meters"),
  58550. allForms: true
  58551. },
  58552. {
  58553. name: "Mega",
  58554. height: math.unit(2, "km"),
  58555. allForms: true
  58556. },
  58557. {
  58558. name: "Mega+",
  58559. height: math.unit(40, "km"),
  58560. allForms: true
  58561. },
  58562. {
  58563. name: "Giga",
  58564. height: math.unit(250, "km"),
  58565. allForms: true
  58566. },
  58567. {
  58568. name: "Giga+",
  58569. height: math.unit(3000, "km"),
  58570. allForms: true
  58571. },
  58572. {
  58573. name: "Terra",
  58574. height: math.unit(20000, "km"),
  58575. allForms: true
  58576. },
  58577. {
  58578. name: "Solar (Home Size)",
  58579. height: math.unit(3e6, "km"),
  58580. allForms: true,
  58581. default: true
  58582. },
  58583. ],
  58584. {
  58585. "magpie": {
  58586. name: "Magpie",
  58587. default: true
  58588. },
  58589. "hippogriff": {
  58590. name: "Hippogriff",
  58591. },
  58592. }
  58593. ))
  58594. characterMakers.push(() => makeCharacter(
  58595. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58596. {
  58597. frontDressed: {
  58598. height: math.unit(1.8, "meters"),
  58599. weight: math.unit(90, "kg"),
  58600. name: "Front (Dressed)",
  58601. image: {
  58602. source: "./media/characters/thalia/front-dressed.svg",
  58603. extra: 478/402,
  58604. bottom: 55/533
  58605. }
  58606. },
  58607. backDressed: {
  58608. height: math.unit(1.8, "meters"),
  58609. weight: math.unit(90, "kg"),
  58610. name: "Back (Dressed)",
  58611. image: {
  58612. source: "./media/characters/thalia/back-dressed.svg",
  58613. extra: 500/424,
  58614. bottom: 15/515
  58615. }
  58616. },
  58617. frontNude: {
  58618. height: math.unit(1.8, "meters"),
  58619. weight: math.unit(90, "kg"),
  58620. name: "Front (Nude)",
  58621. image: {
  58622. source: "./media/characters/thalia/front-nude.svg",
  58623. extra: 478/402,
  58624. bottom: 55/533
  58625. }
  58626. },
  58627. backNude: {
  58628. height: math.unit(1.8, "meters"),
  58629. weight: math.unit(90, "kg"),
  58630. name: "Back (Nude)",
  58631. image: {
  58632. source: "./media/characters/thalia/back-nude.svg",
  58633. extra: 500/424,
  58634. bottom: 15/515
  58635. }
  58636. },
  58637. },
  58638. [
  58639. {
  58640. name: "Incognito",
  58641. height: math.unit(3, "meters")
  58642. },
  58643. {
  58644. name: "Macro",
  58645. height: math.unit(500, "meters")
  58646. },
  58647. {
  58648. name: "Mega",
  58649. height: math.unit(5, "km")
  58650. },
  58651. {
  58652. name: "Mega+",
  58653. height: math.unit(30, "km")
  58654. },
  58655. {
  58656. name: "Giga",
  58657. height: math.unit(350, "km")
  58658. },
  58659. {
  58660. name: "Giga+",
  58661. height: math.unit(4000, "km")
  58662. },
  58663. {
  58664. name: "Terra",
  58665. height: math.unit(35000, "km")
  58666. },
  58667. {
  58668. name: "Original Size",
  58669. height: math.unit(130000, "km")
  58670. },
  58671. {
  58672. name: "Solar (Home Size)",
  58673. height: math.unit(4e6, "km"),
  58674. default: true
  58675. },
  58676. ]
  58677. ))
  58678. characterMakers.push(() => makeCharacter(
  58679. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58680. {
  58681. front: {
  58682. height: math.unit(1.8, "meters"),
  58683. weight: math.unit(95, "kg"),
  58684. name: "Front",
  58685. image: {
  58686. source: "./media/characters/shango/front.svg",
  58687. extra: 1925/1774,
  58688. bottom: 67/1992
  58689. }
  58690. },
  58691. back: {
  58692. height: math.unit(1.8, "meters"),
  58693. weight: math.unit(95, "kg"),
  58694. name: "Back",
  58695. image: {
  58696. source: "./media/characters/shango/back.svg",
  58697. extra: 1915/1766,
  58698. bottom: 52/1967
  58699. }
  58700. },
  58701. frontLewd: {
  58702. height: math.unit(1.8, "meters"),
  58703. weight: math.unit(95, "kg"),
  58704. name: "Front (Lewd)",
  58705. image: {
  58706. source: "./media/characters/shango/front-lewd.svg",
  58707. extra: 1925/1774,
  58708. bottom: 67/1992
  58709. }
  58710. },
  58711. backLewd: {
  58712. height: math.unit(1.8, "meters"),
  58713. weight: math.unit(95, "kg"),
  58714. name: "Back (Lewd)",
  58715. image: {
  58716. source: "./media/characters/shango/back-lewd.svg",
  58717. extra: 1915/1766,
  58718. bottom: 52/1967
  58719. }
  58720. },
  58721. maw: {
  58722. height: math.unit(1.64, "feet"),
  58723. name: "Maw",
  58724. image: {
  58725. source: "./media/characters/shango/maw.svg"
  58726. }
  58727. },
  58728. dick: {
  58729. height: math.unit(2.14, "feet"),
  58730. name: "Dick",
  58731. image: {
  58732. source: "./media/characters/shango/dick.svg"
  58733. }
  58734. },
  58735. },
  58736. [
  58737. {
  58738. name: "Incognito",
  58739. height: math.unit(1.8, "meters")
  58740. },
  58741. {
  58742. name: "Home Size",
  58743. height: math.unit(60, "meters"),
  58744. default: true
  58745. },
  58746. {
  58747. name: "Macro",
  58748. height: math.unit(450, "meters")
  58749. },
  58750. {
  58751. name: "Mega",
  58752. height: math.unit(6, "km")
  58753. },
  58754. {
  58755. name: "Mega+",
  58756. height: math.unit(35, "km")
  58757. },
  58758. {
  58759. name: "Giga",
  58760. height: math.unit(500, "km")
  58761. },
  58762. {
  58763. name: "Giga+",
  58764. height: math.unit(5000, "km")
  58765. },
  58766. {
  58767. name: "Terra",
  58768. height: math.unit(60000, "km")
  58769. },
  58770. {
  58771. name: "Terra+",
  58772. height: math.unit(400000, "km")
  58773. },
  58774. ]
  58775. ))
  58776. characterMakers.push(() => makeCharacter(
  58777. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58778. {
  58779. front: {
  58780. height: math.unit(2, "meters"),
  58781. weight: math.unit(95, "kg"),
  58782. name: "Front",
  58783. image: {
  58784. source: "./media/characters/osiris-gryphon/front.svg",
  58785. extra: 1508/1313,
  58786. bottom: 87/1595
  58787. }
  58788. },
  58789. back: {
  58790. height: math.unit(2, "meters"),
  58791. weight: math.unit(95, "kg"),
  58792. name: "Back",
  58793. image: {
  58794. source: "./media/characters/osiris-gryphon/back.svg",
  58795. extra: 1436/1309,
  58796. bottom: 64/1500
  58797. }
  58798. },
  58799. frontLewd: {
  58800. height: math.unit(2, "meters"),
  58801. weight: math.unit(95, "kg"),
  58802. name: "Front-lewd",
  58803. image: {
  58804. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58805. extra: 1508/1313,
  58806. bottom: 87/1595
  58807. }
  58808. },
  58809. wing: {
  58810. height: math.unit(6.3333, "feet"),
  58811. name: "Wing",
  58812. image: {
  58813. source: "./media/characters/osiris-gryphon/wing.svg"
  58814. }
  58815. },
  58816. },
  58817. [
  58818. {
  58819. name: "Incognito",
  58820. height: math.unit(2, "meters")
  58821. },
  58822. {
  58823. name: "Home Size",
  58824. height: math.unit(30, "meters"),
  58825. default: true
  58826. },
  58827. {
  58828. name: "Macro",
  58829. height: math.unit(100, "meters")
  58830. },
  58831. {
  58832. name: "Macro+",
  58833. height: math.unit(350, "meters")
  58834. },
  58835. {
  58836. name: "Mega",
  58837. height: math.unit(40, "km")
  58838. },
  58839. {
  58840. name: "Giga",
  58841. height: math.unit(300, "km")
  58842. },
  58843. {
  58844. name: "Giga+",
  58845. height: math.unit(2000, "km")
  58846. },
  58847. {
  58848. name: "Terra",
  58849. height: math.unit(30000, "km")
  58850. },
  58851. ]
  58852. ))
  58853. characterMakers.push(() => makeCharacter(
  58854. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58855. {
  58856. front: {
  58857. height: math.unit(2.5, "meters"),
  58858. weight: math.unit(200, "kg"),
  58859. name: "Front",
  58860. image: {
  58861. source: "./media/characters/atlas-dragon/front.svg",
  58862. extra: 745/462,
  58863. bottom: 36/781
  58864. }
  58865. },
  58866. back: {
  58867. height: math.unit(2.5, "meters"),
  58868. weight: math.unit(200, "kg"),
  58869. name: "Back",
  58870. image: {
  58871. source: "./media/characters/atlas-dragon/back.svg",
  58872. extra: 848/822,
  58873. bottom: 57/905
  58874. }
  58875. },
  58876. frontLewd: {
  58877. height: math.unit(2.5, "meters"),
  58878. weight: math.unit(200, "kg"),
  58879. name: "Front (Lewd)",
  58880. image: {
  58881. source: "./media/characters/atlas-dragon/front-lewd.svg",
  58882. extra: 745/462,
  58883. bottom: 36/781
  58884. }
  58885. },
  58886. backLewd: {
  58887. height: math.unit(2.5, "meters"),
  58888. weight: math.unit(200, "kg"),
  58889. name: "Back (Lewd)",
  58890. image: {
  58891. source: "./media/characters/atlas-dragon/back-lewd.svg",
  58892. extra: 848/822,
  58893. bottom: 57/905
  58894. }
  58895. },
  58896. },
  58897. [
  58898. {
  58899. name: "Incognito",
  58900. height: math.unit(2.5, "meters")
  58901. },
  58902. {
  58903. name: "Small Macro",
  58904. height: math.unit(50, "meters")
  58905. },
  58906. {
  58907. name: "Macro",
  58908. height: math.unit(350, "meters")
  58909. },
  58910. {
  58911. name: "Mega",
  58912. height: math.unit(5.5, "kilometers")
  58913. },
  58914. {
  58915. name: "Mega+",
  58916. height: math.unit(50, "km")
  58917. },
  58918. {
  58919. name: "Giga",
  58920. height: math.unit(350, "km")
  58921. },
  58922. {
  58923. name: "Giga+",
  58924. height: math.unit(2000, "km")
  58925. },
  58926. {
  58927. name: "Giga++",
  58928. height: math.unit(6500, "km")
  58929. },
  58930. {
  58931. name: "Terra",
  58932. height: math.unit(30000, "km")
  58933. },
  58934. {
  58935. name: "Terra+",
  58936. height: math.unit(250000, "km")
  58937. },
  58938. {
  58939. name: "True Size",
  58940. height: math.unit(100, "multiverses"),
  58941. default: true
  58942. },
  58943. ]
  58944. ))
  58945. characterMakers.push(() => makeCharacter(
  58946. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  58947. {
  58948. front: {
  58949. height: math.unit(1.8, "m"),
  58950. weight: math.unit(120, "kg"),
  58951. name: "Front",
  58952. image: {
  58953. source: "./media/characters/chey/front.svg",
  58954. extra: 1359/1270,
  58955. bottom: 18/1377
  58956. }
  58957. },
  58958. arm: {
  58959. height: math.unit(2.05, "feet"),
  58960. name: "Arm",
  58961. image: {
  58962. source: "./media/characters/chey/arm.svg"
  58963. }
  58964. },
  58965. head: {
  58966. height: math.unit(1.89, "feet"),
  58967. name: "Head",
  58968. image: {
  58969. source: "./media/characters/chey/head.svg"
  58970. }
  58971. },
  58972. },
  58973. [
  58974. {
  58975. name: "Original Size",
  58976. height: math.unit(5, "cm")
  58977. },
  58978. {
  58979. name: "Incognito Size",
  58980. height: math.unit(2.4, "m")
  58981. },
  58982. {
  58983. name: "Home Size",
  58984. height: math.unit(200, "meters"),
  58985. default: true
  58986. },
  58987. {
  58988. name: "Mega",
  58989. height: math.unit(2, "km")
  58990. },
  58991. {
  58992. name: "Giga (Preferred Size)",
  58993. height: math.unit(2000, "km")
  58994. },
  58995. {
  58996. name: "Giga+",
  58997. height: math.unit(6000, "km")
  58998. },
  58999. {
  59000. name: "Terra",
  59001. height: math.unit(17000, "km")
  59002. },
  59003. {
  59004. name: "Terra+",
  59005. height: math.unit(75000, "km")
  59006. },
  59007. {
  59008. name: "Terra++",
  59009. height: math.unit(225000, "km")
  59010. },
  59011. ]
  59012. ))
  59013. characterMakers.push(() => makeCharacter(
  59014. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59015. {
  59016. side: {
  59017. height: math.unit(7.8, "meters"),
  59018. name: "Side",
  59019. image: {
  59020. source: "./media/characters/ragnarok/side.svg",
  59021. extra: 725/621,
  59022. bottom: 72/797
  59023. }
  59024. },
  59025. },
  59026. [
  59027. {
  59028. name: "Normal",
  59029. height: math.unit(7.8, "meters"),
  59030. default: true
  59031. },
  59032. ]
  59033. ))
  59034. characterMakers.push(() => makeCharacter(
  59035. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59036. {
  59037. hyena_front: {
  59038. height: math.unit(2.1, "meters"),
  59039. weight: math.unit(110, "kg"),
  59040. name: "Front",
  59041. image: {
  59042. source: "./media/characters/nima/hyena-front.svg",
  59043. extra: 1904/1796,
  59044. bottom: 67/1971
  59045. },
  59046. form: "hyena",
  59047. },
  59048. hyena_back: {
  59049. height: math.unit(2.1, "meters"),
  59050. weight: math.unit(110, "kg"),
  59051. name: "Back",
  59052. image: {
  59053. source: "./media/characters/nima/hyena-back.svg",
  59054. extra: 1964/1884,
  59055. bottom: 35/1999
  59056. },
  59057. form: "hyena",
  59058. },
  59059. shark_front: {
  59060. height: math.unit(1.95, "meters"),
  59061. weight: math.unit(110, "kg"),
  59062. name: "Front",
  59063. image: {
  59064. source: "./media/characters/nima/shark-front.svg",
  59065. extra: 2238/2013,
  59066. bottom: 0/223
  59067. },
  59068. form: "shark",
  59069. },
  59070. paw: {
  59071. height: math.unit(1, "feet"),
  59072. name: "Paw",
  59073. image: {
  59074. source: "./media/characters/nima/paw.svg"
  59075. }
  59076. },
  59077. circlet: {
  59078. height: math.unit(0.3, "feet"),
  59079. name: "Circlet",
  59080. image: {
  59081. source: "./media/characters/nima/circlet.svg"
  59082. }
  59083. },
  59084. necklace: {
  59085. height: math.unit(1.2, "feet"),
  59086. name: "Necklace",
  59087. image: {
  59088. source: "./media/characters/nima/necklace.svg"
  59089. }
  59090. },
  59091. bracelet: {
  59092. height: math.unit(0.51, "feet"),
  59093. name: "Bracelet",
  59094. image: {
  59095. source: "./media/characters/nima/bracelet.svg"
  59096. }
  59097. },
  59098. armband: {
  59099. height: math.unit(1.3, "feet"),
  59100. name: "Armband",
  59101. image: {
  59102. source: "./media/characters/nima/armband.svg"
  59103. }
  59104. },
  59105. },
  59106. [
  59107. {
  59108. name: "Incognito",
  59109. height: math.unit(2.1, "meters"),
  59110. allForms: true
  59111. },
  59112. {
  59113. name: "Small Macro",
  59114. height: math.unit(50, "meters"),
  59115. allForms: true
  59116. },
  59117. {
  59118. name: "Macro",
  59119. height: math.unit(200, "meters"),
  59120. allForms: true
  59121. },
  59122. {
  59123. name: "Mega",
  59124. height: math.unit(2.5, "km"),
  59125. allForms: true
  59126. },
  59127. {
  59128. name: "Mega+",
  59129. height: math.unit(30, "km"),
  59130. allForms: true
  59131. },
  59132. {
  59133. name: "Giga (Home Size)",
  59134. height: math.unit(400, "km"),
  59135. allForms: true,
  59136. default: true
  59137. },
  59138. {
  59139. name: "Giga+",
  59140. height: math.unit(2500, "km"),
  59141. allForms: true
  59142. },
  59143. {
  59144. name: "Giga++",
  59145. height: math.unit(8000, "km"),
  59146. allForms: true
  59147. },
  59148. {
  59149. name: "Terra",
  59150. height: math.unit(20000, "km"),
  59151. allForms: true
  59152. },
  59153. {
  59154. name: "Terra+",
  59155. height: math.unit(70000, "km"),
  59156. allForms: true
  59157. },
  59158. {
  59159. name: "Terra++",
  59160. height: math.unit(600000, "km"),
  59161. allForms: true
  59162. },
  59163. {
  59164. name: "Galactic",
  59165. height: math.unit(40, "galaxies"),
  59166. allForms: true
  59167. },
  59168. {
  59169. name: "Universal",
  59170. height: math.unit(40, "universes"),
  59171. allForms: true
  59172. },
  59173. ],
  59174. {
  59175. "hyena": {
  59176. name: "Hyena",
  59177. default: true
  59178. },
  59179. "shark": {
  59180. name: "Shark",
  59181. },
  59182. }
  59183. ))
  59184. characterMakers.push(() => makeCharacter(
  59185. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59186. {
  59187. anthro_front: {
  59188. height: math.unit(1.5, "meters"),
  59189. name: "Front",
  59190. image: {
  59191. source: "./media/characters/adelaide/anthro-front.svg",
  59192. extra: 860/783,
  59193. bottom: 60/920
  59194. },
  59195. form: "anthro",
  59196. default: true
  59197. },
  59198. hand: {
  59199. height: math.unit(0.65, "feet"),
  59200. name: "Hand",
  59201. image: {
  59202. source: "./media/characters/adelaide/hand.svg"
  59203. },
  59204. form: "anthro"
  59205. },
  59206. foot: {
  59207. height: math.unit(1.38 * 259 / 314, "feet"),
  59208. name: "Foot",
  59209. image: {
  59210. source: "./media/characters/adelaide/foot.svg",
  59211. extra: 259/259,
  59212. bottom: 55/314
  59213. },
  59214. form: "anthro"
  59215. },
  59216. feather: {
  59217. height: math.unit(0.85, "feet"),
  59218. name: "Feather",
  59219. image: {
  59220. source: "./media/characters/adelaide/feather.svg"
  59221. },
  59222. form: "anthro"
  59223. },
  59224. feral_side: {
  59225. height: math.unit(1, "meters"),
  59226. name: "Side",
  59227. image: {
  59228. source: "./media/characters/adelaide/feral-side.svg",
  59229. extra: 550/467,
  59230. bottom: 37/587
  59231. },
  59232. form: "feral",
  59233. default: true
  59234. },
  59235. feral_hand: {
  59236. height: math.unit(0.58, "feet"),
  59237. name: "Hand",
  59238. image: {
  59239. source: "./media/characters/adelaide/hand.svg"
  59240. },
  59241. form: "feral"
  59242. },
  59243. feral_foot: {
  59244. height: math.unit(1.2 * 259 / 314, "feet"),
  59245. name: "Foot",
  59246. image: {
  59247. source: "./media/characters/adelaide/foot.svg",
  59248. extra: 259/259,
  59249. bottom: 55/314
  59250. },
  59251. form: "feral"
  59252. },
  59253. feral_feather: {
  59254. height: math.unit(0.63, "feet"),
  59255. name: "Feather",
  59256. image: {
  59257. source: "./media/characters/adelaide/feather.svg"
  59258. },
  59259. form: "feral"
  59260. },
  59261. },
  59262. [
  59263. {
  59264. name: "Normal",
  59265. height: math.unit(1.5, "meters"),
  59266. form: "anthro",
  59267. default: true
  59268. },
  59269. {
  59270. name: "Normal",
  59271. height: math.unit(1, "meters"),
  59272. form: "feral",
  59273. default: true
  59274. },
  59275. ],
  59276. {
  59277. "anthro": {
  59278. name: "Anthro",
  59279. default: true
  59280. },
  59281. "feral": {
  59282. name: "Feral",
  59283. },
  59284. }
  59285. ))
  59286. characterMakers.push(() => makeCharacter(
  59287. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59288. {
  59289. front: {
  59290. height: math.unit(2.5, "meters"),
  59291. name: "Front",
  59292. image: {
  59293. source: "./media/characters/goa/front.svg",
  59294. extra: 1109/1013,
  59295. bottom: 150/1259
  59296. }
  59297. },
  59298. },
  59299. [
  59300. {
  59301. name: "Normal",
  59302. height: math.unit(2.5, "meters"),
  59303. default: true
  59304. },
  59305. ]
  59306. ))
  59307. characterMakers.push(() => makeCharacter(
  59308. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59309. {
  59310. front: {
  59311. height: math.unit(2, "meters"),
  59312. weight: math.unit(100, "kg"),
  59313. name: "Front",
  59314. image: {
  59315. source: "./media/characters/kiki-weavile/front.svg",
  59316. extra: 357/332,
  59317. bottom: 60/417
  59318. }
  59319. },
  59320. },
  59321. [
  59322. {
  59323. name: "Normal",
  59324. height: math.unit(2, "meters"),
  59325. default: true
  59326. },
  59327. ]
  59328. ))
  59329. characterMakers.push(() => makeCharacter(
  59330. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59331. {
  59332. side: {
  59333. height: math.unit(1.6, "meters"),
  59334. name: "Side",
  59335. image: {
  59336. source: "./media/characters/liza/side.svg",
  59337. extra: 943/915,
  59338. bottom: 72/1015
  59339. }
  59340. },
  59341. },
  59342. [
  59343. {
  59344. name: "Normal",
  59345. height: math.unit(1.6, "meters"),
  59346. default: true
  59347. },
  59348. ]
  59349. ))
  59350. characterMakers.push(() => makeCharacter(
  59351. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59352. {
  59353. side: {
  59354. height: math.unit(2.5, "meters"),
  59355. name: "Side",
  59356. image: {
  59357. source: "./media/characters/persephone-sweetbreath/side.svg",
  59358. extra: 796/700,
  59359. bottom: 44/840
  59360. }
  59361. },
  59362. },
  59363. [
  59364. {
  59365. name: "Normal",
  59366. height: math.unit(2.5, "meters"),
  59367. default: true
  59368. },
  59369. ]
  59370. ))
  59371. characterMakers.push(() => makeCharacter(
  59372. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59373. {
  59374. front: {
  59375. height: math.unit(32, "meters"),
  59376. name: "Front",
  59377. image: {
  59378. source: "./media/characters/pierce/front.svg",
  59379. extra: 1695/1475,
  59380. bottom: 185/1880
  59381. }
  59382. },
  59383. side: {
  59384. height: math.unit(32, "meters"),
  59385. name: "Side",
  59386. image: {
  59387. source: "./media/characters/pierce/side.svg",
  59388. extra: 974/859,
  59389. bottom: 43/1017
  59390. }
  59391. },
  59392. frontWingless: {
  59393. height: math.unit(32, "meters"),
  59394. name: "Front (Wingless)",
  59395. image: {
  59396. source: "./media/characters/pierce/front-wingless.svg",
  59397. extra: 1695/1475,
  59398. bottom: 185/1880
  59399. }
  59400. },
  59401. sideWingless: {
  59402. height: math.unit(32, "meters"),
  59403. name: "Side (Wingless)",
  59404. image: {
  59405. source: "./media/characters/pierce/side-wingless.svg",
  59406. extra: 974/859,
  59407. bottom: 43/1017
  59408. }
  59409. },
  59410. maw: {
  59411. height: math.unit(19.3, "meters"),
  59412. name: "Maw",
  59413. image: {
  59414. source: "./media/characters/pierce/maw.svg"
  59415. }
  59416. },
  59417. },
  59418. [
  59419. {
  59420. name: "Small",
  59421. height: math.unit(8.5, "meters")
  59422. },
  59423. {
  59424. name: "Normal",
  59425. height: math.unit(32, "meters"),
  59426. default: true
  59427. },
  59428. ]
  59429. ))
  59430. characterMakers.push(() => makeCharacter(
  59431. { name: "Shira", species: ["cobra", "deity"], tags: ["anthro"] },
  59432. {
  59433. front: {
  59434. height: math.unit(2.3, "meters"),
  59435. weight: math.unit(165, "kg"),
  59436. name: "Front",
  59437. image: {
  59438. source: "./media/characters/shira/front.svg",
  59439. extra: 924/919,
  59440. bottom: 17/941
  59441. }
  59442. },
  59443. back: {
  59444. height: math.unit(2.3, "meters"),
  59445. weight: math.unit(165, "kg"),
  59446. name: "Back",
  59447. image: {
  59448. source: "./media/characters/shira/back.svg",
  59449. extra: 928/922,
  59450. bottom: 18/946
  59451. }
  59452. },
  59453. frontLewd: {
  59454. height: math.unit(2.3, "meters"),
  59455. weight: math.unit(165, "kg"),
  59456. name: "Front (Lewd)",
  59457. image: {
  59458. source: "./media/characters/shira/front-lewd.svg",
  59459. extra: 924/919,
  59460. bottom: 17/941
  59461. }
  59462. },
  59463. backLewd: {
  59464. height: math.unit(2.3, "meters"),
  59465. weight: math.unit(165, "kg"),
  59466. name: "Back (Lewd)",
  59467. image: {
  59468. source: "./media/characters/shira/back-lewd.svg",
  59469. extra: 928/922,
  59470. bottom: 18/946
  59471. }
  59472. },
  59473. maw: {
  59474. height: math.unit(1.14, "feet"),
  59475. name: "Maw",
  59476. image: {
  59477. source: "./media/characters/shira/maw.svg"
  59478. }
  59479. },
  59480. },
  59481. [
  59482. {
  59483. name: "Incognito",
  59484. height: math.unit(2.3, "meters")
  59485. },
  59486. {
  59487. name: "Home Size",
  59488. height: math.unit(150, "meters"),
  59489. default: true
  59490. },
  59491. {
  59492. name: "Macro",
  59493. height: math.unit(2, "km")
  59494. },
  59495. {
  59496. name: "Mega",
  59497. height: math.unit(30, "km")
  59498. },
  59499. {
  59500. name: "Giga",
  59501. height: math.unit(450, "km")
  59502. },
  59503. {
  59504. name: "Giga+",
  59505. height: math.unit(3000, "km")
  59506. },
  59507. {
  59508. name: "Giga++",
  59509. height: math.unit(6000, "km")
  59510. },
  59511. {
  59512. name: "Terra",
  59513. height: math.unit(80000, "km")
  59514. },
  59515. {
  59516. name: "Terra+",
  59517. height: math.unit(350000, "km")
  59518. },
  59519. {
  59520. name: "Solar",
  59521. height: math.unit(1e6, "km")
  59522. },
  59523. ]
  59524. ))
  59525. characterMakers.push(() => makeCharacter(
  59526. { name: "Daxerios", species: ["wolf", "cerberus"], tags: ["anthro"] },
  59527. {
  59528. front: {
  59529. height: math.unit(2, "meters"),
  59530. weight: math.unit(160, "kg"),
  59531. name: "Front",
  59532. image: {
  59533. source: "./media/characters/daxerios/front.svg",
  59534. extra: 1334/1277,
  59535. bottom: 45/1379
  59536. }
  59537. },
  59538. frontLewd: {
  59539. height: math.unit(2, "meters"),
  59540. weight: math.unit(160, "kg"),
  59541. name: "Front (Lewd)",
  59542. image: {
  59543. source: "./media/characters/daxerios/front-lewd.svg",
  59544. extra: 1334/1277,
  59545. bottom: 45/1379
  59546. }
  59547. },
  59548. dick: {
  59549. height: math.unit(2.35, "feet"),
  59550. name: "Dick",
  59551. image: {
  59552. source: "./media/characters/daxerios/dick.svg"
  59553. }
  59554. },
  59555. },
  59556. [
  59557. {
  59558. name: "\"Small\"",
  59559. height: math.unit(5, "meters")
  59560. },
  59561. {
  59562. name: "Original Size",
  59563. height: math.unit(500, "meters"),
  59564. default: true
  59565. },
  59566. {
  59567. name: "Mega",
  59568. height: math.unit(2, "km")
  59569. },
  59570. {
  59571. name: "Mega+",
  59572. height: math.unit(35, "km")
  59573. },
  59574. {
  59575. name: "Giga",
  59576. height: math.unit(250, "km")
  59577. },
  59578. {
  59579. name: "Giga+",
  59580. height: math.unit(3000, "km")
  59581. },
  59582. {
  59583. name: "Terra",
  59584. height: math.unit(25000, "km")
  59585. },
  59586. {
  59587. name: "Terra+",
  59588. height: math.unit(300000, "km")
  59589. },
  59590. {
  59591. name: "Solar",
  59592. height: math.unit(1e6, "km")
  59593. },
  59594. ]
  59595. ))
  59596. characterMakers.push(() => makeCharacter(
  59597. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59598. {
  59599. front: {
  59600. height: math.unit(8 + 4/12, "feet"),
  59601. weight: math.unit(464, "lb"),
  59602. name: "Front",
  59603. image: {
  59604. source: "./media/characters/caveat/front.svg",
  59605. extra: 1861/1678,
  59606. bottom: 40/1901
  59607. }
  59608. },
  59609. },
  59610. [
  59611. {
  59612. name: "Normal",
  59613. height: math.unit(8 + 4/12, "feet"),
  59614. default: true
  59615. },
  59616. ]
  59617. ))
  59618. characterMakers.push(() => makeCharacter(
  59619. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59620. {
  59621. front: {
  59622. height: math.unit(12, "feet"),
  59623. weight: math.unit(1800, "lb"),
  59624. name: "Front",
  59625. image: {
  59626. source: "./media/characters/centbair/front.svg",
  59627. extra: 781/663,
  59628. bottom: 25/806
  59629. }
  59630. },
  59631. frontNsfw: {
  59632. height: math.unit(12, "feet"),
  59633. weight: math.unit(1800, "lb"),
  59634. name: "Front (NSFW)",
  59635. image: {
  59636. source: "./media/characters/centbair/front-nsfw.svg",
  59637. extra: 781/663,
  59638. bottom: 25/806
  59639. }
  59640. },
  59641. back: {
  59642. height: math.unit(12, "feet"),
  59643. weight: math.unit(1800, "lb"),
  59644. name: "Back",
  59645. image: {
  59646. source: "./media/characters/centbair/back.svg",
  59647. extra: 808/761,
  59648. bottom: 19/827
  59649. }
  59650. },
  59651. dick: {
  59652. height: math.unit(6.5, "feet"),
  59653. name: "Dick",
  59654. image: {
  59655. source: "./media/characters/centbair/dick.svg"
  59656. }
  59657. },
  59658. slit: {
  59659. height: math.unit(3.25, "feet"),
  59660. name: "Slit",
  59661. image: {
  59662. source: "./media/characters/centbair/slit.svg"
  59663. }
  59664. },
  59665. },
  59666. [
  59667. {
  59668. name: "Normal",
  59669. height: math.unit(12, "feet"),
  59670. default: true
  59671. },
  59672. ]
  59673. ))
  59674. characterMakers.push(() => makeCharacter(
  59675. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59676. {
  59677. front: {
  59678. height: math.unit(5 + 7/12, "feet"),
  59679. name: "Front",
  59680. image: {
  59681. source: "./media/characters/andy/front.svg",
  59682. extra: 634/588,
  59683. bottom: 36/670
  59684. },
  59685. extraAttributes: {
  59686. "pawLength": {
  59687. name: "Paw Length",
  59688. power: 1,
  59689. type: "length",
  59690. base: math.unit(1, "feet")
  59691. },
  59692. }
  59693. },
  59694. side: {
  59695. height: math.unit(5 + 7/12, "feet"),
  59696. name: "Side",
  59697. image: {
  59698. source: "./media/characters/andy/side.svg",
  59699. extra: 641/596,
  59700. bottom: 34/675
  59701. },
  59702. extraAttributes: {
  59703. "pawLength": {
  59704. name: "Paw Length",
  59705. power: 1,
  59706. type: "length",
  59707. base: math.unit(1, "feet")
  59708. },
  59709. }
  59710. },
  59711. back: {
  59712. height: math.unit(5 + 7/12, "feet"),
  59713. name: "Back",
  59714. image: {
  59715. source: "./media/characters/andy/back.svg",
  59716. extra: 618/583,
  59717. bottom: 39/657
  59718. },
  59719. extraAttributes: {
  59720. "pawLength": {
  59721. name: "Paw Length",
  59722. power: 1,
  59723. type: "length",
  59724. base: math.unit(1, "feet")
  59725. },
  59726. }
  59727. },
  59728. paw: {
  59729. height: math.unit(1.13, "feet"),
  59730. name: "Paw",
  59731. image: {
  59732. source: "./media/characters/andy/paw.svg"
  59733. }
  59734. },
  59735. },
  59736. [
  59737. {
  59738. name: "Micro",
  59739. height: math.unit(4, "inches")
  59740. },
  59741. {
  59742. name: "Normal",
  59743. height: math.unit(5 + 7/12, "feet"),
  59744. default: true
  59745. },
  59746. {
  59747. name: "Macro",
  59748. height: math.unit(390.42, "feet")
  59749. },
  59750. ]
  59751. ))
  59752. characterMakers.push(() => makeCharacter(
  59753. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  59754. {
  59755. front: {
  59756. height: math.unit(7, "feet"),
  59757. weight: math.unit(250, "lb"),
  59758. name: "Front",
  59759. image: {
  59760. source: "./media/characters/vix-titan/front.svg",
  59761. extra: 460/428,
  59762. bottom: 15/475
  59763. },
  59764. extraAttributes: {
  59765. "pawWidth": {
  59766. name: "Paw Width",
  59767. power: 1,
  59768. type: "length",
  59769. base: math.unit(0.75, "feet")
  59770. },
  59771. }
  59772. },
  59773. },
  59774. [
  59775. {
  59776. name: "Normal",
  59777. height: math.unit(7, "feet"),
  59778. default: true
  59779. },
  59780. {
  59781. name: "Giant",
  59782. height: math.unit(1500, "feet")
  59783. },
  59784. {
  59785. name: "Mega",
  59786. height: math.unit(10, "miles")
  59787. },
  59788. {
  59789. name: "Giga",
  59790. height: math.unit(150, "miles")
  59791. },
  59792. {
  59793. name: "Tera",
  59794. height: math.unit(144000, "miles")
  59795. },
  59796. ]
  59797. ))
  59798. characterMakers.push(() => makeCharacter(
  59799. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  59800. {
  59801. front: {
  59802. height: math.unit(6 + 2/12, "feet"),
  59803. name: "Front",
  59804. image: {
  59805. source: "./media/characters/reiku/front.svg",
  59806. extra: 1910/1757,
  59807. bottom: 103/2013
  59808. },
  59809. extraAttributes: {
  59810. "thighThickness": {
  59811. name: "Thigh Thickness",
  59812. power: 1,
  59813. type: "length",
  59814. base: math.unit(1.12, "feet")
  59815. },
  59816. "assThickness": {
  59817. name: "Ass Thickness",
  59818. power: 1,
  59819. type: "length",
  59820. base: math.unit(1.12*2, "feet")
  59821. },
  59822. }
  59823. },
  59824. side: {
  59825. height: math.unit(6 + 2/12, "feet"),
  59826. name: "Side",
  59827. image: {
  59828. source: "./media/characters/reiku/side.svg",
  59829. extra: 1846/1748,
  59830. bottom: 99/1945
  59831. },
  59832. extraAttributes: {
  59833. "thighThickness": {
  59834. name: "Thigh Thickness",
  59835. power: 1,
  59836. type: "length",
  59837. base: math.unit(1.12, "feet")
  59838. },
  59839. "assThickness": {
  59840. name: "Ass Thickness",
  59841. power: 1,
  59842. type: "length",
  59843. base: math.unit(1.12*2, "feet")
  59844. },
  59845. }
  59846. },
  59847. back: {
  59848. height: math.unit(6 + 2/12, "feet"),
  59849. name: "Back",
  59850. image: {
  59851. source: "./media/characters/reiku/back.svg",
  59852. extra: 1941/1786,
  59853. bottom: 34/1975
  59854. },
  59855. extraAttributes: {
  59856. "thighThickness": {
  59857. name: "Thigh Thickness",
  59858. power: 1,
  59859. type: "length",
  59860. base: math.unit(1.12, "feet")
  59861. },
  59862. "assThickness": {
  59863. name: "Ass Thickness",
  59864. power: 1,
  59865. type: "length",
  59866. base: math.unit(1.12*2, "feet")
  59867. },
  59868. }
  59869. },
  59870. head: {
  59871. height: math.unit(1.8, "feet"),
  59872. name: "Head",
  59873. image: {
  59874. source: "./media/characters/reiku/head.svg"
  59875. }
  59876. },
  59877. tailTop: {
  59878. height: math.unit(8.4, "feet"),
  59879. name: "Tail (Top)",
  59880. image: {
  59881. source: "./media/characters/reiku/tail-top.svg"
  59882. }
  59883. },
  59884. tailBottom: {
  59885. height: math.unit(8.4, "feet"),
  59886. name: "Tail (Bottom)",
  59887. image: {
  59888. source: "./media/characters/reiku/tail-bottom.svg"
  59889. }
  59890. },
  59891. foot: {
  59892. height: math.unit(2.6, "feet"),
  59893. name: "Foot",
  59894. image: {
  59895. source: "./media/characters/reiku/foot.svg"
  59896. }
  59897. },
  59898. footCurled: {
  59899. height: math.unit(2.3, "feet"),
  59900. name: "Foot (Curled)",
  59901. image: {
  59902. source: "./media/characters/reiku/foot-curled.svg"
  59903. }
  59904. },
  59905. footSide: {
  59906. height: math.unit(1.26, "feet"),
  59907. name: "Foot (Side)",
  59908. image: {
  59909. source: "./media/characters/reiku/foot-side.svg"
  59910. }
  59911. },
  59912. },
  59913. [
  59914. {
  59915. name: "Normal",
  59916. height: math.unit(6 + 2/12, "feet"),
  59917. default: true
  59918. },
  59919. ]
  59920. ))
  59921. characterMakers.push(() => makeCharacter(
  59922. { name: "Cialda", species: ["zorgoia", "food"], tags: ["anthro"] },
  59923. {
  59924. front: {
  59925. height: math.unit(7, "feet"),
  59926. weight: math.unit(500, "kg"),
  59927. name: "Front",
  59928. image: {
  59929. source: "./media/characters/cialda/front.svg",
  59930. extra: 912/745,
  59931. bottom: 55/967
  59932. }
  59933. },
  59934. },
  59935. [
  59936. {
  59937. name: "Normal",
  59938. height: math.unit(7, "feet"),
  59939. default: true
  59940. },
  59941. ]
  59942. ))
  59943. //characters
  59944. function makeCharacters() {
  59945. const results = [];
  59946. characterMakers.forEach(character => {
  59947. results.push(character());
  59948. });
  59949. return results;
  59950. }